/**
 * AskQA Viral — Landing (B&W editorial · 5 sections)
 */

.is-landing {
  --white: #ffffff;
  --off: #f7f7f7;
  --ink: #0a0a0a;
  --ink-soft: #3a3a3a;
  --muted: #6b6b6b;
  --line: rgba(10, 10, 10, 0.12);
  --line-strong: rgba(10, 10, 10, 0.22);
  --shadow-sm: 0 1px 0 rgba(10, 10, 10, 0.06);
  --shadow-md: 0 12px 40px rgba(10, 10, 10, 0.08);
  --shadow-lg: 0 24px 64px rgba(10, 10, 10, 0.12);
  --radius: 2px;
  --section-pad: 20px;
  --max: 1160px;
  --nav-h: 64px;
  --nav-pad-x: 24px;
  --section-h: 100dvh;
}

html.is-landing {
  scroll-behavior: smooth;
  scroll-snap-type: y mandatory;
  scroll-padding-top: var(--nav-h);
  height: 100%;
}

body.is-landing {
  overflow-x: hidden;
  overflow-y: auto;
  height: 100%;
}

body.is-landing,
.is-landing .page {
  background: var(--white) !important;
  color: var(--ink) !important;
}

body.is-landing::before,
body.is-landing::after {
  display: none !important;
}

html.is-landing .page {
  display: block !important;
}

/* ── Section shell: one viewport per panel ── */
.landing-panel {
  position: relative;
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  min-height: var(--section-h);
  height: var(--section-h);
  max-height: var(--section-h);
  padding: calc(var(--nav-h) + 8px) 20px 16px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  box-sizing: border-box;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.landing-panel .landing-inner,
.landing-hero__grid,
.platform-layout,
.workflow-layout,
.billing-layout,
.cta-layout {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  flex-shrink: 1;
  min-height: 0;
}

.bw-section-num {
  display: none !important;
}

.bw-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 30%, #000 20%, transparent 75%);
  pointer-events: none;
}

.bw-grid-bg--invert {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
}

.bw-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.bw-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Nav ── */
.is-landing .nav {
  background: rgba(255, 255, 255, 0.92) !important;
  border-bottom: 1px solid var(--line) !important;
  backdrop-filter: blur(12px) !important;
  justify-content: flex-start !important;
  padding: 0 var(--nav-pad-x, 24px) !important;
}

.is-landing .nav-shell {
  max-width: none !important;
  width: 100%;
}

.is-landing .logo {
  color: var(--ink) !important;
  font-weight: 700 !important;
  letter-spacing: -0.02em;
}

.is-landing .logo-mark {
  background: var(--ink) !important;
  box-shadow: none !important;
  border-radius: 4px !important;
}

.is-landing .nav-link {
  color: var(--ink-soft) !important;
  border-radius: 0;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 500;
  border-bottom: 2px solid transparent;
}

.is-landing .nav-link:hover,
.is-landing .nav-link.is-active {
  color: var(--ink) !important;
  background: transparent !important;
  border-bottom-color: var(--ink) !important;
}

.is-landing .btn-primary {
  background: var(--ink) !important;
  color: var(--white) !important;
  border: 2px solid var(--ink) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  font-weight: 600 !important;
}

.is-landing .btn-primary:hover {
  background: var(--white) !important;
  color: var(--ink) !important;
  transform: none;
}

.is-landing .btn-ghost {
  color: var(--ink) !important;
  background: transparent !important;
  border: 2px solid var(--ink) !important;
  border-radius: 0 !important;
}

.is-landing .btn-ghost:hover {
  background: var(--ink) !important;
  color: var(--white) !important;
}

/* ── Tags & type ── */
.panel-tag,
.landing-hero .badge {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono, ui-monospace, monospace) !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  padding: 6px 0 !important;
  margin-bottom: 12px !important;
  background: transparent !important;
  border: none !important;
  border-bottom: 2px solid var(--ink) !important;
  border-radius: 0 !important;
  color: var(--ink) !important;
  box-shadow: none !important;
}

.panel-tag--invert {
  color: var(--white) !important;
  border-bottom-color: var(--white) !important;
}

.landing-hero .badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ink) !important;
  box-shadow: none !important;
  animation: bw-pulse 2s ease infinite;
}

@keyframes bw-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

.text-gradient,
.text-gradient-light {
  background: none !important;
  -webkit-text-fill-color: var(--ink) !important;
  color: var(--ink) !important;
}

/* ═══ §1 HERO ═══ */
.landing-panel.landing-hero {
  background: var(--white) !important;
  border-bottom: 1px solid var(--line);
  padding-bottom: 16px;
}

.landing-hero__grid {
  display: grid !important;
  grid-template-columns: 1fr 1.05fr !important;
  gap: clamp(24px, 4vw, 48px) !important;
  align-items: center !important;
  flex: 1;
  min-height: 0;
}

.landing-hero h1 {
  font-family: var(--font-display, 'Plus Jakarta Sans', sans-serif) !important;
  font-size: clamp(34px, 4.5vw, 52px) !important;
  font-weight: 700 !important;
  line-height: 1.02 !important;
  letter-spacing: -0.045em !important;
  color: var(--ink) !important;
  margin-bottom: 16px !important;
}

.landing-hero .h1-line {
  display: block;
}

.landing-hero .h1-line--emph {
  position: relative;
  display: inline-block;
}

.landing-hero .h1-line--emph::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.06em;
  width: 100%;
  height: 0.12em;
  background: var(--ink);
  opacity: 0.12;
  z-index: -1;
}

.landing-hero .hero-lead {
  font-size: clamp(14px, 1.5vw, 16px) !important;
  line-height: 1.6 !important;
  color: var(--ink-soft) !important;
  margin-bottom: 20px !important;
  max-width: 460px !important;
}

.landing-hero .hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.landing-hero .hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 2px solid var(--ink);
  box-sizing: border-box;
}

.landing-hero .hero-stat {
  padding: 14px 12px;
  text-align: center;
  border-right: 1px solid var(--ink);
  box-sizing: border-box;
}

.landing-hero .hero-stat:last-child {
  border-right: none;
}

.landing-hero .hero-stat dt {
  font-family: var(--font-display) !important;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin-bottom: 4px;
}

.landing-hero .hero-stat dd {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.landing-hero .hero-card {
  background: var(--white) !important;
  border: 2px solid var(--ink) !important;
  border-radius: 0 !important;
  box-shadow: var(--shadow-md) !important;
  overflow: hidden;
  max-height: min(46vh, 380px);
}

.landing-hero .agent-pipeline {
  max-height: min(28vh, 200px);
  overflow-y: auto;
}

.landing-hero .preview-ribbon {
  background: var(--ink) !important;
  color: var(--white) !important;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: none !important;
  padding: 8px 14px;
}

.landing-hero .preview-chrome {
  border-bottom: 1px solid var(--line) !important;
  background: var(--off);
}

.landing-hero .preview-dots span {
  background: var(--muted) !important;
}

.landing-hero .agent-row {
  border-bottom: 1px solid var(--line) !important;
}

.landing-hero .agent-icon {
  background: var(--off) !important;
  color: var(--ink) !important;
  border: 1px solid var(--line-strong) !important;
  border-radius: 0 !important;
  font-weight: 700;
  font-family: var(--font-mono, monospace);
  font-size: 11px;
}

.landing-hero .agent-name {
  color: var(--ink) !important;
  font-weight: 600;
}

.landing-hero .agent-task {
  color: var(--muted) !important;
}

.landing-hero .hero-card-footer {
  background: var(--off);
  color: var(--muted);
  font-size: 12px;
  border-top: 1px solid var(--line);
}

.scroll-hint {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-family: var(--font-mono, monospace);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
  animation: bw-bob 2.5s ease infinite;
}

@keyframes bw-bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(5px); }
}

/* ═══ §2 PLATFORM — full-screen fill ═══ */
.landing-panel.landing-platform {
  background: var(--off) !important;
  padding-left: clamp(16px, 2.5vw, 40px);
  padding-right: clamp(16px, 2.5vw, 40px);
}

.landing-platform .platform-layout {
  display: grid !important;
  grid-template-columns: minmax(260px, 1fr) 1.5fr !important;
  gap: clamp(28px, 3.5vw, 48px) !important;
  align-items: center !important;
  flex: 1;
  min-height: 0;
  max-width: none !important;
  width: 100%;
  height: auto;
  max-height: none;
}

.landing-platform .platform-head {
  max-width: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: clamp(8px, 2vw, 24px);
}

.landing-platform .platform-head h2 {
  font-family: var(--font-display) !important;
  font-size: clamp(32px, 4vw, 48px) !important;
  font-weight: 700 !important;
  line-height: 1.06 !important;
  letter-spacing: -0.04em !important;
  color: var(--ink) !important;
  margin-bottom: 16px !important;
}

.landing-platform .platform-head > p {
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 36ch;
}

.landing-platform .platform-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 0;
  background: var(--white);
  border: 2px solid var(--ink);
  box-sizing: border-box;
}

.landing-platform .platform-tile {
  padding: 18px 20px;
  background: var(--white);
  transition: background 0.2s;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  box-sizing: border-box;
}

.landing-platform .platform-tile:nth-child(3n) {
  border-right: none;
}

.landing-platform .platform-tile:nth-child(n + 4) {
  border-bottom: none;
}

.landing-platform .platform-tile:hover {
  background: var(--off);
}

.landing-platform .platform-tile__icon {
  display: inline-flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--ink);
  font-size: 14px;
  margin-bottom: 10px;
  flex-shrink: 0;
}

.landing-platform .platform-tile h3 {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 6px;
}

.landing-platform .platform-tile p {
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
}

/* Campaign dashboard mock (workflow section) */
.campaign-showcase {
  border: 2px solid var(--ink);
  background: var(--white);
  box-shadow: var(--shadow-md);
  position: static;
  box-sizing: border-box;
  overflow: hidden;
}

.campaign-showcase .showcase-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--ink);
  background: var(--off);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.campaign-showcase .showcase-bar__track {
  flex: 1;
  height: 6px;
  background: var(--line);
  position: relative;
}

.campaign-showcase .showcase-bar__track i {
  display: block;
  height: 100%;
  background: var(--ink);
}

.campaign-showcase .showcase-rows {
  padding: 8px 0;
}

.campaign-showcase .showcase-row {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 14px 20px;
  border-bottom: 1px solid var(--ink);
  font-size: 14px;
}

.campaign-showcase .showcase-row:last-child {
  border-bottom: none;
}

.campaign-showcase .showcase-row__score {
  font-family: var(--font-mono, monospace);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 8px;
  border: 1px solid var(--line-strong);
}

.campaign-showcase .showcase-row--hot .showcase-row__score {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.campaign-showcase .showcase-row__name {
  font-weight: 600;
  color: var(--ink);
}

.campaign-showcase .showcase-row__status {
  font-size: 12px;
  color: var(--muted);
}

.campaign-showcase .showcase-footer {
  display: flex;
  justify-content: space-between;
  padding: 14px 20px;
  border-top: 1px solid var(--ink);
  background: var(--off);
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-soft);
}

/* ═══ §3 WORKFLOW — fit one screen ═══ */
.landing-panel.landing-workflow {
  background: var(--white) !important;
  color: var(--ink) !important;
  border-bottom: 1px solid var(--line);
  padding-left: clamp(16px, 2.5vw, 40px);
  padding-right: clamp(16px, 2.5vw, 40px);
}

.landing-workflow .workflow-layout {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  min-height: 0;
  width: 100%;
  max-width: none !important;
}

.landing-workflow .workflow-head {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 12px;
  flex-shrink: 0;
}

.landing-workflow .workflow-head h2 {
  font-family: var(--font-display) !important;
  font-size: clamp(28px, 3.5vw, 40px) !important;
  font-weight: 700 !important;
  letter-spacing: -0.04em !important;
  color: var(--ink) !important;
  margin-bottom: 6px !important;
}

.landing-workflow .workflow-head p {
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink-soft) !important;
}

.landing-workflow .workflow-body {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(16px, 2.5vw, 28px);
  align-items: stretch;
  flex: 1;
  min-height: 0;
  max-height: calc(var(--section-h) - var(--nav-h) - 118px);
  width: 100%;
}

.landing-workflow .workflow-steps {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0;
  background: var(--white);
  border: 2px solid var(--ink);
  box-sizing: border-box;
  min-height: 0;
  height: 100%;
}

.landing-workflow .workflow-step {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  background: var(--white);
  transition: background 0.2s;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  box-sizing: border-box;
  min-height: 0;
  overflow: hidden;
}

.landing-workflow .workflow-step:nth-child(2n) {
  border-right: none;
}

.landing-workflow .workflow-step:nth-child(n + 3) {
  border-bottom: none;
}

.landing-workflow .workflow-step:hover {
  background: var(--off);
}

.landing-workflow .workflow-step__num {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1;
  color: rgba(10, 10, 10, 0.15);
  flex-shrink: 0;
  width: 28px;
}

.landing-workflow .workflow-step__body {
  min-width: 0;
  flex: 1;
}

.landing-workflow .workflow-step h3 {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink) !important;
  margin-bottom: 2px;
  letter-spacing: -0.02em;
}

.landing-workflow .workflow-step p {
  font-size: 11px;
  line-height: 1.45;
  color: var(--muted) !important;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.landing-workflow .workflow-step__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.landing-workflow .workflow-step__tags span {
  font-family: var(--font-mono, monospace);
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 3px 6px;
  border: 1px solid var(--line-strong);
  color: var(--ink-soft);
}

.landing-workflow .workflow-step__agents {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}

.landing-workflow .workflow-step__agents span {
  width: 8px;
  height: 8px;
  border: 1px solid var(--line-strong);
  background: transparent;
}

.landing-workflow .workflow-step__agents span.is-active {
  background: var(--ink);
  border-color: var(--ink);
  animation: bw-pulse 1.5s ease infinite;
}

.landing-workflow .workflow-step__scores {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  font-family: var(--font-mono, monospace);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.landing-workflow .workflow-step__scores span {
  padding: 3px 6px;
  border: 1px solid var(--line-strong);
  color: var(--ink-soft);
}

.landing-workflow .workflow-step__scores span:first-child {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.landing-workflow .campaign-showcase {
  height: 100%;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.landing-workflow .campaign-showcase .showcase-bar {
  padding: 12px 16px;
  flex-shrink: 0;
}

.landing-workflow .campaign-showcase .showcase-rows {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 0;
}

.landing-workflow .campaign-showcase .showcase-row {
  padding: 10px 16px;
}

.landing-workflow .campaign-showcase .showcase-footer {
  padding: 10px 16px;
  flex-shrink: 0;
}

/* ═══ §4 Billing ═══ */
.landing-billing {
  background: var(--off) !important;
}

.landing-billing .billing-layout {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  gap: clamp(10px, 1.8vh, 18px);
}

.landing-billing .billing-head {
  flex-shrink: 0;
  max-width: 640px;
}

.landing-billing .billing-head h2 {
  font-family: var(--font-display) !important;
  font-size: clamp(24px, 3vw, 36px) !important;
  font-weight: 700 !important;
  letter-spacing: -0.04em !important;
  line-height: 1.08 !important;
  color: var(--ink) !important;
  margin: 8px 0 !important;
}

.landing-billing .billing-head > p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.5;
  margin: 0;
}

.landing-billing .billing-success-note {
  margin-top: 10px !important;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--ink);
  display: inline-block;
}

.landing-billing .billing-grid {
  flex: 1;
  min-height: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(6px, 0.8vw, 10px);
  align-items: stretch;
}

.landing-billing .billing-plan {
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: clamp(12px, 1.6vh, 16px);
  background: var(--white);
  border: 1px solid var(--line-strong);
  box-sizing: border-box;
}

.landing-billing .billing-plan--featured {
  border: 2px solid var(--ink);
  box-shadow: var(--shadow-md);
}

.landing-billing .billing-plan__name {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink);
  margin-bottom: 6px;
}

.landing-billing .billing-plan__price {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 10px;
}

.landing-billing .billing-plan__price span {
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  margin-left: 2px;
}

.landing-billing .billing-plan__stats {
  list-style: none;
  margin: 0 0 8px;
  padding: 0;
  flex: 1;
  min-height: 0;
}

.landing-billing .billing-plan__stats li {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.45;
  padding: 4px 0;
  border-bottom: 1px solid var(--line);
}

.landing-billing .billing-plan__stats li strong {
  color: var(--ink);
  font-weight: 700;
}

.landing-billing .billing-plan__pitch {
  font-size: 11px;
  line-height: 1.4;
  color: var(--ink-soft);
  margin: 0 0 10px;
  min-height: 2.8em;
}

.landing-billing .billing-plan__cta {
  width: 100%;
  margin-top: auto;
}

.landing-billing .billing-plan__badge {
  display: inline-block;
  margin-top: auto;
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ═══ §5 CTA ═══ */
.landing-panel.landing-cta {
  background: var(--white) !important;
  border-bottom: none;
  padding-bottom: 12px;
  justify-content: space-between;
}

.landing-cta .cta-layout {
  display: grid !important;
  grid-template-columns: 1.15fr 0.85fr !important;
  gap: clamp(24px, 3vw, 40px) !important;
  align-items: center;
  flex: 1;
  min-height: 0;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
}

.landing-cta .cta-main h2 {
  font-family: var(--font-display) !important;
  font-size: clamp(28px, 3.5vw, 40px) !important;
  font-weight: 700 !important;
  letter-spacing: -0.045em !important;
  line-height: 1.05 !important;
  color: var(--ink) !important;
  margin-bottom: 10px !important;
}

.landing-cta .cta-main > p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin-bottom: 16px;
  max-width: 480px;
}

.landing-cta .cta-checklist {
  list-style: none;
  display: flex !important;
  flex-direction: column !important;
  grid-template-columns: none !important;
  gap: 0 !important;
  margin-bottom: 20px;
  max-width: none !important;
  border-top: 2px solid var(--ink);
}

.landing-cta .cta-checklist li {
  display: flex !important;
  align-items: baseline;
  gap: 0;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  color: var(--ink);
  line-height: 1.5;
  text-align: left;
}

.landing-cta .cta-checklist li::before {
  content: "—" !important;
  flex-shrink: 0;
  width: auto !important;
  height: auto !important;
  margin-right: 12px;
  padding: 0 !important;
  border-radius: 0 !important;
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  color: var(--ink) !important;
  font-size: 15px;
  font-weight: 700;
  display: inline !important;
  place-items: unset !important;
}

.landing-cta .cta-checklist strong {
  color: var(--ink) !important;
  font-weight: 700;
  margin-right: 0.35em;
}

.landing-cta .cta-aside {
  padding: 20px;
  background: var(--off);
  border: 2px solid var(--ink);
  box-shadow: var(--shadow-md);
  box-sizing: border-box;
}

.landing-cta .cta-aside h3 {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line-strong);
}

.landing-cta .cta-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 16px;
}

.landing-cta .cta-steps li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.landing-cta .cta-steps__num {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--white);
  border-radius: 0;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}

.landing-cta .cta-steps li strong {
  display: block;
  font-size: 15px;
  color: var(--ink);
  margin-bottom: 4px;
}

.landing-cta .cta-steps li span {
  display: block;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

.landing-cta .cta-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid var(--line-strong);
  font-size: 13px;
  font-weight: 600;
}

.landing-cta .cta-links a {
  color: var(--ink) !important;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.landing-cta .footer-contact,
.landing-cta .footer-legal-links a {
  color: var(--muted) !important;
  font-size: 13px;
}

.landing-cta .footer-legal-links a:hover,
.landing-cta .footer-contact:hover {
  color: var(--ink) !important;
}

/* Large buttons */
.landing-hero .btn-lg,
.landing-cta .btn-lg {
  padding: 14px 28px !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  letter-spacing: 0.02em;
}

/* Hide legacy aurora decorations */
.landing-hero__mesh,
.landing-platform__glow,
.landing-workflow__mesh,
.landing-workflow__grid,
.landing-cta__glow {
  display: none !important;
}

@media (max-width: 1200px) {
  .landing-billing .billing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* ── Mobile: taller sections, softer snap ── */
@media (max-width: 960px) {
  html.is-landing {
    scroll-snap-type: y proximity;
  }

  .landing-panel {
    height: auto !important;
    min-height: var(--section-h) !important;
    max-height: none !important;
    overflow: visible;
    justify-content: flex-start;
    padding-top: calc(var(--nav-h) + 16px);
    padding-bottom: 24px;
  }

  .landing-hero__grid,
  .landing-cta .cta-layout,
  .landing-billing .billing-grid,
  .landing-workflow .workflow-body,
  .landing-platform .platform-layout {
    grid-template-columns: 1fr !important;
    max-height: none !important;
    height: auto;
  }

  .landing-billing .billing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .landing-workflow .workflow-body {
    max-height: none !important;
  }

  .landing-workflow .workflow-steps {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    height: auto;
  }

  .landing-workflow .workflow-step {
    flex-direction: row;
    border-right: none !important;
    border-bottom: 1px solid var(--ink) !important;
  }

  .landing-workflow .workflow-step:last-child {
    border-bottom: none !important;
  }

  .landing-workflow .workflow-step:nth-child(n + 3) {
    border-bottom: 1px solid var(--ink);
  }

  .landing-workflow .campaign-showcase {
    height: auto;
  }

  .landing-platform .platform-grid {
    grid-template-columns: 1fr 1fr;
  }

  .campaign-showcase {
    position: static;
  }

  .landing-hero .hero-stats {
    grid-template-columns: 1fr;
  }

  .landing-hero .hero-stat {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }

  .landing-hero .hero-stat:last-child {
    border-bottom: none;
  }

  .scroll-hint { display: none !important; }
}

@media (max-width: 600px) {
  .landing-billing .billing-grid {
    grid-template-columns: 1fr !important;
  }

  .landing-platform .platform-grid {
    grid-template-columns: 1fr;
  }

  .landing-panel {
    padding: calc(var(--nav-h) + 32px) 18px 64px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bw-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .scroll-hint,
  .landing-hero .badge-dot,
  .landing-workflow .workflow-step__agents span.is-active {
    animation: none !important;
  }
}
