@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Inter:wght@400;500;600;700&family=Material+Symbols+Outlined:wght,FILL@100..700,0..1&display=swap");

:root {
  /* Colors */
  --color-bg-primary: #0c0e38;
  --color-bg-secondary: #141740;
  --color-accent-cyan: #48d6fd;
  --color-text-primary: #e0e0ff;
  --color-text-secondary: #bcc9ce;
  --color-btn-primary: linear-gradient(135deg, #48d6fd 0%, #00b8de 100%);
  --color-btn-secondary: #02528e;
  --color-border: rgba(61, 73, 77, 0.15);

  /* Extended design system */
  --color-surface: #0c0e38;
  --color-surface-lowest: #060833;
  --color-surface-low: #141740;
  --color-surface-medium: #191b44;
  --color-surface-high: #23264f;
  --color-surface-highest: #2e315b;
  --color-surface-variant: rgba(46, 49, 91, 0.6);
  --color-tertiary: #e9c176;
  --color-primary-container: #00b8de;
  --color-on-primary: #003542;
  --color-on-secondary: #00325a;
  --color-on-secondary-container: #99c6ff;
  --color-outline: #869398;
  --color-outline-ghost: rgba(61, 73, 77, 0.15);

  /* Typography */
  --font-heading: "Manrope", sans-serif;
  --font-body: "Manrope", sans-serif;
  --font-label: "Inter", sans-serif;

  /* Font sizes */
  --text-h1: clamp(3.5rem, 6vw, 5rem);
  --text-h2: clamp(2.5rem, 4.2vw, 3.5rem);
  --text-h3: clamp(1.75rem, 2.4vw, 2.25rem);
  --text-body: 1rem;
  --text-small: 0.875rem;
  --text-label: 0.75rem;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 5rem;

  /* Layout */
  --container-max-width: 96rem;
  --section-padding: clamp(5rem, 8vw, 8rem);
  --border-radius-sm: 0.25rem;
  --border-radius-md: 0.75rem;
  --border-radius-lg: 1.5rem;

  /* Shadows & Effects */
  --shadow-card: 0 20px 40px rgba(12, 14, 56, 0.4);
  --shadow-glow: 0 0 30px rgba(72, 214, 253, 0.25);
  --blur-glass: blur(20px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

ul[role="list"],
ol[role="list"] {
  list-style: none;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-body);
  font-size: var(--text-body);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img,
picture,
svg,
canvas {
  display: block;
  max-width: 100%;
}

button,
input,
textarea,
select {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 2px solid var(--color-accent-cyan);
  outline-offset: 3px;
}

::selection {
  background: rgba(72, 214, 253, 0.25);
  color: var(--color-text-primary);
}

.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
}

.glass-panel,
.glass-card {
  background: var(--color-surface-variant);
  -webkit-backdrop-filter: var(--blur-glass);
  backdrop-filter: var(--blur-glass);
}

.nv-container {
  width: min(100% - 2rem, var(--container-max-width));
  margin-inline: auto;
}

.nv-section {
  padding-block: var(--section-padding);
}

.nv-eyebrow {
  font-family: var(--font-label);
  font-size: var(--text-label);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-accent-cyan);
}

.nv-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  border: 0;
  border-radius: var(--border-radius-sm);
  background: var(--color-btn-primary);
  color: var(--color-on-primary);
  font-weight: 800;
  box-shadow: var(--shadow-glow);
}

.nv-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-sm);
  background: rgba(25, 27, 68, 0.4);
  color: var(--color-text-primary);
}

.nv-card {
  border: 1px solid var(--color-outline-ghost);
  border-radius: var(--border-radius-md);
  background: var(--color-surface-low);
  box-shadow: var(--shadow-card);
}

.nv-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--color-outline-ghost);
  border-radius: 9999px;
  background: var(--color-surface-high);
  padding: 0.5rem 0.875rem;
  font-family: var(--font-label);
  font-size: var(--text-label);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nv-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-outline-ghost), transparent);
}

.nv-page {
  isolation: isolate;
}

.nv-brand-link {
  cursor: pointer;
}

.nv-disabled-link {
  cursor: default;
  pointer-events: none;
}

/* Responsive breakpoints */
/* sm: 640px */
/* md: 768px */
/* lg: 1024px */
/* xl: 1280px */
/* 2xl: 1536px */
