/* ===================================================================
   Floww — design system
   Palette: warm cream + near-black + orange + beige highlight + green
   Fonts:  Host Grotesk (display) · Figtree (body) · Geist Mono
=================================================================== */

:root {
  /* color */
  --bg:        #FFFFFF;
  --bg-alt:    #f5f5f5;
  --surface:   #ffffff;
  --ink:       #0D0D0D;
  --ink-soft:  #191919;
  --muted:     rgba(13, 13, 13, 0.6);  /* Framer "Muted" — #0D0D0D @ 60% */
  --muted-2:   rgba(13, 13, 13, 0.45);
  --line:      #e8e8e8;
  --line-2:    #ededed;
  --accent:    #ec6c36;
  --accent-2:  #fe5e37;
  --accent-3:  #f0703b;
  --beige:     #dac5a7;
  --beige-2:   #b7e4c7;
  --green:     #3db15e;
  --green-2:   #2d6a4f;
  --amber:     #d29030;
  --shadow-sm: 0 1px 0 rgba(0,0,0,.04), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md: 0 6px 24px -8px rgba(13,13,13,.10), 0 1px 0 rgba(0,0,0,.04);
  --shadow-lg: 0 30px 60px -20px rgba(13,13,13,.18), 0 1px 0 rgba(0,0,0,.04);
  --shadow-orange: 0 20px 50px -20px rgba(236,108,54,.45);

  /* type */
  --display: 'Inter', 'Inter Display', ui-sans-serif, system-ui, sans-serif;
  --body:    'Inter', ui-sans-serif, system-ui, sans-serif;
  --mono:    'Geist Mono', ui-monospace, SFMono-Regular, monospace;

  /* metrics */
  --radius:    0px;
  --radius-lg: 0px;
  --radius-xl: 0px;
  --ease:      cubic-bezier(0.16, 1, 0.3, 1);
  --max:       1240px;
}

/* global: kill all rounded corners except true circles (avatars, dots) and app-icon tiles */
*:not(.logo-dot):not(.eyebrow__dot):not(.dot):not(.ava):not(.dash__avatar):not(.float-icon) {
  border-radius: 0 !important;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);          /* Inter */
  font-size: 15px;                   /* Framer body-copy spec */
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.6;                  /* 160% */
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
p {
  font-family: var(--body);
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0;
  line-height: 1.6;
  color: var(--muted);               /* #0D0D0D @ 60% */
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }
.mono { font-family: var(--mono); font-feature-settings: "ss01","tnum"; letter-spacing: -.01em; }
em { font-style: italic; color: var(--accent); font-family: var(--display); font-weight: 500; }

/* ---------- nav ---------- */
.nav {
  position: fixed;
  top: 32px;
  left: 0; right: 0;
  z-index: 50;
  display: flex;
  justify-content: center;
  padding: 0 16px;
  pointer-events: none;
  transition: top .35s var(--ease);
}
.nav__box {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 5px 5px 18px;
  background: #FAFAFA;
  border: 1px solid #e8e6e1;
  pointer-events: auto;
  transition: border-color .35s var(--ease);
}
.nav.is-stuck { top: 22px; }
.nav.is-stuck .nav__box {
  background: #FAFAFA;
}
.nav__logo {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--ink);
  padding-right: 10px;
}
.nav__logo-img {
  height: 22px;
  width: auto;
  display: block;
}
.nav__logo--footer .nav__logo-img { height: 28px; }
.logo-mark { color: var(--ink); flex-shrink: 0; }
.logo-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(236,108,54,.15);
  display: inline-block;
}
.nav__links {
  display: flex;
  gap: 4px;
  align-items: center;
  font-size: 14.5px;
  color: var(--ink);
  padding: 0 8px;
}
.nav__links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  line-height: 1.5;
  color: var(--ink);
  font-family: var(--body);
  font-weight: 500;
  background: transparent;
  border: 1px solid transparent;
  transition: background .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease);
}
.nav__links a:hover {
  background: #FFFFFF;
  border-color: #e8e6e1;
  color: var(--ink);
}
.nav__features svg { opacity: .65; transform: translateY(1px); transition: transform .3s var(--ease); }
.nav__features:hover svg { transform: translateY(2px); opacity: 1; }
.btn--get-started { font-weight: 500; }

.btn--get-started {
  background: #ffffff;
  color: var(--ink);
  border: 1px solid #d8d5cd;
  padding: 5px 16px;
  font-size: 14.5px;
  line-height: 1.4;
  align-self: stretch;
}
.btn--get-started:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 18px;
  border-radius: 999px;
  font-family: var(--body); font-weight: 500; font-size: 14.5px;
  letter-spacing: -.005em;
  white-space: nowrap;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
  will-change: transform;
}
.btn:active { transform: translateY(1px) scale(.985); }
.btn--primary {
  background: var(--ink);
  color: var(--bg);
  box-shadow: none;
}
.btn--primary:hover {
  background: var(--accent);
  color: #fff;
  box-shadow: none;
}
.btn--ghost {
  color: var(--ink-soft);
  background: #FAFAFA;
  border: 1px solid #e8e6e1;
}
.btn--ghost:hover {
  color: var(--accent);
  border-color: #d0cdc6;
}
.btn--outline {
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
}
.btn--outline:hover {
  border-color: var(--ink);
}
.btn--lg { padding: 14px 22px; font-size: 15px; }
.btn--xs { padding: 7px 11px; font-size: 12.5px; }
.btn--block { display: flex; width: 100%; justify-content: center; }

/* ---------- typography ----------
   Framer spec:
   Header     — Inter Display · Medium · 57 · letter -1.9 · line 100% · #0D0D0D
   Sub        — Inter · Regular · 18 · letter 0 · line 160% · #0D0D0D @ 60%
   Eyebrow    — Geist Mono · Regular · 12 · letter 0 · line 160% · #0D0D0D
-------------------------------------------------------- */
.display {
  font-family: var(--display);
  font-optical-sizing: auto;
  font-weight: 500;
  font-size: 57px;
  line-height: 1;            /* 100% */
  letter-spacing: -1.9px;
  color: #0D0D0D;
  margin: 0;
}
.display--sm {
  font-size: 40px;
  letter-spacing: -1.3px;
  line-height: 1.05;
}
.lede {
  font-family: var(--display);   /* Inter */
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 0;
  line-height: 1.6;              /* 160% */
  color: rgba(13, 13, 13, 0.6);  /* Muted = #0D0D0D @ 60% */
  max-width: 62ch;
  margin: 16px 0 0;
}
.eyebrow,
.eyebrow--mono {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0;
  line-height: 1.6;
  color: #0D0D0D;
  background: transparent;
  border: 0;
  padding: 0;
  text-transform: uppercase;
}
.eyebrow__dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
}

/* ---------- section shell ---------- */
.section {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(80px, 9vw, 140px) 28px;
}
.section__head { max-width: 820px; margin-bottom: 56px; }
.section__head--center { margin: 0 auto 48px; text-align: center; }
.section__head--center .lede { margin-left: auto; margin-right: auto; }
.section__head--row {
  max-width: none;
  display: flex; align-items: end; justify-content: space-between; gap: 40px;
}
.section__head .display { margin-top: 16px; }

.link { display: inline-flex; align-items: center; gap: 6px; font-weight: 500; color: var(--ink); }
.link--arrow svg { transition: transform .3s var(--ease); }
.link--arrow:hover svg { transform: translateX(4px); }
.link--arrow:hover { color: var(--accent); }

/* ---------- HERO ---------- */
.hero {
  padding: 140px 28px 0;
  max-width: var(--max);
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.hero__content { max-width: 1100px; margin: 0 auto; }
.hero__headline {
  font-family: var(--display);
  font-optical-sizing: auto;
  font-weight: 500;
  font-size: 46px;
  line-height: 1.05;
  letter-spacing: -1.5px;
  color: #0D0D0D;
  margin: 22px 0 0;
}
.hero__muted { color: var(--muted); display: block; }
.hero__sub {
  font-family: var(--display);
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 0;
  line-height: 1.6;
  color: var(--muted);
  max-width: 620px; margin: 24px auto 0;
  line-height: 1.55;
}
.hero__ctas {
  display: flex; gap: 12px; justify-content: center;
  margin-top: 32px;
  flex-wrap: wrap;
}
.hero__trust {
  margin-top: 16px;
  font-family: var(--body);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0;
  line-height: 1.6;
  color: var(--muted);
}

/* dashboard mockup */
.hero__dashboard {
  position: relative;
  margin: 72px auto 0;
  max-width: 1180px;
  padding: 0 12px;
}
.hero__dashboard-glow {
  position: absolute; inset: -20px 5% auto; height: 70%;
  background: radial-gradient(60% 80% at 50% 40%, rgba(236,108,54,.22), transparent 70%);
  filter: blur(40px);
  z-index: -1;
}
.dash {
  display: grid; grid-template-columns: 240px 1fr;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.dash__side {
  background: linear-gradient(180deg, #fafafa 0%, #f4f1ec 100%);
  border-right: 1px solid var(--line);
  padding: 18px 14px;
  display: flex; flex-direction: column;
  min-height: 540px;
}
.dash__brand {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--display); font-weight: 600; font-size: 16px;
  padding: 6px 8px 18px;
}
.dash__nav { display: flex; flex-direction: column; gap: 2px; margin-top: 4px; }
.dash__nav li {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 10px; font-size: 13.5px;
  border-radius: 10px; color: var(--muted);
  transition: background .2s, color .2s;
}
.dash__nav li:hover { background: rgba(0,0,0,.03); color: var(--ink); }
.dash__nav li.is-active { background: var(--ink); color: #fff; }
.dash__nav .i { width: 14px; height: 14px; border-radius: 4px; background: currentColor; opacity: .25; }
.dash__nav .is-active .i { opacity: .9; background: var(--accent); }
.dash__progress {
  margin-top: auto; padding: 12px;
  border: 1px solid var(--line); border-radius: 12px; background: var(--surface);
}
.dash__progress-label { display: flex; justify-content: space-between; font-size: 12px; color: var(--muted); }
.dash__progress-pct { color: var(--ink); font-family: var(--mono); }
.dash__progress-bar { height: 6px; border-radius: 999px; background: var(--line); margin: 8px 0; overflow: hidden; }
.dash__progress-bar span { display: block; height: 100%; background: linear-gradient(90deg, var(--accent), var(--accent-2)); border-radius: 999px; animation: progress 3.5s var(--ease) infinite alternate; }
.dash__progress-note { margin: 4px 0 0; font-size: 11.5px; color: var(--muted-2); }
.dash__user {
  margin-top: 12px;
  display: flex; align-items: center; gap: 10px;
  padding: 10px; border-radius: 12px; background: var(--surface); border: 1px solid var(--line);
}
.dash__avatar {
  width: 30px; height: 30px; border-radius: 50%;
  background: linear-gradient(135deg, var(--beige), var(--accent));
  color: #fff; font-size: 11px; font-weight: 600;
  display: grid; place-items: center;
}
.dash__user-name { font-size: 13px; font-weight: 500; }
.dash__user-plan { font-size: 11px; color: var(--muted-2); }

.dash__main { padding: 18px 22px; }
.dash__topbar { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.dash__search {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 12px; border: 1px solid var(--line); border-radius: 10px;
  font-size: 13px; color: var(--muted-2); background: var(--bg-alt);
  min-width: 280px;
}
.dash__search kbd {
  margin-left: auto;
  font-family: var(--mono); font-size: 11px;
  padding: 2px 6px; border: 1px solid var(--line); border-radius: 6px; background: #fff; color: var(--muted);
}
.dash__topright { display: flex; gap: 8px; }
.dash__sectiontitle { display: flex; align-items: baseline; gap: 12px; margin: 20px 0 14px; }
.dash__sectiontitle h3 { font-family: var(--display); font-size: 22px; margin: 0; letter-spacing: -.02em; font-weight: 600; }
.dash__count { font-family: var(--mono); font-size: 12px; color: var(--muted-2); }

.dash__table { border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
.dash__row {
  display: grid;
  grid-template-columns: 36px 1.4fr 1fr 1fr 1fr .6fr;
  align-items: center;
  padding: 10px 14px;
  font-size: 13px;
  border-bottom: 1px solid var(--line-2);
}
.dash__row:last-child { border-bottom: 0; }
.dash__row--head { background: var(--bg-alt); font-size: 11.5px; color: var(--muted-2); text-transform: uppercase; letter-spacing: .04em; font-family: var(--mono); }
.dash__row .name { display: flex; align-items: center; gap: 10px; font-weight: 500; }
.dash__row:not(.dash__row--head):hover { background: rgba(236,108,54,.04); }
.ck { width: 16px; height: 16px; border: 1px solid var(--line); border-radius: 5px; display: inline-block; background: #fff; }
.ck i { display: block; width: 100%; height: 100%; border-radius: 4px; background: var(--ink); transform: scale(.6); opacity: 0; transition: opacity .2s, transform .2s; }
.dash__row:hover .ck i { opacity: 1; transform: scale(.7); }
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 3px 10px; border-radius: 999px;
  font-size: 11.5px; font-weight: 500;
  font-family: var(--body);
}
.chip::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.chip--green   { background: #e6f5ec; color: var(--green-2); }
.chip--amber   { background: #fdf3e1; color: #8a5a13; }
.chip--neutral { background: #f1efeb; color: var(--ink-soft); }

.ava {
  width: 24px; height: 24px; border-radius: 50%;
  background: linear-gradient(135deg, var(--beige), #b89072);
  display: inline-block; flex-shrink: 0;
  border: 1px solid rgba(0,0,0,.05);
}
.ava--1 { background: linear-gradient(135deg,#f4c89e,#c98050); }
.ava--2 { background: linear-gradient(135deg,#b6c8d6,#3e6c8c); }
.ava--3 { background: linear-gradient(135deg,#c6dccd,#3db15e); }
.ava--4 { background: linear-gradient(135deg,#dad0e8,#7a5fa8); }
.ava--5 { background: linear-gradient(135deg,#f0d0c8,#c95a4f); }
.ava--matt { width: 36px; height: 36px; background: linear-gradient(135deg,#d8c2a4,#8a5a3a); }

.dash__pagination { display: flex; gap: 6px; justify-content: flex-end; margin-top: 14px; }
.pag {
  width: 30px; height: 30px; border-radius: 8px; border: 1px solid var(--line); background: #fff;
  font-family: var(--mono); font-size: 12px; color: var(--muted);
  display: grid; place-items: center;
  transition: all .25s var(--ease);
}
.pag:hover { border-color: var(--ink); color: var(--ink); }
.pag.is-active { background: var(--ink); color: #fff; border-color: var(--ink); }
.pag--next { width: auto; padding: 0 12px; }

/* ---------- PAIN ---------- */
.pain__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr 1.1fr;
  gap: 14px;
  align-items: stretch;
}
.pain__card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px 24px 28px;
  display: flex; flex-direction: column; gap: 14px;
  transition: transform .4s var(--ease), border-color .3s, background .3s;
  min-height: 260px;
}
.pain__card:hover { transform: translateY(-4px); border-color: var(--ink); }
.pain__num {
  font-family: var(--mono); font-size: 12px; color: var(--muted-2);
  letter-spacing: 0;
}
.pain__card h3 {
  font-family: var(--display); font-weight: 500; letter-spacing: -.02em;
  font-size: clamp(20px, 1.6vw, 24px); margin: 0; line-height: 1.15;
}
.pain__card p { color: var(--muted); font-size: 14.5px; margin: 0; line-height: 1.55; }
.pain__card--accent {
  background: var(--ink); color: #efedea; border-color: var(--ink);
  position: relative; overflow: hidden;
}
.pain__card--accent h3 { color: #fff; }
.pain__card--accent .pain__num { color: var(--accent); }
.pain__card--accent::after {
  content: ""; position: absolute; inset: auto -40% -60% auto;
  width: 360px; height: 360px; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(236,108,54,.55), transparent 80%);
  pointer-events: none;
}
.pain__card--accent .link { color: var(--accent); }

/* ---------- FEATURES ---------- */
.features { padding-top: 40px; }
.feature {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(0,1.1fr);
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
  padding: clamp(50px, 6vw, 90px) 0;
  border-top: 1px solid var(--line);
}
.feature:first-of-type { border-top: 0; }
.feature--reverse .feature__copy { order: 2; }
.feature--reverse .feature__visual { order: 1; }
.feature__num {
  font-family: var(--mono); font-size: 12px; color: var(--accent);
  display: inline-block; margin-bottom: 14px;
}
.feature__copy h3 {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(28px, 3vw, 42px); letter-spacing: -.025em; line-height: 1.05;
  margin: 0;
}
.feature__copy p {
  color: var(--muted); max-width: 50ch;
  margin: 18px 0 22px; font-size: 15px; line-height: 1.6;
}
.feature__list { display: flex; flex-direction: column; gap: 10px; }
.feature__list li {
  position: relative; padding-left: 22px;
  color: var(--ink-soft); font-size: 14.5px;
}
.feature__list li::before {
  content: ""; position: absolute; left: 0; top: 8px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--beige-2); border: 2px solid var(--green);
}

.feature__visual {
  background: linear-gradient(160deg, #faf8f5 0%, #f0ebe2 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 36px;
  min-height: 380px;
  position: relative;
  overflow: hidden;
}
.feature__visual::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(13,13,13,.04) 1px, transparent 1px);
  background-size: 18px 18px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
}

.vis-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px;
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 1;
}
.vis-card--main { max-width: 380px; margin: 18px auto 0; }
.vis-card--float {
  position: absolute; right: 18px; bottom: 18px;
  max-width: 260px; padding: 12px;
  transform: rotate(2.5deg);
  animation: float 6s var(--ease) infinite alternate;
}
.vis-card__head {
  display: flex; align-items: center; gap: 10px;
  padding-bottom: 10px; border-bottom: 1px solid var(--line-2);
}
.vis-card__head > div:not(.chip) { flex: 1; min-width: 0; }
.vis-card__name { font-size: 13.5px; font-weight: 500; }
.vis-card__sub { font-size: 11.5px; color: var(--muted-2); font-family: var(--mono); }
.vis-card__msg { font-size: 13.5px; color: var(--ink-soft); margin: 10px 0; line-height: 1.5; }
.vis-card__meta { display: flex; gap: 8px; align-items: center; font-size: 11.5px; color: var(--muted); }

.dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; }
.dot--green  { background: var(--green); }
.dot--orange { background: var(--accent); }
.dot--amber  { background: var(--amber); }
.pulse {
  box-shadow: 0 0 0 0 rgba(61,177,94,.45);
  animation: pulse 2s var(--ease) infinite;
}
.dot--orange.pulse { box-shadow: 0 0 0 0 rgba(236,108,54,.45); animation-name: pulse-orange; }
.dot--amber.pulse  { box-shadow: 0 0 0 0 rgba(210,144,48,.45); animation-name: pulse-amber; }

.feature__visual--inbound { display: flex; flex-direction: column; gap: 14px; justify-content: center; padding: 28px; }
.trigger {
  display: flex; align-items: center; gap: 14px;
  background: var(--surface); border: 1px solid var(--line); border-radius: 12px;
  padding: 14px 18px;
  box-shadow: var(--shadow-sm);
  position: relative; z-index: 1;
}
.trigger__title { font-size: 14px; font-weight: 500; }
.trigger__sub { font-size: 12.5px; color: var(--muted); margin-top: 2px; }
.trigger--1 { transform: translateX(-12px); }
.trigger--2 { transform: translateX(24px); }
.trigger--3 { transform: translateX(0); }

.feature__visual--pipeline { padding: 24px; }
.pipe { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; height: 100%; position: relative; z-index: 1; }
.pipe__col {
  background: rgba(255,255,255,.6);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px;
  display: flex; flex-direction: column; gap: 8px;
}
.pipe__col-head {
  font-size: 11.5px; text-transform: uppercase; letter-spacing: .05em;
  color: var(--muted); display: flex; justify-content: space-between;
  font-family: var(--mono);
}
.pipe-card {
  background: #fff; border: 1px solid var(--line); border-radius: 8px;
  padding: 8px 10px; font-size: 12px; line-height: 1.3;
}
.pipe-card--warm { border-left: 3px solid var(--amber); }
.pipe-card--hot  { border-left: 3px solid var(--accent); background: #fff7f1; }
.pipe-card--booked { border-left: 3px solid var(--green); background: #f1f9f3; font-weight: 500; }

/* ---------- INTEGRATIONS ---------- */
.integrations { padding-bottom: 60px; }
.marquee {
  margin-top: 36px;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee__track {
  display: flex; gap: 56px;
  font-family: var(--display); font-weight: 500;
  font-size: clamp(28px, 3.5vw, 52px);
  letter-spacing: -.02em;
  color: var(--muted-2);
  white-space: nowrap;
  width: max-content;
  animation: marquee 36s linear infinite;
  padding: 8px 0;
}
.marquee__track span { transition: color .3s; }
.marquee__track span:hover { color: var(--ink); }

/* ---------- FOUNDER ---------- */
.founder__inner {
  display: grid; grid-template-columns: 280px 1fr; gap: 56px;
  align-items: center;
  background: var(--bg-alt);
  border-radius: var(--radius-xl);
  padding: 60px 56px;
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.founder__inner::after {
  content: ""; position: absolute; right: -120px; top: -120px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(218,197,167,.55), transparent 80%);
  pointer-events: none;
}
.founder__photo { text-align: center; position: relative; }
.founder__photo-frame {
  width: 220px; height: 260px; margin: 0 auto;
  border-radius: 130px;
  background: linear-gradient(160deg, var(--beige) 0%, #b89072 100%);
  display: grid; place-items: center;
  position: relative;
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.founder__photo-ph {
  font-family: var(--display); font-weight: 500;
  font-size: 72px; color: rgba(255,255,255,.7);
}
.founder__sig {
  margin-top: 14px;
  font-family: var(--display); font-size: 18px;
  color: var(--ink-soft); font-style: italic;
}
.founder__copy h2 { margin-top: 14px; }
.founder__copy p {
  color: var(--muted); font-size: 15px; line-height: 1.6;
  margin: 16px 0 0;
}

.creds {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
  margin-top: 56px;
}
.cred {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  transition: border-color .3s, transform .3s var(--ease);
}
.cred:hover { border-color: var(--ink); transform: translateY(-3px); }
.cred__num { font-family: var(--mono); font-size: 11.5px; color: var(--accent); }
.cred h4 {
  font-family: var(--display); font-size: 20px; font-weight: 500;
  letter-spacing: -.02em; margin: 8px 0 8px;
}
.cred p { color: var(--muted); margin: 0; font-size: 14.5px; }

/* ---------- AUDIENCE ---------- */
.aud__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
  margin-top: 12px;
}
.aud__card {
  padding: 32px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  transition: transform .35s var(--ease), border-color .3s, box-shadow .3s;
  position: relative; overflow: hidden;
}
.aud__card::before {
  content: ""; position: absolute; left: 0; top: 0; height: 100%; width: 3px;
  background: var(--accent); transform: scaleY(0); transform-origin: top;
  transition: transform .5s var(--ease);
}
.aud__card:hover { border-color: var(--ink); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.aud__card:hover::before { transform: scaleY(1); }
.aud__card h4 {
  font-family: var(--display); font-weight: 500;
  font-size: 22px; letter-spacing: -.02em; margin: 0 0 10px; line-height: 1.2;
}
.aud__card p { color: var(--muted); margin: 0; font-size: 15px; line-height: 1.55; }
.aud__not {
  margin-top: 28px;
  padding: 18px 22px;
  border: 1px dashed var(--line);
  border-radius: 14px;
  color: var(--muted); font-size: 14.5px;
  background: var(--bg-alt);
}
.aud__not .mono { color: var(--ink); font-size: 11.5px; text-transform: uppercase; letter-spacing: .04em; margin-right: 8px; }

/* ---------- CASE STUDY ---------- */
.case { background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%); padding-bottom: 0; }
.case__inner { max-width: 1080px; margin: 0 auto; }
.case__sub { color: var(--muted); font-size: 15px; max-width: 65ch; margin: 20px 0 36px; line-height: 1.6; }
.case__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
  margin-bottom: 32px;
}
.case__col {
  padding: 26px;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
}
.case__label {
  display: inline-block; font-family: var(--mono); font-size: 11.5px;
  color: var(--accent); text-transform: uppercase; letter-spacing: .06em;
  margin-bottom: 12px;
}
.case__col ul { display: flex; flex-direction: column; gap: 10px; }
.case__col li {
  position: relative; padding-left: 22px;
  color: var(--ink-soft); font-size: 14.5px; line-height: 1.55;
}
.case__col li::before {
  content: ""; position: absolute; left: 0; top: 7px;
  width: 10px; height: 10px; border-radius: 2px;
  background: var(--beige);
  transform: rotate(45deg);
}

.case__metrics {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
  margin: 36px 0 40px;
}
.metric {
  padding: 30px 28px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  display: flex; flex-direction: column; gap: 10px;
}
.metric__num {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(36px, 4.5vw, 54px);
  letter-spacing: -.04em; line-height: 1;
  color: var(--ink);
}
.metric__label {
  font-family: var(--body);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0;
  line-height: 1.6;
  color: var(--muted);
}
.metric--accent {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.metric--accent .metric__num { color: var(--accent); }
.metric--accent .metric__label { color: rgba(255,255,255,.7); }
.metric--accent::after {
  content: ""; position: absolute; inset: auto -30% -50% auto;
  width: 280px; height: 280px; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(236,108,54,.4), transparent 80%);
}

.case__quote {
  background: var(--surface); border: 1px solid var(--line);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius-lg);
  padding: 32px 32px 28px;
  margin: 0;
}
.case__quote p {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(20px, 2vw, 26px); line-height: 1.35;
  letter-spacing: -.015em;
  margin: 0 0 18px;
}
.case__quote footer { display: flex; align-items: center; gap: 12px; color: var(--muted); font-size: 14.5px; }

/* ---------- PRICING ---------- */
.price__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
  margin-top: 16px;
}
.price__card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  display: flex; flex-direction: column; gap: 22px;
  transition: transform .4s var(--ease), border-color .3s, box-shadow .3s;
  position: relative;
}
.price__card:hover { transform: translateY(-4px); border-color: var(--ink); }
.price__tag {
  display: inline-block; font-family: var(--mono); font-size: 11.5px;
  color: var(--muted); text-transform: uppercase; letter-spacing: .06em;
}
.price__card header h3 {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(36px, 3.6vw, 48px); letter-spacing: -.035em;
  margin: 8px 0; line-height: 1;
}
.price__per { font-size: 16px; color: var(--muted); font-weight: 400; margin-left: 4px; }
.price__card header p { color: var(--muted); font-size: 14.5px; margin: 4px 0 0; line-height: 1.5; }
.price__list { display: flex; flex-direction: column; gap: 10px; margin: 6px 0; }
.price__list li {
  position: relative; padding-left: 26px;
  font-size: 14.5px; color: var(--ink-soft);
}
.price__list li::before {
  content: ""; position: absolute; left: 0; top: 3px;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--beige-2);
  background-image: linear-gradient(135deg, var(--beige-2), #6fcb8a);
}
.price__list li::after {
  content: ""; position: absolute; left: 5px; top: 8px;
  width: 8px; height: 4px;
  border-left: 2px solid #fff; border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}
.price__card--featured {
  background: var(--ink);
  border-color: var(--ink);
  color: #efedea;
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
}
.price__card--featured:hover { transform: translateY(-12px); }
.price__card--featured header h3 { color: #fff; }
.price__card--featured .price__per { color: var(--muted-2); }
.price__card--featured header p { color: rgba(255,255,255,.65); }
.price__card--featured .price__tag { color: var(--accent); }
.price__card--featured .price__list li { color: rgba(255,255,255,.85); }
.price__card--featured .price__list li::before {
  background-image: linear-gradient(135deg, var(--accent), var(--accent-2));
}
.price__badge {
  position: absolute; top: -12px; right: 24px;
  background: var(--accent); color: #fff;
  padding: 5px 12px; border-radius: 999px;
  font-family: var(--mono); font-size: 11px; letter-spacing: .02em;
  text-transform: uppercase;
  box-shadow: var(--shadow-orange);
}
.price__card--custom { background: var(--bg-alt); }
.price__card--custom .price__per { display: none; }

/* ---------- TESTIMONIAL big ---------- */
.testimonial { text-align: center; }
.bigquote { max-width: 920px; margin: 0 auto; }
.bigquote p {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(26px, 3.6vw, 48px); line-height: 1.15;
  letter-spacing: -.025em;
  margin: 0;
}
.bigquote footer {
  margin-top: 32px;
  display: inline-flex; align-items: center; gap: 14px;
  color: var(--muted); font-size: 15px;
}
.bigquote strong { color: var(--ink); }

/* ---------- FAQ ---------- */
.faq__list {
  display: flex; flex-direction: column;
  border-top: 1px solid var(--line);
}
.faq__item {
  border-bottom: 1px solid var(--line);
  padding: 0;
  transition: background .3s;
}
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 8px 22px 0;
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  font-family: var(--display); font-weight: 500;
  font-size: clamp(18px, 1.5vw, 22px);
  letter-spacing: -.015em;
  color: var(--ink);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__plus {
  position: relative;
  width: 22px; height: 22px; flex-shrink: 0;
  border: 1px solid var(--line); border-radius: 50%;
}
.faq__plus::before, .faq__plus::after {
  content: ""; position: absolute; inset: 0; margin: auto;
  background: var(--ink);
}
.faq__plus::before { width: 10px; height: 1px; }
.faq__plus::after  { width: 1px; height: 10px; transition: transform .35s var(--ease); }
.faq__item[open] .faq__plus::after { transform: rotate(90deg); }
.faq__item[open] { background: var(--bg-alt); }
.faq__item[open] summary { color: var(--accent); }
.faq__item > p {
  color: var(--muted); margin: 0; padding: 0 60px 26px 0;
  font-size: 15px; line-height: 1.6;
  max-width: 70ch;
  animation: faqIn .4s var(--ease);
}

/* ---------- BLOG ---------- */
.blog__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
  margin-top: 12px;
}
.blog__card {
  display: flex; flex-direction: column; gap: 14px;
  cursor: pointer;
  transition: transform .35s var(--ease);
}
.blog__card:hover { transform: translateY(-4px); }
.blog__img {
  aspect-ratio: 16/10;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #f0ebe2, #d8c7ad);
  position: relative; overflow: hidden;
  transition: filter .4s var(--ease);
}
.blog__card:hover .blog__img { filter: brightness(1.05) saturate(1.05); }
.blog__img--1 { background: radial-gradient(120% 80% at 30% 30%, #f6e0c4, #c89a64); }
.blog__img--2 { background: radial-gradient(110% 90% at 70% 30%, #e8efe2, #6d8b6f); }
.blog__img--3 { background: radial-gradient(110% 90% at 50% 40%, #f1dfd5, #c46a45); }
.blog__img::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 70% 80%, rgba(255,255,255,.6), transparent 30%),
    radial-gradient(circle at 20% 80%, rgba(13,13,13,.15), transparent 25%);
}
.blog__meta {
  font-family: var(--body);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0;
  line-height: 1.6;
  color: var(--muted);
}
.blog__meta .mono { color: var(--accent); font-family: var(--body); }
.blog__card h3 {
  font-family: var(--display); font-weight: 500;
  font-size: 20px; line-height: 1.2; letter-spacing: -.02em;
  margin: 0;
}
.blog__card p { color: var(--muted); font-size: 14.5px; margin: 0; line-height: 1.55; }

/* ---------- FINAL CTA ---------- */
.cta { padding-bottom: 120px; }
.cta__inner {
  background: var(--ink);
  color: #efedea;
  border-radius: 32px;
  padding: clamp(60px, 7vw, 100px) clamp(28px, 5vw, 72px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta__inner::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(40% 60% at 50% 0%, rgba(236,108,54,.45), transparent 70%),
    radial-gradient(50% 80% at 50% 100%, rgba(218,197,167,.18), transparent 70%);
  pointer-events: none;
}
.cta__inner > * { position: relative; z-index: 1; }
.cta__inner .eyebrow--mono { color: var(--accent); }
.cta__inner .display { color: #fff; margin: 16px 0 18px; }
.cta__inner p { color: rgba(255,255,255,.72); max-width: 60ch; margin: 0 auto; font-size: 15px; line-height: 1.6; }
.cta__buttons {
  display: flex; gap: 12px; justify-content: center;
  margin-top: 32px; flex-wrap: wrap;
}
.cta__inner .btn--ghost { color: rgba(255,255,255,.85); }
.cta__inner .btn--ghost:hover { color: var(--accent); }
.cta__trust {
  margin-top: 18px;
  font-family: var(--body);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0;
  line-height: 1.6;
  color: rgba(255,255,255,.6);
}

/* ---------- FOOTER ---------- */
.footer { background: var(--bg-alt); border-top: 1px solid var(--line); padding: 60px 28px 28px; }
.footer__inner {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1.2fr 1.8fr; gap: 60px;
}
.footer__brand p { color: var(--muted); max-width: 38ch; font-size: 14.5px; margin: 16px 0 0; }
.footer__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.footer__cols h5 {
  font-family: var(--mono); font-size: 11.5px;
  color: var(--muted-2); text-transform: uppercase; letter-spacing: .06em;
  margin: 0 0 14px;
}
.footer__cols a {
  display: block; padding: 5px 0;
  color: var(--ink-soft); font-size: 14.5px;
  transition: color .25s;
}
.footer__cols a:hover { color: var(--accent); }
.footer__bottom {
  max-width: var(--max); margin: 48px auto 0;
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 22px; border-top: 1px solid var(--line);
  color: var(--ink);
  font-family: var(--body);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0;
  line-height: 1.6;
}
.footer__bottom .mono { font-family: var(--body); }

/* ===================================================================
   WAITLIST PAGE — index.html
=================================================================== */

.waitlist-body { background: #FFFFFF; position: relative; }

/* ---------- animated gradient aura (behind everything) ---------- */
.bg-aura {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  opacity: 0;
  transform: scale(1.5);
  animation: auraIn 2s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
}
.bg-aura__inner {
  position: absolute;
  inset: 0;
  will-change: background;
  background: radial-gradient(125% 125% at 50% 20%,
    #FFFFFF 35%,
    #CFE4F1 50%,
    #C2E0D0 60%,
    #D6E8B4 70%,
    #ECE4A2 80%,
    #F2E6BE 90%,
    #FFFFFF 100%
  );
}
@keyframes auraIn {
  to { opacity: 1; transform: scale(1); }
}
@media (prefers-reduced-motion: reduce) {
  .bg-aura { animation: none; opacity: 1; transform: none; }
}

/* page chrome layered above the aura */
.waitlist-body .topnote,
.waitlist-body .nav,
.waitlist-body .waitlist,
.waitlist-body .footer { position: relative; z-index: 1; }

/* ---------- top pivot notice ---------- */
.topnote {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 60;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.92);
  padding: 9px 24px;
  font-family: var(--body);
  font-size: 12.5px;
  letter-spacing: 0;
  text-align: center;
}
.topnote__inner {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.topnote__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
  animation: pulse-orange 2.5s var(--ease) infinite;
}

/* ---------- nav variant ---------- */
.nav--waitlist { top: 56px; }
.nav__box--solo {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 14px 18px;
}
.nav__status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding-left: 14px;
  border-left: 1px solid var(--line);
}
.nav__status-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
  animation: pulse-orange 2.5s var(--ease) infinite;
}

/* ---------- waitlist hero ---------- */
.waitlist {
  max-width: 880px;
  margin: 0 auto;
  padding: clamp(100px, 11vw, 150px) 40px 0;
  text-align: center;
}
.waitlist__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  position: relative;
}

/* floating platform tiles — image slots with rounded edges */
.float-icon {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  object-fit: cover;
  border-radius: 18px;
  box-shadow:
    0 18px 36px -10px rgba(13, 13, 13, 0.18),
    0 3px 8px -2px rgba(13, 13, 13, 0.10);
  background: #ffffff;
  will-change: transform;
}
/* desktop-only icon placement — isolated from mobile rules below */
@media (min-width: 821px) {
  .float-icon--chat {
    top: 28%;
    left: 2%;
    right: auto;
    width: 80px;
    height: 80px;
    animation: floatBobB 8s ease-in-out infinite;
  }
  .float-icon--maps {
    top: 19%;
    right: 2%;
    left: auto;
    width: 76px;
    height: 76px;
    animation: floatBobA 7s ease-in-out infinite;
  }
}
@keyframes floatBobA {
  0%, 100% { transform: translateY(0) rotate(-6deg); }
  50%      { transform: translateY(-14px) rotate(2deg); }
}
@keyframes floatBobB {
  0%, 100% { transform: translateY(0) rotate(4deg); }
  50%      { transform: translateY(-12px) rotate(-3deg); }
}
@media (prefers-reduced-motion: reduce) {
  .float-icon { animation: none; }
}
@media (max-width: 820px) {
  .float-icon { border-radius: 12px; }
  /* ChatGPT on left, Maps on right */
  .float-icon--chat { top: 28%; left: -3%; right: auto; width: 54px; height: 54px; animation-duration: 9s; }
  .float-icon--maps { top: 17%; right: -7%; left: auto; width: 54px; height: 54px; animation-duration: 10s; }
}
@media (max-width: 520px) {
  .float-icon { border-radius: 10px; }
  .float-icon--chat { top: 24%; left: 0%; right: auto; width: 44px; height: 44px; }
  .float-icon--maps { top: 18%; right: 0%; left: auto; width: 44px; height: 44px; }
}

/* explicit mobile-only line-break in the headline */
.lp-mobile-br { display: none; }
@media (max-width: 820px) { .lp-mobile-br { display: inline; } }
/* hero glow handled by .bg-aura — no static pseudo needed */
.waitlist__logo {
  height: 38px;
  width: auto;
  margin: 0 auto 4px;
  display: block;
}
.waitlist__eyebrow { margin: 0 auto; }

.waitlist__headline {
  font-family: var(--display);
  font-optical-sizing: auto;
  font-weight: 500;
  font-size: clamp(26px, 3.3vw, 38px);
  line-height: 1.18;
  letter-spacing: -1.2px;
  color: var(--ink);
  margin: 0;
  max-width: 100%;
  padding: 0;
}
.waitlist__muted { color: var(--muted); display: inline; }
.brand-serif {
  font-family: 'Sawarabi Mincho', 'Georgia', serif;
  font-weight: 400;
}

.waitlist__sub {
  font-family: var(--display);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.55;
  letter-spacing: 0;
  color: var(--muted);
  max-width: 60ch;
  margin: 6px auto 8px;
}
.waitlist__sub em {
  color: var(--ink);
  font-style: normal;
  font-family: var(--display);
  font-weight: 500;
}
.hl {
  background: var(--ink);
  color: #A8D2EC;
  padding: 2px 10px;
  font-weight: 500;
  white-space: nowrap;
}

/* ---------- form ---------- */
.waitlist-form {
  width: 100%;
  max-width: 520px;
  margin: 12px auto 0;
}
.waitlist-form__group {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px;
  padding: 6px;
  background: #FAFAFA;
  border: 1px solid #e8e6e1;
  transition: border-color .3s var(--ease);
}
.waitlist-form__group:focus-within { border-color: var(--ink); }
.waitlist-form__group input[type="email"] {
  border: 0;
  background: transparent;
  outline: none;
  padding: 10px 14px;
  font-family: var(--body);
  font-size: 15px;
  letter-spacing: 0;
  color: var(--ink);
  min-width: 0;
}
.waitlist-form__group input[type="email"]::placeholder {
  color: var(--muted-2);
}
.waitlist-form__group .btn {
  padding: 10px 18px;
  font-size: 14.5px;
}

/* Waitlist submit button — no color flip on hover, barrel-roll text */
.waitlist-form .btn--primary,
.waitlist-form .btn--primary:hover {
  background: var(--ink);
  color: var(--bg);
}
.btn-roll {
  display: inline-block;
  height: 1.4em;
  line-height: 1.4em;
  overflow: hidden;
  vertical-align: middle;
}
.btn-roll__inner {
  display: flex;
  flex-direction: column;
  transition: transform 0.45s cubic-bezier(0.65, 0, 0.35, 1);
  will-change: transform;
}
.btn-roll__line {
  display: block;
  height: 1.4em;
  line-height: 1.4em;
  white-space: nowrap;
}
.btn:hover .btn-roll__inner,
.btn:focus-visible .btn-roll__inner {
  transform: translateY(-1.4em);
}
@media (prefers-reduced-motion: reduce) {
  .btn-roll__inner { transition: none; }
}
.waitlist-form__meta {
  margin-top: 12px;
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.5;
  transition: color .3s var(--ease);
}
.waitlist-form__meta strong { color: var(--ink); font-weight: 500; }
.waitlist-form__meta.is-error { color: var(--accent); }
.waitlist-form.is-done .waitlist-form__group {
  border-color: var(--green);
  background: rgba(61, 177, 94, 0.06);
}
.waitlist-form.is-done input[type="email"] { color: var(--muted); }
.waitlist-form.is-done .btn { background: var(--green); color: #fff; pointer-events: none; }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ---------- 3 pillars ---------- */
.waitlist__pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: clamp(96px, 12vw, 140px) auto 0;
  text-align: left;
  max-width: 980px;
  padding: 0 0;
}
.pillar {
  padding: 26px 24px;
  background: #ffffff;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pillar__icon {
  display: inline-flex;
  color: var(--ink);
  margin-bottom: 2px;
}
.pillar__icon svg {
  width: 26px;
  height: 26px;
}
.pillar h3 {
  font-family: var(--display);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -0.4px;
  line-height: 1.2;
  margin: 0;
  color: var(--ink);
}
.pillar p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
}

/* ---------- PS section ---------- */
.waitlist__ps {
  margin: clamp(80px, 10vw, 120px) auto 0;
  max-width: 720px;
  text-align: left;
}
.ps {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 32px 0 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ps p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink);
}
.ps strong { font-weight: 500; }
.ps .mono {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  padding: 1px 6px;
  color: var(--accent);
  font-size: 12px;
}

/* ---------- waitlist footer ---------- */
.footer--waitlist {
  background: transparent;
  border-top: 0;
  padding: 40px 28px 28px;
  margin-top: clamp(80px, 10vw, 120px);
}
.footer--waitlist .footer__bottom {
  margin: 0 auto;
  max-width: var(--max);
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.footer__bottom--solo {
  justify-content: center;
  text-align: center;
}

/* ---------- waitlist responsive ---------- */
@media (max-width: 820px) {
  /* top chrome */
  .topnote { font-size: 11.5px; padding: 8px 16px; line-height: 1.4; }
  .nav--waitlist { top: 46px; }
  .nav__box--solo { padding: 11px 16px; gap: 12px; }
  .nav__logo-img { height: 20px; }

  /* hero */
  .waitlist { padding: 130px 36px 0; max-width: none; }
  .waitlist__hero { gap: 18px; }
  .waitlist__headline {
    font-size: clamp(26px, 7.4vw, 34px);
    letter-spacing: -0.8px;
    line-height: 1.18;
    max-width: 100%;
    padding: 0 28px;
  }
  .waitlist__sub {
    font-size: 16px;
    line-height: 1.55;
    max-width: 56ch;
  }

  /* form */
  .waitlist-form { max-width: 100%; }
  .waitlist-form__group {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 8px;
  }
  .waitlist-form__group input[type="email"] {
    padding: 13px 14px;
    font-size: 16px;            /* 16px prevents iOS auto-zoom */
  }
  .waitlist-form__group .btn {
    width: 100%;
    justify-content: center;
    padding: 13px 18px;
  }
  .waitlist-form__meta { font-size: 13px; }

  /* pillars */
  .waitlist__pillars {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: clamp(64px, 14vw, 100px);
  }
  .pillar { padding: 22px 22px; }
  .pillar h3 { font-size: 17px; }
  .pillar p { font-size: 14px; }

  /* PS */
  .waitlist__ps { margin-top: clamp(56px, 12vw, 80px); }
  .ps { padding: 26px 0 30px; }
  .ps p { font-size: 14.5px; line-height: 1.6; }

  /* footer */
  .footer--waitlist { padding: 32px 20px 24px; margin-top: clamp(60px, 10vw, 90px); }
  .footer--waitlist .footer__bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
    font-size: 11.5px;
  }
}

@media (max-width: 520px) {
  .topnote { font-size: 11px; padding: 7px 14px; }
  .nav--waitlist { top: 42px; }
  .nav__box--solo { padding: 9px 14px; }
  .nav__logo-img { height: 18px; }

  .waitlist { padding: 120px 24px 0; }
  .waitlist__hero { gap: 14px; }
  .waitlist__eyebrow { font-size: 11px; }
  .waitlist__headline {
    font-size: clamp(24px, 8vw, 28px);
    letter-spacing: -0.6px;
  }
  .waitlist__sub { font-size: 15px; }

  .pillar { padding: 20px 18px; }

  .ps p { font-size: 14px; }
  .ps .mono { font-size: 11.5px; padding: 1px 5px; }
}

/* ===================================================================
   Section rhythm — alternating tinted background for visual variance
=================================================================== */
.section--tinted {
  background: var(--bg-alt);
  max-width: none;
  padding-left: 28px;
  padding-right: 28px;
}
.section--tinted > * {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

/* ===================================================================
   HERO ranking-climb card (replaces audit-preview)
=================================================================== */
.climb {
  background: #ffffff;
  border: 1px solid var(--line);
  padding: 24px 22px 22px;
  max-width: 460px;
  margin-left: auto;
}
.climb__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.climb__brand {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.climb__chart {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 20px 0 18px;
  border-bottom: 1px solid var(--line);
}
.climb__lane {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.climb__pos {
  font-family: var(--display);
  font-weight: 500;
  font-size: 34px;
  letter-spacing: -1.4px;
  line-height: 1;
}
.climb__pos--bad { color: var(--muted-2); }
.climb__pos--good { color: var(--accent); }
.climb__day {
  font-size: 10.5px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.climb__arrow {
  width: 100%;
  height: 50px;
  display: block;
}

.climb__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 18px 0;
}
.climb__stat {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.climb__num {
  font-family: var(--display);
  font-weight: 500;
  font-size: 30px;
  letter-spacing: -1.2px;
  line-height: 1;
  color: var(--ink);
}
.climb__lab {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.35;
}

.climb__foot {
  margin-top: 10px;
  text-align: center;
  font-size: 11.5px;
  color: var(--muted);
}

/* ===================================================================
   CASE STUDY 2 — anonymized with image placeholder slots
=================================================================== */
.case2 { padding-top: 120px; padding-bottom: 120px; }
.case2__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: clamp(40px, 5vw, 72px);
  align-items: start;
  margin: 48px 0 56px;
}
.case2__before, .case2__after {
  padding: 24px 26px;
  border: 1px solid var(--line);
  background: #ffffff;
  margin-bottom: 12px;
}
.case2__after { border-color: var(--ink); background: var(--bg-alt); }
.case2__tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 12px;
}
.case2__tag--accent { color: var(--accent); }
.case2__copy ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.case2__copy li {
  position: relative;
  padding-left: 20px;
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--ink);
}
.case2__copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: var(--beige);
}
.case2__after li::before { background: var(--accent); }
.case2__copy li strong { color: var(--ink); font-weight: 500; }

.case2__visual {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.case2__shot {
  aspect-ratio: 16 / 10;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.case2__shot-ph {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 24px;
  text-align: center;
  background-image:
    repeating-linear-gradient(45deg, transparent 0 14px, rgba(13, 13, 13, 0.025) 14px 15px);
}
.case2__shot-ph .mono {
  font-size: 10.5px;
  color: var(--muted-2);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.case2__shot-label {
  font-family: var(--display);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -0.4px;
  color: var(--ink);
}
.case2__shot-hint {
  font-size: 11.5px;
  color: var(--muted);
}
.case2__shot-hint .mono {
  font-size: 11px;
  color: var(--accent);
  text-transform: none;
  letter-spacing: 0;
}

.case2__metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 40px;
}
.metric2 {
  padding: 28px 26px;
  border: 1px solid var(--line);
  background: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.metric2__num {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(40px, 4vw, 56px);
  letter-spacing: -2px;
  line-height: 1;
  color: var(--ink);
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.metric2__suffix {
  font-size: 0.45em;
  color: var(--muted);
  letter-spacing: -0.5px;
}
.metric2__lab {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.4;
  max-width: 28ch;
}
.metric2--accent {
  background: var(--ink);
  border-color: var(--ink);
}
.metric2--accent .metric2__num { color: var(--accent); }
.metric2--accent .metric2__suffix { color: rgba(255, 255, 255, 0.6); }
.metric2--accent .metric2__lab { color: rgba(255, 255, 255, 0.72); }

.case2__quote {
  border-left: 3px solid var(--accent);
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 28px 32px 24px;
  margin: 0;
}
.case2__quote p {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(20px, 1.8vw, 24px);
  line-height: 1.4;
  letter-spacing: -0.5px;
  color: var(--ink);
  margin: 0 0 16px;
}
.case2__quote footer {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13.5px;
  color: var(--muted);
}
.case2__quote strong { color: var(--ink); font-weight: 500; }

/* ===================================================================
   Conversion landing page — hero split, loss cards, how cards
=================================================================== */

/* ---------- HERO (landing-page variant) ---------- */
.hero--lp {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.95fr);
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  text-align: left;
  padding-top: 160px;
  padding-bottom: 80px;
  max-width: var(--max);
}
.hero__content--left { max-width: 620px; margin: 0; text-align: left; }
.hero--lp .hero__sub { margin-left: 0; }
.hero--lp .hero__ctas { justify-content: flex-start; }
.hero--lp .hero__trust { text-align: left; }

.hero__preview { position: relative; }
.preview {
  background: #ffffff;
  border: 1px solid var(--line);
  padding: 24px 22px 22px;
  position: relative;
  max-width: 460px;
  margin-left: auto;
}
.preview__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 14px;
}
.preview__time {
  font-size: 11px;
  text-transform: uppercase;
  color: var(--muted);
}
.preview__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
}
.preview__list li {
  position: relative;
  padding-left: 28px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink);
}
.preview__check {
  position: absolute;
  left: 0;
  top: 3px;
  width: 16px;
  height: 16px;
  background: var(--bg-alt);
  border: 1px solid var(--line);
}
.preview__check::after {
  content: "";
  position: absolute;
  left: 3px;
  top: 5px;
  width: 8px;
  height: 4px;
  border-left: 1.5px solid var(--accent);
  border-bottom: 1.5px solid var(--accent);
  transform: rotate(-45deg);
}
.preview__foot {
  margin-top: 12px;
  text-align: center;
  font-size: 11.5px;
  color: var(--muted);
}

/* ---------- LOSS GRID ---------- */
.loss { padding-top: 80px; padding-bottom: 80px; }
.loss__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 40px;
}
.loss__card {
  padding: 32px 28px;
  background: #ffffff;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .35s var(--ease), border-color .3s;
}
.loss__card:hover { transform: translateY(-3px); border-color: var(--ink); }
.loss__num {
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.04em;
}
.loss__card h3 {
  font-family: var(--display);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.6px;
  margin: 0;
  color: var(--ink);
}
.loss__card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--muted);
}

/* ---------- HOW IT WORKS ---------- */
.how { padding-top: 100px; padding-bottom: 100px; }
.how__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 48px;
}
.how__card {
  padding: 36px 30px 32px;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  transition: transform .35s var(--ease), border-color .3s, background .3s;
}
.how__card:hover { transform: translateY(-3px); border-color: var(--ink); background: #ffffff; }
.how__num {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.05em;
}
.how__card h3 {
  font-family: var(--display);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.6px;
  margin: 0;
  color: var(--ink);
}
.how__card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--muted);
}

/* ---------- PROOF STRIP ---------- */
.proof { padding-top: 80px; padding-bottom: 80px; }
.proof__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 56px 0;
}
.proof__left h2 { margin: 14px 0 18px; }
.proof__left p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 50ch;
  margin: 0 0 22px;
}
.proof__right {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.proof__metric {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  gap: 14px;
  padding: 18px 22px;
  background: #ffffff;
  border: 1px solid var(--line);
}
.proof__num {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(28px, 2.4vw, 36px);
  letter-spacing: -1.1px;
  line-height: 1;
  color: var(--ink);
}
.proof__lab {
  font-size: 13.5px;
  color: var(--muted);
  text-align: right;
  max-width: 22ch;
}
.proof__metric--accent {
  background: var(--ink);
  border-color: var(--ink);
}
.proof__metric--accent .proof__num { color: var(--accent); }
.proof__metric--accent .proof__lab { color: rgba(255, 255, 255, 0.7); }

/* ---------- GLIMPSE (compact scorecard) ---------- */
.glimpse { padding-top: 80px; padding-bottom: 120px; }
.glimpse__wrap {
  margin-top: 48px;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.glimpse__wrap::before {
  content: "";
  position: absolute;
  inset: -20px 5% auto;
  height: 60%;
  background: radial-gradient(60% 80% at 50% 40%, rgba(236, 108, 54, 0.12), transparent 70%);
  filter: blur(40px);
  z-index: -1;
}
.dash--glimpse {
  grid-template-columns: 1fr;
  background: #ffffff;
  border: 1px solid var(--line);
}
.dash--glimpse .dash__main { padding: 24px; }

.glimpse__prio {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.glimpse__prio-row {
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  background: #ffffff;
  border: 1px solid var(--line);
  font-size: 12.5px;
}
.glimpse__prio-row .mono { color: var(--muted); font-size: 11px; }
.glimpse__prio-name { color: var(--ink); }

/* ---------- responsive ---------- */
@media (max-width: 1000px) {
  .hero--lp { grid-template-columns: 1fr; padding-top: 130px; }
  .preview, .climb { max-width: 100%; margin: 0; }
  .loss__grid, .how__grid { grid-template-columns: 1fr; gap: 10px; }
  .proof__inner { grid-template-columns: 1fr; padding: 40px 0; gap: 32px; }
  .case2__grid { grid-template-columns: 1fr; gap: 32px; }
  .case2__metrics { grid-template-columns: 1fr; }
}

/* ===================================================================
   Older Double SEO sections kept for compatibility
   (stat banner, scorecard mockup, audit CTA, SERP, monitors)
=================================================================== */

/* ---------- STAT BANNER ---------- */
.stat { padding-top: 80px; padding-bottom: 80px; }
.stat__inner {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 56px 0;
}
.stat__row {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
  margin-top: 24px;
}
.stat__num {
  font-size: clamp(96px, 14vw, 200px);
  line-height: 0.9;
  letter-spacing: -6px;
  color: var(--ink);
  display: flex;
  align-items: flex-start;
}
.stat__pct {
  font-size: 0.45em;
  font-weight: 500;
  color: var(--muted);
  margin-left: 4px;
  margin-top: 0.18em;
  letter-spacing: -2px;
}
.stat__body p {
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink);
  max-width: 50ch;
}
.stat__source {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted-2);
  margin-top: 16px;
  max-width: 70ch;
}

/* ---------- SCORECARD MOCKUP ---------- */
.score__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 18px 0 14px;
}
.score__kpi {
  border: 1px solid var(--line);
  padding: 14px 16px;
  background: var(--bg-alt);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.score__kpi-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.score__kpi-num {
  font-family: var(--display);
  font-weight: 500;
  font-size: 38px;
  letter-spacing: -1.4px;
  line-height: 1;
  color: var(--ink);
  margin-top: 2px;
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.score__kpi-suffix {
  font-size: 14px;
  color: var(--muted);
  font-weight: 400;
  letter-spacing: 0;
}
.score__kpi-delta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--body);
  font-size: 12px;
  color: var(--green-2);
  margin-top: 2px;
}
.score__kpi-delta svg { color: var(--green); }
.score__kpi-period { color: var(--muted-2); margin-left: 2px; }

.score__board {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  border: 1px solid var(--line);
  padding: 12px;
  background: var(--bg-alt);
}
.score__col { display: flex; flex-direction: column; gap: 6px; }
.score__col-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted-2);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.prio {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 500;
  padding: 2px 6px;
  letter-spacing: 0.03em;
  color: #fff;
}
.prio--p0 { background: var(--accent); }
.prio--p1 { background: var(--amber); }
.prio--p2 { background: #7a7a72; }
.prio--p3 { background: #b8b8b0; }
.score__card {
  background: #ffffff;
  border: 1px solid var(--line);
  padding: 8px 10px;
  font-size: 12px;
  line-height: 1.4;
  color: var(--ink);
}

.score__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 10px;
}
.score__panel {
  border: 1px solid var(--line);
  background: var(--bg-alt);
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.score__panel-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: var(--body);
  font-size: 12.5px;
  color: var(--ink);
}
.score__panel-head .mono { color: var(--muted-2); font-size: 11px; }
.score__spark { width: 100%; height: 60px; }
.score__panel-foot {
  font-family: var(--body);
  font-size: 11.5px;
  color: var(--muted);
  margin-top: -4px;
}

.ai__rows { display: flex; flex-direction: column; gap: 7px; }
.ai__row {
  display: grid;
  grid-template-columns: 110px 1fr 40px;
  align-items: center;
  gap: 10px;
  font-size: 12px;
}
.ai__name { color: var(--ink); }
.ai__bar {
  height: 6px;
  background: rgba(13, 13, 13, 0.08);
  position: relative;
  overflow: hidden;
}
.ai__bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--ink) 0%, var(--accent) 100%);
}
.ai__pct {
  text-align: right;
  font-size: 11.5px;
  color: var(--muted);
}

/* ---------- SERP MINI VISUAL (feature 01) ---------- */
.serp {
  background: #ffffff;
  border: 1px solid var(--line);
  padding: 14px 16px;
  max-width: 380px;
  margin: 18px auto 0;
  position: relative;
  z-index: 1;
}
.serp__head {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border: 1px solid var(--line);
  font-size: 13px;
  color: var(--muted);
  background: var(--bg-alt);
}
.serp__head svg { color: var(--muted); }
.serp__pack {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.serp__pack-label {
  font-family: var(--mono);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted-2);
}
.serp__pin {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 10px;
  border: 1px solid var(--line);
}
.serp__pin > span:first-child {
  width: 22px; height: 22px;
  display: grid; place-items: center;
  font-family: var(--mono);
  font-size: 11.5px;
  background: var(--ink);
  color: #ffffff;
  flex-shrink: 0;
}
.serp__pin--1 > span:first-child { background: var(--accent); }
.serp__biz { font-size: 13px; font-weight: 500; color: var(--ink); }
.serp__meta { font-size: 11px; color: var(--muted); margin-top: 2px; }

/* ---------- MONITORS PANEL (feature 03) ---------- */
.monitors {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  z-index: 1;
  padding: 4px;
}
.monitors__row {
  display: grid;
  grid-template-columns: 16px 1fr auto auto;
  align-items: center;
  gap: 12px;
  background: #ffffff;
  border: 1px solid var(--line);
  padding: 11px 14px;
}
.monitors__name {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink);
}
.monitors__time {
  font-size: 11px;
  color: var(--muted-2);
}

/* ---------- AUDIT CTA INTERRUPT ---------- */
.audit-cta { padding-top: 0; padding-bottom: 80px; }
.audit-cta__inner {
  background: var(--ink);
  color: #efedea;
  padding: clamp(56px, 6vw, 88px) clamp(28px, 5vw, 64px);
  position: relative;
  overflow: hidden;
}
.audit-cta__inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(40% 60% at 20% 0%, rgba(236, 108, 54, 0.35), transparent 70%),
    radial-gradient(50% 80% at 90% 100%, rgba(218, 197, 167, 0.16), transparent 70%);
  pointer-events: none;
}
.audit-cta__inner > * { position: relative; z-index: 1; }
.audit-cta__inner .eyebrow--mono { color: var(--accent); }
.audit-cta__inner .display { color: #fff; margin: 12px 0 18px; max-width: 720px; }
.audit-cta__sub {
  color: rgba(255, 255, 255, 0.75);
  font-size: 17px;
  max-width: 70ch;
  margin: 0 0 28px;
}
.audit-cta__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 32px;
  margin-bottom: 32px;
  max-width: 800px;
}
.audit-cta__list li {
  position: relative;
  padding-left: 28px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.5;
}
.audit-cta__check {
  position: absolute;
  left: 0;
  top: 6px;
  width: 16px;
  height: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.audit-cta__check::after {
  content: "";
  position: absolute;
  left: 3px;
  top: 5px;
  width: 8px;
  height: 4px;
  border-left: 1.5px solid var(--accent);
  border-bottom: 1.5px solid var(--accent);
  transform: rotate(-45deg);
}
.audit-cta__buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.audit-cta__inner .btn--primary {
  background: #ffffff;
  color: var(--ink);
}
.audit-cta__inner .btn--primary:hover {
  background: var(--accent);
  color: #fff;
}
.audit-cta__inner .btn--ghost {
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.2);
}
.audit-cta__inner .btn--ghost:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}

/* responsive overrides for new sections */
@media (max-width: 1100px) {
  .score__board { grid-template-columns: repeat(2, 1fr); }
  .score__split { grid-template-columns: 1fr; }
  .audit-cta__list { grid-template-columns: 1fr; }
  .stat__row { grid-template-columns: 1fr; gap: 24px; }
}
@media (max-width: 820px) {
  .score__grid { grid-template-columns: 1fr; }
  .score__board { grid-template-columns: 1fr; }
  .stat__num { font-size: clamp(80px, 22vw, 140px); }
}

/* ===== animations ===== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(61,177,94,.5); }
  70%  { box-shadow: 0 0 0 10px rgba(61,177,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(61,177,94,0); }
}
@keyframes pulse-orange {
  0%   { box-shadow: 0 0 0 0 rgba(236,108,54,.5); }
  70%  { box-shadow: 0 0 0 10px rgba(236,108,54,0); }
  100% { box-shadow: 0 0 0 0 rgba(236,108,54,0); }
}
@keyframes pulse-amber {
  0%   { box-shadow: 0 0 0 0 rgba(210,144,48,.5); }
  70%  { box-shadow: 0 0 0 10px rgba(210,144,48,0); }
  100% { box-shadow: 0 0 0 0 rgba(210,144,48,0); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes float {
  from { transform: rotate(2.5deg) translateY(0); }
  to   { transform: rotate(2.5deg) translateY(-8px); }
}
@keyframes progress {
  from { width: 76%; }
  to   { width: 86%; }
}
@keyframes faqIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: none; }
}

/* ===== responsive ===== */
@media (max-width: 1100px) {
  .pain__grid { grid-template-columns: 1fr 1fr; }
  .pain__card--accent { grid-column: 1 / -1; }
  .creds, .case__metrics, .price__grid, .blog__grid, .footer__cols { grid-template-columns: 1fr 1fr; }
  .price__card--featured { transform: none; }
  .price__card--featured:hover { transform: translateY(-4px); }
}
@media (max-width: 820px) {
  .nav { top: 12px; padding: 0 12px; }
  .nav__box { padding: 7px 7px 7px 16px; gap: 4px; }
  .nav__links { display: none; }
  .nav__logo { font-size: 17px; padding-right: 6px; }
  .btn--get-started { padding: 9px 14px; font-size: 13.5px; }
  .hero { padding-top: 110px; }
  .feature { grid-template-columns: 1fr; gap: 32px; }
  .feature--reverse .feature__copy { order: 0; }
  .feature--reverse .feature__visual { order: 0; }
  .feature__visual { padding: 24px; min-height: 320px; }
  .pain__grid { grid-template-columns: 1fr; }
  .founder__inner { grid-template-columns: 1fr; padding: 40px 28px; text-align: center; }
  .creds, .case__metrics, .price__grid, .blog__grid, .footer__cols { grid-template-columns: 1fr; }
  .aud__grid, .case__grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 36px; }
  .footer__bottom { flex-direction: column; gap: 8px; }
  .section__head--row { flex-direction: column; align-items: flex-start; }
  .dash { grid-template-columns: 1fr; }
  .dash__side { display: none; }
  .dash__row { grid-template-columns: 28px 1.4fr 1fr; }
  .dash__row > :nth-child(n+5) { display: none; }
  .dash__row--head > :nth-child(n+5) { display: none; }
}
