/* ============================================================
   MailOptimal — marketing site design system
   Warm cream canvas · deep ink · terracotta ember accent.
   Type: Instrument Sans (display) · Inter (UI) · JetBrains Mono (numerals)
   ============================================================ */
:root {
  /* Brand — terracotta-orange primary (matches the MailOptimal app), warm gold secondary */
  --primary: #e96321;
  --primary-hover: #d5541a;
  --primary-press: #b5450f;
  --primary-50: #fdf1e9;
  --primary-100: #fbe1d2;
  --primary-200: #f5c2a1;
  --primary-soft: rgba(233, 99, 33, 0.09);
  --primary-glow: rgba(233, 99, 33, 0.42);
  --accent-ink: #8f3a12;

  /* Ember (warm gold secondary, for two-tone accents) */
  --ember: #e0922a;
  --ember-hover: #c97f1f;
  --ember-50: #fdf4e3;
  --ember-100: #fbe9c8;
  --ember-ink: #875613;

  /* Ink */
  --ink: #0c1322;
  --ink-1: #131a2b;
  --ink-2: #3a4254;
  --ink-3: #5f6b80;
  --ink-4: #98a1b3;
  --ink-5: #c5ccd9;

  /* Surfaces */
  --bg: #ffffff;
  --bg-tint: #f5f7fb;
  --bg-soft: #fafbfe;
  --surface: #ffffff;
  --hairline: #e8ebf1;
  --hairline-strong: #d8dde8;

  /* Accents */
  --success: #15924e;
  --success-50: #e3f5ea;
  --success-bright: #1faf61;
  --danger: #c0392b;
  --danger-50: #fbeae8;
  --warn: #b07908;
  --warn-50: #fbf0d6;
  --amber: #e0922a;
  --sky: #2f6bd6;
  --sky-50: #e6effb;

  /* Ink-dark section (deep navy) */
  --night: #0e1426;
  --night-2: #141d36;
  --night-card: #1b2742;
  --night-hair: rgba(255,255,255,0.10);
  --night-ink-3: #9aa6c0;

  /* Shadows (cool-tinted) */
  --shadow-xs: 0 1px 2px rgba(16,24,48,.05);
  --shadow-sm: 0 1px 3px rgba(16,24,48,.08), 0 1px 2px rgba(16,24,48,.04);
  --shadow-md: 0 4px 12px -2px rgba(16,24,48,.10), 0 2px 6px -2px rgba(16,24,48,.06);
  --shadow-lg: 0 12px 28px -8px rgba(16,24,48,.14), 0 6px 12px -6px rgba(16,24,48,.08);
  --shadow-xl: 0 28px 60px -16px rgba(16,24,48,.22), 0 12px 28px -10px rgba(16,24,48,.12);
  --shadow-ember: 0 24px 56px -16px rgba(233,99,33,.40), 0 8px 20px -8px rgba(233,99,33,.24);
  --shadow-pop: 0 14px 34px -10px rgba(16,24,48,.18), 0 4px 10px -4px rgba(16,24,48,.10);

  --r-sm: 7px;  --r-md: 10px; --r-lg: 14px;
  --r-xl: 18px; --r-2xl: 24px; --r-3xl: 32px;

  --maxw: 1296px;
  --ease: cubic-bezier(.22,.7,.2,1);
  --ease-spring: cubic-bezier(.34,1.56,.5,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce){ html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink-1);
  font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.5;
  font-size: 16.5px;
  overflow-x: hidden;
}
h1,h2,h3,h4 { margin: 0; font-family: 'Instrument Sans', ui-sans-serif, system-ui, sans-serif; letter-spacing: -0.025em; line-height: 1.05; font-weight: 600; color: var(--ink); }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
img { max-width: 100%; display: block; }
::selection { background: #f6d8c1; color: #1a1614; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
@media (max-width: 720px){ .wrap { padding: 0 20px; } }

/* ───────── buttons ───────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 50px; padding: 0 24px; border-radius: 999px;
  font-size: 16px; font-weight: 600; letter-spacing: -0.01em; white-space: nowrap;
  transition: transform .18s var(--ease), background .18s var(--ease), box-shadow .25s var(--ease), color .18s var(--ease);
}
.btn svg { width: 19px; height: 19px; }
.btn--primary {
  background: var(--primary); color: #fff;
  box-shadow: 0 1px 2px rgba(210,100,31,.30), 0 1px 0 rgba(255,255,255,.18) inset, 0 8px 20px -10px var(--primary-glow);
}
.btn--primary:hover { background: var(--primary-hover); transform: translateY(-2px); box-shadow: 0 12px 28px -10px var(--primary-glow), 0 1px 0 rgba(255,255,255,.2) inset; }
.btn--primary:active { transform: translateY(0); background: var(--primary-press); }
.btn--ghost { background: var(--surface); color: var(--ink-1); box-shadow: inset 0 0 0 1px var(--hairline-strong); }
.btn--ghost:hover { background: var(--bg-tint); box-shadow: inset 0 0 0 1px var(--hairline-strong); transform: translateY(-2px); }
.btn--white { background: #fff; color: var(--ink); }
.btn--white:hover { transform: translateY(-2px); box-shadow: 0 12px 28px -10px rgba(0,0,0,.4); }
.btn--ghost-dark { color: #fff; box-shadow: inset 0 0 0 1px var(--night-hair); }
.btn--ghost-dark:hover { background: rgba(255,255,255,.06); transform: translateY(-2px); }
.btn--lg { height: 58px; padding: 0 32px; font-size: 17px; }
.btn--sm { height: 44px; padding: 0 20px; font-size: 15px; }

/* eyebrow / kicker */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  color: var(--primary);
}
.eyebrow::before { content:''; width: 22px; height: 1.5px; background: currentColor; opacity: .5; display: inline-block; }
.eyebrow--center::before { display: none; }

.pill-tag {
  display: inline-flex; align-items: center; gap: 7px;
  height: 30px; padding: 0 13px 0 11px; border-radius: 999px;
  background: var(--primary-soft); color: var(--primary);
  font-size: 14px; font-weight: 600; box-shadow: inset 0 0 0 1px var(--primary-200);
}
.pill-tag .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--primary); position: relative; }
.pill-tag .dot::after { content:''; position:absolute; inset:-4px; border-radius:50%; background: var(--primary); opacity:.4; animation: ping 2s var(--ease) infinite; }
@keyframes ping { 0%{ transform:scale(1); opacity:.4 } 70%,100%{ transform:scale(2.2); opacity:0 } }

.section { padding: clamp(44px, 6vw, 84px) 0; }
.section-head { max-width: 720px; }
.section-head--center { margin: 0 auto; text-align: center; }
.section-title { font-size: clamp(34px, 4.6vw, 56px); margin-top: 18px; }
.section-sub { font-size: clamp(17.5px, 1.7vw, 22px); color: var(--ink-3); margin-top: 18px; line-height: 1.55; }

/* reveal on scroll */
.js .reveal { transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js .reveal:not(.in) { opacity: 0; transform: translateY(26px); }
.reveal[data-d="1"]{ transition-delay:.08s } .reveal[data-d="2"]{ transition-delay:.16s }
.reveal[data-d="3"]{ transition-delay:.24s } .reveal[data-d="4"]{ transition-delay:.32s }
.reveal[data-d="5"]{ transition-delay:.40s } .reveal[data-d="6"]{ transition-delay:.48s }
@media (prefers-reduced-motion: reduce){ .reveal { opacity:1 !important; transform:none !important; } }

/* ───────── NAV ───────── */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; transition: background .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease); border-bottom: 1px solid transparent; background: rgba(255,255,255,.90); backdrop-filter: saturate(180%) blur(16px); -webkit-backdrop-filter: saturate(180%) blur(16px); }
.nav.scrolled { background: rgba(255,255,255,.94); border-bottom-color: var(--hairline); box-shadow: 0 1px 0 rgba(16,24,48,.04), 0 6px 20px -14px rgba(16,24,48,.18); }
.nav__inner { height: 80px; display: flex; align-items: center; gap: 28px; }
.nav__logo { display: inline-flex; align-items: center; gap: 9px; flex: 0 0 auto; font-family: 'Instrument Sans', sans-serif; font-weight: 600; font-size: 20px; letter-spacing: -.01em; color: var(--ink); }
.nav__logo .mark { width: 38px; height: 38px; border-radius: 50%; background: url('../img/mo-icon.svg') center/contain no-repeat; box-shadow: none; color: transparent; font-size: 0; flex: 0 0 auto; }
.nav__links { display: flex; align-items: center; gap: 2px; margin-left: 6px; }
.nav__link { padding: 9px 15px; border-radius: 999px; font-size: 16px; font-weight: 500; color: var(--ink-2); transition: color .15s var(--ease), background .15s var(--ease); }
.nav__link:hover { color: var(--ink); background: var(--bg-tint); }
.nav__spacer { flex: 1; }
.nav__actions { display: flex; align-items: center; gap: 10px; }
.nav__signin { font-size: 16px; font-weight: 600; color: var(--ink-2); padding: 8px 14px; border-radius: 999px; transition: color .15s, background .15s; }
.nav__signin:hover { color: var(--ink); background: var(--bg-tint); }
.nav__burger { display: none; width: 42px; height: 42px; border-radius: var(--r-md); align-items: center; justify-content: center; color: var(--ink-1); }
.nav__burger:hover { background: var(--bg-tint); }
@media (max-width: 940px){ .nav__links, .nav__signin, .nav__actions { display: none; } .nav__burger { display: flex; } }

/* features mega-dropdown */
.nav__drop { position: relative; }
.nav__link--drop { display: inline-flex; align-items: center; gap: 5px; background: none; border: 0; cursor: pointer; font-family: inherit; font-size: 16px; font-weight: 500; color: var(--ink-2); padding: 8px 14px; border-radius: 999px; transition: color .15s var(--ease), background .15s var(--ease); }
.nav__link--drop:hover, .nav__drop:hover .nav__link--drop, .nav__drop:focus-within .nav__link--drop { color: var(--ink); background: var(--bg-tint); }
.nav__link--drop svg { width: 15px; height: 15px; transition: transform .22s var(--ease); }
.nav__drop:hover .nav__link--drop svg, .nav__drop:focus-within .nav__link--drop svg { transform: rotate(180deg); }
.nav__menu { position: absolute; top: calc(100% + 12px); left: 0; transform: translateY(6px); width: 880px; max-width: 94vw; background: var(--surface); border: 1px solid var(--hairline); border-radius: var(--r-2xl); box-shadow: var(--shadow-xl); padding: 14px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .18s var(--ease), transform .18s var(--ease), visibility .18s; z-index: 120; }
.nav__menu::before { content: ''; position: absolute; top: -14px; left: 0; right: 0; height: 14px; }
.nav__drop:hover .nav__menu, .nav__drop:focus-within .nav__menu { opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0); }
.nav__menu-item { display: grid; grid-template-columns: auto 1fr; grid-template-areas: "ic tt" "ds ds"; align-items: center; column-gap: 11px; padding: 15px 16px 16px; border-radius: var(--r-lg); background: var(--bg-tint); transition: background .15s var(--ease), transform .15s var(--ease); }
.nav__menu-item:hover { background: var(--primary-soft); transform: translateY(-2px); }
.nav__menu-ic { grid-area: ic; width: 40px; height: 40px; border-radius: 11px; background: #fff; display: grid; place-items: center; box-shadow: 0 1px 2px rgba(26,20,14,.10), inset 0 0 0 1px var(--hairline); }
.nav__menu-ic svg { width: 20px; height: 20px; }
.nav__menu-tt { grid-area: tt; font-size: 16.5px; font-weight: 700; color: var(--ink-1); letter-spacing: -0.01em; line-height: 1.2; }
.nav__menu-ds { grid-area: ds; font-size: 13.5px; color: var(--ink-3); line-height: 1.5; margin-top: 9px; }
.nav__menu-foot { grid-column: 1 / -1; display: inline-flex; align-items: center; gap: 7px; margin-top: 2px; padding: 12px 6px 4px; font-size: 14px; font-weight: 700; color: var(--primary); }
.nav__menu-foot svg { width: 16px; height: 16px; transition: transform .15s var(--ease); }
.nav__menu-foot:hover svg { transform: translateX(3px); }
@media (max-width: 1040px){ .nav__menu { width: 600px; grid-template-columns: repeat(2, 1fr); } }
.nav__menu--mini { width: 240px; grid-template-columns: 1fr; padding: 10px; gap: 2px; }
@media (max-width: 1040px){ .nav__menu--mini { width: 240px; grid-template-columns: 1fr; } }
.nav__mini-item { display: flex; align-items: center; gap: 11px; padding: 12px 14px; border-radius: 10px; font-size: 16px; font-weight: 600; color: var(--ink-1); transition: background .15s var(--ease), color .15s var(--ease); }
.nav__mini-item:hover { background: var(--primary-soft); color: var(--primary); }
.nav__mini-item svg { width: 17px; height: 17px; color: var(--ink-4); flex: 0 0 auto; }
.nav__mini-item:hover svg { color: var(--primary); }

/* mobile menu */
.mobile-menu { position: fixed; inset: 80px 0 auto 0; z-index: 99; background: rgba(255,255,255,.98); backdrop-filter: blur(16px); border-bottom: 1px solid var(--hairline); padding: 16px 20px 24px; display: none; flex-direction: column; gap: 4px; transform: translateY(-12px); opacity: 0; pointer-events: none; transition: transform .25s var(--ease), opacity .25s var(--ease); box-shadow: var(--shadow-lg); max-height: calc(100vh - 80px); overflow-y: auto; }
.mobile-menu.open { display: flex; transform: none; opacity: 1; pointer-events: auto; }
.mobile-menu a.m-link { padding: 13px 12px; font-size: 17px; font-weight: 600; color: var(--ink-1); border-radius: var(--r-md); }
.mobile-menu a.m-link:hover { background: var(--bg-tint); }
.mobile-menu .m-group { font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-4); padding: 14px 12px 4px; }
.mobile-menu a.m-sublink { padding: 11px 12px; font-size: 15.5px; font-weight: 550; color: var(--ink-2); border-radius: var(--r-md); }
.mobile-menu a.m-sublink:hover { background: var(--bg-tint); }
.mobile-menu .btn { margin-top: 10px; width: 100%; }

/* ───────── HERO ───────── */
.hero { position: relative; padding: 128px 0 56px; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: -1; pointer-events: none; background: radial-gradient(900px 520px at 50% -8%, var(--primary-50), transparent 60%), radial-gradient(640px 420px at 88% 8%, rgba(224,146,42,.08), transparent 60%); }
.hero__grid-fade { position: absolute; inset: 0; z-index: -1; pointer-events: none; background-image: radial-gradient(circle at 1px 1px, rgba(210,100,31,.10) 1px, transparent 0); background-size: 28px 28px; -webkit-mask-image: radial-gradient(720px 480px at 50% 18%, #000, transparent 72%); mask-image: radial-gradient(720px 480px at 50% 18%, #000, transparent 72%); }
.hero__head { max-width: 1000px; margin: 0 auto; text-align: center; }
.hero h1 { font-size: clamp(48px, 7.6vw, 92px); letter-spacing: -0.04em; line-height: 1.0; }
.hero h1 .grad { background: linear-gradient(105deg, var(--primary) 8%, #e0852f 55%, #c9531a 95%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero__sub { font-size: clamp(17px, 1.6vw, 20.5px); color: var(--ink-3); margin: 24px auto 0; max-width: 940px; line-height: 1.55; }
.hero__cta { display: flex; align-items: center; justify-content: center; gap: 14px; margin-top: 34px; flex-wrap: wrap; }
.hero-form { display: flex; align-items: center; gap: 9px; background: var(--surface); border-radius: 999px; padding: 5px 5px 5px 6px; box-shadow: var(--shadow-md), inset 0 0 0 1px var(--hairline-strong); }
.hero-form__input { border: 0; outline: none; background: transparent; height: 50px; width: 340px; max-width: 46vw; padding: 0 16px; font-size: 16.5px; color: var(--ink-1); }
.hero-form__input::placeholder { color: var(--ink-4); }
@media (max-width: 480px){ .hero-form { flex-direction: column; width: 100%; border-radius: var(--r-xl); padding: 8px; } .hero-form__input { width: 100%; } .hero-form .btn { width: 100%; } }
.hero__trust { display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 22px; color: var(--ink-3); font-size: 14.5px; font-weight: 500; flex-wrap: wrap; }
.hero__trust .sep { width: 4px; height: 4px; border-radius: 50%; background: var(--ink-5); }
.hero__trust .stars { display: inline-flex; gap: 2px; color: var(--amber); }
.hero__trust .stars svg { width: 15px; height: 15px; }
.hero__stage { display: flex; flex-direction: column; align-items: center; margin-top: 56px; position: relative; }
.hero__glow { position: absolute; left: 50%; top: 30%; width: 70%; height: 60%; transform: translateX(-50%); z-index: 0; background: radial-gradient(closest-side, var(--primary-glow), transparent 70%); filter: blur(46px); opacity: .42; }
.hero-winwrap { position: relative; z-index: 2; width: 100%; max-width: 1180px; }
.hero-panels { width: 100%; }
.hero-panel { display: none; }
.hero-panel.on { display: block; animation: mo-fade .3s var(--ease) both; }
@keyframes mo-fade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.hero-window { position: relative; z-index: 2; width: 100%; border-radius: 14px; overflow: hidden; box-shadow: 0 32px 80px -24px rgba(26,20,14,0.30), 0 8px 24px -8px rgba(26,20,14,0.12); border: 1px solid var(--hairline-strong); }

/* floating chips around hero app */
.hero-chip { position: absolute; z-index: 3; display: flex; align-items: center; gap: 11px; background: var(--surface); border: 1px solid var(--hairline); border-radius: var(--r-xl); padding: 11px 15px; box-shadow: var(--shadow-pop); }
.hero-chip__ic { width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center; flex: 0 0 auto; }
.hero-chip__big { font-size: 19px; font-weight: 800; color: var(--ink-1); line-height: 1; font-variant-numeric: tabular-nums; font-family: 'JetBrains Mono', monospace; }
.hero-chip__lbl { font-size: 11.5px; color: var(--ink-3); margin-top: 3px; font-weight: 500; }
.hero-chip--reply { top: -22px; right: -16px; }
.hero-chip--inbox { bottom: 16%; left: -34px; }
.hero-chip--meet  { bottom: -22px; right: 8%; }
@media (max-width: 760px){ .hero-chip--reply { top: 6%; right: 2%; } .hero-chip--inbox { bottom: 10%; left: 2%; } .hero-chip--meet { display: none; } .hero-chip__big { font-size: 16px; } }

@media (prefers-reduced-motion: no-preference){
  .hero-window { animation: windowRise .9s var(--ease) .4s both; }
  .hero-chip { animation: chipFloatIn .7s var(--ease-spring) both; }
  .hero-chip--reply { animation-delay: 1.0s; } .hero-chip--inbox { animation-delay: 1.2s; } .hero-chip--meet { animation-delay: 1.4s; }
}
@keyframes windowRise { from { opacity: 0; transform: translateY(40px) scale(.97); } to { opacity: 1; transform: none; } }
@keyframes chipFloatIn { from { opacity: 0; transform: translateY(16px) scale(.9); } to { opacity: 1; transform: none; } }

/* ───────── LOGO CLOUD ───────── */
.logos { padding: 36px 0 8px; }
.logos__label { text-align: center; font-size: 13px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--ink-4); }
.logos__row { display: flex; align-items: center; justify-content: center; gap: clamp(28px, 5vw, 60px); flex-wrap: wrap; margin-top: 26px; }
.logos__row .logo-item { font-family: 'Instrument Sans', sans-serif; font-size: 21px; font-weight: 700; letter-spacing: -.02em; color: var(--ink-4); opacity: .7; transition: opacity .2s, color .2s; display: inline-flex; align-items: center; gap: 9px; }
.logos__row .logo-item:hover { opacity: 1; color: var(--ink-2); }
.logos__row .logo-item svg { width: 22px; height: 22px; }
.logos__marquee { margin-top: 26px; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.logos__track { display: flex; align-items: center; gap: clamp(34px, 5vw, 62px); width: max-content; animation: logos-scroll 36s linear infinite; }
.logos__marquee:hover .logos__track { animation-play-state: paused; }
.logos__track .logo-item { font-family: 'Instrument Sans', sans-serif; font-size: 21px; font-weight: 700; letter-spacing: -.02em; color: var(--ink-4); opacity: .7; white-space: nowrap; flex: 0 0 auto; transition: opacity .2s, color .2s; }
.logos__track .logo-item:hover { opacity: 1; color: var(--ink-2); }
@keyframes logos-scroll { from { transform: translate3d(0,0,0); } to { transform: translate3d(-50%,0,0); } }
@media (prefers-reduced-motion: reduce){ .logos__track { animation: none; flex-wrap: wrap; justify-content: center; width: auto; } }

/* ───────── FEATURES ───────── */
.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 84px); align-items: center; }
.feature-row + .feature-row { margin-top: clamp(72px, 10vw, 128px); }
.feature-row--flip .feature-row__media { order: -1; }
@media (max-width: 900px){ .feature-row { grid-template-columns: 1fr; gap: 36px; } .feature-row--flip .feature-row__media { order: 0; } }
.feature-row__copy { min-width: 0; }
.feature-row__copy .eyebrow { color: var(--feat-accent, var(--primary)); }
.feature-row__copy h3 { font-size: clamp(28px, 3.6vw, 42px); margin-top: 16px; }
.feature-row__copy p.lead { font-size: 19px; color: var(--ink-3); margin-top: 16px; line-height: 1.6; }
.feature-list { display: flex; flex-direction: column; gap: 14px; margin-top: 26px; padding: 0; margin-left: 0; }
.feature-list li { display: flex; gap: 12px; align-items: flex-start; list-style: none; font-size: 16.5px; color: var(--ink-2); min-width: 0; overflow-wrap: anywhere; }
.feature-list .tick { width: 22px; height: 22px; border-radius: 7px; background: var(--feat-soft, var(--primary-soft)); color: var(--feat-accent, var(--primary)); display: grid; place-items: center; flex: 0 0 auto; margin-top: 1px; }
.feature-list .tick svg { width: 13px; height: 13px; }
.feature-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 26px; font-size: 15px; font-weight: 600; color: var(--feat-accent, var(--primary)); }
.feature-link svg { width: 17px; height: 17px; transition: transform .2s var(--ease); }
.feature-link:hover svg { transform: translateX(4px); }
.feature-row__media { position: relative; min-width: 0; }
.media-frame { position: relative; border-radius: var(--r-xl); background: var(--surface); box-shadow: var(--shadow-lg), 0 0 0 1px var(--hairline); overflow: hidden; }
.media-frame__glow { position: absolute; inset: -10% -6% auto -6%; height: 60%; z-index: -1; background: radial-gradient(closest-side, var(--feat-soft, var(--primary-soft)), transparent 75%); filter: blur(30px); }

/* source pills + action chips + safety badges */
.source-row, .safety-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.source-pill { display: inline-flex; align-items: center; gap: 9px; background: var(--surface); border-radius: 999px; padding: 9px 15px 9px 11px; font-size: 13.5px; font-weight: 600; color: var(--ink-2); box-shadow: var(--shadow-sm), inset 0 0 0 1px var(--hairline); transition: transform .18s var(--ease), box-shadow .18s var(--ease); }
.source-pill:hover { transform: translateY(-2px); box-shadow: var(--shadow-md), inset 0 0 0 1px var(--hairline-strong); }
.source-pill__ic { width: 24px; height: 24px; border-radius: 7px; background: var(--primary-soft); color: var(--primary); display: grid; place-items: center; }
.source-pill__ic svg { width: 14px; height: 14px; }
.chip-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 18px; }
@media (max-width: 760px){ .chip-grid { grid-template-columns: repeat(2,1fr); } }
/* responsive guard: inline 3-col grids (chip-grid / pricing infra panel) must collapse on mobile */
@media (max-width: 880px){ .chip-grid[style*="repeat(3"], .pricing-grid[style*="repeat(3"] { grid-template-columns: repeat(2,1fr) !important; } }
@media (max-width: 560px){ .chip-grid[style*="repeat(3"], .pricing-grid[style*="repeat(3"] { grid-template-columns: 1fr !important; } }
.action-chip { display: flex; align-items: center; gap: 11px; background: var(--surface); border-radius: var(--r-lg); padding: 14px 15px; box-shadow: var(--shadow-sm), inset 0 0 0 1px var(--hairline); transition: transform .2s var(--ease), box-shadow .2s var(--ease); }
.action-chip:hover { transform: translateY(-3px); box-shadow: var(--shadow-md), inset 0 0 0 1px var(--hairline-strong); }
.action-chip__ic { width: 32px; height: 32px; border-radius: 9px; background: var(--primary-soft); color: var(--primary); display: grid; place-items: center; flex: 0 0 auto; }
.action-chip__ic svg { width: 17px; height: 17px; }
.action-chip__t { font-size: 14px; font-weight: 600; color: var(--ink-1); }
.safety-badge { display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 600; color: var(--ink-2); background: var(--success-50); color: var(--success); padding: 8px 14px; border-radius: 999px; }
.safety-badge svg { width: 15px; height: 15px; }

/* ───────── provider cards (infra) ───────── */
.provider-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
@media (max-width: 880px){ .provider-grid { grid-template-columns: 1fr; max-width: 460px; margin-left:auto; margin-right:auto; } }
.provider-card { background: var(--surface); border-radius: var(--r-xl); padding: 26px; box-shadow: var(--shadow-sm), 0 0 0 1px var(--hairline); transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.provider-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md), 0 0 0 1px var(--hairline-strong); }
.provider-card__head { display: flex; align-items: center; gap: 12px; }
.provider-logo { width: 44px; height: 44px; border-radius: 11px; background: var(--bg-tint); display: grid; place-items: center; flex: 0 0 auto; }
.provider-card__name { font-size: 16px; font-weight: 700; color: var(--ink-1); }
.provider-card__tag { font-size: 12.5px; color: var(--ink-3); margin-top: 2px; }
.provider-card__price { font-family: 'Instrument Sans', sans-serif; font-size: 34px; font-weight: 700; letter-spacing: -.03em; color: var(--ink); margin-top: 20px; }
.provider-card__price span { font-size: 13px; font-weight: 500; color: var(--ink-3); letter-spacing: 0; }
.provider-card__feats { list-style: none; padding: 0; margin: 18px 0 0; display: flex; flex-direction: column; gap: 11px; }
.provider-card__feats li { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: var(--ink-2); }
.provider-card__feats li svg { width: 16px; height: 16px; color: var(--success); flex: 0 0 auto; margin-top: 2px; }

/* ───────── agency grid ───────── */
.agency-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(36px, 6vw, 80px); align-items: center; }
@media (max-width: 900px){ .agency-grid { grid-template-columns: 1fr; gap: 40px; } }
.agency-feats { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 32px; }
@media (max-width: 520px){ .agency-feats { grid-template-columns: 1fr; } }
.agency-feat__ic { width: 40px; height: 40px; border-radius: 11px; background: var(--primary-soft); color: var(--primary); display: grid; place-items: center; margin-bottom: 13px; }
.agency-feat__ic svg { width: 20px; height: 20px; }
.agency-feat h4 { font-size: 16.5px; }
.agency-feat p { font-size: 13.5px; color: var(--ink-3); margin-top: 6px; line-height: 1.5; }
.ws-mock { background: var(--surface); border-radius: var(--r-2xl); padding: 22px; box-shadow: var(--shadow-lg), 0 0 0 1px var(--hairline); }
.ws-mock__head { display: flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--ink-4); margin-bottom: 14px; }
.ws-item2 { display: flex; align-items: center; gap: 12px; padding: 13px; border-radius: var(--r-md); margin-bottom: 8px; box-shadow: inset 0 0 0 1px var(--hairline); }
.ws-item2.on { background: var(--primary-soft); box-shadow: inset 0 0 0 1px var(--primary-200); }
.ws-item2__av { width: 36px; height: 36px; border-radius: 9px; display: grid; place-items: center; color: #fff; font-weight: 700; font-size: 13px; flex: 0 0 auto; }
.ws-item2__name { font-size: 14px; font-weight: 600; color: var(--ink-1); }
.ws-item2__meta { font-size: 12px; color: var(--ink-3); margin-top: 1px; }
.ws-item2__count { margin-left: auto; font-size: 12px; font-weight: 600; color: var(--primary); }
.ws-mock__team { display: flex; align-items: center; gap: 12px; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--hairline); }
.ws-mock__avatars { display: inline-flex; }
.ws-mock__avatars span { width: 30px; height: 30px; border-radius: 50%; border: 2px solid var(--surface); margin-left: -8px; display: grid; place-items: center; font-size: 11px; font-weight: 700; color: #fff; }
.ws-mock__avatars span:first-child { margin-left: 0; }
.ws-mock__teamlbl { font-size: 12.5px; color: var(--ink-3); font-weight: 500; }

/* ───────── TESTIMONIALS ───────── */
.tcards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
@media (max-width: 900px){ .tcards { grid-template-columns: 1fr; max-width: 540px; margin-left: auto; margin-right: auto; } }
.tcard { background: var(--surface); border-radius: var(--r-xl); padding: 28px; box-shadow: var(--shadow-sm), 0 0 0 1px var(--hairline); display: flex; flex-direction: column; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.tcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-md), 0 0 0 1px var(--hairline-strong); }
.tcard__stars { display: flex; gap: 2px; color: var(--amber); margin-bottom: 16px; }
.tcard__stars svg { width: 16px; height: 16px; }
.tcard__quote { font-size: 17.5px; color: var(--ink-1); line-height: 1.55; flex: 1; letter-spacing: -.01em; }
.tcard__quote b { color: var(--ink); font-weight: 700; }
.tcard__person { display: flex; align-items: center; gap: 12px; margin-top: 24px; }
.tcard__avatar { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; font-weight: 700; font-size: 15px; color: #fff; flex: 0 0 auto; }
.tcard__name { font-size: 15.5px; font-weight: 700; color: var(--ink-1); }
.tcard__role { font-size: 14px; color: var(--ink-3); }
.tfeature { margin-top: 20px; background: var(--bg-tint); border-radius: var(--r-2xl); padding: clamp(32px,5vw,56px); display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: center; box-shadow: 0 0 0 1px var(--hairline); }
@media (max-width: 820px){ .tfeature { grid-template-columns: 1fr; gap: 28px; } }
.tfeature__q { font-family: 'Instrument Sans', sans-serif; font-size: clamp(20px,2.6vw,29px); font-weight: 500; letter-spacing: -.02em; line-height: 1.35; color: var(--ink); }
.tfeature__q .hl { color: var(--primary); }
.tfeature__meta { display: flex; align-items: center; gap: 14px; margin-top: 26px; }
.tfeature__big { display: grid; gap: 16px; }
.tfeature__statbox { background: var(--surface); border-radius: var(--r-lg); padding: 20px 22px; box-shadow: var(--shadow-xs), 0 0 0 1px var(--hairline); }
.tfeature__statbox .v { font-family: 'Instrument Sans', sans-serif; font-size: 34px; font-weight: 700; letter-spacing: -.03em; color: var(--primary); font-variant-numeric: tabular-nums; }
.tfeature__statbox .l { font-size: 13.5px; color: var(--ink-3); margin-top: 4px; }

/* ───────── PRICING ───────── */
.price-toggle { display: inline-flex; align-items: center; gap: 8px; margin: 30px auto 0; padding: 5px; background: var(--bg-tint); border-radius: 999px; box-shadow: inset 0 0 0 1px var(--hairline); }
.price-toggle button { height: 38px; padding: 0 20px; border-radius: 999px; font-size: 14px; font-weight: 600; color: var(--ink-3); transition: all .2s var(--ease); display: inline-flex; align-items: center; }
.price-toggle button.on { background: var(--surface); color: var(--ink); box-shadow: var(--shadow-sm); }
.price-toggle .save { font-size: 11.5px; font-weight: 700; color: var(--success); background: var(--success-50); padding: 2px 7px; border-radius: 999px; margin-left: 6px; }
.pricing-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; margin-top: 48px; align-items: stretch; }
@media (max-width: 1080px){ .pricing-grid { grid-template-columns: repeat(2,1fr); max-width: 760px; margin-left:auto; margin-right:auto; } }
@media (max-width: 600px){ .pricing-grid { grid-template-columns: 1fr; max-width: 440px; } }
.plan { position: relative; background: var(--surface); border-radius: var(--r-2xl); padding: 30px 26px; box-shadow: var(--shadow-sm), 0 0 0 1px var(--hairline); display: flex; flex-direction: column; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.plan:hover { transform: translateY(-4px); }
.plan--featured { background: linear-gradient(165deg, var(--night) 0%, var(--night-2) 100%); color: #fff; box-shadow: var(--shadow-ember); }
.plan__badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); white-space: nowrap; font-size: 11px; font-weight: 700; letter-spacing: .03em; text-transform: uppercase; color: #fff; background: var(--primary); padding: 5px 14px; border-radius: 999px; box-shadow: 0 6px 16px -6px rgba(233,99,33,.55); }
.plan__name { font-size: 14px; font-weight: 700; letter-spacing: .03em; text-transform: uppercase; color: var(--ink-3); }
.plan--featured .plan__name { color: var(--primary-200); }
.plan__desc { font-size: 13.5px; color: var(--ink-3); margin-top: 8px; min-height: 38px; line-height: 1.45; }
.plan--featured .plan__desc { color: var(--night-ink-3); }
.plan__price { display: flex; align-items: baseline; gap: 4px; margin-top: 16px; }
.plan__price .amt { font-family: 'Instrument Sans', sans-serif; font-size: 46px; font-weight: 700; letter-spacing: -.04em; color: var(--ink); font-variant-numeric: tabular-nums; }
.plan--featured .plan__price .amt { color: #fff; }
.plan__price .per { font-size: 14px; color: var(--ink-3); font-weight: 500; }
.plan .btn { margin-top: 22px; width: 100%; }
.plan__divider { height: 1px; background: var(--hairline); margin: 22px 0 0; }
.plan--featured .plan__divider { background: var(--night-hair); }
.plan__feats { list-style: none; padding: 0; margin: 22px 0 0; display: flex; flex-direction: column; gap: 12px; }
.plan__feats li { display: flex; gap: 11px; align-items: flex-start; font-size: 15px; color: var(--ink-2); }
.plan--featured .plan__feats li { color: #e6ddd2; }
.plan__feats .tick { width: 20px; height: 20px; border-radius: 6px; background: var(--primary-soft); color: var(--primary); display: grid; place-items: center; flex: 0 0 auto; margin-top: 1px; }
.plan--featured .plan__feats .tick { background: rgba(255,255,255,.12); color: var(--primary-200); }
.plan__feats .tick svg { width: 12px; height: 12px; }
.includes-strip { margin-top: 32px; background: var(--surface); border-radius: var(--r-2xl); padding: 26px 30px; box-shadow: var(--shadow-sm), 0 0 0 1px var(--hairline); }
.includes-strip__lbl { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--ink-4); }
.includes-strip__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px 18px; margin-top: 16px; }
@media (max-width: 760px){ .includes-strip__grid { grid-template-columns: 1fr 1fr; } }
.includes-strip__grid span { display: flex; align-items: center; gap: 9px; font-size: 15px; font-weight: 500; color: var(--ink-2); }
.includes-strip__grid svg { width: 17px; height: 17px; color: var(--success); flex: 0 0 auto; }
.addons { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 22px; }
@media (max-width: 880px){ .addons { grid-template-columns: 1fr; max-width: 460px; margin-left:auto; margin-right:auto; } }
.addon { background: var(--bg-tint); border-radius: var(--r-xl); padding: 22px; box-shadow: inset 0 0 0 1px var(--hairline); }
.addon__t { display: flex; align-items: center; gap: 10px; font-size: 15.5px; font-weight: 700; color: var(--ink-1); }
.addon__t .ic { width: 32px; height: 32px; border-radius: 9px; background: var(--surface); color: var(--primary); display: grid; place-items: center; box-shadow: var(--shadow-xs); }
.addon__t .ic svg { width: 17px; height: 17px; }
.addon__p { font-size: 13.5px; color: var(--ink-3); margin-top: 10px; line-height: 1.55; }
.addon__price { font-size: 13px; font-weight: 700; color: var(--primary); margin-top: 12px; }

/* ───────── FINAL CTA ───────── */
.cta-final__card { position: relative; overflow: hidden; text-align: center; background: #f9f6f0; border-radius: var(--r-3xl); padding: clamp(52px, 8vw, 92px) 28px; color: var(--ink-1); box-shadow: inset 0 0 0 1px var(--hairline); }
.cta-final__card::after { content:''; position:absolute; right:-12%; bottom:-30%; width:60%; height:120%; background: radial-gradient(closest-side, rgba(233,99,33,.10), transparent 70%); pointer-events:none; }
.cta-final__card::before { content:''; position:absolute; inset:0; background-image: radial-gradient(circle at 1px 1px, rgba(26,20,14,.05) 1px, transparent 0); background-size: 26px 26px; -webkit-mask-image: radial-gradient(600px 360px at 50% 0%, #000, transparent 70%); mask-image: radial-gradient(600px 360px at 50% 0%, #000, transparent 70%); }
.cta-final__card > * { position: relative; }
.cta-final h2 { color: var(--ink); font-size: clamp(32px, 5vw, 54px); }
.cta-final p { color: var(--ink-3); font-size: 20px; margin: 18px auto 0; max-width: 60rem; line-height: 1.55; }
.cta-final__btns { display: flex; gap: 14px; justify-content: center; margin-top: 34px; flex-wrap: wrap; }
.cta-final__note { margin-top: 20px; font-size: 13.5px; color: var(--ink-4); }

/* ───────── FOOTER ───────── */
.footer { background: var(--night); color: #fff; padding: 56px 0 36px; }
.footer__top { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 32px; }
@media (max-width: 900px){ .footer__top { grid-template-columns: 1fr 1fr; gap: 36px 24px; } }
.footer__brand .nav__logo { color: #fff; }
.footer__brand .nav__logo .mark { background: url('../img/mo-icon.svg') center/contain no-repeat; color: transparent; box-shadow: none; }
.footer__brand p { color: var(--night-ink-3); font-size: 15px; margin-top: 16px; max-width: 300px; line-height: 1.55; }
.footer__social { display: flex; gap: 10px; margin-top: 20px; }
.footer__social a { width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center; color: #cdc4b7; box-shadow: inset 0 0 0 1px var(--night-hair); transition: background .2s, color .2s, transform .2s; }
.footer__social a:hover { background: rgba(255,255,255,.08); color: #fff; transform: translateY(-2px); }
.footer__col h5 { font-size: 14px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: #fff; margin: 0 0 16px; }
.footer__col a { display: block; font-size: 15px; color: var(--night-ink-3); padding: 7px 0; transition: color .15s; }
.footer__col a:hover { color: #fff; }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 52px; padding-top: 26px; border-top: 1px solid var(--night-hair); flex-wrap: wrap; }
.footer__bottom p { font-size: 13px; color: var(--night-ink-3); }
.footer__bottom .links { display: flex; gap: 22px; }
.footer__bottom .links a { font-size: 13px; color: var(--night-ink-3); transition: color .15s; }
.footer__bottom .links a:hover { color: #fff; }

/* ───────── feature-page hero ───────── */
.fhero { padding-top: 132px; padding-bottom: 44px; position: relative; overflow: hidden; }
.fhero__bg { position: absolute; inset: 0; z-index: 0; background: radial-gradient(60% 70% at 78% 18%, rgba(233,99,33,.14), transparent 70%), radial-gradient(50% 60% at 12% 8%, rgba(224,146,42,.09), transparent 70%); pointer-events: none; }
.fhero__grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.02fr 1.12fr; gap: 56px; align-items: center; }
.fhero__copy h1 { font-size: clamp(38px, 4.6vw, 58px); line-height: 1.05; letter-spacing: -0.03em; margin: 18px 0 0; }
.fhero__copy .lead { margin-top: 20px; max-width: 580px; font-size: 19.5px; color: var(--ink-3); line-height: 1.6; }
.fhero__cta { display: flex; gap: 12px; margin-top: 30px; flex-wrap: wrap; }
.fhero__trust { display: flex; align-items: center; gap: 9px; margin-top: 24px; font-size: 14px; color: var(--ink-3); }
.fhero__avs { display: inline-flex; }
.fhero__avs span { width: 26px; height: 26px; border-radius: 999px; border: 2px solid var(--bg); margin-left: -8px; display: grid; place-items: center; font-size: 10px; font-weight: 700; color: #fff; }
.fhero__avs span:first-child { margin-left: 0; }
.fhero__media { position: relative; }
@media (max-width: 920px){ .fhero__grid { grid-template-columns: 1fr; gap: 38px; } .fhero { padding-top: 100px; } }

/* ───────── FAQ accordion ───────── */
.faq { max-width: 900px; margin: 40px auto 0; display: flex; flex-direction: column; gap: 10px; }
.faq__item { border: 1px solid var(--hairline); border-radius: var(--r-lg); background: var(--surface); overflow: hidden; transition: box-shadow .2s var(--ease), border-color .2s var(--ease); }
.faq__item[open] { box-shadow: var(--shadow-md); border-color: var(--hairline-strong); }
.faq__q { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 21px 24px; font-size: 17.5px; font-weight: 650; color: var(--ink-1); }
.faq__q::-webkit-details-marker { display: none; }
.faq__plus { flex: 0 0 auto; width: 22px; height: 22px; position: relative; color: var(--primary); transition: transform .25s var(--ease); }
.faq__item[open] .faq__plus { transform: rotate(45deg); }
.faq__plus::before, .faq__plus::after { content: ''; position: absolute; background: currentColor; border-radius: 2px; }
.faq__plus::before { left: 3px; right: 3px; top: 10px; height: 2px; }
.faq__plus::after { top: 3px; bottom: 3px; left: 10px; width: 2px; }
.faq__a { padding: 0 24px 22px; font-size: 15.5px; line-height: 1.6; color: var(--ink-3); }

/* ════════ SALESHANDY-STYLE NARRATIVE COMPONENTS ════════ */

/* announcement bar */
.announce { position: fixed; top: 0; left: 0; right: 0; z-index: 110; background: var(--night); color: #fff; height: 42px; display: flex; align-items: center; justify-content: center; gap: 12px; font-size: 13.5px; font-weight: 500; padding: 0 16px; transition: transform .3s var(--ease); }
.announce.up { transform: translateY(-100%); }
.announce b { font-weight: 700; }
.announce a { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; color: #fff; background: var(--ember); padding: 5px 12px; border-radius: 999px; font-size: 12.5px; }
.announce a svg { width: 14px; height: 14px; }
@media (max-width: 640px){ .announce { font-size: 12px; gap: 8px; } .announce .announce__txt { display: none; } }
body.has-annc .nav { top: 42px; }
body.has-annc .nav.scrolled { top: 0; }

/* hero feature tabs */
.hero__tabs { display: inline-flex; flex-wrap: wrap; justify-content: center; gap: 6px; margin: 26px auto 0; padding: 5px; background: var(--bg-tint); border-radius: 999px; box-shadow: inset 0 0 0 1px var(--hairline); }
.hero__tab { display: inline-flex; align-items: center; gap: 7px; height: 38px; padding: 0 16px; border-radius: 999px; font-size: 13.5px; font-weight: 600; color: var(--ink-3); transition: all .18s var(--ease); }
.hero__tab svg { width: 15px; height: 15px; }
.hero__tab.on { background: var(--surface); color: var(--ink-1); box-shadow: var(--shadow-sm); }
.hero__tab.on svg { color: var(--primary); }

/* SSO row */
.hero__or { font-size: 12.5px; color: var(--ink-4); margin: 16px 0 10px; font-weight: 500; }
.sso-row { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.btn--sso { background: var(--surface); color: var(--ink-1); box-shadow: inset 0 0 0 1px var(--hairline-strong); height: 44px; padding: 0 18px; }
.btn--sso:hover { background: var(--bg-tint); transform: translateY(-2px); }
.btn--sso svg { width: 18px; height: 18px; }

/* ratings row */
.ratings { display: flex; align-items: center; justify-content: center; gap: 26px; margin-top: 26px; flex-wrap: wrap; }
.rating { display: inline-flex; align-items: center; gap: 9px; }
.rating__logo { font-family: 'Instrument Sans', sans-serif; font-weight: 700; font-size: 14px; color: var(--ink-2); }
.rating__logo span { display: inline-grid; place-items: center; width: 22px; height: 22px; border-radius: 5px; color: #fff; font-size: 12px; margin-right: 6px; vertical-align: -5px; }
.rating__stars { display: inline-flex; gap: 1px; color: var(--ember); }
.rating__stars svg { width: 14px; height: 14px; }
.rating__score { font-size: 13.5px; font-weight: 700; color: var(--ink-1); font-family: 'JetBrains Mono', monospace; }
.rating__score span { color: var(--ink-4); font-weight: 500; }

/* trust badges */
.trust-badges { display: flex; align-items: center; justify-content: center; gap: 14px; margin-top: 22px; flex-wrap: wrap; }
.trust-badges span { display: inline-flex; align-items: center; gap: 8px; font-size: 12.5px; font-weight: 700; letter-spacing: .02em; color: var(--ink-3); padding: 7px 13px; border-radius: 9px; box-shadow: inset 0 0 0 1px var(--hairline); background: var(--surface); }
.trust-badges svg { width: 16px; height: 16px; color: var(--success); }

/* ════ PAIN narrative ════ */
.pain { background: var(--night); color: #fff; position: relative; overflow: hidden; }
.pain::before { content:''; position:absolute; inset:0; background: radial-gradient(700px 380px at 15% 0%, rgba(233,99,33,.22), transparent 60%), radial-gradient(600px 320px at 90% 110%, rgba(224,146,42,.16), transparent 60%); pointer-events:none; }
.pain .wrap { position: relative; }
.pain__grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(36px,6vw,72px); align-items: center; }
@media (max-width: 900px){ .pain__grid { grid-template-columns: 1fr; gap: 36px; } }
.pain__lines { display: flex; flex-direction: column; gap: 14px; }
.pain__line { display: flex; align-items: center; gap: 13px; font-size: 16.5px; color: #c7cee0; line-height: 1.4; }
.pain__line .x { width: 26px; height: 26px; border-radius: 50%; background: rgba(210,100,31,.16); color: #f0a374; display: grid; place-items: center; flex: 0 0 auto; }
.pain__line .x svg { width: 14px; height: 14px; }
.pain__line s { text-decoration-color: rgba(255,255,255,.35); }
.pain__punch { font-family: 'Instrument Sans', sans-serif; font-size: clamp(26px,3.6vw,40px); font-weight: 600; letter-spacing: -.02em; line-height: 1.12; color: #fff; }
.pain__punch em { font-style: normal; color: var(--ember); }
.pain__sub { font-size: 16px; color: var(--night-ink-3); margin-top: 18px; line-height: 1.6; }
.pain__arrow { display: inline-flex; align-items: center; gap: 8px; margin-top: 22px; font-size: 14.5px; font-weight: 700; color: #fff; }
.pain__arrow svg { width: 18px; height: 18px; color: var(--ember); }

/* ════ numbered STEPS ════ */
.steps-intro { text-align: center; max-width: 720px; margin: 0 auto; }
.steps-intro h2 em { font-style: normal; color: var(--primary); }
.step-row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px,6vw,84px); align-items: center; }
.step-row + .step-row { margin-top: clamp(64px,9vw,112px); }
.step-row--flip .step-row__media { order: -1; }
@media (max-width: 900px){ .step-row { grid-template-columns: 1fr; gap: 32px; } .step-row--flip .step-row__media { order: 0; } }
.step__num { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 12px; background: var(--primary-soft); color: var(--primary); font-family: 'Instrument Sans', sans-serif; font-weight: 700; font-size: 19px; box-shadow: inset 0 0 0 1px var(--primary-200); }
.step__kicker { display: inline-flex; align-items: center; gap: 9px; margin-top: 18px; font-size: 13.5px; font-weight: 600; color: var(--ink-2); background: var(--surface); box-shadow: inset 0 0 0 1px var(--hairline); padding: 7px 16px 7px 8px; border-radius: 999px; }
.step__kicker svg { width: 11px; height: 11px; padding: 4px; background: var(--danger); color: #fff; border-radius: 50%; box-sizing: content-box; flex: 0 0 auto; }
.step__eyebrow { font-size: 12.5px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--ink-4); margin-top: 6px; }
.step-row__copy h3 { font-size: clamp(27px,3.4vw,40px); margin-top: 8px; }
.step-row__copy h3 em { font-style: normal; color: var(--primary); }
.step-row__copy p.lead { font-size: 18.5px; color: var(--ink-3); margin-top: 14px; line-height: 1.6; }

/* mini mockup card (clean, for steps) */
.mini { background: linear-gradient(180deg, #ffffff, #fbfcff); border-radius: var(--r-xl); box-shadow: var(--shadow-xl), 0 0 0 1px var(--hairline); padding: 24px 22px 22px; position: relative; overflow: hidden; }
.mini::before { content:''; position:absolute; top:0; left:0; right:0; height:4px; background: linear-gradient(90deg, var(--primary) 0%, #f0a35a 50%, var(--ember) 100%); }
.mini__glow { position: absolute; inset: -12% -6% auto -6%; height: 58%; z-index: -1; background: radial-gradient(closest-side, var(--primary-soft), transparent 75%); filter: blur(30px); }
.mini__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; padding-bottom: 14px; border-bottom: 1px solid var(--hairline); }
.mini__pill { font-size: 11px; font-weight: 700; color: var(--success); background: var(--success-50); padding: 4px 10px 4px 9px; border-radius: 999px; display: inline-flex; align-items: center; gap: 6px; }
.mini__pill::before { content:''; width: 6px; height: 6px; border-radius: 50%; background: var(--success-bright); box-shadow: 0 0 0 3px rgba(31,175,97,.16); }
.mini__title { font-size: 13px; font-weight: 700; color: var(--ink-2); display: inline-flex; align-items: center; gap: 8px; }
.mini__title svg { width: 16px; height: 16px; color: #fff; background: var(--primary); border-radius: 7px; padding: 5px; box-sizing: content-box; box-shadow: 0 4px 10px -3px var(--primary-glow); }
.mini__pill { font-size: 11px; font-weight: 700; color: var(--success); background: var(--success-50); padding: 4px 10px; border-radius: 999px; }
.mini__row { display: flex; align-items: center; gap: 11px; padding: 12px 13px; border-radius: 11px; box-shadow: inset 0 0 0 1px var(--hairline); background: var(--surface); margin-bottom: 9px; font-size: 13px; transition: box-shadow .2s var(--ease), transform .2s var(--ease); }
.mini__row:hover { box-shadow: inset 0 0 0 1px var(--hairline-strong), var(--shadow-sm); transform: translateY(-1px); }
.mini__row .av { width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center; color: #fff; font-weight: 700; font-size: 11px; flex: 0 0 auto; box-shadow: 0 3px 8px -3px rgba(16,24,48,.4); }
.mini__row .nm { font-weight: 600; color: var(--ink-1); }
.mini__row .mt { font-size: 11.5px; color: var(--ink-3); }
.mini__tag { margin-left: auto; font-size: 11px; font-weight: 700; padding: 3px 9px; border-radius: 999px; }
.mini__tag.g { color: var(--success); background: var(--success-50); }
.mini__tag.b { color: var(--primary); background: var(--primary-soft); }
.mini__tag.a { color: var(--warn); background: var(--warn-50); }
.mini__foot { display: flex; align-items: center; justify-content: space-between; margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--hairline); font-size: 12px; color: var(--ink-3); }
.mini__foot b { font-family: 'JetBrains Mono', monospace; color: var(--ink-1); }
.mini__chips { display: flex; flex-wrap: wrap; gap: 6px; }
.mini__chip { font-size: 11.5px; font-weight: 600; color: var(--ink-2); background: var(--bg-tint); padding: 5px 11px; border-radius: 999px; box-shadow: inset 0 0 0 1px var(--hairline); }
.mini__chip.on { background: var(--primary); color: #fff; box-shadow: none; }
.mini__metric { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.mini__metric > div { background: var(--primary-soft); border-radius: 11px; padding: 13px; box-shadow: inset 0 0 0 1px var(--primary-100); }
.mini__metric .k { font-size: 10.5px; color: var(--ink-3); font-weight: 600; }
.mini__metric .v { font-family: 'JetBrains Mono', monospace; font-size: 22px; font-weight: 600; color: var(--ink-1); margin-top: 4px; letter-spacing: -.02em; }
.mini__metric .v.g { color: var(--success); }
/* sequence channel timeline */
.seqline { display: flex; flex-direction: column; gap: 0; }
.seqstep { display: flex; align-items: center; gap: 12px; padding: 9px 0; position: relative; }
.seqstep__ic { width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center; flex: 0 0 auto; color: #fff; }
.seqstep__ic svg { width: 16px; height: 16px; }
.seqstep__t { font-size: 13px; font-weight: 600; color: var(--ink-1); }
.seqstep__d { font-size: 11.5px; color: var(--ink-4); margin-left: auto; font-family: 'JetBrains Mono', monospace; }
.seqstep:not(:last-child)::after { content:''; position: absolute; left: 16px; top: 43px; bottom: -9px; width: 2px; background: var(--hairline); }

/* ════ STATS band ════ */
.statsband { background: var(--night); color: #fff; border-radius: var(--r-3xl); padding: clamp(40px,6vw,64px) clamp(28px,5vw,56px); position: relative; overflow: hidden; }
.statsband::before { content:''; position:absolute; inset:0; background: radial-gradient(600px 320px at 10% 0%, rgba(233,99,33,.30), transparent 60%), radial-gradient(560px 300px at 95% 110%, rgba(224,146,42,.18), transparent 60%); }
.statsband__grid { position: relative; display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
@media (max-width: 760px){ .statsband__grid { grid-template-columns: repeat(2,1fr); gap: 32px 20px; } }
.statb__v { font-family: 'Instrument Sans', sans-serif; font-size: clamp(34px,4.6vw,52px); font-weight: 600; letter-spacing: -.03em; line-height: 1; color: #fff; font-variant-numeric: tabular-nums; }
.statb__l { color: var(--night-ink-3); font-size: 14px; font-weight: 500; margin-top: 12px; line-height: 1.4; }
.statb__div { height: 1px; background: var(--night-hair); margin-top: 14px; width: 40px; }

/* ════ PERSONAS ════ */
.personas { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; margin-top: 44px; }
@media (max-width: 760px){ .personas { grid-template-columns: 1fr; } }
.persona { background: var(--surface); border-radius: var(--r-xl); padding: 28px; box-shadow: var(--shadow-sm), 0 0 0 1px var(--hairline); transition: transform .3s var(--ease), box-shadow .3s var(--ease); position: relative; overflow: hidden; }
.persona:hover { transform: translateY(-4px); box-shadow: var(--shadow-md), 0 0 0 1px var(--hairline-strong); }
.persona__ic { width: 46px; height: 46px; border-radius: 12px; background: var(--primary-soft); color: var(--primary); display: grid; place-items: center; margin-bottom: 16px; }
.persona__ic svg { width: 23px; height: 23px; }
.persona h4 { font-size: 21px; }
.persona p { font-size: 16px; color: var(--ink-3); margin-top: 9px; line-height: 1.55; }
.persona__tag { display: inline-flex; align-items: center; gap: 7px; margin-top: 16px; font-size: 13.5px; font-weight: 700; color: var(--primary); }
.persona__tag svg { width: 15px; height: 15px; }

/* ════ COMPARISON table ════ */
.cmp { width: 100%; border-collapse: separate; border-spacing: 0; margin-top: 40px; background: var(--surface); border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-sm), 0 0 0 1px var(--hairline); }
.cmp th, .cmp td { padding: 18px 22px; text-align: left; font-size: 15.5px; border-bottom: 1px solid var(--hairline); }
.cmp thead th { font-family: 'Instrument Sans', sans-serif; font-size: 17px; font-weight: 600; color: var(--ink-1); background: var(--bg-tint); }
.cmp thead th.us { background: var(--primary); color: #fff; }
.cmp td.feat { font-weight: 600; color: var(--ink-1); }
.cmp td { color: var(--ink-2); }
.cmp td.us { background: var(--primary-soft); font-weight: 600; }
.cmp tr:last-child td { border-bottom: none; }
.cmp .yes { color: var(--success); display: inline-flex; align-items: center; gap: 7px; font-weight: 600; }
.cmp .yes svg { width: 17px; height: 17px; }
.cmp .no { color: var(--ink-4); display: inline-flex; align-items: center; gap: 7px; }
.cmp .no svg { width: 16px; height: 16px; }
@media (max-width: 720px){ .cmp th, .cmp td { padding: 12px 12px; font-size: 12.5px; } }

/* ════ PLAN feature comparison ════ */
.pcmp-wrap { margin-top: 36px; overflow-x: auto; border-radius: var(--r-2xl); background: var(--surface); box-shadow: var(--shadow-sm), 0 0 0 1px var(--hairline); -webkit-overflow-scrolling: touch; }
.pcmp { width: 100%; min-width: 940px; border-collapse: separate; border-spacing: 0; }
.pcmp th, .pcmp td { padding: 15px 18px; text-align: center; border-bottom: 1px solid var(--hairline); font-size: 14.5px; color: var(--ink-2); }
.pcmp tbody tr:last-child td { border-bottom: none; }
.pcmp thead th { vertical-align: top; padding: 22px 16px 20px; }
.pcmp .pcmp-feat { text-align: left; font-weight: 500; color: var(--ink-2); white-space: nowrap; }
.pcmp .pcmp-corner { text-align: left; vertical-align: bottom; }
.pcmp .pcmp-corner b { font-family: 'Instrument Sans', sans-serif; font-size: 15px; font-weight: 600; color: var(--ink-1); }
.pcmp__plan { display: flex; flex-direction: column; align-items: center; gap: 9px; position: relative; }
.pcmp__pic { width: 38px; height: 38px; border-radius: 10px; background: var(--bg-tint); color: var(--ink-2); display: grid; place-items: center; box-shadow: inset 0 0 0 1px var(--hairline); }
.pcmp__pic svg { width: 19px; height: 19px; }
.pcmp__pname { font-size: 13px; font-weight: 700; letter-spacing: .03em; text-transform: uppercase; color: var(--ink-3); }
.pcmp__price { display: flex; align-items: baseline; gap: 3px; min-height: 36px; }
.pcmp__price .amt-inline { font-family: 'Instrument Sans', sans-serif; font-size: 30px; font-weight: 700; letter-spacing: -.03em; color: var(--ink); font-variant-numeric: tabular-nums; line-height: 1; }
.pcmp__price .per { font-size: 12px; color: var(--ink-3); font-weight: 500; }
.pcmp__talk { font-family: 'Instrument Sans', sans-serif; font-size: 22px; font-weight: 700; color: var(--ink); min-height: 36px; display: flex; align-items: center; }
.pcmp__plan .btn { width: 100%; min-width: 116px; margin-top: 2px; }
.pcmp__rec-badge { white-space: nowrap; background: var(--primary); color: #fff; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; padding: 3px 11px; border-radius: 999px; box-shadow: 0 6px 16px -6px rgba(233,99,33,.55); }
.pcmp th.pcmp--rec, .pcmp td.pcmp--rec { background: var(--primary-50); }
.pcmp th.pcmp--rec { border-top-left-radius: var(--r-lg); border-top-right-radius: var(--r-lg); }
.pcmp__group td { text-align: left; background: var(--bg-tint); font-family: 'Instrument Sans', sans-serif; font-size: 14px; font-weight: 700; color: var(--ink-1); padding: 12px 22px; letter-spacing: .01em; border-bottom: 1px solid var(--hairline); }
.pcmp-yes { display: inline-flex; align-items: center; justify-content: center; width: 24px; height: 24px; border-radius: 7px; background: var(--success-50); color: var(--success); }
.pcmp-yes svg { width: 14px; height: 14px; }
.pcmp-dash { color: var(--ink-4); font-size: 17px; line-height: 1; }
.pcmp-val { font-weight: 600; color: var(--ink-1); }
.pcmp-coming { display: inline-block; margin-left: 8px; background: var(--primary-50); color: var(--primary); font-size: 10px; font-weight: 700; padding: 2px 7px; border-radius: 6px; vertical-align: middle; white-space: nowrap; }
.pcmp-scrollhint { display: none; text-align: center; font-size: 12.5px; color: var(--ink-4); margin-top: 12px; }
@media (max-width: 980px){ .pcmp-scrollhint { display: block; } }

/* ════ FREE TOOLS ════ */
.tools-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 44px; }
@media (max-width: 900px){ .tools-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px){ .tools-grid { grid-template-columns: 1fr; } }
.tool-card { display: block; background: var(--surface); border-radius: var(--r-xl); padding: 24px; box-shadow: var(--shadow-sm), 0 0 0 1px var(--hairline); transition: transform .25s var(--ease), box-shadow .25s var(--ease); }
.tool-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md), 0 0 0 1px var(--hairline-strong); }
.tool-card__ic { width: 46px; height: 46px; border-radius: 12px; background: var(--primary-soft); color: var(--primary); display: grid; place-items: center; margin-bottom: 16px; }
.tool-card__ic svg { width: 23px; height: 23px; }
.tool-card h4 { font-size: 18.5px; }
.tool-card p { font-size: 14.5px; color: var(--ink-3); margin-top: 8px; line-height: 1.55; }
.tool-card__link { display: inline-flex; align-items: center; gap: 6px; margin-top: 14px; font-size: 13.5px; font-weight: 700; color: var(--primary); }
.tool-card__link svg { width: 15px; height: 15px; transition: transform .2s var(--ease); }
.tool-card:hover .tool-card__link svg { transform: translateX(3px); }

/* ───────── HERO JOURNEY rail ───────── */
.jrail { position: relative; display: grid; grid-template-columns: repeat(6, 1fr); max-width: 800px; margin: 30px auto 2px; padding: 0 2px; }
.jrail__track { position: absolute; left: calc(8.33% + 1px); right: calc(8.33% + 1px); top: 19px; height: 2px; background: var(--hairline-strong); border-radius: 2px; }
.jrail__fill { position: absolute; left: 0; top: 0; bottom: 0; width: 0; background: linear-gradient(90deg, var(--primary), var(--ember)); border-radius: 2px; transition: width .35s var(--ease); }
.jstep { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 9px; cursor: pointer; background: none; padding: 0; font-family: inherit; }
.jstep__dot { width: 40px; height: 40px; border-radius: 50%; background: var(--surface); box-shadow: inset 0 0 0 2px var(--hairline-strong); color: var(--ink-4); display: grid; place-items: center; transition: transform .35s var(--ease-spring), background .3s var(--ease), box-shadow .3s var(--ease), color .3s var(--ease); }
.jstep__dot svg { width: 18px; height: 18px; }
.jstep__lbl { font-size: 11.5px; font-weight: 600; color: var(--ink-4); text-align: center; max-width: 100px; line-height: 1.25; transition: color .3s var(--ease); }
.jstep.done .jstep__dot { background: var(--primary); box-shadow: none; color: #fff; }
.jstep.done .jstep__lbl { color: var(--ink-2); }
.jstep.on .jstep__dot { background: var(--primary); box-shadow: 0 0 0 5px var(--primary-soft), 0 8px 18px -6px var(--primary-glow); color: #fff; transform: scale(1.14); }
.jstep.on .jstep__lbl { color: var(--ink-1); font-weight: 700; }
@media (max-width: 680px){ .jstep__lbl { display: none; } .jstep__dot { width: 34px; height: 34px; } .jrail__track { top: 16px; } }

/* journey panel helpers */
.mkj-ic { width: 40px; height: 40px; border-radius: 11px; background: var(--primary-soft); color: var(--primary); display: grid; place-items: center; flex: 0 0 auto; }
.mkj-ic svg { width: 20px; height: 20px; }
.mkj-flow { display: flex; justify-content: center; position: relative; }
.mkj-flow::before { content: ''; position: absolute; top: -12px; bottom: -12px; width: 2px; left: 50%; transform: translateX(-50%); background: repeating-linear-gradient(var(--primary-200) 0 4px, transparent 4px 8px); z-index: 0; }
.mkj-flow__btn { position: relative; z-index: 1; display: inline-flex; align-items: center; gap: 7px; font-size: 11.5px; font-weight: 700; color: #fff; background: var(--primary); padding: 7px 14px; border-radius: 999px; box-shadow: 0 8px 18px -8px var(--primary-glow); }
.mkj-flow__btn svg { width: 14px; height: 14px; }
.mkj-prog { height: 5px; border-radius: 999px; background: var(--primary-100); overflow: hidden; margin-top: 9px; }
.mkj-prog > i { display: block; height: 100%; width: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--primary), var(--ember)); }

/* ───────── FEATURE HERO auto-animation ───────── */
.fhero-anim { position: relative; }
.fanim { position: relative; }
.fanim__screen { display: none; }
.fanim__screen.on { display: block; }
.fanim__dots { display: flex; gap: 6px; justify-content: center; padding: 12px 0 14px; background: var(--bg-soft); border-top: 1px solid var(--hairline); }
.fanim__dots > i { width: 6px; height: 6px; border-radius: 999px; background: var(--hairline-strong); transition: width .3s var(--ease), background .3s var(--ease); }
.fanim__dots > i.on { width: 18px; background: var(--primary); }

/* ───────── INTERACTIVE feature showcase (click-to-swap) ───────── */
.ftabset { display: grid; grid-template-columns: minmax(0,0.9fr) minmax(0,1.1fr); gap: clamp(28px,5vw,60px); align-items: center; margin-top: clamp(40px,5vw,60px); }
.ftabset--flip .ftabset__stage { order: -1; }
@media (max-width: 940px){ .ftabset { grid-template-columns: 1fr; gap: 30px; } .ftabset--flip .ftabset__stage { order: 0; } }
.ftabset__list { display: flex; flex-direction: column; gap: 8px; }
.ftab { text-align: left; display: grid; grid-template-columns: auto 1fr; column-gap: 14px; align-items: start; padding: 16px 18px; border-radius: var(--r-lg); background: transparent; box-shadow: inset 0 0 0 1px transparent; transition: background .25s var(--ease), box-shadow .25s var(--ease); cursor: pointer; font-family: inherit; }
.ftab:hover { background: var(--bg-tint); }
.ftab.on { background: var(--surface); box-shadow: var(--shadow-sm), inset 0 0 0 1px var(--hairline); }
.ftab__ic { grid-row: span 3; width: 46px; height: 46px; border-radius: 12px; background: var(--bg-tint); color: var(--ink-4); display: grid; place-items: center; transition: background .25s var(--ease), color .25s var(--ease); }
.ftab__ic svg { width: 23px; height: 23px; }
.ftab.on .ftab__ic { background: var(--primary-soft); color: var(--primary); }
.ftab__tt { align-self: center; font-family: 'Instrument Sans', sans-serif; font-size: 18px; font-weight: 600; color: var(--ink-1); letter-spacing: -.01em; }
.ftab.on .ftab__tt { align-self: end; }
.ftab__ds { font-size: 14.5px; color: var(--ink-3); line-height: 1.5; max-height: 0; opacity: 0; overflow: hidden; transition: max-height .35s var(--ease), opacity .25s var(--ease), margin-top .25s var(--ease); }
.ftab.on .ftab__ds { max-height: 96px; opacity: 1; margin-top: 5px; }
.ftab__prog { grid-column: 2; height: 3px; border-radius: 999px; background: var(--hairline); margin-top: 0; overflow: hidden; max-height: 0; opacity: 0; transition: max-height .35s var(--ease), opacity .25s var(--ease), margin-top .25s var(--ease); }
.ftab.on .ftab__prog { max-height: 10px; opacity: 1; margin-top: 12px; }
.ftab__prog > i { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--primary), var(--ember)); border-radius: 999px; }
.ftab.on .ftab__prog > i { animation: ftabfill var(--ftab-dur, 4600ms) linear forwards; }
@keyframes ftabfill { from { width: 0; } to { width: 100%; } }
.ftabset__stage { position: relative; min-width: 0; }
.ftab-visual { display: none; }
.ftab-visual.on { display: block; }
.ftab-visual .media-frame { box-shadow: var(--shadow-lg), 0 0 0 1px var(--hairline); }

/* FAQ tabs */
.faqtabs { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-top: 28px; }
.faqtab { height: 38px; padding: 0 18px; border-radius: 999px; font-size: 13.5px; font-weight: 600; color: var(--ink-3); box-shadow: inset 0 0 0 1px var(--hairline); transition: all .18s var(--ease); }
.faqtab.on { background: var(--ink-1); color: #fff; box-shadow: none; }

/* ───────── ARTICLE PROSE (blog post body) ───────── */
.article { margin-top: 36px; max-width: 720px; }
.article > *:first-child { margin-top: 0; }
.article h2 { font-family: 'Instrument Sans', sans-serif; font-size: clamp(24px, 2.6vw, 30px); font-weight: 600; letter-spacing: -.02em; line-height: 1.2; color: var(--ink-1); margin: 46px 0 0; }
.article h3 { font-family: 'Instrument Sans', sans-serif; font-size: clamp(19px, 2vw, 22px); font-weight: 600; letter-spacing: -.01em; line-height: 1.3; color: var(--ink-1); margin: 32px 0 0; }
.article h2 + p, .article h3 + p { margin-top: 12px; }
.article p { font-size: 17.5px; line-height: 1.75; color: var(--ink-2); margin: 18px 0 0; }
.article strong { color: var(--ink-1); font-weight: 650; }
.article a:not(.btn) { color: var(--primary); font-weight: 600; text-decoration: none; box-shadow: inset 0 -1px 0 var(--primary-200, #f6c6ab); transition: box-shadow .15s, color .15s; }
.article a:not(.btn):hover { color: var(--primary-hover, #cf4f16); box-shadow: inset 0 -2px 0 var(--primary); }
.article ul { list-style: none; padding: 0; margin: 18px 0 0; display: flex; flex-direction: column; gap: 11px; }
.article ul li { position: relative; padding-left: 28px; font-size: 17px; line-height: 1.65; color: var(--ink-2); }
.article ul li::before { content: ''; position: absolute; left: 4px; top: 11px; width: 7px; height: 7px; border-radius: 50%; background: var(--primary); }
.article ul li strong:first-child { color: var(--ink-1); }
/* numbered step list */
.article ol { list-style: none; counter-reset: step; padding: 0; margin: 20px 0 0; display: flex; flex-direction: column; gap: 12px; }
.article ol li { position: relative; counter-increment: step; padding: 14px 16px 14px 54px; background: var(--bg-tint); border-radius: var(--r-lg); box-shadow: inset 0 0 0 1px var(--hairline); font-size: 16.5px; line-height: 1.5; color: var(--ink-2); }
.article ol li::before { content: counter(step); position: absolute; left: 14px; top: 13px; width: 28px; height: 28px; border-radius: 9px; background: var(--primary); color: #fff; font-family: 'Instrument Sans', sans-serif; font-size: 14px; font-weight: 700; display: grid; place-items: center; }
/* lead/intro callout */
.article .lead-in { font-size: 19px; line-height: 1.7; color: var(--ink-1); font-weight: 500; margin: 0; }
/* table */
.article .table-wrap { margin-top: 26px; overflow-x: auto; border-radius: var(--r-xl); box-shadow: 0 0 0 1px var(--hairline); }
.article table { width: 100%; border-collapse: collapse; background: var(--surface); font-size: 15px; min-width: 560px; }
.article table thead th { text-align: left; font-family: 'Instrument Sans', sans-serif; font-size: 13.5px; font-weight: 700; color: var(--ink-1); background: var(--bg-tint); padding: 14px 16px; border-bottom: 1px solid var(--hairline); }
.article table tbody td { padding: 14px 16px; border-bottom: 1px solid var(--hairline); color: var(--ink-2); line-height: 1.5; vertical-align: top; }
.article table tbody tr:last-child td { border-bottom: 0; }
.article table tbody td:first-child { font-weight: 650; color: var(--ink-1); }
/* FAQ accordion-ish */
.article .faq { margin-top: 18px; display: flex; flex-direction: column; gap: 12px; }
.article .faq__q { display: block; cursor: default; background: var(--surface); border-radius: var(--r-lg); padding: 18px 20px; box-shadow: 0 0 0 1px var(--hairline); }
.article .faq__q dt { font-family: 'Instrument Sans', sans-serif; font-size: 16.5px; font-weight: 600; color: var(--ink-1); line-height: 1.4; }
.article .faq__q dd { margin: 8px 0 0; font-size: 15.5px; line-height: 1.65; color: var(--ink-3); }
/* author/meta byline */
.article-byline { display: flex; align-items: center; gap: 12px; margin-top: 28px; padding-top: 22px; border-top: 1px solid var(--hairline); }
.article-byline__av { width: 40px; height: 40px; border-radius: 50%; background: var(--primary-soft); color: var(--primary); display: grid; place-items: center; font-family: 'Instrument Sans', sans-serif; font-weight: 700; font-size: 16px; flex: 0 0 auto; }
.article-byline__name { font-size: 14.5px; font-weight: 600; color: var(--ink-1); }
.article-byline__meta { font-size: 13px; color: var(--ink-4); margin-top: 1px; }
/* inline CTA at end of article */
.article-cta { margin-top: 40px; background: var(--night); border-radius: var(--r-2xl); padding: clamp(26px,3vw,34px); color: #fff; }
.article-cta__lbl { font-size: 12.5px; font-weight: 700; color: var(--primary-200, #f6c6ab); text-transform: uppercase; letter-spacing: .05em; }
.article-cta h3 { font-family: 'Instrument Sans', sans-serif; font-size: 22px; font-weight: 600; margin-top: 8px; color: #fff; }
.article-cta p { font-size: 15.5px; color: var(--night-ink-3); margin-top: 10px; line-height: 1.6; }
.article-cta__row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin-top: 20px; }
.article-cta__src { font-size: 13px; color: var(--night-ink-3); }
.article-cta__src a { color: #fff; box-shadow: inset 0 -1px 0 rgba(255,255,255,.4); }

/* ───────── BLOG COVER SCENES (refined mock-UI) ───────── */
.cov { position: relative; overflow: hidden; isolation: isolate; background: linear-gradient(157deg, #1c2740 0%, #101a2c 58%, #0b1220 100%); }
.cov::before { content: ''; position: absolute; inset: 0; z-index: 0; background: radial-gradient(125% 95% at 82% 2%, color-mix(in srgb, var(--cov, #5b9dff) 46%, transparent), transparent 56%); }
.cov::after { content: ''; position: absolute; inset: 0; z-index: 0; background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.09) 1px, transparent 0); background-size: 22px 22px; -webkit-mask-image: radial-gradient(150% 130% at 50% -16%, #000 34%, transparent 80%); mask-image: radial-gradient(150% 130% at 50% -16%, #000 34%, transparent 80%); opacity: .5; }
.cov > * { position: relative; z-index: 2; }
.cov__sheen { position: absolute; inset: 0; z-index: 1; pointer-events: none; background: linear-gradient(180deg, rgba(255,255,255,.10), transparent 20%); box-shadow: inset 0 0 0 1px rgba(255,255,255,.07), inset 0 -40px 60px -30px rgba(2,6,16,.55); }
.cov__tag { position: absolute; top: 15px; left: 15px; display: inline-flex; align-items: center; gap: 7px; padding: 6px 12px; border-radius: 999px; font-size: 12px; font-weight: 700; letter-spacing: .02em; color: var(--cov, #5b9dff); background: color-mix(in srgb, var(--cov, #5b9dff) 17%, transparent); box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--cov, #5b9dff) 34%, transparent); }
.cov__tag::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }

/* floating white widget */
.cov-card { position: absolute; left: 18px; right: 18px; bottom: 16px; background: #fff; border-radius: 13px; padding: 13px 14px; font-family: 'Inter', sans-serif; box-shadow: 0 22px 44px -20px rgba(2,6,16,.62), 0 3px 8px -2px rgba(2,6,16,.22); }
.cov--hero .cov-card { left: 50%; right: auto; top: 50%; bottom: auto; transform: translate(-50%, -50%); width: min(440px, 84%); padding: 16px 18px; border-radius: 16px; }
.cov-card__hd { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-bottom: 10px; }
.cov-card__lbl { font-size: 9px; letter-spacing: .07em; text-transform: uppercase; color: #94a3b8; font-weight: 800; }
.cov-card__chip { font-size: 9px; font-weight: 800; padding: 2px 7px; border-radius: 5px; letter-spacing: .02em; }
.cov-card__row { display: flex; align-items: center; gap: 9px; }
.cov-card__row + .cov-card__row { margin-top: 7px; }

/* tool wordmark chips (monogram tile + name — not a logo) */
.wmrow { display: flex; flex-wrap: wrap; gap: 6px; }
.wm { display: inline-flex; align-items: center; gap: 6px; padding: 5px 9px 5px 5px; border-radius: 8px; font-size: 10.5px; font-weight: 700; letter-spacing: -.01em; color: #0f172a; background: color-mix(in srgb, var(--b, #64748b) 9%, #fff); box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--b, #64748b) 22%, transparent); }
.wm__t { width: 16px; height: 16px; border-radius: 5px; background: var(--b, #64748b); color: #fff; font-size: 8.5px; font-weight: 800; display: grid; place-items: center; flex: 0 0 auto; }
.wm--lead { background: color-mix(in srgb, var(--b, #2f6bd6) 14%, #fff); box-shadow: inset 0 0 0 1.5px color-mix(in srgb, var(--b, #2f6bd6) 40%, transparent); }
.wm__score { margin-left: auto; font-size: 9.5px; font-weight: 800; color: var(--b, #2f6bd6); }
/* mini meter used inside widgets */
.cov-meter { height: 6px; border-radius: 4px; background: #eef2f7; overflow: hidden; }
.cov-meter > i { display: block; height: 100%; border-radius: 4px; }
/* MailOptimal logo mark — chip tile + comparison-table cells */
.wm__logo { width: 16px; height: 16px; border-radius: 5px; flex: 0 0 auto; display: block; object-fit: contain; }

/* inline article figures */
.article .afig { margin: 32px 0 6px; }
.article .afig figcaption { font-size: 13px; color: var(--ink-4); margin-top: 11px; text-align: center; line-height: 1.5; }
