/* =========================================================================
   IVRIS — Sales site styles
   Premium, minimal, visual-first. Warm paper base, ink text, single green
   accent, dark bands (demo / proof / final / footer) for rhythm.
   Font: Barlow + Barlow Semi Condensed (display). Page flows top → bottom.
   ========================================================================= */

:root {
  /* Brand */
  --ivris-green:     #6AAD3F;  --ivris-green-600: #588F33;  --ivris-green-050: #F0F7EA;
  --ivris-green-200: #CDE6BC;
  /* Ink (never pure #000 for large areas) */
  --ink-900: #111111;  --ink-700: #2B2D29;  --ink-500: #6B6E68;  --ink-300: #B6B9B2;
  /* Surface — light warm base */
  --paper: #FFFFFF;  --paper-50: #F8F8F5;  --paper-100: #F1F2EC;  --line: #E4E6E1;
  /* Dark band surface */
  --ink-band: #0E0F0D;
  /* Feedback / focus */
  --danger: #C4462E;  --focus-ring: #6AAD3F;
  /* Radii */
  --radius-sm: 8px;  --radius-md: 12px;  --radius-lg: 20px;  --radius-xl: 28px;
  /* Layered, soft shadows (premium depth) */
  --shadow-sm: 0 1px 2px rgba(17,17,17,.05);
  --shadow-md: 0 4px 10px rgba(17,17,17,.05), 0 14px 34px rgba(17,17,17,.07);
  --shadow-lg: 0 8px 20px rgba(17,17,17,.08), 0 36px 80px rgba(17,17,17,.16);
  /* Motion */
  --ease-out: cubic-bezier(.16,1,.3,1);
  --dur-fast: 150ms; --dur-base: 250ms; --dur-slow: 600ms;
  /* Space (4px base) */
  --space-1:4px; --space-2:8px; --space-3:12px; --space-4:16px; --space-6:24px;
  --space-8:32px; --space-12:48px; --space-16:64px; --space-24:96px; --space-32:128px;

  --font: 'Barlow', Inter, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-display: 'Barlow Semi Condensed', 'Barlow', Inter, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --maxw: 1160px;
}

/* ----------------------------- Reset / base ----------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 84px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-700);
  background: var(--paper-50);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg, iframe { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* [hidden] must always win over component display rules. */
[hidden] { display: none !important; }

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

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 1000;
  background: var(--ink-900); color: #fff; padding: 12px 18px; border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; }

/* Visually hidden, available to screen readers. */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; border: 0;
}

/* ----------------------------- Typography ----------------------------- */
.display {
  font-family: var(--font-display);
  font-size: clamp(3rem, 9vw, 6.5rem); line-height: 0.98; font-weight: 700;
  letter-spacing: -0.03em; color: var(--ink-900); margin: 0 0 var(--space-6);
  max-width: 15ch;
}
.display__accent { color: var(--ivris-green-600); }
.h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.4vw, 3.1rem); line-height: 1.06; font-weight: 700;
  letter-spacing: -0.02em; color: var(--ink-900); margin: 0; max-width: 22ch;
}
.h2--light { color: #fff; }
.h3 {
  font-size: clamp(1.2rem, 2vw, 1.5rem); line-height: 1.22; font-weight: 600;
  letter-spacing: -0.01em; color: var(--ink-900); margin: 0 0 var(--space-3);
}
.body-lg { font-size: 1.3rem; line-height: 1.55; color: var(--ink-700); margin: 0 0 var(--space-6); max-width: 46ch; }
.small { font-size: .875rem; line-height: 1.5; color: var(--ink-500); }

.eyebrow {
  font-size: .75rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ivris-green-600); margin: 0 0 var(--space-4);
}
.eyebrow--light { color: var(--ivris-green); }

/* ----------------------------- Layout ----------------------------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }
@media (min-width: 768px) { .container { padding-inline: 40px; } }
@media (min-width: 1100px) { .container { padding-inline: 64px; } }

/* Section rhythm: vertical padding tightened ~40% from the original 80/120px so
   sections sit closer together while staying clean and premium. Stays responsive. */
.section { padding-block: 48px; position: relative; }
@media (min-width: 768px) { .section { padding-block: 72px; } }
.section--alt { background: var(--paper); border-block: 1px solid var(--line); }

.lockup { margin-bottom: 28px; max-width: 40ch; }
@media (min-width: 768px) { .lockup { margin-bottom: 40px; } }
.lockup .h2 { margin-top: 0; }

/* ----------------------------- Buttons ----------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 1rem; font-weight: 600; letter-spacing: .01em;
  min-height: 46px; padding: 12px 24px; border-radius: var(--radius-md);
  border: 1px solid transparent; transition: transform var(--dur-fast) var(--ease-out),
    background-color var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out),
    box-shadow var(--dur-fast) var(--ease-out);
  text-align: center; white-space: nowrap;
}
.btn--lg { min-height: 56px; padding: 16px 32px; font-size: 1.0625rem; }
.btn--block { width: 100%; }

.btn--primary { background: var(--ivris-green); color: #fff; box-shadow: 0 6px 18px rgba(106,173,63,.28); }
.btn--primary:hover { background: var(--ivris-green-600); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(106,173,63,.38); }
.btn--primary:active { transform: translateY(0); }

.btn--outline { background: transparent; color: var(--ink-900); border-color: var(--ink-300); }
.btn--outline:hover { border-color: var(--ink-900); transform: translateY(-1px); box-shadow: var(--shadow-sm); }

.btn--ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.3); }
.btn--ghost-light:hover { border-color: rgba(255,255,255,.7); transform: translateY(-1px); }

/* ============================= STICKY GLASS NAV ============================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background-color var(--dur-base) var(--ease-out), backdrop-filter var(--dur-base) var(--ease-out), border-color var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(248,248,245,.72);
  -webkit-backdrop-filter: saturate(1.6) blur(14px);
  backdrop-filter: saturate(1.6) blur(14px);
  border-bottom: 1px solid var(--line); box-shadow: var(--shadow-sm);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; min-height: 72px; gap: 16px; }

.nav__logo { display: inline-flex; align-items: center; gap: 9px; color: var(--ink-900); font-weight: 700; }

.nav__links { display: none; gap: 30px; }
.nav__links a { color: var(--ink-700); font-weight: 500; font-size: .9375rem; position: relative; padding: 4px 0; }
.nav__links a:hover { color: var(--ivris-green-600); }
.nav__links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px;
  background: var(--ivris-green); transform: scaleX(0); transform-origin: left;
  transition: transform var(--dur-base) var(--ease-out);
}
.nav__links a:hover::after { transform: scaleX(1); }

.nav__actions { display: flex; align-items: center; gap: 12px; }
.nav__cta { display: none; }

.nav__hamburger {
  display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; background: transparent; border: none; padding: 10px;
}
.nav__hamburger span { display: block; height: 2px; background: var(--ink-900); border-radius: 2px; transition: transform var(--dur-base) var(--ease-out), opacity var(--dur-base); }
.nav__hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav__hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 12px 24px 20px; display: flex; flex-direction: column; gap: 4px;
}
.nav__mobile > a:not(.btn) { padding: 14px 4px; font-weight: 500; color: var(--ink-700); border-bottom: 1px solid var(--line); }
.nav__mobile-cta { margin-top: 12px; }

@media (min-width: 980px) {
  .nav__links { display: flex; }
  .nav__cta { display: inline-flex; }
  .nav__hamburger { display: none; }
  .nav__mobile { display: none !important; }
}

/* ============================= 1) HERO ============================= */
.hero {
  position: relative; overflow: hidden;
  /* Top stays generous (clears the fixed nav); bottom buffer tightened ~40% to
     match the closer section rhythm. */
  padding-top: clamp(140px, 22vh, 220px); padding-bottom: clamp(40px, 8vh, 88px);
}

/* Soft green gradient-mesh glow behind the headline */
.hero__glow {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(48% 55% at 14% 16%, rgba(106,173,63,.22) 0%, rgba(106,173,63,0) 70%),
    radial-gradient(46% 50% at 92% 0%, rgba(106,173,63,.14) 0%, rgba(106,173,63,0) 70%),
    radial-gradient(60% 60% at 78% 96%, rgba(106,173,63,.10) 0%, rgba(106,173,63,0) 70%);
}
@media (prefers-reduced-motion: no-preference) {
  .hero__glow { animation: meshDrift 18s ease-in-out infinite alternate; }
}
@keyframes meshDrift { from { transform: translate3d(-1.5%, -1%, 0) scale(1); } to { transform: translate3d(2%, 1.5%, 0) scale(1.06); } }

/* Faint grain to kill the flat "template" look */
.hero__grain {
  position: absolute; inset: 0; pointer-events: none; z-index: 0; opacity: .045; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero__inner { position: relative; z-index: 1; }
.hero__sub { margin-top: var(--space-4); margin-bottom: 0; color: var(--ink-700); }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: var(--space-8); }

/* Price line under the hero CTA — shows the $250 anchor + what it replaces. */
.hero__price {
  margin: var(--space-6) 0 0; font-size: 1.0625rem; color: var(--ink-700); font-weight: 600;
  display: flex; align-items: baseline; flex-wrap: wrap; gap: 6px;
}
.hero__price-amount {
  font-family: var(--font-display); font-weight: 700; font-size: 1.6rem;
  color: var(--ivris-green-600); letter-spacing: -.01em; line-height: 1;
}
.hero__price-strike { color: var(--ink-500); font-weight: 500; font-size: .95rem; }

.hero__chips { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; padding: 0; margin: var(--space-8) 0 0; }
.hero__chips li {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .875rem; font-weight: 600; color: var(--ink-700);
  padding: 8px 16px; border-radius: 999px; background: rgba(255,255,255,.65);
  border: 1px solid var(--line);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
}
.hero__chips li::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--ivris-green); flex: none;
}

/* ============================= 2) LIVE DEMO ============================= */
.demo-section { padding-block: 48px; position: relative; }
@media (min-width: 768px) { .demo-section { padding-block: 66px; } }
.demo-head { margin-bottom: var(--space-8); }
.demo-head .h2 { margin-top: var(--space-2); }

.demo-stage {
  position: relative; background: var(--ink-band); border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg); overflow: hidden; aspect-ratio: 16 / 9;
  border: 1px solid rgba(255,255,255,.06);
}
.demo-stage__frame { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; opacity: 0; transition: opacity var(--dur-slow) var(--ease-out); }
.demo-stage__frame.is-loaded { opacity: 1; }

.demo-stage__poster {
  position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 18px;
  background: radial-gradient(120% 100% at 50% 0%, #23261f 0%, #14160f 60%, #0E0F0D 100%);
  transition: opacity var(--dur-slow) var(--ease-out); z-index: 2;
}
.demo-stage__poster.is-hidden { opacity: 0; pointer-events: none; visibility: hidden; }
.demo-stage__loading { color: var(--ink-300); font-size: .875rem; margin: 0; }
.demo-stage__spinner {
  width: 42px; height: 42px; border-radius: 50%;
  border: 3px solid rgba(106,173,63,.25); border-top-color: var(--ivris-green);
  animation: spin 900ms linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.demo-stage__ar-pill {
  display: none; position: absolute; left: 50%; bottom: 16px; transform: translateX(-50%); z-index: 3;
  align-items: center; gap: 8px; background: var(--ivris-green); color: #fff;
  font-weight: 600; font-size: .9375rem; padding: 12px 22px; border-radius: 999px;
  box-shadow: var(--shadow-md); min-height: 46px;
}
.demo-stage__ar-pill.is-active { display: inline-flex; }
.demo-stage__ar-pill.pulse { animation: pulse 1.4s var(--ease-out) 1; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(106,173,63,.55); }
  70% { box-shadow: 0 0 0 16px rgba(106,173,63,0); }
  100% { box-shadow: 0 0 0 0 rgba(106,173,63,0); }
}

.demo-stage__fallback {
  color: var(--ivris-green); font-weight: 600; text-decoration: underline; text-underline-offset: 3px;
}
.demo-stage__fallback:hover { color: #fff; }

/* Demo footer row: interaction hint */
.demo-foot {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 18px 24px; margin-top: var(--space-6);
}
.demo-foot__hint { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin: 0; color: var(--ink-500); }

@media (max-width: 979px) {
  .demo-stage { aspect-ratio: 3 / 4; }
  .demo-foot { justify-content: center; }
  .demo-foot__hint { justify-content: center; }
}

/* ============================= 3) HOW IT WORKS — steps ============================= */
.steps { display: grid; gap: 20px; grid-template-columns: 1fr; counter-reset: step; }
@media (min-width: 720px) { .steps { grid-template-columns: repeat(3, 1fr); gap: 24px; } }

.step {
  position: relative; padding: 32px 28px;
  border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--paper-50);
  transition: transform var(--dur-base) var(--ease-out), border-color var(--dur-base), box-shadow var(--dur-base);
}
.step:hover { transform: translateY(-3px); border-color: var(--ivris-green-200); box-shadow: var(--shadow-md); }
.step__num {
  display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px;
  border-radius: 999px; background: var(--ivris-green); color: #fff;
  font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; margin-bottom: var(--space-6);
  box-shadow: 0 6px 16px rgba(106,173,63,.3);
}
.step__h { font-size: 1.2rem; font-weight: 600; color: var(--ink-900); margin: 0 0 var(--space-2); letter-spacing: -.01em; }
.step__p { margin: 0; }

/* Caption under the before/after slider. */
.bento__caption { text-align: center; margin-top: var(--space-8); }

/* ============================= 5) BEFORE / AFTER ============================= */
.ba {
  position: relative; aspect-ratio: 16 / 9; border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,.06); user-select: none; touch-action: pan-y;
  max-width: 980px; margin-inline: auto; background: #0E0F0D;
  /* container-query context so the BEFORE image can be sized to the WHOLE
     slider (100cqw/100cqh) and stay fixed while its clipping wrapper width changes. */
  container-type: size;
}
.ba__img { position: absolute; inset: 0; }
.ba__img svg, .ba__img img { width: 100%; height: 100%; }
.ba__img img { object-fit: cover; display: block; }
.ba__img--before { width: 50%; border-right: 2px solid var(--ivris-green); overflow: hidden; }
.ba__img--before svg { width: 200%; }   /* keep image fixed while clip changes */
/* Real photo case: pin the BEFORE image to the full slider size (not the
   clipping wrapper) so only the reveal edge moves as JS sets the wrapper width. */
.ba__img--before img { width: 100cqw; height: 100cqh; max-width: none; }
.ba__tag {
  position: absolute; top: 14px; font-size: .75rem; font-weight: 600; letter-spacing: .04em;
  text-transform: uppercase; padding: 5px 12px; border-radius: 999px; color: #fff; -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
}
.ba__tag--before { left: 14px; background: rgba(14,15,13,.6); }
.ba__tag--after { right: 14px; background: rgba(106,173,63,.85); }

.ba__handle {
  position: absolute; top: 0; bottom: 0; left: 50%; width: 2px; background: var(--ivris-green);
  transform: translateX(-50%); pointer-events: none;
}
.ba__hint {
  position: absolute; left: 50%; bottom: 14px; transform: translateX(-50%); pointer-events: none;
  font-size: .75rem; font-weight: 600; letter-spacing: .04em; color: #fff;
  padding: 5px 12px; border-radius: 999px; background: rgba(14,15,13,.6);
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
}
.ba__handle-grip {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 44px; height: 44px; border-radius: 50%; background: var(--ivris-green);
  display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-md);
}
.ba__range {
  position: absolute; inset: 0; width: 100%; height: 100%; margin: 0; opacity: 0; cursor: ew-resize;
}
.ba__range:focus-visible + .ba__handle .ba__handle-grip,
.ba__range:focus-visible ~ .ba__handle .ba__handle-grip { outline: 3px solid #fff; outline-offset: 2px; }

/* ============================= 6) PROOF BAND (dark) ============================= */
.roi { background: var(--ink-band); color: var(--ink-300); overflow: hidden; }
.roi__glow {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(50% 60% at 82% 14%, rgba(106,173,63,.22) 0%, rgba(106,173,63,0) 70%),
    radial-gradient(46% 50% at 10% 90%, rgba(106,173,63,.12) 0%, rgba(106,173,63,0) 70%);
}
.roi .container { position: relative; z-index: 1; }
.roi .lockup { max-width: 56ch; }
.roi__intro { color: var(--ink-300); margin: var(--space-6) 0 0; max-width: 52ch; }
.roi__intro strong { color: #fff; }
.roi__foot { color: var(--ink-500); margin: var(--space-12) 0 0; max-width: 70ch; }

.stats { display: grid; gap: 28px; }
@media (min-width: 760px) { .stats { grid-template-columns: repeat(3, 1fr); gap: 48px; } }
.stat { border-top: 2px solid rgba(255,255,255,.14); padding-top: var(--space-6); }
.stat__num { font-family: var(--font-display); font-size: clamp(2.6rem, 5.4vw, 3.6rem); line-height: 1.0; font-weight: 700; letter-spacing: -.02em; color: #fff; margin: 0 0 var(--space-4); }
.stat__label { font-size: 1.0625rem; color: var(--ink-300); margin: 0 0 var(--space-3); max-width: 30ch; }
.stat__cite { color: var(--ink-500); margin: 0; }

/* ============================= 7) TESTIMONIALS ============================= */
.testimonials { background: var(--paper-50); }
.testimonial-grid { display: grid; gap: 20px; }
@media (min-width: 820px) { .testimonial-grid { grid-template-columns: repeat(3, 1fr); } }

.testimonial {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 32px; margin: 0; display: flex; flex-direction: column; gap: var(--space-6);
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base), border-color var(--dur-base);
}
.testimonial:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--ivris-green-200); }
.testimonial__quote { font-size: 1.2rem; line-height: 1.45; color: var(--ink-900); margin: 0; font-weight: 500; letter-spacing: -.01em; }
.testimonial__by { display: flex; align-items: center; gap: 14px; margin-top: auto; }
.testimonial__name { font-weight: 600; color: var(--ink-900); }
.testimonial__role { color: var(--ink-500); }

/* ============================= 7b) BOOK A DEMO (Calendly inline) ============================= */
.book { background: var(--paper); border-top: 1px solid var(--line); }
.book .lockup { margin-inline: auto; text-align: center; max-width: 32ch; }
.book__widget {
  max-width: 920px; margin-inline: auto;
  background: var(--paper-50); border: 1px solid var(--line); border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md); padding: 10px; overflow: hidden;
}
/* Calendly paints its own white canvas; round its corners to match the card. */
.book__widget .calendly-inline-widget { border-radius: var(--radius-lg); overflow: hidden; }
.book__fallback { text-align: center; margin: 12px 0 2px; color: var(--ink-500); }
.book__open { color: var(--ivris-green-600); font-weight: 600; }
.book__open:hover { color: var(--ivris-green); }

/* ============================= 8) FINAL CTA (dark) ============================= */
.final { background: var(--ink-band); color: var(--ink-300); overflow: hidden; }
.final::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(50% 70% at 50% 0%, rgba(106,173,63,.22) 0%, rgba(106,173,63,0) 70%);
}
.final__inner { text-align: center; max-width: 680px; margin-inline: auto; position: relative; z-index: 1; }
.final__inner .h2 { margin-inline: auto; }
.final__sub { margin-inline: auto; margin-top: var(--space-4); color: var(--ink-300); }
.final__ctas { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-block: var(--space-8) var(--space-4); }
.final__trust { color: var(--ink-500); margin: 0; }
.final__buy { color: var(--ivris-green); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; cursor: pointer; }
.final__buy:hover { color: #fff; }

/* ============================= FOOTER ============================= */
.footer { background: #090A08; color: var(--ink-300); padding-block: 56px 32px; }
.footer__grid { display: grid; gap: 40px; }
@media (min-width: 760px) { .footer__grid { grid-template-columns: 1.4fr 1.6fr; align-items: start; } }
.footer__logo { display: inline-flex; align-items: center; gap: 9px; color: #fff; font-weight: 700; }
.footer__tag { color: var(--ink-300); margin: 16px 0 0; max-width: 32ch; }
.footer__cols { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
@media (min-width: 520px) { .footer__cols { grid-template-columns: repeat(3, 1fr); } }
.footer__col h4 { color: #fff; font-size: .875rem; letter-spacing: .04em; text-transform: uppercase; margin: 0 0 14px; }
.footer__col a { display: block; color: var(--ink-300); padding: 6px 0; cursor: pointer; }
.footer__col a:hover { color: var(--ivris-green); }
.footer__micro { color: var(--ink-500); margin-top: 40px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.08); }

/* ----------------------------- Reveal-on-scroll ----------------------------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out); will-change: opacity, transform; }
.reveal.is-visible { opacity: 1; transform: none; will-change: auto; }

body.no-scroll { overflow: hidden; }

/* ----------------------------- Reduced motion ----------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
  .btn:hover, .step:hover, .testimonial:hover { transform: none; }
  .hero__glow { animation: none; }
}
