/* AdAstra marketing site: base stylesheet.
   Outrank-inspired composition (translucent sticky nav, gradient hero wash,
   floating product shot in a browser frame, big rounded cards, gradient CTA
   closer) rendered in the AdAstra palette. */

:root {
  --blue: #4285f4;
  --blue-btn: #3367d6;
  --purple: #a479f2;
  --purple-text: #7c4fd0;
  --ink: #101828;
  --ink-2: #1a2233;
  --muted: #5b6472;
  --muted-2: #7c879b;
  --bg: #ffffff;
  --bg-tint: #f4f7fe;
  --card: #ffffff;
  --border: #e6eaf2;
  --border-soft: #eef1f7;
  --radius-sm: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-pill: 999px;
  --shadow-sm: 0 1px 2px rgb(16 24 40 / 5%), 0 2px 8px rgb(16 24 40 / 6%);
  --shadow-card: 0 1px 2px rgb(16 24 40 / 5%), 0 12px 32px rgb(16 24 40 / 8%);
  --shadow-float: 0 4px 12px rgb(16 24 40 / 8%), 0 30px 60px -20px rgb(52 62 110 / 30%);
  --glow: 0 0 120px 10px rgb(66 133 244 / 22%);
  --grad: linear-gradient(120deg, #4285f4 0%, #6b5be6 52%, #a479f2 100%);
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; height: auto; }

a { color: inherit; }

.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* ---------- Typography ---------- */

h1 {
  font-size: clamp(2.6rem, 6.2vw, 4.4rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
  font-weight: 800;
  margin: 0 0 22px;
}
h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.7rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  font-weight: 700;
  margin: 0 0 16px;
}
h3 {
  font-size: 1.28rem;
  line-height: 1.3;
  letter-spacing: -0.01em;
  font-weight: 700;
  margin: 0 0 12px;
}
p { margin: 0 0 16px; color: var(--muted); }

.kicker {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--purple-text);
  margin-bottom: 14px;
}
.kicker-invert { color: #d9c9fb; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: var(--radius-pill);
  padding: 14px 26px;
  font-weight: 600;
  font-size: 0.98rem;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: box-shadow 0.16s ease, background 0.16s ease, transform 0.12s ease, border-color 0.16s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--blue-btn);
  color: #fff;
  box-shadow: 0 1px 2px rgb(16 24 40 / 12%), 0 8px 20px -6px rgb(51 103 214 / 55%);
}
.btn-primary:hover { background: #2f5fca; box-shadow: 0 2px 4px rgb(16 24 40 / 14%), 0 12px 26px -6px rgb(51 103 214 / 60%); }
.btn-primary:active { transform: translateY(1px); }

.btn-secondary {
  background: #fff;
  color: var(--ink);
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.btn-secondary:hover { border-color: var(--blue); color: var(--blue-btn); }

:focus-visible { outline: 3px solid var(--blue); outline-offset: 2px; }

/* ---------- Nav ---------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgb(255 255 255 / 72%);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid rgb(230 234 242 / 70%);
}

.nav .container {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 24px;
  height: 68px;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.12rem;
  letter-spacing: -0.02em;
  text-decoration: none;
  color: var(--ink);
}

.nav-logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.nav-tagline {
  font-weight: 500;
  font-size: 0.66rem;
  letter-spacing: 0.01em;
  color: var(--muted);
}

.logo-mark { display: inline-flex; width: 28px; height: 28px; }
.logo-mark svg,
.logo-mark img { width: 28px; height: 28px; display: block; object-fit: contain; }

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.15s ease;
}
.nav-links a:hover { color: var(--ink); }

.nav-tagline { white-space: nowrap; }

.lang-switch { position: relative; }
.lang-switch summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--muted);
  padding: 6px 9px;
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: color 0.15s ease;
}
.lang-switch summary::-webkit-details-marker { display: none; }
.lang-switch summary::after { content: "\25BE"; font-size: 0.62rem; color: var(--muted-2); }
.lang-switch[open] summary { color: var(--ink); }
.lang-switch ul {
  position: absolute;
  right: 0;
  top: calc(100% + 6px);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(16, 24, 40, 0.1);
  list-style: none;
  margin: 0;
  padding: 6px;
  min-width: 140px;
  z-index: 50;
}
.lang-switch li a {
  display: block;
  padding: 7px 10px;
  border-radius: 6px;
  font-size: 0.85rem;
  color: var(--ink-2);
  text-decoration: none;
}
.lang-switch li a:hover { background: var(--bg-tint); color: var(--ink); }

.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-cta .btn { padding: 10px 20px; font-size: 0.92rem; }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav .container { gap: 16px; }
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  padding: 84px 0 0;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 900px;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(60% 55% at 50% 0%, rgb(164 121 242 / 20%) 0%, rgb(164 121 242 / 0%) 70%),
    radial-gradient(50% 45% at 18% 12%, rgb(66 133 244 / 20%) 0%, rgb(66 133 244 / 0%) 70%),
    radial-gradient(55% 50% at 85% 18%, rgb(66 133 244 / 16%) 0%, rgb(66 133 244 / 0%) 70%);
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgb(52 62 110 / 4%) 1px, transparent 1px),
    linear-gradient(to bottom, rgb(52 62 110 / 4%) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(70% 60% at 50% 30%, #000 0%, transparent 78%);
  -webkit-mask-image: radial-gradient(70% 60% at 50% 30%, #000 0%, transparent 78%);
}

.hero .container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgb(255 255 255 / 80%);
  color: var(--purple-text);
  border: 1px solid rgb(164 121 242 / 35%);
  border-radius: var(--radius-pill);
  padding: 7px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 26px;
  box-shadow: var(--shadow-sm);
}
.hero-eyebrow svg { color: var(--purple); }

.hero h1 { max-width: 860px; text-wrap: balance; }
.hero h1 .accent { color: var(--purple-text); }

.hero p.lede {
  max-width: 640px;
  font-size: 1.17rem;
  color: var(--muted);
  margin: 0 auto 34px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 22px;
}

.hero-proof {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted-2);
  margin: 0 0 60px;
}
.hero-proof svg { color: var(--blue); }

.hero-shot {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 8px;
}

/* ---------- Browser frame ---------- */

.browser {
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-float), var(--glow);
  overflow: hidden;
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 42px;
  padding: 0 16px;
  background: #f6f7fb;
  border-bottom: 1px solid var(--border);
}
.browser-dot { width: 11px; height: 11px; border-radius: 50%; background: #d7dbe4; }
.browser-dot:nth-child(1) { background: #ff5f57; }
.browser-dot:nth-child(2) { background: #febc2e; }
.browser-dot:nth-child(3) { background: #28c840; }
.browser-url {
  margin-left: 14px;
  flex: 1;
  max-width: 320px;
  height: 24px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  border-radius: var(--radius-pill);
  background: #fff;
  border: 1px solid var(--border);
  color: var(--muted-2);
  font-size: 0.78rem;
}

/* ---------- Screenshot frame ---------- */

.shot-frame {
  margin: 0;
  border-radius: 0;
  overflow: hidden;
  background: var(--card);
}
.shot-frame img { display: block; width: 100%; height: auto; }

/* Standalone shots (inside cards / splits) keep their own rounded frame. */
.split .shot-frame,
.step-card .shot-frame {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

/* ---------- Sections ---------- */

.section { padding: 92px 0; }
.section-tint { background: var(--bg-tint); }

/* Header-only lead section: tighten the gap before the first item below it. */
.section-lead { padding-bottom: 8px; }
.section-lead .section-head { margin-bottom: 0; }

.section-head {
  text-align: center;
  max-width: 660px;
  margin: 0 auto 56px;
}
.section-head p { font-size: 1.08rem; }

/* Centered full-width callout used when a split item has no screenshot. */
.split-solo {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  padding: 48px 48px 40px;
}
.split-solo .pain-quote { padding-left: 0; display: inline-block; }
.split-solo .pain-quote::before { display: none; }
.split-solo > .split-text > p { max-width: 60ch; margin-left: auto; margin-right: auto; }

/* ---------- Fact bar ---------- */

.factbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 8px 0 24px;
}
.factbar li { padding: 0; }
.factbar a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  background: #fff;
  box-shadow: var(--shadow-sm);
  color: var(--ink-2);
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  transition: transform 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease;
}
.factbar a:hover {
  transform: translateY(-2px);
  border-color: rgb(164 121 242 / 45%);
  box-shadow: 0 2px 6px rgb(16 24 40 / 6%), 0 10px 22px -6px rgb(52 62 110 / 14%);
}
.factbar-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 7px;
  background: var(--bg-tint);
  color: var(--purple-text);
}
.factbar li:nth-child(2n) .factbar-icon,
.factbar li:nth-child(2n) a .factbar-icon { color: var(--blue-btn); }

/* ---------- Split (media + copy) ---------- */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 68px;
  align-items: center;
}
.split.flip .split-text { order: 2; }

/* Grid tracks default to an automatic minimum equal to the content's
   min-content size, which can force the whole row (and the page) wider
   than the viewport if a child ever holds an unbreakable string. Pin the
   minimum to 0 so the track can actually shrink to fit. */
.split > .split-text,
.split > .shot-frame {
  min-width: 0;
}

.split-text h3 { font-size: 1.5rem; margin-bottom: 14px; }
.split-text > p { font-size: 1.06rem; max-width: 46ch; }

/* Large pull quote for the pain-point sections, with an accent bar. */
.pain-quote {
  position: relative;
  font-style: normal;
  font-weight: 700;
  font-size: 1.7rem;
  line-height: 1.28;
  letter-spacing: -0.015em;
  color: var(--ink);
  padding-left: 22px;
  margin: 0 0 18px;
}
.pain-quote::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 4px;
  border-radius: 4px;
  background: var(--grad);
}

/* ---------- How-it-works step cards ---------- */

.step-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Same min-content overflow guard as .split above: without this, a grid
   track can't shrink below its child's intrinsic content width. */
.step-grid > .step-card {
  min-width: 0;
}

.step-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.step-card:hover { transform: translateY(-4px); box-shadow: 0 2px 4px rgb(16 24 40 / 6%), 0 20px 44px -12px rgb(52 62 110 / 22%); }
.factbar li { transition: transform 0.16s ease, border-color 0.16s ease; }
.factbar li:hover { transform: translateY(-2px); border-color: rgb(164 121 242 / 45%); }
.step-head { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--grad);
  color: #fff;
  font-weight: 800;
  font-size: 1.1rem;
  box-shadow: 0 6px 14px -4px rgb(107 91 230 / 55%);
}
.step-kicker {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.step-card h3 { margin-bottom: 8px; }
.step-card > p { margin-bottom: 20px; }
.step-card .shot-frame { margin-top: auto; }

/* ---------- Cards (aside) ---------- */

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 32px;
}

.aside-card {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 32px 36px;
}
.aside-card h3 { margin-bottom: 8px; }
.aside-card p { margin-bottom: 0; }
.aside-mark {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--bg-tint);
  color: var(--purple-text);
}
.aside-mark svg { width: 22px; height: 22px; }

/* ---------- Buy-side inverted panel (hidden /buy-side page only) ---------- */

.buyside-panel {
  position: relative;
  border-radius: var(--radius-xl);
  padding: 56px;
  color: #eef1fb;
  background: radial-gradient(120% 140% at 12% 0%, #2a3570 0%, #171d3d 55%, #0f1430 100%);
  box-shadow: var(--shadow-float);
  overflow: hidden;
}
.buyside-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(50% 60% at 85% 20%, rgb(164 121 242 / 28%) 0%, transparent 70%);
  pointer-events: none;
}
.buyside-panel .split { position: relative; }
.buyside-panel .split-text h3 { color: #fff; }
.buyside-panel .pain-quote { color: #fff; }
.buyside-panel .split-text > p { color: #c3c9e6; }
.buyside-panel .shot-frame { border-color: rgb(255 255 255 / 14%); }

/* ---------- AI-ranking panel ---------- */

.airank-panel {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
  align-items: center;
  background: var(--bg-tint);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 44px 48px;
}
.airank-orbit { display: flex; justify-content: center; min-width: 0; }
.airank-orbit svg { width: 180px; height: 180px; }
.airank-text { min-width: 0; }
.airank-text h2 { margin-bottom: 12px; }
.airank-text p { margin-bottom: 0; font-size: 1.06rem; max-width: 54ch; }

/* ---------- FAQ ---------- */

.faq {
  max-width: 800px;
  margin: 0 auto;
  padding: 8px 32px;
}

.faq-item { border-bottom: 1px solid var(--border-soft); }
.faq-item:last-child { border-bottom: 0; }

.faq-item > button {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  padding: 22px 0;
  font: inherit;
  font-weight: 600;
  font-size: 1.06rem;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.faq-item > button::after {
  content: "";
  flex: none;
  width: 20px;
  height: 20px;
  background: no-repeat center / contain
    url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="none" stroke="%237c4fd0" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 8l5 5 5-5"/></svg>');
  transition: transform 0.2s ease;
}
.faq-item > button[aria-expanded="true"]::after { transform: rotate(180deg); }

.faq-item .faq-answer {
  padding: 0 0 24px;
  color: var(--muted);
  max-width: 66ch;
}

/* ---------- Final CTA ---------- */

.cta-section { padding: 40px 0 100px; }

.cta-panel {
  position: relative;
  border-radius: var(--radius-xl);
  padding: 72px 32px 64px;
  text-align: center;
  color: #fff;
  background: var(--grad);
  box-shadow: 0 30px 70px -24px rgb(66 90 214 / 55%);
  overflow: hidden;
}
.cta-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(40% 60% at 12% 8%, rgb(255 255 255 / 22%) 0%, transparent 70%),
    radial-gradient(45% 70% at 88% 100%, rgb(23 29 61 / 28%) 0%, transparent 70%);
}
.cta-head { position: relative; margin-bottom: 32px; }
.cta-head h2 { color: #fff; }
.cta-head p { color: rgb(255 255 255 / 88%); font-size: 1.1rem; margin-bottom: 0; }

.cta-card {
  position: relative;
  max-width: 460px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px -18px rgb(16 24 40 / 45%);
  padding: 32px;
  text-align: left;
}

.cta-flow label {
  display: block;
  margin-bottom: 14px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink);
}
.cta-flow input {
  display: block;
  width: 100%;
  margin-top: 6px;
  padding: 12px 14px;
  font: inherit;
  font-size: 0.98rem;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.cta-flow input:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgb(66 133 244 / 18%);
}
.cta-flow .btn-primary { width: 100%; justify-content: center; margin-top: 6px; }
.cta-flow > div > form > p,
.cta-flow [data-state] > p {
  font-size: 0.82rem;
  color: var(--muted-2);
  margin: 14px 0 0;
}
.cta-flow [data-state="checkEmail"] { text-align: center; }
.cta-flow [data-state="checkEmail"] h2 { color: var(--ink); font-size: 1.4rem; }
.cf-turnstile { margin-bottom: 14px; }

/* ---------- Footer ---------- */

.footer {
  padding: 64px 0 40px;
  color: var(--muted);
  font-size: 0.9rem;
  border-top: 1px solid var(--border);
  background: #fbfcfe;
}

.footer .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px 32px;
}
.footer-brand { max-width: 280px; }
.footer-brand .nav-logo { font-size: 1.12rem; margin-bottom: 12px; }
.footer-brand p { margin: 0; }

.footer-col-title {
  display: block;
  font-weight: 700;
  color: var(--ink-2);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.footer a { color: var(--muted); text-decoration: none; }
.footer a:hover { color: var(--ink); }

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-base {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--border-soft);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.footer-base p { margin: 0; }

/* ---------- Cookie consent ---------- */

.consent {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 100;
  max-width: 520px;
  margin: 0 auto;
  padding: 20px 24px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}
.consent-text { margin-bottom: 16px; font-size: 0.9rem; }
.consent-actions { display: flex; justify-content: flex-end; gap: 12px; }

.footer-consent {
  background: none;
  border: 0;
  padding: 0;
  color: var(--muted);
  font: inherit;
  font-size: 0.9rem;
  text-decoration: underline;
  cursor: pointer;
}
.footer-consent:hover { color: var(--ink); }

/* ---------- Legal / content pages ---------- */

.section h1 { font-size: clamp(2rem, 4vw, 2.8rem); }
.section h2 { margin-top: 40px; }
.section ul { color: var(--muted); }

/* ---------- Responsive ---------- */

@media (max-width: 900px) {
  .airank-panel { grid-template-columns: 1fr; text-align: center; gap: 20px; padding: 40px 28px; }
  .airank-text p { margin-left: auto; margin-right: auto; }
}

@media (max-width: 820px) {
  .split { grid-template-columns: 1fr; gap: 32px; }
  .split.flip .split-text { order: 0; }
  .section { padding: 64px 0; }
  .step-grid { grid-template-columns: 1fr; }
  .buyside-panel { padding: 36px 28px; }
  .pain-quote { font-size: 1.45rem; }
}

@media (max-width: 560px) {
  .hero { padding: 56px 0 0; }
  .cta-panel { padding: 48px 20px 44px; }
  .cta-card { padding: 24px; }
  .footer-base { flex-direction: column; align-items: flex-start; }
  .faq { padding: 4px 20px; }
}

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