/* Nutrima — design system */
:root {
  --green: #2f9e4f;
  --green-bright: #3db560;
  --green-deep: #0f3d22;
  --green-mist: #e8f5ec;
  --apple: #c9383a;
  --ink: #121712;
  --ink-soft: #3d473f;
  --ink-muted: #6a746c;
  --paper: #f4f7f3;
  --surface: #ffffff;
  --line: rgba(15, 61, 34, 0.1);
  --shadow: 0 24px 60px rgba(15, 61, 34, 0.12);
  --radius: 18px;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Plus Jakarta Sans", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --nav-h: 68px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

button {
  font: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

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

/* ---- Nav ---- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background 0.35s var(--ease), border-color 0.35s, backdrop-filter 0.35s;
  border-bottom: 1px solid transparent;
}

.navbar.is-scrolled {
  background: rgba(244, 247, 243, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}

.navbar.is-hero-light {
  --nav-fg: #fff;
  --nav-muted: rgba(255, 255, 255, 0.78);
}

.navbar.is-scrolled,
.navbar:not(.is-hero-light) {
  --nav-fg: var(--ink);
  --nav-muted: var(--ink-muted);
}

.nav-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

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

.language-switcher {
  position: relative;
}

.language-switcher summary {
  list-style: none;
  cursor: pointer;
  padding: 8px 10px;
  color: var(--nav-muted, var(--ink-muted));
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.language-switcher summary::-webkit-details-marker {
  display: none;
}

.language-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  min-width: 150px;
  padding: 8px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.language-menu a {
  display: block;
  padding: 9px 11px;
  color: var(--ink-soft);
  border-radius: 9px;
  font-size: 0.85rem;
}

.language-menu a:hover,
.language-menu a[aria-current="page"] {
  color: var(--green-deep);
  background: var(--green-mist);
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--nav-fg, var(--ink));
  transition: color 0.25s;
}

.nav-logo img {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  object-fit: cover;
}

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 2px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--nav-muted, var(--ink-muted));
  padding: 8px 14px;
  border-radius: 999px;
  transition: color 0.2s, background 0.2s;
}

.nav-links a:hover {
  color: var(--nav-fg, var(--ink));
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: #fff !important;
  font-size: 0.875rem;
  font-weight: 650;
  padding: 10px 18px;
  border-radius: 999px;
  transition: background 0.2s, transform 0.2s var(--ease);
}

.nav-cta:hover {
  background: var(--green-deep);
  transform: translateY(-1px);
}

.nav-cta svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--nav-fg, var(--ink));
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

.nav-mobile {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(244, 247, 243, 0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  padding: 12px 24px 24px;
  flex-direction: column;
  gap: 4px;
}

.nav-mobile.open {
  display: flex;
}

.nav-mobile a {
  padding: 14px 12px;
  font-weight: 550;
  color: var(--ink);
  border-radius: 12px;
}

.nav-mobile a:hover {
  background: var(--green-mist);
}

.nav-mobile .nav-cta-mobile {
  margin-top: 8px;
  text-align: center;
  background: var(--green);
  color: #fff;
  font-weight: 650;
}

@media (max-width: 760px) {
  .nav-links,
  .nav-actions > .nav-cta,
  .language-switcher {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }
}

.mobile-languages {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
  padding: 8px 0;
}

.mobile-languages a {
  padding: 9px 4px;
  text-align: center;
  font-size: 0.78rem;
}

.mobile-languages a[aria-current="page"] {
  color: var(--green-deep);
  background: var(--green-mist);
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 650;
  font-size: 1rem;
  padding: 16px 28px;
  border-radius: 999px;
  transition: transform 0.25s var(--ease), background 0.2s, box-shadow 0.25s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 12px 28px rgba(47, 158, 79, 0.28);
}

.btn-primary:hover {
  background: var(--green-deep);
  box-shadow: 0 16px 36px rgba(15, 61, 34, 0.28);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.2);
}

.btn-dark {
  background: var(--ink);
  color: #fff;
}

.btn-dark:hover {
  background: var(--green-deep);
}

.btn svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
}

/* ---- Reveal ---- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center;
  transform: scale(1.04);
  animation: hero-ken 18s ease-out forwards;
}

@keyframes hero-ken {
  to { transform: scale(1); }
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(8, 28, 16, 0.88) 0%, rgba(8, 28, 16, 0.72) 38%, rgba(8, 28, 16, 0.35) 62%, rgba(8, 28, 16, 0.2) 100%),
    linear-gradient(to top, rgba(8, 28, 16, 0.75) 0%, transparent 45%);
}

.hero-scan {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0,
    transparent 3px,
    rgba(61, 181, 96, 0.07) 3px,
    rgba(61, 181, 96, 0.07) 4px
  );
  mask-image: linear-gradient(105deg, black 0%, black 45%, transparent 70%);
  -webkit-mask-image: linear-gradient(105deg, black 0%, black 45%, transparent 70%);
}

.hero-scan::after {
  content: "";
  position: absolute;
  left: 0;
  right: 40%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green-bright), transparent);
  box-shadow: 0 0 24px rgba(61, 181, 96, 0.8);
  animation: scan-line 4.5s var(--ease) infinite;
}

@keyframes scan-line {
  0% { top: 18%; opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { top: 78%; opacity: 0; }
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: calc(var(--nav-h) + 48px) 24px 72px;
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 9vw, 6.5rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 0.92;
  margin-bottom: 28px;
}

.hero-brand span {
  color: var(--green-bright);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3.6vw, 2.45rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.2;
  max-width: 16ch;
  margin-bottom: 18px;
  text-wrap: balance;
}

.hero-lead {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: rgba(255, 255, 255, 0.82);
  max-width: 38ch;
  margin-bottom: 34px;
  line-height: 1.55;
}

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

.hero-note {
  width: 100%;
  margin-top: 14px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.62);
}

@media (max-width: 700px) {
  .hero-inner {
    padding-bottom: 56px;
  }

  .hero-media img {
    object-position: 80% center;
  }

  .hero-shade {
    background:
      linear-gradient(to top, rgba(8, 28, 16, 0.92) 0%, rgba(8, 28, 16, 0.7) 45%, rgba(8, 28, 16, 0.45) 100%);
  }

  .hero-scan {
    opacity: 0.2;
  }
}

/* ---- Sections ---- */
.section {
  padding: 96px 24px;
}

.section-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.2vw, 3.1rem);
  font-weight: 550;
  letter-spacing: -0.035em;
  line-height: 1.12;
  color: var(--ink);
  max-width: 18ch;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.08rem;
  color: var(--ink-muted);
  max-width: 42ch;
  line-height: 1.55;
}

/* ---- How it works ---- */
.how {
  background: var(--surface);
  border-block: 1px solid var(--line);
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 56px;
  border-top: 1px solid var(--line);
}

.how-step {
  padding: 36px 28px 8px 0;
  border-right: 1px solid var(--line);
  position: relative;
}

.how-step:last-child {
  border-right: none;
  padding-right: 0;
}

.how-step:not(:first-child) {
  padding-left: 28px;
}

.how-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 500;
  color: var(--green-mist);
  line-height: 1;
  margin-bottom: 18px;
  letter-spacing: -0.04em;
  background: linear-gradient(180deg, var(--green-bright) 0%, rgba(61, 181, 96, 0.15) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.how-step h3 {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.how-step p {
  color: var(--ink-muted);
  font-size: 0.98rem;
  max-width: 28ch;
}

@media (max-width: 860px) {
  .how-grid {
    grid-template-columns: 1fr;
    border-top: none;
  }

  .how-step,
  .how-step:not(:first-child) {
    border-right: none;
    border-bottom: 1px solid var(--line);
    padding: 28px 0;
  }

  .how-step:last-child {
    border-bottom: none;
  }
}

/* ---- Features ---- */
.features-intro {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 32px;
  margin-bottom: 56px;
}

.features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
}

.feature {
  background: var(--surface);
  padding: 32px 28px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
  transition: background 0.25s;
}

.feature:hover {
  background: var(--green-mist);
}

.feature-mark {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--green-deep);
  color: #fff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.feature-mark svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature h3 {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.feature p {
  font-size: 0.92rem;
  color: var(--ink-muted);
  line-height: 1.55;
}

@media (max-width: 800px) {
  .features-intro {
    flex-direction: column;
    align-items: start;
  }

  .features-list {
    grid-template-columns: 1fr;
  }
}

/* ---- Spotlight ---- */
.spotlight {
  background: var(--green-deep);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.spotlight::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(61, 181, 96, 0.35), transparent 70%);
  top: -160px;
  right: -80px;
  pointer-events: none;
}

.spotlight-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.spotlight .section-label {
  color: var(--green-bright);
}

.spotlight .section-title {
  color: #fff;
  max-width: 14ch;
}

.spotlight .section-sub {
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 28px;
}

.macro-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.macro {
  padding: 22px 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
}

.macro strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 550;
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}

.macro span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
}

@media (max-width: 800px) {
  .spotlight-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

/* ---- FAQ ---- */
.faq {
  background: var(--surface);
  border-top: 1px solid var(--line);
}

.faq-list {
  margin-top: 48px;
  max-width: 760px;
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 0;
  font-size: 1.05rem;
  font-weight: 650;
  letter-spacing: -0.015em;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

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

.faq-item summary::after {
  content: "+";
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--green);
  line-height: 1;
  transition: transform 0.25s;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  padding: 0 0 24px;
  color: var(--ink-muted);
  max-width: 58ch;
}

/* ---- Final CTA ---- */
.final-cta {
  padding: 110px 24px;
  text-align: center;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(61, 181, 96, 0.18), transparent 60%),
    var(--paper);
}

.final-cta .brand-mark {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  margin: 0 auto 28px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.final-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 550;
  letter-spacing: -0.035em;
  line-height: 1.15;
  max-width: 16ch;
  margin: 0 auto 16px;
}

.final-cta p {
  color: var(--ink-muted);
  max-width: 40ch;
  margin: 0 auto 32px;
  font-size: 1.05rem;
}

.final-cta .btn {
  margin-bottom: 18px;
}

.final-note {
  font-size: 0.82rem;
  color: var(--ink-muted);
}

.disclaimer {
  max-width: 720px;
  margin: 48px auto 0;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  font-size: 0.78rem;
  color: var(--ink-muted);
  line-height: 1.5;
}

/* ---- Footer ---- */
footer {
  border-top: 1px solid var(--line);
  background: var(--surface);
  padding: 32px 24px;
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copy {
  font-size: 0.85rem;
  color: var(--ink-muted);
}

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

.footer-links a {
  font-size: 0.85rem;
  font-weight: 550;
  color: var(--ink-soft);
  transition: color 0.2s;
}

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

@media (max-width: 600px) {
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }
}

/* ---- Inner pages (support / privacy) ---- */
.page-hero {
  padding: calc(var(--nav-h) + 56px) 24px 40px;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.page-hero-inner {
  max-width: 760px;
  margin: 0 auto;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 550;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}

.page-hero p {
  color: var(--ink-muted);
}

.page-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 24px 96px;
}

.page-content h2 {
  font-size: 1.25rem;
  margin: 36px 0 12px;
  letter-spacing: -0.02em;
}

.page-content p,
.page-content li {
  color: var(--ink-soft);
  margin-bottom: 12px;
}

.page-content ul {
  padding-left: 1.2em;
  margin-bottom: 16px;
}

.page-content a {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ---- Support / Privacy content blocks ---- */
.inner-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px 96px;
}

.panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px;
  margin-bottom: 14px;
}

.panel-title {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.panel-num {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  background: var(--green);
  color: #fff;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
}

.panel p {
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 10px;
}

.panel p:last-child { margin-bottom: 0; }

.panel-followup {
  margin-top: 14px;
}

.hero-followup {
  margin-top: 10px;
}

.panel ul {
  list-style: none;
  padding: 0;
  margin: 10px 0;
}

.panel ul li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 7px;
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.65;
}

.panel ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
}

.subsection-title {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 16px 0 8px;
}

.note {
  background: var(--green-mist);
  border-left: 3px solid var(--green);
  border-radius: 8px;
  padding: 12px 16px;
  margin-top: 14px;
  font-size: 0.88rem;
  color: var(--green-deep);
  line-height: 1.6;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-mist);
  color: var(--green-deep);
  border-radius: 12px;
  padding: 12px 16px;
  margin-top: 8px;
  font-size: 0.95rem;
  font-weight: 650;
  transition: background 0.15s;
}

.contact-link:hover {
  background: #d4efdc;
  text-decoration: none;
}

.support-faq-item { margin-bottom: 18px; }
.support-faq-item:last-child { margin-bottom: 0; }
.support-faq-q {
  font-size: 0.95rem;
  font-weight: 650;
  margin-bottom: 5px;
}
.support-faq-a {
  font-size: 0.92rem;
  color: var(--ink-muted);
  line-height: 1.7;
}
.support-divider {
  height: 1px;
  background: var(--line);
  margin: 18px 0;
}

.page-foot {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  text-align: center;
  font-size: 0.88rem;
  color: var(--ink-muted);
}

.page-foot a {
  color: var(--green);
  font-weight: 600;
}

.last-update {
  font-size: 0.85rem;
  color: var(--ink-muted);
  margin-bottom: 12px;
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-media img { animation: none; transform: none; }
  .hero-scan::after { animation: none; display: none; }
  .btn:hover { transform: none; }
}
