/* ==========================================================================
   Cardora — fake-door concept site
   Design system: premium fintech, warm ivory + ink, electric cobalt accent.
   Single shared stylesheet for all pages. No build step.
   ========================================================================== */

/* ---- Tokens ------------------------------------------------------------- */
:root {
  --ink: #0E0E12;
  --ink-soft: #1A1B22;
  --ink-2: #2A2C36;
  --paper: #F5F2EC;
  --paper-2: #EFEBE2;
  --white: #FFFFFF;
  --muted: #6C6A74;
  --muted-soft: #9A98A2;
  --line: rgba(14, 14, 18, 0.10);
  --line-strong: rgba(14, 14, 18, 0.16);

  --accent: #2F47FF;
  --accent-600: #2237E6;
  --accent-300: #6E80FF;
  --accent-tint: rgba(47, 71, 255, 0.10);
  --accent-grad: linear-gradient(135deg, #2F47FF 0%, #5E76FF 100%);

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --shadow-sm: 0 1px 2px rgba(14, 14, 18, 0.06), 0 2px 8px rgba(14, 14, 18, 0.04);
  --shadow: 0 12px 30px -12px rgba(14, 14, 18, 0.18);
  --shadow-lg: 0 40px 80px -28px rgba(14, 14, 18, 0.45);

  --maxw: 1140px;
  --gutter: clamp(20px, 5vw, 56px);

  --font-display: "Schibsted Grotesk", system-ui, -apple-system, sans-serif;
  --font-body: "Hanken Grotesk", system-ui, -apple-system, sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---- Reset / base ------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.6;
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0;
}

p { margin: 0; }

button { font-family: inherit; cursor: pointer; }

:focus-visible {
  outline: 2.5px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection { background: var(--accent); color: #fff; }

/* ---- Layout helpers ----------------------------------------------------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }

.section { padding-block: clamp(64px, 9vw, 120px); }
.section--tight { padding-block: clamp(48px, 6vw, 80px); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent-600);
}
.eyebrow::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.lead { font-size: clamp(18px, 2vw, 21px); color: var(--muted); line-height: 1.55; }

.h1 { font-size: clamp(40px, 7vw, 78px); }
.h2 { font-size: clamp(30px, 4.6vw, 50px); }
.h3 { font-size: clamp(21px, 2.4vw, 27px); }

.text-balance { text-wrap: balance; }
.center { text-align: center; }

/* ---- Buttons ------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.01em;
  padding: 14px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease),
              box-shadow 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
  white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(0.99); }

.btn--primary { background: var(--ink); color: var(--white); }
.btn--primary:hover { background: var(--accent); box-shadow: 0 14px 26px -12px var(--accent); transform: translateY(-2px); }

.btn--accent { background: var(--accent); color: #fff; box-shadow: 0 12px 24px -14px var(--accent); }
.btn--accent:hover { background: var(--accent-600); transform: translateY(-2px); box-shadow: 0 18px 32px -14px var(--accent); }

.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn--ghost:hover { border-color: var(--ink); transform: translateY(-2px); }

.btn--light { background: #fff; color: var(--ink); }
.btn--light:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }

.btn--lg { padding: 17px 30px; font-size: 17px; }
.btn .arrow { transition: transform 0.25s var(--ease); }
.btn:hover .arrow { transform: translateX(3px); }

/* ---- Navigation --------------------------------------------------------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 60;
  background: color-mix(in srgb, var(--paper) 82%, transparent);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.nav.is-stuck { border-color: var(--line); }
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav__logo { display: inline-flex; align-items: center; }
.nav__logo svg { height: 30px; width: auto; }
.nav__links { display: flex; align-items: center; gap: 6px; }
.nav__links a {
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 500;
  color: var(--ink);
  font-size: 15.5px;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}
.nav__links a:hover { background: rgba(14,14,18,0.05); }
.nav__links a[aria-current="page"] { color: var(--accent-600); }
.nav__actions { display: flex; align-items: center; gap: 12px; }
.nav__links .cta-mobile { display: none; }
.nav__toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: transparent;
  align-items: center; justify-content: center;
}
.nav__toggle span, .nav__toggle span::before, .nav__toggle span::after {
  content: ""; display: block; width: 18px; height: 2px; background: var(--ink); border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}
.nav__toggle span { position: relative; }
.nav__toggle span::before { position: absolute; top: -6px; }
.nav__toggle span::after { position: absolute; top: 6px; }
.nav.is-open .nav__toggle span { background: transparent; }
.nav.is-open .nav__toggle span::before { transform: translateY(6px) rotate(45deg); }
.nav.is-open .nav__toggle span::after { transform: translateY(-6px) rotate(-45deg); }

/* ---- Concept ribbon ----------------------------------------------------- */
.ribbon {
  background: var(--ink);
  color: rgba(255,255,255,0.86);
  font-size: 13px;
  letter-spacing: 0.01em;
  text-align: center;
  padding: 8px var(--gutter);
}
.ribbon strong { color: #fff; font-weight: 600; }
.ribbon .dot { color: var(--accent-300); margin-inline: 8px; }

/* ---- Hero --------------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(56px, 8vw, 104px);
  background:
    radial-gradient(120% 90% at 82% -10%, rgba(47,71,255,0.14), transparent 55%),
    radial-gradient(80% 60% at -5% 110%, rgba(47,71,255,0.07), transparent 60%),
    var(--paper);
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: 0.035;
  pointer-events: none;
  mix-blend-mode: multiply;
}
.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.hero__eyebrow { margin-bottom: 20px; }
.hero__title { margin-bottom: 22px; }
.hero__sub { max-width: 30ch; margin-bottom: 32px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero__note { margin-top: 22px; display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--muted); }
.hero__note .avatars { display: inline-flex; align-items: center; }
.hero__note .avatars img {
  width: 26px; height: 26px; border-radius: 50%; border: 2px solid var(--paper);
  margin-left: -8px; display: block; object-fit: cover; background: var(--paper-2);
}
.hero__note .avatars img:first-child { margin-left: 0; }

/* Card visual */
.hero__visual { position: relative; display: grid; place-items: center; min-height: 380px; }
.card3d {
  position: relative;
  width: min(360px, 78%);
  aspect-ratio: 1.586 / 1;
  border-radius: 20px;
  padding: 26px;
  color: #fff;
  background:
    radial-gradient(140% 120% at 0% 0%, #353a52 0%, #14151c 46%, #0b0c11 100%);
  box-shadow: var(--shadow-lg);
  transform: rotate(-7deg);
  animation: float 7s var(--ease) infinite;
  display: flex; flex-direction: column; justify-content: space-between;
  border: 1px solid rgba(255,255,255,0.08);
}
.card3d::before {
  content: "";
  position: absolute; inset: 0; border-radius: inherit;
  background: linear-gradient(120deg, transparent 38%, rgba(110,128,255,0.35) 50%, transparent 62%);
  mix-blend-mode: screen;
}
.card3d__top { display: flex; justify-content: space-between; align-items: center; font-family: var(--font-display); font-weight: 700; letter-spacing: -0.02em; font-size: 19px; }
.card3d__chip { width: 38px; height: 28px; border-radius: 7px; background: linear-gradient(135deg,#d9c38a,#b9924a); opacity: 0.95; }
.card3d__num { font-family: var(--font-display); letter-spacing: 0.12em; font-size: 16px; color: rgba(255,255,255,0.86); }
.card3d__row { display: flex; justify-content: space-between; align-items: flex-end; font-size: 12px; color: rgba(255,255,255,0.6); }
.card3d__row b { display:block; color:#fff; font-size: 13px; font-weight: 600; letter-spacing: 0.02em; }
.hero__visual .halo {
  position: absolute; width: 78%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, rgba(47,71,255,0.30), transparent 65%);
  filter: blur(14px); z-index: -1;
}
.hero__visual .floaty {
  position: absolute;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 12px 14px;
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 600;
  animation: float 8s var(--ease) infinite;
}
.hero__visual .floaty--1 { top: 12%; left: -2%; animation-delay: -1.5s; }
.hero__visual .floaty--2 { bottom: 10%; right: -3%; animation-delay: -3.5s; }
.hero__visual .floaty .ic {
  width: 30px; height: 30px; border-radius: 9px; background: var(--accent-tint);
  display: grid; place-items: center; color: var(--accent-600);
}
.hero__visual .floaty small { display: block; font-weight: 500; color: var(--muted); font-size: 11px; }

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-7deg); }
  50% { transform: translateY(-14px) rotate(-7deg); }
}
.hero__visual .floaty { animation-name: floatUp; }
@keyframes floatUp { 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(-12px);} }

/* ---- Logo / trust strip ------------------------------------------------- */
.trust { border-block: 1px solid var(--line); background: var(--paper); }
.trust__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; padding-block: 22px; }
.trust__label { font-size: 13px; color: var(--muted); letter-spacing: 0.02em; }
.trust__items { display: flex; gap: clamp(18px, 4vw, 44px); flex-wrap: wrap; align-items: center; }
.trust__items span { font-family: var(--font-display); font-weight: 600; color: var(--ink-2); opacity: 0.6; font-size: 15px; letter-spacing: 0.01em; }

/* ---- Section headers ---------------------------------------------------- */
.shead { max-width: 640px; margin-bottom: clamp(36px, 5vw, 56px); }
.shead.center { margin-inline: auto; }
.shead .eyebrow { margin-bottom: 16px; }
.shead p { margin-top: 16px; }

/* ---- Feature grid (Why) ------------------------------------------------- */
.features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.feature {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 24px 30px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.feature:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: transparent; }
.feature__ic {
  width: 48px; height: 48px; border-radius: 14px;
  background: var(--accent-tint); color: var(--accent-600);
  display: grid; place-items: center; margin-bottom: 18px;
}
.feature h3 { font-size: 18px; letter-spacing: -0.02em; margin-bottom: 8px; }
.feature p { font-size: 14.5px; color: var(--muted); line-height: 1.5; }

/* ---- Showcase band (dark) ---------------------------------------------- */
.showcase {
  background:
    radial-gradient(90% 120% at 100% 0%, rgba(47,71,255,0.22), transparent 50%),
    var(--ink);
  color: #fff;
  border-radius: clamp(24px, 4vw, 40px);
  overflow: hidden;
}
.showcase__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 64px);
  align-items: center; padding: clamp(36px, 6vw, 72px);
}
.showcase h2 { color: #fff; }
.showcase .lead { color: rgba(255,255,255,0.72); }
.showcase .eyebrow { color: var(--accent-300); }
.showcase .eyebrow::before { background: var(--accent-300); }
.steps { display: grid; gap: 14px; margin-top: 30px; }
.step { display: flex; gap: 16px; align-items: flex-start; }
.step__n {
  flex: none; width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.22); color: #fff;
  display: grid; place-items: center; font-family: var(--font-display); font-weight: 600; font-size: 15px;
}
.step b { font-weight: 600; }
.step p { color: rgba(255,255,255,0.66); font-size: 15px; }
.showcase__panel {
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 22px;
  display: grid; gap: 12px;
}
.statline { display: flex; align-items: baseline; justify-content: space-between; padding: 14px 4px; border-bottom: 1px solid rgba(255,255,255,0.10); }
.statline:last-child { border-bottom: 0; }
.statline .k { color: rgba(255,255,255,0.6); font-size: 14px; }
.statline .v { font-family: var(--font-display); font-size: 26px; font-weight: 700; letter-spacing: -0.02em; }
.statline .v span { color: var(--accent-300); }

/* ---- Survey band -------------------------------------------------------- */
.survey {
  position: relative;
  background: var(--accent-grad);
  color: #fff;
  border-radius: clamp(24px, 4vw, 40px);
  padding: clamp(40px, 6vw, 76px);
  overflow: hidden;
  text-align: center;
}
.survey::before {
  content: ""; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40'%3E%3Cpath d='M0 39.5H40M39.5 0V40' stroke='white' stroke-opacity='0.08'/%3E%3C/svg%3E");
  pointer-events: none;
}
.survey > * { position: relative; }
.survey h2 { color: #fff; max-width: 18ch; margin-inline: auto; }
.survey p { color: rgba(255,255,255,0.88); max-width: 56ch; margin: 18px auto 30px; font-size: 18px; }
.survey .meta { margin-top: 18px; font-size: 14px; color: rgba(255,255,255,0.78); }

/* ---- Email capture ------------------------------------------------------ */
.capture { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.capture__card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 4vw, 40px);
  box-shadow: var(--shadow);
}
.form-row { display: flex; gap: 10px; margin-top: 22px; }
.form-row input[type="email"] {
  flex: 1; min-width: 0;
  font-family: inherit; font-size: 16px;
  padding: 15px 18px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.form-row input[type="email"]:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px var(--accent-tint); background: #fff; }
.form-note { font-size: 13px; color: var(--muted-soft); margin-top: 14px; }
.form-msg { margin-top: 16px; font-size: 15px; font-weight: 600; display: none; }
.form-msg.is-ok { display: block; color: var(--accent-600); }
.form-msg.is-err { display: block; color: #C0362C; }
.capture__list { list-style: none; margin: 22px 0 0; padding: 0; display: grid; gap: 14px; }
.capture__list li { display: flex; gap: 12px; align-items: flex-start; font-size: 15.5px; }
.capture__list .tick { flex: none; width: 24px; height: 24px; border-radius: 50%; background: var(--accent-tint); color: var(--accent-600); display: grid; place-items: center; }

/* ---- FAQ ---------------------------------------------------------------- */
.faq { max-width: 760px; margin-inline: auto; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q {
  width: 100%; text-align: left; background: none; border: 0;
  padding: 22px 0; font-family: var(--font-display); font-weight: 600;
  font-size: clamp(17px, 2vw, 20px); letter-spacing: -0.02em; color: var(--ink);
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.faq__q .pm { flex: none; width: 26px; height: 26px; position: relative; }
.faq__q .pm::before, .faq__q .pm::after { content: ""; position: absolute; background: var(--accent); border-radius: 2px; transition: transform 0.3s var(--ease); }
.faq__q .pm::before { top: 12px; left: 4px; width: 18px; height: 2px; }
.faq__q .pm::after { top: 4px; left: 12px; width: 2px; height: 18px; }
.faq__item.is-open .pm::after { transform: rotate(90deg); opacity: 0; }
.faq__a { max-height: 0; overflow: hidden; transition: max-height 0.35s var(--ease); }
.faq__a p { padding-bottom: 24px; color: var(--muted); font-size: 16px; max-width: 64ch; }

/* ---- Page hero (subpages) ---------------------------------------------- */
.phero { padding-block: clamp(48px, 7vw, 96px); background:
  radial-gradient(100% 80% at 80% -10%, rgba(47,71,255,0.10), transparent 55%), var(--paper); }
.phero .h1 { font-size: clamp(36px, 6vw, 64px); max-width: 16ch; }
.phero .lead { margin-top: 22px; max-width: 54ch; }

/* ---- Prose / about ------------------------------------------------------ */
.prose { max-width: 680px; }
.prose p { margin-bottom: 18px; color: var(--ink-soft); font-size: 17.5px; line-height: 1.7; }
.prose h2 { margin-top: 40px; margin-bottom: 14px; }

.valuegrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.value { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px 24px; }
.value h3 { font-size: 18px; margin-bottom: 8px; }
.value p { color: var(--muted); font-size: 15px; }
.value .num { font-family: var(--font-display); font-size: 14px; font-weight: 700; color: var(--accent-600); margin-bottom: 16px; }

/* ---- Spec rows (features page) ----------------------------------------- */
.specs { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.spec { display: flex; gap: 16px; padding: 26px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); }
.spec__ic { flex: none; width: 46px; height: 46px; border-radius: 13px; background: var(--accent-tint); color: var(--accent-600); display: grid; place-items: center; }
.spec h3 { font-size: 18px; margin-bottom: 6px; }
.spec p { color: var(--muted); font-size: 15px; }

/* ---- Footer ------------------------------------------------------------- */
.footer { background: var(--ink); color: rgba(255,255,255,0.7); padding-block: clamp(48px, 6vw, 72px) 32px; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; }
.footer__brand svg { height: 30px; }
.footer__brand p { margin-top: 18px; max-width: 34ch; font-size: 14.5px; color: rgba(255,255,255,0.6); line-height: 1.6; }
.footer__col h4 { font-family: var(--font-display); font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 16px; font-weight: 600; }
.footer__col a { display: block; padding: 7px 0; color: rgba(255,255,255,0.74); font-size: 15px; transition: color 0.2s var(--ease); }
.footer__col a:hover { color: #fff; }
.footer__bottom {
  margin-top: clamp(36px, 5vw, 56px); padding-top: 26px; border-top: 1px solid rgba(255,255,255,0.12);
  display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap;
  font-size: 13px; color: rgba(255,255,255,0.5);
}
.footer__disclaimer { max-width: 70ch; line-height: 1.6; }

/* ---- Scroll reveal ------------------------------------------------------ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }

/* ---- Responsive --------------------------------------------------------- */
@media (max-width: 960px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { order: -1; min-height: 300px; }
  .hero__sub { max-width: 46ch; }
  .features { grid-template-columns: repeat(2, 1fr); }
  .showcase__grid { grid-template-columns: 1fr; }
  .capture { grid-template-columns: 1fr; }
  .valuegrid { grid-template-columns: 1fr; }
  .specs { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .nav__links, .nav__actions .btn { display: none; }
  .nav__toggle { display: inline-flex; }
  .nav.is-open .nav__links {
    display: flex; position: absolute; top: 72px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 4px;
    background: var(--paper); border-bottom: 1px solid var(--line);
    padding: 14px var(--gutter) 22px;
  }
  .nav.is-open .nav__links a { padding: 12px 14px; font-size: 17px; }
  .nav.is-open .nav__links .cta-mobile { display: block; color: var(--accent-600); font-weight: 600; }
  .features { grid-template-columns: 1fr; }
  .form-row { flex-direction: column; }
  .form-row .btn { width: 100%; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { width: 100%; }
}

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