/* ============================================================
   Findfront — landing page, revision 3
   Direction: Springboard × Foreground (exploration board 3b)

   Layout responds to the .page container (container queries),
   so breakpoints behave like viewport breakpoints when the page
   is full-width and still hold if the page is ever embedded.
   Breakpoints: 900px, 760px, 560px.
   ============================================================ */

:root {
  /* colour */
  --cloud: #F3F5F9;
  --midnight: #0E1626;
  --periwinkle: #6E7FFF;
  --mint: #C8F5DC;
  --ink-85: rgba(14, 22, 38, .85);
  --ink-80: rgba(14, 22, 38, .8);
  --ink-65: rgba(14, 22, 38, .65);
  --ink-35: rgba(14, 22, 38, .35);
  --ink-08: rgba(14, 22, 38, .08);
  --cloud-85: rgba(243, 245, 249, .85);
  --cloud-70: rgba(243, 245, 249, .7);
  --line: rgba(14, 22, 38, .15);
  --line-dark: rgba(243, 245, 249, .18);
  /* type */
  --font-display: 'Schibsted Grotesk', system-ui, sans-serif;
  --font-text: 'Geist', system-ui, sans-serif;
  /* layout */
  --gutter: clamp(20px, 3.2cqw, 40px);
  --radius: 10px;
  --radius-panel: 14px;
  --radius-lg: 28px;
  --ease: cubic-bezier(.2, .8, .2, 1);
}

/* ---------- base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--cloud);
  color: var(--midnight);
  font-family: var(--font-text);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
.page { container-type: inline-size; container-name: page; overflow-x: clip; }
img, svg { display: block; }
a { color: inherit; text-decoration: none; }
p { margin: 0; }
ol, ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3 { margin: 0; font-family: var(--font-display); font-weight: 800; line-height: 1; letter-spacing: -.04em; }
h2 { text-wrap: balance; }
button { font: inherit; color: inherit; }
::selection { background: var(--mint); color: var(--midnight); }
:focus-visible { outline: 3px solid var(--midnight); outline-offset: 3px; border-radius: 6px; }
.on-dark :focus-visible { outline-color: var(--mint); }

.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 {
  position: absolute; left: 16px; top: -64px; z-index: 100;
  padding: 10px 16px; border-radius: var(--radius);
  background: var(--midnight); color: var(--mint); font-weight: 600;
}
.skip:focus { top: 12px; }

/* ---------- shared pieces ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 48px; padding: 0 24px; border-radius: var(--radius);
  font-weight: 600; font-size: 16px; line-height: 1;
  transition: transform .2s var(--ease), background .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-dark { background: var(--midnight); color: var(--mint); }
.btn-light { background: var(--cloud); color: var(--midnight); }
.btn-mint { background: var(--mint); color: var(--midnight); }

.label {
  display: inline-flex; align-items: center; min-height: 26px; padding: 0 10px;
  border-radius: 6px; background: var(--mint); color: var(--midnight);
  font-family: var(--font-text); font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  line-height: 1.2;
}
.dim { opacity: .5; }

.sticker {
  display: inline-flex; align-items: center; min-height: 44px; padding: 0 18px;
  border-radius: 10px; font-weight: 600; font-size: 14px; letter-spacing: .06em; text-transform: uppercase;
  transition: transform .35s var(--ease);
}

/* brand: card mark + tonal wordmark */
.brand {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 700; font-size: 26px;
  letter-spacing: -.04em; line-height: 1;
}
.brand .mark { width: 28px; height: 28px; flex: none; }
.mark-back { fill: none; stroke: currentColor; stroke-width: 8; opacity: .5; }
.mark-front { fill: var(--periwinkle); }
.wm-find { opacity: .55; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  background: var(--periwinkle); color: var(--midnight);
  min-height: clamp(600px, 58cqw, 840px);
  display: grid; grid-template-rows: auto 1fr auto;
  overflow: hidden;
}
.hero .mark-front { fill: var(--midnight); }
.hero .wm-find { opacity: .62; }

.nav {
  position: relative; z-index: 5;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 28px var(--gutter) 0;
}
.nav-pill {
  display: flex; align-items: center;
  background: var(--ink-08); border: 1px solid var(--ink-35); border-radius: 12px;
  padding: 6px 6px 6px 8px; font-weight: 600; font-size: 14px;
}
.nav-pill a:not(.btn) { padding: 8px 14px; border-radius: 8px; transition: background .2s; }
.nav-pill a:not(.btn):hover { background: var(--ink-08); }
.nav-pill .btn { min-height: 36px; padding: 0 16px; border-radius: 8px; margin-left: 4px; font-size: 14px; }
.nav-toggle {
  display: none; align-items: center; gap: 10px;
  min-height: 44px; min-width: 44px; padding: 0 14px;
  border: 1px solid var(--ink-35); border-radius: 10px; background: var(--ink-08);
  font-weight: 600; font-size: 14px; cursor: pointer;
}
.nav-toggle .bars { display: grid; gap: 5px; width: 18px; }
.nav-toggle .bars span { height: 2px; background: currentColor; }

.hero-stage {
  position: relative;
  display: grid; align-content: center; justify-items: center;
  padding: clamp(24px, 3cqw, 40px) var(--gutter) 0;
  text-align: center;
}
.sticker-1 { transform: rotate(-4deg); background: var(--mint); margin-bottom: clamp(20px, 2.4cqw, 32px); }
.sticker-2 { transform: rotate(3deg); border: 2px solid var(--midnight); }
.sticker-3 { transform: rotate(-3deg); background: var(--midnight); color: var(--mint); margin-left: -6px; }
.sticker:hover { transform: rotate(0) scale(1.04); }
.hero-tags { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; }

.hero-title { font-weight: 800; letter-spacing: -.045em; line-height: 1; }
.hero-line { display: block; font-size: clamp(34px, 5.6cqw, 72px); margin-bottom: .04em; }
.hero-word {
  position: relative; display: inline-block;
  font-size: clamp(112px, 36cqw, 470px); letter-spacing: -.07em; line-height: .86;
  padding-bottom: .14em;
}
/* the springboard pad and its shadow, sized in em so they scale with the word */
.hero-word::before {
  content: ''; position: absolute; left: 20%; right: 20%; bottom: .18em; height: .06em;
  border-radius: .03em; background: var(--mint); transform-origin: center bottom;
  animation: squash .5s var(--ease) 1s both;
}
.hero-word::after {
  content: ''; position: absolute; left: 28%; right: 28%; bottom: .1em; height: .05em;
  border-radius: 50%; background: var(--midnight); opacity: .28; filter: blur(.025em);
}
.hero-word-text {
  position: relative; z-index: 1; display: inline-block;
  animation: drop .9s var(--ease) .2s both;
}
@keyframes drop { from { transform: translateY(-.28em); opacity: 0; } }
@keyframes squash { 0% { transform: none; } 40% { transform: scale(1.06, .55); } 100% { transform: none; } }

.hero-foot {
  position: relative; z-index: 2;
  display: flex; justify-content: space-between; align-items: flex-end; gap: 24px 40px; flex-wrap: wrap;
  padding: 24px var(--gutter) 44px;
}
.lede { font-size: clamp(18px, 1.7cqw, 22px); line-height: 1.4; font-weight: 500; max-width: 560px; text-wrap: pretty; }

/* ---------- ticker ---------- */
.ticker {
  background: var(--mint); color: var(--midnight); overflow: hidden; padding: 20px 0 12px;
  font-family: var(--font-display); font-weight: 800; font-size: clamp(28px, 4cqw, 52px);
  letter-spacing: -.04em; line-height: 1; white-space: nowrap;
}
.ticker-track { display: flex; width: max-content; animation: ticker 52s linear infinite; }
.ticker:hover .ticker-track,
.ticker.is-paused .ticker-track { animation-play-state: paused; }
.ticker-group { display: inline-flex; align-items: center; padding-left: .5em; }
.blank {
  display: inline-block; width: 2.7em; height: .6em; margin: 0 .12em;
  border: 2px dashed var(--midnight); border-radius: 10px; vertical-align: -.04em;
}
.dot { display: inline-block; width: .3em; height: .3em; margin: 0 .5em; background: var(--periwinkle); border-radius: .07em; vertical-align: .18em; }
.you { display: inline-block; margin-left: .22em; padding: 0 .4em; line-height: 1.05; background: var(--midnight); color: var(--cloud); border-radius: 10px; }
@keyframes ticker { to { transform: translateX(-50%); } }

.ticker-bar {
  display: flex; justify-content: space-between; align-items: center; gap: 12px 24px; flex-wrap: wrap;
  margin-top: 14px; padding: 0 var(--gutter);
  font-family: var(--font-text); font-weight: 500; font-size: 13px; letter-spacing: 0; line-height: 1.4;
  white-space: normal; color: var(--ink-80);
}
.ticker-pause {
  display: inline-flex; align-items: center; gap: 8px;
  min-height: 36px; padding: 0 12px; border-radius: 8px;
  border: 1.5px solid var(--ink-35); background: transparent; color: var(--midnight);
  font-weight: 600; font-size: 12px; letter-spacing: .06em; text-transform: uppercase; cursor: pointer;
  transition: background .2s;
}
.ticker-pause:hover { background: rgba(14, 22, 38, .08); }
.ticker-pause[aria-pressed="true"] { background: var(--midnight); color: var(--mint); border-color: var(--midnight); }
.ticker-pause[aria-pressed="true"]::before { width: 0; height: 0; border-style: solid; border-width: 5px 0 5px 8px; border-color: transparent transparent transparent currentColor; border-radius: 0; background: none; }
.ticker-pause::before {
  content: ''; width: 8px; height: 8px; border-radius: 2px; background: currentColor;
}

/* ---------- why ---------- */
.why { padding: clamp(64px, 6.9cqw, 88px) var(--gutter) clamp(56px, 5.6cqw, 72px); }
.why-top {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 4.4cqw, 56px); align-items: start;
}
.why h2 { font-size: clamp(40px, 6.25cqw, 80px); line-height: .94; letter-spacing: -.05em; }
.why-copy { display: grid; gap: 18px; font-size: clamp(16px, 1.4cqw, 18px); color: var(--ink-85); text-wrap: pretty; }

/* the journey: four stages, drawn with the card mark */
.journey { margin-top: clamp(48px, 5cqw, 72px); }
.journey-title { margin-bottom: 28px; }
.journey-grid {
  position: relative;
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px;
}
.journey-grid::before {
  content: ''; position: absolute; left: 44px; right: calc(25% - 62px); top: 44px; height: 0;
  border-top: 3px dotted var(--periwinkle); opacity: .7;
}
.stage { position: relative; }
.stage-art { width: 88px; height: 88px; margin-bottom: 18px; color: var(--midnight); background: var(--cloud); }
.art-back { fill: none; stroke: currentColor; stroke-width: 8; opacity: .5; }
.art-back-faint { opacity: .22; }
.art-front-dashed { fill: none; stroke: var(--periwinkle); stroke-width: 6; stroke-dasharray: 11 10; stroke-linecap: round; }
.art-front-outline { fill: var(--cloud); stroke: var(--periwinkle); stroke-width: 8; }
.art-front { fill: var(--periwinkle); }
.art-line { fill: var(--periwinkle); }
.art-check { fill: none; stroke: var(--cloud); stroke-width: 9; stroke-linecap: round; stroke-linejoin: round; }
.art-pad { fill: var(--mint); }
.stage h3 { font-size: 24px; letter-spacing: -.03em; margin-bottom: 8px; }
.stage p { font-size: 15px; line-height: 1.5; color: var(--ink-80); text-wrap: pretty; max-width: 260px; }

/* ---------- what we do ---------- */
.what { padding: 0 var(--gutter) clamp(64px, 7.5cqw, 96px); }
.what .label { margin-bottom: 14px; }
.what h2 { font-size: clamp(36px, 5cqw, 64px); line-height: .96; letter-spacing: -.05em; margin-bottom: 28px; }
.stack { max-width: 1080px; margin: 0 auto; }
.card {
  display: grid; grid-template-columns: minmax(0, 200px) 1fr; gap: 32px; align-items: center;
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3.1cqw, 40px) clamp(24px, 4.4cqw, 56px);
  transition: transform .35s var(--ease);
}
.card + .card { margin-top: -8px; }
.card-1 { background: var(--periwinkle); color: var(--midnight); transform: rotate(-2.5deg); }
.card-2 { background: var(--midnight); color: var(--cloud); transform: rotate(1.5deg); position: relative; z-index: 1; }
.card-3 { background: var(--mint); color: var(--midnight); transform: rotate(-1deg); }
.card:hover { transform: rotate(0); }
.card-num { font-family: var(--font-display); font-weight: 800; font-size: clamp(64px, 9.4cqw, 120px); line-height: .85; letter-spacing: -.06em; }
.card h3 { font-size: clamp(26px, 3.1cqw, 40px); margin-bottom: 8px; }
.card p { max-width: 600px; font-size: 17px; line-height: 1.5; text-wrap: pretty; }
.card-1 p, .card-3 p { color: var(--midnight); }
.card-2 p { color: var(--cloud-85); }
.outputs { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.outputs li {
  display: inline-flex; align-items: center; min-height: 30px; padding: 0 11px;
  border-radius: 6px; font-size: 13px; font-weight: 600; letter-spacing: 0;
  background: rgba(243, 245, 249, .55); color: var(--midnight);
}
.card-2 .outputs li { background: rgba(243, 245, 249, .12); color: var(--cloud); }
.card-3 .outputs li { background: rgba(14, 22, 38, .08); }

/* ---------- illustrative example ---------- */
.example {
  background: var(--periwinkle); color: var(--midnight);
  padding: clamp(56px, 6.25cqw, 80px) var(--gutter) clamp(56px, 6.25cqw, 80px);
}
.example-head { display: grid; gap: 14px; justify-items: start; max-width: 720px; margin-bottom: clamp(32px, 3.6cqw, 48px); }
.sticker-note { transform: rotate(-2deg); background: var(--cloud); min-height: 40px; font-size: 13px; }
.example h2 { font-size: clamp(40px, 6.25cqw, 80px); line-height: .94; letter-spacing: -.05em; }
.example-lede { font-size: clamp(17px, 1.4cqw, 19px); font-weight: 500; }
.notes { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; align-items: stretch; }
.note {
  background: var(--cloud); color: var(--midnight);
  border-radius: var(--radius-panel); padding: 24px 24px 28px;
  display: grid; gap: 12px; align-content: start;
  transition: transform .35s var(--ease);
}
.note-1 { transform: rotate(-1.4deg); }
.note-2 { transform: rotate(1deg); }
.note-3 { transform: rotate(-.8deg); background: var(--midnight); color: var(--cloud); }
.note:hover { transform: rotate(0); }
.note-label { font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-65); }
.note-3 .note-label { color: var(--mint); }
.note p { font-size: 18px; line-height: 1.45; text-wrap: pretty; }
.note-1 p { font-family: var(--font-display); font-weight: 700; font-size: clamp(22px, 1.9cqw, 28px); line-height: 1.15; letter-spacing: -.03em; }
.verdicts { display: flex; flex-wrap: wrap; gap: 10px; margin-top: clamp(28px, 3cqw, 40px); }
.verdict {
  display: inline-flex; align-items: center; gap: 10px; min-height: 44px; padding: 0 16px 0 14px;
  border-radius: 10px; font-weight: 600; font-size: 14px; letter-spacing: .06em; text-transform: uppercase;
}
.verdict svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.verdict-yes { background: var(--mint); color: var(--midnight); }
.verdict-no { background: var(--midnight); color: var(--mint); }
.example-moral { max-width: 720px; margin-top: 28px; font-size: clamp(17px, 1.4cqw, 19px); line-height: 1.5; text-wrap: pretty; }

/* ---------- how we work ---------- */
.how { padding: clamp(64px, 7.5cqw, 96px) var(--gutter) clamp(64px, 7.5cqw, 96px); }
.how h2 { font-size: clamp(36px, 5cqw, 64px); line-height: .96; letter-spacing: -.05em; color: var(--periwinkle); margin-bottom: 8px; }
.how-lede { font-size: 18px; color: var(--ink-80); max-width: 640px; margin-bottom: 24px; text-wrap: pretty; }
.bounce { width: 100%; max-width: 1200px; height: auto; overflow: visible; margin-bottom: 8px; }
.steps { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; max-width: 1200px; }
.step-label { display: block; font-weight: 600; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-65); margin-bottom: 6px; }
.steps h3 { font-size: 26px; letter-spacing: -.03em; margin-bottom: 6px; }
.steps li { padding-top: 6px; }
.steps p { font-size: 15px; line-height: 1.5; color: var(--ink-80); text-wrap: pretty; }

/* ---------- three results ---------- */
.results {
  padding: 0 var(--gutter) clamp(64px, 7.5cqw, 96px);
}
.results-inner { max-width: 1200px; padding-top: clamp(40px, 4.4cqw, 56px); border-top: 1px solid var(--line); }
.results h2 { font-size: clamp(32px, 4.4cqw, 56px); line-height: .96; letter-spacing: -.05em; margin-bottom: clamp(28px, 3cqw, 40px); max-width: 820px; }
.results-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px 32px; }
.results-grid li { padding: 22px 0 0; border-top: 3px solid var(--periwinkle); }
.results-grid h3 { font-size: 24px; letter-spacing: -.03em; margin-bottom: 8px; }
.results-grid p { font-size: 15px; line-height: 1.5; color: var(--ink-80); text-wrap: pretty; max-width: 340px; }
.results-note {
  display: inline-block; margin-top: clamp(28px, 3cqw, 40px); padding: 10px 14px; border-radius: 10px;
  background: var(--mint); color: var(--midnight);
  font-size: 15px; font-weight: 500; line-height: 1.5; text-wrap: pretty;
}

/* ---------- contact + footer ---------- */
.contact { background: var(--midnight); color: var(--cloud); padding: clamp(64px, 6.25cqw, 80px) var(--gutter) 36px; overflow: hidden; }
.contact-title { position: relative; z-index: 0; font-size: clamp(72px, 18.4cqw, 236px); line-height: .86; letter-spacing: -.06em; white-space: nowrap; }
.underline { position: relative; display: inline-block; }
.underline::after { content: ''; position: absolute; left: -.02em; right: .1em; bottom: -.08em; height: .1em; border-radius: 6px; background: var(--mint); z-index: -1; }
.contact-row { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px 40px; flex-wrap: wrap; margin-top: 40px; }
.contact-row p { font-size: 19px; line-height: 1.5; max-width: 560px; color: var(--cloud-85); text-wrap: pretty; }
.bring { display: flex; flex-wrap: wrap; gap: 10px; }
.bring li {
  display: inline-flex; align-items: center; min-height: 44px; padding: 0 16px;
  border: 2px solid var(--mint); border-radius: 10px; color: var(--cloud);
  font-weight: 600; font-size: 14px; letter-spacing: .06em; text-transform: uppercase;
}
.bring li:nth-child(1) { transform: rotate(-2deg); }
.bring li:nth-child(2) { transform: rotate(1.5deg); }
.bring li:nth-child(3) { transform: rotate(-1deg); }
.footer {
  display: flex; justify-content: space-between; align-items: center; gap: 16px 24px; flex-wrap: wrap;
  margin-top: 72px; padding-top: 24px; border-top: 1px solid var(--line-dark);
  font-size: 13px; color: var(--cloud-70);
}
.footer .brand { font-size: 22px; color: var(--cloud); }
.footer .brand .mark { width: 24px; height: 24px; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 6px 20px; }
.footer-nav a:hover { color: var(--cloud); }

/* ---------- reveal on scroll (only with JS and motion allowed) ---------- */
.js-motion .reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s var(--ease), transform .7s var(--ease); }
.js-motion .reveal.in { opacity: 1; transform: none; }
.js-motion .card.reveal { transform: translateY(18px) rotate(0); }
.js-motion .card-1.reveal.in { transform: rotate(-2.5deg); }
.js-motion .card-2.reveal.in { transform: rotate(1.5deg); }
.js-motion .card-3.reveal.in { transform: rotate(-1deg); }
.js-motion .card.reveal.in:hover { transform: rotate(0); }
.js-motion .note.reveal { transform: translateY(18px) rotate(0); }
.js-motion .note-1.reveal.in { transform: rotate(-1.4deg); }
.js-motion .note-2.reveal.in { transform: rotate(1deg); }
.js-motion .note-3.reveal.in { transform: rotate(-.8deg); }
.js-motion .note.reveal.in:hover { transform: rotate(0); }
.js-motion .stage:nth-child(2).reveal { transition-delay: .08s; }
.js-motion .stage:nth-child(3).reveal { transition-delay: .16s; }
.js-motion .stage:nth-child(4).reveal { transition-delay: .24s; }

/* ---------- responsive ---------- */
@container page (max-width: 900px) {
  .why-top { grid-template-columns: 1fr; }
  .journey-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px 24px; }
  .journey-grid::before { display: none; }
  .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .results-grid { grid-template-columns: 1fr; gap: 24px; }
  .results-grid p { max-width: 560px; }
}
@container page (max-width: 760px) {
  .nav-toggle { display: inline-flex; }
  .nav-pill {
    display: none; position: absolute; left: var(--gutter); right: var(--gutter); top: calc(100% + 12px);
    flex-direction: column; align-items: stretch; gap: 4px; padding: 10px;
    background: var(--cloud); border-color: var(--line); box-shadow: 0 20px 60px rgba(14, 22, 38, .25);
  }
  .nav-pill.is-open { display: flex; }
  .nav-pill a:not(.btn) { padding: 12px 14px; font-size: 17px; }
  .nav-pill .btn { margin: 6px 0 0; min-height: 48px; font-size: 16px; }
  .card { grid-template-columns: 1fr; gap: 12px; }
  .card-num { font-size: 56px; }
  .card-1 { transform: rotate(-1.5deg); }
  .card-2 { transform: rotate(1deg); }
  .card-3 { transform: rotate(-.7deg); }
  .js-motion .card-1.reveal.in { transform: rotate(-1.5deg); }
  .js-motion .card-2.reveal.in { transform: rotate(1deg); }
  .js-motion .card-3.reveal.in { transform: rotate(-.7deg); }
  .notes { grid-template-columns: 1fr; gap: 16px; }
  .note-1 { transform: rotate(-.8deg); }
  .note-2 { transform: rotate(.6deg); }
  .note-3 { transform: rotate(-.5deg); }
  .js-motion .note-1.reveal.in { transform: rotate(-.8deg); }
  .js-motion .note-2.reveal.in { transform: rotate(.6deg); }
  .js-motion .note-3.reveal.in { transform: rotate(-.5deg); }
  .contact-row, .footer { align-items: flex-start; }
}
@container page (max-width: 560px) {
  .steps { grid-template-columns: 1fr; }
  .bounce { display: none; }
  .hero-foot .btn { width: 100%; }
  .hero-tags { display: none; }
  .hero-word::before { bottom: .16em; }
  .journey-grid { grid-template-columns: 1fr; gap: 22px; }
  .stage { display: grid; grid-template-columns: 56px 1fr; column-gap: 16px; align-items: start; }
  .stage-art { width: 56px; height: 56px; margin: 0; grid-row: 1 / span 2; }
  .stage h3 { font-size: 22px; margin-bottom: 4px; }
  .stage p { max-width: none; }
  .ticker-bar { font-size: 12px; }
  .sticker-note { font-size: 12px; padding: 0 14px; }
  .card-1, .js-motion .card-1.reveal.in { transform: rotate(-.8deg); }
  .card-2, .js-motion .card-2.reveal.in { transform: rotate(.6deg); }
  .card-3, .js-motion .card-3.reveal.in { transform: rotate(-.5deg); }
  .card:hover, .js-motion .card.reveal.in:hover { transform: rotate(0); }
}

/* ---------- motion preferences ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .js-motion .reveal { opacity: 1; transform: none; }
  .ticker-pause { display: none; }
  /* no movement: show the questions as a wrapped line instead of a clipped strip */
  .ticker { white-space: normal; padding: 20px var(--gutter) 12px; font-size: clamp(22px, 2.6cqw, 34px); line-height: 1.25; }
  .ticker-track { display: block; width: auto; }
  .ticker-group { display: inline; padding: 0; }
  .ticker-group + .ticker-group { display: none; }
  .ticker-bar { padding: 0; }
}
