@font-face {
  font-family: "AIFridgePixel";
  src: url("/fonts/AIFridgePixel.ttf") format("truetype");
  font-display: swap;
}

:root {
  color-scheme: light;
  --ink: #172123;
  --ink-soft: #354344;
  --muted: #526161;
  --paper: #f7fbfc;
  --white: #ffffff;
  --surface: #eef5f6;
  --mint: #c9f3e7;
  --mint-strong: #2fa7a0;
  --teal-dark: #006a66;
  --sky: #d9effa;
  --peach: #ffdfc9;
  --sun: #ffd166;
  --coral: #f47b63;
  --danger: #9f2f3d;
  --border: 2px solid var(--ink);
  --shadow-sm: 4px 4px 0 var(--ink);
  --shadow: 7px 7px 0 var(--ink);
  --radius-sm: 12px;
  --radius: 22px;
  --page: 1180px;
  --pixel: "AIFridgePixel", ui-monospace, "SFMono-Regular", Consolas, monospace;
  --body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  /* iOS Safari inflates text in some blocks without this, which reflows and
     crowds the layout on iPhone only ("works on PC, clusters on mobile"). */
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  min-width: 0;
  overflow-x: hidden;
  overflow-x: clip;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

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

figure,
p,
h1,
h2,
h3,
ul {
  margin-top: 0;
}

a {
  color: var(--teal-dark);
  text-underline-offset: 0.2em;
  text-decoration-thickness: 1.5px;
}

a:hover {
  text-decoration-thickness: 2px;
}

a:focus-visible,
button:focus-visible {
  outline: 4px solid var(--sun);
  outline-offset: 4px;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

[hidden] {
  display: none !important;
}

.page-shell {
  width: min(calc(100% - 40px), var(--page));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-160%);
  padding: 10px 14px;
  border: var(--border);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  color: var(--ink);
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(23, 33, 35, 0.2);
  background: rgba(247, 251, 252, 0.93);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.site-nav {
  width: min(calc(100% - 40px), var(--page));
  min-height: 72px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-family: var(--pixel);
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  line-height: 1.1;
  text-decoration: none;
  text-transform: uppercase;
}

.brand img {
  width: 40px;
  height: 40px;
  image-rendering: pixelated;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
}

.nav-links a {
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 750;
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--teal-dark);
}

.availability-chip {
  padding: 8px 12px;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  background: var(--mint);
  color: var(--ink);
  font-family: var(--pixel);
  font-size: 0.64rem;
  letter-spacing: 0.05em;
  line-height: 1.25;
  text-transform: uppercase;
  white-space: nowrap;
}

.verification-notice {
  position: fixed;
  top: 92px;
  right: 24px;
  z-index: 200;
  width: min(430px, calc(100% - 32px));
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: start;
  gap: 14px;
  padding: 18px;
  border: var(--border);
  border-radius: 18px;
  background: #e4f8ed;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(-18px) scale(0.98);
  transition: opacity 220ms ease, transform 220ms ease;
}

.verification-notice.is-open {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.verification-notice.is-error {
  background: #fff0eb;
}

.verification-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--mint-strong);
  color: var(--ink);
  font-family: var(--pixel);
  font-size: 0.9rem;
  line-height: 1;
}

.is-error .verification-icon {
  background: var(--coral);
}

.verification-copy strong {
  display: block;
  margin-bottom: 3px;
  font-family: var(--pixel);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.verification-copy p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.5;
}

.verification-support {
  display: inline-block;
  margin-top: 7px;
  font-weight: 800;
}

.verification-dismiss {
  width: 34px;
  height: 34px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 1.75rem;
  line-height: 1;
}

.eyebrow,
.section-kicker {
  margin-bottom: 14px;
  color: var(--teal-dark);
  font-family: var(--pixel);
  font-size: 0.72rem;
  letter-spacing: 0.11em;
  line-height: 1.45;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: var(--pixel);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.22;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(2.55rem, 6vw, 5.6rem);
  text-transform: uppercase;
}

h1 span {
  color: var(--teal-dark);
}

h2 {
  font-size: clamp(2rem, 4vw, 4rem);
  text-transform: uppercase;
}

h3 {
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  text-transform: uppercase;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border: var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  color: var(--ink);
  font-family: var(--pixel);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  line-height: 1.35;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 140ms ease, box-shadow 140ms ease;
}

.button-primary {
  background: var(--mint-strong);
}

.button-primary:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--ink);
}

.button-primary:active {
  transform: translate(4px, 4px);
  box-shadow: 0 0 0 var(--ink);
}

.button-disabled {
  background: var(--surface);
  color: var(--ink-soft);
}

.hero {
  position: relative;
  min-height: calc(100svh - 72px);
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 64px 0 86px;
  background:
    linear-gradient(rgba(247, 251, 252, 0.9), rgba(247, 251, 252, 0.94)),
    radial-gradient(circle at 1px 1px, rgba(23, 33, 35, 0.14) 1px, transparent 1.2px);
  background-size: auto, 22px 22px;
}

.hero-glow {
  position: absolute;
  border: 2px solid rgba(23, 33, 35, 0.65);
  border-radius: 50%;
  filter: saturate(0.9);
  pointer-events: none;
}

.hero-glow-one {
  top: -180px;
  right: -120px;
  width: 520px;
  height: 520px;
  background: var(--mint);
}

.hero-glow-two {
  bottom: -230px;
  left: -180px;
  width: 440px;
  height: 440px;
  background: var(--peach);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  align-items: center;
  gap: clamp(48px, 8vw, 110px);
}

.hero-copy {
  max-width: 700px;
}

.hero-lede {
  max-width: 650px;
  margin-bottom: 30px;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 1.7vw, 1.3rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}

.launch-note {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 750;
}

.mascot-scene {
  position: relative;
  display: grid;
  place-items: center;
  padding-top: 42px;
}

.mascot-card {
  position: relative;
  width: min(100%, 430px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: var(--border);
  border-radius: 44px;
  background: var(--white);
  box-shadow: 12px 12px 0 var(--ink);
}

.mascot-card::before {
  content: "";
  position: absolute;
  inset: 22px;
  border: 2px dashed rgba(0, 106, 102, 0.34);
  border-radius: 30px;
  pointer-events: none;
}

.hero-mascot {
  width: clamp(190px, 23vw, 280px);
  height: auto;
  image-rendering: pixelated;
}

/* Wait until the surrounding scene has revealed before starting the mascot.
   Otherwise the entrance can finish behind an invisible parent on slower phones. */
.js .hero-mascot {
  opacity: 0;
  transform: translateY(28px) scale(0.92) rotate(-2deg);
}

.js .mascot-scene.is-visible .hero-mascot {
  animation: mascot-arrive 700ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.speech-bubble {
  position: absolute;
  top: 0;
  right: -18px;
  z-index: 4;
  max-width: 245px;
  padding: 16px 18px;
  border: var(--border);
  border-radius: 18px 18px 4px 18px;
  background: var(--sun);
  box-shadow: var(--shadow-sm);
  transform: rotate(2deg);
}

.speech-bubble strong,
.speech-bubble span {
  display: block;
}

.speech-bubble strong {
  margin-bottom: 5px;
  font-family: var(--pixel);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  line-height: 1.35;
  text-transform: uppercase;
}

.speech-bubble span {
  color: var(--ink-soft);
  font-size: 0.83rem;
  line-height: 1.4;
}

.pixel-sparkle {
  position: absolute;
  z-index: 2;
  color: var(--coral);
  font-family: var(--pixel);
  font-size: 1.7rem;
  line-height: 1;
}

.sparkle-one {
  top: 76px;
  left: 52px;
}

.sparkle-two {
  right: 54px;
  bottom: 88px;
  color: var(--teal-dark);
  font-size: 1.2rem;
}

.mini-card {
  position: absolute;
  z-index: 3;
  min-width: 150px;
  padding: 11px 14px;
  border: 1.5px solid var(--ink);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 3px 3px 0 var(--ink);
}

.mini-card span,
.mini-card strong {
  display: block;
  line-height: 1.25;
  text-transform: uppercase;
}

.mini-card span {
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.mini-card strong {
  font-family: var(--pixel);
  font-size: 0.58rem;
  letter-spacing: 0.04em;
}

.mini-card-photo {
  left: -38px;
  bottom: 66px;
  background: var(--mint);
  transform: rotate(-3deg);
}

.mini-card-plan {
  right: -34px;
  bottom: 28px;
  background: var(--peach);
  transform: rotate(2deg);
}

@keyframes mascot-arrive {
  from {
    opacity: 0;
    transform: translateY(28px) scale(0.92) rotate(-2deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1) rotate(0);
  }
}

.quick-promise {
  position: relative;
  z-index: 2;
  border-block: var(--border);
  background: var(--ink);
  color: var(--white);
}

.promise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.promise-grid > div {
  min-height: 150px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 16px;
  padding: 28px;
}

.promise-grid > div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.26);
}

.promise-number {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1.5px solid var(--white);
  border-radius: 50%;
  color: var(--mint);
  font-family: var(--pixel);
  font-size: 0.62rem;
}

.promise-grid p {
  margin: 0;
  color: #dde6e6;
  font-size: 0.94rem;
  line-height: 1.5;
}

.promise-grid strong {
  color: var(--white);
}

.story {
  padding: 130px 0 80px;
  background: var(--white);
}

.story-intro {
  max-width: 860px;
  margin-bottom: 72px;
  text-align: center;
}

.story-intro h2 {
  margin-bottom: 22px;
}

.story-intro > p:last-child {
  max-width: 690px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.08rem;
}

.story-shell {
  display: grid;
  grid-template-columns: minmax(360px, 0.92fr) minmax(380px, 1.08fr);
  gap: clamp(56px, 9vw, 132px);
}

.story-visual-column {
  position: relative;
}

.story-stage {
  position: sticky;
  top: clamp(96px, 13vh, 132px);
  width: auto;
  height: min(72vh, 670px);
  aspect-ratio: 480 / 1043;
  margin-inline: auto;
}

.stage-halo {
  position: absolute;
  inset: -48px;
  border: 2px dashed rgba(0, 106, 102, 0.34);
  border-radius: 42%;
  background: var(--mint);
  transform: rotate(-3deg);
}

.story-visual {
  position: absolute;
  inset: 0;
  z-index: 1;
  margin: 0;
  overflow: hidden;
  border: var(--border);
  border-radius: 30px;
  background: var(--surface);
  box-shadow: 9px 9px 0 var(--ink);
  opacity: 0;
  filter: blur(8px);
  transform: translateY(28px) scale(0.97);
  transition:
    opacity 420ms ease,
    filter 420ms ease,
    transform 420ms cubic-bezier(0.2, 0.78, 0.2, 1);
  pointer-events: none;
}

.story-visual.is-active {
  z-index: 2;
  opacity: 1;
  filter: blur(0);
  transform: translateY(0) scale(1);
}

.story-visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-visual-composite {
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.recognition-pair {
  position: relative;
  width: 100%;
  height: 100%;
}

.recognition-pair .recognition-source,
.recognition-pair .recognition-result {
  position: absolute;
  display: block;
  height: auto;
  object-fit: cover;
  border: var(--border);
  background: var(--white);
}

.recognition-pair .recognition-source {
  top: 12%;
  left: -30%;
  z-index: 2;
  width: 66%;
  aspect-ratio: 560 / 747;
  border-radius: 22px;
  box-shadow: 7px 7px 0 var(--ink);
  transform: rotate(-4deg);
}

.recognition-pair .recognition-result {
  right: 0;
  bottom: 0;
  z-index: 1;
  width: 92%;
  aspect-ratio: 1320 / 2868;
  border-radius: 28px;
  box-shadow: 9px 9px 0 var(--ink);
  transform: rotate(1deg);
}

.recognition-badge {
  position: absolute;
  top: 49%;
  left: -22%;
  z-index: 3;
  width: max-content;
  max-width: 220px;
  padding: 10px 12px;
  border: 1.5px solid var(--ink);
  border-radius: 10px;
  background: var(--sun);
  box-shadow: 3px 3px 0 var(--ink);
  color: var(--ink);
  font-family: var(--pixel);
  font-size: 0.55rem;
  letter-spacing: 0.04em;
  line-height: 1.45;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(-2deg);
}

.stage-note {
  position: absolute;
  z-index: 4;
  padding: 9px 12px;
  border: 1.5px solid var(--ink);
  border-radius: 10px;
  background: var(--white);
  box-shadow: 3px 3px 0 var(--ink);
  font-family: var(--pixel);
  font-size: 0.56rem;
  letter-spacing: 0.05em;
  line-height: 1.35;
  text-transform: uppercase;
  white-space: nowrap;
}

.stage-note-top {
  top: 55px;
  left: -112px;
  transform: rotate(-4deg);
}

.stage-note-bottom {
  right: -128px;
  bottom: 70px;
  transform: rotate(3deg);
}

.stage-dot {
  width: 8px;
  height: 8px;
  display: inline-block;
  margin-right: 5px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: var(--mint-strong);
}

.story-step {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 16vh 0;
}

.step-copy {
  width: 100%;
  padding: clamp(28px, 4.5vw, 48px);
  border: var(--border);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
  transition: opacity 320ms ease, transform 320ms ease, background 320ms ease;
}

.story-step:nth-child(1) .step-copy {
  background: #eefaf6;
}

.story-step:nth-child(2) .step-copy {
  background: #eff8fc;
}

.story-step:nth-child(3) .step-copy {
  background: #fff5ed;
}

.story-step:nth-child(4) .step-copy {
  background: #fff9e7;
}

.js .story-step:not(.is-active) .step-copy {
  opacity: 0.76;
  transform: translateY(14px) scale(0.99);
}

.step-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
}

.step-meta span {
  padding: 7px 10px;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  background: var(--white);
  font-family: var(--pixel);
  font-size: 0.56rem;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-transform: uppercase;
}

.step-meta span:first-child {
  background: var(--ink);
  color: var(--white);
}

.step-copy h3 {
  max-width: 560px;
  margin-bottom: 20px;
}

.step-copy > p {
  margin-bottom: 24px;
  color: var(--ink-soft);
  font-size: 1.03rem;
}

.feature-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 29px;
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 750;
}

.feature-list li::before {
  content: "✓";
  position: absolute;
  top: 0.08em;
  left: 0;
  width: 19px;
  height: 19px;
  display: grid;
  place-items: center;
  border: 1.5px solid var(--ink);
  border-radius: 4px;
  background: var(--mint-strong);
  color: var(--ink);
  font-size: 0.7rem;
  line-height: 1;
}

.story-mobile-media {
  display: none;
  max-width: 340px;
  margin: 34px auto 0;
}

.story-mobile-media > img {
  width: 100%;
  height: auto;
  overflow: hidden;
  border: var(--border);
  border-radius: 26px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.story-mobile-composite {
  width: 100%;
  max-width: 520px;
}

.story-mobile-composite .recognition-pair {
  height: 0;
  padding-bottom: 181.82%;
}

.story-mobile-composite .recognition-source {
  top: 5%;
  left: 2%;
  width: 54%;
  border-radius: 18px;
  box-shadow: 5px 5px 0 var(--ink);
}

.story-mobile-composite .recognition-result {
  right: 2%;
  bottom: 1%;
  width: 76%;
  border-radius: 24px;
  box-shadow: 6px 6px 0 var(--ink);
}

.story-mobile-composite .recognition-badge {
  top: 43%;
  left: 4%;
  width: min(70%, 180px);
  max-width: calc(100% - 24px);
}

@supports (aspect-ratio: 1 / 1) {
  .story-mobile-composite .recognition-pair {
    height: auto;
    padding-bottom: 0;
    aspect-ratio: 11 / 20;
  }
}

.story-mobile-media figcaption {
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.5;
  text-align: center;
}

.progress-callout {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(28px, 5vw, 64px);
  margin-top: 96px;
  margin-bottom: 130px;
  padding: clamp(32px, 5vw, 58px);
  border: var(--border);
  border-radius: 30px;
  background: var(--mint);
  box-shadow: 10px 10px 0 var(--ink);
}

.progress-mascot {
  width: 150px;
  height: 150px;
  display: grid;
  place-items: center;
  border: var(--border);
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.progress-mascot img {
  width: 112px;
  image-rendering: pixelated;
}

.progress-callout h2 {
  margin-bottom: 16px;
  font-size: clamp(1.7rem, 3.2vw, 3rem);
}

.progress-callout > div:nth-child(2) > p:last-child {
  max-width: 700px;
  margin: 0;
  color: var(--ink-soft);
}

.progress-sticker {
  padding: 14px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--sun);
  box-shadow: 4px 4px 0 var(--ink);
  font-family: var(--pixel);
  font-size: 0.56rem;
  letter-spacing: 0.04em;
  line-height: 1.5;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(5deg);
}

.trust-section {
  padding: 130px 0;
  border-top: var(--border);
  background:
    linear-gradient(rgba(238, 245, 246, 0.94), rgba(238, 245, 246, 0.96)),
    radial-gradient(circle at 1px 1px, rgba(23, 33, 35, 0.15) 1px, transparent 1.1px);
  background-size: auto, 20px 20px;
}

.trust-heading {
  max-width: 900px;
  margin-bottom: 56px;
}

.trust-heading h2 {
  margin: 0;
}

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

.trust-card {
  min-height: 350px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  border: var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.trust-card-mint {
  background: var(--mint);
}

.trust-card-blue {
  background: var(--sky);
}

.trust-card-peach {
  background: var(--peach);
}

.trust-label {
  align-self: flex-start;
  margin-bottom: 60px;
  padding: 7px 10px;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  background: var(--white);
  font-family: var(--pixel);
  font-size: 0.56rem;
  line-height: 1.2;
  text-transform: uppercase;
}

.trust-card h3 {
  margin-bottom: 16px;
  font-size: 1.3rem;
}

.trust-card p {
  margin-bottom: 24px;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.trust-card a {
  margin-top: auto;
  color: var(--ink);
  font-weight: 850;
}

.safety-notice {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  margin-top: 60px;
  padding: clamp(28px, 5vw, 52px);
  border: 3px solid var(--ink);
  border-radius: 28px;
  background: #fff7e4;
  box-shadow: 10px 10px 0 var(--ink);
}

.safety-mark {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--sun);
  font-family: var(--pixel);
  font-size: 1.2rem;
}

.safety-notice h2 {
  max-width: 820px;
  margin-bottom: 20px;
  font-size: clamp(1.65rem, 3vw, 2.8rem);
}

.safety-notice p:not(.section-kicker) {
  max-width: 930px;
  margin-bottom: 20px;
  color: var(--ink-soft);
}

.safety-notice a {
  color: var(--ink);
  font-weight: 850;
}

.final-cta {
  padding: 110px 0;
  border-top: var(--border);
  background: var(--teal-dark);
  color: var(--white);
}

.final-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.6fr);
  align-items: end;
  gap: 60px;
}

.final-cta .section-kicker {
  color: #9ff7ef;
}

.final-cta h2 {
  max-width: 800px;
  margin: 0;
}

.final-action {
  text-align: right;
}

.final-action .button-disabled {
  width: 100%;
  background: var(--white);
}

.final-action p {
  margin: 16px 0 0;
  color: #d6ebea;
  font-size: 0.82rem;
  line-height: 1.5;
}

.site-footer {
  padding: 72px 0 24px;
  background: var(--ink);
  color: #dce5e5;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 54px;
}

.site-footer .brand {
  color: var(--white);
}

.footer-brand p {
  max-width: 340px;
  margin: 20px 0 0;
  color: #bac8c7;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
}

.footer-column h2 {
  margin-bottom: 7px;
  color: var(--white);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
}

.footer-column a,
.footer-column span {
  color: #dce5e5;
  font-size: 0.9rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: #aebdbc;
  font-size: 0.8rem;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 520ms ease, transform 520ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.no-js .story-visual-column,
.story-static .story-visual-column {
  display: none;
}

.no-js .story-shell,
.story-static .story-shell {
  display: block;
  max-width: 780px;
}

.no-js .story-step,
.story-static .story-step {
  min-height: 0;
  padding: 48px 0;
}

.no-js .story-mobile-media,
.story-static .story-mobile-media {
  display: block;
}

@media (max-width: 1240px) {
  .stage-note {
    display: none;
  }
}

@media (max-width: 1120px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-card:last-child {
    grid-column: 1 / -1;
    min-height: 280px;
  }
}

@media (max-width: 900px) {
  html {
    scroll-padding-top: 80px;
  }

  .nav-links {
    display: none;
  }

  .availability-chip {
    margin-left: auto;
  }

  .hero {
    min-height: auto;
    padding: 72px 0 90px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 74px;
  }

  .hero-copy {
    max-width: 760px;
    text-align: center;
  }

  .hero-lede {
    margin-inline: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .mascot-scene {
    width: min(100%, 500px);
    margin-inline: auto;
  }

  .promise-grid {
    grid-template-columns: 1fr;
  }

  .promise-grid > div {
    min-height: 110px;
  }

  .promise-grid > div + div {
    border-top: 1px solid rgba(255, 255, 255, 0.26);
    border-left: 0;
  }

  .story {
    padding-top: 100px;
  }

  .story-shell {
    display: block;
    max-width: 780px;
  }

  .story-visual-column {
    display: none;
  }

  .story-step,
  .js .story-step {
    min-height: 0;
    padding: 42px 0 70px;
    flex-direction: column;
    align-items: stretch;
    opacity: 1;
    transform: none;
  }

  .js .story-step:not(.is-active) .step-copy {
    opacity: 0.82;
    transform: translate3d(0, 12px, 0) scale(0.995);
  }

  .story-mobile-media {
    display: block;
    width: min(calc(100% - 20px), 340px);
  }

  /* Mobile keeps screenshots in document flow, then fades each one in and the
     previous one out as its story step crosses the center of the viewport. */
  .js .story-mobile-media {
    opacity: 0.12;
    transform: translate3d(0, 34px, 0) scale(0.975);
    transition:
      opacity 460ms ease,
      transform 460ms cubic-bezier(0.2, 0.75, 0.2, 1);
    will-change: opacity, transform;
  }

  .js .story-step.is-active .story-mobile-media {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }

  .progress-callout {
    grid-template-columns: auto 1fr;
  }

  .progress-sticker {
    display: none;
  }

  .final-cta-inner {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .final-action {
    max-width: 400px;
    text-align: left;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .page-shell,
  .site-nav {
    width: min(calc(100% - 28px), var(--page));
  }

  .site-nav {
    min-height: 64px;
  }

  .brand {
    font-size: 0.74rem;
  }

  .brand img {
    width: 34px;
    height: 34px;
  }

  .availability-chip {
    max-width: 106px;
    padding: 7px 9px;
    font-size: 0.52rem;
    line-height: 1.35;
    text-align: center;
    white-space: normal;
  }

  .verification-notice {
    top: 78px;
    right: 14px;
    width: calc(100% - 28px);
  }

  .hero {
    padding: 44px 0 64px;
  }

  /* AIFridgePixel is a very WIDE face — at 12vw an iPhone fits ~11 characters
     per line, so headings wrapped into cramped 4-line stacks. Sized so each
     headline phrase fits a 360-430px viewport in 1-2 calm lines. */
  h1 {
    margin-bottom: 18px;
    font-size: clamp(1.5rem, 7vw, 2.2rem);
    line-height: 1.3;
    overflow-wrap: anywhere;
  }

  h2 {
    font-size: clamp(1.35rem, 6.2vw, 2rem);
    line-height: 1.32;
  }

  .hero-lede {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-grid {
    gap: 44px;
  }

  .button-primary {
    width: 100%;
  }

  /* Declutter the hero scene on phones: the speech bubble leaves the card
     (no more overlapping absolute layer) and flows above it instead. */
  .mascot-scene {
    padding-top: 0;
    gap: 16px;
  }

  .mascot-card {
    width: calc(100% - 16px);
    border-radius: 32px;
    box-shadow: 8px 8px 0 var(--ink);
  }

  .hero-mascot {
    width: 58%;
  }

  .speech-bubble {
    position: static;
    max-width: 300px;
    border-radius: 18px 18px 18px 4px;
    transform: rotate(-1deg);
  }

  .sparkle-one {
    top: 110px;
    left: 30px;
  }

  .mini-card {
    min-width: 126px;
    padding: 9px 10px;
  }

  .mini-card-photo {
    left: -4px;
    bottom: 42px;
  }

  .mini-card-plan {
    right: -4px;
    bottom: 12px;
  }

  .promise-grid > div {
    padding: 24px 12px;
  }

  .story-intro {
    margin-bottom: 42px;
  }

  .story-step,
  .js .story-step {
    padding: 32px 0 52px;
  }

  .step-copy {
    padding: 24px;
    box-shadow: 5px 5px 0 var(--ink);
  }

  .step-copy > p {
    font-size: 0.97rem;
  }

  .story-mobile-media {
    width: min(calc(100% - 20px), 320px);
  }

  .progress-callout {
    grid-template-columns: 1fr;
    margin-top: 72px;
    margin-bottom: 96px;
    padding: 28px;
    box-shadow: 6px 6px 0 var(--ink);
    text-align: center;
  }

  .progress-mascot {
    width: 116px;
    height: 116px;
    margin-inline: auto;
  }

  .progress-mascot img {
    width: 90px;
  }

  .trust-section {
    padding: 96px 0;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .trust-card,
  .trust-card:last-child {
    grid-column: auto;
    min-height: 0;
  }

  .trust-label {
    margin-bottom: 38px;
  }

  .safety-notice {
    grid-template-columns: 1fr;
    padding: 26px;
    box-shadow: 7px 7px 0 var(--ink);
  }

  .safety-mark {
    width: 48px;
    height: 48px;
  }

  .final-cta {
    padding: 84px 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .js .hero-mascot {
    opacity: 1;
    transform: none;
  }

  .story-visual-column {
    display: none;
  }

  .story-shell {
    display: block;
    max-width: 780px;
  }

  .story-step,
  .js .story-step {
    min-height: 0;
    padding: 48px 0;
  }

  .js .story-step:not(.is-active) .step-copy {
    opacity: 1;
    transform: none;
  }

  .story-mobile-media {
    display: block;
  }

  .js .story-mobile-media {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .site-header,
  .verification-notice,
  .hero-actions,
  .story-visual-column,
  .final-cta {
    display: none !important;
  }

  .hero {
    min-height: 0;
  }

  .story-shell {
    display: block;
  }

  .story-step {
    min-height: 0;
    padding: 24px 0;
  }

  .story-mobile-media {
    display: none;
  }

  * {
    box-shadow: none !important;
  }
}
