/* 90North, marketing site
   Colors and type come from the Figma variables ("ARC / Color") and the app's type scale. */

:root {
  --bg: #07090D;
  --surface: #10141B;
  --surface-2: #171C25;
  --stroke: #232A36;
  --text: #F2F5F8;
  --muted: #8A94A6;
  --dim: #4E5767;
  --ice: #8FD3FF;
  --ice-deep: #2B6E9E;
  --ember: #FF6A3D;
  --on-accent: #06121C;
  --paper: #ECE9E2;
  --ink: #15181D;

  --f-display: 'Barlow Condensed', 'Arial Narrow', 'Helvetica Neue', sans-serif;
  --f-body: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --f-mono: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;
  --f-marker: 'Permanent Marker', 'Comic Sans MS', cursive;

  --gutter: clamp(20px, 4.5vw, 64px);
  --maxw: 1200px;
  --ease: cubic-bezier(.16, 1, .3, 1);
  --section-y: clamp(96px, 12vw, 180px);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; scroll-padding-top: 72px; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}
img, svg, canvas { display: block; max-width: 100%; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
a { color: inherit; }
p, h1, h2, h3, figure { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
::selection { background: var(--ice); color: var(--on-accent); }
:focus-visible { outline: 2px solid var(--ice); outline-offset: 3px; border-radius: 6px; }
main { overflow-x: clip; }

[hidden] { display: none !important; }
.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; }
.skip { position: fixed; left: 16px; top: -60px; z-index: 200; background: var(--ice); color: var(--on-accent); padding: 10px 16px; border-radius: 12px; font-weight: 600; text-decoration: none; transition: top .2s; }
.skip:focus { top: 16px; }
.wrap { width: 100%; max-width: calc(var(--maxw) + var(--gutter) * 2); margin: 0 auto; padding-inline: var(--gutter); }

/* ---------- type ---------- */
.display {
  font-family: var(--f-display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(3.2rem, 6.6vw, 6.4rem);
  line-height: .9;
  letter-spacing: -.003em;
  text-wrap: balance;
}
/* the caption style of the App Store screenshots */
.cap {
  font-family: var(--f-display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(2.5rem, 4.4vw, 4rem);
  line-height: .95;
  text-wrap: balance;
}
.lede { font-size: clamp(1.06rem, 1.3vw, 1.2rem); color: #B3BCCB; line-height: 1.5; max-width: 36ch; }
.fine { font-size: 13px; color: var(--muted); }
.link { color: var(--ice); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.link:hover { color: var(--text); }
.marker { font-family: var(--f-marker); font-size: 19px; line-height: 1.05; color: var(--ember); text-transform: lowercase; transform: rotate(-6deg); display: inline-block; }

/* ---------- buttons and badges ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; height: 52px; padding: 0 26px; border-radius: 16px; font-weight: 600; font-size: 16px; text-decoration: none; white-space: nowrap; transition: transform .25s var(--ease), background-color .25s, box-shadow .25s; }
.btn:active { transform: scale(.97); }
.btn-ice { background: var(--ice); color: var(--on-accent); }
.btn-ice:hover { box-shadow: 0 0 0 4px rgba(143, 211, 255, .18); }
.btn-soft { background: rgba(255, 255, 255, .07); color: var(--text); }
.btn-soft:hover { background: rgba(255, 255, 255, .12); }
.btn-block { width: 100%; }
.badges { display: flex; flex-wrap: wrap; gap: 12px; }
.badge { display: block; height: 50px; border-radius: 10px; transition: transform .3s var(--ease), filter .3s; }
.badge img { height: 100%; width: auto; }
.badge:hover { transform: translateY(-2px); filter: brightness(1.15); }
.soon { font-size: clamp(1rem, 1.2vw, 1.1rem); font-weight: 500; color: var(--text); }
.hero-copy .soon { margin-top: 28px; }
.final-get .soon { margin: 0; }

/* ---------- nav: the logo, nothing else ---------- */
.nav { position: fixed; inset: 0 0 auto 0; z-index: 60; display: flex; align-items: center; height: 68px; padding: 0 var(--gutter); }
.nav::before {
  content: "";
  position: absolute;
  inset: 0 0 -28px 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(7, 9, 13, .92) 0%, rgba(7, 9, 13, .7) 55%, rgba(7, 9, 13, 0) 100%);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  -webkit-mask-image: linear-gradient(#000 50%, transparent);
  mask-image: linear-gradient(#000 50%, transparent);
  opacity: 0;
  transition: opacity .5s;
  pointer-events: none;
}
.nav.is-solid::before { opacity: 1; }
.brand { display: inline-flex; align-items: center; color: var(--text); text-decoration: none; padding: 6px 0; }
.brand-mark { height: 24px; width: auto; }

/* ---------- device: the screens are exported from Figma ---------- */
.device {
  position: relative;
  width: 100%;
  padding: 2.4%;
  border-radius: 13.06% / 6.18%;
  background: linear-gradient(150deg, #262B34 0%, #0C0E12 22%, #06070A 70%, #1D2129 100%);
  box-shadow: 0 0 0 1px #000, inset 0 1px 1px rgba(255, 255, 255, .12), 0 50px 100px -40px rgba(0, 0, 0, .95);
}
.screen {
  position: relative;
  aspect-ratio: 1030 / 2233;
  border-radius: 11.2% / 5.16%;
  overflow: hidden;
  background: var(--bg);
  isolation: isolate;
  container-type: inline-size;
}
.screen::before { content: ""; position: absolute; z-index: 6; top: 1.2%; left: 50%; width: 31%; height: 4.2%; margin-left: -15.5%; border-radius: 999px; background: #000; }
.screen img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transform: scale(1.014); }
[data-cycle] .screen img, .device-stage .screen img { opacity: 0; transition: opacity .6s ease; }
[data-cycle] .screen img.is-on, .device-stage .screen img.is-on { opacity: 1; }

.banner {
  position: absolute;
  z-index: 7;
  top: 6.4%;
  left: 3.4%;
  right: 3.4%;
  display: grid;
  grid-template-columns: 9.5cqw 1fr auto;
  gap: 3cqw;
  align-items: center;
  padding: 3.2cqw 3.6cqw;
  border-radius: 6.6cqw;
  background: rgba(40, 46, 58, .78);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  backdrop-filter: blur(18px) saturate(160%);
  box-shadow: 0 10px 30px -8px rgba(0, 0, 0, .7);
  transform: translateY(-160%);
  opacity: 0;
  transition: transform .7s var(--ease), opacity .4s;
}
.banner.is-on { transform: none; opacity: 1; }
.banner-icon { width: 9.5cqw; height: 9.5cqw; border-radius: 2.3cqw; background: #07090D; display: grid; place-items: center; padding: 1.6cqw; }
.banner-icon svg { width: 100%; height: auto; color: var(--text); }
.banner-text { display: grid; font-size: 3.6cqw; line-height: 1.3; min-width: 0; }
.banner-text b { font-weight: 600; }
.banner-text span { color: #C9D0DA; }
.banner-time { align-self: start; font-size: 3cqw; color: #9AA3B2; }

/* ---------- hero ---------- */
.hero { position: relative; height: 100vh; height: 100svh; min-height: 680px; overflow: hidden; isolation: isolate; }
.hero-sky, .hero-glow, .hero-stars, .snow, .hero-scrim, .ridge,
.final-sky, .final-stars, .final-sun, .final-scrim { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-sky { background: linear-gradient(180deg, #03050A 0%, #0A1422 42%, #132338 64%, #0D1826 78%, #07090D 100%); }
.hero[data-sky="dawn"] .hero-sky { background: linear-gradient(180deg, #05070B 0%, #101826 24%, #3B2A33 40%, #9A4E36 50%, #FF8A5B 56%, #1A1614 66%, #07090D 100%); }
.hero[data-sky="day"] .hero-sky { background: linear-gradient(180deg, #0B1626 0%, #18304A 34%, #2C4D6E 56%, #1D3048 70%, #07090D 100%); }
.hero-glow { background: radial-gradient(circle at 70% 24%, rgba(143, 212, 255, .16), rgba(143, 212, 255, 0) 26%); }
.hero[data-sky="dawn"] .hero-glow { background: radial-gradient(ellipse 55% 30% at 62% 56%, rgba(255, 107, 61, .38), rgba(255, 107, 61, 0) 70%); }
.hero[data-sky="day"] .hero-glow { background: radial-gradient(circle at 76% 18%, rgba(230, 244, 255, .18), rgba(230, 244, 255, 0) 24%); }
.hero[data-sky="day"] .hero-stars { display: none; }
.ridge { will-change: transform; }
.hero-sky, .hero-stars, .hero-glow { z-index: 0; }
.hero .ridge-peak, .hero .ridge-mid { z-index: 1; }
.hero-device { z-index: 2; }
.hero .ridge-near, .hero .ridge-fg { z-index: 3; }
.snow, .hero-scrim { z-index: 4; pointer-events: none; }
.hero-copy { z-index: 6; }

.fill-peak { fill: #16273B; }
.stroke-peak { stroke: rgba(143, 211, 255, .22); stroke-width: 1.2px; }
.fill-mid { fill: #0F1C2B; }
.fill-near { fill: #0A131D; }
.fill-fg { fill: #07090D; }
[data-sky="dawn"] .fill-peak { fill: #2A2230; }
[data-sky="dawn"] .stroke-peak { stroke: rgba(255, 155, 107, .38); }
[data-sky="dawn"] .fill-mid { fill: #1A1820; }
[data-sky="dawn"] .fill-near { fill: #101116; }
[data-sky="day"] .fill-peak { fill: #1D3048; }
[data-sky="day"] .stroke-peak { stroke: rgba(207, 234, 255, .26); }
[data-sky="day"] .fill-mid { fill: #132337; }
[data-sky="day"] .fill-near { fill: #0C1724; }
.hero-scrim { background: linear-gradient(180deg, rgba(7, 9, 13, 0) 55%, rgba(7, 9, 13, .6) 80%, #07090D 100%); }

.hero-copy { position: absolute; left: 0; right: 0; top: 50%; transform: translateY(-46%); }
.hero-copy > * { max-width: 540px; }
.hero-title { font-size: clamp(3.4rem, 6.4vw, 6.6rem); max-width: 7.4em; text-wrap: wrap; }
.hero-copy .lede { margin-top: 22px; }
.hero-copy .badges { margin-top: 30px; }
.hero-copy .fine { margin-top: 14px; }
.hero-device { position: absolute; left: 60%; top: 15vh; top: 15svh; width: clamp(270px, 24vw, 350px); }
.hero-device .device { box-shadow: 0 0 0 1px #000, inset 0 1px 1px rgba(255, 255, 255, .12), 0 40px 120px -20px rgba(0, 0, 0, .9), 0 0 120px -10px rgba(43, 110, 158, .45); }

/* ---------- story: sticky phone, text on the left ---------- */
.story { position: relative; padding-top: clamp(40px, 6vw, 80px); }
.story-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(300px, 400px); gap: clamp(40px, 8vw, 140px); }
.story-steps { min-width: 0; }
.step .trigger { max-width: 500px; }
.step > .trigger:first-child { min-height: 92vh; min-height: 92svh; display: flex; flex-direction: column; justify-content: center; }
.step .trigger p, .split-copy p { margin-top: 22px; font-size: clamp(1.04rem, 1.25vw, 1.16rem); line-height: 1.6; color: #A7B0BF; max-width: 42ch; }
.beats { max-width: 500px; }
.beat { min-height: 62vh; min-height: 62svh; display: flex; flex-direction: column; justify-content: center; }
.beat-time { display: block; font-family: var(--f-display); font-weight: 800; font-size: clamp(2.2rem, 3.2vw, 3rem); line-height: 1; color: var(--ice); text-transform: uppercase; }
.step .beat p { margin-top: 12px; }
/* the part being read is bright; the rest stays readable (WCAG AA) but steps back */
.story-steps .trigger .cap, .story-steps .trigger p, .beat-time { transition: color .6s ease; }
.ready .story-steps .trigger .cap { color: #646E80; }
.ready .story-steps .trigger p { color: #7A8497; }
.ready .story-steps .beat-time { color: #557A96; }
.ready .story-steps .trigger.is-active .cap { color: var(--text); }
.ready .story-steps .trigger.is-active p { color: #A7B0BF; }
.ready .story-steps .trigger.is-active .beat-time { color: var(--ice); }
.step:last-child .beat:last-child { min-height: 84vh; min-height: 84svh; }

.story-stage { position: relative; }
.stage {
  --dw: min(360px, calc((100vh - 150px) * .4735));
  position: sticky;
  top: calc(50vh - var(--dw) / .4735 / 2 + 24px);
  width: var(--dw);
  margin-left: auto;
}
.stage-glow { position: absolute; inset: -30% -60%; z-index: -1; background: radial-gradient(closest-side, var(--glow, rgba(43, 110, 158, .28)), transparent); transition: background 1s; pointer-events: none; }
.inline-shot { display: none; }

/* ---------- split sections ---------- */
.privacy, .price { padding-block: var(--section-y); }
.split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, 360px); gap: clamp(40px, 8vw, 140px); align-items: center; }
.split-copy { position: relative; max-width: 520px; }
.split-shot { width: 100%; max-width: 340px; justify-self: end; position: relative; }
.split-shot::before { content: ""; position: absolute; inset: -25% -55%; z-index: -1; background: radial-gradient(closest-side, rgba(43, 110, 158, .22), transparent); pointer-events: none; }
.split-copy .more { margin-top: 26px; font-size: 16px; }

/* ---------- price ---------- */
.split-price { grid-template-columns: minmax(0, 1fr) minmax(300px, 420px); }
.price-title { max-width: 8em; }
.price-marker { position: absolute; left: 62%; top: -34px; font-size: clamp(17px, 1.5vw, 20px); width: 9em; white-space: normal; transform: rotate(-7deg); }
.printer { position: relative; width: min(100%, 420px); justify-self: end; }
.printer-body { position: relative; z-index: 2; height: 54px; border-radius: 18px; background: linear-gradient(180deg, #202733 0%, #121720 100%); box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08), 0 20px 40px -20px rgba(0, 0, 0, .9); }
.printer-slot { position: absolute; left: 26px; right: 26px; top: 50%; height: 8px; margin-top: -4px; border-radius: 4px; background: #020304; box-shadow: inset 0 2px 3px rgba(0, 0, 0, .9); }
.printer-led { position: absolute; right: 14px; top: 12px; width: 6px; height: 6px; border-radius: 50%; background: #3A4252; transition: background-color .3s, box-shadow .3s; }
.printer.is-printing .printer-led { background: var(--ember); box-shadow: 0 0 10px var(--ember); }
.receipt-clip { position: relative; z-index: 1; margin: -27px 34px 0; overflow: hidden; padding: 0 0 30px; }
.receipt {
  --zig: 12px;
  position: relative;
  padding: 44px 26px 38px;
  color: var(--ink);
  background: linear-gradient(180deg, #D8D4CB 0%, var(--paper) 7%, #F2EFE8 60%, #E6E2D9 100%);
  -webkit-mask: linear-gradient(#000 0 0) top / 100% calc(100% - var(--zig)) no-repeat, conic-gradient(from -45deg at bottom, #0000, #000 1deg 89deg, #0000 90deg) bottom / calc(var(--zig) * 2) var(--zig) repeat-x;
  mask: linear-gradient(#000 0 0) top / 100% calc(100% - var(--zig)) no-repeat, conic-gradient(from -45deg at bottom, #0000, #000 1deg 89deg, #0000 90deg) bottom / calc(var(--zig) * 2) var(--zig) repeat-x;
  filter: drop-shadow(0 20px 20px rgba(0, 0, 0, .4));
}
.receipt hr { border: 0; height: 1.5px; margin: 16px 0 12px; background-image: linear-gradient(90deg, #B6B1A6 50%, transparent 50%); background-size: 8px 1.5px; }
.r-title { text-align: center; font-weight: 600; font-size: 18px; }
.r-dates { text-align: center; font-size: 13px; color: #6E6A62; margin-top: 2px; }
.r-line { display: flex; justify-content: space-between; gap: 12px; font-size: 15px; padding: 5px 0; }
.r-line b { font-weight: 600; }
.r-total { display: flex; justify-content: space-between; align-items: flex-end; margin-top: 6px; font-weight: 600; font-size: 17px; }
.r-total b { font-family: var(--f-display); font-weight: 800; font-size: 64px; line-height: .85; letter-spacing: -.01em; }
.r-foot { text-align: right; font-size: 12px; color: #6E6A62; margin-top: 8px; }

/* ---------- questions ---------- */
.faq { padding-block: calc(var(--section-y) * .6) var(--section-y); }
.faq-grid { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.4fr); gap: clamp(32px, 6vw, 110px); align-items: start; }
.faq-head { position: sticky; top: 110px; }
.faq-head p { margin-top: 18px; color: var(--muted); max-width: 30ch; }
.q-list { display: grid; gap: 4px; }
.q { border-radius: 18px; transition: background-color .3s; }
.q:hover, .q[open] { background: rgba(255, 255, 255, .035); }
.q summary { list-style: none; position: relative; cursor: pointer; padding: 20px 64px 20px 22px; font-size: clamp(1.05rem, 1.35vw, 1.2rem); font-weight: 600; line-height: 1.35; }
.q summary::-webkit-details-marker { display: none; }
.q summary::before, .q summary::after { content: ""; position: absolute; right: 26px; top: 50%; width: 14px; height: 2px; margin-top: -1px; border-radius: 1px; background: var(--muted); transition: transform .45s var(--ease), background-color .3s; }
.q summary::after { transform: rotate(90deg); }
.q[open] summary::after { transform: rotate(0deg); }
.q[open] summary::before, .q[open] summary::after { background: var(--ice); }
.q-a { overflow: hidden; }
.q-a p { padding: 0 22px 22px; color: #A7B0BF; line-height: 1.6; max-width: 62ch; }

/* ---------- get it ---------- */
.final { position: relative; min-height: 92vh; min-height: 92svh; overflow: hidden; isolation: isolate; display: flex; align-items: flex-end; }
.final-sky { background: linear-gradient(180deg, #07090D 0%, #101826 22%, #3B2A33 38%, #9A4E36 48%, #FF8A5B 55%, #1A1614 64%, #07090D 100%); }
.final-sun { background: radial-gradient(ellipse 34% 22% at 66% 56%, rgba(255, 150, 90, .55), rgba(255, 107, 61, .16) 55%, transparent 75%); }
.final-scrim { background: linear-gradient(180deg, #07090D 0%, rgba(7, 9, 13, 0) 18%, rgba(7, 9, 13, 0) 46%, rgba(7, 9, 13, .85) 72%, #07090D 96%); }
.final-copy { position: relative; z-index: 5; padding-top: 36vh; padding-bottom: clamp(64px, 10vh, 120px); }
.final-title { max-width: 8.6em; font-size: clamp(3.2rem, 7vw, 7.2rem); }
.final-lede { margin-top: 22px; max-width: 40ch; }
.countdown { margin-top: 12px; font-size: 14px; color: var(--muted); font-variant-numeric: tabular-nums; min-height: 1.5em; }
.final-get { display: flex; align-items: center; flex-wrap: wrap; gap: 20px 36px; margin-top: 30px; }
.final-qr { display: flex; align-items: center; gap: 14px; }
.qr { width: 88px; height: 88px; border-radius: 14px; background: #fff; padding: 7px; }
.qr svg { width: 100%; height: 100%; }
.final-qr p { font-size: 13px; color: var(--muted); max-width: 15ch; }

/* ---------- footer ---------- */
.footer { position: relative; padding: 72px 0 48px; background: linear-gradient(180deg, #07090D, #05070A); }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, minmax(0, 1fr)); gap: 36px 32px; }
.footer-brand .brand-mark { height: 26px; }
.footer-brand p { margin-top: 14px; font-size: 14px; color: var(--muted); max-width: 30ch; }
.footer-h { font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 14px; }
.footer-col a { display: block; width: fit-content; font-size: 14px; color: var(--muted); text-decoration: none; padding: 4px 0; transition: color .2s; }
.footer-col a:hover { color: var(--text); }
.footer-base { grid-column: 1 / -1; display: grid; gap: 8px; margin-top: 32px; font-size: 12px; line-height: 1.6; color: var(--muted); }
.footer-base p { max-width: 90ch; }
.footer-base a { color: var(--text); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 2px; }

/* ---------- reveal on scroll ---------- */
.ready .reveal { opacity: 0; transform: translateY(24px); transition: opacity .9s ease, transform 1s var(--ease); }
.ready .reveal.is-in { opacity: 1; transform: none; }

/* ---------- responsive ---------- */
@media (max-width: 1023px) {
  .story-grid { grid-template-columns: minmax(0, 1fr); }
  .story-stage { display: none; }
  .ready .story-steps .trigger .cap { color: var(--text); }
  .ready .story-steps .trigger p { color: #A7B0BF; }
  .ready .story-steps .beat-time { color: var(--ice); }
  .step { padding-block: clamp(56px, 10vw, 96px); }
  .step > .trigger:first-child, .beat { min-height: 0; display: block; }
  .step:last-child .beat:last-child { min-height: 0; }
  .beats { margin-top: 28px; display: grid; gap: 22px; }
  .beat-time { font-size: 1.9rem; }
  .inline-shot { display: block; width: min(76vw, 340px); margin: 44px auto 0; position: relative; }
  .inline-shot::before { content: ""; position: absolute; inset: -20% -40%; z-index: -1; background: radial-gradient(closest-side, rgba(43, 110, 158, .22), transparent); pointer-events: none; }
  .split, .split-price { grid-template-columns: minmax(0, 1fr); }
  .split-shot { justify-self: center; width: min(76vw, 340px); }
  .printer { justify-self: center; }
  .faq-grid { grid-template-columns: minmax(0, 1fr); }
  .faq-head { position: static; }
  .footer-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .footer-brand { grid-column: 1 / -1; }
  .final-qr { display: none; }
}
@media (max-width: 820px) {
  .hero { height: auto; min-height: 0; display: flex; flex-direction: column; }
  .hero-copy { order: 1; position: relative; top: auto; transform: none; padding-top: 120px; }
  .hero-title { font-size: clamp(3rem, 13vw, 4.6rem); }
  .hero-device { order: 2; z-index: 5; position: relative; left: auto; top: auto; align-self: center; width: min(74vw, 330px); margin: 44px 0 calc(min(74vw, 330px) * -.8); -webkit-mask-image: linear-gradient(#000 45%, transparent 82%); mask-image: linear-gradient(#000 45%, transparent 82%); }
  .hero-scrim { background: linear-gradient(180deg, rgba(7, 9, 13, 0) 65%, rgba(7, 9, 13, .7) 88%, #07090D 100%); }
}
@media (max-width: 600px) {
  .badge { height: 46px; }
  .price-marker { position: static; display: block; margin-top: 18px; transform: rotate(-3deg); width: auto; }
  .receipt-clip { margin-inline: 20px; }
  .receipt { padding-inline: 18px; }
  .r-line { font-size: 14px; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .q summary { padding: 18px 56px 18px 18px; }
  .q summary::before, .q summary::after { right: 22px; }
  .q-a p { padding: 0 18px 20px; }
}

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