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

:root {
  /* base */
  --ink:    #0B0E14;   /* near-black base (replaces navy) */
  --ink2:   #141a26;   /* lifted dark surface */
  --ink3:   #1d2533;   /* dark card / hairline-on-dark */
  /* accents */
  --blue:   #3B5BFF;   /* signature electric blue */
  --blue-d: #2c46df;   /* darker for hover */
  --blue-l: #7d92ff;   /* lighter blue for text on dark */
  --teal:   #00C2A8;   /* secondary accent */
  --teal-l: #2fdcc3;
  /* surfaces */
  --surface:  #f8fafc; /* soft cool off-white — section base */
  --surface2: #eef1f6; /* deeper tint — alternating sections */
  --surface3: #e7ebf1;
  --card:     #ffffff; /* pure white — cards lift off the section */
  /* text */
  --text:   #0B0E14;
  --muted:  #5b6472;   /* cool slate */
  --muted2: #818b9c;
  /* on-dark text */
  --on-dark:      #ffffff;
  --on-dark-soft: #a3adbf;
  --on-dark-dim:  #6c7689;
  /* lines */
  --border:  #e4e7ec;
  --border2: #d7dbe2;
  --r: 12px;
}

html { scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  color: var(--text);
  background: var(--surface);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.serif { font-family: 'Space Grotesk', sans-serif; }
h1, h2, h3, .display { font-family: 'Space Grotesk', sans-serif; letter-spacing: -0.01em; }

/* ── SHARED ── */
.inner    { max-width: 880px; margin: 0 auto; }
.inner-md { max-width: 800px; margin: 0 auto; }
.inner-sm { max-width: 720px; margin: 0 auto; }

.eyebrow {
  display: inline-block;
  font-size: 12px; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 16px;
}
.eyebrow-blue-l { color: var(--blue-l); }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 26px; border-radius: 10px;
  font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 600;
  text-decoration: none; cursor: pointer; border: none;
  transition: transform .15s ease, background .15s ease, border-color .15s ease, box-shadow .15s ease;
}
.btn-primary { background: var(--blue); color: #fff; box-shadow: 0 6px 20px -6px var(--blue); }
.btn-primary:hover { background: var(--blue-d); transform: translateY(-2px); box-shadow: 0 12px 28px -8px var(--blue); }
.btn-ghost { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.18); }
.btn-ghost:hover { border-color: rgba(255,255,255,.45); background: rgba(255,255,255,.04); transform: translateY(-2px); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: var(--ink2); transform: translateY(-2px); }

.fade-up { opacity: 0; transform: translateY(20px); transition: opacity .55s ease, transform .55s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

.check { width: 11px; height: 11px; stroke-width: 2.4; fill: none; }

/* ── SITE HEADER (fixed) ── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  border-bottom: 1px solid transparent;
  transition: background .25s ease, backdrop-filter .25s ease, border-color .25s ease;
}
.site-header.scrolled {
  background: rgba(11,14,20,.72);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom-color: rgba(255,255,255,.08);
}
.header-inner {
  max-width: 1100px; margin: 0 auto; padding: 15px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  text-align: left;
}
.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; }
.brand-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--blue); color: #fff;
  font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 15px; letter-spacing: -.03em;
  animation: markGlow 3.2s ease-in-out infinite;
}
.brand-name {
  font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 18px; letter-spacing: -.01em;
  color: #eef1ff;
  animation: brandGlow 3.2s ease-in-out infinite;
}
@keyframes brandGlow {
  0%, 100% { text-shadow: 0 0 6px rgba(59,91,255,.55), 0 0 15px rgba(59,91,255,.42), 0 0 28px rgba(59,91,255,.24); }
  50%      { text-shadow: 0 0 9px rgba(59,91,255,.8),  0 0 22px rgba(59,91,255,.62), 0 0 44px rgba(59,91,255,.4); }
}
@keyframes markGlow {
  0%, 100% { box-shadow: 0 0 14px rgba(59,91,255,.5),  0 0 6px rgba(59,91,255,.45); }
  50%      { box-shadow: 0 0 26px rgba(59,91,255,.8),  0 0 9px rgba(59,91,255,.6); }
}
@media (prefers-reduced-motion: reduce) {
  .brand-mark, .brand-name { animation: none; }
  .brand-mark { box-shadow: 0 0 18px rgba(59,91,255,.6), 0 0 7px rgba(59,91,255,.5); }
  .brand-name { text-shadow: 0 0 7px rgba(59,91,255,.65), 0 0 16px rgba(59,91,255,.5), 0 0 30px rgba(59,91,255,.3); }
}
.header-nav { display: flex; align-items: center; gap: 28px; }
.header-nav .nav-link { color: var(--on-dark-soft); text-decoration: none; font-size: 14.5px; font-weight: 500; transition: color .15s ease; }
.header-nav .nav-link:hover { color: #fff; }
.btn-sm { padding: 10px 20px; font-size: 14px; }

/* ── HERO ── */
.hero {
  background: var(--ink);
  padding: 128px 24px 92px; text-align: center;
  position: relative; overflow: hidden;
}
.hero-content { max-width: 880px; margin: 0 auto; }
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(60% 50% at 50% -8%, rgba(59,91,255,.28) 0%, transparent 62%),
    radial-gradient(40% 40% at 88% 6%, rgba(0,194,168,.12) 0%, transparent 60%);
  pointer-events: none;
}
.hero > * { position: relative; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--blue-l); border: 1px solid rgba(59,91,255,.4);
  background: rgba(59,91,255,.1); padding: 6px 16px; border-radius: 100px; margin-bottom: 30px;
}
.hero-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 8px var(--teal); }
.hero h1 {
  font-size: clamp(36px, 6.2vw, 64px); line-height: 1.05; font-weight: 600;
  color: var(--on-dark); max-width: 780px; margin: 0 auto 24px;
}
.hero h1 em { font-style: normal; color: var(--blue-l); }
.hero-sub {
  font-size: clamp(16px, 2.2vw, 19px); color: var(--on-dark-soft);
  max-width: 580px; margin: 0 auto 40px; line-height: 1.7;
}
.hero-ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.hero-note { margin-top: 20px; font-size: 13px; color: var(--on-dark-dim); }

/* ── PAIN: HATS ── */
.pain-hats { background: var(--surface2); padding: 88px 24px; }
.pain-hats h2 { font-size: clamp(28px, 4.2vw, 40px); color: var(--text); line-height: 1.15; margin-bottom: 18px; font-weight: 600; }
.pain-hats .lead { font-size: 17px; color: var(--muted); line-height: 1.8; margin-bottom: 40px; }
.hats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.hat-card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--r);
  padding: 26px 24px; transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.hat-card:hover { transform: translateY(-3px); border-color: var(--border2); box-shadow: 0 14px 34px -18px rgba(11,14,20,.4); }
.hat-ico {
  width: 42px; height: 42px; border-radius: 11px;
  background: rgba(59,91,255,.1); color: var(--blue);
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.hat-ico svg { width: 21px; height: 21px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.hat-card h3 { font-size: 15px; font-weight: 600; color: var(--text); margin-bottom: 7px; }
.hat-card p { font-size: 13.5px; color: var(--muted); line-height: 1.65; }

/* ── PRICING ── */
.pricing { background: var(--surface); padding: 88px 24px; }
.pricing-head { text-align: center; margin-bottom: 52px; }
.pricing-head h2 { font-size: clamp(28px, 4.2vw, 40px); color: var(--text); line-height: 1.15; margin-bottom: 12px; font-weight: 600; }
.pricing-sub { font-size: 16px; color: var(--muted); }
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.pricing-card {
  background: var(--card); border: 1px solid var(--border); border-radius: 16px;
  padding: 34px 30px; display: flex; flex-direction: column; gap: 22px;
}
.pricing-card.featured { background: var(--ink); border-color: transparent; position: relative; box-shadow: 0 24px 60px -24px rgba(11,14,20,.55); }
.featured-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--blue); color: #fff; font-size: 11px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase; padding: 5px 16px; border-radius: 100px; white-space: nowrap;
}
.p-tier { font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--blue); }
.featured .p-tier { color: var(--blue-l); }
.p-name { font-family: 'Space Grotesk', sans-serif; font-size: 23px; font-weight: 600; color: var(--text); margin-top: 6px; line-height: 1.2; }
.featured .p-name { color: #fff; }
.p-amount { font-family: 'Space Grotesk', sans-serif; font-size: 48px; font-weight: 700; color: var(--text); line-height: 1; letter-spacing: -.02em; }
.featured .p-amount { color: #fff; }
.p-amount sup { font-size: 22px; font-weight: 600; vertical-align: super; }
.p-per { font-size: 13px; color: var(--muted); margin-top: 6px; }
.featured .p-per { color: var(--on-dark-soft); }
.p-save {
  font-size: 13px; font-weight: 600; color: var(--teal);
  background: rgba(0,194,168,.12); border: 1px solid rgba(0,194,168,.3);
  border-radius: 7px; padding: 5px 12px; display: inline-block; margin-top: 10px;
}
.featured .p-save { color: var(--teal-l); }
.p-divider { height: 1px; background: var(--border); }
.featured .p-divider { background: rgba(255,255,255,.1); }
.p-features { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.pf { display: flex; gap: 11px; align-items: flex-start; font-size: 14px; color: var(--muted); line-height: 1.5; }
.featured .pf { color: var(--on-dark-soft); }
.pf-check {
  width: 19px; height: 19px; border-radius: 50%; flex-shrink: 0; margin-top: 1px;
  background: rgba(59,91,255,.12); display: flex; align-items: center; justify-content: center;
}
.pf-check svg { stroke: var(--blue); }
.featured .pf-check { background: rgba(125,146,255,.16); }
.featured .pf-check svg { stroke: var(--blue-l); }
.p-cta { margin-top: auto; }
.btn-full { display: flex; justify-content: center; width: 100%; }
.p-guarantee { text-align: center; margin-top: 30px; font-size: 13px; color: var(--muted); }
.p-guarantee strong { color: var(--text); font-weight: 600; }

/* ── SHARED SECTION HEAD (centered) ── */
.sec-head { text-align: center; margin-bottom: 44px; }
.sec-head .eyebrow { display: block; }
.sec-head h2 { font-size: clamp(28px, 4.2vw, 40px); color: var(--text); line-height: 1.15; margin-bottom: 12px; font-weight: 600; }
.sec-head .lead { font-size: 16px; color: var(--muted); max-width: 560px; margin: 0 auto; line-height: 1.7; }

/* ── ABOUT TAXDOME ── */
.pain-td { background: var(--surface); padding: 88px 24px; }
.pain-td h2 { font-size: clamp(26px, 4vw, 38px); color: var(--text); line-height: 1.25; margin-bottom: 18px; font-weight: 600; }
.pain-td .lead { font-size: 17px; color: var(--muted); line-height: 1.8; margin-bottom: 40px; }
.td-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.td-card { background: var(--card); border: 1px solid var(--border); border-left: 3px solid var(--blue); border-radius: 0 var(--r) var(--r) 0; padding: 24px 22px; }
.td-card h3 { font-size: 15px; font-weight: 600; color: var(--text); margin-bottom: 7px; }
.td-card p { font-size: 13.5px; color: var(--muted); line-height: 1.65; }

/* ── UTILIZATION ── */
.util { background: var(--surface2); padding: 88px 24px; }
.util-card { background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 40px 36px 34px; }
.util-bar { position: relative; height: 62px; border-radius: 10px; overflow: hidden; display: flex; margin-bottom: 10px; }
.util-seg { display: flex; align-items: center; justify-content: center; }
.util-seg .num { font-family: 'Space Grotesk', sans-serif; font-weight: 600; }
.util-seg.s1 { width: 42%; background: linear-gradient(90deg, #e6ecff, #b9c6ff); }
.util-seg.s1 .num { color: var(--blue); font-size: 22px; }
.util-seg.s2 { width: 46%; background: linear-gradient(90deg, #7d92ff, var(--blue)); }
.util-seg.s2 .num { color: #fff; font-size: 22px; }
.util-seg.s3 { width: 12%; background: linear-gradient(90deg, var(--blue-d), var(--ink)); }
.util-seg.s3 .num { color: var(--teal-l); font-size: 18px; }
.util-scale { display: flex; justify-content: space-between; margin-bottom: 32px; padding: 0 2px; }
.util-scale span { font-size: 11px; color: var(--muted2); }
.util-legend { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.util-leg { background: var(--surface); border: 1px solid var(--border); border-radius: 10px; padding: 18px 16px; }
.util-leg.l1 { border-top: 3px solid #b9c6ff; }
.util-leg.l2 { border-top: 3px solid var(--blue); }
.util-leg.l3 { border-top: 3px solid var(--ink); }
.util-leg .big { font-family: 'Space Grotesk', sans-serif; font-size: 28px; font-weight: 600; line-height: 1; margin-bottom: 7px; }
.util-leg.l1 .big, .util-leg.l2 .big { color: var(--blue); }
.util-leg.l3 .big { color: var(--ink); }
.util-leg .lbl { font-size: 12px; font-weight: 600; color: var(--text); margin-bottom: 6px; text-transform: uppercase; letter-spacing: .06em; }
.util-leg p { font-size: 12px; color: var(--muted); line-height: 1.6; }
.util-foot { font-size: 13px; color: var(--muted2); text-align: center; margin-top: 24px; font-style: italic; }
.util-cta { text-align: center; margin-top: 36px; }
.util-cta p { font-size: 16px; color: var(--muted); margin-bottom: 20px; }

/* ── WHO ── */
.who { background: var(--ink); padding: 90px 24px; position: relative; overflow: hidden; }
.who::before { content: ''; position: absolute; inset: 0; background: radial-gradient(50% 60% at 100% 0%, rgba(59,91,255,.16) 0%, transparent 60%); pointer-events: none; }
.who-inner { max-width: 880px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: start; position: relative; }
.who h2 { color: #fff; font-size: clamp(26px, 4vw, 36px); line-height: 1.2; margin-bottom: 18px; font-weight: 600; }
.who p { color: var(--on-dark-soft); font-size: 15px; line-height: 1.8; margin-bottom: 14px; }
.cred-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.cred-item { display: flex; gap: 12px; align-items: flex-start; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: var(--r); padding: 14px 16px; }
.cred-dot { width: 8px; height: 8px; background: var(--teal); border-radius: 50%; flex-shrink: 0; margin-top: 6px; box-shadow: 0 0 8px var(--teal); }
.cred-item span { font-size: 14px; color: #c4cede; line-height: 1.55; }

/* ── FOR WHO ── */
.for-who { background: var(--surface); padding: 88px 24px; }
.fit-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 14px; }
.fit-item { display: flex; gap: 14px; align-items: flex-start; background: var(--card); border: 1px solid var(--border); border-radius: var(--r); padding: 18px 20px; }
.fit-check { width: 24px; height: 24px; background: rgba(59,91,255,.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.fit-check svg { stroke: var(--blue); }
.fit-item p { font-size: 14px; color: var(--text); line-height: 1.6; }

/* ── WHAT WE WORK ON ── */
.what { background: var(--surface2); padding: 88px 24px; }
.use-cases { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.use-case { background: var(--card); border: 1px solid var(--border); border-top: 3px solid var(--blue); border-radius: var(--r); padding: 28px 26px; }
.use-case h3 { font-family: 'Space Grotesk', sans-serif; font-size: 19px; color: var(--text); margin-bottom: 10px; font-weight: 600; }
.use-case p { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ── TIER DEEP DIVES ── */
.tier { padding: 88px 24px; }
.tier.reg { background: var(--surface2); }
.tier.alt { background: var(--ink); position: relative; overflow: hidden; }
.tier.alt::before { content: ''; position: absolute; inset: 0; background: radial-gradient(46% 60% at 0% 0%, rgba(0,194,168,.12) 0%, transparent 58%); pointer-events: none; }
.tier-inner { max-width: 880px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: start; position: relative; }
.tier h2 { font-size: clamp(26px, 4vw, 36px); line-height: 1.2; margin-bottom: 16px; font-weight: 600; }
.tier.reg h2 { color: var(--text); }
.tier.alt h2 { color: #fff; }
.price-block { margin-bottom: 24px; }
.price-num { font-family: 'Space Grotesk', sans-serif; font-size: 48px; font-weight: 700; line-height: 1; letter-spacing: -.02em; }
.tier.reg .price-num { color: var(--text); }
.tier.alt .price-num { color: #fff; }
.price-num sup { font-size: 22px; font-weight: 600; vertical-align: super; }
.price-desc { font-size: 13px; margin-top: 6px; }
.tier.reg .price-desc { color: var(--muted); }
.tier.alt .price-desc { color: var(--on-dark-soft); }
.tier p { font-size: 15px; line-height: 1.8; margin-bottom: 14px; }
.tier.reg p { color: var(--muted); }
.tier.alt p { color: var(--on-dark-soft); }
.tier-features { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 30px; }
.tier-feature { display: flex; gap: 12px; align-items: flex-start; font-size: 14px; line-height: 1.6; }
.tier.reg .tier-feature { color: var(--text); }
.tier.alt .tier-feature { color: #c4cede; }
.tf-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; margin-top: 6px; }
.tier.reg .tf-dot { background: var(--blue); }
.tier.alt .tf-dot { background: var(--teal); box-shadow: 0 0 8px var(--teal); }
.tier-box { background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 28px 26px; }
.tier.alt .tier-box { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.08); }
.tier-box h3 { font-family: 'Space Grotesk', sans-serif; font-size: 18px; margin-bottom: 14px; font-weight: 600; }
.tier.reg .tier-box h3 { color: var(--text); }
.tier.alt .tier-box h3 { color: #fff; }
.scenario-list { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.scenario { display: flex; gap: 11px; align-items: flex-start; font-size: 13.5px; line-height: 1.6; padding-bottom: 11px; border-bottom: 1px solid var(--border); }
.tier.reg .scenario { color: var(--muted); }
.tier.alt .scenario { color: #8aaccc; border-bottom-color: rgba(255,255,255,.08); }
.scenario:last-child { border-bottom: none; padding-bottom: 0; }
.scenario-num { font-family: 'Space Grotesk', sans-serif; font-size: 18px; font-weight: 600; flex-shrink: 0; line-height: 1.2; }
.tier.reg .scenario-num { color: var(--blue); }
.tier.alt .scenario-num { color: var(--blue-l); }

/* ── HOW IT WORKS ── */
.how { background: var(--surface); padding: 88px 24px; }
.steps { display: flex; flex-direction: column; }
.step { display: grid; grid-template-columns: 48px 1fr; gap: 20px; align-items: flex-start; padding-bottom: 36px; position: relative; }
.step:not(:last-child)::after { content: ''; position: absolute; left: 23px; top: 48px; bottom: 0; width: 2px; background: linear-gradient(to bottom, var(--border2), transparent); }
.step-num { width: 48px; height: 48px; background: var(--blue); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Space Grotesk', sans-serif; font-size: 18px; font-weight: 600; flex-shrink: 0; position: relative; z-index: 1; box-shadow: 0 8px 20px -8px var(--blue); }
.step-body h3 { font-size: 16px; font-weight: 600; color: var(--text); margin-bottom: 6px; padding-top: 11px; }
.step-body p { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ── FAQ ── */
.faq { background: var(--surface2); padding: 88px 24px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--card); border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; }
.faq-q { width: 100%; background: none; border: none; padding: 20px 24px; text-align: left; font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 600; color: var(--text); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-q:hover { background: var(--surface); }
.faq-icon { font-size: 22px; color: var(--blue); flex-shrink: 0; line-height: 1; transition: transform .2s ease; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 24px 20px; font-size: 14px; color: var(--muted); line-height: 1.75; border-top: 1px solid var(--border); padding-top: 16px; }
.faq-item.open .faq-a { display: block; }

/* ── FINAL CTA ── */
.final-cta { background: var(--ink); padding: 96px 24px; text-align: center; position: relative; overflow: hidden; }
.final-cta::before { content: ''; position: absolute; inset: 0; background: radial-gradient(60% 70% at 50% 0%, rgba(59,91,255,.24) 0%, transparent 64%); pointer-events: none; }
.final-cta > * { position: relative; }
.final-cta h2 { font-size: clamp(30px, 5vw, 50px); color: #fff; line-height: 1.12; max-width: 660px; margin: 0 auto 16px; font-weight: 600; }
.final-cta h2 em { font-style: normal; color: var(--blue-l); }
.final-cta p { color: var(--on-dark-soft); font-size: 16px; margin-bottom: 36px; }
.final-ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ── */
.footer { background: #06080d; padding: 40px 24px; text-align: center; }
.footer-brand { font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 20px; color: #eef1ff; margin-bottom: 8px; animation: brandGlow 3.2s ease-in-out infinite; }
.footer-sub { font-size: 12.5px; color: var(--on-dark-dim); }
.footer-sub a { color: var(--on-dark-soft); text-decoration: none; }
.footer-sub strong { color: var(--on-dark-soft); font-weight: 600; }

@media (max-width: 760px) {
  .who-inner, .tier-inner { grid-template-columns: 1fr; gap: 34px; }
  .td-grid, .use-cases { grid-template-columns: 1fr; }
  .util-legend { grid-template-columns: 1fr; }
  .util-card { padding: 28px 22px; }
}

@media (max-width: 640px) {
  .hats-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .hero { padding: 104px 20px 64px; }
  .header-inner { padding: 13px 20px; }
  .header-nav { gap: 16px; }
  .header-nav .nav-link { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .footer-brand { animation: none; text-shadow: 0 0 7px rgba(59,91,255,.65), 0 0 16px rgba(59,91,255,.5), 0 0 30px rgba(59,91,255,.3); }
}
