/* CreatStrat site shell.
   Shared by every page on the new system: reset, type, buttons, fields,
   the nav and mobile menu, the footer, section scaffolding, scroll reveal,
   the FAQ, the mobile sticky CTA, and the demo-request form. Also the pieces
   more than one page uses: the ad tile, the headline underline, the Gap Scan
   success state, the final Gap Scan section, and the Gap Scan CTA band.
   Colors come from brand.css only. */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; -webkit-text-size-adjust: 100%; scroll-padding-top: calc(var(--nav-h) + 8px); }
body { background: var(--paper); color: var(--ink); font: 400 var(--fs-body)/1.55 var(--sans); overflow-x: hidden; }
img, svg, video { display: block; max-width: 100%; }
img, video { height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: 0; }
ul, ol { list-style: none; }
q { quotes: none; }
blockquote { quotes: none; }
[hidden] { display: none !important; }

:focus-visible { outline: 3px solid rgb(var(--violet-rgb) / 55%); outline-offset: 2px; border-radius: 4px; }
.on-dark :focus-visible, .on-violet :focus-visible { outline-color: var(--lime); }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 1000; top: 10px; left: 10px; padding: 10px 14px; border-radius: var(--r-sm); background: var(--ink); color: var(--white); font-weight: 700; transform: translateY(-150%); }
.skip-link:focus { transform: none; }

/* ---------- Layout ---------- */
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); }
.section-pad { padding: var(--section-y) 0; }
.on-dark { background: var(--ink); color: var(--white); }
.on-violet { background: var(--violet); color: var(--white); }

/* ---------- Type ---------- */
.h1 { font-weight: 850; font-size: var(--fs-h1); line-height: .93; letter-spacing: var(--track-h1); }
.h2 { font-weight: 830; font-size: var(--fs-h2); line-height: .97; letter-spacing: var(--track-h2); }
.h3 { font-weight: 800; font-size: var(--fs-h3); line-height: 1.05; letter-spacing: var(--track-h3); }
.violet { color: var(--violet); }
.lead { font-size: var(--fs-lead); line-height: 1.55; color: var(--ink-2); }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; font-weight: 700; font-size: 14px; letter-spacing: -0.01em; color: var(--violet); }
.on-dark .eyebrow, .on-violet .eyebrow { color: var(--lime); }
.link { color: var(--violet); font-weight: 700; }
.link:hover { color: var(--violet-dark); }

.sec-head { display: grid; grid-template-columns: 1.5fr 1fr; gap: 56px; align-items: end; margin-bottom: 56px; }
.sec-head .eyebrow { margin-bottom: 20px; }
.sec-head > p { font-size: 18px; color: var(--ink-2); max-width: 470px; }
.on-dark .sec-head > p { color: var(--on-dark); }
.on-violet .sec-head > p { color: var(--on-violet); }
.center-head { text-align: center; max-width: 900px; margin: 0 auto 56px; }
.center-head .eyebrow { margin-bottom: 20px; }
.center-head > p { margin: 20px auto 0; max-width: 620px; font-size: 18px; color: var(--ink-2); }

/* ---------- Logo ---------- */
.logo { display: inline-flex; align-items: center; gap: 10px; flex: none; }
.logo-tile { width: 32px; height: 32px; border-radius: var(--r-sm); background: var(--ink); display: grid; place-items: center; flex: none; }
.logo-tile img { width: 22px; height: 22px; }
.wordmark { font-weight: 850; font-size: 19px; letter-spacing: -0.05em; }
.wordmark span { color: var(--violet); }
.wordmark i { color: var(--lime); font-style: normal; }
.on-dark .wordmark, .site-footer .wordmark { color: var(--white); }
.on-dark .wordmark span, .site-footer .wordmark span { color: var(--violet-bright); }
.on-dark .logo-tile, .site-footer .logo-tile { background: var(--ink-4); }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 50px; padding: 0 22px; border: 0; border-radius: var(--r); font-weight: 700; font-size: 15px; line-height: 1.2; letter-spacing: -0.01em; white-space: nowrap; cursor: pointer; transition: background-color var(--dur-fast) ease, color var(--dur-fast) ease, transform var(--dur-fast) ease, box-shadow var(--dur-fast) ease; }
.btn:active { transform: translateY(1px); }
.btn[disabled] { opacity: .65; cursor: progress; }
.btn-violet { background: var(--violet); color: var(--white); box-shadow: 0 10px 24px -10px rgb(var(--violet-rgb) / 70%); }
.btn-violet:hover { background: var(--violet-dark); }
.btn-ink { background: var(--ink); color: var(--white); }
.btn-ink:hover { background: var(--ink-2); }
.btn-lime { background: var(--lime); color: var(--ink); }
.btn-lime:hover { background: var(--lime-soft); }
.btn-ghost { box-shadow: inset 0 0 0 1.5px var(--ink); color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--white); }
.btn-sm { min-height: 40px; padding: 0 16px; font-size: 14px; }
.btn-block { width: 100%; }

/* ---------- Fields ---------- */
.field { display: flex; flex-direction: column; min-width: 0; }
.field-label { display: flex; justify-content: space-between; gap: 12px; margin-bottom: 7px; font-size: 13px; font-weight: 750; }
.field-label span { font-weight: 600; color: var(--muted); }
.input { width: 100%; height: 48px; padding: 0 14px; border: 1px solid var(--line); border-radius: 11px; background: var(--field); color: var(--ink); font-size: 15px; font-weight: 500; transition: border-color var(--dur-fast) ease, box-shadow var(--dur-fast) ease, background-color var(--dur-fast) ease; }
.input::placeholder { color: var(--placeholder); opacity: 1; }
.input:hover { border-color: var(--mist-line); }
.input:focus { outline: none; border-color: var(--violet); box-shadow: 0 0 0 4px rgb(var(--violet-rgb) / 12%); background: var(--white); }
textarea.input { height: 84px; padding-top: 12px; resize: vertical; line-height: 1.45; }
.field-error { display: none; margin-top: 6px; font-size: 12.5px; font-weight: 650; color: var(--error); }
.field.invalid .field-error { display: block; }
.field.invalid .input, .input[aria-invalid="true"] { border-color: var(--error); }
.hp-field { display: none; }
.form-status { font-size: 13.5px; line-height: 1.45; color: var(--ink-2); }
.form-status:empty { display: none; }
.form-status.is-error { color: var(--error); font-weight: 650; }

/* ---------- Nav ---------- */
.nav { position: sticky; top: 0; z-index: 100; height: var(--nav-h); border-bottom: 1px solid var(--line); background: rgb(var(--paper-rgb) / 92%); -webkit-backdrop-filter: saturate(160%) blur(10px); backdrop-filter: saturate(160%) blur(10px); transition: box-shadow var(--dur-fast) ease; }
.nav.scrolled { box-shadow: 0 10px 30px -24px rgb(var(--ink-rgb) / 45%); }
.nav-inner { height: 100%; display: flex; align-items: center; gap: 40px; }
.nav-links { display: flex; gap: 30px; font-weight: 600; font-size: 14.5px; color: var(--ink-2); }
.nav-links a:hover, .nav-login:hover { color: var(--violet); }
.nav-right { margin-left: auto; display: flex; align-items: center; gap: 20px; font-weight: 600; font-size: 14.5px; }
.nav-demo { color: var(--violet); font-weight: 700; }
.nav-demo:hover { color: var(--violet-dark); }
.nav-toggle { display: none; width: 44px; height: 44px; padding: 12px 11px; border: 1px solid var(--line); border-radius: var(--r-sm); background: var(--white); }
.nav-toggle span { display: block; height: 2px; margin: 4px 0; border-radius: 2px; background: var(--ink); transition: transform var(--dur-fast) ease, opacity var(--dur-fast) ease; }
.nav-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.nav-mobile { display: none; }

@media (max-width: 1180px) {
  .nav-inner { gap: 26px; }
  .nav-links { gap: 20px; }
  .nav-right { gap: 16px; }
}
@media (max-width: 1060px) {
  .nav-links, .nav-login, .nav-demo { display: none; }
  .nav-right { gap: 10px; }
  .nav-toggle { display: block; }
  .nav-mobile { position: fixed; z-index: 99; top: var(--nav-h); left: 0; right: 0; display: grid; padding: 8px var(--gutter) 20px; border-bottom: 1px solid var(--line); background: var(--paper); box-shadow: 0 30px 50px -30px rgb(var(--ink-rgb) / 40%); opacity: 0; visibility: hidden; transform: translateY(-8px); transition: opacity var(--dur-fast) ease, transform var(--dur-fast) ease, visibility 0s linear var(--dur-fast); }
  .nav-mobile.open { opacity: 1; visibility: visible; transform: none; transition-delay: 0s; }
  .nav-mobile a { padding: 14px 4px; border-bottom: 1px solid var(--line); font-weight: 700; font-size: 16px; }
  .nav-mobile .nav-mobile-demo { color: var(--violet); }
  .nav-mobile .btn { margin-top: 14px; border-bottom: 0; color: var(--white); }
}
@media (max-width: 480px) {
  .nav-cta-long { display: none; }
  .nav .btn-sm { min-height: 38px; padding: 0 12px; font-size: 13px; }
  .wordmark { font-size: 18px; }
}

/* ---------- Scroll reveal (only when scripts run) ---------- */
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity var(--dur-reveal) ease, transform var(--dur-reveal) var(--ease-out); }
.js .reveal.in { opacity: 1; transform: none; }

/* ---------- FAQ ---------- */
.faq { display: grid; grid-template-columns: 1fr 1.5fr; gap: 80px; }
.faq-intro .h2 { margin-top: 18px; }
.faq-intro p { margin-top: 18px; color: var(--ink-2); }
.qa { border-top: 1.5px solid var(--ink); }
.qa:last-child { border-bottom: 1.5px solid var(--ink); }
.qa summary { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 22px 0; font-weight: 750; font-size: 19px; line-height: 1.3; letter-spacing: -0.025em; cursor: pointer; list-style: none; }
.qa summary::-webkit-details-marker { display: none; }
.qa summary:hover { color: var(--violet); }
.qa-icon { flex: none; width: 28px; height: 28px; border-radius: 50%; background: var(--violet-soft); color: var(--violet); display: grid; place-items: center; font-size: 18px; font-weight: 600; line-height: 1; transition: transform var(--dur-fast) ease, background-color var(--dur-fast) ease, color var(--dur-fast) ease; }
.qa-icon::before { content: '+'; }
.qa[open] .qa-icon { background: var(--violet); color: var(--white); }
.qa[open] .qa-icon::before { content: '\2212'; }
.qa-a { padding: 0 0 22px; max-width: 640px; font-size: 15.5px; color: var(--ink-2); }
.qa-a p + p { margin-top: 10px; }
.qa-a strong { color: var(--ink); }

/* ---------- Footer ---------- */
.site-footer { background: var(--night); color: var(--white); padding: 72px 0 36px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 40px; }
.footer-brand p { margin-top: 16px; max-width: 330px; font-size: 14.5px; color: var(--on-dark-faint); }
.footer-h { margin-bottom: 14px; font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--on-dark-faint); }
.footer-col a { display: block; width: fit-content; margin-bottom: 9px; font-size: 14.5px; color: var(--on-dark-3); }
.footer-col a:hover, .footer-bottom a:hover { color: var(--lime); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-top: 60px; padding-top: 22px; border-top: 1px solid var(--night-line); font-size: 13px; color: var(--on-dark-faint); }
.footer-bottom a { color: var(--on-dark-3); font-weight: 650; }
@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px 28px; }
  .footer-brand { grid-column: 1 / -1; }
}

/* ---------- Mobile sticky CTA (breakpoint matches app.js: 760px) ---------- */
.mobile-sticky-cta { position: fixed; z-index: 90; left: 12px; right: 12px; bottom: 12px; display: none; align-items: center; justify-content: center; min-height: 52px; border-radius: var(--r); background: var(--lime); color: var(--ink); font-weight: 800; font-size: 15px; box-shadow: 0 12px 30px rgb(var(--ink-rgb) / 28%); transform: translateY(140%); transition: transform 180ms ease; }
.mobile-sticky-cta.is-visible { transform: none; }
@media (max-width: 760px) {
  .mobile-sticky-cta { display: flex; }
}

/* ---------- Demo-request form ---------- */
.request-card { position: relative; overflow: hidden; padding: 30px; border: 1px solid var(--line); border-radius: 26px; background: var(--white); box-shadow: 0 50px 90px -40px rgb(var(--ink-rgb) / 45%); }
.request-card::before { content: ''; position: absolute; left: 0; right: 0; top: 0; height: 6px; background: linear-gradient(90deg, var(--violet), var(--violet-bright) 70%, var(--lime)); }
.request-card h2 { font-weight: 830; font-size: 28px; line-height: 1.1; letter-spacing: -0.05em; }
.request-sub { margin-top: 4px; font-size: 14.5px; color: var(--ink-2); }
.request-form .field { margin-top: 16px; }
.choice-group { border: 0; margin-top: 16px; min-width: 0; }
.choice-group legend { display: flex; justify-content: space-between; width: 100%; margin-bottom: 7px; font-size: 13px; font-weight: 750; }
.choice-group legend span { font-weight: 600; color: var(--muted); }
.choices { display: flex; gap: 6px; }
.choice { position: relative; flex: 1; }
.choice.wide { flex: 1.6; }
.choice input { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; margin: 0; cursor: pointer; }
.choice span { display: block; padding: 11px 0; border: 1px solid var(--line); border-radius: var(--r); background: var(--field); font-weight: 700; font-size: 14px; text-align: center; white-space: nowrap; transition: border-color var(--dur-fast) ease, background-color var(--dur-fast) ease; }
.choice input:hover + span { border-color: var(--mist-line); }
.choice input:checked + span { border-color: var(--violet); background: var(--violet-soft); color: var(--violet-dark); }
.choice input:focus-visible + span { outline: 3px solid rgb(var(--violet-rgb) / 55%); outline-offset: 2px; }
.request-form .btn { width: 100%; min-height: 54px; margin-top: 20px; font-size: 16px; }
.request-form .form-status { margin-top: 12px; text-align: center; }
.request-fine { margin-top: 12px; font-size: 13px; text-align: center; color: var(--muted); }
.request-alt { margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--line); font-size: 13.5px; text-align: center; color: var(--muted); }
.request-alt a { color: var(--violet); font-weight: 700; }
.request-done-head { display: flex; gap: 14px; align-items: center; }
.request-done-head:focus { outline: none; }
.check-badge { flex: none; width: 48px; height: 48px; border-radius: 50%; background: var(--lime); color: var(--ink); display: grid; place-items: center; font-weight: 900; font-size: 20px; }
.next-steps { display: flex; flex-direction: column; margin-top: 22px; }
.next-steps li { display: grid; grid-template-columns: 34px 1fr; gap: 14px; padding: 14px 0; border-top: 1px solid var(--line); }
.next-steps li:first-child { border-top: 0; }
.next-steps .step-no { width: 34px; height: 34px; border-radius: 50%; background: var(--violet-soft); color: var(--violet-dark); display: grid; place-items: center; font-weight: 850; }
.next-steps small { display: block; margin-bottom: 5px; font: 700 11.5px/1 var(--mono); color: var(--violet); }
.next-steps b { display: block; font-weight: 780; font-size: 15.5px; letter-spacing: -0.02em; }
.next-steps p { margin-top: 2px; font-size: 14px; color: var(--ink-2); overflow-wrap: anywhere; }
@media (max-width: 700px) {
  .request-card { padding: 22px; border-radius: var(--r-xl); }
  .choice span { padding: 13px 0; font-size: 12.5px; }
}

/* ---------- Ad creative tile (homepage and product page) ---------- */
.creative { position: relative; flex: none; overflow: hidden; border-radius: var(--r-md); background: var(--ink-2); box-shadow: var(--shadow-tile); }
.creative img { width: 100%; height: 100%; object-fit: cover; }
.r45 { aspect-ratio: 4 / 5; }
.r916 { aspect-ratio: 9 / 16; }
.creative.contain { background: var(--white); }
.creative.contain img { object-fit: contain; }
.creative-ov { position: absolute; left: 0; right: 0; top: 0; padding: 14px 14px 40px; background: linear-gradient(to bottom, rgb(var(--black-rgb) / 55%), transparent); color: var(--white); }
.creative-ov small { display: block; font-size: 9px; font-weight: 800; letter-spacing: .14em; opacity: .9; }
.creative-ov b { display: block; margin-top: 6px; font-weight: 850; font-size: 21px; line-height: 1; letter-spacing: -0.045em; }
.creative-ugc { position: absolute; left: 10px; right: 10px; bottom: 34px; text-align: center; line-height: 1.55; }
.creative-ugc span { padding: 2px 6px; border-radius: 4px; background: var(--white); color: var(--ink); font-weight: 800; font-size: 12.5px; -webkit-box-decoration-break: clone; box-decoration-break: clone; }
.creative-bar { position: absolute; left: 10px; right: 10px; bottom: 14px; height: 3px; overflow: hidden; border-radius: 3px; background: rgb(var(--white-rgb) / 35%); }
.creative-bar i { position: absolute; inset: 0; background: var(--lime); transform-origin: left; animation: progress 7s linear infinite; }
.creative-bar.slow i { animation-duration: 9s; }
@keyframes progress { from { transform: scaleX(0); } to { transform: scaleX(1); } }
.creative-fmt { position: absolute; right: 10px; top: 10px; padding: 5px 7px; border-radius: var(--r-xs); background: rgb(var(--black-rgb) / 45%); color: var(--white); font: 700 9.5px/1 var(--sans); letter-spacing: .06em; text-transform: uppercase; -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); }
.creative-play { position: absolute; left: 50%; top: 50%; width: 42px; height: 42px; margin: -21px 0 0 -21px; border-radius: 50%; background: rgb(var(--white-rgb) / 90%); display: grid; place-items: center; }
.creative-play::after { content: ''; margin-left: 3px; border-left: 12px solid var(--ink); border-top: 8px solid transparent; border-bottom: 8px solid transparent; }
.creative-play.sm { width: 26px; height: 26px; margin: -13px 0 0 -13px; }
.creative-play.sm::after { border-left-width: 8px; border-top-width: 5px; border-bottom-width: 5px; margin-left: 2px; }

/* ---------- Lime underline that draws in under a headline phrase ---------- */
.ul { position: relative; isolation: isolate; white-space: nowrap; color: var(--violet); }
.ul svg { position: absolute; z-index: -1; left: -3%; bottom: 2px; width: 106%; height: 30px; overflow: visible; }
.ul path { fill: none; stroke: var(--lime); stroke-width: 18; stroke-linecap: round; stroke-dasharray: 520; stroke-dashoffset: 0; animation: draw 1.1s .5s var(--ease-draw) both; }
@keyframes draw { from { stroke-dashoffset: 520; } to { stroke-dashoffset: 0; } }

/* ---------- Gap Scan success state ---------- */
.form-success { display: none; }
.form-success.show { display: block; animation: rise .5s var(--ease-out) both; }
.form-success:focus { outline: none; }
.done { padding: 20px 22px; border: 1px solid var(--line); border-radius: var(--r-lg); background: var(--white); color: var(--ink); box-shadow: var(--shadow-card); }
.done-row { display: flex; gap: 14px; align-items: flex-start; }
.done-check { flex: none; width: 34px; height: 34px; border-radius: 50%; background: var(--lime); display: grid; place-items: center; font-weight: 900; }
.done b { display: block; font-size: 17px; font-weight: 800; letter-spacing: -0.02em; }
.done p { margin-top: 2px; font-size: 14.5px; color: var(--ink-2); overflow-wrap: anywhere; }
.done-demo { display: flex; align-items: center; gap: 12px; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--line); font-size: 14.5px; }
.done-demo .btn { margin-left: auto; min-height: 42px; }
@keyframes rise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

/* ---------- Final Gap Scan section (homepage and product page) ---------- */
.final { position: relative; overflow: hidden; }
.final::before { content: ''; position: absolute; width: 800px; height: 800px; left: -300px; bottom: -400px; pointer-events: none; background: radial-gradient(circle, rgb(var(--violet-rgb) / 55%), transparent 60%); }
.final-grid { position: relative; display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: center; }
.final .h2 { margin: 18px 0 20px; }
.final-copy > p { max-width: 520px; font-size: 18px; color: var(--on-dark-2); }
.fstats { display: flex; gap: 38px; margin-top: 34px; }
.fstats b { display: block; font-weight: 850; font-size: 46px; line-height: 1; letter-spacing: -0.05em; color: var(--lime); }
.fstats span { display: block; font-size: 13.5px; color: var(--on-dark); }
.fan { position: relative; height: 520px; }
.fan .creative { position: absolute; top: 40px; width: 230px; }
.fan .t1 { left: 20px; rotate: -10deg; }
.fan .t2 { left: 150px; top: 10px; z-index: 2; }
.fan .t3 { left: 280px; rotate: 10deg; }
.formcard { position: absolute; z-index: 3; left: 70px; right: 20px; bottom: 0; padding: 22px; border-radius: 20px; background: var(--white); color: var(--ink); box-shadow: 0 40px 70px -30px rgb(var(--black-rgb) / 70%); }
.formcard h3 { margin-bottom: 14px; font-weight: 820; font-size: 21px; letter-spacing: -0.04em; }
.formcard .field { margin-bottom: 8px; }
.formcard .input { height: 46px; font-size: 14.5px; }
.formcard .btn { width: 100%; }
.formcard .done { padding: 0; border: 0; box-shadow: none; }
.formcard :focus-visible { outline-color: rgb(var(--violet-rgb) / 55%); }
.apply-form.is-submitted > :not(.form-success) { display: none; }
.formcard-alt { margin-top: 12px; font-size: 13.5px; text-align: center; color: var(--muted); }
.formcard-alt a { color: var(--violet); font-weight: 700; white-space: nowrap; }
@media (max-width: 1180px) {
  .fan .creative { width: 200px; }
  .fan .t2 { left: 120px; }
  .fan .t3 { left: 220px; }
}
@media (max-width: 1060px) {
  .final-grid { grid-template-columns: 1fr; }
  .fan { max-width: 560px; }
}
@media (max-width: 700px) {
  .done-demo { flex-direction: column; align-items: flex-start; }
  .done-demo .btn { margin-left: 0; width: 100%; }
  .fstats { gap: 22px; }
  .fstats b { font-size: 38px; }
  .fan { height: auto; display: flex; flex-direction: column; }
  .fan .creative { display: none; }
  .formcard { position: static; }
}

/* ---------- Gap Scan call-to-action band (about and blog pages) ---------- */
.cta-band { position: relative; overflow: hidden; padding: 88px 0; }
.cta-band::before { content: ''; position: absolute; width: 700px; height: 700px; right: -260px; top: -380px; pointer-events: none; background: radial-gradient(circle, rgb(var(--violet-rgb) / 50%), transparent 60%); }
.cta-band-inner { position: relative; display: grid; grid-template-columns: 1.3fr 1fr; gap: 56px; align-items: end; }
.cta-band .h2 { margin-top: 18px; font-size: 54px; }
.cta-band-inner > div > p { max-width: 560px; margin-top: 18px; font-size: 18px; color: var(--on-dark-2); }
.cta-band-actions { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; }
.cta-band-link { font-size: 14.5px; font-weight: 650; color: var(--on-dark-3); }
.cta-band-link b { color: var(--lime); font-weight: 750; }
.cta-band-link:hover b { text-decoration: underline; text-underline-offset: 3px; }
@media (max-width: 860px) {
  .cta-band-inner { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 700px) {
  .cta-band { padding: 64px 0; }
  .cta-band .h2 { font-size: var(--fs-h2); }
  .cta-band .btn { width: 100%; }
}

/* ---------- Shared responsive scaffolding ---------- */
@media (max-width: 960px) {
  .sec-head { grid-template-columns: 1fr; gap: 16px; margin-bottom: 40px; }
  .faq { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 700px) {
  .sec-head { margin-bottom: 34px; }
  .center-head { margin-bottom: 40px; }
  .qa summary { font-size: 17px; }
}

/* ---------- Reduced motion: everything visible and still ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .js .reveal { opacity: 1; transform: none; }
}
