@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
  /* Color Palette - HSL Slate/Indigo/Cyan theme */
  --bg-main: hsl(224, 25%, 8%);
  --bg-card: hsla(224, 20%, 14%, 0.7);
  --bg-card-hover: hsla(224, 20%, 18%, 0.85);
  --border-color: hsla(224, 15%, 25%, 0.5);
  --border-glow: hsla(234, 80%, 65%, 0.2);
  
  --text-primary: hsl(220, 30%, 96%);
  --text-secondary: hsl(220, 15%, 70%);
  --text-muted: hsl(220, 10%, 50%);
  
  --brand-primary: hsl(235, 85%, 65%);
  --brand-secondary: hsl(185, 85%, 50%);
  --brand-gradient: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
  --accent-neon: hsl(325, 90%, 60%);
  
  --success: hsl(142, 70%, 45%);
  --warning: hsl(38, 92%, 50%);
  --danger: hsl(350, 80%, 55%);
  
  /* Layout & Spacing logical tokens */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset and Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--bg-main);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  min-block-size: 100dvb;
  overflow-x: hidden;
  position: relative;
}

/* Background ambient glows */
body::before {
  content: '';
  position: absolute;
  top: -10%;
  left: 20%;
  inline-size: 600px;
  block-size: 600px;
  background: radial-gradient(circle, hsla(235, 85%, 65%, 0.08) 0%, transparent 70%);
  z-index: -1;
  pointer-events: none;
}

body::after {
  content: '';
  position: absolute;
  bottom: 10%;
  right: 10%;
  inline-size: 500px;
  block-size: 500px;
  background: radial-gradient(circle, hsla(185, 85%, 50%, 0.05) 0%, transparent 70%);
  z-index: -1;
  pointer-events: none;
}

/* Custom Scrollbars */
::-webkit-scrollbar {
  inline-size: 8px;
  block-size: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-main);
}

::-webkit-scrollbar-thumb {
  background: hsl(224, 15%, 20%);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: hsl(224, 15%, 30%);
}

/* Typography styling */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.1;
  margin-block-end: 1rem;
}

.gradient-text {
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

p {
  color: var(--text-secondary);
}

a {
  color: var(--brand-secondary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--text-primary);
}

/* Layout Utilities */
header {
  border-bottom: 1px solid var(--border-color);
  padding: 1.5rem 2rem;
  background: hsla(224, 25%, 8%, 0.8);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-container {
  max-inline-size: 1400px;
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-icon {
  inline-size: 32px;
  block-size: 32px;
  background: var(--brand-gradient);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-family: var(--font-display);
  color: hsl(224, 25%, 8%);
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

nav a {
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.95rem;
}

nav a:hover, nav a.active {
  color: var(--text-primary);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  border: none;
  gap: 0.5rem;
  font-family: var(--font-body);
}

.btn-primary {
  background: var(--brand-gradient);
  color: hsl(224, 25%, 8%);
  box-shadow: 0 4px 20px -5px hsla(235, 85%, 65%, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px -3px hsla(235, 85%, 65%, 0.6);
}

.btn-secondary {
  background: hsla(224, 15%, 20%, 0.5);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
}

.btn-secondary:hover {
  background: hsla(224, 15%, 25%, 0.7);
  border-color: hsl(224, 15%, 35%);
}

main {
  max-inline-size: 1400px;
  margin-inline: auto;
  padding: 3rem 2rem;
}

/* Card glassmorphism styling */
.card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.card:hover {
  background: var(--bg-card-hover);
  border-color: hsla(235, 85%, 65%, 0.3);
  box-shadow: 0 10px 30px -10px hsla(235, 85%, 65%, 0.1),
              0 0 20px -5px var(--border-glow);
  transform: translateY(-4px);
}

/* Exclusive badges styling */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge-startup {
  background: hsla(185, 85%, 50%, 0.15);
  color: var(--brand-secondary);
  border: 1px solid hsla(185, 85%, 50%, 0.3);
}

.badge-growing {
  background: hsla(38, 92%, 50%, 0.15);
  color: var(--warning);
  border: 1px solid hsla(38, 92%, 50%, 0.3);
}

.badge-established {
  background: hsla(142, 70%, 45%, 0.15);
  color: var(--success);
  border: 1px solid hsla(142, 70%, 45%, 0.3);
}

/* Forms styling */
input, select, textarea {
  background: hsla(224, 20%, 6%, 0.6);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: all var(--transition-fast);
  inline-size: 100%;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 3px hsla(235, 85%, 65%, 0.15);
}

label {
  display: block;
  font-weight: 500;
  font-size: 0.9rem;
  margin-block-end: 0.5rem;
  color: var(--text-secondary);
}

/* Footer layout */
footer {
  margin-block-start: 5rem;
  border-top: 1px solid var(--border-color);
  padding-block: 3rem;
  text-align: center;
}

footer p {
  font-size: 0.9rem;
  color: var(--text-muted);
}
