/* ==========================================================================
   HEATCORD — v6
   Alphorm palette (white + #3767DA blue + #FFDD00 yellow) + Inter
   Vocabulary verified in Ahrefs. Live → automated bridge as the hero story.
   ========================================================================== */

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
img, svg { max-width: 100%; display: block; }
button { background: none; border: none; font: inherit; color: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }

:root {
  /* canvas — pure white like alphorm */
  --canvas:        #FFFFFF;
  --canvas-2:      #F7F9FC;
  --canvas-3:      #EFF3FA;
  --canvas-4:      #E2E8F2;

  /* ink — near-black */
  --ink:           #070A14;
  --ink-2:         #4B5468;
  --ink-3:         #8A92A6;

  /* alphorm BLUE (primary) */
  --brand:         #3767DA;
  --brand-2:       #4A78E5;
  --brand-deep:    #2853BD;
  --brand-soft:    #E8EEFB;
  --brand-tint:    rgba(55, 103, 218, 0.06);
  --brand-shadow:  rgba(55, 103, 218, 0.28);

  /* alphorm YELLOW (highlight on key words) */
  --accent:        #FFDD00;
  --accent-2:      #FFE733;
  --accent-deep:   #E5C600;
  --accent-soft:   #FFF7CC;

  /* status */
  --live:          #FF3B30;
  --ok:            #1FBE69;

  /* hairlines */
  --hair:          rgba(7, 10, 20, 0.06);
  --hair-strong:   rgba(7, 10, 20, 0.12);
  --hair-stronger: rgba(7, 10, 20, 0.20);

  /* shadow */
  --shadow-1:      0 1px 0 rgba(7,10,20,0.04), 0 6px 18px -10px rgba(7,10,20,0.08);
  --shadow-2:      0 1px 0 rgba(7,10,20,0.04), 0 20px 48px -22px rgba(7,10,20,0.14);
  --shadow-3:      0 1px 0 rgba(7,10,20,0.04), 0 36px 80px -28px rgba(7,10,20,0.18);

  /* type */
  --sans:          "Inter", -apple-system, BlinkMacSystemFont, "SF Pro Display", system-ui, sans-serif;
  --mono:          "Geist Mono", "JetBrains Mono", ui-monospace, monospace;

  --col:           min(1200px, 92vw);
  --col-narrow:    min(720px, 92vw);

  /* easing — restrained, not flashy */
  --ease-out:      cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out:   cubic-bezier(0.77, 0, 0.175, 1);
}

html, body {
  background: var(--canvas);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px; line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection { background: var(--brand); color: #fff; }
:focus-visible { outline: 2px solid var(--brand); outline-offset: 3px; border-radius: 6px; }

.skip-link {
  position: absolute; top: -100px; left: 16px;
  background: var(--ink); color: #fff;
  padding: 10px 16px; border-radius: 8px; z-index: 100;
  font-weight: 600; font-size: 14px;
}
.skip-link:focus { top: 16px; }

/* preview banner */
.preview-banner {
  background: var(--ink); color: #fff;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase; padding: 9px 24px;
  display: flex; justify-content: space-between; align-items: center;
}
.preview-banner__label::before { content: "●"; color: var(--accent); margin-right: 8px; }
.preview-banner a { color: rgba(255,255,255,0.7); text-decoration: underline; text-underline-offset: 4px; }
.preview-banner a:hover { color: #fff; }

/* highlighter (the alphorm yellow trick) */
.mark {
  background: var(--accent);
  color: var(--ink);
  padding: 0 6px 2px;
  margin: 0 -2px;
  border-radius: 4px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

/* ==========================================================================
   1 · NAV — clean white bar (alphorm pattern)
   ========================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 30;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--hair);
}
.nav {
  width: var(--col); margin: 0 auto;
  display: grid; grid-template-columns: auto 1fr auto;
  align-items: center; gap: 32px;
  padding: 14px 0;
}
.nav__brand {
  display: inline-flex; align-items: center; gap: 9px;
  font-weight: 700; font-size: 16.5px; letter-spacing: -0.014em;
  color: var(--ink);
}
.nav__brand-mark {
  width: 26px; height: 26px; border-radius: 7px;
  background: var(--brand); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
}
.nav__brand-mark svg { width: 13px; height: 13px; }

.nav__links { display: flex; gap: 28px; list-style: none; justify-content: center; }
.nav__links a {
  font-size: 14.5px; font-weight: 500; color: var(--ink-2);
  transition: color 200ms var(--ease-out); padding: 6px 0;
}
.nav__links a:hover { color: var(--brand); }

.nav__cta { display: inline-flex; align-items: center; gap: 16px; }
.nav__cta-link { font-size: 14.5px; font-weight: 500; color: var(--ink-2); }
.nav__cta-link:hover { color: var(--brand); }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 20px;
  border-radius: 10px;
  font-family: var(--sans); font-size: 14.5px; font-weight: 600;
  transition:
    transform 140ms var(--ease-out),
    background-color 200ms var(--ease-out),
    box-shadow 200ms var(--ease-out),
    border-color 200ms var(--ease-out),
    color 200ms var(--ease-out);
  cursor: pointer; white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
}
.btn:active { transform: scale(0.97); }
.btn--primary {
  background: var(--brand); color: #fff;
  box-shadow: 0 1px 0 rgba(255,255,255,0.2) inset, 0 4px 14px -4px var(--brand-shadow);
}
.btn--primary:hover { background: var(--brand-2); box-shadow: 0 1px 0 rgba(255,255,255,0.2) inset, 0 8px 22px -6px var(--brand-shadow); transform: translateY(-1px); }
.btn--accent {
  background: var(--accent); color: var(--ink);
  box-shadow: 0 1px 0 rgba(255,255,255,0.40) inset, 0 4px 12px -2px rgba(255,221,0,0.40);
}
.btn--accent:hover { background: var(--accent-2); transform: translateY(-1px); }
.btn--ghost {
  background: var(--canvas); color: var(--ink);
  border: 1px solid var(--hair-strong);
}
.btn--ghost:hover { background: var(--canvas-2); border-color: var(--hair-stronger); }
.btn--lg { padding: 14px 24px; font-size: 15px; }
.btn--sm { padding: 8px 14px; font-size: 13.5px; }
.btn--block { width: 100%; justify-content: center; }

@media (max-width: 820px) {
  .nav { grid-template-columns: auto auto; gap: 12px; }
  .nav__links, .nav__cta-link { display: none; }
}

/* ==========================================================================
   Mobile hamburger menu (injected by menu.js, RTL-aware)
   ========================================================================== */
.nav__burger {
  display: none;
  width: 40px; height: 40px;
  border-radius: 100px;
  background: var(--canvas-2);
  border: 1px solid var(--hair);
  cursor: pointer;
  position: relative;
  padding: 0;
  transition: background 200ms var(--ease-out), border-color 200ms var(--ease-out), transform 160ms var(--ease-out);
  flex-shrink: 0;
}
.nav__burger:hover { background: var(--canvas); border-color: var(--hair-strong); }
.nav__burger:active { transform: scale(0.96); }
.nav__burger-line {
  position: absolute;
  left: 50%; top: 50%;
  width: 16px; height: 1.5px;
  background: var(--ink);
  border-radius: 2px;
  transform: translate(-50%, -50%);
  transition: transform 260ms cubic-bezier(0.32, 0.72, 0, 1);
}
.nav__burger-line--1 { transform: translate(-50%, calc(-50% - 4px)); }
.nav__burger-line--2 { transform: translate(-50%, calc(-50% + 4px)); }
body.menu-open .nav__burger-line--1 { transform: translate(-50%, -50%) rotate(45deg); }
body.menu-open .nav__burger-line--2 { transform: translate(-50%, -50%) rotate(-45deg); }

.nav__overlay {
  position: fixed;
  top: 0; right: 0; bottom: 0; left: 0;
  z-index: 25;
  background: rgba(7,10,20,0.92);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  visibility: hidden;
  opacity: 0;
  transition: opacity 280ms var(--ease-out), visibility 0s linear 280ms;
}
body.menu-open .nav__overlay {
  visibility: visible;
  opacity: 1;
  transition: opacity 280ms var(--ease-out), visibility 0s linear 0s;
}
.nav__overlay-inner {
  width: 100%; height: 100%;
  padding-top: 96px;
  padding-bottom: 32px;
  display: flex; align-items: center; justify-content: center;
  box-sizing: border-box;
  overflow-y: auto;
}
.nav__overlay-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column;
  gap: 28px;
  text-align: center;
  direction: inherit;
}
.nav__overlay-list li {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 400ms cubic-bezier(0.32,0.72,0,1), transform 400ms cubic-bezier(0.32,0.72,0,1);
}
body.menu-open .nav__overlay-list li { opacity: 1; transform: translateY(0); }
body.menu-open .nav__overlay-list li:nth-child(1) { transition-delay: 100ms; }
body.menu-open .nav__overlay-list li:nth-child(2) { transition-delay: 150ms; }
body.menu-open .nav__overlay-list li:nth-child(3) { transition-delay: 200ms; }
body.menu-open .nav__overlay-list li:nth-child(4) { transition-delay: 250ms; }
body.menu-open .nav__overlay-list li:nth-child(5) { transition-delay: 300ms; }
body.menu-open .nav__overlay-list li:nth-child(6) { transition-delay: 350ms; }
body.menu-open .nav__overlay-list li:nth-child(7) { transition-delay: 400ms; }

.nav__overlay-list a {
  font-size: 26px; font-weight: 600;
  color: #fff;
  text-decoration: none;
  letter-spacing: -0.018em;
  display: inline-block;
  padding: 6px 14px;
  transition: opacity 160ms var(--ease-out);
}
.nav__overlay-list a:hover { opacity: 0.72; }
.nav__overlay-list-cta { margin-top: 14px; }
.nav__overlay-list-cta a.btn,
.nav__overlay-list-cta a.btn--primary,
.nav__overlay-list-cta a[class*="btn--primary"] {
  background: var(--accent);
  color: var(--ink);
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0;
  border: 1px solid rgba(7,10,20,0.18);
  box-shadow: 0 8px 24px -10px rgba(255,221,0,0.55);
}

/* Arabic font in overlay */
html[dir="rtl"] .nav__overlay-list a {
  font-family: "IBM Plex Sans Arabic", "Inter", system-ui, sans-serif;
  font-size: 24px;
  letter-spacing: 0;
  line-height: 1.5;
}

body.menu-open { overflow: hidden; }

@media (max-width: 820px) {
  .nav__burger { display: inline-flex; align-items: center; justify-content: center; }
}
@media (min-width: 821px) {
  .nav__overlay { display: none !important; }
}

/* ==========================================================================
   2 · HERO — split: copy LEFT, real product mockup RIGHT
   ========================================================================== */
.hero { padding: 64px 0 56px; border-bottom: 1px solid var(--hair); }
.hero__inner {
  width: var(--col); margin: 0 auto;
  display: grid; grid-template-columns: 1.05fr 1.15fr;
  gap: 56px; align-items: center;
}
.hero__copy { padding-right: 8px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 13px 6px 6px;
  border-radius: 100px;
  background: var(--brand-soft);
  border: 1px solid rgba(55,103,218,0.18);
  color: var(--brand-deep);
  font-size: 12.5px; font-weight: 600;
  margin-bottom: 32px;
}
.eyebrow__chip {
  padding: 3px 9px; border-radius: 100px;
  background: var(--brand); color: #fff;
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.06em;
}

.hero__title {
  font-weight: 800;
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.10;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 28px;
  max-width: 18ch;
  text-wrap: balance;
}
.hero__sub {
  font-size: 17px; line-height: 1.6; color: var(--ink-2);
  margin-bottom: 36px; max-width: 50ch;
}
.hero__sub strong { color: var(--ink); font-weight: 600; }

.hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 30px; }

.hero__trust {
  display: flex; flex-wrap: wrap; gap: 4px 22px; align-items: center;
  font-size: 13.5px; color: var(--ink-2);
}
.hero__trust-check { display: inline-flex; align-items: center; gap: 7px; }
.hero__trust-check svg { width: 14px; height: 14px; color: var(--brand); }
.hero__trust strong { color: var(--ink); font-weight: 600; }

/* ======================================================================
   PRODUCT MOCKUP — LIVE → BUTTON (dominant) → EVERGREEN
   The button is the visual hero. The two cards are compact labels.
   Diagonal layout via offset margins creates depth + implied motion.
   ====================================================================== */
.hero__visual {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;                 /* breathing room between live → button → evergreen */
  /* No outer wrapper background/border/shadow. Elements float. */
}
/* Subtle ambient backdrop using a radial gradient instead of linear */
.hero__visual::before {
  content: "";
  position: absolute; inset: -40px -60px;
  z-index: -1;
  background:
    radial-gradient(closest-side at 30% 30%, rgba(55,103,218,0.10), transparent 70%),
    radial-gradient(closest-side at 80% 80%, rgba(255,221,0,0.08), transparent 70%);
  pointer-events: none;
}

/* the two compact label cards — full width, no overlap, asymmetric via justify-self */
.screen {
  position: relative;
  background: var(--canvas);
  border-radius: 14px;
  border: 1px solid var(--hair);
  overflow: hidden;
  width: 100%;
  opacity: 0;
  transform: translateY(12px);
  animation: heroCardIn 600ms cubic-bezier(0.23, 1, 0.32, 1) forwards;
}
.screen--live   {
  box-shadow: 0 12px 32px -20px rgba(255,59,48,0.18), 0 1px 2px rgba(7,10,20,0.04);
  animation-delay: 100ms;
  /* Logical inline-end margin → LTR: leans left, RTL: leans right (always toward reading-start) */
  margin-inline-end: 14%;
}
.screen--ever   {
  box-shadow: 0 12px 32px -20px rgba(55,103,218,0.18), 0 1px 2px rgba(7,10,20,0.04);
  animation-delay: 600ms;
  /* Logical inline-start margin → LTR: leans right, RTL: leans left (always toward reading-end) */
  margin-inline-start: 14%;
}
@keyframes heroCardIn {
  to { opacity: 1; transform: translateY(0); }
}
.screen__bar {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 12px;
  background: var(--canvas-2);
  border-bottom: 1px solid var(--hair);
  font-family: var(--mono); font-size: 10.5px;
  color: var(--ink-3); letter-spacing: 0.04em;
}
.screen__bar-tag {
  padding: 3px 9px; border-radius: 100px;
  font-weight: 700; font-size: 10px; letter-spacing: 0.10em;
  display: inline-flex; align-items: center; gap: 6px;
}
.screen__bar-tag--live {
  background: rgba(255,59,48,0.10); color: var(--live);
  border: 1px solid rgba(255,59,48,0.30);
}
.screen__bar-tag--live::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--live);
  box-shadow: 0 0 0 0 rgba(255,59,48,0.6);
  animation: livePulse 1.6s var(--ease-out) infinite;
}
@keyframes livePulse {
  0%   { box-shadow: 0 0 0 0 rgba(255,59,48,0.6); }
  100% { box-shadow: 0 0 0 7px rgba(255,59,48,0); }
}
.screen__bar-tag--ever {
  background: var(--brand-soft); color: var(--brand-deep);
  border: 1px solid rgba(55,103,218,0.30);
}
.screen__bar-meta { margin-left: auto; color: var(--ink-2); font-weight: 500; }

.screen__body { padding: 14px 18px; display: grid; gap: 10px; }
.screen__title-row { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.screen__title { font-weight: 700; font-size: 14.5px; color: var(--ink); letter-spacing: -0.012em; }
.screen__title-meta { color: var(--ink-3); font-size: 12px; font-weight: 400; }
/* compact stage — when there's just one row of info, no need for the heavy video block */
.screen__body .screen__stage { min-height: auto; grid-template-columns: 1fr; }
.screen__body .screen__video { padding: 14px; min-height: 56px; }
.screen__body .screen__video-label { font-size: 10.5px; }
.screen__body .screen__video-count { font-size: 11.5px; padding: 3px 10px; }
/* compact stats row — single stat takes full width, centered emphasis */
.screen--ever .screen__stats-row { grid-template-columns: 1fr; }
.screen--ever .screen__stat-mini { padding: 12px 14px; }
.screen--ever .screen__stat-mini-value { font-size: 22px; }

/* the live screen content */
.screen__stage {
  display: grid; grid-template-columns: 1fr 130px;
  gap: 10px;
  min-height: 120px;
}
.screen__video {
  position: relative;
  background:
    radial-gradient(circle at 30% 40%, rgba(55,103,218,0.18), transparent 60%),
    radial-gradient(circle at 70% 60%, rgba(255,221,0,0.10), transparent 50%),
    linear-gradient(135deg, #1A1F2E 0%, #0A0F1C 100%);
  border-radius: 8px;
  display: flex; align-items: flex-end; justify-content: space-between;
  padding: 10px;
  color: rgba(255,255,255,0.85);
}
.screen__video-label {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.08em;
  color: rgba(255,255,255,0.6); text-transform: uppercase;
}
.screen__video-count {
  font-family: var(--mono); font-size: 11px; font-weight: 700;
  background: rgba(255,255,255,0.10); padding: 3px 9px; border-radius: 100px;
}
.screen__chat {
  background: var(--canvas-2); border-radius: 8px;
  padding: 10px; display: grid; gap: 6px;
  border: 1px solid var(--hair);
  font-size: 10.5px;
}
.screen__chat-msg {
  display: grid; grid-template-columns: 18px 1fr; gap: 6px;
  align-items: baseline; line-height: 1.35;
}
.screen__chat-msg span:first-child {
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--brand); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 9px; font-weight: 700; font-family: var(--sans);
}
.screen__chat-msg strong { font-weight: 600; color: var(--ink); }

.screen__offer {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px;
  background: var(--accent-soft);
  border: 1px solid rgba(255,221,0,0.50);
  border-radius: 8px;
}
.screen__offer-tag {
  font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.10em;
  font-weight: 700; color: var(--ink);
  background: var(--accent); padding: 3px 8px; border-radius: 100px;
}
.screen__offer-text { font-size: 12.5px; color: var(--ink); flex: 1; }
.screen__offer-text strong { font-weight: 700; }
.screen__offer-price { font-family: var(--mono); font-weight: 700; color: var(--ink); font-size: 13px; }

/* the evergreen screen content */
.screen__schedule {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
}
.screen__slot {
  background: var(--canvas-2);
  border: 1px solid var(--hair);
  border-radius: 8px;
  padding: 10px;
  text-align: center;
}
.screen__slot--next {
  background: var(--brand-soft);
  border-color: rgba(55,103,218,0.30);
}
.screen__slot-time {
  font-family: var(--mono); font-size: 13px; font-weight: 700;
  color: var(--ink); letter-spacing: -0.01em;
}
.screen__slot--next .screen__slot-time { color: var(--brand-deep); }
.screen__slot-meta {
  font-size: 10px; color: var(--ink-3); margin-top: 2px;
  text-transform: uppercase; letter-spacing: 0.06em;
}

.screen__stats-row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.screen__stat-mini {
  background: var(--canvas-2); border: 1px solid var(--hair);
  border-radius: 8px; padding: 10px 12px;
}
.screen__stat-mini--accent { background: var(--accent-soft); border-color: rgba(255,221,0,0.45); }
.screen__stat-mini-label {
  font-size: 10px; letter-spacing: 0.06em; color: var(--ink-3);
  text-transform: uppercase; font-weight: 500;
}
.screen__stat-mini-value {
  font-weight: 800; font-size: 17px; color: var(--ink);
  letter-spacing: -0.015em; font-variant-numeric: tabular-nums; margin-top: 2px;
}

/* THE BRIDGE — dominant, the visual hero of the hero */
.bridge-cta {
  position: relative;
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px;
  padding: 22px 22px;                /* bigger padding */
  background: var(--ink);
  border-radius: 16px;               /* slightly more pronounced */
  color: #fff;
  box-shadow:
    0 24px 60px -20px rgba(7,10,20,0.45),
    0 0 0 6px rgba(255,221,0,0.10);  /* yellow glow ring — visually says "this is THE button" */
  z-index: 2;
  margin-top: 4px;                   /* tight to live above */
  margin-bottom: 4px;                /* tight to evergreen below */
  /* button stays centered/full-width — its dominance comes from size + color + glow, not asymmetric position */
  opacity: 0;
  transform: translateY(12px) scale(0.96);
  animation: bridgeIn 700ms cubic-bezier(0.32, 0.72, 0, 1) 350ms forwards;
}
@keyframes bridgeIn {
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.bridge-cta__icon {
  width: 44px; height: 44px; border-radius: 12px;   /* larger */
  background: var(--accent); color: var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(255,221,0,0.20);
}
.bridge-cta__icon svg { width: 22px; height: 22px; }
.bridge-cta__text {
  flex: 1; line-height: 1.35;
}
.bridge-cta__text strong {
  display: block; font-weight: 700; font-size: 16px;   /* bumped */
  color: #fff; letter-spacing: -0.012em;
}
.bridge-cta__text span {
  display: block; font-size: 12.5px; color: rgba(255,255,255,0.72);
  margin-top: 3px;
}
.bridge-cta__btn {
  padding: 13px 22px; border-radius: 100px;            /* bigger */
  background: var(--accent); color: var(--ink);
  font-weight: 800; font-size: 14px;
  white-space: nowrap;
  display: inline-flex; align-items: center; gap: 8px;
  box-shadow: 0 6px 18px -2px rgba(255,221,0,0.45);
  transition: transform 140ms var(--ease-out), background-color 200ms var(--ease-out), box-shadow 200ms var(--ease-out);
  cursor: pointer;
}
.bridge-cta__btn:hover {
  background: var(--accent-2);
  box-shadow: 0 8px 22px -2px rgba(255,221,0,0.55);
}
.bridge-cta__btn:active { transform: scale(0.97); }

/* the old .mock styles (kept for the 3-modes section panels) */
.mock {
  background: var(--canvas); border-radius: 12px; overflow: hidden;
  border: 1px solid var(--hair);
}
.mock__bar {
  display: flex; align-items: center; gap: 6px;
  padding: 10px 14px;
  background: var(--canvas-2);
  border-bottom: 1px solid var(--hair);
}
.mock__dot { width: 10px; height: 10px; border-radius: 50%; background: var(--canvas-4); }
.mock__bar-url {
  margin-left: 10px; flex: 1;
  padding: 5px 12px; border-radius: 6px;
  background: var(--canvas); border: 1px solid var(--hair);
  font-family: var(--mono); font-size: 11.5px; color: var(--ink-3);
}
.mock__body { padding: 22px; display: grid; gap: 18px; }
.mock__head { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.mock__title { font-weight: 700; font-size: 16.5px; color: var(--ink); letter-spacing: -0.014em; }
.mock__title small { color: var(--ink-3); font-weight: 400; font-size: 13px; margin-left: 6px; }
.mock__live {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 4px 12px 4px 9px; border-radius: 100px;
  background: rgba(255,59,48,0.08); border: 1px solid rgba(255,59,48,0.30);
  color: var(--live); font-weight: 700; font-size: 11.5px; letter-spacing: 0.04em;
}
.mock__live::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--live); box-shadow: 0 0 0 0 rgba(255,59,48,0.5); animation: livePulse 1.6s var(--ease-out) infinite; }
.mock__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.mock__stat {
  background: var(--canvas-2); border: 1px solid var(--hair);
  border-radius: 10px; padding: 14px;
}
.mock__stat--accent { background: var(--accent-soft); border-color: rgba(255,221,0,0.45); }
.mock__stat-label {
  font-size: 11px; letter-spacing: 0.02em; color: var(--ink-3);
  text-transform: uppercase; margin-bottom: 4px; font-weight: 500;
}
.mock__stat-value {
  font-weight: 800; font-size: 22px; color: var(--ink);
  letter-spacing: -0.015em; font-variant-numeric: tabular-nums;
}
.mock__chart { height: 140px; border-radius: 10px; background: var(--canvas-2); border: 1px solid var(--hair); padding: 12px; }
.mock__chart svg { width: 100%; height: 100%; }

.mock__bridge {
  display: flex; align-items: center; gap: 12px;
  padding: 14px;
  border-radius: 10px;
  background: var(--brand-tint);
  border: 1px dashed rgba(55,103,218,0.30);
}
.mock__bridge-icon {
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--brand); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.mock__bridge-icon svg { width: 16px; height: 16px; }
.mock__bridge-text { font-size: 13px; color: var(--ink-2); line-height: 1.4; }
.mock__bridge-text strong { color: var(--ink); font-weight: 600; }
.mock__bridge-btn {
  margin-left: auto;
  padding: 7px 14px; border-radius: 100px;
  background: var(--ink); color: #fff;
  font-size: 12px; font-weight: 600; white-space: nowrap;
}

@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__copy { padding-right: 0; }
}

/* ==========================================================================
   3 · LOGOS — "Replaces X" strip
   ========================================================================== */
.logos {
  padding: 36px 0;
  background: var(--canvas-2);
  border-bottom: 1px solid var(--hair);
}
.logos__inner { width: var(--col); margin: 0 auto; text-align: center; }
.logos__label {
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-3); margin-bottom: 22px; font-weight: 600;
}
.logos__row {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 18px 36px;
  font-weight: 600; color: var(--ink-2); font-size: 14.5px;
}
.logos__row span { display: inline-flex; align-items: center; gap: 8px; }
.logos__row span::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--ink-3); opacity: 0.6; }

/* ==========================================================================
   4 · SECTION HEAD (shared)
   ========================================================================== */
.section-head {
  text-align: center; max-width: 700px; margin: 0 auto 56px;
}
.section-head__kicker {
  display: inline-block;
  padding: 5px 12px; border-radius: 100px;
  background: var(--brand-soft); color: var(--brand);
  font-size: 12px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; margin-bottom: 18px;
}
.section-head__h {
  font-weight: 800; font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.12; letter-spacing: -0.025em; color: var(--ink);
  margin-bottom: 14px; text-wrap: balance;
}
.section-head__sub {
  font-size: 17px; color: var(--ink-2); max-width: 56ch; margin: 0 auto;
  text-wrap: pretty;
}

/* ==========================================================================
   5 · THE BRIDGE — Live → Recorded → Automated, with one-button moment
   ========================================================================== */
.bridge {
  padding: 100px 0;
  border-bottom: 1px solid var(--hair);
}
.bridge__steps {
  width: var(--col); margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 18px; position: relative;
}
.bridge__step {
  background: var(--canvas);
  border: 1px solid var(--hair-strong);
  border-radius: 14px;
  padding: 28px;
  position: relative;
  transition: transform 220ms var(--ease-out), border-color 220ms var(--ease-out), box-shadow 220ms var(--ease-out);
}
.bridge__step:hover { transform: translateY(-2px); border-color: var(--brand); box-shadow: var(--shadow-2); }
.bridge__step--accent {
  background: linear-gradient(180deg, var(--brand) 0%, var(--brand-deep) 100%);
  color: #fff; border-color: var(--brand-deep);
  box-shadow: 0 24px 60px -22px var(--brand-shadow);
}
.bridge__step--accent:hover { transform: translateY(-2px); }
.bridge__n {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--brand-soft); color: var(--brand);
  font-family: var(--mono); font-size: 12px; font-weight: 700;
  margin-bottom: 18px;
}
.bridge__step--accent .bridge__n { background: rgba(255,255,255,0.16); color: #fff; }
.bridge__h { font-weight: 700; font-size: 19px; letter-spacing: -0.018em; color: inherit; margin-bottom: 8px; }
.bridge__p { font-size: 14.5px; line-height: 1.55; color: var(--ink-2); }
.bridge__step--accent .bridge__p { color: rgba(255,255,255,0.85); }
.bridge__big {
  margin-top: 22px;
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.10em;
  font-weight: 700; color: var(--ink);
  padding: 6px 12px; border-radius: 100px;
  background: var(--accent);
}
.bridge__step--accent .bridge__big { background: var(--accent); color: var(--ink); }

@media (max-width: 900px) {
  .bridge__steps { grid-template-columns: 1fr; }
}

.bridge__cta { margin-top: 36px; text-align: center; }

/* ==========================================================================
   6 · MODES — Live · Automated · On-demand (tabs with clip-path color swap)
   ========================================================================== */
.modes {
  padding: 100px 0;
  background: var(--canvas-2);
  border-bottom: 1px solid var(--hair);
}
.modes__tabs {
  width: var(--col-narrow); margin: 0 auto 36px;
  display: grid; grid-template-columns: repeat(3, 1fr);
  background: var(--canvas);
  border: 1px solid var(--hair-strong);
  border-radius: 100px;
  padding: 4px;
  gap: 2px;
}
.modes__tab {
  padding: 11px 18px;
  border-radius: 100px;
  font-size: 14px; font-weight: 600; color: var(--ink-2);
  transition: color 200ms var(--ease-out), background-color 200ms var(--ease-out);
  text-align: center; cursor: pointer;
}
.modes__tab.is-active {
  background: var(--brand); color: #fff;
  box-shadow: 0 4px 12px -4px var(--brand-shadow);
}
.modes__panel {
  width: var(--col); margin: 0 auto;
  display: none;
  grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
}
.modes__panel.is-active { display: grid; }
.modes__copy h3 {
  font-weight: 700; font-size: clamp(24px, 2.6vw, 32px);
  line-height: 1.15; letter-spacing: -0.02em; color: var(--ink);
  margin-bottom: 14px;
}
.modes__copy p { font-size: 16px; line-height: 1.55; color: var(--ink-2); margin-bottom: 20px; max-width: 46ch; }
.modes__list { list-style: none; display: grid; gap: 10px; margin-bottom: 24px; }
.modes__list li {
  display: grid; grid-template-columns: 20px 1fr; gap: 10px;
  font-size: 14.5px; color: var(--ink); line-height: 1.5;
}
.modes__list li svg { width: 14px; height: 14px; color: var(--brand); margin-top: 5px; }
.modes__visual {
  background: var(--canvas); border-radius: 14px;
  border: 1px solid var(--hair-strong);
  box-shadow: var(--shadow-2);
  padding: 14px;
}
@media (max-width: 900px) {
  .modes__panel { grid-template-columns: 1fr; gap: 28px; }
}

/* ==========================================================================
   7 · FUNNEL — built-in (replaces page builder, reminders, replay, etc.)
   ========================================================================== */
.funnel { padding: 100px 0; border-bottom: 1px solid var(--hair); }
.funnel__grid {
  width: var(--col); margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.feat {
  background: var(--canvas); border: 1px solid var(--hair-strong);
  border-radius: 14px; padding: 26px;
  transition: transform 220ms var(--ease-out), border-color 220ms var(--ease-out), box-shadow 220ms var(--ease-out);
}
.feat:hover { transform: translateY(-2px); border-color: var(--brand); box-shadow: var(--shadow-2); }
.feat__icon {
  width: 42px; height: 42px; border-radius: 11px;
  background: var(--brand-soft); color: var(--brand);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.feat__icon svg { width: 20px; height: 20px; }
.feat__h { font-weight: 700; font-size: 17.5px; letter-spacing: -0.018em; color: var(--ink); margin-bottom: 6px; }
.feat__p { font-size: 14.5px; line-height: 1.55; color: var(--ink-2); }
.feat__p strong { color: var(--ink); font-weight: 600; }
@media (max-width: 900px) { .funnel__grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   8 · RECEIPT — 9 → 1 stack replacement
   ========================================================================== */
.receipt-band {
  padding: 100px 0;
  background: var(--canvas-2);
  border-bottom: 1px solid var(--hair);
}
.receipt {
  width: var(--col-narrow); margin: 0 auto;
  background: var(--canvas); border: 1px solid var(--hair-strong);
  border-radius: 16px;
  padding: 40px 36px;
  box-shadow: var(--shadow-1);
}
.receipt__h {
  font-weight: 700; font-size: 18px; color: var(--ink);
  margin-bottom: 4px;
}
.receipt__sub {
  font-size: 13.5px; color: var(--ink-3); margin-bottom: 26px;
}
.receipt__row {
  display: grid; grid-template-columns: 28px 1fr auto;
  gap: 12px; align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px dashed var(--hair-strong);
  font-size: 14.5px;
}
.receipt__row:last-of-type { border-bottom: 0; }
.receipt__row-n { color: var(--ink-3); font-family: var(--mono); font-size: 12px; }
.receipt__row-item { color: var(--ink); }
.receipt__row-item small { display: block; color: var(--ink-3); font-size: 12.5px; margin-top: 2px; }
.receipt__row-price { color: var(--ink); font-weight: 600; font-family: var(--mono); font-size: 14px; font-variant-numeric: tabular-nums; }

.receipt__total {
  margin-top: 18px;
  border-top: 2px solid var(--ink);
  padding-top: 18px;
}
.receipt__total-row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 6px 0;
  font-size: 14.5px;
}
.receipt__total-row--final {
  margin-top: 10px;
  padding: 14px 16px;
  background: var(--accent);
  border-radius: 10px;
  font-size: 16px; font-weight: 700;
}
.receipt__strike { color: var(--ink-3); text-decoration: line-through; font-family: var(--mono); }
.receipt__win { color: var(--brand-deep); font-weight: 700; font-family: var(--mono); font-variant-numeric: tabular-nums; }

/* ==========================================================================
   9 · TESTIMONIALS
   ========================================================================== */
.testimonials { padding: 100px 0; border-bottom: 1px solid var(--hair); }
.testimonials__grid {
  width: var(--col); margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.quote {
  background: var(--canvas); border: 1px solid var(--hair-strong);
  border-radius: 14px; padding: 26px;
  display: flex; flex-direction: column; gap: 18px;
}
.quote__stars { display: inline-flex; gap: 2px; color: var(--accent-deep); }
.quote__stars svg { width: 16px; height: 16px; }
.quote__text { font-size: 16px; line-height: 1.55; color: var(--ink); flex: 1; }
.quote__cite { display: flex; align-items: center; gap: 12px; }
.quote__avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-deep));
  color: #fff; font-weight: 700; font-size: 14px;
  display: inline-flex; align-items: center; justify-content: center;
}
.quote__who strong { display: block; color: var(--ink); font-weight: 600; font-size: 13.5px; }
.quote__who span { color: var(--ink-3); font-size: 12.5px; }
@media (max-width: 900px) { .testimonials__grid { grid-template-columns: 1fr; } }

/* ==========================================================================
  10 · PRICING
   ========================================================================== */
.pricing {
  padding: 100px 0;
  background: var(--canvas-2);
  border-bottom: 1px solid var(--hair);
}
.pricing__grid {
  width: var(--col); margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.plan {
  position: relative;
  background: var(--canvas); border: 1px solid var(--hair-strong);
  border-radius: 16px; padding: 30px 28px;
  display: flex; flex-direction: column;
  transition: transform 220ms var(--ease-out), border-color 220ms var(--ease-out), box-shadow 220ms var(--ease-out);
}
.plan:hover { transform: translateY(-2px); border-color: var(--brand); box-shadow: var(--shadow-2); }
.plan--featured {
  background: linear-gradient(180deg, #FFFFFF 0%, var(--brand-soft) 100%);
  border-color: var(--brand);
  box-shadow: 0 0 0 4px var(--brand-soft), 0 24px 60px -28px var(--brand-shadow);
}
.plan__badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  padding: 5px 14px; border-radius: 100px;
  background: var(--accent); color: var(--ink);
  font-size: 11px; font-weight: 800; letter-spacing: 0.08em;
}
.plan__tier {
  font-size: 12.5px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--brand); margin-bottom: 16px;
}
.plan__price-row { display: flex; align-items: baseline; gap: 8px; margin-bottom: 4px; }
.plan__amount {
  font-weight: 800; font-size: 44px; line-height: 1;
  letter-spacing: -0.025em; color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.plan__per { color: var(--ink-3); font-size: 14px; }
.plan__was { font-size: 12.5px; color: var(--ink-3); text-decoration: line-through; margin-bottom: 14px; font-family: var(--mono); }
.plan__sub { font-size: 14px; line-height: 1.55; color: var(--ink-2); margin-bottom: 22px; max-width: 28ch; }
.plan__rule { height: 1px; background: var(--hair); margin: 4px 0 22px; }
.plan__list { list-style: none; display: grid; gap: 11px; margin-bottom: 28px; font-size: 14px; }
.plan__list li { display: grid; grid-template-columns: 18px 1fr; gap: 10px; align-items: start; color: var(--ink); line-height: 1.55; }
.plan__list li svg { width: 13px; height: 13px; color: var(--brand); margin-top: 5px; }
.plan__list li strong { color: var(--ink); font-weight: 600; }
.plan__list li small { color: var(--ink-3); display: block; font-size: 12px; }
.plan__cta { margin-top: auto; }
@media (max-width: 900px) { .pricing__grid { grid-template-columns: 1fr; } }

/* ==========================================================================
  11 · FAQ
   ========================================================================== */
.faq { padding: 100px 0; border-bottom: 1px solid var(--hair); }
.faq__list { width: var(--col-narrow); margin: 0 auto; display: grid; gap: 10px; }
.faq__item {
  background: var(--canvas);
  border: 1px solid var(--hair-strong);
  border-radius: 12px; overflow: hidden;
  transition: border-color 200ms var(--ease-out);
}
.faq__item:hover { border-color: var(--hair-stronger); }
.faq__q {
  padding: 18px 22px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-size: 15px; font-weight: 600; color: var(--ink);
  cursor: pointer; list-style: none;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__icon { color: var(--ink-3); transition: transform 220ms var(--ease-out), color 200ms var(--ease-out); flex-shrink: 0; }
.faq__item[open] .faq__icon { transform: rotate(45deg); color: var(--brand); }
.faq__a { padding: 0 22px 20px; font-size: 14.5px; color: var(--ink-2); line-height: 1.6; max-width: 60ch; }

/* ==========================================================================
  12 · CTA BAND
   ========================================================================== */
.cta { padding: 100px 0; }
.cta__card {
  width: var(--col); margin: 0 auto;
  border-radius: 20px;
  padding: 56px 40px; text-align: center;
  background:
    radial-gradient(80% 100% at 50% 0%, rgba(255,221,0,0.12), transparent 60%),
    linear-gradient(135deg, var(--brand) 0%, var(--brand-deep) 100%);
  color: #fff;
  box-shadow: 0 24px 60px -22px var(--brand-shadow);
}
.cta__h {
  font-weight: 800; font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.12; letter-spacing: -0.025em; color: #fff;
  margin-bottom: 14px; max-width: 24ch; margin-left: auto; margin-right: auto;
  text-wrap: balance;
}
.cta__h em { font-style: normal; background: var(--accent); color: var(--ink); padding: 0 6px 3px; border-radius: 4px; }
.cta__p { font-size: 16.5px; color: rgba(255,255,255,0.84); max-width: 52ch; margin: 0 auto 30px; }
.cta__form {
  display: inline-flex; align-items: center;
  background: #fff;
  border-radius: 12px; padding: 6px;
  min-width: min(520px, 100%);
  box-shadow: 0 8px 24px -8px rgba(7,10,20,0.30);
}
.cta__form input {
  flex: 1; background: transparent; border: 0; outline: 0;
  font-family: var(--sans); font-size: 15px; color: var(--ink); padding: 12px 18px;
}
.cta__form input::placeholder { color: var(--ink-3); }
.cta__form button {
  background: var(--accent); color: var(--ink);
  border-radius: 8px; padding: 12px 22px;
  font-weight: 800; font-size: 14.5px;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background-color 200ms var(--ease-out), transform 140ms var(--ease-out);
}
.cta__form button:active { transform: scale(0.97); }
.cta__form button:hover { background: var(--accent-2); }
.cta__terms {
  display: inline-flex; gap: 18px; flex-wrap: wrap; justify-content: center;
  margin-top: 22px;
  font-size: 13px; color: rgba(255,255,255,0.78);
}
.cta__terms span::before { content: "✓ "; color: var(--accent); }

/* ==========================================================================
  13 · FOOTER
   ========================================================================== */
.site-footer { background: var(--canvas); padding: 80px 0 40px; border-top: 1px solid var(--hair); }
.site-footer__inner { width: var(--col); margin: 0 auto; }
.site-footer__top {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.site-footer__brand {
  display: inline-flex; align-items: center; gap: 9px;
  font-weight: 700; font-size: 16.5px; color: var(--ink); margin-bottom: 14px;
}
.site-footer__brand-sub { font-size: 14px; line-height: 1.55; color: var(--ink-2); max-width: 32ch; }
.site-footer__col h4 {
  font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
  font-weight: 700; color: var(--ink-3); margin-bottom: 16px;
}
.site-footer__col ul { list-style: none; display: grid; gap: 10px; }
.site-footer__col a { font-size: 14px; color: var(--ink-2); transition: color 200ms var(--ease-out); }
.site-footer__col a:hover { color: var(--ink); }
.site-footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 28px; border-top: 1px solid var(--hair);
  font-size: 13px; color: var(--ink-3);
}
@media (max-width: 820px) {
  .site-footer__top { grid-template-columns: 1fr; gap: 32px; }
  .site-footer__bottom { flex-direction: column; gap: 14px; align-items: flex-start; }
}

/* reveal — gentle */
.reveal { opacity: 0; transform: translateY(12px); transition: opacity 600ms var(--ease-out), transform 600ms var(--ease-out); }
.reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *,*::before,*::after { animation-duration: 0.01ms !important; transition-duration: 200ms !important; }
  .reveal { transform: none !important; }
  .mock__live::before { animation: none; }
}

/* ==========================================================================
   VS COMPARISON (replaces old bridge cards)
   ========================================================================== */
.vs {
  padding: 100px 0;
  border-bottom: 1px solid var(--hair);
}
.vs__table {
  width: var(--col); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  background: var(--canvas);
  border: 1px solid var(--hair-strong);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-1);
}
.vs__head {
  padding: 22px 26px;
  font-size: 13px; font-weight: 700; letter-spacing: 0.04em;
  text-transform: uppercase;
}
.vs__head--other {
  background: var(--canvas-2); color: var(--ink-2);
  border-bottom: 1px solid var(--hair);
}
.vs__head--us {
  background: var(--brand); color: #fff;
  border-bottom: 1px solid var(--brand-deep);
}
.vs__row {
  display: grid; grid-template-columns: 28px 1fr; gap: 14px;
  align-items: center;
  padding: 18px 26px;
  font-size: 15px; line-height: 1.45;
  border-bottom: 1px solid var(--hair);
}
.vs__row--other { background: var(--canvas-2); color: var(--ink-2); }
.vs__row--us { background: var(--canvas); color: var(--ink); }
.vs__row--us strong { color: var(--ink); font-weight: 700; }
.vs__row--last { border-bottom: 0; }
.vs__icon {
  width: 22px; height: 22px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 14px;
  flex-shrink: 0;
}
.vs__icon--bad { background: rgba(7,10,20,0.06); color: var(--ink-3); }
.vs__icon--good { background: var(--brand); color: #fff; }
.vs__cta { text-align: center; margin-top: 36px; }
@media (max-width: 760px) {
  .vs__table { grid-template-columns: 1fr; }
}

/* ==========================================================================
   WHAT'S IN THE BOX (replaces old 6-card funnel grid)
   ========================================================================== */
.box {
  padding: 100px 0;
  border-bottom: 1px solid var(--hair);
}
.box__grid {
  width: var(--col); margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 18px;
}
.box__hero {
  background: var(--canvas);
  border: 1px solid var(--hair-strong);
  border-radius: 16px;
  padding: 36px;
  position: relative;
  background:
    radial-gradient(80% 60% at 100% 0%, var(--brand-soft) 0%, transparent 50%),
    var(--canvas);
}
.box__hero-tag {
  display: inline-block;
  padding: 4px 11px; border-radius: 100px;
  background: var(--brand); color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; margin-bottom: 20px;
}
.box__hero-h {
  font-weight: 800; font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.15; letter-spacing: -0.02em; color: var(--ink);
  margin-bottom: 14px; max-width: 22ch;
}
.box__hero-p { font-size: 15.5px; color: var(--ink-2); line-height: 1.55; margin-bottom: 22px; max-width: 50ch; }
.box__hero-list { list-style: none; display: grid; gap: 10px; }
.box__hero-list li {
  display: grid; grid-template-columns: 18px 1fr; gap: 10px;
  font-size: 14.5px; color: var(--ink); align-items: start;
}
.box__hero-list svg { color: var(--brand); margin-top: 4px; }
.box__side {
  display: grid; grid-template-rows: 1fr 1fr 1fr; gap: 14px;
}
.box__feat {
  background: var(--canvas);
  border: 1px solid var(--hair-strong);
  border-radius: 14px;
  padding: 22px 24px;
  display: grid; grid-template-columns: 36px 1fr; gap: 14px;
  align-items: start;
  transition: border-color 200ms var(--ease-out);
}
.box__feat:hover { border-color: var(--brand); }
.box__feat-icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--brand-soft); color: var(--brand);
  display: inline-flex; align-items: center; justify-content: center;
}
.box__feat h4 {
  font-weight: 700; font-size: 15.5px; color: var(--ink);
  letter-spacing: -0.014em; margin-bottom: 4px;
}
.box__feat p { font-size: 13.5px; color: var(--ink-2); line-height: 1.5; }
@media (max-width: 900px) {
  .box__grid { grid-template-columns: 1fr; }
  .box__side { grid-template-rows: auto; }
}

/* ==========================================================================
   ONLY ON HEATCORD — the differentiation section
   3 cards with CRM, CDP, Scheduling. Each shows "Without Heatcord" cost.
   ========================================================================== */
.only {
  padding: 100px 0;
  background: var(--canvas-2);
  border-bottom: 1px solid var(--hair);
}
.only__row {
  width: var(--col); margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.only__card {
  position: relative;
  background: var(--canvas);
  border: 1px solid var(--hair-strong);
  border-radius: 16px;
  padding: 28px;
  display: flex; flex-direction: column; gap: 14px;
  transition: transform 220ms var(--ease-out), border-color 220ms var(--ease-out), box-shadow 220ms var(--ease-out);
}
.only__card:hover {
  transform: translateY(-2px); border-color: var(--brand); box-shadow: var(--shadow-2);
}
.only__card::before {
  content: "ONLY HERE";
  position: absolute; top: -1px; right: 22px;
  padding: 4px 11px 4px 11px;
  background: var(--accent); color: var(--ink);
  font-family: var(--mono); font-size: 9.5px; font-weight: 800; letter-spacing: 0.10em;
  border-radius: 0 0 8px 8px;
}
.only__tag {
  display: inline-block;
  padding: 4px 11px; border-radius: 100px;
  background: var(--brand-soft); color: var(--brand-deep);
  font-size: 11px; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase;
  align-self: flex-start;
}
.only__h {
  font-weight: 800; font-size: 19px; line-height: 1.2;
  letter-spacing: -0.018em; color: var(--ink);
  max-width: 22ch;
}
.only__p { font-size: 14px; line-height: 1.55; color: var(--ink-2); }
.only__p strong { color: var(--ink); font-weight: 600; }
.only__list { list-style: none; display: grid; gap: 8px; font-size: 13.5px; }
.only__list li {
  display: grid; grid-template-columns: 18px 1fr; gap: 8px;
  align-items: start; color: var(--ink); line-height: 1.45;
}
.only__list svg { color: var(--brand); margin-top: 4px; }
.only__vs {
  margin-top: auto;
  padding: 12px 14px;
  background: var(--canvas-2); border: 1px dashed var(--hair-stronger);
  border-radius: 10px;
  display: flex; flex-direction: column; gap: 4px;
}
.only__vs-label {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.10em;
  text-transform: uppercase; color: var(--ink-3);
}
.only__vs-stack { font-size: 13px; color: var(--ink); font-weight: 600; }
@media (max-width: 920px) { .only__row { grid-template-columns: 1fr; } }

/* ==========================================================================
   LEGACY SUPPORT — for /blog/, /vs/, /pro/, /about/, /contact/ pages
   Restyled with v6 alphorm tokens.
   ========================================================================== */
.container { width: var(--col); margin: 0 auto; padding: 0 16px; }
.container--narrow { width: var(--col-narrow); margin: 0 auto; padding: 0 16px; }

.page-hero { padding: 80px 0 56px; border-bottom: 1px solid var(--hair); text-align: center; }
.page-hero .container { text-align: center; }
.page-hero h1 {
  font-weight: 800; font-size: clamp(32px, 4vw, 52px); line-height: 1.1;
  letter-spacing: -0.025em; color: var(--ink);
  max-width: 20ch; margin: 18px auto 16px; text-wrap: balance;
}
.page-hero h1 em.it, .page-hero h1 em {
  font-style: normal; background: var(--accent); color: var(--ink);
  padding: 0 6px 3px; border-radius: 4px;
}
.page-hero__sub {
  font-size: 17px; color: var(--ink-2); max-width: 56ch; margin: 0 auto; line-height: 1.55;
}
.page-hero__sub strong { color: var(--ink); font-weight: 600; }

.eyebrow .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--brand); }

.h-display { font-weight: 800; font-size: clamp(40px, 5vw, 64px); line-height: 1.06; letter-spacing: -0.03em; color: var(--ink); text-wrap: balance; }
.h-section { font-weight: 800; font-size: clamp(28px, 3.2vw, 42px); line-height: 1.12; letter-spacing: -0.025em; color: var(--ink); text-wrap: balance; }
.h-sub { font-weight: 700; font-size: clamp(22px, 2.6vw, 32px); line-height: 1.2; letter-spacing: -0.018em; color: var(--ink); }
.h-3 { font-weight: 700; font-size: clamp(18px, 1.8vw, 22px); line-height: 1.3; letter-spacing: -0.014em; color: var(--ink); }

em.it, .it {
  font-style: normal; background: var(--accent); color: var(--ink);
  padding: 0 6px 3px; border-radius: 4px;
}

.prose-article { width: min(680px, 92vw); margin: 0 auto; padding: 56px 16px 80px; font-size: 16.5px; line-height: 1.7; color: var(--ink); }
.prose-article h2 { font-weight: 800; font-size: clamp(24px, 2.6vw, 32px); line-height: 1.2; letter-spacing: -0.02em; color: var(--ink); margin-top: 48px; margin-bottom: 16px; }
.prose-article h3 { font-weight: 700; font-size: clamp(19px, 2vw, 24px); line-height: 1.3; color: var(--ink); margin-top: 32px; margin-bottom: 12px; }
.prose-article h4 { font-weight: 700; font-size: 17px; color: var(--ink); margin-top: 24px; margin-bottom: 8px; }
.prose-article p { margin-bottom: 16px; color: var(--ink-2); }
.prose-article strong { color: var(--ink); font-weight: 600; }
.prose-article a { color: var(--brand); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.prose-article a:hover { color: var(--brand-deep); }
.prose-article ul, .prose-article ol { margin: 16px 0 20px; padding-left: 24px; color: var(--ink-2); }
.prose-article li { margin-bottom: 8px; }
.prose-article li strong { color: var(--ink); }
.prose-article blockquote { margin: 24px 0; padding: 18px 22px; background: var(--brand-soft); border-left: 3px solid var(--brand); border-radius: 0 8px 8px 0; font-size: 17px; color: var(--ink); font-style: italic; }
.prose-article code { font-family: var(--mono); font-size: 14px; background: var(--canvas-3); color: var(--ink); padding: 2px 6px; border-radius: 4px; }
.prose-article pre { background: var(--canvas-3); border: 1px solid var(--hair); border-radius: 8px; padding: 16px; overflow-x: auto; margin: 16px 0; font-size: 14px; line-height: 1.5; }
.prose-article pre code { background: transparent; padding: 0; }
.prose-article table { width: 100%; border-collapse: collapse; margin: 24px 0; font-size: 14.5px; }
.prose-article table th, .prose-article table td { padding: 12px 14px; text-align: left; border-bottom: 1px solid var(--hair); }
.prose-article table th { background: var(--canvas-2); color: var(--ink); font-weight: 700; }
.prose-article hr { border: 0; border-top: 1px solid var(--hair); margin: 36px 0; }
.prose-article img { border-radius: 10px; margin: 24px 0; }
.prose-meta { display: flex; gap: 12px; align-items: center; font-size: 13.5px; color: var(--ink-3); padding: 18px 0; border-top: 1px solid var(--hair); border-bottom: 1px solid var(--hair); margin: 0 0 32px; }
.prose-meta strong { color: var(--ink); font-weight: 600; }
.prose-meta a { color: var(--brand); }

.post-list { width: min(900px, 92vw); margin: 0 auto; padding: 40px 16px 80px; }
.post-list__item { display: grid; grid-template-columns: 160px 1fr; gap: 36px; align-items: baseline; padding: 28px 0; border-bottom: 1px solid var(--hair); transition: background-color 200ms var(--ease-out); }
.post-list__item:hover { background: var(--canvas-2); }
.post-list__meta { font-family: var(--mono); font-size: 12px; color: var(--ink-3); letter-spacing: 0.04em; }
.post-list__title { font-weight: 700; font-size: 22px; letter-spacing: -0.018em; line-height: 1.25; color: var(--ink); margin-bottom: 8px; }
.post-list__item:hover .post-list__title { color: var(--brand); }
.post-list__excerpt { color: var(--ink-2); font-size: 15px; line-height: 1.55; max-width: 60ch; }
@media (max-width: 700px) { .post-list__item { grid-template-columns: 1fr; gap: 6px; } }

.cmp-page__head { width: var(--col); margin: 56px auto 36px; display: grid; grid-template-columns: 1fr 1fr; gap: 18px; padding: 0 16px; }
.cmp-card { background: var(--canvas); border: 1px solid var(--hair-strong); border-radius: 16px; padding: 28px; box-shadow: var(--shadow-1); }
.cmp-card--us { background: linear-gradient(180deg, var(--brand-soft) 0%, #FFFFFF 60%); border-color: var(--brand); }
.cmp-card__name { font-weight: 800; font-size: 16px; color: var(--ink); margin-bottom: 8px; }
.cmp-card__title { font-weight: 700; font-size: 18px; color: var(--ink); margin-bottom: 10px; letter-spacing: -0.014em; }
.cmp-card__sub { font-size: 14px; line-height: 1.55; color: var(--ink-2); margin-bottom: 14px; }
.cmp-card__price { font-weight: 800; font-size: 22px; color: var(--brand-deep); font-variant-numeric: tabular-nums; }
.cmp-card__price small { font-weight: 500; font-size: 12px; color: var(--ink-3); margin-left: 6px; }
@media (max-width: 700px) { .cmp-page__head { grid-template-columns: 1fr; } }

.cmp-table-wrap { width: var(--col); margin: 0 auto 48px; padding: 0 16px; overflow-x: auto; }
.cmp-table { width: 100%; border-collapse: collapse; background: var(--canvas); border: 1px solid var(--hair-strong); border-radius: 12px; overflow: hidden; font-size: 14.5px; }
.cmp-table th, .cmp-table td { padding: 14px 16px; text-align: left; border-bottom: 1px solid var(--hair); }
.cmp-table thead th { background: var(--canvas-2); color: var(--ink); font-weight: 700; font-size: 13px; letter-spacing: 0.04em; text-transform: uppercase; }
.cmp-table thead th.us { background: var(--brand); color: #fff; }
.cmp-table td.feat { color: var(--ink); font-weight: 500; }
.cmp-table td.us { background: var(--brand-tint); color: var(--ink); font-weight: 600; }
.cmp-table .yes { color: var(--brand); font-weight: 700; }
.cmp-table .no { color: var(--ink-3); }
.cmp-table .partial { color: var(--ink-2); font-size: 13px; }
.cmp-table .price { font-family: var(--mono); font-variant-numeric: tabular-nums; font-weight: 700; color: var(--ink); }

.section--tight { padding: 56px 0; }

.contact-grid { width: var(--col); margin: 40px auto; display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; padding: 0 16px; }
.contact-card { background: var(--canvas); border: 1px solid var(--hair-strong); border-radius: 14px; padding: 28px; transition: border-color 200ms var(--ease-out), box-shadow 200ms var(--ease-out); }
.contact-card:hover { border-color: var(--brand); box-shadow: var(--shadow-1); }
.contact-card__title { font-weight: 700; font-size: 18px; color: var(--ink); margin-bottom: 8px; letter-spacing: -0.014em; }
.contact-card__desc { font-size: 14.5px; line-height: 1.55; color: var(--ink-2); margin-bottom: 16px; }
.contact-card__email { display: inline-flex; align-items: center; gap: 8px; color: var(--brand); font-weight: 600; font-size: 14px; }
@media (max-width: 700px) { .contact-grid { grid-template-columns: 1fr; } }

.muted { color: var(--ink-2); }
.dim { color: var(--ink-3); }
.num { font-family: var(--mono); font-variant-numeric: tabular-nums; font-weight: 700; color: var(--brand-deep); }
.heat-num { color: var(--brand-deep); font-weight: 700; font-variant-numeric: tabular-nums; }
.sep { color: var(--ink-3); margin: 0 6px; }
.prose strong { color: var(--ink); }
.prose a { color: var(--brand); }
.prose a:hover { color: var(--brand-deep); }

/* legacy nav pill, drag-comparison, phone, fixes, quit, calc, niches, guarantee — hidden, replaced by v6 components */
.nav-pill { display: none; }

/* RTL Arabic support */
html[dir="rtl"] body { font-family: "IBM Plex Sans Arabic", "Inter", system-ui, sans-serif; }
html[dir="rtl"] .nav__links { direction: rtl; }
html[dir="rtl"] .site-footer__top { direction: rtl; }
html[dir="rtl"] .prose-article { direction: rtl; text-align: right; }
html[dir="rtl"] .prose-article ul, html[dir="rtl"] .prose-article ol { padding-left: 0; padding-right: 24px; }
html[dir="rtl"] .post-list, html[dir="rtl"] .contact-grid { direction: rtl; text-align: right; }
html[dir="rtl"] .post-list__item { grid-template-columns: 1fr 160px; }
html[dir="rtl"] .cmp-table th, html[dir="rtl"] .cmp-table td { text-align: right; }
html[dir="rtl"] .cmp-table th:not(:first-child), html[dir="rtl"] .cmp-table td:not(:first-child) { text-align: center; }
html[dir="rtl"] .hero__inner { direction: rtl; }
html[dir="rtl"] .hero__copy { padding-right: 0; padding-left: 8px; }
html[dir="rtl"] em.it, html[dir="rtl"] .it { font-family: "IBM Plex Sans Arabic", "Inter", system-ui, sans-serif; font-weight: 700; }
html[dir="rtl"] .mark { font-family: "IBM Plex Sans Arabic", "Inter", system-ui, sans-serif; }

/* RTL — v6 sections (vs, modes, box, only, receipt, pricing, faq, cta) */
html[dir="rtl"] .section-head { text-align: center; direction: rtl; }
html[dir="rtl"] .eyebrow { flex-direction: row-reverse; }
html[dir="rtl"] .hero__trust { flex-direction: row-reverse; }
html[dir="rtl"] .vs__table { direction: rtl; }
html[dir="rtl"] .vs__row { text-align: right; }
html[dir="rtl"] .modes__tabs { direction: rtl; }
html[dir="rtl"] .modes__panel { direction: rtl; }
html[dir="rtl"] .modes__copy { text-align: right; }
html[dir="rtl"] .modes__list { text-align: right; }
html[dir="rtl"] .box__grid { direction: rtl; }
html[dir="rtl"] .box__hero, html[dir="rtl"] .box__feat { text-align: right; }
html[dir="rtl"] .box__hero-list { text-align: right; }
html[dir="rtl"] .only__row { direction: rtl; }
html[dir="rtl"] .only__card { text-align: right; }
html[dir="rtl"] .only__list { text-align: right; }
html[dir="rtl"] .only__vs { flex-direction: row-reverse; text-align: right; }
html[dir="rtl"] .receipt { direction: rtl; text-align: right; }
html[dir="rtl"] .receipt__row { direction: rtl; }
html[dir="rtl"] .testimonials__grid { direction: rtl; }
html[dir="rtl"] .quote { text-align: right; }
html[dir="rtl"] .quote__cite { flex-direction: row-reverse; }
html[dir="rtl"] .pricing__grid { direction: rtl; }
html[dir="rtl"] .plan { text-align: right; }
html[dir="rtl"] .plan__list { text-align: right; }
html[dir="rtl"] .plan__list li { flex-direction: row-reverse; }
html[dir="rtl"] .faq__list { direction: rtl; }
html[dir="rtl"] .faq__q { text-align: right; flex-direction: row-reverse; }
html[dir="rtl"] .faq__a { text-align: right; }
html[dir="rtl"] .cta__card { text-align: center; }
html[dir="rtl"] .cta__form { direction: rtl; }
html[dir="rtl"] .cta__terms { flex-direction: row-reverse; }
html[dir="rtl"] .logos__row { direction: rtl; }
html[dir="rtl"] .screen { direction: rtl; text-align: right; }
html[dir="rtl"] .screen__slot { flex-direction: row-reverse; }
html[dir="rtl"] .screen__stats-row { flex-direction: row-reverse; }
html[dir="rtl"] .bridge-cta { flex-direction: row-reverse; }
html[dir="rtl"] .bridge-cta__text { text-align: right; }
html[dir="rtl"] .hero__ctas { flex-direction: row-reverse; }
html[dir="rtl"] .modes__list li, html[dir="rtl"] .box__hero-list li, html[dir="rtl"] .only__list li, html[dir="rtl"] .plan__list li { flex-direction: row-reverse; }
html[dir="rtl"] .vs__row { flex-direction: row-reverse; }

/* ============================================================
   RTL ARABIC TYPOGRAPHY — comprehensive line-height fixes
   Arabic naskh has descenders + diacritics that need more
   vertical room than Latin. Negative letter-spacing is also
   wrong for Arabic (it only helps Latin display fonts).
   ============================================================ */

/* Hero typography */
html[dir="rtl"] .hero__title {
  line-height: 1.45;
  letter-spacing: 0;
  max-width: 22ch;
}
html[dir="rtl"] .hero__sub {
  line-height: 1.85;
  letter-spacing: 0;
}
html[dir="rtl"] .mark {
  padding: 0 6px;
  line-height: 1;
  display: inline-block;
  /* leave a tiny breathing margin so the highlight doesn't kiss the line above */
  margin-block: 2px;
}

/* Section heads */
html[dir="rtl"] .section-head__h {
  line-height: 1.5;
  letter-spacing: 0;
}
html[dir="rtl"] .section-head__sub {
  line-height: 1.85;
  letter-spacing: 0;
}
html[dir="rtl"] .section-head__kicker {
  letter-spacing: 0.04em;
}

/* Cards and feature blocks */
html[dir="rtl"] .box__hero-h,
html[dir="rtl"] .only__h {
  line-height: 1.5;
  letter-spacing: 0;
}
html[dir="rtl"] .box__hero-p,
html[dir="rtl"] .only__p,
html[dir="rtl"] .box__feat p,
html[dir="rtl"] .modes__copy p,
html[dir="rtl"] .plan__sub,
html[dir="rtl"] .quote__text,
html[dir="rtl"] .modes__list li,
html[dir="rtl"] .box__hero-list li,
html[dir="rtl"] .only__list li,
html[dir="rtl"] .plan__list li {
  line-height: 1.85;
  letter-spacing: 0;
}

/* FAQ */
html[dir="rtl"] .faq__q {
  line-height: 1.55;
  letter-spacing: 0;
}
html[dir="rtl"] .faq__a {
  line-height: 1.9;
  letter-spacing: 0;
}

/* Receipt */
html[dir="rtl"] .receipt__row-item,
html[dir="rtl"] .receipt__h,
html[dir="rtl"] .receipt__total-row {
  line-height: 1.6;
  letter-spacing: 0;
}

/* Pricing */
html[dir="rtl"] .plan__tier,
html[dir="rtl"] .plan__per {
  line-height: 1.5;
  letter-spacing: 0;
}

/* Mode tabs */
html[dir="rtl"] .modes__copy h3 {
  line-height: 1.5;
  letter-spacing: 0;
}

/* CTA section */
html[dir="rtl"] .cta__h {
  line-height: 1.5;
  letter-spacing: 0;
}
html[dir="rtl"] .cta__p {
  line-height: 1.85;
  letter-spacing: 0;
}

/* Blog / prose articles */
html[dir="rtl"] .prose-article p,
html[dir="rtl"] .prose-article li {
  line-height: 1.95;
  letter-spacing: 0;
}
html[dir="rtl"] .prose-article h2,
html[dir="rtl"] .prose-article h3,
html[dir="rtl"] .prose-article h4 {
  line-height: 1.5;
  letter-spacing: 0;
}
html[dir="rtl"] .prose-article p {
  margin-bottom: 1.2em;
}

/* Page-hero (used on inner pages) */
html[dir="rtl"] .page-hero h1 {
  line-height: 1.5;
  letter-spacing: 0;
}
html[dir="rtl"] .page-hero__sub {
  line-height: 1.85;
  letter-spacing: 0;
}

/* Post list (blog index) */
html[dir="rtl"] .post-list__title {
  line-height: 1.5;
  letter-spacing: 0;
}
html[dir="rtl"] .post-list__excerpt {
  line-height: 1.85;
  letter-spacing: 0;
}

/* Comparison cards */
html[dir="rtl"] .cmp-card__title {
  line-height: 1.5;
  letter-spacing: 0;
}
html[dir="rtl"] .cmp-card__sub {
  line-height: 1.85;
  letter-spacing: 0;
}
html[dir="rtl"] .cmp-table td,
html[dir="rtl"] .cmp-table th {
  line-height: 1.55;
}

/* Contact / agency cards */
html[dir="rtl"] .contact-card__title {
  line-height: 1.5;
  letter-spacing: 0;
}
html[dir="rtl"] .contact-card__desc {
  line-height: 1.85;
  letter-spacing: 0;
}

/* Buttons in Arabic — slight tracking adjustment */
html[dir="rtl"] .btn {
  letter-spacing: 0;
}

/* Nav links breathe more */
html[dir="rtl"] .nav__links a {
  line-height: 1.5;
}

/* Footer body text */
html[dir="rtl"] .site-footer__brand-sub,
html[dir="rtl"] .site-footer__col ul li {
  line-height: 1.85;
}

/* ============================================================
   MOBILE RTL ARABIC TYPOGRAPHY (<= 768px)
   Arabic naskh diacritics need MORE breathing on small screens
   because the font-size floors are tight (clamp() bottoms out)
   and stacked headlines start kissing.
   Also overrides inline styles on founder-letter via !important
   because the letter card uses inline font-size/line-height that
   doesn't auto-adapt for Arabic at narrow widths.
   ============================================================ */
@media (max-width: 768px) {
  /* Hero — breathe more, narrower wrap */
  html[dir="rtl"] .hero { padding: 44px 0 40px; }
  html[dir="rtl"] .hero__title {
    line-height: 1.55;
    max-width: 18ch;
    margin-bottom: 22px;
  }
  html[dir="rtl"] .hero__sub {
    line-height: 1.95;
    margin-bottom: 28px;
  }
  html[dir="rtl"] .mark {
    line-height: 1.4;
    padding: 2px 5px;
    margin-block: 3px;
  }

  /* Section heads breathe */
  html[dir="rtl"] .section-head__h { line-height: 1.6; }
  html[dir="rtl"] .section-head__sub { line-height: 1.95; }
  html[dir="rtl"] .section-head { margin-bottom: 40px; }

  /* Cards and feature blocks */
  html[dir="rtl"] .box__hero-h,
  html[dir="rtl"] .only__h { line-height: 1.6; }
  html[dir="rtl"] .box__hero-p,
  html[dir="rtl"] .only__p,
  html[dir="rtl"] .box__feat p,
  html[dir="rtl"] .modes__copy p,
  html[dir="rtl"] .plan__sub,
  html[dir="rtl"] .quote__text,
  html[dir="rtl"] .modes__list li,
  html[dir="rtl"] .box__hero-list li,
  html[dir="rtl"] .only__list li,
  html[dir="rtl"] .plan__list li {
    line-height: 1.95;
  }

  /* FAQ */
  html[dir="rtl"] .faq__q { line-height: 1.65; }
  html[dir="rtl"] .faq__a { line-height: 1.95; }

  /* CTA section */
  html[dir="rtl"] .cta__h { line-height: 1.6; }
  html[dir="rtl"] .cta__p { line-height: 1.95; }

  /* Blog / prose articles */
  html[dir="rtl"] .prose-article p,
  html[dir="rtl"] .prose-article li {
    line-height: 2.0;
    margin-bottom: 1.3em;
  }
  html[dir="rtl"] .prose-article h2,
  html[dir="rtl"] .prose-article h3,
  html[dir="rtl"] .prose-article h4 { line-height: 1.6; }

  /* Page-hero (inner pages) */
  html[dir="rtl"] .page-hero h1 { line-height: 1.6; }
  html[dir="rtl"] .page-hero__sub { line-height: 1.95; }

  /* Post list */
  html[dir="rtl"] .post-list__title { line-height: 1.6; }
  html[dir="rtl"] .post-list__excerpt { line-height: 1.95; }

  /* Comparison cards */
  html[dir="rtl"] .cmp-card__title { line-height: 1.6; }
  html[dir="rtl"] .cmp-card__sub { line-height: 1.95; }

  /* Contact cards */
  html[dir="rtl"] .contact-card__title { line-height: 1.6; }
  html[dir="rtl"] .contact-card__desc { line-height: 1.95; }

  /* Receipt */
  html[dir="rtl"] .receipt__row-item,
  html[dir="rtl"] .receipt__h,
  html[dir="rtl"] .receipt__total-row { line-height: 1.7; }

  /* Modes / pricing */
  html[dir="rtl"] .modes__copy h3 { line-height: 1.6; }
  html[dir="rtl"] .plan__tier,
  html[dir="rtl"] .plan__per { line-height: 1.6; }

  /* Footer */
  html[dir="rtl"] .site-footer__brand-sub,
  html[dir="rtl"] .site-footer__col ul li { line-height: 1.95; }

  /* ----------------------------------------------------------
     FOUNDER LETTER CARD (hero V1) — Arabic inline-style override
     The Marhey-font p tags use inline line-height: 1.5/1.55 which
     is too tight in Arabic on mobile. !important needed to beat
     inline styles. Letter card max-width contained for 390px viewport.
     ---------------------------------------------------------- */
  html[dir="rtl"] .hero__visual {
    padding: 12px 4px !important;
    overflow: hidden;
  }
  html[dir="rtl"] .hero__visual > div[style*="rotate"] {
    /* Paper-cluster decorations: shrink + keep inside */
    width: 86% !important;
    max-width: 300px !important;
    transform: translateX(-50%) rotate(-3deg) !important;
  }
  html[dir="rtl"] .hero__visual > div[style*="rotate(2deg)"] {
    transform: translateX(-50%) rotate(2deg) !important;
  }
  html[dir="rtl"] .hero__visual article {
    max-width: 92vw !important;
    padding: 28px 24px 24px !important;
    transform: rotate(-0.8deg) !important;
  }
  html[dir="rtl"] .hero__visual article p {
    line-height: 1.85 !important;
    font-size: 19px !important;
    margin-bottom: 14px !important;
  }
  html[dir="rtl"] .hero__visual article p:first-of-type {
    font-size: 22px !important;
    line-height: 1.75 !important;
  }
  html[dir="rtl"] .hero__visual article p:last-of-type {
    font-size: 18px !important;
  }

  /* LTR letter card (EN/FR) on mobile too — same overflow/scale issue */
  html[dir="ltr"] .hero__visual,
  html:not([dir="rtl"]) .hero__visual {
    padding: 12px 4px !important;
    overflow: hidden;
  }
  html:not([dir="rtl"]) .hero__visual > div[style*="rotate"] {
    width: 86% !important;
    max-width: 300px !important;
  }
  html:not([dir="rtl"]) .hero__visual > div[style*="rotate(-3deg)"] {
    transform: translateX(-50%) rotate(-3deg) !important;
  }
  html:not([dir="rtl"]) .hero__visual > div[style*="rotate(2deg)"] {
    transform: translateX(-50%) rotate(2deg) !important;
  }
  html:not([dir="rtl"]) .hero__visual article {
    max-width: 92vw !important;
    padding: 28px 24px 24px !important;
  }
}

/* Very small phones — extra contraction */
@media (max-width: 380px) {
  html[dir="rtl"] .hero__title { font-size: 28px; line-height: 1.55; }
  html[dir="rtl"] .hero__sub { font-size: 15.5px; line-height: 1.95; }
  html[dir="rtl"] .hero__visual article p { font-size: 17px !important; }
  html[dir="rtl"] .hero__visual article p:first-of-type { font-size: 20px !important; }
  html[dir="rtl"] .section-head__h { font-size: 24px; line-height: 1.6; }
}
