/* =============================================================
   1. Tokens
   ============================================================= */
@property --mesh-angle { syntax: "<angle>"; inherits: false; initial-value: 0deg; }
@property --mesh-x { syntax: "<percentage>"; inherits: false; initial-value: 50%; }
@property --mesh-y { syntax: "<percentage>"; inherits: false; initial-value: 40%; }

:root {
  --bg:        #130d0e;
  --bg-2:      #1b1315;
  --bg-3:      #241a1c;
  --bg-card:   #221819;
  --cream:     #f3ece2;
  --cream-2:   #ddccb8;
  --cream-3:   #93857a;
  --accent:    #7d2331;
  --accent-2:  #591722;
  --accent-bright: #a52f3e;
  --gold:      #c9a463;
  --gold-soft: #e6cd9a;
  --line:      rgba(243, 236, 226, 0.12);
  --line-soft: rgba(243, 236, 226, 0.07);

  --serif: "Fraunces", "Georgia", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --mono: "JetBrains Mono", "IBM Plex Mono", monospace;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in: cubic-bezier(0.7, 0, 0.84, 0);
  --ease-soft: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  --container: 1220px;
  --nav-h: 76px;
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  tab-size: 2;
  scroll-behavior: smooth;
  background: var(--bg);
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--cream-2);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
ul { list-style: none; padding: 0; }
h1, h2, h3, h4 { text-wrap: balance; line-height: 1.08; letter-spacing: -0.01em; color: var(--cream); font-family: var(--serif); font-weight: 500; }
::selection { background: var(--accent-bright); color: var(--cream); }

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

.skip-link {
  position: fixed; top: -100px; left: 1rem;
  padding: .7rem 1.1rem; background: var(--cream); color: var(--bg);
  z-index: 9999; border-radius: 8px; font-weight: 600; font-size: .9rem;
}
.skip-link:focus { top: 1rem; }

/* =============================================================
   3. Utilities
   ============================================================= */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 1.5rem; }
.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--mono); font-size: .72rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold-soft);
}
.eyebrow::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--accent-bright); box-shadow: 0 0 0 3px rgba(165,47,62,.25); }
.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;
}
.section { position: relative; padding-block: clamp(4rem, 9vw, 7.5rem); }
.section-head { max-width: 640px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head.is-center { margin-inline: auto; text-align: center; }
.section-title { font-size: clamp(1.9rem, 3.4vw, 2.7rem); font-style: italic; margin-top: .6rem; }
.section-lede { margin-top: 1rem; font-size: 1.05rem; color: var(--cream-3); max-width: 52ch; }
.section-head.is-center .section-lede { margin-inline: auto; }

hr.rule { border: 0; border-top: 1px solid var(--line); margin: 0; }

/* =============================================================
   4. Typography
   ============================================================= */
em, i { font-style: italic; color: var(--gold-soft); }
.italic-accent { font-style: italic; color: var(--gold-soft); }

[data-split] .split-word { display: inline-block; will-change: transform, opacity; }
.reveal[data-split], [data-split].reveal { opacity: 1; transform: none; }

/* =============================================================
   5. Components
   ============================================================= */

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  padding: .95rem 1.7rem; border-radius: 999px;
  font-weight: 600; font-size: .95rem; letter-spacing: .01em;
  transition: transform .45s var(--ease-soft), box-shadow .45s var(--ease-soft), background-color .3s var(--ease-out), color .3s var(--ease-out);
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(160deg, var(--accent-bright), var(--accent-2));
  color: var(--cream);
  box-shadow: 0 10px 30px -8px rgba(165,47,62,.55), 0 2px 6px rgba(0,0,0,.35);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 20px 45px -10px rgba(165,47,62,.65), 0 6px 16px rgba(0,0,0,.4); }
.btn-primary:active { transform: translateY(-1px); transition-duration: .12s; }
.btn-ghost {
  background: transparent; color: var(--cream); border: 1px solid var(--line);
}
.btn-ghost:hover { background: rgba(243,236,226,.06); border-color: rgba(243,236,226,.28); transform: translateY(-2px); }
.btn-block { width: 100%; }
.btn[disabled] { opacity: .6; pointer-events: none; }

/* Cards */
.card {
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: 20px;
  padding: 1.9rem;
}
.has-tilt {
  --rx: 0deg; --ry: 0deg;
  transform: perspective(900px) rotateX(var(--rx)) rotateY(var(--ry));
  transform-style: preserve-3d;
  transition: transform .55s var(--ease-soft), box-shadow .4s var(--ease-soft), border-color .4s;
}
.has-tilt:hover {
  transition-duration: .15s;
  border-color: rgba(201,164,99,.35);
  box-shadow: 0 40px 70px -30px rgba(0,0,0,.6), 0 0 0 1px rgba(201,164,99,.12);
}

/* Nav */
.nav {
  position: fixed; inset-inline: 0; top: 0; z-index: 100;
  height: var(--nav-h);
  transition: background-color .4s var(--ease-out), backdrop-filter .4s var(--ease-out), border-color .4s var(--ease-out);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(19,13,14,.82);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-color: var(--line);
}
.nav-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.nav-brand { display: flex; align-items: center; gap: .65rem; font-family: var(--serif); font-size: 1.15rem; color: var(--cream); }
.nav-brand img { width: 34px; height: 34px; }
.nav-links { display: none; align-items: center; gap: 2rem; }
.nav-link { position: relative; font-size: .92rem; color: var(--cream-2); padding: .25rem 0; }
.nav-link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -3px; height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: right; transition: transform .45s var(--ease-out);
}
.nav-link:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-actions { display: flex; align-items: center; gap: .9rem; }
.nav-cta { padding: .7rem 1.3rem; font-size: .88rem; }
.nav-toggle {
  display: grid; place-items: center; width: 42px; height: 42px; border-radius: 10px;
  border: 1px solid var(--line);
}
.nav-toggle span, .nav-toggle::before, .nav-toggle::after { content: ""; }
.nav-burger { position: relative; width: 18px; height: 12px; }
.nav-burger span { position: absolute; left: 0; right: 0; height: 1.5px; background: var(--cream); transition: transform .3s var(--ease-out), opacity .3s; }
.nav-burger span:nth-child(1) { top: 0; }
.nav-burger span:nth-child(2) { top: 50%; margin-top: -.75px; }
.nav-burger span:nth-child(3) { bottom: 0; }
.nav-open .nav-burger span:nth-child(1) { transform: translateY(5.25px) rotate(45deg); }
.nav-open .nav-burger span:nth-child(2) { opacity: 0; }
.nav-open .nav-burger span:nth-child(3) { transform: translateY(-5.25px) rotate(-45deg); }

.nav-mobile {
  position: fixed; inset: 0; z-index: 90;
  background: var(--bg); color: var(--cream);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2rem;
  clip-path: inset(0 0 100% 0);
  transition: clip-path .6s var(--ease-soft);
}
.nav-mobile[aria-hidden="false"] { clip-path: inset(0); }
.nav-mobile a { font-family: var(--serif); font-style: italic; font-size: 1.7rem; }
.nav-mobile .btn { margin-top: 1rem; }


/* Forms */
.field { position: relative; margin-bottom: 1.1rem; }
.field label {
  display: block; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--cream-3); margin-bottom: .5rem; font-family: var(--mono);
}
.field input, .field textarea {
  width: 100%; padding: .85rem 1rem; border-radius: 12px;
  border: 1px solid var(--line); background: rgba(243,236,226,.03); color: var(--cream);
  font-family: var(--sans); font-size: .96rem;
  transition: border-color .25s, background-color .25s;
}
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--gold); background: rgba(243,236,226,.06);
}
.field textarea { min-height: 120px; resize: vertical; }

/* =============================================================
   6. Sections
   ============================================================= */

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center;
  padding-top: calc(var(--nav-h) + 2rem);
  padding-bottom: 3rem;
  overflow: clip;
  isolation: isolate;
  --mesh-x: 62%; --mesh-y: 32%;
}
.hero::before {
  content: ""; position: absolute; inset: -15%; z-index: -2;
  background:
    radial-gradient(38% 42% at var(--mesh-x) var(--mesh-y), rgba(165,47,62,.55), transparent 65%),
    conic-gradient(from var(--mesh-angle), rgba(201,164,99,.16), rgba(89,23,34,.28), rgba(165,47,62,.22), rgba(201,164,99,.16));
  filter: blur(90px) saturate(120%);
  opacity: .85;
  animation: meshShift 26s linear infinite;
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(120% 90% at 50% 0%, transparent 30%, var(--bg) 92%);
}
@keyframes meshShift {
  0%   { --mesh-angle: 0deg; }
  100% { --mesh-angle: 360deg; }
}
.hero-grid {
  display: grid; gap: clamp(2.5rem, 6vw, 4rem);
  grid-template-columns: 1fr;
  align-items: center;
}
.hero-content { position: relative; z-index: 2; text-align: center; }
.hero-eyebrow { justify-content: center; margin-bottom: 1.3rem; }
.hero-title {
  font-size: clamp(2.6rem, 7vw, 4.6rem);
  font-style: italic;
  line-height: .98;
  max-width: 16ch;
  margin-inline: auto;
}
.hero-sub {
  margin: 1.5rem auto 0; max-width: 46ch;
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: var(--cream-2);
}
.hero-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; margin-top: 2.2rem; }
.hero-trust {
  margin-top: 2.6rem; display: flex; flex-wrap: wrap; justify-content: center; gap: 1.6rem;
  font-family: var(--mono); font-size: .74rem; letter-spacing: .06em; color: var(--cream-3);
}
.hero-trust span { display: inline-flex; align-items: center; gap: .5rem; }
.hero-trust span::before { content: ""; width: 4px; height: 4px; border-radius: 50%; background: var(--gold); }

.hero-visual { position: relative; z-index: 1; display: flex; justify-content: center; }
.hero-product-card {
  width: min(84vw, 480px);
  background: var(--cream);
  border-radius: 22px;
  padding: 1.4rem;
  box-shadow: 0 50px 80px -20px rgba(0,0,0,.6), 0 15px 30px -10px rgba(0,0,0,.4);
  animation: floatY 7s ease-in-out infinite;
}
.hero-product-float { width: 100%; border-radius: 10px; overflow: hidden; }
@keyframes floatY {
  0%, 100% { transform: translateY(0px) rotate(-0.6deg); }
  50% { transform: translateY(-14px) rotate(0.5deg); }
}

/* --- Marquee --- */
.marquee-strip { border-block: 1px solid var(--line); background: var(--bg-2); overflow: hidden; position: relative; }
.marquee-strip::before, .marquee-strip::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 100px; z-index: 2; pointer-events: none;
}
.marquee-strip::before { left: 0; background: linear-gradient(90deg, var(--bg-2), transparent); }
.marquee-strip::after { right: 0; background: linear-gradient(270deg, var(--bg-2), transparent); }
.marquee-track {
  display: inline-flex; align-items: center; gap: 1.3rem; white-space: nowrap;
  padding-block: 1.1rem; will-change: transform;
  font-family: var(--mono); font-size: .78rem; letter-spacing: .1em; color: var(--cream-3);
}
.marquee-track .marquee-dot { color: var(--gold); }

/* --- About --- */
.about-grid {
  display: grid; gap: clamp(2rem, 5vw, 4rem);
  grid-template-columns: 1fr;
  align-items: start;
}
.about-num { font-family: var(--mono); color: var(--gold); font-size: .95rem; letter-spacing: .08em; }
.about-text { font-size: clamp(1.15rem, 2vw, 1.45rem); font-family: var(--serif); font-style: italic; color: var(--cream); line-height: 1.5; margin-top: .8rem; }
.about-note { margin-top: 1.4rem; color: var(--cream-3); max-width: 56ch; }
.about-media { position: relative; border-radius: 22px; overflow: hidden; border: 1px solid var(--line); aspect-ratio: 3/2.1; }
.about-media img { width: 100%; height: 100%; object-fit: cover; }
.about-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(19,13,14,.6));
}

/* --- Feature grid --- */
.feature-grid { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
.feature-card { display: flex; flex-direction: column; gap: .9rem; }
.feature-icon { width: 30px; height: 30px; color: var(--gold); }
.feature-card h3 { font-size: 1.15rem; font-style: normal; }
.feature-card p { color: var(--cream-3); font-size: .95rem; }

/* --- Steps --- */
.steps-layout { display: grid; gap: 2.5rem; grid-template-columns: 1fr; align-items: center; }
.steps-media { border-radius: 20px; overflow: hidden; border: 1px solid var(--line); max-width: 320px; margin-inline: auto; }
.steps-media img { width: 100%; display: block; }
.steps-grid { display: grid; gap: 2.2rem; grid-template-columns: 1fr; }
.step { position: relative; padding-top: 1.4rem; border-top: 1px solid var(--line); }
.step-n { display: block; font-family: var(--mono); color: var(--accent-bright); font-size: 1.6rem; margin-bottom: .6rem; }
.step h3 { font-size: 1.2rem; font-style: normal; margin-bottom: .5rem; }
.step p { color: var(--cream-3); font-size: .95rem; max-width: 40ch; }

/* --- Pricing (choose your set) --- */
.pricing-grid { display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
.pricing-card { position: relative; display: flex; flex-direction: column; }
.pricing-badge {
  position: absolute; top: 1.4rem; right: 1.4rem; z-index: 1;
  background: var(--gold); color: var(--bg); font-family: var(--mono);
  font-size: .68rem; letter-spacing: .08em; text-transform: uppercase;
  padding: .35rem .7rem; border-radius: 999px;
}
.pricing-media { border-radius: 16px; overflow: hidden; border: 1px solid var(--line); aspect-ratio: 4/3; margin-bottom: 1.4rem; background: var(--cream); padding: .9rem; }
.pricing-media img { width: 100%; height: 100%; object-fit: contain; border-radius: 8px; }
.pricing-card h3 { font-size: 1.3rem; font-style: normal; }
.pricing-tagline { color: var(--cream-3); font-size: .92rem; margin-top: .4rem; }
.pricing-price { font-family: var(--serif); font-style: italic; font-size: 2.1rem; color: var(--cream); margin: .8rem 0 1.1rem; }
.pricing-price small { font-family: var(--sans); font-style: normal; font-size: .85rem; color: var(--cream-3); }
.pricing-card .order-list { margin-top: .2rem; }
.pricing-card .btn { margin-top: auto; }
.pricing-guarantee {
  display: flex; align-items: center; justify-content: center; gap: .45rem;
  margin-top: .8rem; font-size: .78rem; color: var(--cream-3); text-align: center;
}
.pricing-guarantee svg { width: 15px; height: 15px; color: var(--gold); flex: none; }

/* --- Without vs. With (pain point) --- */
.compare-section { background: var(--bg-2); border-block: 1px solid var(--line); }
.compare-grid { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
.compare-card { border-radius: 20px; padding: 1.8rem; border: 1px solid var(--line); }
.compare-card.is-without { background: rgba(89,23,34,.14); border-color: rgba(165,47,62,.28); }
.compare-card.is-with { background: rgba(201,164,99,.1); border-color: rgba(201,164,99,.3); }
.compare-label {
  display: block; font-family: var(--mono); font-size: .72rem; letter-spacing: .1em;
  text-transform: uppercase; margin-bottom: 1rem;
}
.compare-card.is-without .compare-label { color: var(--accent-bright); }
.compare-card.is-with .compare-label { color: var(--gold-soft); }
.compare-list { display: flex; flex-direction: column; gap: .8rem; }
.compare-list li { padding-left: 1.4rem; position: relative; color: var(--cream-2); font-size: .95rem; line-height: 1.5; }
.compare-card.is-without .compare-list li::before { content: "✕"; position: absolute; left: 0; color: var(--accent-bright); font-size: .8rem; }
.compare-card.is-with .compare-list li::before { content: "✓"; position: absolute; left: 0; color: var(--gold); font-size: .8rem; }

/* --- Testimonials (verified buyers) --- */
.testimonial-grid { display: grid; gap: 1.25rem; grid-template-columns: 1fr; max-width: 820px; margin-inline: auto; }
.testimonial-card { text-align: center; }
.testimonial-stars { color: var(--gold); letter-spacing: .15em; font-size: 1rem; margin-bottom: 1rem; }
.testimonial-card blockquote {
  font-family: var(--serif); font-style: italic; font-size: 1.3rem; color: var(--cream);
  line-height: 1.4; margin: 0 0 1.1rem;
}
.testimonial-card figcaption { font-size: .85rem; color: var(--cream-3); }
.testimonial-card figcaption span { display: block; font-family: var(--mono); font-size: .72rem; letter-spacing: .04em; margin-top: .25rem; color: var(--cream-3); opacity: .8; }

/* --- Product showcase (specs) --- */
.showcase {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.showcase-grid { display: grid; gap: clamp(2rem, 5vw, 3.5rem); grid-template-columns: 1fr; align-items: center; }
.showcase-media { position: relative; border-radius: 24px; overflow: hidden; border: 1px solid var(--line); }
.showcase-media img { width: 100%; display: block; }
.specs-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.6rem 1rem; margin-top: 2rem; }
.spec { border-left: 1px solid var(--line); padding-left: 1rem; }
.spec-value { display: block; font-family: var(--mono); font-size: clamp(1.6rem, 3vw, 2.1rem); color: var(--cream); }
.spec-label { display: block; margin-top: .3rem; font-size: .75rem; letter-spacing: .08em; text-transform: uppercase; color: var(--cream-3); }

/* --- FAQ (native <details>/<summary> — works with JS disabled) --- */
.faq-list { max-width: 780px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.35rem 0; text-align: left; font-size: 1.02rem; color: var(--cream);
  cursor: pointer; list-style: none;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-plus { position: relative; width: 18px; height: 18px; flex: none; }
.faq-plus::before, .faq-plus::after {
  content: ""; position: absolute; background: var(--gold);
  transition: transform .35s var(--ease-soft), opacity .35s;
}
.faq-plus::before { top: 50%; left: 0; width: 100%; height: 1.5px; margin-top: -.75px; }
.faq-plus::after { left: 50%; top: 0; height: 100%; width: 1.5px; margin-left: -.75px; }
.faq-item[open] .faq-plus::after { transform: rotate(90deg); opacity: 0; }
.faq-a p { padding-bottom: 1.4rem; color: var(--cream-3); max-width: 62ch; }

/* --- Order / contact --- */
.order {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
}
.order-grid { display: grid; gap: 2.5rem; grid-template-columns: 1fr; }
.order-list { display: flex; flex-direction: column; gap: .6rem; margin-bottom: 1.6rem; color: var(--cream-2); font-size: .93rem; }
.order-list li { display: flex; gap: .6rem; }
.order-list li::before { content: "—"; color: var(--gold); }
.order-media { border-radius: 18px; overflow: hidden; border: 1px solid var(--line); margin-bottom: 1.6rem; aspect-ratio: 16/10; }
.order-media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 30%; }

.cta-form { position: relative; transition: opacity .5s var(--ease-out), transform .5s var(--ease-soft); }
.cta-form.is-sent { opacity: 0; transform: translateY(-10px); pointer-events: none; }
.cta-form.is-sending .cta-submit-label { opacity: 0; }
.cta-submit { position: relative; }
.cta-submit-spinner {
  position: absolute; inset: 0; display: none; align-items: center; justify-content: center;
}
.cta-form.is-sending .cta-submit-spinner { display: flex; }
.cta-submit-spinner::after {
  content: ""; width: 16px; height: 16px; border-radius: 50%;
  border: 1.5px solid rgba(243,236,226,.3); border-top-color: var(--cream);
  animation: spin .9s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.cta-success {
  margin-top: 1rem; padding: 1rem 1.2rem; border-radius: 14px;
  background: rgba(201,164,99,.1); border: 1px solid rgba(201,164,99,.3);
  opacity: 0; max-height: 0; overflow: hidden;
  transition: opacity .5s var(--ease-out), max-height .5s var(--ease-soft);
}
.cta-success.is-visible { opacity: 1; max-height: 200px; }
.cta-success h4 { font-size: 1rem; font-style: normal; color: var(--gold-soft); }
.cta-success p { font-size: .88rem; color: var(--cream-3); margin-top: .3rem; }

/* --- Footer --- */
.footer { padding-block: 3.5rem 2.5rem; border-top: 1px solid var(--line); }
.footer-top { display: flex; flex-wrap: wrap; gap: 2.5rem; justify-content: space-between; }
.footer-brand { display: flex; align-items: center; gap: .7rem; font-family: var(--serif); font-size: 1.2rem; color: var(--cream); }
.footer-brand img { width: 32px; height: 32px; }
.footer-tagline { margin-top: .8rem; color: var(--cream-3); max-width: 32ch; font-size: .92rem; }
.footer-cols { display: flex; flex-wrap: wrap; gap: 3rem; }
.footer-col h5 { font-family: var(--mono); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--cream-3); margin-bottom: .9rem; }
.footer-col a, .footer-col span { display: block; font-size: .92rem; color: var(--cream-2); margin-bottom: .55rem; }
.footer-col a:hover { color: var(--gold-soft); }
.footer-bottom {
  margin-top: 3rem; padding-top: 1.6rem; border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem;
  font-size: .8rem; color: var(--cream-3);
}

/* =============================================================
   7. Effects
   ============================================================= */
[data-reveal] {
  opacity: 0; transform: translateY(32px);
  transition: opacity .8s var(--ease-soft), transform .8s var(--ease-soft);
}
[data-reveal].is-revealed { opacity: 1; transform: none; }

/* =============================================================
   8. Responsive
   ============================================================= */
@media (min-width: 540px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(3, 1fr); }
  .specs-row { grid-template-columns: repeat(3, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .compare-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 720px) {
  .hero-title { max-width: 20ch; }
  .footer-top { flex-wrap: nowrap; }
}

@media (min-width: 960px) {
  .nav-links { display: flex; }
  .nav-toggle { display: none; }

  .hero-grid { grid-template-columns: 1.05fr .95fr; text-align: left; }
  .hero-content { text-align: left; }
  .hero-eyebrow { justify-content: flex-start; }
  .hero-title, .hero-sub { margin-inline: 0; }
  .hero-actions { justify-content: flex-start; }
  .hero-trust { justify-content: flex-start; }

  .about-grid { grid-template-columns: .8fr 1.2fr; }
  .steps-layout { grid-template-columns: 1.3fr .7fr; }
  .steps-media { max-width: none; }
  .showcase-grid { grid-template-columns: 1fr 1fr; }
  .specs-row { grid-template-columns: repeat(5, 1fr); }
  .order-grid { grid-template-columns: .85fr 1.15fr; }
}

@media (min-width: 1280px) {
  .feature-grid { grid-template-columns: repeat(3, 1fr); }
}

/* =============================================================
   9. Reduced motion — only intrusive effects
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  .hero-product-card { animation: none; }
  .hero::before { animation-duration: 90s; }
}
