/* TypeCal — cinematic dark landing
   System: deep green-black base, mint accent, hairline glass cards,
   Outfit headings + Inter body. No pure #000. */

:root {
  color-scheme: dark;
  --bg-deep: #060a08;
  --bg: #0a0f0c;
  --bg-elevated: #101711;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-strong: rgba(255, 255, 255, 0.07);
  --border: rgba(255, 255, 255, 0.09);
  --border-strong: rgba(255, 255, 255, 0.18);
  --ink: #f4f7f4;
  --body: #b9c4bc;
  --muted: #8fa098;
  --mint: #34d399;
  --mint-bright: #6ee7b7;
  --mint-ink: #04150e;
  --orange: #fc7a1e;
  --orange-bright: #fc9303;
  --orange-soft: rgba(252, 122, 30, 0.14);
  --glow: rgba(52, 211, 153, 0.16);
  --nav-bg: rgba(6, 10, 8, 0.72);
  --footer-bg: rgba(4, 7, 5, 0.6);
  --panel: #0c120e;
  --card-grad-a: rgba(255, 255, 255, 0.05);
  --card-grad-b: rgba(255, 255, 255, 0.02);
  --demo-bg: rgba(4, 8, 6, 0.5);
  --glass: rgba(14, 20, 17, 0.82);
  --barcode-ink: rgba(244, 247, 244, 0.75);
  --error: #fca5a5;
  --radius-lg: 24px;
  --radius: 16px;
  --radius-sm: 12px;
  --radius-pill: 999px;
  --max: 1160px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --font-head: "Outfit", ui-sans-serif, -apple-system, "Segoe UI", sans-serif;
  --font-body: "Inter", ui-sans-serif, -apple-system, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 96px;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--body);
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-deep) 100%);
  background-color: var(--bg);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Ambient field: two slow-drifting glows behind everything. */
body::before {
  content: "";
  position: fixed;
  inset: -20%;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(38% 30% at 22% 14%, rgba(52, 211, 153, 0.07), transparent 70%),
    radial-gradient(34% 28% at 82% 68%, rgba(252, 122, 30, 0.05), transparent 70%);
  animation: drift 34s var(--ease) infinite alternate;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: 0.028;
  mix-blend-mode: soft-light;
  background-image:
    linear-gradient(115deg, rgba(255, 255, 255, 0.32), transparent 22%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 3px);
}

@keyframes drift {
  from { transform: translate3d(-1.5%, -1%, 0) scale(1); }
  to   { transform: translate3d(1.5%, 1.5%, 0) scale(1.04); }
}

::selection {
  background: rgba(52, 211, 153, 0.3);
  color: var(--ink);
}

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

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

button,
input {
  font: inherit;
}

a,
button,
summary {
  cursor: pointer;
  touch-action: manipulation;
}

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

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

h1, h2, h3 {
  font-family: var(--font-head);
  color: var(--ink);
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

.section-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding-inline: clamp(20px, 5vw, 40px);
}

.section {
  padding-block: clamp(72px, 10vw, 128px);
}

/* ---------- Reveal on scroll (JS-gated so no-JS never hides content) ---------- */

html.js [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}

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

/* ---------- Skip link ---------- */

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 60;
  transform: translateY(-200%);
  border-radius: var(--radius-pill);
  background: var(--mint);
  color: var(--mint-ink);
  padding: 12px 18px;
  font-weight: 600;
  transition: transform 0.2s var(--ease);
}

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

/* ---------- Nav ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--nav-bg);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}

.nav-shell {
  max-width: var(--max);
  margin: 0 auto;
  padding: 12px clamp(20px, 5vw, 40px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 68px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.13rem;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.brand img {
  border-radius: 8px;
}

.nav-links {
  display: flex;
  gap: 6px;
}

.nav-links a {
  padding: 10px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}

.nav-links a:hover {
  color: var(--ink);
  background: var(--surface);
}

.nav-links a[aria-current="page"] {
  color: var(--ink);
  background: var(--surface);
}

.nav-cta {
  padding: 11px 20px;
  border-radius: var(--radius-pill);
  background: var(--mint);
  color: var(--mint-ink);
  font-weight: 600;
  font-size: 0.94rem;
  transition: background 0.2s var(--ease), transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
  box-shadow: 0 0 0 rgba(52, 211, 153, 0);
}

.nav-cta:hover {
  background: var(--mint-bright);
  transform: translateY(-1px);
  box-shadow: 0 8px 28px var(--glow);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-pill);
  background: transparent;
  color: var(--ink);
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease);
}

.theme-toggle:hover {
  background: var(--surface);
  border-color: rgba(255, 255, 255, 0.3);
}

.theme-toggle svg {
  width: 18px;
  height: 18px;
}

.theme-toggle .icon-moon {
  display: none;
}

html[data-theme="light"] .theme-toggle .icon-sun {
  display: none;
}

html[data-theme="light"] .theme-toggle .icon-moon {
  display: block;
}

html[data-theme="light"] .theme-toggle:hover {
  border-color: rgba(13, 20, 16, 0.35);
}

/* ---------- Buttons ---------- */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 13px 26px;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.005em;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease),
    transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.button-primary {
  background: var(--mint);
  color: var(--mint-ink);
  box-shadow: 0 10px 34px var(--glow);
}

.button-primary:hover {
  background: var(--mint-bright);
  transform: translateY(-1px);
  box-shadow: 0 14px 44px rgba(52, 211, 153, 0.24);
}

.button-primary:active {
  transform: translateY(0) scale(0.98);
}

.button-primary:disabled {
  opacity: 0.55;
  cursor: default;
  transform: none;
  box-shadow: none;
}

.button-secondary {
  background: transparent;
  border-color: var(--border-strong);
  color: var(--ink);
}

.button-secondary:hover {
  border-color: rgba(255, 255, 255, 0.34);
  background: var(--surface);
  transform: translateY(-1px);
}

.button-secondary:active,
.nav-cta:active,
.theme-toggle:active {
  transform: translateY(0) scale(0.98);
}

/* ---------- Hero ---------- */

.hero {
  --gx: 50;
  --gy: 38;
  position: relative;
  padding-top: clamp(40px, 6vw, 76px);
  padding-bottom: clamp(48px, 6vw, 80px);
  overflow: hidden;
}

/* The glow field tracks the pointer via --gx/--gy (0-100, set from JS). */
.hero::before {
  content: "";
  position: absolute;
  inset: -20% 0 auto;
  height: 110%;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(44% 38% at calc(var(--gx) * 1%) calc(var(--gy) * 1%), rgba(52, 211, 153, 0.12), transparent 70%),
    radial-gradient(30% 26% at calc(100% - var(--gx) * 0.55%) calc(20% + var(--gy) * 0.5%), rgba(252, 122, 30, 0.06), transparent 70%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  gap: clamp(36px, 5vw, 64px);
  align-items: center;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  background: var(--surface);
  color: var(--muted);
  font-size: 0.87rem;
  font-weight: 500;
}

.pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.5);
  animation: pulse 2.4s ease-out infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.45); }
  70% { box-shadow: 0 0 0 9px rgba(52, 211, 153, 0); }
  100% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0); }
}

.hero h1 {
  margin-top: 26px;
  font-size: clamp(2.55rem, 5.2vw, 3.9rem);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.03em;
}

/* Typewriter line: gradient text, width reserved by a hidden ghost so the
   layout never shifts while characters land. */
.typed {
  position: relative;
  display: inline-block;
  background: linear-gradient(100deg, var(--mint) 8%, #7ee2a8 38%, #f5b83d 72%, var(--orange) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.typed-ghost {
  visibility: hidden;
}

.typed-live {
  position: absolute;
  inset: 0 auto auto 0;
  white-space: nowrap;
  background: inherit;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.typed-live::after {
  content: "";
  display: inline-block;
  width: 3px;
  height: 0.78em;
  margin-left: 5px;
  border-radius: 2px;
  background: var(--mint);
  transform: translateY(0.06em);
  animation: blink 1.1s steps(1) infinite;
  transition: opacity 0.4s var(--ease);
}

.typed-done .typed-live::after {
  opacity: 0;
}

.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;
}

.hero-sub {
  margin-top: 22px;
  max-width: 560px;
  font-size: clamp(1.15rem, 1.9vw, 1.35rem);
  line-height: 1.6;
  color: var(--body);
}

/* Signup */

.hero-signup {
  margin-top: 36px;
  width: min(560px, 100%);
}

.field-label {
  display: block;
  text-align: left;
  margin-bottom: 8px;
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--muted);
}

.input-row {
  display: flex;
  gap: 8px;
  padding: 6px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.05);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.input-row:focus-within {
  border-color: rgba(52, 211, 153, 0.6);
  box-shadow: 0 0 0 4px rgba(52, 211, 153, 0.12);
}

.input-row input {
  flex: 1;
  min-width: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 1rem;
  padding: 10px 16px;
  border-radius: var(--radius-pill);
}

.input-row input::placeholder {
  color: var(--muted);
}

.input-row input:focus {
  outline: none;
}

.input-row .button {
  flex-shrink: 0;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-message {
  margin: 10px 4px 0;
  min-height: 1.3em;
  text-align: left;
  font-size: 0.92rem;
  font-weight: 500;
}

.form-message.success {
  color: var(--mint-bright);
}

.form-message.error {
  color: var(--error);
}

.form-note {
  margin: 8px 4px 0;
  text-align: left;
  font-size: 0.86rem;
  color: var(--muted);
}

.hero-meta {
  margin-top: 30px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 10px 26px;
}

.hero-meta li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--muted);
}

.hero-meta svg {
  width: 15px;
  height: 15px;
  color: var(--mint);
}

/* ---------- Hero stage: phone + floating cards ---------- */

.hero-stage {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 8px;
}

.stage-glow {
  position: absolute;
  width: min(560px, 100%);
  height: 78%;
  bottom: 0;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(52, 211, 153, 0.14), transparent);
  filter: blur(10px);
  pointer-events: none;
  transform: translate(calc((var(--gx, 50) - 50) * 0.7px), calc((var(--gy, 38) - 38) * 0.7px));
}

.phone {
  position: relative;
  width: min(300px, 82vw);
  border-radius: 48px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(180deg, #171e1a, #0d1310);
  padding: 10px;
  box-shadow:
    0 40px 90px rgba(0, 0, 0, 0.55),
    0 0 0 6px rgba(255, 255, 255, 0.03),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.phone::before,
.review-frame::before,
.shot-frame::before {
  content: "";
  position: absolute;
  inset: 8px 33% auto;
  height: 5px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.16);
  z-index: 2;
}

.phone-shot {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 38px;
}

/* Floating cards */

.float-card {
  position: absolute;
  z-index: 2;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--glass);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.float-photo {
  left: -10px;
  top: 17%;
  width: 156px;
  padding: 9px;
  transform: rotate(-4deg) translate(calc((var(--gx, 50) - 50) * -0.25px), calc((var(--gy, 38) - 38) * -0.2px));
}

.float-photo img {
  border-radius: 10px;
}

.float-photo figcaption {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 4px 2px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--body);
}

.float-photo svg,
.float-result svg {
  width: 15px;
  height: 15px;
  color: var(--mint);
  flex-shrink: 0;
}

.float-text {
  right: -10px;
  bottom: 2.5%;
  width: 212px;
  padding: 14px 16px;
  transform: rotate(3deg) translate(calc((var(--gx, 50) - 50) * 0.35px), calc((var(--gy, 38) - 38) * 0.3px));
}

.float-quote {
  font-size: 0.92rem;
  color: var(--ink);
  line-height: 1.45;
}

.float-result {
  margin-top: 9px;
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--mint-bright);
}

/* ---------- Stats band ---------- */

.stats-band {
  border-block: 1px solid var(--border);
  background:
    radial-gradient(60% 140% at 50% 0%, rgba(52, 211, 153, 0.05), transparent 70%),
    rgba(255, 255, 255, 0.02);
  margin-top: clamp(48px, 6vw, 72px);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 4vw, 40px);
  padding-block: clamp(44px, 6vw, 72px);
  text-align: center;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding-inline: clamp(8px, 2vw, 24px);
}

.stat + .stat {
  border-left: 1px solid var(--border);
}

.stat strong {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(3.6rem, 7vw, 5rem);
  line-height: 1;
  background: linear-gradient(135deg, var(--mint) 15%, var(--orange-bright) 95%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-variant-numeric: tabular-nums;
}

.stat p {
  font-family: var(--font-head);
  font-size: 1.18rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.35;
  max-width: 30ch;
}

.stat p span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--muted);
  margin-top: 7px;
}

/* ---------- Section headings ---------- */

.section-heading {
  max-width: 640px;
  margin-bottom: clamp(40px, 5vw, 64px);
}

.eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 14px;
}

.section-heading h2,
.review-copy h2,
.final-panel h2 {
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.12;
}

.section-heading p:not(.eyebrow) {
  margin-top: 16px;
  font-size: 1.05rem;
  color: var(--body);
}

/* ---------- Steps ---------- */

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

.step-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, var(--card-grad-a), var(--card-grad-b));
  padding: clamp(24px, 3vw, 32px);
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease), background 0.25s var(--ease);
}

.step-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-3px);
}

.step-featured {
  border-color: rgba(52, 211, 153, 0.35);
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(52, 211, 153, 0.1), transparent 60%),
    linear-gradient(180deg, var(--card-grad-a), var(--card-grad-b));
}

.step-featured:hover {
  border-color: rgba(52, 211, 153, 0.55);
}

.step-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.step-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--mint);
}

.step-icon svg {
  width: 22px;
  height: 22px;
}

.step-num {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--muted);
}

.step-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}

.step-card p {
  font-size: 0.97rem;
  color: var(--body);
}

/* ---------- Bento ---------- */

.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(210px, auto);
  gap: 18px;
}

.bento-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, var(--card-grad-a), var(--card-grad-b));
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}

.bento-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-3px);
}

.bento-copy {
  padding: clamp(22px, 3vw, 30px);
}

.bento-card h3 {
  font-size: 1.22rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}

.bento-card p {
  font-size: 0.95rem;
  color: var(--body);
}

.bento-text {
  grid-column: span 4;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
}

.bento-photo {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 420px;
}

.bento-barcode {
  grid-column: span 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.bento-recipe {
  grid-column: span 2;
  min-height: 240px;
}

.bento-photo img,
.bento-recipe img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.1) contrast(1.05) brightness(0.94);
  transition: transform 0.5s var(--ease);
}

.bento-photo:hover img,
.bento-recipe:hover img {
  transform: scale(1.035);
}

.bento-overlay {
  position: absolute;
  inset: auto 0 0;
  padding: 22px;
  background: linear-gradient(180deg, transparent, rgba(4, 8, 6, 0.92) 58%);
  padding-top: 84px;
}

.bento-overlay h3 {
  color: #f4f7f4;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.55);
}

.bento-overlay p {
  color: #cdd8d1;
}

/* Type demo */

.type-demo {
  margin: 0 clamp(22px, 3vw, 30px) clamp(22px, 3vw, 30px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--demo-bg);
  padding: 18px;
}

.type-line {
  display: flex;
  align-items: center;
  font-size: 0.98rem;
  color: var(--ink);
}

.caret {
  width: 2px;
  height: 1.15em;
  margin-left: 3px;
  background: var(--mint);
  animation: blink 1.1s steps(1) infinite;
}

@keyframes blink {
  50% { opacity: 0; }
}

.type-results {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  background: var(--surface);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--body);
  font-variant-numeric: tabular-nums;
}

.chip-total {
  border-color: rgba(52, 211, 153, 0.35);
  background: rgba(52, 211, 153, 0.12);
  color: var(--mint-bright);
  font-weight: 600;
}

/* Barcode demo */

.barcode-demo {
  position: relative;
  margin: 0 clamp(22px, 3vw, 30px) clamp(22px, 3vw, 30px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--demo-bg);
  padding: 18px 22px;
  overflow: hidden;
}

.barcode-demo svg {
  width: 100%;
  height: 58px;
  fill: var(--barcode-ink);
}

.scanline {
  position: absolute;
  inset: 8px auto 8px 0;
  width: 2px;
  border-radius: 2px;
  background: var(--mint);
  box-shadow: 0 0 12px 2px rgba(52, 211, 153, 0.55);
  animation: scan 2.6s var(--ease) infinite alternate;
}

@keyframes scan {
  from { transform: translateX(18px); }
  to   { transform: translateX(min(78vw, 240px)); }
}

/* ---------- Review section ---------- */

.review-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
}

.review-copy p:not(.eyebrow) {
  margin-top: 18px;
  font-size: 1.05rem;
}

.review-copy .button {
  margin-top: 30px;
}

.review-mock {
  position: relative;
  display: flex;
  justify-content: center;
}

.review-mock::before {
  content: "";
  position: absolute;
  inset: 10%;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(52, 211, 153, 0.12), transparent);
  pointer-events: none;
}

.review-frame {
  position: relative;
  margin: 0;
  width: min(340px, 100%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 40px;
  background: linear-gradient(180deg, #171e1a, #0d1310);
  padding: 9px;
  box-shadow:
    0 34px 80px rgba(0, 0, 0, 0.5),
    0 0 0 6px rgba(255, 255, 255, 0.03),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.review-frame img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 32px;
}

/* ---------- App screens gallery ---------- */

.shots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 3vw, 32px);
  align-items: start;
}

.shot-card {
  margin: 0;
}

.shot-frame {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 36px;
  padding: 8px;
  background: linear-gradient(180deg, #171e1a, #0d1310);
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.09);
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease);
}

.shot-card:hover .shot-frame {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.24);
}

.shot-media {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 29px;
}

.shot-card figcaption {
  padding: 18px 6px 0;
}

.shot-card h3 {
  font-size: 1.12rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}

.shot-card figcaption p {
  font-size: 0.93rem;
  color: var(--muted);
}

/* ---------- FAQ ---------- */

.faq-inner {
  max-width: 760px;
}

.faq-list details {
  border-bottom: 1px solid var(--border);
}

.faq-list details:first-child {
  border-top: 1px solid var(--border);
}

.faq-list summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 4px;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 1.13rem;
  color: var(--ink);
  transition: color 0.2s var(--ease);
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary:hover {
  color: var(--mint-bright);
}

.faq-icon {
  position: relative;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 0;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: var(--muted);
  transform: translateY(-50%);
  transition: transform 0.25s var(--ease);
}

.faq-icon::after {
  transform: translateY(-50%) rotate(90deg);
}

details[open] .faq-icon::after {
  transform: translateY(-50%) rotate(0deg);
}

.faq-list details > p {
  padding: 0 4px 24px;
  max-width: 62ch;
  color: var(--body);
}

/* ---------- Final CTA ---------- */

.final-section {
  padding-bottom: clamp(88px, 11vw, 150px);
}

.final-panel {
  position: relative;
  overflow: hidden;
  text-align: center;
  border: 1px solid rgba(52, 211, 153, 0.28);
  border-radius: 32px;
  background:
    radial-gradient(90% 120% at 30% -20%, rgba(52, 211, 153, 0.16), transparent 60%),
    radial-gradient(70% 110% at 92% 118%, rgba(252, 122, 30, 0.1), transparent 60%);
  background-color: var(--panel);
  padding: clamp(52px, 7vw, 84px) clamp(24px, 5vw, 64px);
}

.final-panel p:not(.eyebrow) {
  max-width: 480px;
  margin: 18px auto 0;
  font-size: 1.05rem;
}

.final-panel .button {
  margin-top: 32px;
}

/* ---------- Footer ---------- */

.site-footer {
  border-top: 1px solid var(--border);
  background: var(--footer-bg);
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 32px clamp(20px, 5vw, 40px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand img {
  border-radius: 7px;
}

.footer-brand p {
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.25;
}

.footer-brand span {
  font-size: 0.83rem;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 22px;
}

.footer-links a {
  padding: 8px 0;
  font-size: 0.92rem;
  color: var(--muted);
  transition: color 0.2s var(--ease);
}

.footer-links a:hover {
  color: var(--ink);
}

/* ---------- Legal pages ---------- */

.legal-main {
  position: relative;
  overflow: hidden;
  padding: clamp(48px, 7vw, 88px) clamp(20px, 5vw, 40px) clamp(72px, 9vw, 120px);
}

.legal-main::before,
.page-main::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 360px;
  pointer-events: none;
  background:
    radial-gradient(54% 96% at 20% 0%, rgba(52, 211, 153, 0.1), transparent 68%),
    radial-gradient(38% 82% at 88% 8%, rgba(252, 122, 30, 0.06), transparent 72%);
}

.legal-copy {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, var(--card-grad-a), var(--card-grad-b)),
    var(--panel);
  padding: clamp(28px, 5vw, 56px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.22);
}

.legal-copy h1 {
  font-size: clamp(2.1rem, 5vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.legal-copy h2 {
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 40px 0 12px;
}

.legal-copy p,
.legal-copy li {
  margin-bottom: 12px;
  color: var(--body);
  line-height: 1.7;
}

.legal-copy ul {
  padding-left: 22px;
  margin: 0 0 12px;
}

.legal-copy strong {
  color: var(--ink);
}

.legal-copy a {
  color: var(--mint-bright);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ---------- Accuracy page ---------- */

.page-main {
  position: relative;
  overflow: hidden;
  padding: clamp(56px, 8vw, 96px) clamp(20px, 5vw, 40px) clamp(72px, 9vw, 120px);
}

.page-copy {
  position: relative;
  max-width: 840px;
  margin: 0 auto;
}

.page-copy h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.08;
}

.page-copy .lede {
  margin-top: 18px;
  max-width: 640px;
  font-size: 1.12rem;
  line-height: 1.65;
}

.page-copy > .eyebrow,
.page-copy > h1,
.page-copy > .lede {
  text-align: left;
}

.page-copy h2 {
  font-size: clamp(1.45rem, 3vw, 1.9rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 48px 0 14px;
}

.page-copy p {
  margin-bottom: 12px;
  color: var(--body);
  max-width: 68ch;
}

.page-copy a {
  color: var(--mint-bright);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.badge-progress {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(252, 122, 30, 0.35);
  background: var(--orange-soft);
  color: #ffb454;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.badge-progress .pulse-dot {
  background: var(--orange-bright);
  animation: none;
}

.acc-panel {
  margin: 26px 0 8px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, var(--card-grad-a), var(--card-grad-b));
  padding: clamp(16px, 3vw, 28px);
  overflow-x: auto;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  scrollbar-color: var(--border-strong) transparent;
}

.acc-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.acc-table caption {
  caption-side: bottom;
  text-align: left;
  padding-top: 14px;
  font-size: 0.85rem;
  color: var(--muted);
}

.acc-table th,
.acc-table td {
  text-align: left;
  padding: 12px 14px;
}

.acc-table thead th {
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--ink);
  border-bottom: 1px solid var(--border-strong);
  white-space: nowrap;
}

.acc-table tbody td {
  border-bottom: 1px solid var(--border);
  color: var(--body);
}

.acc-table tbody tr:last-child td {
  border-bottom: 0;
}

.acc-table .na {
  color: var(--muted);
}

.badge-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(52, 211, 153, 0.35);
  background: rgba(52, 211, 153, 0.12);
  color: var(--mint-bright);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 26px;
}

.acc-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 22px 0 4px;
}

.acc-stat {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--card-grad-a), var(--card-grad-b));
  padding: 18px 16px;
}

.acc-stat strong {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.7rem, 3.4vw, 2.3rem);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--mint) 15%, var(--orange-bright) 95%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.acc-stat span {
  display: block;
  margin-top: 6px;
  font-size: 0.82rem;
  line-height: 1.4;
  color: var(--muted);
}

.acc-meta {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 10px 0 8px;
}

.acc-cat-title {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--ink);
  margin: 40px 0 4px;
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}

.acc-cat-score {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--mint-bright);
  font-variant-numeric: tabular-nums;
}

.acc-cat-blurb {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 0;
}

.acc-table td.num,
.acc-table th.num {
  text-align: right;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.acc-table tbody tr.acc-miss td {
  background: rgba(252, 122, 30, 0.05);
}

.delta-chip {
  display: inline-block;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.delta-chip.good {
  border: 1px solid rgba(52, 211, 153, 0.35);
  background: rgba(52, 211, 153, 0.12);
  color: var(--mint-bright);
}

.delta-chip.bad {
  border: 1px solid rgba(252, 122, 30, 0.35);
  background: var(--orange-soft);
  color: #ffb454;
  white-space: normal;
}

.acc-sources {
  margin: 14px 0 8px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
}

.acc-sources summary {
  cursor: pointer;
  padding: 12px 16px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--body);
}

.acc-sources summary:hover {
  color: var(--ink);
}

.acc-sources ul {
  margin: 0;
  padding: 4px 18px 14px 34px;
}

.acc-sources li {
  font-size: 0.84rem;
  line-height: 1.55;
  color: var(--muted);
  margin-bottom: 8px;
}

.acc-sources li strong {
  color: var(--body);
  font-weight: 600;
}

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

.acc-cta {
  margin-top: 56px;
  border: 1px solid rgba(52, 211, 153, 0.28);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(90% 130% at 15% -20%, rgba(52, 211, 153, 0.12), transparent 60%),
    radial-gradient(80% 130% at 95% 120%, rgba(252, 122, 30, 0.08), transparent 60%);
  background-color: var(--panel);
  padding: clamp(28px, 4vw, 44px);
}

.acc-cta h2 {
  margin: 0 0 10px;
}

.acc-cta .hero-signup {
  margin-top: 22px;
  width: min(560px, 100%);
}

/* ---------- Testimonials page ---------- */

.empty-wall {
  margin-top: 44px;
  border: 1px dashed var(--border-strong);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(80% 120% at 50% 0%, rgba(52, 211, 153, 0.08), transparent 65%),
    linear-gradient(180deg, var(--card-grad-a), var(--card-grad-b));
  padding: clamp(36px, 6vw, 64px);
  text-align: center;
}

.empty-wall h2 {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}

.empty-wall p {
  max-width: 52ch;
  margin: 0 auto;
  color: var(--body);
}

.empty-wall a {
  color: var(--mint-bright);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.proof-strip {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.proof-strip div {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--card-grad-a), var(--card-grad-b));
  padding: 16px;
}

.proof-strip strong {
  display: block;
  font-family: var(--font-head);
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--ink);
}

.proof-strip span {
  display: block;
  margin-top: 5px;
  font-size: 0.86rem;
  line-height: 1.45;
  color: var(--muted);
}

.ugc-grid {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 3vw, 32px);
  align-items: start;
}

.quote-wall {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.quote-card {
  margin: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, var(--card-grad-a), var(--card-grad-b));
  padding: 26px;
}

.quote-card blockquote {
  margin: 0;
  font-family: var(--font-head);
  font-size: 1.15rem;
  color: var(--ink);
  line-height: 1.5;
}

.quote-card figcaption {
  margin-top: 14px;
  font-size: 0.9rem;
  color: var(--muted);
}

/* ---------- Light theme ---------- */

html[data-theme="light"] {
  color-scheme: light;
  --bg-deep: #edf1ec;
  --bg: #f7f9f6;
  --surface: rgba(13, 20, 16, 0.045);
  --surface-strong: rgba(13, 20, 16, 0.07);
  --border: rgba(13, 20, 16, 0.11);
  --border-strong: rgba(13, 20, 16, 0.22);
  --ink: #0e1512;
  --body: #3d4c44;
  --muted: #5c6b63;
  --mint: #10b981;
  --mint-bright: #087a55;
  --glow: rgba(16, 185, 129, 0.2);
  --nav-bg: rgba(247, 249, 246, 0.8);
  --footer-bg: rgba(13, 20, 16, 0.03);
  --panel: #ecf4ee;
  --card-grad-a: #ffffff;
  --card-grad-b: #f1f4f0;
  --demo-bg: rgba(13, 20, 16, 0.05);
  --glass: rgba(255, 255, 255, 0.88);
  --barcode-ink: rgba(14, 21, 18, 0.72);
  --error: #b91c1c;
}

html[data-theme="light"] .eyebrow {
  color: var(--mint-bright);
}

html[data-theme="light"] .hero-meta svg {
  color: var(--mint-bright);
}

html[data-theme="light"] .typed {
  background: linear-gradient(100deg, #0a8f63 8%, #34a06d 38%, #cf7a10 72%, #d2610e 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

html[data-theme="light"] .stat strong {
  background: linear-gradient(135deg, #0a8f63 10%, #d2610e 95%);
  -webkit-background-clip: text;
  background-clip: text;
}

html[data-theme="light"] .button-primary:hover,
html[data-theme="light"] .nav-cta:hover {
  background: #0da874;
}

html[data-theme="light"] .input-row,
html[data-theme="light"] .input-row input {
  background: #ffffff;
}

html[data-theme="light"] .legal-copy {
  box-shadow: 0 28px 70px rgba(13, 20, 16, 0.08);
}

html[data-theme="light"] .badge-progress {
  color: #a04f07;
  border-color: rgba(194, 87, 10, 0.4);
}

html[data-theme="light"] .acc-stat strong {
  background: linear-gradient(135deg, #0a8f63 10%, #d2610e 95%);
  -webkit-background-clip: text;
  background-clip: text;
}

html[data-theme="light"] .delta-chip.bad {
  color: #a04f07;
  border-color: rgba(194, 87, 10, 0.4);
}

html[data-theme="light"] .app-input,
html[data-theme="light"] .float-quote {
  color: var(--ink);
}

/* ---------- Responsive ---------- */

@media (max-width: 1023px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .hero-copy {
    align-items: center;
    text-align: center;
  }

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

  .float-photo { display: none; }

  .float-text {
    right: clamp(4px, 3vw, 40px);
    bottom: 8%;
  }
}

@media (max-width: 767px) {
  .site-header {
    position: sticky;
  }

  .nav-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px 12px;
    align-items: center;
    padding-block: 10px;
  }

  .brand span {
    font-size: 1rem;
  }

  .nav-actions {
    justify-self: end;
    gap: 8px;
  }

  .theme-toggle {
    width: 40px;
    height: 40px;
  }

  .nav-links {
    grid-column: 1 / -1;
    display: flex;
    gap: 4px;
    overflow-x: auto;
    padding-bottom: 2px;
    margin-inline: -4px;
    scrollbar-width: none;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .nav-links a {
    flex: 0 0 auto;
    white-space: nowrap;
    padding: 8px 10px;
    font-size: 0.84rem;
  }

  .nav-cta {
    padding: 10px 14px;
    font-size: 0.86rem;
  }

  .hero {
    padding-top: 34px;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 12vw, 3.25rem);
  }

  .input-row {
    flex-direction: column;
    padding: 0;
    border: 0;
    background: transparent;
    gap: 10px;
  }

  .input-row:focus-within {
    box-shadow: none;
  }

  .input-row input {
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.05);
    padding: 14px 18px;
    min-height: 52px;
  }

  .input-row input:focus {
    outline: none;
    border-color: rgba(52, 211, 153, 0.6);
    box-shadow: 0 0 0 4px rgba(52, 211, 153, 0.12);
  }

  .input-row .button {
    width: 100%;
  }

  .float-text { display: none; }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .stat + .stat {
    border-left: 0;
    border-top: 1px solid var(--border);
    padding-top: 34px;
  }

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

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

  .shots-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 360px;
    margin: 0 auto;
  }

  .ugc-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin-inline: auto;
  }

  .quote-wall {
    grid-template-columns: 1fr;
  }

  .proof-strip {
    grid-template-columns: 1fr;
  }

  .bento-text,
  .bento-photo,
  .bento-barcode,
  .bento-recipe {
    grid-column: span 1;
    grid-row: auto;
  }

  .bento-photo { min-height: 340px; }

  .review-layout {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .legal-copy {
    padding: 24px 20px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .steps-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
  }

  .bento {
    grid-template-columns: repeat(2, 1fr);
  }

  .bento-text,
  .bento-photo,
  .bento-barcode,
  .bento-recipe {
    grid-column: span 1;
  }

  .bento-text { grid-column: span 2; }
  .bento-photo { grid-row: auto; min-height: 360px; }

  .review-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

/* ---------- Reduced motion ---------- */

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

  body::before,
  .pulse-dot,
  .caret,
  .scanline,
  .typed-live::after {
    animation: none;
  }

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

  .button,
  .nav-cta,
  .theme-toggle,
  .step-card,
  .bento-card,
  .bento-photo img,
  .bento-recipe img {
    transition: none;
  }
}
