/* ─────────────────────────────────────────────────────────────
   SellWorthy — Landing Page Stylesheet
   Uses brand-tokens.css exclusively for colors and fonts.
   ───────────────────────────────────────────────────────────── */

/* Local fallback tokens (not in brand-tokens.css) */
:root {
  --sw-navy-70: rgba(20, 28, 58, 0.72);
  --sw-navy-60: rgba(20, 28, 58, 0.60);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--sw-off-white);
  color: var(--sw-ink-1);
  font-family: var(--sw-font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }

img { max-width: 100%; height: auto; display: block; }
a { color: var(--sw-navy); text-decoration: none; }
a:hover { color: var(--sw-orange); }
button { font: inherit; cursor: pointer; }

.container {
  width: min(1200px, calc(100% - 48px));
  margin-inline: auto;
}
@media (max-width: 640px) {
  .container { width: calc(100% - 32px); }
}

.skip-link {
  position: absolute; top: -100px; left: 8px; padding: 8px 16px;
  background: var(--sw-navy); color: var(--sw-white); border-radius: var(--sw-radius-sm);
  z-index: 100;
}
.skip-link:focus { top: 8px; color: var(--sw-white); }

/* ─── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 22px;
  border-radius: var(--sw-radius-pill);
  font-family: var(--sw-font-display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.005em;
  line-height: 1;
  border: 1px solid transparent;
  transition: transform .12s ease, background .18s ease, color .18s ease, border-color .18s ease, box-shadow .18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-lg { padding: 16px 28px; font-size: 16px; }

.btn-primary {
  background: var(--sw-orange);
  color: var(--sw-navy-deep);
  box-shadow: 0 2px 0 rgba(20, 28, 58, 0.12), var(--sw-shadow-1);
}
.btn-primary:hover { background: var(--sw-orange-hover); color: var(--sw-navy-deep); }

.btn-ghost {
  background: transparent;
  color: var(--sw-navy);
  border-color: var(--sw-navy-tint-2);
}
.btn-ghost:hover { border-color: var(--sw-navy); color: var(--sw-navy); background: var(--sw-navy-tint-1); }

.btn-ghost-light {
  background: rgba(255,255,255,.10);
  color: var(--sw-white);
  border-color: rgba(255,255,255,.35);
  backdrop-filter: blur(6px);
}
.btn-ghost-light:hover { background: rgba(255,255,255,.20); color: var(--sw-white); }

.btn-ghost-dark {
  background: transparent;
  color: var(--sw-navy);
  border-color: var(--sw-navy-tint-2);
}
.btn-ghost-dark:hover { border-color: var(--sw-navy); color: var(--sw-navy); background: var(--sw-navy-tint-1); }

/* ─── Header ────────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 250, 247, .85);
  backdrop-filter: saturate(1.1) blur(14px);
  -webkit-backdrop-filter: saturate(1.1) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, background .2s ease;
}
.site-header.is-scrolled { border-bottom-color: var(--sw-line); }
.header-inner {
  display: flex; align-items: center; gap: 24px;
  padding-block: 16px;
}
.header-logo { display: flex; align-items: center; }
.header-logo img { height: 26px; width: auto; }
.header-nav {
  display: flex; align-items: center; gap: 28px;
  margin-left: 20px;
  font-family: var(--sw-font-display);
  font-weight: 500;
  font-size: 15px;
}
.header-nav a { color: var(--sw-ink-2); }
.header-nav a:hover { color: var(--sw-navy); }
.header-cta { margin-left: auto; display: flex; gap: 10px; align-items: center; }
.header-menu-toggle {
  display: none; margin-left: auto;
  background: transparent; border: 1px solid var(--sw-navy-tint-2);
  width: 42px; height: 42px; border-radius: var(--sw-radius-sm);
  padding: 0; flex-direction: column; gap: 4px; align-items: center; justify-content: center;
}
.header-menu-toggle span {
  display: block; width: 18px; height: 2px; background: var(--sw-navy); border-radius: 2px;
}

.header-mobile {
  display: flex; flex-direction: column; gap: 4px;
  padding: 16px 24px 24px;
  border-top: 1px solid var(--sw-line);
  background: var(--sw-off-white);
}
.header-mobile[hidden] { display: none; }
.header-mobile a {
  display: block; padding: 12px 4px;
  border-bottom: 1px solid var(--sw-line);
  color: var(--sw-navy);
  font-family: var(--sw-font-display);
  font-weight: 500;
}
.header-mobile a.btn { margin-top: 12px; border-bottom: none; padding: 14px 22px; }

@media (max-width: 900px) {
  .header-nav, .header-cta { display: none; }
  .header-menu-toggle { display: flex; }
}
@media (min-width: 901px) {
  .header-mobile { display: none !important; }
}

/* ─── Hero (dark, cinematic) ────────────────────────────────── */
.hero-dark {
  position: relative;
  isolation: isolate;
  background: var(--sw-navy-deep);
  color: var(--sw-white);
  padding-block: clamp(96px, 12vw, 176px);
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* Background stack: photo → veil → left-fade → orange glow */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: saturate(1.05) contrast(1.02);
  opacity: 0.85;
}
/* Global dim */
.hero-bg-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,28,58,0.55) 0%, rgba(20,28,58,0.35) 40%, rgba(20,28,58,0.75) 100%);
}
/* Left-side fade so headline reads against solid navy */
.hero-bg-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20,28,58,0.98) 0%, rgba(20,28,58,0.92) 28%, rgba(20,28,58,0.55) 52%, rgba(20,28,58,0.05) 78%, rgba(20,28,58,0) 100%);
}
/* Warm orange glow behind headline for depth */
.hero-bg-glow {
  position: absolute;
  left: -8%;
  top: 20%;
  width: 55%;
  height: 70%;
  background: radial-gradient(ellipse at center, rgba(244, 162, 42, 0.18) 0%, rgba(244, 162, 42, 0.06) 40%, rgba(244, 162, 42, 0) 70%);
  filter: blur(20px);
}

.hero-dark-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.hero-dark .hero-copy { max-width: 620px; }

.eyebrow {
  display: inline-block;
  font-family: var(--sw-font-display);
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sw-orange);
  margin: 0 0 20px;
}
.eyebrow-on-dark {
  color: var(--sw-orange);
  text-shadow: 0 1px 2px rgba(0,0,0,0.4);
}

.hero-title {
  font-family: var(--sw-font-display);
  font-weight: 700;
  font-size: clamp(44px, 6.2vw, 84px);
  line-height: 1.02;
  letter-spacing: -0.028em;
  margin: 0 0 24px;
  color: var(--sw-navy);
}
.hero-title-dark {
  color: var(--sw-white);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.35);
}
.hero-title-accent { color: var(--sw-orange); }
.hero-title-dark .hero-title-accent {
  color: var(--sw-orange);
  text-shadow: 0 0 24px rgba(244, 162, 42, 0.55), 0 2px 6px rgba(0, 0, 0, 0.35);
}

.hero-sub {
  font-size: clamp(16.5px, 1.35vw, 19px);
  line-height: 1.55;
  color: var(--sw-ink-2);
  max-width: 560px;
  margin: 0 0 32px;
}
.hero-sub-dark {
  color: rgba(255, 255, 255, 0.85);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
  max-width: 580px;
}

.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 20px; }

.hero-note-light {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  font-family: var(--sw-font-body);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

/* ─── Hero quadrants (dark hero variant) ─────────────────────────────── */
.hero-quadrants {
  position: relative;
  padding: clamp(20px, 2vw, 32px) clamp(20px, 2vw, 28px) clamp(20px, 2vw, 28px);
  background: rgba(20, 28, 58, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--sw-radius-lg);
  backdrop-filter: blur(12px) saturate(1.1);
  -webkit-backdrop-filter: blur(12px) saturate(1.1);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}
.hero-quadrants-eyebrow {
  font-family: var(--sw-font-display);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sw-orange);
  margin: 0 0 16px;
  text-align: center;
}

/* Hero-variant quadrant frame overrides */
.quadrant-frame-hero { padding: 8px 0 20px 34px; }
.quadrant-frame-hero .quadrant-grid {
  max-width: 100%;
  gap: 10px;
  aspect-ratio: 1 / 1;
}
.quadrant-frame-hero .quadrant {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: none;
  padding: 16px 14px 14px;
  gap: 6px;
}
.quadrant-frame-hero .quadrant .q-tag { color: var(--sw-white); font-size: 15px; }
.quadrant-frame-hero .quadrant .q-note { color: rgba(255, 255, 255, 0.65); font-size: 12px; line-height: 1.45; }
.quadrant-frame-hero .quadrant-y-label,
.quadrant-frame-hero .quadrant-x-label {
  color: rgba(255, 255, 255, 0.5);
  font-size: 10.5px;
  letter-spacing: 0.14em;
}

/* Quadrant icon (top-right of each square) */
.q-icon {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 22px;
  height: 22px;
  color: rgba(255, 255, 255, 0.55);
}
.q-icon svg { width: 100%; height: 100%; }
.q-icon-goal { color: var(--sw-orange); }

/* Revenue value badge — anchored bottom */
.q-value {
  position: absolute;
  bottom: 12px;
  left: 14px;
  right: 14px;
  margin: 0;
  font-family: var(--sw-font-display);
  font-weight: 700;
  font-size: clamp(13px, 1.35vw, 16px);
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: -0.01em;
  line-height: 1.15;
}
.q-value span {
  font-weight: 500;
  font-size: 0.72em;
  color: rgba(255, 255, 255, 0.55);
  margin-left: 2px;
}
.q-value-goal { color: var(--sw-orange); }
.q-value-goal span { color: rgba(244, 162, 42, 0.7); }
.quadrant-frame-hero .quadrant { padding-bottom: 40px; }

/* Goal square overrides inside hero variant */
.quadrant-frame-hero .q-goal {
  background: linear-gradient(180deg, rgba(244, 162, 42, 0.16) 0%, rgba(244, 162, 42, 0.06) 100%);
  border-color: rgba(244, 162, 42, 0.5);
  box-shadow: 0 12px 32px rgba(244, 162, 42, 0.18), 0 0 0 1px rgba(244, 162, 42, 0.3);
  padding-top: 38px;
}
.quadrant-frame-hero .q-goal .q-tag { color: var(--sw-white); }
.quadrant-frame-hero .q-goal .q-note { color: rgba(255, 255, 255, 0.78); }
.quadrant-frame-hero .q-goal-badge {
  position: absolute;
  top: 12px; left: 14px;
  padding: 3px 8px;
  border-radius: 999px;
  background: var(--sw-orange);
  color: var(--sw-navy);
  font-family: var(--sw-font-body);
  font-weight: 700;
  font-size: 9.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Quadrant matrix */
.quadrant-wrap { position: relative; }
.quadrant-frame { position: relative; padding: 46px 0 32px 46px; }
.quadrant-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  aspect-ratio: 1 / 1;
  max-width: 560px;
}
.quadrant {
  position: relative;
  padding: 20px 20px 22px;
  border-radius: var(--sw-radius-lg);
  background: var(--sw-white);
  border: 1px solid var(--sw-line);
  box-shadow: var(--sw-shadow-1);
  display: flex; flex-direction: column; gap: 8px;
}
.quadrant .q-tag {
  font-family: var(--sw-font-display);
  font-weight: 600;
  font-size: 17px;
  color: var(--sw-navy);
  margin: 0;
  letter-spacing: -0.01em;
}
.quadrant .q-note {
  font-family: var(--sw-font-body);
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--sw-navy-60);
  margin: 0;
}
.q-goal {
  background: linear-gradient(180deg, #24325F 0%, #1E2A52 100%);
  border-color: var(--sw-orange);
  box-shadow: 0 12px 32px rgba(20, 28, 58, .22), 0 0 0 2px rgba(244, 162, 42, .18);
  padding-top: 44px;
}
.q-goal .q-tag { color: var(--sw-white); }
.q-goal .q-note { color: rgba(255, 255, 255, .78); }
.q-goal-badge {
  position: absolute;
  top: 14px; left: 20px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--sw-orange);
  color: var(--sw-navy);
  font-family: var(--sw-font-body);
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.quadrant-x-label,
.quadrant-y-label {
  font-family: var(--sw-font-display);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sw-navy-60);
}
.quadrant-y-label {
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: left center;
  white-space: nowrap;
}
.quadrant-x-label { margin-top: 16px; text-align: right; padding-right: 8px; }

@media (max-width: 960px) {
  .hero-dark { padding-block: clamp(56px, 12vw, 88px); }
  .hero-dark-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-dark .hero-copy { max-width: none; }
  .hero-bg-fade {
    background: linear-gradient(180deg, rgba(20,28,58,0.65) 0%, rgba(20,28,58,0.85) 100%);
  }
  .hero-bg-img { opacity: 0.5; }
  .hero-quadrants { padding: 20px 16px; }
  .quadrant-frame-hero { padding-left: 28px; }
  .quadrant-frame { padding: 36px 0 24px 36px; }
  .quadrant-grid { max-width: none; }
}
@media (max-width: 640px) {
  .quadrant-frame { padding: 0; }
  .quadrant-y-label,
  .quadrant-x-label { display: none; }
  .quadrant .q-tag { font-size: 15.5px; }
  .quadrant .q-note { font-size: 12.5px; }
  .quadrant { padding: 16px 14px 18px; }
  .q-goal { padding-top: 40px; }
  .q-goal-badge { top: 12px; left: 14px; font-size: 9.5px; padding: 3px 8px; }
}

/* Atmosphere band */
.atmosphere-band {
  position: relative;
  height: clamp(280px, 40vw, 440px);
  overflow: hidden;
  display: flex; align-items: center;
}
.atmosphere-band img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 45%;
}
.atmosphere-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20, 28, 58, .55) 0%, rgba(20, 28, 58, .28) 40%, rgba(20, 28, 58, .82) 100%);
}
.atmosphere-copy { position: relative; z-index: 2; }
.atmosphere-quote {
  font-family: var(--sw-font-display);
  font-weight: 500;
  font-size: clamp(22px, 2.6vw, 34px);
  line-height: 1.28;
  letter-spacing: -0.015em;
  color: var(--sw-white);
  max-width: 780px;
  margin: 0;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .35);
}

/* ─── Sections (generic) ────────────────────────────────────── */
.section {
  padding-block: clamp(72px, 9vw, 128px);
  background: var(--sw-off-white);
}
.section-canvas { background: var(--sw-canvas); }
.section-navy {
  background: var(--sw-navy-deep);
  color: rgba(255, 255, 255, .88);
}

.section-head { max-width: 780px; margin-bottom: 64px; }
.section-head-narrow { margin-inline: auto; text-align: center; }
.section-title {
  font-family: var(--sw-font-display);
  font-weight: 700;
  font-size: clamp(32px, 4.4vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--sw-navy);
  margin: 8px 0 20px;
}
.section-title-on-navy { color: var(--sw-white); }
.section-lede {
  font-size: clamp(17px, 1.5vw, 19px);
  line-height: 1.55;
  color: var(--sw-ink-2);
  margin: 0 0 16px;
  max-width: 65ch;
}
.section-lede-on-navy { color: rgba(255, 255, 255, .82); }
.section-head-narrow .section-lede { margin-inline: auto; }
.eyebrow-on-navy { color: var(--sw-orange); }

/* ─── Verticals ─────────────────────────────────────────────── */
.vertical-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 1100px) { .vertical-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .vertical-grid { grid-template-columns: 1fr; } }

.vertical-card {
  background: var(--sw-white);
  border-radius: var(--sw-radius-lg);
  overflow: hidden;
  box-shadow: var(--sw-shadow-1);
  border: 1px solid var(--sw-line);
  display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.vertical-card:hover { transform: translateY(-3px); box-shadow: var(--sw-shadow-2); }

.vertical-image { aspect-ratio: 4 / 5; overflow: hidden; background: var(--sw-canvas); position: relative; }
.vertical-image img { width: 100%; height: 100%; object-fit: cover; }
.badge-coming-soon {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--sw-orange);
  color: var(--sw-navy);
  font-family: var(--sw-font-body);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(20, 28, 58, 0.25);
  z-index: 2;
}

.vertical-body { padding: 22px 22px 26px; }
.vertical-body h3 {
  font-family: var(--sw-font-display);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.01em;
  color: var(--sw-navy);
  margin: 0 0 8px;
}
.vertical-body p { color: var(--sw-ink-2); margin: 0; font-size: 15px; line-height: 1.55; }

.vertical-card--generic {
  background: var(--sw-navy-tint-1);
  border-color: var(--sw-navy-tint-2);
}
.vertical-card--generic .vertical-body { padding: 32px 26px; display: flex; flex-direction: column; height: 100%; justify-content: center; }
.vertical-card--generic h3 { font-size: 22px; }

.link-arrow {
  display: inline-block;
  margin-top: 16px;
  color: var(--sw-navy);
  font-family: var(--sw-font-display);
  font-weight: 600;
  font-size: 14.5px;
}
.link-arrow:hover { color: var(--sw-orange); }

/* ─── RQS ───────────────────────────────────────────────────── */
.rqs-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 900px) { .rqs-grid { grid-template-columns: 1fr; gap: 48px; } }

.rqs-visual { display: flex; justify-content: center; }
.rqs-card {
  width: min(100%, 440px);
  background: var(--sw-white);
  border-radius: var(--sw-radius-lg);
  padding: 32px;
  color: var(--sw-ink-1);
  box-shadow: 0 40px 80px -20px rgba(0,0,0,.35), var(--sw-shadow-2);
}
.rqs-card-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 20px; }
.rqs-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: var(--sw-radius-pill);
  background: var(--sw-navy);
  color: var(--sw-white);
  font-family: var(--sw-font-display);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.rqs-score {
  font-family: var(--sw-font-display);
  font-weight: 700;
  font-size: 56px;
  line-height: 1;
  color: var(--sw-navy);
  letter-spacing: -0.03em;
}
.rqs-bar-track {
  position: relative;
  height: 10px;
  background: var(--sw-navy-tint-1);
  border-radius: var(--sw-radius-pill);
  margin-bottom: 6px;
  overflow: hidden;
}
.rqs-band { position: absolute; top: 0; bottom: 0; opacity: .18; }
.rqs-band-floor    { background: var(--sw-band-floor); }
.rqs-band-poor     { background: var(--sw-band-poor); }
.rqs-band-fair     { background: var(--sw-band-fair); }
.rqs-band-good     { background: var(--sw-band-good); }
.rqs-band-excellent{ background: var(--sw-band-excellent); }
.rqs-bar {
  position: absolute; top: 0; left: 0; bottom: 0;
  width: var(--pct, 0%);
  background: linear-gradient(90deg, var(--sw-band-fair), var(--sw-band-good), var(--sw-band-excellent));
  border-radius: var(--sw-radius-pill);
  z-index: 2;
  transition: width .8s cubic-bezier(0.16, 1, 0.3, 1);
}
.rqs-band-label {
  font-family: var(--sw-font-display);
  font-weight: 600;
  font-size: 13px;
  color: var(--sw-band-good);
  margin-bottom: 24px;
}
.rqs-axes {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 12px;
  border-top: 1px solid var(--sw-line);
  padding-top: 20px;
}
.rqs-axes li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14.5px;
  color: var(--sw-ink-2);
}
.rqs-axes li em {
  margin-left: auto;
  font-style: normal;
  color: var(--sw-navy);
  font-weight: 600;
  font-family: var(--sw-font-display);
}
.dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.dot-excellent { background: var(--sw-band-excellent); }
.dot-good      { background: var(--sw-band-good); }
.dot-fair      { background: var(--sw-band-fair); }
.dot-poor      { background: var(--sw-band-poor); }

/* ─── AI Preview figure ─────────────────────────────────────── */
.ai-preview-figure {
  margin: 0;
  border-radius: var(--sw-radius-lg);
  overflow: hidden;
  box-shadow: var(--sw-shadow-3);
  border: 1px solid var(--sw-line);
}
.ai-preview-figure img { width: 100%; display: block; }
.ai-preview-figure figcaption {
  padding: 18px 24px;
  background: var(--sw-white);
  color: var(--sw-ink-2);
  font-size: 14px;
  border-top: 1px solid var(--sw-line);
  text-align: center;
}

/* Split before/after variant */
.ai-preview-split .ai-preview-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--sw-line);
}
.ai-preview-split .ai-preview-slot {
  position: relative;
  background: var(--sw-white);
  overflow: hidden;
}
.ai-preview-split .ai-preview-slot img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ai-preview-label {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  padding: 6px 12px;
  background: rgba(20, 28, 58, 0.85);
  color: var(--sw-off-white);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 999px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.ai-preview-label-after {
  background: var(--sw-orange);
  color: var(--sw-navy-deep);
}
@media (max-width: 720px) {
  .ai-preview-split .ai-preview-pair {
    grid-template-columns: 1fr;
    gap: 2px;
  }
}

/* ─── Features (dark editorial list) ─────────────────────────── */
.section-features-dark {
  position: relative;
  background: var(--sw-navy-deep);
  color: var(--sw-white);
  overflow: hidden;
}
.section-features-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(1200px 500px at 85% -10%, rgba(244, 162, 42, 0.14), transparent 60%),
    radial-gradient(900px 500px at 0% 110%, rgba(244, 162, 42, 0.08), transparent 55%);
  pointer-events: none;
}
.section-features-dark .container { position: relative; z-index: 1; }

.section-head-on-dark { text-align: center; }
.section-title-on-dark { color: var(--sw-white); }
.section-lede-on-dark { color: rgba(255, 255, 255, 0.72); }

.feature-list {
  list-style: none;
  margin: clamp(48px, 6vw, 72px) 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: clamp(32px, 5vw, 80px);
  row-gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}
.feature-row {
  position: relative;
  display: grid;
  grid-template-columns: auto auto 1fr;
  column-gap: clamp(16px, 1.6vw, 22px);
  align-items: start;
  padding: clamp(24px, 2.6vw, 32px) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}
/* Vertical divider between the two columns */
.feature-list .feature-row:nth-child(odd)::after {
  content: "";
  position: absolute;
  right: calc(-1 * clamp(16px, 2.5vw, 40px));
  top: 0; bottom: 0;
  width: 1px;
  background: rgba(255, 255, 255, 0.08);
}
.feature-num {
  font-family: var(--sw-font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--sw-orange);
  letter-spacing: 0.06em;
  padding-top: 6px;
  min-width: 22px;
}
.feature-icon-dark {
  width: 44px; height: 44px;
  border-radius: var(--sw-radius-md);
  background: rgba(244, 162, 42, 0.12);
  border: 1px solid rgba(244, 162, 42, 0.28);
  color: var(--sw-orange);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.feature-icon-dark svg { width: 22px; height: 22px; }
.feature-body { min-width: 0; }
.feature-body h3 {
  font-family: var(--sw-font-display);
  font-weight: 600;
  font-size: clamp(17px, 1.35vw, 20px);
  color: var(--sw-white);
  margin: 2px 0 8px;
  letter-spacing: -0.01em;
  line-height: 1.25;
}
.feature-body p {
  color: rgba(255, 255, 255, 0.68);
  font-family: var(--sw-font-body);
  font-size: 14.5px;
  line-height: 1.6;
  margin: 0;
}

.features-footer {
  margin-top: clamp(40px, 5vw, 64px);
  padding-top: clamp(28px, 3vw, 36px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.features-footer-line {
  font-family: var(--sw-font-display);
  font-weight: 500;
  font-size: clamp(16px, 1.4vw, 20px);
  color: rgba(255, 255, 255, 0.88);
  margin: 0;
  max-width: 640px;
  line-height: 1.35;
}

@media (max-width: 900px) {
  .feature-list { grid-template-columns: 1fr; column-gap: 0; }
  .feature-list .feature-row:nth-child(odd)::after { display: none; }
}
@media (max-width: 560px) {
  .feature-row { grid-template-columns: auto 1fr; column-gap: 14px; padding: 22px 0; }
  .feature-num {
    grid-column: 1 / -1;
    padding-top: 0; padding-bottom: 4px;
    font-size: 12px;
  }
  .feature-icon-dark { width: 40px; height: 40px; }
  .features-footer { justify-content: flex-start; }
}

/* ─── Built by ──────────────────────────────────────────────── */
.built-by-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 900px) { .built-by-grid { grid-template-columns: 1fr; gap: 24px; } }
.built-by-copy p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--sw-ink-2);
  margin: 0 0 20px;
}
.built-by-copy p:last-child { margin-bottom: 0; }

/* ─── Pricing CTA ───────────────────────────────────────────── */
.pricing-cta { max-width: 720px; margin-inline: auto; text-align: center; }
.pricing-cta .section-lede { margin-inline: auto; }
.pricing-ctas { display: flex; gap: 12px; justify-content: center; margin-top: 32px; flex-wrap: wrap; }

/* ─── Footer ────────────────────────────────────────────────── */
.site-footer {
  background: var(--sw-navy-deep);
  color: rgba(255, 255, 255, .72);
  padding: 72px 0 40px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: 64px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, .10);
}
@media (max-width: 900px) { .footer-inner { grid-template-columns: 1fr; gap: 40px; } }

.footer-brand img { height: 24px; margin-bottom: 16px; }
.footer-brand p { font-size: 14.5px; color: rgba(255, 255, 255, .68); max-width: 340px; margin: 0; }

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
@media (max-width: 560px) { .footer-nav { grid-template-columns: repeat(2, 1fr); gap: 32px; } }
.footer-nav h4 {
  font-family: var(--sw-font-display);
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sw-white);
  margin: 0 0 14px;
}
.footer-nav a {
  display: block;
  font-size: 14.5px;
  color: rgba(255, 255, 255, .70);
  padding: 5px 0;
}
.footer-nav a:hover { color: var(--sw-orange); }

.footer-baseline {
  display: flex; justify-content: space-between; gap: 12px;
  padding-top: 24px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, .48);
  flex-wrap: wrap;
}

/* ─── Reduce motion ─────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; animation: none !important; }
}

/* ─── Five minutes onsite section ────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.5vw, 32px);
  margin-top: clamp(40px, 5vw, 64px);
}
.step-card {
  position: relative;
  padding: clamp(24px, 2.5vw, 36px) clamp(22px, 2vw, 32px) clamp(28px, 3vw, 40px);
  background: var(--sw-white);
  border: 1px solid var(--sw-line);
  border-radius: var(--sw-radius-lg);
  box-shadow: var(--sw-shadow-1);
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}
.step-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--sw-shadow-2);
  border-color: var(--sw-line-strong);
}
.step-time {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--sw-orange-tint-1);
  color: var(--sw-orange-hover);
  font-family: var(--sw-font-display);
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.step-icon {
  width: 40px;
  height: 40px;
  color: var(--sw-navy);
  margin-bottom: 18px;
}
.step-icon svg { width: 100%; height: 100%; }
.step-title {
  font-family: var(--sw-font-display);
  font-weight: 600;
  font-size: clamp(18px, 1.5vw, 21px);
  color: var(--sw-navy);
  letter-spacing: -0.015em;
  margin: 0 0 10px;
  line-height: 1.25;
}
.step-note {
  font-family: var(--sw-font-body);
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--sw-ink-2);
  margin: 0;
}
.step-num {
  position: absolute;
  top: 18px;
  right: 20px;
  font-family: var(--sw-font-display);
  font-weight: 700;
  font-size: clamp(48px, 5vw, 68px);
  line-height: 1;
  color: var(--sw-orange);
  letter-spacing: -0.02em;
  pointer-events: none;
  z-index: 0;
}
.steps-caption {
  margin-top: clamp(32px, 4vw, 48px);
  text-align: center;
  font-family: var(--sw-font-display);
  font-weight: 500;
  font-size: clamp(15px, 1.3vw, 18px);
  color: var(--sw-ink-2);
  font-style: italic;
}
@media (max-width: 900px) {
  .steps-grid { grid-template-columns: 1fr; gap: 20px; }
}

/* ─── AI Preview brand callout ──────────────────────────────── */
.brand-callout {
  margin: clamp(28px, 3.5vw, 44px) auto clamp(36px, 4vw, 52px);
  width: 100%;
  padding: clamp(24px, 3vw, 36px) clamp(24px, 3vw, 40px);
  background: linear-gradient(135deg, var(--sw-navy-deep) 0%, var(--sw-navy) 100%);
  border: 1px solid rgba(244, 162, 42, 0.35);
  border-radius: var(--sw-radius-lg);
  box-shadow: 0 20px 50px rgba(20, 28, 58, 0.18), 0 0 0 1px rgba(244, 162, 42, 0.08);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(24px, 3vw, 40px);
  align-items: center;
  position: relative;
  overflow: hidden;
}
.brand-callout::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 6px; height: 100%;
  background: var(--sw-orange);
}
.brand-callout::after {
  content: "";
  position: absolute;
  top: -80px; right: -80px;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 162, 42, 0.18) 0%, transparent 70%);
  pointer-events: none;
}
.brand-callout-mark {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding-left: 8px;
  position: relative;
  z-index: 1;
}
.brand-callout-num {
  font-family: var(--sw-font-display);
  font-weight: 700;
  font-size: clamp(38px, 4vw, 52px);
  color: var(--sw-orange);
  line-height: 0.95;
  letter-spacing: -0.02em;
}
.brand-callout-num-sub {
  font-family: var(--sw-font-display);
  font-weight: 600;
  font-size: clamp(12px, 1vw, 13.5px);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.3;
}
.brand-callout-body { position: relative; z-index: 1; }
.brand-callout-eyebrow {
  font-family: var(--sw-font-display);
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sw-orange);
  margin: 0 0 10px;
}
.brand-callout-title {
  font-family: var(--sw-font-display);
  font-weight: 600;
  font-size: clamp(20px, 1.9vw, 26px);
  color: var(--sw-white);
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin: 0 0 12px;
}
.brand-callout-note {
  font-family: var(--sw-font-body);
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
  max-width: 560px;
}
@media (max-width: 720px) {
  .brand-callout { grid-template-columns: 1fr; gap: 20px; padding-left: 24px; }
  .brand-callout::before { width: 100%; height: 5px; }
  .brand-callout-mark { padding-left: 0; }
}
