/* Homepage layouts and signature animations. Shared design lives in site.css. */
.hero { position: relative; overflow: hidden; overflow: clip; }
.hero-grid { display: grid; grid-template-columns: 1.02fr 1fr; align-items: center; gap: 12px; padding-top: 72px; padding-bottom: 64px; }
.hero-copy { position: relative; z-index: 2; }
.beta-pill { display: inline-flex; align-items: center; gap: 10px; border: 1px solid #33422b; border-radius: 5px; padding: 7px 10px; color: #d1eac0; background: #a9ef3905; font-family: var(--mono); font-size: .75rem; letter-spacing: .055em; min-height: 44px; }
.beta-pill > span:last-child { margin-left: 12px; }
h1 { margin-top: 28px; line-height: 1.02; font-weight: 600; letter-spacing: -.07em; font-size: clamp(3.3rem, calc(2rem + 3.4vw), 5.8rem); }
h1 > span { color: var(--green); }
.hero-lede { margin-top: 27px; font-size: 1.28rem; line-height: 1.5; letter-spacing: -.01em; }
.hero-description { max-width: 390px; margin-top: 16px; color: var(--muted); font-size: 1rem; line-height: 1.7; }
.hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 30px; }
.hero-store-links, .closing-store-links { display: flex; flex-wrap: wrap; gap: 0 22px; margin-top: 8px; }
.hero-store-links a, .closing-store-links a { display: inline-flex; align-items: center; gap: 8px; min-height: 44px; color: #cfe6be; font-size: .875rem; text-decoration: underline; text-underline-offset: 4px; text-decoration-color: #516344; }
.hero-store-links a:hover, .closing-store-links a:hover { color: var(--green); }
.platform-note { margin-top: 14px; color: var(--muted); font-size: .8125rem; }
.platform-note > span { margin-inline: 8px; color: #56625a; }
.web-preview-link { display: inline-block; padding-block: 9px; margin-top: 15px; font-size: .8125rem; color: #9dab9f; text-decoration: underline; text-decoration-color: #53624a; text-underline-offset: 4px; }
.web-preview-link:hover { color: var(--green); }
.hero-stage { position: relative; min-width: 0; align-self: center; display: flex; flex-direction: column; width: 100%; }
.stage-grid { position: absolute; inset: 0 -30px 0 -10px; background-image: linear-gradient(#a9ef390a 1px, transparent 1px), linear-gradient(90deg, #a9ef390a 1px, transparent 1px); background-size: 40px 40px; mask-image: radial-gradient(ellipse at 50% 48%, black 20%, transparent 72%); }
.stage-orbit { position: absolute; width: 410px; height: 410px; max-width: 90%; top: 65px; left: 10%; border: 1px solid #a9ef391b; border-radius: 50%; background: radial-gradient(circle, #a9ef3914, transparent 67%); }
.stage-orbit::after { content: ""; position: absolute; inset: 29px; border: 1px dashed #a9ef3918; border-radius: 50%; }
.stage-label { z-index: 2; color: #a1b395; font-size: .75rem; letter-spacing: .1em; display: flex; align-items: center; gap: 10px; position: relative; align-self: flex-end; margin-bottom: 10px; }
.hero-mascot { display: block; pointer-events: none; position: relative; align-self: flex-end; width: calc(100% + 80px); max-width: 750px; }
/* Original scanner flash, anchored to each responsive mascot asset. */
.hero-mascot { --scanner-x: 31.7%; --scanner-y: 22%; --scanner-lens-size: 4.6%; --scanner-beam-left: -10%; --scanner-beam-width: 41.9%; --scanner-beam-height: 15%; }
.hero-mascot > picture { display: block; }
.scanner-lens,
.scanner-beam {
  position: absolute;
  z-index: 2;
  pointer-events: none;
  mix-blend-mode: screen;
}

.scanner-lens {
  left: var(--scanner-x);
  top: var(--scanner-y);
  width: var(--scanner-lens-size);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240, 255, 214, 0.98) 0 12%, rgba(172, 255, 82, 0.72) 30%, rgba(0, 240, 132, 0.16) 58%, transparent 74%);
  box-shadow: 0 0 14px rgba(172, 255, 82, 0.46);
  opacity: 0.2;
  transform: translate(-50%, -50%) scale(0.86);
  animation: minimalScannerLensPulse 3.8s ease-in-out infinite;
}

.scanner-beam {
  left: var(--scanner-beam-left);
  top: var(--scanner-y);
  width: var(--scanner-beam-width);
  height: var(--scanner-beam-height);
  background: linear-gradient(90deg, transparent, rgba(182, 255, 77, 0.14) 42%, rgba(226, 255, 185, 0.58));
  clip-path: polygon(0 4%, 100% 38%, 100% 62%, 0 96%);
  filter: blur(2px);
  opacity: 0.08;
  transform: translateY(-50%);
  transform-origin: right center;
  animation: minimalScannerBeamPulse 3.8s ease-in-out infinite;
}

@keyframes minimalScannerLensPulse {
  0%, 68%, 100% {
    opacity: 0.18;
    transform: translate(-50%, -50%) scale(0.86);
  }
  76% {
    opacity: 0.92;
    transform: translate(-50%, -50%) scale(1.08);
  }
  84% {
    opacity: 0.34;
    transform: translate(-50%, -50%) scale(0.94);
  }
}

@keyframes minimalScannerBeamPulse {
  0%, 68%, 100% {
    opacity: 0.06;
    transform: translateY(-50%) scaleX(0.96);
  }
  76% {
    opacity: 0.5;
    transform: translateY(-50%) scaleX(1);
  }
  84% {
    opacity: 0.12;
    transform: translateY(-50%) scaleX(0.98);
  }
}

@media (max-width: 680px) {
  .hero-mascot { --scanner-x: 19.2%; --scanner-y: 21.7%; --scanner-lens-size: 6%; --scanner-beam-left: 4.2%; --scanner-beam-width: 15%; --scanner-beam-height: 14%; }
}
.hero-mascot img { width: 100%; height: auto; aspect-ratio: 3 / 2; object-fit: contain; filter: drop-shadow(0 24px 28px #0007); }
.hero-savings { z-index: 3; display: flex; align-items: center; gap: 15px; padding: 19px 22px; background: #162119f5; border: 1px solid #526e3c; border-radius: 12px; box-shadow: 0 22px 60px #0005; transform: rotate(-3deg); transition: transform .25s, border-color .25s; position: relative; align-self: flex-end; width: min(100%, 440px); margin-right: 5px; }
.hero-savings:hover { transform: rotate(0); border-color: var(--green); }
.savings-check { display: grid; place-items: center; align-self: flex-start; margin-top: 5px; height: 32px; width: 32px; background: var(--green); border-radius: 50%; color: #182a0e; font-size: 1.1rem; font-weight: 700; }
.hero-savings .mono { display: block; color: var(--green); font-size: .75rem; letter-spacing: .09em; }
.hero-savings strong { display: block; font-family: var(--display); font-size: 2.1rem; font-weight: 600; line-height: 1.3; letter-spacing: -.055em; }
.hero-savings strong > span { color: var(--green); }
.hero-savings small { color: #b4c5b7; font-size: .75rem; }
.savings-arrow { margin-left: auto; align-self: flex-start; color: var(--green); font-size: 1.5rem; }
.scannie-caption { display: flex; align-items: center; gap: 12px; color: #8b9b8c; font-size: .75rem; position: relative; justify-content: flex-end; flex-wrap: wrap; margin: 16px 5px 0 0; }
.scannie-caption > span:first-child { font-family: var(--mono); font-size: .75rem; color: var(--green); letter-spacing: .1em; }
.hero-footnote { display: flex; justify-content: space-between; gap: 28px; padding-block: 20px; border-top: 1px solid var(--line); font-family: var(--mono); font-size: .75rem; letter-spacing: .08em; color: #89968c; }
.hero-footnote > span:last-child { color: #bfcec1; font-family: "IBM Plex Sans", sans-serif; font-size: .8125rem; letter-spacing: 0; }
.hero-footnote > span:last-child > span { margin-left: 25px; color: var(--green); }
/* Restore the original Toronto signature, including its glow and red beacon. */
.toronto-signature { display: inline-flex; align-items: center; gap: 14px; }
.toronto-signature > span:last-child { min-width: 0; }
.cn-tower {
  position: relative;
  display: inline-grid;
  place-items: end center;
  flex: 0 0 auto;
  width: 24px;
  height: 70px;
  overflow: visible;
  color: #22ff9c;
  filter: drop-shadow(0 0 12px rgba(0, 240, 132, 0.34));
  animation: minimalCnTowerGlow 4.6s ease-in-out infinite;
}

.cn-tower::before,
.cn-tower::after {
  content: "";
  position: absolute;
  left: 50%;
  z-index: 2;
  border-radius: 50%;
  pointer-events: none;
}

.cn-tower::before {
  top: -1px;
  width: 4px;
  height: 4px;
  background: #fff0ec;
  box-shadow:
    0 0 5px rgba(255, 206, 198, 0.96),
    0 0 12px rgba(255, 68, 52, 0.88),
    0 0 20px rgba(255, 44, 32, 0.42);
  opacity: 0.26;
  transform: translateX(-50%) scale(0.8);
  animation: minimalCnTowerBeacon 4.6s ease-in-out infinite;
}

.cn-tower::after {
  top: -4px;
  width: 10px;
  height: 10px;
  border: 1px solid rgba(255, 88, 72, 0.86);
  box-shadow: 0 0 8px rgba(255, 56, 44, 0.26);
  opacity: 0;
  transform: translateX(-50%) scale(0.35);
  animation: minimalCnTowerSignal 4.6s ease-out infinite;
}

.cn-tower svg {
  position: relative;
  z-index: 1;
  display: block;
  width: 22px;
  height: 70px;
  fill: currentColor;
  stroke: none;
  shape-rendering: geometricPrecision;
  transform: none;
}

.cn-tower .cn-tower-cutout {
  fill: var(--bg);
  opacity: 0.94;
}

@keyframes minimalCnTowerGlow {
  0%, 70%, 100% {
    filter: drop-shadow(0 0 12px rgba(0, 240, 132, 0.28)) brightness(1);
  }
  77% {
    filter: drop-shadow(0 0 17px rgba(0, 240, 132, 0.58)) brightness(1.12);
  }
  85% {
    filter: drop-shadow(0 0 12px rgba(0, 240, 132, 0.34)) brightness(1.03);
  }
}

@keyframes minimalCnTowerBeacon {
  0%, 70%, 100% {
    opacity: 0.24;
    transform: translateX(-50%) scale(0.8);
  }
  77% {
    opacity: 1;
    transform: translateX(-50%) scale(1.34);
  }
  85% {
    opacity: 0.36;
    transform: translateX(-50%) scale(0.9);
  }
}

@keyframes minimalCnTowerSignal {
  0%, 74% {
    opacity: 0;
    transform: translateX(-50%) scale(0.35);
  }
  77% {
    opacity: 0.72;
  }
  91%, 100% {
    opacity: 0;
    transform: translateX(-50%) scale(2.45);
  }
}

.principles-strip { background: var(--green); color: #193207; }
.principles { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px 28px; padding-block: 21px; font-size: .875rem; font-weight: 600; }
.principles > span { display: flex; align-items: center; gap: 12px; }
.principles > span > span { font-size: 1.15rem; }
.proof-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }
.proof-copy > p:not(.eyebrow) { max-width: 350px; margin-top: 25px; color: var(--muted); font-size: 1rem; }
.proof-number { display: flex; align-items: center; gap: 20px; margin: 32px 0 18px; }
.proof-number > strong { font-family: var(--display); color: var(--green); font-size: 3.7rem; font-weight: 500; line-height: 1.1; letter-spacing: -.06em; }
.proof-number > span { font-size: .8125rem; color: var(--muted); line-height: 1.5; }
.receipt { position: relative; padding: 30px 32px 24px; color: #152114; background: #f0f3e8; border-radius: 3px 3px 0 0; box-shadow: 10px 10px 0 #a9ef3910; transform: rotate(1deg); }
.receipt::after { content: ""; position: absolute; top: calc(100% - 1px); left: 0; right: 0; height: 10px; background: linear-gradient(135deg, #f0f3e8 25%, transparent 25%) -5px 0 / 20px 20px, linear-gradient(225deg, #f0f3e8 25%, transparent 25%) -5px 0 / 20px 20px; }
.receipt-header { display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.receipt-brand { font-family: var(--display); font-weight: 700; font-size: 1.25rem; letter-spacing: -.05em; }
.receipt-brand > span { display: block; font-family: var(--mono); font-size: .75rem; font-weight: 400; letter-spacing: .08em; }
.receipt-stamp { font-family: var(--mono); border: 1.5px solid #4d7334; padding: 5px 9px; font-size: .75rem; line-height: 1.25; font-weight: 500; letter-spacing: .08em; color: #355422; transform: rotate(-8deg); }
.receipt-meta { display: flex; justify-content: space-between; gap: 12px; margin-top: 25px; padding-block: 14px; border-top: 1px dashed #b4c1a7; border-bottom: 1px dashed #b4c1a7; font-size: .75rem; letter-spacing: .05em; color: #5a6952; }
.store-comparison { margin-block: 19px; display: grid; gap: 9px; }
.store-row { display: flex; align-items: center; gap: 13px; text-align: left; width: 100%; padding: 15px 13px; background: transparent; border: 1px solid #d5ddcc; border-radius: 5px; color: #202c1c; transition: background .2s, border-color .2s; }
.store-row:hover { background: #e2ead7; }
.store-row:focus-visible { outline-color: #345519; }
.store-row.is-selected { background: #e1efce; border-color: #89ab60; }
.store-marker { width: 21px; height: 21px; border: 1px solid #a6b49b; border-radius: 50%; display: grid; place-items: center; font-size: .75rem; flex: 0 0 auto; }
.is-selected .store-marker { color: white; background: #416522; border-color: #416522; }
.store-row strong { display: block; font-size: .9375rem; font-weight: 600; line-height: 1.3; }
.store-row small { display: block; margin-top: 4px; color: #5b6952; font-size: .75rem; }
.store-marker .ui-icon { width: 14px; height: 14px; visibility: hidden; }
.store-row.is-selected .store-marker .ui-icon { visibility: visible; }
.store-price { margin-left: auto; font-family: var(--display); font-size: 1.45rem; font-weight: 600; letter-spacing: -.04em; white-space: nowrap; }
.receipt-total { display: flex; align-items: center; justify-content: space-between; padding-top: 19px; border-top: 1px dashed #afbea0; }
.receipt-total div > span { font-size: .75rem; color: #4b6240; }
.receipt-total strong { display: block; font-family: var(--display); font-size: 2rem; font-weight: 600; letter-spacing: -.055em; }
.receipt-total-icon { font-size: 2.3rem; color: #517d2e; }
.receipt-hint { font-size: .75rem; text-align: center; color: #5d6a54; margin-top: 20px; }
.receipt-barcode { height: 30px; width: 155px; max-width: 100%; margin: 22px auto 16px; background: repeating-linear-gradient(90deg,#24311d 0 2px,transparent 2px 4px,#24311d 4px 5px,transparent 5px 8px,#24311d 8px 11px,transparent 11px 13px,#24311d 13px 14px,transparent 14px 18px,#24311d 18px 21px,transparent 21px 23px); }
.receipt-disclaimer { max-width: 380px; margin-inline: auto; font-size: .75rem; text-align: center; line-height: 1.5; color: #5c6954; }
.how-section { background: #0d120e; border-block: 1px solid #1d281f; }
.section-heading { display: flex; justify-content: space-between; align-items: flex-end; gap: 30px; margin-bottom: 50px; }
.section-heading > p { color: var(--muted); line-height: 1.7; font-size: .9375rem; padding-bottom: 5px; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.step { position: relative; padding: 26px 28px 30px; background: #141b15; border: 1px solid #2a352a; border-radius: 12px; transition: border-color .25s, transform .25s; }
.step:hover { transform: translateY(-4px); border-color: #607846; }
.step-top { display: flex; align-items: center; justify-content: space-between; color: #8c9d86; }
.step-number { font-size: .75rem; }
.step-arrow { font-size: 1.3rem; }
.step img { height: 135px; width: 135px; object-fit: contain; margin: 14px 0 22px -9px; }
.step h3 { font-size: 1.55rem; font-weight: 500; letter-spacing: -.045em; }
.step > p { color: var(--muted); font-size: .9375rem; line-height: 1.7; margin-top: 10px; max-width: 275px; }
.community-line { display: flex; align-items: center; gap: 12px; margin-top: 28px; color: var(--muted); font-size: .8125rem; }
.community-line strong { color: var(--green); }
.community-tag { font-size: .75rem; margin-left: auto; color: #8ca383; letter-spacing: .08em; }
.ticker-strip { display: flex; align-items: center; border-bottom: 1px solid var(--line); min-height: 52px; background: #111a12; overflow: hidden; }
.ticker-label-wrap { display: flex; align-items: center; gap: 10px; flex: 0 0 auto; z-index: 1; background: #111a12; border-right: 1px solid var(--line); padding: 4px 24px; }
.ticker-label-text { font-family: var(--mono); font-size: .75rem; letter-spacing: .06em; color: var(--green); }
#ticker-toggle { font-size: .75rem; border: 1px solid #3e4d38; border-radius: 4px; color: var(--muted); background: none; padding: 3px 8px; min-height: 44px; }
.ticker-overflow { min-width: 0; overflow: hidden; }
.ticker-track { display: flex; width: max-content; margin: 0; padding: 0; list-style: none; animation: ticker-scroll 75s linear infinite; }
.ticker-strip.is-paused .ticker-track { animation-play-state: paused; }
.ticker-item { white-space: nowrap; padding-inline: 24px; color: var(--muted); font-size: .8125rem; border-right: 1px solid var(--line); }
.ticker-price { color: var(--green); }
@keyframes ticker-scroll { to { transform: translateX(-50%); } }
.app-section { overflow: hidden; overflow: clip; }
.minimal-preview-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 25px; }
.minimal-preview-card { min-width: 0; margin: 0; }
.minimal-preview-trigger { display: block; width: 100%; padding: 7px; background: #1c261e; border: 1px solid #3b493c; border-radius: 27px; box-shadow: 0 18px 50px #0003; transition: transform .25s, border-color .25s; cursor: zoom-in; }
.minimal-preview-trigger:hover { transform: translateY(-6px); border-color: var(--green); }
.minimal-preview-card picture { display: block; overflow: hidden; border-radius: 20px; background: #090b09; }
.minimal-preview-card img { width: 100%; aspect-ratio: 540 / 1200; object-fit: cover; }
.minimal-preview-card:nth-child(even) { padding-top: 28px; }
.minimal-preview-card figcaption { padding: 20px 2px 0; }
.minimal-preview-card figcaption strong { display: block; font-family: var(--display); font-size: 1.125rem; font-weight: 500; letter-spacing: -.03em; }
.minimal-preview-card figcaption span { display: block; margin-top: 5px; font-size: .875rem; color: var(--muted); line-height: 1.55; }
.download-section { padding-top: 0; padding-bottom: 96px; }
.download-panel { padding: 48px; border: 1px solid #435b32; background: #172111; border-radius: 16px; display: grid; grid-template-columns: .9fr 1.3fr; column-gap: 46px; align-items: center; position: relative; }
.download-copy .eyebrow { display: flex; align-items: center; gap: 10px; font-size: .75rem; letter-spacing: .07em; }
.download-copy h2 { font-size: clamp(2rem, calc(1.2rem + 2vw), 2.65rem); }
.download-copy > p:not(.eyebrow) { color: #b2c1a8; margin-top: 22px; font-size: .9375rem; }
.coverage-note { display: flex; gap: 13px; align-items: flex-start; color: #a2b494; margin-top: 32px; padding-top: 23px; border-top: 1px solid #37452d; font-size: .8125rem; line-height: 1.6; }
.coverage-note > span:first-child { color: var(--green); font-size: 1.7rem; line-height: 1; }
.download-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.download-card { min-width: 0; background: #10160d; border: 1px solid #34452a; border-radius: 10px; padding: 21px; }
.download-card-top { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; justify-content: space-between; }
.download-card-top .mono { font-size: .75rem; color: #bdcdb3; letter-spacing: .06em; }
.availability { color: #a6c98a; font-family: var(--mono); font-size: .75rem; letter-spacing: .01em; background: #1e2d16; border-radius: 3px; padding: 4px 5px; }
.download-card h3 { font-size: 1.25rem; letter-spacing: -.04em; margin-top: 25px; }
.download-card > p { font-size: .8125rem; color: #9eaf93; margin-top: 7px; min-height: 42px; }
.download-card .button { width: 100%; margin-top: 20px; gap: 10px; padding: 13px 9px; font-size: .8125rem; min-height: 48px; }
.download-qr { display: flex; gap: 14px; align-items: center; margin-top: 23px; }
.download-qr img { width: 65px; height: 65px; border-radius: 5px; background: #fff; }
.download-qr span { color: #9dad93; font-size: .75rem; }
.download-web { grid-column: 2; color: #8fa181; font-size: .8125rem; margin-top: 18px; text-align: center; }
.download-web a { color: #ccdebe; text-decoration: underline; text-underline-offset: 4px; text-decoration-color: #62794f; }
.faq-section { padding-top: 20px; }
.faq-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; }
.faq-heading > p:last-child { color: var(--muted); font-size: .9375rem; margin-top: 27px; }
.faq-heading .text-link { color: var(--ink); margin-top: 5px; }
.minimal-faq-list { border-top: 1px solid #354235; }
.minimal-faq-item { border-bottom: 1px solid #2d382c; }
.minimal-faq-item summary { position: relative; padding: 22px 34px 22px 0; list-style: none; cursor: pointer; font-weight: 500; font-size: 1rem; }
.minimal-faq-item summary::-webkit-details-marker { display: none; }
.minimal-faq-item summary::after { content: "+"; position: absolute; right: 4px; top: 20px; font-size: 1.3rem; color: #a2b994; font-weight: 400; }
.minimal-faq-item[open] summary::after { content: "−"; color: var(--green); }
.minimal-faq-item p { color: var(--muted); font-size: .9375rem; line-height: 1.7; padding: 0 28px 24px 0; }
.minimal-faq-item a { color: #d8ecc9; text-decoration: underline; text-underline-offset: 3px; text-decoration-color: #647557; }
.founder-section { border-block: 1px solid var(--line); background: #0d120e; padding-block: 70px; }
.founder-layout { display: flex; justify-content: center; align-items: flex-start; gap: 48px; }
.founder-mark { width: 90px; padding-top: 15px; flex: 0 0 auto; }
.founder-mark img { opacity: .9; }
.founder-layout .eyebrow { margin-bottom: 19px; }
.founder-layout h2 { font-size: clamp(1.65rem, 2.6vw, 2.3rem); line-height: 1.25; font-weight: 500; letter-spacing: -.04em; }
.founder-layout h2 + p { color: var(--muted); font-size: .9375rem; margin-top: 19px; }
.founder-signature { display: flex; align-items: center; gap: 17px; margin-top: 24px; }
.founder-signature strong { font-family: var(--display); color: var(--green); font-size: 1.4rem; font-weight: 500; }
.founder-signature > span { color: #899c89; font-size: .8125rem; }
.founder-signature a { color: #cbdcc0; border-left: 1px solid #3a4934; padding-left: 17px; font-size: .8125rem; }
.closing-cta { padding-block: 48px; border-bottom: 1px solid var(--line); }
.closing-cta-layout { display: flex; justify-content: space-between; align-items: center; gap: 28px; }
.closing-cta h2 { font-size: clamp(1.8rem, calc(1.2rem + 1.4vw), 2.4rem); }
.closing-cta p { margin-top: 12px; color: var(--muted); max-width: 480px; }
.closing-actions { flex-shrink: 0; }
.closing-store-links { justify-content: center; gap: 0 20px; }
.closing-actions > .button { display: flex; }
.founder-signature a { display: inline-flex; align-items: center; min-height: 44px; }
.minimal-lightbox { position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; padding: 26px 70px; background: #020604ee; backdrop-filter: blur(15px); opacity: 0; transition: opacity .18s; }
.minimal-lightbox.is-open { opacity: 1; }
.minimal-lightbox-shell { position: relative; max-width: 100%; }
.minimal-lightbox-figure { margin: 0; }
.minimal-lightbox-figure img { max-height: 82vh; max-height: 82dvh; max-width: 100%; width: auto; height: auto; border-radius: 20px; object-fit: contain; }
.minimal-lightbox-figure figcaption { text-align: center; margin-top: 14px; color: #d5e3cd; font-size: .875rem; }
.minimal-lightbox button { position: absolute; border: 1px solid #577048; border-radius: 50%; width: 44px; height: 44px; color: var(--ink); background: #1c2817; font-size: 1.7rem; line-height: 1; display: grid; place-items: center; }
.minimal-lightbox button:hover { background: #34452a; }
.minimal-lightbox-close { right: -54px; top: 0; }
.minimal-lightbox-prev { left: -58px; top: 45%; }
.minimal-lightbox-next { right: -58px; top: 45%; }
/* Content remains visible when JavaScript is unavailable. */
.reveal.is-visible { animation: rise-in .65s both; }
@keyframes rise-in { from { opacity: .25; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
.receipt.reveal.is-visible { animation: none; }
@media (min-width: 1600px) { .hero-grid { padding-block: 88px; } }
@media (max-width: 1150px) {
  .hero-grid { padding-top: 52px; }
  .hero-savings { padding: 17px; }
  .hero-actions { gap: 19px; }
  .hero-actions .button { padding-inline: 18px; gap: 20px; }
  .hero-actions .text-link { gap: 12px; font-size: .875rem; }
  .proof-layout { gap: 60px; }
  .receipt { padding-inline: 24px; }
  .steps-grid { gap: 16px; }
  .step { padding-inline: 24px; }
  .download-panel { padding: 36px; column-gap: 30px; grid-template-columns: .8fr 1.3fr; }
  .download-card { padding: 17px; }
  .download-card-top { flex-direction: column; align-items: flex-start; }
  .download-card .button { font-size: .75rem; }
  .download-qr { gap: 10px; }
  .download-qr img { width: 55px; height: 55px; }
  .faq-layout { gap: 50px; }
}
@media (max-width: 1024px) {
  .minimal-preview-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 760px; margin-inline: auto; gap: 28px 24px; }
  .minimal-preview-trigger, .minimal-preview-card figcaption { max-width: 320px; margin-inline: auto; }
}
@media (max-width: 1000px) {
  .download-panel { grid-template-columns: 1fr; padding: 36px; }
  .download-copy { max-width: 600px; }
  .download-copy h2 br { display: none; }
  .download-cards { margin-top: 30px; }
  .download-web { grid-column: 1; }
}
@media (max-width: 900px) {
  .section { padding-block: 80px; }
  .hero-grid { grid-template-columns: 1fr; gap: 28px; padding-bottom: 50px; }
  .hero-copy { max-width: 600px; }
  .hero-stage { max-width: 580px; margin-inline: auto; }
  .hero-mascot { width: 100%; }
  .stage-orbit { left: 50%; transform: translateX(-50%); }
  .steps-grid { grid-template-columns: 1fr; }
  .step { display: grid; grid-template-columns: 130px minmax(0, 1fr); column-gap: 24px; }
  .step-top { grid-column: 1 / -1; }
  .step img { grid-column: 1; grid-row: 2 / 4; align-self: center; }
  .step h3 { grid-column: 2; align-self: end; }
  .step > p { grid-column: 2; max-width: 540px; }
  .closing-cta-layout { flex-direction: column; align-items: flex-start; }
  .hero-savings { padding: 15px; gap: 10px; }
  .hero-savings strong { font-size: 1.9rem; }
  .hero-savings small { font-size: .75rem; }
  .hero-savings .mono { font-size: .75rem; }
  .savings-check { height: 26px; width: 26px; }
  .hero-lede { font-size: 1.125rem; }
  .hero-description { max-width: 320px; font-size: .9375rem; }
  .hero-actions { flex-wrap: wrap; gap: 10px 22px; margin-top: 24px; }
  .hero-footnote { font-size: .75rem; align-items: center; }
  .hero-footnote > span:first-child { max-width: 260px; }
  .stage-label { font-size: .75rem; }
  .stage-orbit { top: 90px; height: 310px; width: 310px; }
  .scannie-caption { gap: 9px; }
  .principles { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
  .proof-layout { gap: 38px; }
  .proof-number { flex-direction: column; align-items: flex-start; gap: 10px; }
  .proof-number > span br { display: none; }
  .receipt { padding-inline: 20px; }
  .store-row { padding: 13px 9px; gap: 9px; }
  .store-row small { font-size: .75rem; }
  .store-price { font-size: 1.25rem; }
  .step { padding: 22px; }
  .step h3 { font-size: 1.3rem; }
  .step img { width: 112px; height: 112px; }
  .step > p { font-size: .875rem; }
  .section-heading { gap: 25px; }
  .section-heading > p { max-width: 220px; }
  .minimal-preview-grid { gap: 15px; }
  .minimal-preview-trigger { padding: 5px; border-radius: 19px; }
  .minimal-preview-card picture { border-radius: 14px; }
  .minimal-preview-card figcaption strong { font-size: 1rem; }
  .minimal-preview-card figcaption span { font-size: .8125rem; }
  .download-section { padding-top: 0; }
  .download-panel { grid-template-columns: 1fr; padding: 36px; }
  .download-copy { max-width: 600px; }
  .coverage-note { margin-top: 20px; padding-top: 18px; max-width: 500px; }
  .download-cards { margin-top: 30px; gap: 22px; }
  .download-card { padding: 23px; }
  .download-card-top { flex-direction: row; }
  .download-card .button { font-size: .875rem; }
  .download-web { grid-column: 1; }
  .download-qr img { width: 70px; height: 70px; }
  .download-qr span { font-size: .75rem; }
  .faq-section { padding-top: 0; }
  .faq-layout { grid-template-columns: .9fr 1.1fr; gap: 36px; }
  .founder-layout { gap: 30px; }
}
@media (max-width: 680px) {
  .section { padding-block: 64px; }
  .hero-grid { grid-template-columns: 1fr; gap: 24px; padding-top: 38px; padding-bottom: 36px; }
  .hero-copy { max-width: 500px; }
  .hero-stage { max-width: 460px; }
  .hero-mascot img { aspect-ratio: 5 / 4; }
  .hero-savings { margin-top: 0; transform: rotate(-2deg); }
  .beta-pill { font-size: .75rem; }
  h1 { margin-top: 23px; line-height: 1.02; }
  .hero-lede { margin-top: 23px; font-size: 1.125rem; }
  .hero-description { max-width: 360px; font-size: .9375rem; margin-top: 14px; }
  .hero-actions { margin-top: 24px; gap: 12px 23px; }
  .hero-actions .button { min-height: 52px; font-size: .9375rem; padding-inline: 19px; }
  .hero-actions .text-link { font-size: .875rem; gap: 12px; }
  .platform-note { font-size: .75rem; }
  .web-preview-link { margin-top: 8px; font-size: .75rem; }
  .stage-orbit { width: 300px; height: 300px; top: 22px; left: calc(50% - 150px); }
  .stage-label { font-size: .75rem; }
  .hero-savings { padding: 17px 18px; }
  .hero-savings .mono { font-size: .75rem; }
  .hero-savings strong { font-size: 1.9rem; }
  .hero-savings small { font-size: .75rem; }
  .scannie-caption { font-size: .75rem; }
  .hero-footnote { padding-block: 18px; }
  .hero-footnote > span:first-child { max-width: 235px; font-size: .75rem; }
  .hero-footnote > span:last-child { display: none; }
  .principles { font-size: .75rem; padding-block: 19px; gap: 12px 15px; }
  .principles > span { gap: 8px; }
  .principles > span > span { font-size: 1rem; }
  .proof-layout { grid-template-columns: 1fr; gap: 38px; }
  .eyebrow { font-size: .75rem; letter-spacing: .075em; margin-bottom: 18px; }
  .proof-copy > p:not(.eyebrow) { margin-top: 20px; }
  .proof-number { flex-direction: row; gap: 18px; align-items: center; margin-top: 25px; margin-bottom: 14px; }
  .proof-number > strong { font-size: 3.3rem; }
  .proof-number > span { font-size: .75rem; }
  .proof-number > span br { display: initial; }
  .receipt { width: calc(100% - 6px); max-width: 470px; margin-inline: auto; padding: 26px 23px 24px; }
  .store-row { padding: 14px 12px; gap: 12px; }
  .store-row small { font-size: .75rem; }
  .store-price { font-size: 1.4rem; }
  .section-heading { display: block; margin-bottom: 32px; }
  .section-heading > p { margin-top: 22px; max-width: none; font-size: .9375rem; }
  .section-heading > p br { display: none; }
  .steps-grid { grid-template-columns: 1fr; gap: 14px; }
  .step { padding: 24px; min-height: 0; grid-template-columns: minmax(0, 1fr) 80px; column-gap: 16px; }
  .step-top { margin-bottom: 23px; }
  .step-arrow { display: none; }
  .step img { position: static; grid-column: 2; grid-row: 2 / 4; width: 80px; height: 80px; margin: 0; }
  .step h3 { grid-column: 1; font-size: 1.35rem; line-height: 1.25; max-width: none; }
  .step > p { grid-column: 1; max-width: none; padding-right: 0; font-size: .9375rem; }
  .community-line { font-size: .8125rem; align-items: flex-start; }
  .community-line .status-dot { margin-top: 7px; }
  .community-tag { display: none; }
  .ticker-label-wrap { padding-inline: 15px; gap: 8px; }
  .ticker-label-text { font-size: .75rem; }
  .minimal-preview-grid { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 30px 18px; }
  .minimal-preview-card:nth-child(even) { padding-top: 24px; }
  .minimal-preview-card figcaption { padding-top: 15px; }
  .minimal-preview-card figcaption strong { font-size: 1rem; }
  .minimal-preview-card figcaption span { font-size: .8125rem; }
  .download-section { padding-top: 0; }
  .download-panel { padding: 28px 22px; }
  .download-copy h2 br { display: none; }
  .download-copy > p:not(.eyebrow) { font-size: .9375rem; }
  .download-cards { grid-template-columns: 1fr; gap: 15px; margin-top: 25px; }
  .download-card { padding: 23px; }
  .download-card h3 { margin-top: 20px; font-size: 1.4rem; }
  .download-card > p { min-height: 0; font-size: .875rem; }
  .download-card .button { font-size: .875rem; margin-top: 20px; }
  .download-qr { display: none; }
  .download-web { font-size: .75rem; line-height: 1.8; }
  .availability { font-size: .75rem; }
  .download-card-top .mono { font-size: .75rem; }
  .faq-section { padding-top: 0; }
  .faq-layout { grid-template-columns: 1fr; gap: 32px; }
  .faq-heading > p:last-child { margin-top: 20px; }
  .minimal-faq-item summary { padding-block: 20px; font-size: .9375rem; }
  .minimal-faq-item p { font-size: .9375rem; padding-right: 17px; }
  .hero-store-links { gap: 0 16px; }
  .hero-store-links a { font-size: .8125rem; }
  .closing-cta { padding-block: 36px; }
  .closing-actions { width: 100%; }
  .founder-section { padding-block: 46px; }
  .founder-layout { display: block; }
  .founder-mark { width: 56px; padding: 0; margin-bottom: 25px; }
  .founder-layout h2 { font-size: 1.65rem; }
  .desktop-break { display: none; }
  .founder-signature { gap: 12px; flex-wrap: wrap; }
  .founder-signature > span, .founder-signature a { font-size: .75rem; }
  .minimal-lightbox { padding: 50px 48px 30px; }
  .minimal-lightbox-figure img { max-height: 76vh; max-height: 76dvh; border-radius: 14px; }
  .minimal-lightbox-close { right: -37px; top: -43px; }
  .minimal-lightbox-prev { left: -45px; }
  .minimal-lightbox-next { right: -45px; }
  .minimal-lightbox button { width: 40px; height: 40px; }
}
@media (max-width: 380px) {
  .hero-actions { gap: 10px 15px; }
  .hero-actions .button { font-size: .875rem; padding-inline: 15px; gap: 16px; }
  .hero-actions .text-link { font-size: .8125rem; gap: 8px; }
  .hero-savings { padding-inline: 14px; }
  .hero-savings small { font-size: .75rem; }
  .principles { font-size: .75rem; gap: 12px 8px; }
  .proof-number > strong { font-size: 3rem; }
  .receipt { padding-inline: 16px; }
  .store-row { gap: 8px; padding-inline: 9px; }
  .store-row small { font-size: .75rem; }
  .store-price { font-size: 1.25rem; }
  .receipt-total strong { font-size: 1.8rem; }
  .download-panel { padding-inline: 18px; }
  .download-card { padding-inline: 18px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
