@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@400;500&display=swap');

/* ─────────────────────────────────────────
   RESET
───────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
img, video, svg {
  display: block;
  max-width: 100%;
}
button, input, textarea, select {
  font: inherit;
}
ul, ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
}

/* ─────────────────────────────────────────
   DESIGN TOKENS
───────────────────────────────────────── */
:root {
  --c-bg:           #0b0f1a;
  --c-bg-1:         #111827;
  --c-bg-2:         #1a2235;
  --c-bg-card:      #141c2e;
  --c-border:       rgba(255,255,255,0.07);
  --c-border-bright:rgba(0,230,200,0.25);

  --c-cyan:         #00e6c8;
  --c-cyan-dim:     #00b8a2;
  --c-cyan-glow:    rgba(0,230,200,0.15);
  --c-blue:         #1a6fff;
  --c-blue-dim:     #1458cc;

  --c-text:         #e8edf5;
  --c-text-muted:   #7a8aa8;
  --c-text-faint:   #4a5878;
  --c-white:        #ffffff;

  --c-grad-hero:    linear-gradient(135deg, #0b0f1a 0%, #0d1627 60%, #0b1a2e 100%);

  --r-sm:  6px;
  --r-md:  12px;
  --r-lg:  20px;
  --r-xl:  32px;
  --r-pill:9999px;

  --sh-card:  0 2px 24px rgba(0,0,0,0.45), 0 0 0 1px rgba(255,255,255,0.05);
  --sh-glow:  0 0 40px rgba(0,230,200,0.18);
  --sh-btn:   0 4px 20px rgba(0,230,200,0.28);

  --sp-1:  clamp(4px,  0.5vw,  6px);
  --sp-2:  clamp(8px,  1vw,   12px);
  --sp-3:  clamp(12px, 1.5vw, 16px);
  --sp-4:  clamp(16px, 2vw,   24px);
  --sp-5:  clamp(24px, 3vw,   36px);
  --sp-6:  clamp(36px, 5vw,   56px);
  --sp-7:  clamp(56px, 7vw,   88px);
  --sp-8:  clamp(80px, 10vw, 128px);

  --nav-h: 64px;

  --f-mono: 'JetBrains Mono', monospace;
  --f-sans: 'Inter', system-ui, sans-serif;
}

/* ─────────────────────────────────────────
   BASE
───────────────────────────────────────── */
body {
  font-family: var(--f-sans);
  background-color: var(--c-bg);
  color: var(--c-text);
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ─────────────────────────────────────────
   CONTAINER
───────────────────────────────────────── */
.wrap {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left:  clamp(20px, 5vw, 64px);
  padding-right: clamp(20px, 5vw, 64px);
}

/* ─────────────────────────────────────────
   TYPOGRAPHY
───────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--f-sans);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.025em;
  color: var(--c-white);
}
h1 { font-size: clamp(36px, 5.5vw, 72px); font-weight: 800; }
h2 { font-size: clamp(28px, 3.8vw, 52px); }
h3 { font-size: clamp(20px, 2.2vw, 28px); font-weight: 600; }
h4 { font-size: clamp(16px, 1.5vw, 20px); font-weight: 600; }

p {
  color: var(--c-text-muted);
  max-width: 68ch;
}
p.lead {
  font-size: clamp(17px, 1.4vw, 21px);
  color: var(--c-text);
  font-weight: 400;
  line-height: 1.55;
  max-width: 58ch;
}
strong { color: var(--c-white); font-weight: 600; }

.mono {
  font-family: var(--f-mono);
  font-size: 0.85em;
  letter-spacing: 0.02em;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--f-mono);
  font-size: clamp(11px, 0.85vw, 13px);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-cyan);
  margin-bottom: var(--sp-4);
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 2px;
  background: var(--c-cyan);
  border-radius: 2px;
  flex-shrink: 0;
}

.section-label {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-text-faint);
  margin-bottom: var(--sp-3);
}

/* ─────────────────────────────────────────
   LINKS
───────────────────────────────────────── */
a.text-link {
  color: var(--c-cyan);
  border-bottom: 1px solid rgba(0,230,200,0.3);
  transition: border-color 0.2s, color 0.2s;
}
a.text-link:hover {
  color: var(--c-white);
  border-color: var(--c-white);
}

/* ─────────────────────────────────────────
   BUTTONS
───────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 13px 28px;
  border-radius: var(--r-md);
  font-size: clamp(14px, 1vw, 15px);
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--c-cyan);
  color: #040a12;
  box-shadow: var(--sh-btn);
}
.btn--primary:hover {
  background: #12f5d8;
  box-shadow: 0 6px 32px rgba(0,230,200,0.42);
}

.btn--outline {
  background: transparent;
  color: var(--c-text);
  border: 1.5px solid var(--c-border-bright);
}
.btn--outline:hover {
  border-color: var(--c-cyan);
  color: var(--c-cyan);
  box-shadow: 0 0 0 1px rgba(0,230,200,0.15) inset;
}

.btn--ghost {
  background: transparent;
  color: var(--c-text-muted);
  padding-left: 0;
  padding-right: 0;
}
.btn--ghost:hover { color: var(--c-cyan); }
.btn--ghost:hover { transform: none; }

.btn--sm {
  padding: 9px 20px;
  font-size: 13px;
  border-radius: var(--r-sm);
}

/* ─────────────────────────────────────────
   NAV
───────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  height: var(--nav-h);
  background: rgba(11,15,26,0.88);
  backdrop-filter: blur(18px) saturate(1.6);
  -webkit-backdrop-filter: blur(18px) saturate(1.6);
  border-bottom: 1px solid var(--c-border);
}
.nav-inner {
  display: flex;
  align-items: center;
  height: var(--nav-h);
  gap: var(--sp-5);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo__mark {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}
.nav-logo__name {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--c-white);
}
.nav-logo__name span {
  color: var(--c-cyan);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  flex: 1;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--c-text-muted);
  padding: 6px 12px;
  border-radius: var(--r-sm);
  transition: color 0.18s, background 0.18s;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.is-active {
  color: var(--c-white);
  background: rgba(255,255,255,0.06);
}
.nav-links a.is-active {
  color: var(--c-cyan);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-shrink: 0;
}
.nav-login {
  font-size: 14px;
  font-weight: 500;
  color: var(--c-text-muted);
  transition: color 0.18s;
}
.nav-login:hover { color: var(--c-white); }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  border-radius: var(--r-sm);
  transition: background 0.18s;
}
.nav-toggle:hover { background: rgba(255,255,255,0.06); }
.nav-toggle__bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--c-text);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

/* Mobile nav */
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: var(--c-bg-1);
  border-bottom: 1px solid var(--c-border);
  padding: var(--sp-4) 0;
  z-index: 899;
}
.nav-mobile.is-open { display: block; }
.nav-mobile a {
  display: block;
  padding: 12px clamp(20px, 5vw, 64px);
  font-size: 15px;
  font-weight: 500;
  color: var(--c-text-muted);
  transition: color 0.18s, background 0.18s;
}
.nav-mobile a:hover {
  color: var(--c-cyan);
  background: rgba(0,230,200,0.04);
}
.nav-mobile__divider {
  height: 1px;
  background: var(--c-border);
  margin: var(--sp-3) 0;
}
.nav-mobile__actions {
  padding: var(--sp-3) clamp(20px, 5vw, 64px) 0;
}

/* ─────────────────────────────────────────
   PAGE OFFSET
───────────────────────────────────────── */
main { padding-top: var(--nav-h); }

/* ─────────────────────────────────────────
   SECTIONS
───────────────────────────────────────── */
.section {
  padding-top: var(--sp-8);
  padding-bottom: var(--sp-8);
}
.section--sm {
  padding-top: var(--sp-6);
  padding-bottom: var(--sp-6);
}
.section--dark {
  background: var(--c-bg-1);
}
.section--darker {
  background: var(--c-bg);
}
.section--card-bg {
  background: var(--c-bg-2);
}

.section-head {
  margin-bottom: var(--sp-6);
  max-width: 640px;
}
.section-head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-head--center p { margin-left: auto; margin-right: auto; }

/* ─────────────────────────────────────────
   HERO
───────────────────────────────────────── */
.hero {
  background: var(--c-grad-hero);
  padding-top: clamp(80px, 12vw, 140px);
  padding-bottom: clamp(80px, 12vw, 140px);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: clamp(300px, 55vw, 700px);
  height: clamp(300px, 55vw, 700px);
  background: radial-gradient(circle, rgba(0,230,200,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -15%;
  left: 5%;
  width: clamp(200px, 35vw, 480px);
  height: clamp(200px, 35vw, 480px);
  background: radial-gradient(circle, rgba(26,111,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-7);
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-content {}
.hero-content h1 {
  margin-bottom: var(--sp-4);
}
.hero-content h1 .accent {
  color: var(--c-cyan);
  display: block;
}
.hero-content .lead {
  margin-bottom: var(--sp-5);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(0,230,200,0.08);
  border: 1px solid rgba(0,230,200,0.2);
  border-radius: var(--r-pill);
  font-size: 12px;
  font-family: var(--f-mono);
  color: var(--c-cyan);
  margin-top: var(--sp-4);
}
.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-cyan);
  box-shadow: 0 0 8px var(--c-cyan);
  flex-shrink: 0;
}
.hero-visual {
  position: relative;
}
.hero-visual__frame {
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-card), var(--sh-glow);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-visual__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
}
.hero-visual__frame--placeholder {
  background: linear-gradient(135deg, var(--c-bg-2) 0%, var(--c-bg-card) 100%);
  position: relative;
}
.hero-visual__grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,230,200,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,230,200,0.04) 1px, transparent 1px);
  background-size: 32px 32px;
}

/* ─────────────────────────────────────────
   CARDS
───────────────────────────────────────── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
}
.card-grid--2 {
  grid-template-columns: repeat(2, 1fr);
}
.card-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

.card {
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: var(--sp-5);
  transition: border-color 0.22s, box-shadow 0.22s, transform 0.22s;
  box-shadow: var(--sh-card);
}
.card:hover {
  border-color: rgba(0,230,200,0.22);
  box-shadow: var(--sh-card), 0 0 28px rgba(0,230,200,0.09);
  transform: translateY(-3px);
}
.card__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-md);
  background: rgba(0,230,200,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-4);
  color: var(--c-cyan);
  flex-shrink: 0;
}
.card__icon svg {
  width: 22px;
  height: 22px;
}
.card__title {
  font-size: clamp(16px, 1.3vw, 19px);
  font-weight: 600;
  color: var(--c-white);
  margin-bottom: var(--sp-2);
}
.card__text {
  font-size: clamp(14px, 0.95vw, 15px);
  color: var(--c-text-muted);
  line-height: 1.65;
  max-width: 100%;
}
.card--feature {
  position: relative;
  overflow: hidden;
}
.card--feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--c-cyan), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.card--feature:hover::before { opacity: 1; }

/* ─────────────────────────────────────────
   STATS
───────────────────────────────────────── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-4);
}
.stat-item {
  text-align: center;
  padding: var(--sp-5) var(--sp-4);
}
.stat-item__number {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  color: var(--c-white);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: var(--sp-2);
}
.stat-item__number .unit {
  color: var(--c-cyan);
}
.stat-item__label {
  font-size: clamp(13px, 0.9vw, 14px);
  color: var(--c-text-muted);
  font-weight: 400;
  line-height: 1.4;
  max-width: 16ch;
  margin: 0 auto;
}

/* ─────────────────────────────────────────
   CTA BAND
───────────────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, #0d1c3a 0%, #0b2040 50%, #0d1c3a 100%);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
  padding-top: var(--sp-8);
  padding-bottom: var(--sp-8);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0,230,200,0.06) 0%, transparent 65%);
  pointer-events: none;
}
.cta-band__inner {
  position: relative;
  z-index: 1;
  text-align: center;
}
.cta-band__inner h2 { margin-bottom: var(--sp-3); }
.cta-band__inner p {
  margin: 0 auto var(--sp-5);
  max-width: 52ch;
  font-size: clamp(15px, 1.1vw, 18px);
  color: var(--c-text-muted);
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  justify-content: center;
  align-items: center;
}

/* ─────────────────────────────────────────
   FAQ
───────────────────────────────────────── */
.faq-list {
  max-width: 780px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--c-border);
}
.faq-item:first-child { border-top: 1px solid var(--c-border); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: var(--sp-4) 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-4);
  cursor: pointer;
  color: var(--c-white);
  font-size: clamp(15px, 1.1vw, 17px);
  font-weight: 600;
  font-family: var(--f-sans);
  transition: color 0.18s;
}
.faq-question:hover { color: var(--c-cyan); }
.faq-question__icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(0,230,200,0.1);
  border: 1px solid rgba(0,230,200,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.2s;
  color: var(--c-cyan);
  font-size: 14px;
  line-height: 1;
}
.faq-item.is-open .faq-question__icon {
  background: var(--c-cyan);
  color: #040a12;
  transform: rotate(45deg);
}
.faq-answer {
  display: none;
  padding-bottom: var(--sp-4);
}
.faq-item.is-open .faq-answer { display: block; }
.faq-answer p {
  color: var(--c-text-muted);
  font-size: clamp(14px, 0.95vw, 15px);
  max-width: 100%;
}

/* ─────────────────────────────────────────
   CONTENT SECTION
───────────────────────────────────────── */
.content-section__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-7);
  align-items: start;
  margin-top: var(--sp-5);
}
.content-section__body p + p { margin-top: var(--sp-3); }

/* ─────────────────────────────────────────
   FORMS
───────────────────────────────────────── */
.form-field {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  margin-bottom: var(--sp-4);
}
.form-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--c-text);
  letter-spacing: 0.01em;
}
.form-input,
.form-textarea {
  background: var(--c-bg-2);
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-md);
  padding: 12px 16px;
  color: var(--c-white);
  font-size: 15px;
  transition: border-color 0.18s, box-shadow 0.18s;
  width: 100%;
}
.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--c-text-faint);
}
.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--c-cyan);
  box-shadow: 0 0 0 3px rgba(0,230,200,0.1);
}
.form-textarea { min-height: 120px; resize: vertical; }

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
.site-footer {
  background: var(--c-bg-1);
  border-top: 1px solid var(--c-border);
  padding-top: var(--sp-7);
  padding-bottom: var(--sp-5);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: var(--sp-6);
  padding-bottom: var(--sp-6);
  border-bottom: 1px solid var(--c-border);
}
.footer-brand__tagline {
  font-size: 14px;
  color: var(--c-text-muted);
  margin-top: var(--sp-3);
  max-width: 30ch;
  line-height: 1.55;
}
.footer-brand__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: var(--sp-3);
}
.footer-brand__logo-name {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--c-white);
}
.footer-brand__logo-name span { color: var(--c-cyan); }
.footer-social {
  display: flex;
  gap: var(--sp-2);
  margin-top: var(--sp-4);
}
.footer-social__link {
  width: 36px;
  height: 36px;
  border-radius: var(--r-md);
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--c-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-text-muted);
  transition: background 0.18s, color 0.18s, border-color 0.18s;
}
.footer-social__link:hover {
  background: rgba(0,230,200,0.1);
  border-color: rgba(0,230,200,0.25);
  color: var(--c-cyan);
}
.footer-social__link svg { width: 16px; height: 16px; }

.footer-col__title {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-text-faint);
  margin-bottom: var(--sp-4);
  font-family: var(--f-mono);
}
.footer-col__links {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.footer-col__links a {
  font-size: 14px;
  color: var(--c-text-muted);
  transition: color 0.18s;
}
.footer-col__links a:hover { color: var(--c-cyan); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--sp-4);
  gap: var(--sp-4);
  flex-wrap: wrap;
}
.footer-bottom__copy {
  font-size: 13px;
  color: var(--c-text-faint);
}
.footer-bottom__links {
  display: flex;
  gap: var(--sp-4);
}
.footer-bottom__links a {
  font-size: 13px;
  color: var(--c-text-faint);
  transition: color 0.18s;
}
.footer-bottom__links a:hover { color: var(--c-text-muted); }

/* ─────────────────────────────────────────
   DIVIDER / MISC
───────────────────────────────────────── */
.divider {
  height: 1px;
  background: var(--c-border);
  margin: var(--sp-6) 0;
}
.tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: var(--r-pill);
  font-size: 12px;
  font-weight: 500;
  font-family: var(--f-mono);
  background: rgba(0,230,200,0.08);
  border: 1px solid rgba(0,230,200,0.18);
  color: var(--c-cyan);
}
.gradient-text {
  background: linear-gradient(120deg, var(--c-white) 30%, var(--c-cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-6);
  }
  .hero-visual { display: none; }
  .card-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--sp-5); }
  .content-section__body { grid-template-columns: 1fr; gap: var(--sp-5); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-login { display: none; }
  .nav-toggle { display: flex; }
  .nav-actions .btn { display: none; }

  .card-grid { grid-template-columns: 1fr; }
  .card-grid--2 { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: var(--sp-5); }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .stats-row { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .cta-actions { flex-direction: column; }
}
img,svg,video{max-width:100%;height:auto}
body{margin:0}
*{box-sizing:border-box}
