/* ===================================================================
   Rhody Reviews — Sells direction
   Stripped down. Dark default. Bold display type. Neon accents.
   =================================================================== */

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { min-height: 100%; }

:root {
  /* type */
  --font-display: 'Anton', 'Impact', 'Bebas Neue', Arial Black, sans-serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, Menlo, monospace;

  /* shape */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;

  /* layout */
  --max: 1240px;
  --gutter: clamp(20px, 4vw, 48px);

  /* shadows (light) */
  --shadow-card: 0 1px 0 rgba(0,0,0,0.04), 0 1px 3px rgba(0,0,0,0.06);
  --shadow-lift: 0 14px 32px -16px rgba(0,0,0,0.18);
}

/* ============ THEMES ============ */
/* dark (default) */
.theme-dark {
  --bg:        #07080B;
  --bg-2:      #0E1015;
  --bg-3:      #15181F;
  --surface:   #14171E;
  --surface-2: #1B1F28;
  --line:      rgba(255,255,255,0.08);
  --line-2:    rgba(255,255,255,0.14);
  --ink:       #F4F2EE;
  --ink-2:     #E9E5DE;
  --muted:     #8A8E98;
  --muted-2:   #B5B8C0;
}

/* light */
.theme-light {
  --bg:        #F7F5F0;
  --bg-2:      #FFFFFF;
  --bg-3:      #EFECE4;
  --surface:   #FFFFFF;
  --surface-2: #F2EFE7;
  --line:      rgba(7,8,11,0.10);
  --line-2:    rgba(7,8,11,0.16);
  --ink:       #07080B;
  --ink-2:     #1A1D24;
  --muted:     #5F6470;
  --muted-2:   #383C45;
}

/* ============ COLOR SCHEMES ============
   3 schemes — applied to ANY theme.
   Each defines: --accent (primary hot), --accent-ink (text on accent),
   --pop (secondary hot), --hl (highlight glow).
*/

/* Voltage — electric green on near-black */
.scheme-voltage {
  --accent:     #B8FF00;
  --accent-ink: #07080B;
  --pop:        #FF4FD8;
  --pop-ink:    #07080B;
  --hl:         rgba(184,255,0,0.22);
}

/* Citrus — acid yellow + coral */
.scheme-citrus {
  --accent:     #FFE600;
  --accent-ink: #07080B;
  --pop:        #FF5436;
  --pop-ink:    #FFFFFF;
  --hl:         rgba(255,230,0,0.22);
}

/* Plasma — cyan + magenta */
.scheme-plasma {
  --accent:     #00E5FF;
  --accent-ink: #07080B;
  --pop:        #FF2EC4;
  --pop-ink:    #FFFFFF;
  --hl:         rgba(0,229,255,0.20);
}

/* Ember — hot orange + amber (bonus, conversion-tested) */
.scheme-ember {
  --accent:     #FF6A1A;
  --accent-ink: #FFFFFF;
  --pop:        #FFC633;
  --pop-ink:    #07080B;
  --hl:         rgba(255,106,26,0.22);
}

/* Cobalt — electric blue, fintech-confident */
.scheme-cobalt {
  --accent:     #3563FF;
  --accent-ink: #FFFFFF;
  --pop:        #61E8E1;
  --pop-ink:    #07080B;
  --hl:         rgba(53,99,255,0.22);
}

/* Carbon — chrome white on black, luxury minimalist */
.scheme-carbon {
  --accent:     #F4F2EE;
  --accent-ink: #07080B;
  --pop:        #FFD400;
  --pop-ink:    #07080B;
  --hl:         rgba(244,242,238,0.16);
}

/* Inferno — crimson + ember, urgency */
.scheme-inferno {
  --accent:     #FF2D2D;
  --accent-ink: #FFFFFF;
  --pop:        #FF9F1C;
  --pop-ink:    #07080B;
  --hl:         rgba(255,45,45,0.22);
}

/* Mint — vivid mint + emerald */
.scheme-mint {
  --accent:     #00E08E;
  --accent-ink: #07080B;
  --pop:        #2DD4BF;
  --pop-ink:    #07080B;
  --hl:         rgba(0,224,142,0.22);
}

/* Bullion — bright 24K gold + ink. Bold, monetary. */
.scheme-bullion {
  --accent:     #F4C430;
  --accent-ink: #07080B;
  --pop:        #FFFFFF;
  --pop-ink:    #07080B;
  --hl:         rgba(244,196,48,0.22);
}

/* Champagne — pale warm gold + ivory. Refined, editorial. */
.scheme-champagne {
  --accent:     #E8D08C;
  --accent-ink: #1A1410;
  --pop:        #F4F2EE;
  --pop-ink:    #1A1410;
  --hl:         rgba(232,208,140,0.22);
}

/* Brass — burnished warm gold + amber. Premium, heritage. */
.scheme-brass {
  --accent:     #C8924C;
  --accent-ink: #FFFFFF;
  --pop:        #E8B86A;
  --pop-ink:    #1A1410;
  --hl:         rgba(200,146,76,0.22);
}

/* ============ VIBE — layout variants ============ */
/* Centered (default) — already styled */

/* Editorial — left-aligned hero, asymmetric tile sizing */
.vibe-editorial .hero { padding-top: 88px; padding-bottom: 16px; }
.vibe-editorial .hero__inner {
  align-items: flex-start;
  text-align: left;
}
.vibe-editorial .hero h1 {
  max-width: 16ch;
  display: flex;
  flex-direction: column;
}
.vibe-editorial .hero__sub { max-width: 48ch; }
.vibe-editorial .hero__trust { justify-content: flex-start; }
.vibe-editorial .big-tiles__grid {
  grid-template-columns: 1.5fr 1fr;
}
@media (max-width: 880px) {
  .vibe-editorial .big-tiles__grid { grid-template-columns: 1fr; }
}
.vibe-editorial .big-tile h2 { font-size: clamp(36px, 5vw, 72px); }

/* Loud — oversized statement hero */
.vibe-loud .hero { padding: 96px 0 32px; }
.vibe-loud .hero h1 {
  font-size: clamp(64px, 12vw, 168px);
  max-width: 12ch;
  letter-spacing: -0.01em;
  line-height: 0.88;
  display: flex;
  flex-direction: column;
}
.vibe-loud .hero__sub { font-size: clamp(16px, 1.6vw, 20px); }
.vibe-loud .big-tile { min-height: 560px; }
.vibe-loud .big-tile h2 { font-size: clamp(42px, 5.2vw, 72px); }

body {
  background: transparent;
  position: relative;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.container { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
.container--narrow { max-width: 960px; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.005em;
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--ink);
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input { font-family: inherit; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: transform .15s ease, background .15s, color .15s, box-shadow .15s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn--lg { height: 60px; padding: 0 28px; font-size: 15px; }
.btn--sm { height: 40px; padding: 0 16px; font-size: 12.5px; }

.btn--primary {
  background: var(--accent);
  color: var(--accent-ink);
  box-shadow: 0 0 0 1px var(--accent), 0 10px 30px -10px var(--accent);
}
.btn--primary:hover {
  filter: brightness(1.08);
  box-shadow: 0 0 0 1px var(--accent), 0 16px 38px -10px var(--accent);
}

.btn--ghost {
  color: var(--ink);
  box-shadow: inset 0 0 0 1.5px var(--line-2);
}
.btn--ghost:hover {
  background: var(--surface);
  box-shadow: inset 0 0 0 1.5px var(--ink);
}

.btn--text { color: var(--ink); padding: 0; height: auto; background: none; box-shadow: none; }
.btn--text:hover { color: var(--accent); transform: none; }

/* ============ NAV ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in oklab, var(--bg) 80%, transparent);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}
.nav__left { display: flex; align-items: center; gap: 32px; }
.nav__links { display: flex; gap: 22px; }
.nav__links a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--muted-2);
  text-transform: uppercase;
  transition: color .15s;
}
.nav__links a:hover { color: var(--ink); }
.nav__right { display: flex; align-items: center; gap: 14px; }
@media (max-width: 760px) { .nav__links { display: none; } }

.logo { display: flex; align-items: center; gap: 10px; }
.logo__mark {
  width: 32px; height: 32px;
  background: var(--accent);
  color: var(--accent-ink);
  border-radius: 8px;
  display: grid; place-items: center;
}
.logo__type {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--ink);
}
.logo__type span { color: var(--accent); }

/* theme toggle */
.theme-toggle {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  padding: 3px;
  gap: 0;
  height: 36px;
}
.theme-toggle button {
  height: 28px; width: 32px;
  border-radius: 999px;
  display: grid; place-items: center;
  color: var(--muted);
  transition: background .15s, color .15s;
}
.theme-toggle button:hover { color: var(--ink); }
.theme-toggle button.is-active {
  background: var(--ink);
  color: var(--bg);
}

/* ============ HERO ============ */
.hero { padding: 64px 0 24px; position: relative; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 72% 38%;
  opacity: 0.30;
}
.hero__bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 95% at 50% 28%, rgba(7,8,11,0.32), rgba(7,8,11,0.90) 72%),
    linear-gradient(180deg, rgba(7,8,11,0.55) 0%, rgba(7,8,11,0.2) 40%, var(--bg) 100%);
}
.hero .container { position: relative; z-index: 1; }
.hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 32px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 32px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--line);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.hero__eyebrow-dot {
  width: 8px; height: 8px; border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
}

.hero h1 {
  display: flex;
  flex-direction: column;
  font-size: clamp(44px, 7vw, 104px);
  line-height: 1.04;
  letter-spacing: -0.005em;
  max-width: none;
  text-wrap: initial;
}
/* every direct span child becomes its own line — survives editor classname stripping */
.hero h1 > span {
  display: block;
  text-wrap: balance;
}
.hero h1 .pop { color: var(--accent); }
.hero h1 .hl {
  background: var(--hl);
  padding: 0 0.15em;
  color: var(--ink);
}

.hero__sub {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.4vw, 17px);
  font-weight: 500;
  color: var(--muted-2);
  max-width: 48ch;
  line-height: 1.45;
}
.hero__sub strong { color: var(--ink); font-weight: 700; }

.hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

.hero__trust {
  display: inline-flex; gap: 22px; flex-wrap: wrap; justify-content: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero__trust span { display: inline-flex; align-items: center; gap: 6px; }
.hero__trust svg { color: var(--accent); }

/* ============ TRADES BAND ============ */
.trades-grid {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 4px 0 12px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--line-2) transparent;
}
.trades-grid::-webkit-scrollbar { height: 6px; }
.trades-grid::-webkit-scrollbar-thumb { background: var(--line-2); border-radius: 999px; }
.trade {
  position: relative;
  margin: 0;
  flex: 0 0 clamp(180px, 22vw, 240px);
  scroll-snap-align: start;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border: 1px solid var(--line);
  transition: transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .3s ease, border-color .2s;
}
@media (max-width: 560px) { .trade { flex-basis: 72vw; } }
.trade img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s cubic-bezier(.2,.8,.2,1);
}
.trade::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(7,8,11,0.88) 4%, rgba(7,8,11,0.25) 42%, transparent 70%);
}
.trade figcaption {
  position: absolute; left: 16px; right: 12px; bottom: 14px;
  z-index: 1;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(15px, 1.4vw, 19px);
  letter-spacing: 0.02em;
  line-height: 1;
  color: #FFFFFF;
}
.trade:hover { transform: translateY(-4px); box-shadow: 0 28px 56px -26px rgba(0,0,0,0.7); border-color: var(--accent); }
.trade:hover img { transform: scale(1.06); }

/* ============ TWO BIG TILES ============ */
.big-tiles {
  padding: 56px 0 24px;
}
.big-tiles__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
@media (max-width: 880px) { .big-tiles__grid { grid-template-columns: 1fr; } }

.big-tile {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 520px;
  overflow: hidden;
  transition: transform .3s cubic-bezier(.2,.8,.2,1), border-color .2s, box-shadow .3s ease;
}
/* elevation — theme-aware so it reads on both light pages and dark */
.theme-light .big-tile { box-shadow: 0 22px 48px -24px rgba(7,8,11,0.30), 0 6px 16px -8px rgba(7,8,11,0.14); }
.theme-dark  .big-tile { box-shadow: 0 28px 60px -28px rgba(0,0,0,0.75), 0 6px 18px -10px rgba(0,0,0,0.5); }
/* the accent tile gets a soft colored glow — premium signature */
.big-tile--accent { box-shadow: 0 26px 70px -26px color-mix(in srgb, var(--accent) 60%, transparent) !important; }
.big-tile:hover {
  transform: translateY(-6px);
  border-color: var(--line-2);
}
.theme-light .big-tile:hover { box-shadow: 0 36px 70px -26px rgba(7,8,11,0.34), 0 10px 24px -10px rgba(7,8,11,0.18); }
.theme-dark  .big-tile:hover { box-shadow: 0 40px 80px -28px rgba(0,0,0,0.8), 0 10px 26px -12px rgba(0,0,0,0.55); }
.big-tile--accent:hover { box-shadow: 0 38px 90px -26px color-mix(in srgb, var(--accent) 72%, transparent) !important; }

/* ===== mobile-first polish ===== */
@media (max-width: 600px) {
  .big-tile { min-height: auto; padding: 24px; }
  .big-tile h2 { font-size: clamp(32px, 9vw, 44px); }
  .big-tile__demo { min-height: 150px; }
  .big-tiles { padding: 32px 0 16px; }
  .big-tiles__grid { gap: 14px; }
  .hero { padding: 40px 0 12px; }
  .section { padding: 64px 0; }
  .more-strip { padding: 40px 0 64px; }
  .feature-panel { padding: 24px; }
  .feature-panel__close { top: 14px; right: 14px; }
  /* bigger tap targets */
  .btn { height: 54px; }
  .btn--sm { height: 46px; }
  .roi-step { width: 38px; height: 38px; }
  .nav__inner { height: 64px; }
}
/* accent-colored tile — the "yes, look at this" tile */
.big-tile--accent {
  background: var(--accent);
  color: var(--accent-ink);
  border-color: var(--accent);
}
.big-tile--accent h2,
.big-tile--accent .big-tile__stat-num { color: var(--accent-ink); }
.big-tile--accent .big-tile__lede,
.big-tile--accent .big-tile__stat-label { color: color-mix(in srgb, var(--accent-ink) 70%, transparent); }
.big-tile--accent .big-tile__pill {
  background: color-mix(in srgb, var(--accent-ink) 10%, transparent);
  color: var(--accent-ink);
}
.big-tile--accent .big-tile__num { color: color-mix(in srgb, var(--accent-ink) 30%, transparent); }
.big-tile--accent .big-tile__stats { border-color: color-mix(in srgb, var(--accent-ink) 14%, transparent); }
.big-tile--accent .big-tile__demo {
  background: color-mix(in srgb, var(--accent-ink) 8%, transparent);
  border-color: color-mix(in srgb, var(--accent-ink) 10%, transparent);
}
.big-tile--accent .sms__bubble {
  background: color-mix(in srgb, var(--accent-ink) 12%, transparent);
  color: var(--accent-ink);
}
.big-tile--accent .sms__bubble.out {
  background: var(--accent-ink);
  color: var(--accent);
}
.big-tile--accent .sms__meta { color: color-mix(in srgb, var(--accent-ink) 55%, transparent); }

/* highlighted (lead) tile — solid white for max contrast on dark */
.big-tile--lead {
  background: #FFFFFF;
  color: #07080B;
  border-color: #FFFFFF;
}
.big-tile--lead h2,
.big-tile--lead .big-tile__stat-num { color: #07080B; }
.big-tile--lead .big-tile__lede,
.big-tile--lead .big-tile__stat-label { color: rgba(7,8,11,0.62); }
.big-tile--lead .big-tile__pill {
  background: rgba(7,8,11,0.06);
  color: #07080B;
}
.big-tile--lead .big-tile__num { color: rgba(7,8,11,0.30); }
.big-tile--lead .big-tile__stats { border-color: rgba(7,8,11,0.12); }
.big-tile--lead .big-tile__demo {
  background: #F5F4EF;
  border-color: rgba(7,8,11,0.08);
}
.big-tile--lead .sms__bubble {
  background: rgba(7,8,11,0.06);
  color: #07080B;
}
.big-tile--lead .sms__bubble.out {
  background: var(--accent);
  color: var(--accent-ink);
}
.big-tile--lead .sms__meta { color: rgba(7,8,11,0.45); }
/* light-theme: the lead tile flips back to surface-dark for contrast */
.theme-light .big-tile--lead {
  background: #07080B;
  color: #F4F2EE;
  border-color: #07080B;
}
.theme-light .big-tile--lead h2,
.theme-light .big-tile--lead .big-tile__stat-num { color: #FFFFFF; }
.theme-light .big-tile--lead .big-tile__lede,
.theme-light .big-tile--lead .big-tile__stat-label { color: rgba(244,242,238,0.70); }
.theme-light .big-tile--lead .big-tile__pill {
  background: rgba(255,255,255,0.10);
  color: #FFFFFF;
}
.theme-light .big-tile--lead .big-tile__num { color: rgba(255,255,255,0.35); }
.theme-light .big-tile--lead .big-tile__stats { border-color: rgba(255,255,255,0.12); }
.theme-light .big-tile--lead .big-tile__demo {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.08);
}
.theme-light .big-tile--lead .sms__bubble {
  background: rgba(255,255,255,0.08);
  color: #F4F2EE;
}
.theme-light .big-tile--lead .sms__meta { color: rgba(255,255,255,0.55); }

/* ===== mini-hero header (centered, big number + name) ===== */
.big-tile__minihero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 8px 0 20px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 6px;
}
.big-tile__minihero-num {
  font-family: var(--font-display);
  font-size: clamp(15px, 1.5vw, 19px);
  line-height: 1;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.big-tile__minihero-name {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.2vw, 54px);
  letter-spacing: 0.01em;
  text-transform: uppercase;
  line-height: 0.92;
  color: var(--ink);
}

/* accent tile — same fonts, accent-ink colors */
.big-tile--accent .big-tile__minihero { border-bottom-color: color-mix(in srgb, var(--accent-ink) 18%, transparent); }
.big-tile--accent .big-tile__minihero-name { color: var(--accent-ink); }
.big-tile--accent .big-tile__minihero-num { color: color-mix(in srgb, var(--accent-ink) 55%, transparent); }

/* lead tile — black ink on white */
.big-tile--lead .big-tile__minihero { border-bottom-color: rgba(7,8,11,0.14); }
.big-tile--lead .big-tile__minihero-name { color: #07080B; }
.big-tile--lead .big-tile__minihero-num { color: rgba(7,8,11,0.5); }

/* light-theme lead tile (which inverts to dark surface) */
.theme-light .big-tile--lead .big-tile__minihero { border-bottom-color: rgba(255,255,255,0.14); }
.theme-light .big-tile--lead .big-tile__minihero-name { color: #FFFFFF; }
.theme-light .big-tile--lead .big-tile__minihero-num { color: rgba(255,255,255,0.55); }

/* ===== Tweaks palette swatch grid (always-visible color picker) ===== */
.pal-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
}
.pal {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 8px 6px 6px;
  border-radius: 9px;
  border: 1px solid rgba(0,0,0,0.12);
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  text-align: left;
  transition: background .12s, border-color .12s, box-shadow .12s;
}
.pal:hover { background: rgba(255,255,255,0.85); }
.pal.is-active {
  border-color: #29261b;
  box-shadow: 0 0 0 1.5px #29261b;
  background: rgba(255,255,255,0.9);
}
.pal__sw {
  position: relative;
  width: 24px;
  height: 24px;
  border-radius: 7px;
  flex: none;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.10);
}
.pal__dot {
  position: absolute;
  right: -3px;
  bottom: -3px;
  width: 11px;
  height: 11px;
  border-radius: 999px;
  box-shadow: 0 0 0 1.5px rgba(250,249,247,0.95);
}
.pal__name {
  font-size: 10.5px;
  font-weight: 600;
  color: #29261b;
  line-height: 1.1;
  letter-spacing: 0.005em;
}

/* ===== iPhone-style iMessage exchange ===== */
.iphone {
  background: #1C1C1E;
  color: #FFFFFF;
  border-radius: 26px;
  padding: 14px 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 8px 24px -10px rgba(0,0,0,0.45), inset 0 0 0 1px rgba(255,255,255,0.05);
  position: relative;
}
/* dynamic island */
.iphone::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 88px;
  height: 22px;
  background: #000;
  border-radius: 999px;
  pointer-events: none;
}
.iphone__status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', system-ui, sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #FFFFFF;
  padding: 4px 14px 0;
  position: relative;
  z-index: 1;
}
.iphone__time { font-variant-numeric: tabular-nums; }
.iphone__notch { width: 88px; } /* spacer for the island */
.iphone__icons {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #FFFFFF;
}

.iphone__contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 6px 0 8px;
  border-bottom: 0.5px solid rgba(255,255,255,0.10);
}
.iphone__contact-av {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: linear-gradient(180deg, #4A4A4D 0%, #2E2E30 100%);
  color: #FFFFFF;
  display: grid;
  place-items: center;
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', system-ui, sans-serif;
  font-weight: 600;
  font-size: 13px;
}
.iphone__contact-name {
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', system-ui, sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  color: #FFFFFF;
  letter-spacing: -0.01em;
}

.iphone__thread {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 6px 4px 0;
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', system-ui, sans-serif;
}
.iphone__day {
  font-size: 10px;
  font-weight: 600;
  color: rgba(235,235,245,0.55);
  text-align: center;
  margin-bottom: 4px;
  letter-spacing: 0.02em;
}
.iphone__row {
  display: flex;
  width: 100%;
}
.iphone__row.in  { justify-content: flex-start; }
.iphone__row.out { justify-content: flex-end; }
.iphone__bubble {
  max-width: 78%;
  padding: 8px 12px;
  font-size: 13.5px;
  line-height: 1.32;
  border-radius: 18px;
  word-wrap: break-word;
  color: #FFFFFF;
  letter-spacing: -0.005em;
}
.iphone__bubble.in {
  background: #3A3A3C;
  border-bottom-left-radius: 6px;
}
.iphone__bubble.out {
  background: #0A84FF;
  border-bottom-right-radius: 6px;
}
.iphone__bubble strong { color: #FFFFFF; font-weight: 600; }
.iphone__delivered {
  font-size: 9.5px;
  color: rgba(235,235,245,0.55);
  text-align: right;
  padding: 0 4px;
  margin-top: 2px;
}

/* the iphone keeps its own colors regardless of which tile palette wraps it */
.big-tile--accent .iphone,
.big-tile--lead .iphone { color: #FFFFFF; }

/* iMessage tapback reaction (e.g. business thumbs-ups the customer) */
.iphone__bubble-wrap {
  position: relative;
  display: inline-block;
  max-width: 78%;
}
.iphone__bubble-wrap .iphone__bubble { max-width: 100%; }
.iphone__tapback {
  position: absolute;
  top: -12px;
  right: -10px;
  width: 28px;
  height: 28px;
  background: #3A3A3C;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 14px;
  line-height: 1;
  box-shadow: 0 2px 6px rgba(0,0,0,0.45), 0 0 0 2px #1C1C1E;
}
/* the little trailing dots iMessage draws under a tapback */
.iphone__tapback::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: -1px;
  width: 7px;
  height: 7px;
  background: #3A3A3C;
  border-radius: 999px;
  box-shadow: -3px 2px 0 -1px #3A3A3C;
}

/* ===== legacy header styles (kept for safety; superseded by minihero) ===== */
.big-tile__num {
  font-family: var(--font-display);
  font-size: clamp(56px, 6.5vw, 88px);
  color: var(--ink);
  letter-spacing: -0.005em;
  line-height: 0.9;
  text-transform: uppercase;
}
.big-tile__pill {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 28px);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 0;
  border-radius: 0;
  background: none;
  line-height: 1;
}
.big-tile--lead .big-tile__hdr { border-bottom-color: rgba(7,8,11,0.12); }
.big-tile--lead .big-tile__num,
.big-tile--lead .big-tile__pill { color: #07080B; }
.big-tile--accent .big-tile__hdr { border-bottom-color: color-mix(in srgb, var(--accent-ink) 14%, transparent); }
.big-tile--accent .big-tile__num,
.big-tile--accent .big-tile__pill { color: var(--accent-ink); }

.big-tile h2 {
  font-size: clamp(36px, 4.5vw, 64px);
  line-height: 0.95;
  letter-spacing: -0.005em;
  text-wrap: balance;
  max-width: 16ch;
}

.big-tile__lede {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--muted-2);
  max-width: 38ch;
}

.big-tile__stats {
  display: flex;
  gap: 32px;
  padding: 16px 0 0;
  border-top: 1px solid var(--line);
  margin-top: auto;
}
.big-tile__stat-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.big-tile__stat-num {
  font-family: var(--font-display);
  font-size: 38px;
  line-height: 1;
  color: var(--ink);
}

.big-tile__demo {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 16px;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* mock — sms */
.sms { display: flex; flex-direction: column; gap: 6px; }
.sms__row { display: flex; gap: 6px; align-items: flex-end; }
.sms__row.out { justify-content: flex-end; }
.sms__bubble {
  background: var(--surface-2);
  color: var(--ink);
  border-radius: 14px 14px 14px 4px;
  padding: 10px 12px;
  font-size: 13px;
  line-height: 1.35;
  max-width: 80%;
}
.sms__bubble.out {
  background: var(--accent);
  color: var(--accent-ink);
  border-radius: 14px 14px 4px 14px;
  font-weight: 600;
}
.big-tile--lead .sms__bubble {
  background: rgba(7,8,11,0.06);
  color: #07080B;
}
.big-tile--lead .sms__bubble.out {
  background: var(--accent);
  color: var(--accent-ink);
}
.sms__meta {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.big-tile--lead .sms__meta { color: rgba(7,8,11,0.55); }

/* mock — review reply */
.reply { display: flex; flex-direction: column; gap: 10px; }
.reply__head { display: flex; align-items: center; gap: 8px; }
.reply__av {
  width: 28px; height: 28px;
  border-radius: 999px;
  background: var(--pop);
  color: var(--pop-ink);
  display: grid; place-items: center;
  font-weight: 800;
  font-size: 12px;
}
.reply__name { font-weight: 700; font-size: 13px; }
.reply__stars { color: #FFD700; display: inline-flex; gap: 1px; }
.reply__stars svg { width: 12px; height: 12px; }
.reply__quote { font-size: 12.5px; line-height: 1.45; color: var(--muted-2); }
.reply__draft {
  background: var(--surface-2);
  border-left: 3px solid var(--accent);
  border-radius: 0 8px 8px 0;
  padding: 10px 12px;
  font-size: 12.5px;
  line-height: 1.4;
  color: var(--ink);
}
.reply__draft-label {
  display: flex;
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--accent);
  align-items: center;
  gap: 4px;
  margin-bottom: 6px;
  font-weight: 700;
}
.big-tile:not(.big-tile--lead):not(.big-tile--accent) .reply__draft { color: var(--ink); }
.reply__draft-body { display: block; }
.reply__actions { display: flex; gap: 6px; }
.reply__chip {
  height: 26px; padding: 0 10px;
  border-radius: 999px;
  background: var(--surface-2);
  font-size: 11px;
  font-weight: 600;
  color: var(--muted-2);
  display: inline-flex; align-items: center; gap: 4px;
}
.reply__chip--primary {
  background: var(--accent);
  color: var(--accent-ink);
}

/* ============ + 7 MORE STRIP ============ */
.more-strip {
  padding: 56px 0 96px;
}
.more-strip__head {
  display: flex; justify-content: space-between; align-items: end;
  margin-bottom: 28px;
  gap: 24px;
}
.more-strip__h {
  font-size: clamp(28px, 3.4vw, 48px);
  line-height: 0.95;
  max-width: 18ch;
}
.more-strip__sub {
  font-size: 14px;
  color: var(--muted-2);
  max-width: 32ch;
  text-align: right;
}
@media (max-width: 720px) {
  .more-strip__head { flex-direction: column; align-items: flex-start; }
  .more-strip__sub { text-align: left; }
}
.more-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
}
@media (max-width: 1100px) { .more-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 600px) { .more-grid { grid-template-columns: repeat(2, 1fr); } }

.mini {
  background: var(--surface);
  border: 1.5px solid var(--accent);
  border-radius: var(--r-md);
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 132px;
  text-align: left;
  cursor: pointer;
  transition: background .15s, border-color .15s, transform .15s, box-shadow .15s;
}
.mini:hover {
  background: color-mix(in srgb, var(--accent) 16%, var(--surface));
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 0 0 1px var(--accent), 0 14px 30px -16px var(--accent);
}
.mini:hover .mini__more { color: var(--accent); }
.mini.is-active {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 0 0 1px var(--accent), 0 16px 34px -16px var(--accent);
}
.mini.is-active .mini__icon,
.mini.is-active .mini__h,
.mini.is-active .mini__more { color: var(--accent-ink); }
.mini__icon {
  color: var(--accent);
  width: 22px; height: 22px;
}
.mini__h {
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
.mini__more {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--muted-2);
}
.mini__chev { display: inline-flex; transition: transform .2s; }
.mini.is-active .mini__chev { transform: rotate(180deg); }

/* ===== expandable feature marketing panel ===== */
@keyframes feature-in {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.feature-panel {
  position: relative;
  margin-top: 14px;
  background: var(--surface);
  border: 1px solid var(--line-2);
  border-radius: var(--r-xl);
  padding: clamp(28px, 4vw, 56px);
  overflow: hidden;
  animation: feature-in .28s cubic-bezier(.2,.8,.2,1) both;
}
.feature-panel::before {
  content: "";
  position: absolute; inset: 0 0 auto 0;
  height: 4px;
  background: var(--accent);
}
.feature-panel__close {
  position: absolute;
  top: 20px; right: 20px;
  width: 36px; height: 36px;
  border-radius: 999px;
  display: grid; place-items: center;
  color: var(--muted-2);
  background: var(--bg-3);
  border: 1px solid var(--line);
  transition: background .15s, color .15s;
}
.feature-panel__close:hover { background: var(--accent); color: var(--accent-ink); border-color: var(--accent); }

.feature-panel__grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}
@media (max-width: 860px) { .feature-panel__grid { grid-template-columns: 1fr; } }

.feature-panel__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--accent);
}
.feature-panel__eyebrow svg { width: 16px; height: 16px; }
.feature-panel__h {
  font-size: clamp(30px, 3.6vw, 50px);
  line-height: 0.98;
  margin: 16px 0 18px;
  text-wrap: balance;
}
.feature-panel__h .pop { color: var(--accent); }
.feature-panel__problem {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.5;
  padding-left: 14px;
  border-left: 3px solid var(--accent);
  margin-bottom: 16px;
}
.feature-panel__solution {
  font-size: 15px;
  color: var(--muted-2);
  line-height: 1.6;
  margin-bottom: 22px;
}
.feature-panel__points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0 0 28px;
}
.feature-panel__points li {
  display: flex;
  gap: 10px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted-2);
}
.feature-panel__points li strong { color: var(--ink); font-weight: 700; }
.feature-panel__point-check {
  flex: none;
  width: 22px; height: 22px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--accent-ink);
  display: grid; place-items: center;
  margin-top: 1px;
}
.feature-panel__point-check svg { width: 12px; height: 12px; }

.feature-panel__visual {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 22px;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---- feature visuals (shared .fv) ---- */
.fv { width: 100%; display: flex; flex-direction: column; gap: 12px; }
.fv strong { color: var(--ink); }

/* funnel */
.fv__ask { text-align: center; font-size: 13px; color: var(--muted-2); font-weight: 600; }
/* ask-everyone (compliant) */
.fv__ask-actions { display: flex; flex-direction: column; gap: 10px; margin-top: 4px; }
.fv__ask-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 16px;
  border-radius: 12px;
  font-size: 13.5px; font-weight: 700;
  border: 1px solid var(--line-2);
  color: var(--ink);
  background: var(--surface);
}
.fv__ask-btn svg { width: 15px; height: 15px; }
.fv__ask-btn--primary {
  background: var(--accent);
  color: var(--accent-ink);
  border-color: var(--accent);
}
.fv__ask-note {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  margin-top: 2px;
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.04em;
  color: var(--muted);
  text-align: center;
}
.fv__ask-note svg { width: 12px; height: 12px; color: var(--accent); flex: none; }
.fv__ask-stars { display: flex; justify-content: center; gap: 8px; margin: 2px 0; }
.fv__ask-stars svg { width: 28px; height: 28px; color: #FFD400; }
.fv__stars { display: flex; justify-content: center; gap: 6px; }
.fv__stars span { color: rgba(127,127,127,0.3); }
.fv__stars span svg { width: 26px; height: 26px; }
.fv__stars span.on { color: #FFD400; }
.fv__split { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 4px; }
.fv__route { border-radius: 12px; padding: 14px; display: flex; flex-direction: column; gap: 4px; }
.fv__route-tag { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em; font-weight: 700; }
.fv__route-dest { font-size: 13px; font-weight: 700; color: var(--ink); }
.fv__route--good { background: color-mix(in srgb, var(--accent) 16%, transparent); border: 1px solid var(--accent); }
.fv__route--good .fv__route-tag { color: var(--accent); }
.fv__route--bad { background: rgba(127,127,127,0.08); border: 1px dashed rgba(127,127,127,0.4); }
.fv__route--bad .fv__route-tag { color: var(--muted); }

/* winback sequence */
.fv__seq { gap: 10px; }
.fv__step { display: flex; align-items: center; gap: 10px; }
.fv__step-day { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.08em; color: var(--muted); width: 42px; font-weight: 700; }
.fv__step-dot { width: 9px; height: 9px; border-radius: 999px; background: var(--accent); flex: none; }
.fv__step-label { font-size: 13px; color: var(--ink); font-weight: 500; flex: 1; }
.fv__step-status { color: var(--accent); display: inline-flex; }
.fv__step-status svg { width: 14px; height: 14px; }
.fv__win { margin-top: 4px; display: inline-flex; align-items: center; gap: 8px; background: color-mix(in srgb, var(--accent) 14%, transparent); border-radius: 10px; padding: 10px 12px; font-size: 12.5px; font-weight: 700; color: var(--ink); }
.fv__win svg { width: 14px; height: 14px; color: #FFD400; }

/* widget */
.fv__widget-head { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--muted-2); }
.fv__widget-head .reply__stars svg { width: 14px; height: 14px; }
.fv__widget-q { font-size: 13px; color: var(--ink); line-height: 1.45; padding-left: 12px; border-left: 3px solid var(--accent); }
.fv__code { display: block; margin-top: 4px; font-family: var(--font-mono); font-size: 11px; color: var(--muted); background: var(--bg-3); border: 1px solid var(--line); border-radius: 8px; padding: 8px 10px; overflow-x: auto; }

/* inbox */
.fv__inbox { gap: 8px; }
.fv__msg { display: flex; align-items: center; gap: 10px; padding: 10px; border-radius: 10px; border: 1px solid var(--line); background: var(--surface); }
.fv__msg.fresh { background: color-mix(in srgb, var(--accent) 12%, transparent); border-color: var(--accent); }
.fv__msg-av { width: 26px; height: 26px; border-radius: 999px; background: var(--pop); color: var(--pop-ink); display: grid; place-items: center; font-weight: 800; font-size: 12px; flex: none; }
.fv__msg-body { flex: 1; min-width: 0; }
.fv__msg-top { display: flex; align-items: center; gap: 6px; font-size: 12.5px; }
.fv__msg-top .reply__stars svg { width: 10px; height: 10px; }
.fv__msg-txt { font-size: 11.5px; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.fv__msg-time { font-size: 10.5px; color: var(--muted); flex: none; }

/* report */
.fv__report { gap: 10px; }
.fv__report-head { display: flex; justify-content: space-between; align-items: center; font-size: 14px; }
.fv__report-head span { font-family: var(--font-mono); font-size: 10px; color: var(--muted); }
.fv__report-big { font-family: var(--font-display); font-size: 36px; line-height: 1; color: var(--ink); }
.fv__report-big span { font-family: var(--font-body); font-size: 13px; font-weight: 600; color: var(--accent); }
.fv__bars { display: flex; align-items: flex-end; gap: 5px; height: 56px; margin: 4px 0; }
.fv__bars span { flex: 1; background: var(--accent); border-radius: 3px; min-height: 6px; }
.fv__report-row { display: flex; justify-content: space-between; font-size: 12.5px; color: var(--muted-2); padding: 6px 0; border-top: 1px solid var(--line); }

/* integrations */
.fv__int { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.fv__int-card { display: flex; align-items: center; gap: 8px; background: var(--surface); border: 1px solid var(--line); border-radius: 10px; padding: 10px; font-size: 12px; font-weight: 600; color: var(--ink); }
.fv__int-sw { width: 16px; height: 16px; border-radius: 5px; flex: none; }
.fv__int-more { grid-column: 1 / -1; text-align: center; font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.06em; color: var(--muted); padding-top: 2px; }

/* compliance */
.fv__comp { gap: 8px; }
.fv__comp-badge { display: flex; align-items: center; gap: 10px; background: color-mix(in srgb, var(--accent) 14%, transparent); border: 1px solid var(--accent); border-radius: 10px; padding: 12px; }
.fv__comp-badge svg { width: 22px; height: 22px; color: var(--accent); flex: none; }
.fv__comp-badge strong { display: block; font-size: 13px; color: var(--ink); }
.fv__comp-badge span { font-size: 11.5px; color: var(--muted); }
.fv__comp-row { display: flex; justify-content: space-between; align-items: center; font-size: 12.5px; color: var(--ink); padding: 7px 0; border-bottom: 1px dashed var(--line); }
.fv__comp-row svg { width: 12px; height: 12px; color: var(--accent); display: inline; vertical-align: -1px; margin-right: 4px; }
.fv__comp-who { color: var(--muted); }

/* ============ ROI ============ */
.section { padding: 96px 0; }
.section--bg2 { background: var(--bg-2); }

.section-head { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.section-head .eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 16px;
  display: inline-block;
}
.section-head h2 {
  font-size: clamp(40px, 5vw, 76px);
  line-height: 0.95;
  text-wrap: balance;
}
.section-head h2 .pop { color: var(--accent); }
.section-head p {
  margin-top: 18px;
  font-size: 16px;
  color: var(--muted-2);
  max-width: 52ch;
  margin-left: auto; margin-right: auto;
}

.roi {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}
@media (max-width: 880px) { .roi { grid-template-columns: 1fr; } }

.roi__inputs { padding: 40px; border-right: 1px solid var(--line); }
@media (max-width: 880px) {
  .roi__inputs { border-right: 0; border-bottom: 1px solid var(--line); padding: 32px; }
}
.roi__inputs h3 {
  font-size: 32px;
  line-height: 1;
  margin-bottom: 24px;
}

.roi-field { margin-bottom: 24px; }
.roi-slider { display: flex; align-items: center; gap: 10px; }
.roi-slider input[type="range"] { flex: 1; }
.roi-step {
  flex: none;
  width: 32px; height: 32px;
  border-radius: 9px;
  background: var(--bg-3);
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: 20px;
  line-height: 1;
  display: grid; place-items: center;
  transition: background .12s, border-color .12s, color .12s, transform .08s;
  user-select: none;
}
.roi-step:hover { background: var(--accent); color: var(--accent-ink); border-color: var(--accent); }
.roi-step:active { transform: scale(0.92); }
.roi-field__unit {
  display: inline-flex;
  margin-top: 10px;
  padding: 3px;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: 999px;
}
.roi-field__unit button {
  height: 26px; padding: 0 12px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--muted-2);
}
.roi-field__unit button.is-active {
  background: var(--accent);
  color: var(--accent-ink);
}
.roi-field__top {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 8px;
}
.roi-field__label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--muted-2);
  font-weight: 700;
}
.roi-field__value {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--accent);
  line-height: 1;
}
.roi-field input[type="range"] {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  height: 4px;
  background: var(--line);
  border-radius: 999px;
  outline: none;
}
.roi-field input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px; height: 22px;
  border-radius: 999px;
  background: var(--accent);
  border: 3px solid var(--bg);
  cursor: pointer;
  box-shadow: 0 0 18px var(--accent);
}
.roi-field input[type="range"]::-moz-range-thumb {
  width: 22px; height: 22px;
  border-radius: 999px;
  background: var(--accent);
  border: 3px solid var(--bg);
  cursor: pointer;
}

.roi__output {
  background: var(--bg);
  padding: 40px;
  display: flex; flex-direction: column; justify-content: space-between;
  gap: 32px;
}
.roi__big-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-2);
  font-weight: 700;
}
.roi__big {
  font-family: var(--font-display);
  font-size: clamp(56px, 7vw, 100px);
  line-height: 0.9;
  color: var(--accent);
  letter-spacing: -0.01em;
  margin-top: 8px;
}
.roi__big-per {
  font-size: 0.3em;
  color: var(--muted-2);
  letter-spacing: 0.04em;
  margin-left: 4px;
}
.roi__output-toggle {
  display: inline-flex;
  padding: 3px;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: 999px;
  margin-bottom: 18px;
}
.roi__output-toggle button {
  height: 30px; padding: 0 14px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--muted-2);
}
.roi__output-toggle button.is-active {
  background: var(--accent);
  color: var(--accent-ink);
}
.roi__big-sub {
  margin-top: 14px;
  color: var(--muted-2);
  font-size: 14px;
  max-width: 30ch;
  line-height: 1.5;
}
.roi__metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.roi__metric { border: 1px solid var(--line); border-radius: var(--r-md); padding: 16px; }
.roi__metric-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}
.roi__metric-num {
  font-family: var(--font-display);
  font-size: 30px;
  margin-top: 4px;
  line-height: 1;
}
.roi__metric-sub { font-size: 11px; color: var(--muted); margin-top: 4px; }

/* ============ PRICING ============ */
.pricing-toggle {
  display: inline-flex;
  padding: 4px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  margin-bottom: 40px;
}
.pricing-toggle button {
  height: 36px; padding: 0 18px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.pricing-toggle button.is-active {
  background: var(--accent);
  color: var(--accent-ink);
}

.tiers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  max-width: 920px;
  margin: 0 auto;
}
@media (max-width: 720px) { .tiers { grid-template-columns: 1fr; } }

.tier {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 36px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.tier--featured {
  background: var(--accent);
  color: var(--accent-ink);
  border-color: var(--accent);
}
.tier--featured .tier__name,
.tier--featured .tier__price,
.tier--featured .tier__features li { color: var(--accent-ink); }
.tier--featured .tier__features li svg { color: var(--accent-ink); }
.tier--featured .tier__meta { color: color-mix(in srgb, var(--accent-ink) 78%, transparent); }
.tier--featured .btn--primary {
  background: var(--accent-ink);
  color: var(--accent);
  box-shadow: none;
}
.tier__badge {
  position: absolute; top: -16px; left: 50%; transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: 7px;
  background: #0C0E13;
  color: #FFFFFF;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 9px 18px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 12px 28px -8px rgba(0,0,0,0.65), 0 0 0 1.5px #FFD400, 0 0 22px -6px rgba(255,212,0,0.55);
}
.tier__badge::before {
  content: "★";
  color: #FFD400;
  font-size: 13px;
  line-height: 1;
  filter: drop-shadow(0 0 5px rgba(255,212,0,0.75));
}
.tier--featured .tier__badge { background: #0C0E13; color: #FFFFFF; }

.tier__name {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.tier__price-row { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.tier__anchor {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 0.9;
  color: var(--muted);
  text-decoration: line-through;
  text-decoration-thickness: 6px;
  text-decoration-color: #FF3B3B;
  opacity: 1;
}
.tier--featured .tier__anchor { color: color-mix(in srgb, var(--accent-ink) 55%, transparent); }
.tier:not(.tier--featured) .tier__anchor { color: rgba(255,255,255,0.72); }

/* In LIGHT theme, paint the non-featured (Starter) tile BLACK so it
   contrasts hard against the light page — instead of a white-on-white card. */
.theme-light .tier:not(.tier--featured) {
  background: #0C0E13;
  border-color: rgba(255,255,255,0.10);
  color: #F4F2EE;
  box-shadow: 0 24px 50px -24px rgba(7,8,11,0.45);
}
.theme-light .tier:not(.tier--featured) .tier__name,
.theme-light .tier:not(.tier--featured) .tier__price { color: #FFFFFF; }
.theme-light .tier:not(.tier--featured) .tier__price-unit,
.theme-light .tier:not(.tier--featured) .tier__billed,
.theme-light .tier:not(.tier--featured) .tier__meta { color: rgba(244,242,238,0.78); }
.theme-light .tier:not(.tier--featured) .tier__features { border-color: rgba(255,255,255,0.12); }
.theme-light .tier:not(.tier--featured) .tier__features li { color: rgba(244,242,238,0.92); }
.theme-light .tier:not(.tier--featured) .tier__features li svg { color: var(--accent); }
.theme-light .tier:not(.tier--featured) .btn--ghost {
  color: #FFFFFF;
  box-shadow: inset 0 0 0 1.5px rgba(255,255,255,0.45);
}
.theme-light .tier:not(.tier--featured) .btn--ghost:hover {
  background: rgba(255,255,255,0.08);
  box-shadow: inset 0 0 0 1.5px #FFFFFF;
}
.tier__save {
  align-self: center;
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--accent-ink);
}
.tier--featured .tier__save { background: var(--accent-ink); color: var(--accent); }
.tier__billed {
  margin-top: 8px;
  font-size: 12.5px;
  color: var(--muted-2);
  font-weight: 500;
}
.tier--featured .tier__billed { color: color-mix(in srgb, var(--accent-ink) 85%, transparent); }
.tier__price {
  font-family: var(--font-display);
  font-size: clamp(56px, 6vw, 80px);
  line-height: 0.9;
}
.tier__price-unit {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.tier--featured .tier__price-unit { color: color-mix(in srgb, var(--accent-ink) 80%, transparent); }
.tier__meta { font-size: 13.5px; color: var(--muted-2); line-height: 1.5; }
.tier__features { list-style: none; display: flex; flex-direction: column; gap: 8px; padding-top: 8px; border-top: 1px solid var(--line); }
.tier--featured .tier__features { border-color: rgba(7,8,11,0.18); }
.tier__features li {
  display: flex; gap: 8px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-2);
  line-height: 1.4;
}
.tier__features li svg { flex: none; color: var(--accent); margin-top: 4px; }

/* ============ FAQ ============ */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item__q {
  width: 100%; text-align: left;
  padding: 20px 0;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 28px);
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--ink);
}
.faq-item__icon {
  width: 32px; height: 32px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--line-2);
  display: grid; place-items: center;
  flex: none;
  transition: transform .2s, background .2s, color .2s;
  color: var(--ink);
}
.faq-item.is-open .faq-item__icon {
  background: var(--accent);
  color: var(--accent-ink);
  border-color: var(--accent);
  transform: rotate(45deg);
}
.faq-item__a {
  display: none;
  padding: 0 0 24px;
  font-size: 15px;
  color: var(--muted-2);
  line-height: 1.55;
  max-width: 70ch;
}
.faq-item.is-open .faq-item__a { display: block; }

/* ============ CTA ============ */
.cta {
  text-align: center;
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(40% 60% at 50% 50%, var(--hl), transparent 70%);
  pointer-events: none;
}
.cta__inner { position: relative; }
.cta h2 {
  font-size: clamp(56px, 8vw, 128px);
  line-height: 0.9;
  letter-spacing: -0.005em;
  max-width: 16ch;
  margin: 0 auto;
  text-wrap: balance;
}
.cta h2 .pop { color: var(--accent); }
.cta p {
  margin: 24px auto 0;
  font-size: 16px;
  color: var(--muted-2);
  max-width: 48ch;
}
.cta__ctas { margin-top: 32px; display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

/* ============ FOOTER ============ */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  padding: 56px 0 32px;
}
.footer__inner {
  display: flex; justify-content: space-between; gap: 32px; flex-wrap: wrap;
  align-items: end;
}
.footer__brand p {
  margin-top: 16px;
  font-size: 13px;
  color: var(--muted);
  max-width: 32ch;
}
.footer__links { display: flex; gap: 32px; flex-wrap: wrap; }
.footer__links a {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.footer__links a:hover { color: var(--accent); }
.footer__bottom {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ===================================================================
   ENHANCEMENTS — engine-turned (guilloché) texture, mobile nav,
   social proof, sticky mobile CTA, responsive polish
   =================================================================== */

/* ---- Engine-turned texture on the dark canvas (Amex-style) ---- */
#root { position: relative; z-index: 1; }
/* ---- Branded engine-turned pattern: diagonal RHODY REVIEWS micro-text + crown crest ---- */
html{
  background-color: #07080B;
}
/* full-height layer behind all content — solid black (crowns removed) */
#bgfx{
  display: none;
}
/* let the tonal dark bands reveal the pattern instead of hiding it */
.section--bg2{ background: color-mix(in oklab, var(--bg-2) 46%, transparent); }
.footer{ background: color-mix(in oklab, var(--bg-2) 56%, transparent); }

/* ---- Hero: no photo, soft accent glow ---- */
.hero { padding-top: 80px; }
.hero__glow {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(58% 46% at 50% -4%, color-mix(in oklab, var(--accent) 20%, transparent), transparent 66%);
}

/* ---- Social-proof bar under the hero CTAs ---- */
.hero__proof {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: -12px;
}
.hero__proof-avatars { display: inline-flex; }
.hero__proof-avatars img {
  width: 32px; height: 32px;
  border-radius: 999px;
  object-fit: cover;
  border: 2px solid var(--bg);
  margin-left: -10px;
  box-shadow: 0 0 0 1px var(--line-2);
}
.hero__proof-avatars img:first-child { margin-left: 0; }
.hero__proof .reply__stars { display: inline-flex; gap: 2px; color: #FFC633; }
.hero__proof .reply__stars svg { width: 15px; height: 15px; }
.hero__proof-text { font-size: 13px; color: var(--muted-2); letter-spacing: 0.01em; }
.hero__proof-text strong { color: var(--ink); font-weight: 700; }

/* ---- Mobile nav: hamburger + drawer ---- */
.nav__toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: 12px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1px solid var(--line-2);
  background: var(--surface);
}
.nav__toggle span {
  display: block;
  width: 20px; height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform .22s ease, opacity .18s ease;
}
body.nav-open .nav__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .nav__toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__drawer {
  display: none;
  flex-direction: column;
  padding: 4px var(--gutter) 22px;
  background: color-mix(in oklab, var(--bg) 92%, transparent);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav__drawer a {
  padding: 15px 4px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--ink-2);
  border-bottom: 1px solid var(--line);
}
.nav__drawer a:active { color: var(--accent); }
.nav__drawer .nav__drawer-cta {
  justify-content: center;
  margin-top: 16px;
  color: var(--accent-ink);
  border-bottom: 0;
}

@media (max-width: 760px) {
  .nav__toggle { display: flex; }
  .nav__signin, .nav__cta { display: none; }
  .nav__drawer.is-open { display: flex; }
  .nav__left { gap: 0; }
}

/* ---- Sticky mobile CTA bar ---- */
.sticky-cta { display: none; }
@media (max-width: 760px) {
  .sticky-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    position: fixed;
    left: 12px; right: 12px; bottom: 12px;
    z-index: 45;
    padding: 9px 9px 9px 18px;
    background: color-mix(in oklab, var(--bg-2) 90%, transparent);
    backdrop-filter: saturate(160%) blur(16px);
    border: 1px solid var(--line-2);
    border-radius: 999px;
    box-shadow: 0 16px 44px -14px rgba(0,0,0,0.85);
  }
  .sticky-cta__text { display: flex; flex-direction: column; line-height: 1.12; }
  .sticky-cta__text strong {
    font-family: var(--font-display);
    text-transform: uppercase;
    font-size: 17px;
    letter-spacing: 0.02em;
  }
  .sticky-cta__text span {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--muted);
  }
  .sticky-cta .btn { height: 46px; padding: 0 18px; }
  /* keep footer clear of the floating bar */
  .footer { padding-bottom: 104px; }
}

/* ---- Small-screen polish ---- */
@media (max-width: 880px) {
  .roi__inputs { border-right: 0; border-bottom: 1px solid var(--line); }
}
@media (max-width: 560px) {
  .hero__proof-text { font-size: 12px; }
  .hero__proof { gap: 10px; }
}

/* ============ BOOK-A-DEMO ============ */
.hero__demolink {
  margin-top: -14px;
  font-size: 13.5px;
  color: var(--muted);
  background: none;
  cursor: pointer;
}
.hero__demolink span { color: var(--accent); font-weight: 700; }
.hero__demolink:hover span { text-decoration: underline; }
.nav__demo { color: var(--ink); }
@media (max-width: 760px) { .nav__demo { display: none; } }

.demo-bg {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(4,5,8,0.66);
  backdrop-filter: blur(4px);
  display: flex; align-items: flex-start; justify-content: center;
  padding: 5vh 20px; overflow: auto;
}
.demo {
  width: 100%; max-width: 860px;
  background: var(--surface);
  border: 1px solid var(--line-2);
  border-radius: var(--r-xl);
  position: relative;
  overflow: hidden;
  box-shadow: 0 50px 100px -30px #000;
}
.demo__x {
  position: absolute; top: 16px; right: 16px; z-index: 2;
  width: 38px; height: 38px; border-radius: 999px;
  display: grid; place-items: center;
  background: var(--surface-2); border: 1px solid var(--line);
  color: var(--muted-2);
}
.demo__x:hover { color: var(--ink); }
.demo__grid { display: grid; grid-template-columns: 1fr 1.05fr; }
@media (max-width: 720px) { .demo__grid { grid-template-columns: 1fr; } }

.demo__pitch { padding: 38px 34px; border-right: 1px solid var(--line); }
@media (max-width: 720px) { .demo__pitch { border-right: 0; border-bottom: 1px solid var(--line); } }
.demo__eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--muted-2);
}
.demo__pitch h3 { font-size: clamp(28px, 3vw, 40px); line-height: .98; margin: 16px 0 12px; }
.demo__pitch h3 .pop { color: var(--accent); }
.demo__pitch > p { color: var(--muted-2); font-size: 14px; line-height: 1.55; }
.demo__list { list-style: none; margin: 20px 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.demo__list li { display: flex; align-items: center; gap: 10px; font-size: 13.5px; color: var(--ink-2); }
.demo__list li svg { color: var(--accent); flex: none; }
.demo__meta {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .04em;
  text-transform: uppercase; color: var(--muted);
  border-top: 1px solid var(--line); padding-top: 16px; margin-top: 4px;
}
.demo__meta svg { color: var(--accent); }

.demo__book { padding: 38px 34px; background: var(--bg-2); }
.demo__lab { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; }
.demo__tz { color: var(--muted); opacity: .7; }
.demo__days { display: flex; gap: 8px; margin-bottom: 20px; flex-wrap: wrap; }
.demo__day {
  flex: 1; min-width: 60px; padding: 9px 6px; border-radius: var(--r-md);
  background: var(--surface); border: 1px solid var(--line-2);
  display: flex; flex-direction: column; gap: 2px; align-items: center; transition: .14s;
}
.demo__day span { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: .04em; }
.demo__day b { font-size: 13px; }
.demo__day.is-active { background: var(--accent); border-color: var(--accent); }
.demo__day.is-active span, .demo__day.is-active b { color: #fff; }
.demo__slots { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-bottom: 22px; }
.demo__slot { height: 38px; border-radius: var(--r-sm); background: var(--surface); border: 1px solid var(--line-2); font-size: 12.5px; font-weight: 600; color: var(--ink-2); transition: .14s; }
.demo__slot:hover { border-color: var(--accent); }
.demo__slot.is-active { background: var(--accent); border-color: var(--accent); color: #fff; }
.demo__fields { display: flex; flex-direction: column; gap: 10px; margin-bottom: 18px; }
.demo__inp { height: 44px; background: var(--surface); border: 1px solid var(--line-2); border-radius: var(--r-md); padding: 0 14px; color: var(--ink); font-size: 14px; font-family: var(--font-body); outline: none; }
.demo__inp:focus { border-color: var(--accent); }
.demo__confirm { width: 100%; justify-content: center; }
.demo__confirm:disabled { opacity: .5; cursor: not-allowed; }
.demo__error { color: var(--accent); font-size: 13px; line-height: 1.5; margin: 4px 0 12px; }

.demo__done { padding: 56px 40px; text-align: center; }
.demo__check { width: 64px; height: 64px; border-radius: 999px; background: rgba(54,194,139,.16); color: var(--green); display: grid; place-items: center; margin: 0 auto 22px; }
.demo__check svg { width: 30px; height: 30px; }
.demo__done h3 { font-size: 30px; margin-bottom: 12px; }
.demo__done p { color: var(--muted-2); font-size: 14.5px; line-height: 1.6; max-width: 42ch; margin: 0 auto 26px; }
.demo__done p b { color: var(--ink); }
