/* ==========================================================
   Luminsite — marketing site
   Palette: Lumin Cyan #22D3EE · Beam Teal #2DD4BF · Deep Ink #0E1726
   Direction: light page, deep-ink header/footer/menus.
   ========================================================== */

:root {
  --lumin-cyan: #22D3EE;
  --beam-teal: #2DD4BF;
  --deep-ink: #0E1726;
  --white: #FFFFFF;
  --ink-50: #F5F7FA;
  --ink-100: #E5E9F0;
  --ink-200: #D5DCE6;
  --ink-300: #A9B3C2;
  --ink-500: #6B7689;
  --ink-700: #3A4458;

  --shadow-card: 0 1px 2px rgba(14,23,38,0.04), 0 6px 20px rgba(14,23,38,0.06);
  --shadow-hover: 0 2px 4px rgba(14,23,38,0.06), 0 12px 32px rgba(14,23,38,0.10);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --pill: 999px;

  --grad: linear-gradient(135deg, #22D3EE 0%, #2DD4BF 100%);
  --font-display: "Plus Jakarta Sans", "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

/* ---------- base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--deep-ink);
  background: var(--white);
  line-height: 1.55;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* ---------- typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); margin: 0; color: var(--deep-ink); letter-spacing: -0.02em; }
h1 { font-size: clamp(40px, 6vw, 64px); line-height: 1.05; font-weight: 800; }
h2 { font-size: clamp(28px, 3.5vw, 42px); line-height: 1.15; font-weight: 700; margin-bottom: 12px; }
h3 { font-size: 18px; font-weight: 700; margin: 0 0 8px; }
.kicker { font-family: var(--font-display); font-size: 12px; font-weight: 700; letter-spacing: 0.12em; color: var(--lumin-cyan); text-transform: uppercase; margin: 0 0 12px; }
.kicker-light { color: var(--beam-teal); }
.lede { font-size: clamp(17px, 1.5vw, 20px); color: var(--ink-700); margin: 16px 0 28px; max-width: 56ch; }
.eyebrow { font-family: var(--font-display); font-size: 11px; font-weight: 700; letter-spacing: 0.16em; color: var(--lumin-cyan); text-transform: uppercase; margin: 0 0 18px; }
.section-sub { color: var(--ink-500); margin: 4px 0 36px; max-width: 60ch; }

/* ---------- buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 22px; border-radius: var(--pill); font-family: var(--font-display); font-weight: 600; font-size: 15px; cursor: pointer; border: 0; transition: transform .12s ease, background .15s ease, box-shadow .2s ease; white-space: nowrap; }
.btn-primary { background: var(--lumin-cyan); color: var(--deep-ink); box-shadow: 0 1px 0 rgba(255,255,255,.4) inset, 0 6px 20px rgba(34,211,238,0.25); }
.btn-primary:hover { background: var(--beam-teal); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--deep-ink); border: 1.5px solid var(--ink-200); }
.btn-outline:hover { border-color: var(--deep-ink); }
.btn-lg { padding: 16px 28px; font-size: 16px; }
.btn-block { width: 100%; }

/* ---------- HEADER ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--deep-ink);
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 24px; }
.brand img { height: 38px; width: auto; }
.nav-links { display: flex; gap: 28px; }
.nav-links a { color: var(--ink-300); font-weight: 500; font-size: 14.5px; transition: color .15s; }
.nav-links a:hover { color: var(--lumin-cyan); }
.nav-cta { display: flex; align-items: center; gap: 16px; }
.link-light { color: var(--white); font-weight: 500; font-size: 14.5px; }
.link-light:hover { color: var(--lumin-cyan); }

.hamburger { display: none; background: transparent; border: 0; width: 40px; height: 40px; cursor: pointer; position: relative; }
.hamburger span { position: absolute; left: 8px; right: 8px; height: 2px; background: var(--white); border-radius: 2px; transition: transform .2s ease, opacity .2s ease, top .2s ease; }
.hamburger span:nth-child(1) { top: 13px; }
.hamburger span:nth-child(2) { top: 19px; }
.hamburger span:nth-child(3) { top: 25px; }
.hamburger.is-open span:nth-child(1) { top: 19px; transform: rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { top: 19px; transform: rotate(-45deg); }

.mobile-drawer { display: none; padding: 16px 24px 24px; background: var(--deep-ink); border-top: 1px solid rgba(255,255,255,0.05); }
.mobile-drawer a { display: block; padding: 14px 0; color: var(--white); font-family: var(--font-display); font-weight: 500; font-size: 17px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.mobile-drawer a:last-child { border: 0; margin-top: 12px; }
.mobile-drawer .btn-primary { color: var(--deep-ink); }

/* ---------- HERO ---------- */
.hero { padding: 80px 0 60px; background:
  radial-gradient(1200px 600px at 90% -10%, rgba(45,212,191,0.10), transparent 60%),
  radial-gradient(900px 500px at -10% 10%, rgba(34,211,238,0.10), transparent 60%),
  var(--white);
}
.hero-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 64px; align-items: center; }
.hero-visual { background: var(--deep-ink); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-card); }
.hero-visual img { border-radius: var(--radius-md); }

.report-form { display: flex; flex-wrap: wrap; gap: 10px; background: var(--white); border: 1px solid var(--ink-100); border-radius: var(--pill); padding: 8px; box-shadow: var(--shadow-card); max-width: 620px; }
.report-form input, .report-form select { flex: 1 1 180px; border: 0; outline: none; padding: 12px 16px; font-family: var(--font-body); font-size: 15px; color: var(--deep-ink); background: transparent; min-width: 0; }
.report-form select { color: var(--ink-500); }
.report-form button { flex: 0 0 auto; }
.microcopy { color: var(--ink-500); font-size: 13.5px; margin-top: 12px; }

/* ---------- TRUST BAR ---------- */
.trust { background: var(--ink-50); padding: 22px 0; border-top: 1px solid var(--ink-100); border-bottom: 1px solid var(--ink-100); }
.trust p { margin: 0; color: var(--ink-500); font-size: 13.5px; text-align: center; letter-spacing: 0.02em; }
.trust strong { color: var(--deep-ink); font-weight: 600; }

/* ---------- SECTIONS ---------- */
.section { padding: 88px 0; }
.section-alt { background: var(--ink-50); }

/* ---------- STEPS ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.step { background: var(--white); border: 1px solid var(--ink-100); border-radius: var(--radius-md); padding: 28px; transition: transform .15s, box-shadow .2s; }
.step:hover { transform: translateY(-2px); box-shadow: var(--shadow-hover); }
.step-num { font-family: var(--font-display); font-weight: 800; color: var(--lumin-cyan); font-size: 14px; letter-spacing: 0.1em; margin-bottom: 14px; }
.step p { color: var(--ink-500); margin: 0; }

/* ---------- FEATURES ---------- */
.feature-group-h { font-family: var(--font-display); font-size: 14px; font-weight: 600; margin: 36px 0 0; }
.feature-group-h:first-of-type { margin-top: 12px; }
.badge { display: inline-flex; align-items: center; gap: 8px; padding: 6px 12px; border-radius: var(--pill); font-size: 11.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.badge-instant { background: rgba(34,211,238,0.12); color: var(--deep-ink); border: 1px solid rgba(34,211,238,0.4); }
.badge-instant::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--lumin-cyan); box-shadow: 0 0 0 4px rgba(34,211,238,0.18); }
.badge-where-available { background: rgba(14,23,38,0.04); color: var(--ink-700); border: 1px solid var(--ink-200); }
.badge-where-available::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--ink-300); }
.feature-note { margin-top: 20px; color: var(--ink-500); font-size: 14px; max-width: 70ch; padding: 14px 18px; background: var(--white); border: 1px dashed var(--ink-200); border-radius: var(--radius-md); }
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 18px; }
.feature { background: var(--white); border: 1px solid var(--ink-100); border-radius: var(--radius-md); padding: 22px; position: relative; }
.feature strong { display: block; font-family: var(--font-display); font-weight: 700; margin-bottom: 6px; font-size: 15.5px; }
.feature p { margin: 0; color: var(--ink-500); font-size: 14px; line-height: 1.5; }
.dot { display: inline-block; width: 10px; height: 10px; border-radius: 50%; background: var(--grad); margin-bottom: 14px; box-shadow: 0 0 0 4px rgba(34,211,238,0.12); }

/* ---------- PRICING ---------- */
.pricing { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 40px; }
.plan { background: var(--white); border: 1px solid var(--ink-100); border-radius: var(--radius-md); padding: 26px; display: flex; flex-direction: column; transition: transform .15s, box-shadow .2s; position: relative; }
.plan:hover { transform: translateY(-2px); box-shadow: var(--shadow-hover); }
.plan-name { font-family: var(--font-display); font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; font-size: 12.5px; color: var(--ink-500); margin: 0 0 12px; }
.plan-price { margin: 0 0 18px; }
.plan-price span { font-family: var(--font-display); font-size: 38px; font-weight: 800; color: var(--deep-ink); }
.plan-price small { color: var(--ink-500); font-size: 14px; margin-left: 2px; }
.plan ul { list-style: none; padding: 0; margin: 0 0 20px; flex-grow: 1; }
.plan li { padding: 7px 0 7px 22px; position: relative; color: var(--ink-700); font-size: 14.5px; border-bottom: 1px solid var(--ink-100); }
.plan li:last-child { border: 0; }
.plan li::before { content: ""; position: absolute; left: 0; top: 12px; width: 14px; height: 14px; background: var(--grad); border-radius: 50%; mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M5 12l4 4L19 6' fill='none' stroke='%23fff' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/12px no-repeat; -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M5 12l4 4L19 6' fill='none' stroke='%23fff' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/12px no-repeat; }
.plan-featured { border-color: var(--lumin-cyan); box-shadow: 0 0 0 3px rgba(34,211,238,0.12); }
.plan-badge { position: absolute; top: -12px; left: 22px; background: var(--deep-ink); color: var(--lumin-cyan); font-family: var(--font-display); font-size: 11px; font-weight: 700; letter-spacing: 0.08em; padding: 6px 12px; border-radius: var(--pill); text-transform: uppercase; margin: 0; }

.founding { margin-top: 32px; background: var(--deep-ink); color: var(--white); border-radius: var(--radius-md); padding: 32px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.founding h3 { color: var(--white); font-size: 26px; margin: 4px 0 6px; }
.founding p { color: var(--ink-300); margin: 0; max-width: 56ch; }

/* ---------- DATA GRID ---------- */
.data-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; margin-top: 32px; }
.data-note { margin-top: 20px; color: var(--ink-500); font-size: 14px; text-align: center; max-width: 70ch; margin-left: auto; margin-right: auto; }
.data-grid > div { background: var(--white); border: 1px solid var(--ink-100); border-radius: var(--radius-md); padding: 22px 18px; text-align: center; }
.data-grid strong { display: block; font-family: var(--font-display); font-weight: 700; font-size: 16px; }
.data-grid p { margin: 6px 0 0; color: var(--ink-500); font-size: 13px; }

/* ---------- FINAL CTA ---------- */
.final-cta { background: var(--grad); padding: 64px 0; }
.final-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.final-cta h2 { color: var(--deep-ink); margin: 0; }
.final-cta p { color: var(--deep-ink); opacity: 0.78; margin: 6px 0 0; }
.final-cta .btn-primary { background: var(--deep-ink); color: var(--white); box-shadow: 0 6px 24px rgba(14,23,38,0.25); }
.final-cta .btn-primary:hover { background: var(--ink-700); }

/* ---------- FAQ ---------- */
.faq { margin-top: 32px; }
.faq details { background: var(--white); border: 1px solid var(--ink-100); border-radius: var(--radius-md); padding: 18px 22px; margin-bottom: 10px; transition: box-shadow .2s; }
.faq details[open] { box-shadow: var(--shadow-card); }
.faq summary { font-family: var(--font-display); font-weight: 700; font-size: 16px; cursor: pointer; list-style: none; display: flex; align-items: center; justify-content: space-between; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--lumin-cyan); font-size: 22px; font-weight: 400; transition: transform .2s; }
.faq details[open] summary::after { content: "−"; }
.faq p { margin: 12px 0 0; color: var(--ink-500); font-size: 15px; line-height: 1.6; }

/* ---------- CONTACT ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact-list { list-style: none; padding: 0; margin: 24px 0 0; }
.contact-list li { padding: 12px 0; border-bottom: 1px solid var(--ink-100); color: var(--ink-500); font-size: 15px; }
.contact-list strong { display: inline-block; min-width: 80px; color: var(--deep-ink); font-family: var(--font-display); font-weight: 600; }
.contact-form { background: var(--white); border: 1px solid var(--ink-100); border-radius: var(--radius-md); padding: 28px; display: grid; gap: 12px; box-shadow: var(--shadow-card); }
.contact-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; padding: 12px 14px; border: 1px solid var(--ink-100); border-radius: var(--radius-sm); font-family: var(--font-body); font-size: 15px; color: var(--deep-ink); background: var(--white); transition: border-color .15s; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { outline: none; border-color: var(--lumin-cyan); box-shadow: 0 0 0 3px rgba(34,211,238,0.15); }
.contact-form textarea { resize: vertical; min-height: 100px; font-family: var(--font-body); }
.contact-form button { justify-self: start; }

/* ---------- FOOTER ---------- */
.site-footer { background: var(--deep-ink); color: var(--ink-300); padding: 72px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 48px; }
.footer-brand img { height: 36px; margin-bottom: 16px; }
.footer-brand p { color: var(--ink-300); font-size: 14.5px; line-height: 1.6; max-width: 36ch; }
.foot-head { font-family: var(--font-display); font-weight: 700; color: var(--white); font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; margin: 0 0 14px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { padding: 6px 0; }
.site-footer ul a { color: var(--ink-300); font-size: 14.5px; transition: color .15s; }
.site-footer ul a:hover { color: var(--lumin-cyan); }
.foot-tagline { font-family: var(--font-display); font-weight: 700; color: var(--white); font-size: 18px; margin: 0 0 16px; }
.foot-sources { padding: 22px 0; border-top: 1px solid rgba(255,255,255,0.06); }
.foot-sources p { margin: 0; color: var(--ink-300); font-size: 12.5px; line-height: 1.7; }
.foot-sources strong { color: var(--white); font-weight: 600; }
.foot-sources a { color: var(--lumin-cyan); }
.foot-sources a:hover { color: var(--beam-teal); }
.foot-legal { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.foot-legal p { margin: 0; font-size: 13px; color: var(--ink-500); }
.foot-legal p:last-child { color: var(--lumin-cyan); font-family: var(--font-display); font-weight: 600; letter-spacing: 0.08em; }

/* ---------- HERO HIGHLIGHT ---------- */
.hl {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
  white-space: nowrap;
}

/* ---------- PROOF / STAT BAND ---------- */
.proof {
  background: var(--deep-ink);
  color: var(--white);
  padding: 56px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.proof-cell { padding: 0 4px; }
.proof-cell .stat {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(34px, 4vw, 48px);
  letter-spacing: -0.02em;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 0 0 6px;
  line-height: 1;
}
.proof-cell .stat-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14.5px;
  color: var(--white);
  margin: 0 0 6px;
  letter-spacing: 0.01em;
}
.proof-cell .stat-sub {
  color: var(--ink-300);
  font-size: 13.5px;
  line-height: 1.55;
  margin: 0;
  max-width: 28ch;
}

/* ---------- WHY / COMPARE ---------- */
.compare {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 36px;
  align-items: stretch;
}
.compare-col {
  background: var(--white);
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-md);
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
}
.compare-them { background: var(--ink-50); }
.compare-us {
  background: var(--white);
  border: 1.5px solid var(--lumin-cyan);
  box-shadow: 0 0 0 3px rgba(34,211,238,0.10), var(--shadow-card);
  position: relative;
}
.compare-us::before {
  content: "YOU, WITH LUMINSITE";
  position: absolute;
  top: -12px; left: 22px;
  background: var(--deep-ink);
  color: var(--lumin-cyan);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 6px 12px;
  border-radius: var(--pill);
}
.compare-h {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  margin: 0 0 16px;
  color: var(--deep-ink);
}
.compare-col ul { list-style: none; padding: 0; margin: 0; }
.compare-col li {
  padding: 8px 0 8px 28px;
  position: relative;
  font-size: 14.5px;
  color: var(--ink-700);
  line-height: 1.5;
  border-bottom: 1px solid var(--ink-100);
}
.compare-col li:last-child { border-bottom: 0; }
.compare-col .x {
  position: absolute; left: 0; top: 8px;
  color: var(--ink-300);
  font-weight: 700;
  font-size: 14px;
}
.compare-col .check {
  position: absolute; left: 0; top: 8px;
  color: var(--lumin-cyan);
  font-weight: 700;
  font-size: 16px;
}
.compare-us li { color: var(--deep-ink); }

/* ---------- FEATURE PRO FORMA FLAG ---------- */
.feature-flag {
  background: linear-gradient(180deg, rgba(34,211,238,0.06), rgba(45,212,191,0.04));
  border: 1.5px solid var(--lumin-cyan);
  box-shadow: 0 0 0 3px rgba(34,211,238,0.08);
}
.feature-flag em {
  display: block;
  margin-top: 8px;
  font-style: normal;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  color: var(--lumin-cyan);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.dot-glow {
  background: var(--grad);
  box-shadow: 0 0 0 5px rgba(34,211,238,0.20), 0 0 14px rgba(34,211,238,0.50);
}
.dot-muted {
  background: var(--ink-300);
  box-shadow: 0 0 0 4px rgba(169,179,194,0.18);
}

/* ---------- WHO IT'S FOR ---------- */
.who-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.who-card {
  background: var(--white);
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-md);
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  transition: transform .15s, box-shadow .2s, border-color .2s;
}
.who-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(34,211,238,0.4);
}
.who-tag {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  font-size: 11px;
  color: var(--lumin-cyan);
  margin: 0 0 10px;
}
.who-card h3 {
  font-size: 17px;
  line-height: 1.25;
  margin: 0 0 10px;
}
.who-card p {
  color: var(--ink-500);
  font-size: 13.5px;
  line-height: 1.55;
  margin: 0;
}

/* ---------- PLAN TAGLINE + CAP + 3-COL OVERRIDE ---------- */
.pricing.pricing-3 {
  grid-template-columns: repeat(3, 1fr);
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}
.plan-tagline {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13.5px;
  color: var(--lumin-cyan);
  margin: -8px 0 14px;
  line-height: 1.4;
  letter-spacing: 0.01em;
}
.plan-cap {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink-700);
  background: var(--ink-50);
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  margin: 0 0 18px;
}
.plan-cap strong {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--deep-ink);
}
.plan-featured .plan-cap {
  background: rgba(34,211,238,0.08);
  border-color: rgba(34,211,238,0.35);
}
.plan-price sup {
  font-size: 0.45em;
  font-weight: 700;
  vertical-align: super;
  margin-left: 1px;
  letter-spacing: -0.01em;
}
.pricing-note {
  text-align: center;
  color: var(--ink-500);
  font-size: 14px;
  margin: 24px auto 0;
  max-width: 70ch;
}
.pricing-note a {
  color: var(--lumin-cyan);
  font-weight: 600;
}
.pricing-note a:hover { color: var(--beam-teal); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: block; }
  .mobile-drawer:not([hidden]) { display: block; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; max-width: 480px; margin: 0 auto; }
  .steps, .features, .pricing { grid-template-columns: repeat(2, 1fr); }
  .pricing.pricing-3 { grid-template-columns: repeat(2, 1fr); }
  .data-grid { grid-template-columns: repeat(3, 1fr); }
  .proof-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .compare { grid-template-columns: 1fr; }
  .who-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 640px) {
  .container { padding: 0 18px; }
  .nav { height: 64px; }
  .brand img { height: 32px; }
  .hero { padding: 56px 0 40px; }
  .hero-visual { padding: 18px; }
  .section { padding: 60px 0; }
  .steps, .features, .pricing { grid-template-columns: 1fr; }
  .pricing.pricing-3 { grid-template-columns: 1fr; }
  .data-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-grid { grid-template-columns: 1fr; gap: 24px; }
  .who-grid { grid-template-columns: 1fr; }
  .compare-us::before { left: 18px; }
  .footer-grid { grid-template-columns: 1fr; }
  .report-form { border-radius: var(--radius-md); padding: 12px; flex-direction: column; }
  .report-form input, .report-form select { flex: 1 1 auto; width: 100%; padding: 14px 16px; border: 1px solid var(--ink-100); border-radius: var(--radius-sm); }
  .report-form button { width: 100%; padding: 14px; }
  .contact-form .row { grid-template-columns: 1fr; }
  .founding { flex-direction: column; align-items: flex-start; text-align: left; }
  .final-cta-inner { flex-direction: column; align-items: flex-start; }
  .foot-legal { flex-direction: column; align-items: flex-start; }
}

/* ============== BIGGER HEADER LOGO ============== */
.brand img { height: 56px !important; }
@media (max-width: 720px) {
  .brand img { height: 44px !important; }
}

/* ============== PROOF BAND KICKER ============== */
.proof-kicker {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  text-align: center;
  margin: 0 0 32px;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

/* ============== HERO REPORT CARD (Stripe-style framed preview) ============== */
.hero-visual { background: transparent !important; padding: 0 !important; box-shadow: none !important; }
.hero-report-card {
  display: block;
  text-decoration: none;
  color: inherit;
  position: relative;
  transition: transform 0.3s ease;
}
.hero-report-card:hover { transform: translateY(-4px); }

.hrc-frame {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    0 30px 60px -20px rgba(14, 23, 38, 0.55),
    0 18px 36px -18px rgba(34, 211, 238, 0.25),
    0 0 0 1px rgba(255,255,255,0.05);
}

.hrc-bar {
  background: #0E1726;
  padding: 10px 14px;
  display: flex; align-items: center; gap: 6px;
}
.hrc-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #2A3656;
}
.hrc-url {
  margin-left: auto;
  font-size: 10px;
  color: #7B8AA6;
  font-family: 'Inter', monospace;
  letter-spacing: 0.04em;
}

.hrc-body {
  padding: 16px 18px;
  background: linear-gradient(180deg, #F7F9FC 0%, #fff 60%);
}

.hrc-row-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 10px;
}
.hrc-logo {
  display: flex; align-items: center; gap: 8px;
  font-size: 11px;
  font-weight: 700;
  color: #0E1726;
  font-family: 'Plus Jakarta Sans', sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.hrc-logo svg { width: 22px; height: 22px; }
.hrc-score {
  background: linear-gradient(135deg, #22D3EE, #2DD4BF);
  color: #0E1726;
  padding: 8px 14px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(34, 211, 238, 0.35);
}
.hrc-score-n {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 22px;
  font-weight: 800;
  display: block;
  line-height: 1;
}
.hrc-score-l {
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: block;
  margin-top: 2px;
}

.hrc-addr {
  font-size: 11px;
  font-weight: 600;
  color: #4A5872;
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid #E5E9F2;
}

.hrc-aerial {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 12px;
  height: 160px;
}
.hrc-aerial img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.hrc-aerial-tag {
  position: absolute;
  top: 8px; left: 8px;
  background: rgba(14, 23, 38, 0.88);
  color: #22D3EE;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  backdrop-filter: blur(4px);
}

.hrc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-bottom: 10px;
}
.hrc-cell {
  background: #F7F9FC;
  border: 1px solid #E5E9F2;
  border-radius: 6px;
  padding: 6px 8px;
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.hrc-k {
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #7B8AA6;
  font-weight: 700;
}
.hrc-v {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #0E1726;
}
.hrc-v.ok { color: #10B981; }
.hrc-v.warn { color: #F59E0B; }

.hrc-verdict {
  background: linear-gradient(135deg, rgba(34,211,238,0.10), rgba(45,212,191,0.04));
  border: 1px solid rgba(34,211,238,0.25);
  border-radius: 6px;
  padding: 8px 10px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 10.5px;
  line-height: 1.4;
  color: #0E1726;
}
.hrc-verdict-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #22D3EE, #2DD4BF);
  box-shadow: 0 0 8px #22D3EE;
  flex-shrink: 0;
  margin-top: 4px;
}
.hrc-verdict strong { font-weight: 700; }

.hrc-cta {
  display: block;
  text-align: center;
  margin-top: 14px;
  color: #22D3EE;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
}
.hero-report-card:hover .hrc-cta { color: #2DD4BF; }

@media (max-width: 720px) {
  .hrc-aerial { height: 140px; }
  .hrc-grid { grid-template-columns: repeat(2, 1fr); }
  .hrc-score-n { font-size: 18px; }
}

/* ============== WHO IT'S FOR — persona photos ============== */
.who-photo {
  width: 100%;
  height: 140px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 14px;
  background: #0E1726;
  position: relative;
}
.who-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.who-card:hover .who-photo img {
  transform: scale(1.04);
}
.who-card {
  display: flex;
  flex-direction: column;
}

/* ============== PlaceAutocompleteElement — Google component styling ============== */
.addr-host { display: contents; }
.addr-host input,
.addr-host gmp-place-autocomplete {
  width: 100% !important;
  font: inherit !important;
}
gmp-place-autocomplete {
  --gmp-mat-color-primary: #22D3EE;
  --gmp-mat-color-on-surface: #0E1726;
  --gmp-mat-color-surface: #fff;
  --gmp-mat-color-outline: #E5E9F2;
}


/* ==========================================================================
   WAVE 2 VISUALS — How-It-Works storyboard, Feature data-layer strip,
   Branded report highlight.
   ========================================================================== */

/* ---------- How-It-Works storyboard ---------- */
.steps-storyboard {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}
.steps-storyboard .step {
  background: var(--surface, #0b1422);
  border: 1px solid rgba(34, 211, 238, 0.12);
  border-radius: 16px;
  overflow: hidden;
  padding: 0;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.steps-storyboard .step:hover {
  transform: translateY(-3px);
  border-color: rgba(34, 211, 238, 0.35);
  box-shadow: 0 14px 40px -16px rgba(34, 211, 238, 0.25);
}
.steps-storyboard .step-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #0E1726;
  border-bottom: 1px solid rgba(34, 211, 238, 0.10);
}
.steps-storyboard .step-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.steps-storyboard .step-num {
  display: inline-block;
  margin: 22px 24px 0;
  padding: 4px 12px;
  font-family: var(--font-display, "Plus Jakarta Sans"), sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: #22D3EE;
  background: rgba(34, 211, 238, 0.10);
  border-radius: 999px;
  width: max-content;
}
.steps-storyboard .step h3 {
  margin: 12px 24px 8px;
  font-family: var(--font-display, "Plus Jakarta Sans"), sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.2;
  color: var(--text-primary, #fff);
}
.steps-storyboard .step p {
  margin: 0 24px 24px;
  color: var(--text-secondary, #B7C2D6);
  font-size: 15px;
  line-height: 1.55;
}

/* ---------- Feature data-layer strip ---------- */
.feature-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin: 18px 0 28px;
}
.feature-tile {
  margin: 0;
  background: var(--surface, #0b1422);
  border: 1px solid rgba(34, 211, 238, 0.12);
  border-radius: 14px;
  overflow: hidden;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.feature-tile:hover {
  transform: translateY(-3px);
  border-color: rgba(34, 211, 238, 0.35);
  box-shadow: 0 12px 32px -14px rgba(34, 211, 238, 0.22);
}
.feature-tile img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(34, 211, 238, 0.08);
}
.feature-tile figcaption {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.feature-tile figcaption strong {
  font-family: var(--font-display, "Plus Jakarta Sans"), sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--text-primary, #fff);
}
.feature-tile figcaption span {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-secondary, #B7C2D6);
}

/* ---------- Branded report highlight (the difference-maker) ---------- */
.branded-highlight {
  margin-top: 40px;
  padding: 36px;
  background:
    radial-gradient(900px 320px at 100% 50%, rgba(34, 211, 238, 0.10), transparent 70%),
    linear-gradient(180deg, #0c1626 0%, #0a1322 100%);
  border: 1px solid rgba(34, 211, 238, 0.20);
  border-radius: 20px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 36px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.branded-highlight::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(600px 200px at 0% 0%, rgba(45, 212, 191, 0.08), transparent 70%);
  pointer-events: none;
}
.branded-highlight__copy {
  position: relative;
  z-index: 1;
}
.branded-highlight__copy .kicker {
  color: #2DD4BF;
  font-size: 12px;
  letter-spacing: 0.12em;
  font-weight: 700;
  margin: 0 0 12px;
}
.branded-highlight__copy h3 {
  font-family: var(--font-display, "Plus Jakarta Sans"), sans-serif;
  font-size: 30px;
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-primary, #fff);
  margin: 0 0 14px;
  max-width: 26ch;
}
.branded-highlight__copy > p {
  color: var(--text-secondary, #B7C2D6);
  font-size: 16px;
  line-height: 1.55;
  margin: 0 0 16px;
}
.branded-highlight__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.branded-highlight__list li {
  position: relative;
  padding-left: 22px;
  color: var(--text-primary, #fff);
  font-size: 14.5px;
  line-height: 1.5;
}
.branded-highlight__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #22D3EE;
  box-shadow: 0 0 12px rgba(34, 211, 238, 0.55);
}
.branded-highlight__image {
  position: relative;
  z-index: 1;
}
.branded-highlight__image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
  box-shadow: 0 30px 80px -28px rgba(0, 0, 0, 0.55);
}

/* ---------- Responsive (mobile) ---------- */
@media (max-width: 900px) {
  .steps-storyboard { grid-template-columns: 1fr; gap: 20px; }
  .feature-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .branded-highlight {
    grid-template-columns: 1fr;
    padding: 28px 22px;
    gap: 24px;
  }
  .branded-highlight__copy h3 { font-size: 24px; }
}
@media (max-width: 520px) {
  .feature-strip { grid-template-columns: 1fr; }
}
