/* =====================================================================
   ZIVORA — Premium Scrollytelling Design System
   Palette: obsidian black · molten copper/amber · therapeutic red · gold
   ===================================================================== */

:root {
  /* Core surfaces */
  --black:      #060606;
  --obsidian:   #0b0b0d;
  --ink:        #111114;
  --panel:      #16161a;
  --line:       rgba(255, 255, 255, 0.08);
  --line-strong:rgba(255, 255, 255, 0.16);

  /* Brand light */
  --copper:     #ff7a2f;
  --amber:      #ffab5e;
  --ember:      #ff5a1f;
  --red:        #d8341c;
  --deep-red:   #8f1d10;
  --gold:       #e6bd7a;
  --gold-2:     #c9922f;

  /* Text */
  --white:      #f6f4f1;
  --fog:        #b9b6b1;
  --mute:       #86847f;
  --faint:      #55534f;

  /* Effects */
  --glow: 0 0 60px rgba(255, 122, 47, 0.35);
  --glow-soft: 0 0 120px rgba(255, 122, 47, 0.18);

  /* Type */
  --sans: "Space Grotesk", "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --body: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --brand-font: "Cairo", "Space Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Rhythm */
  --maxw: 1240px;
  --pad: clamp(20px, 5vw, 80px);
  --radius: 22px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
  letter-spacing: 0.01em;
}

/* Ambient warm grain / vignette layer */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background:
    radial-gradient(120% 80% at 50% -10%, rgba(255, 122, 47, 0.10), transparent 60%),
    radial-gradient(100% 100% at 50% 120%, rgba(143, 29, 16, 0.12), transparent 60%);
  mix-blend-mode: screen;
}

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

/* accessibility helpers (no visual change until focused) */
.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;
}
.skip-link {
  position: fixed; top: -60px; left: 12px; z-index: 999;
  background: var(--copper); color: #060606; font-weight: 700;
  padding: 10px 18px; border-radius: 10px; text-decoration: none;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 12px; outline: 2px solid #fff; outline-offset: 2px; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--copper); color: #1a0d04; }

/* Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--copper), var(--deep-red)); border-radius: 20px; }

/* ------------------------------------------------------------------ */
/*  Layout primitives                                                  */
/* ------------------------------------------------------------------ */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }
.section { position: relative; padding-block: clamp(90px, 14vh, 180px); z-index: 2; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 26px;
}
.eyebrow::before {
  content: ""; width: 26px; height: 1px;
  background: linear-gradient(90deg, var(--copper), transparent);
}

h1, h2, h3 { font-family: var(--sans); font-weight: 600; line-height: 1.02; letter-spacing: -0.02em; }
.display {
  font-size: clamp(2.6rem, 7vw, 6rem);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.03em;
}
.h2 { font-size: clamp(2rem, 4.6vw, 3.7rem); }
.h3 { font-size: clamp(1.4rem, 2.4vw, 2rem); }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.35rem); color: var(--fog); max-width: 56ch; font-family: var(--body); font-weight: 400; }
.small { font-size: 0.82rem; color: var(--mute); }
.grad-text {
  background: linear-gradient(100deg, var(--amber) 0%, var(--copper) 40%, var(--red) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ------------------------------------------------------------------ */
/*  Buttons                                                            */
/* ------------------------------------------------------------------ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans); font-weight: 600; font-size: 0.95rem;
  padding: 15px 30px; border-radius: 100px;
  border: 1px solid transparent; cursor: pointer;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), background .4s var(--ease);
  will-change: transform;
}
.btn-primary {
  color: #1c0e03;
  background: linear-gradient(100deg, var(--amber), var(--copper) 55%, var(--ember));
  box-shadow: 0 10px 40px rgba(255, 90, 31, 0.35);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 50px rgba(255, 90, 31, 0.5); }
.btn-ghost { color: var(--white); border-color: var(--line-strong); background: rgba(255,255,255,0.02); }
.btn-ghost:hover { border-color: var(--copper); transform: translateY(-3px); box-shadow: var(--glow-soft); }
.btn .arw { transition: transform .35s var(--ease); }
.btn:hover .arw { transform: translateX(4px); }

/* ------------------------------------------------------------------ */
/*  Navigation                                                         */
/* ------------------------------------------------------------------ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px var(--pad);
  transition: padding .4s var(--ease), background .4s var(--ease), backdrop-filter .4s var(--ease), border-color .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  padding: 13px var(--pad);
  background: rgba(8, 8, 9, 0.72);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-bottom: 1px solid var(--line);
}
.brand {
  font-family: var(--brand-font); font-weight: 700; font-size: 1.35rem;
  letter-spacing: 0.22em; color: var(--white);
  display: flex; align-items: center; gap: 12px;
}
.brand .logo-mark {
  height: 24px; width: auto; display: block;
}
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a {
  font-size: 0.9rem; color: var(--fog); font-weight: 500;
  position: relative; transition: color .3s;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 1px; width: 0;
  background: var(--copper); transition: width .35s var(--ease);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; flex-direction: column; gap: 5px; }
.nav-toggle span { width: 26px; height: 2px; background: var(--white); transition: .3s; border-radius: 2px; }

@media (max-width: 900px) {
  .nav-links {
    position: fixed; inset: 0 0 0 auto; width: min(80vw, 340px);
    flex-direction: column; align-items: flex-start; justify-content: center;
    gap: 26px; padding: 40px;
    background: rgba(10,10,12,0.96); backdrop-filter: blur(24px);
    transform: translateX(100%); transition: transform .5s var(--ease);
    border-left: 1px solid var(--line);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 1.3rem; }
  .nav-toggle { display: flex; z-index: 101; }
  .nav-toggle.open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2){ opacity: 0; }
  .nav-toggle.open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }
}

/* ------------------------------------------------------------------ */
/*  HERO — clean two-column product hero (no full-bleed motion bg)     */
/* ------------------------------------------------------------------ */
.hero {
  position: relative; padding-block: clamp(120px, 18vh, 190px) 70px;
  overflow: hidden; z-index: 2;
}
.hero-bg {
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(70% 55% at 82% 20%, rgba(255, 122, 47, 0.16), transparent 60%),
    radial-gradient(55% 45% at 10% 85%, rgba(143, 29, 16, 0.18), transparent 60%),
    var(--black);
}
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(30px, 5vw, 70px);
  align-items: center;
}
.hero-content { position: relative; z-index: 2; max-width: 640px; }
.hero h1 { margin-bottom: 26px; }
.hero .lead { margin-bottom: 36px; font-size: clamp(1.05rem, 1.5vw, 1.3rem); }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.hero-media { aspect-ratio: 4/3.1; box-shadow: 0 40px 100px rgba(0,0,0,0.65); }
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-content { max-width: 100%; order: 1; }
  .hero-media { order: 2; aspect-ratio: 4/3.4; }
}

.scroll-cue {
  position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
  z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-family: var(--sans); font-size: 11px; letter-spacing: 0.24em; color: var(--mute); text-transform: uppercase;
}
.scroll-cue .track { width: 1px; height: 40px; background: var(--line-strong); position: relative; overflow: hidden; }
.scroll-cue .track::after { content:""; position:absolute; top:-40%; left:0; width:100%; height:40%; background: var(--copper); animation: drop 2.2s var(--ease) infinite; }
@keyframes drop { 0%{top:-40%;} 60%,100%{top:100%;} }
@media (max-width: 900px) { .scroll-cue { display: none; } }

/* ------------------------------------------------------------------ */
/*  Marquee trust bar                                                  */
/* ------------------------------------------------------------------ */
.marquee {
  position: relative; z-index: 2; overflow: hidden;
  border-block: 1px solid var(--line);
  padding-block: 20px; background: rgba(255,255,255,0.015);
}
.marquee-track { display: flex; gap: 60px; width: max-content; animation: scrollx 34s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--sans); font-size: 0.95rem; font-weight: 500;
  color: var(--fog); text-transform: uppercase; letter-spacing: 0.12em; white-space: nowrap;
}
.marquee-item .spark { color: var(--copper); }
@keyframes scrollx { to { transform: translateX(-50%); } }

/* ------------------------------------------------------------------ */
/*  Scroll reveal utility                                              */
/* ------------------------------------------------------------------ */
.rise { opacity: 0; transform: translateY(46px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.rise.in { opacity: 1; transform: none; }
.rise.d1 { transition-delay: .1s; } .rise.d2 { transition-delay: .2s; }
.rise.d3 { transition-delay: .3s; } .rise.d4 { transition-delay: .4s; }

/* ------------------------------------------------------------------ */
/*  Z-pattern feature blocks                                           */
/* ------------------------------------------------------------------ */
.zblock {
  display: grid; grid-template-columns: 1fr 1fr; align-items: center;
  gap: clamp(30px, 6vw, 90px);
}
.zblock.reverse .z-media { order: 2; }
.z-copy .lead { margin-top: 22px; }
.z-media {
  position: relative; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 4/5; box-shadow: 0 40px 90px rgba(0,0,0,0.6);
  border: 1px solid var(--line);
}
.z-media.wide { aspect-ratio: 3/2; }
.z-media img, .z-media video { width: 100%; height: 100%; object-fit: cover; transform: scale(1.05); transition: transform 1.4s var(--ease); }
.zblock:hover .z-media img { transform: scale(1.12); }
.hero-media img, .hero-media video { transform: scale(1); }
.z-media::after {
  content:""; position:absolute; inset:0;
  background: linear-gradient(180deg, transparent 55%, rgba(6,6,6,0.55));
}
.z-media .tag {
  position: absolute; left: 18px; bottom: 18px; z-index: 2;
  font-family: var(--sans); font-size: 12px; letter-spacing: 0.1em;
  padding: 8px 14px; border-radius: 100px; color: var(--white);
  background: rgba(0,0,0,0.4); backdrop-filter: blur(10px); border: 1px solid var(--line-strong);
}
@media (max-width: 860px) {
  .zblock { grid-template-columns: 1fr; gap: 34px; }
  .zblock.reverse .z-media { order: 0; }
}

/* Pillars */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 60px; }
.pillar {
  padding: 32px 28px; border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.01));
  border: 1px solid var(--line); transition: transform .5s var(--ease), border-color .5s;
}
.pillar:hover { transform: translateY(-6px); border-color: rgba(255,122,47,0.4); }
.pillar { position: relative; }
.pillar .no {
  position: absolute; top: 24px; right: 26px; font-family: var(--sans); font-weight: 600;
  font-size: 0.8rem; letter-spacing: 0.1em; color: var(--faint);
}
.pillar .ico {
  width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center;
  margin-bottom: 20px; color: var(--copper);
  background: rgba(255,122,47,0.10); border: 1px solid rgba(255,122,47,0.22);
}
.pillar h3 { font-size: 1.2rem; margin-bottom: 10px; }
.pillar p { color: var(--fog); font-size: 0.98rem; }

/* ------------------------------------------------------------------ */
/*  Process steps row (Magic Box installation)                         */
/* ------------------------------------------------------------------ */
.steps-row { display: flex; gap: 20px; margin-top: 28px; flex-wrap: wrap; }
.step-card {
  flex: 1; min-width: 180px; padding: 22px 22px 24px; border-radius: 16px;
  border: 1px solid var(--line-strong); background: rgba(255,255,255,0.025);
  transition: border-color .4s, transform .4s var(--ease);
}
.step-card:hover { border-color: rgba(255,122,47,0.4); transform: translateY(-4px); }
.step-card .n {
  width: 34px; height: 34px; border-radius: 50%; margin-bottom: 14px;
  display: grid; place-items: center; font-family: var(--sans); font-weight: 700; font-size: 0.95rem;
  color: #1c0e03; background: linear-gradient(100deg, var(--amber), var(--copper));
}
.step-card h4 { font-family: var(--sans); font-size: 1.05rem; margin-bottom: 6px; }
.step-card p { color: var(--mute); font-size: 0.9rem; }

/* ------------------------------------------------------------------ */
/*  CTA banner                                                         */
/* ------------------------------------------------------------------ */
.cta-banner {
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  padding: 40px clamp(24px, 5vw, 56px); border-radius: 28px; margin-top: 10px;
  background: linear-gradient(120deg, rgba(255,90,31,0.16), rgba(143,29,16,0.10));
  border: 1px solid rgba(255,122,47,0.3);
}
.cta-banner h3 { font-family: var(--sans); font-size: clamp(1.3rem, 2.6vw, 1.8rem); margin-bottom: 8px; }
.cta-banner p { color: var(--fog); font-size: 0.98rem; }
.cta-banner .actions { display: flex; gap: 14px; flex-wrap: wrap; }
@media (max-width: 700px) { .cta-banner { flex-direction: column; align-items: flex-start; } }

/* ------------------------------------------------------------------ */
/*  FAQ accordion                                                      */
/* ------------------------------------------------------------------ */
.faq-list { max-width: 780px; margin-top: 40px; display: flex; flex-direction: column; gap: 14px; }
.faq-item { border: 1px solid var(--line); border-radius: 16px; overflow: hidden; background: rgba(255,255,255,0.02); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 20px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-family: var(--sans); font-weight: 600; font-size: 1.02rem; color: var(--white);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .plus { font-size: 1.3rem; color: var(--copper); transition: transform .3s var(--ease); flex-shrink: 0; }
.faq-item[open] summary .plus { transform: rotate(45deg); }
.faq-item .faq-a { padding: 0 24px 22px; color: var(--fog); font-size: 0.96rem; max-width: 68ch; }

/* ------------------------------------------------------------------ */
/*  Floating WhatsApp button                                           */
/* ------------------------------------------------------------------ */
.whatsapp-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center;
  background: #25d366; box-shadow: 0 10px 30px rgba(0,0,0,0.45), 0 0 0 0 rgba(37,211,102,0.6);
  transition: transform .35s var(--ease), box-shadow .35s;
  animation: wa-pulse 2.8s ease-out infinite;
}
.whatsapp-float:hover { transform: scale(1.08); }
@keyframes wa-pulse {
  0% { box-shadow: 0 10px 30px rgba(0,0,0,0.45), 0 0 0 0 rgba(37,211,102,0.45); }
  70% { box-shadow: 0 10px 30px rgba(0,0,0,0.45), 0 0 0 14px rgba(37,211,102,0); }
  100% { box-shadow: 0 10px 30px rgba(0,0,0,0.45), 0 0 0 0 rgba(37,211,102,0); }
}
@media (max-width: 600px) { .whatsapp-float { right: 16px; bottom: 16px; width: 50px; height: 50px; } }
@media (max-width: 780px){ .pillars { grid-template-columns: 1fr; } }

/* ------------------------------------------------------------------ */
/*  Bento grid                                                         */
/* ------------------------------------------------------------------ */
.bento { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 180px; gap: 18px; margin-top: 56px; }
.cell {
  position: relative; border-radius: var(--radius); overflow: hidden;
  padding: 26px; border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.012));
  display: flex; flex-direction: column; justify-content: flex-end;
  transition: transform .5s var(--ease), border-color .5s;
}
.cell:hover { transform: translateY(-5px); border-color: rgba(255,122,47,0.35); }
.cell .stat { font-family: var(--sans); font-size: clamp(2rem, 3.4vw, 3rem); font-weight: 600; line-height: 1; }
.cell .cap { color: var(--fog); font-size: 0.92rem; margin-top: 8px; }
.cell .kicker { font-family: var(--sans); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--amber); }
.cell.span2 { grid-column: span 2; }
.cell.tall { grid-row: span 2; }
.cell.img { padding: 0; }
.cell.img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cell.img .overlay { position: relative; z-index: 2; margin-top: auto; padding: 6px; }
.cell.img::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, transparent 40%, rgba(6,6,6,0.75)); }
.cell.glow { background: linear-gradient(140deg, rgba(255,90,31,0.16), rgba(143,29,16,0.10)); border-color: rgba(255,122,47,0.3); }
@media (max-width: 900px){ .bento { grid-template-columns: repeat(2, 1fr); } .cell.span2{ grid-column: span 2; } }
@media (max-width: 560px){ .bento { grid-template-columns: 1fr; grid-auto-rows: 150px; } .cell.span2, .cell.tall { grid-column: auto; grid-row: auto; } }

/* ------------------------------------------------------------------ */
/*  Compare — "Zivora Difference" (static, replaces the old sticky pin) */
/* ------------------------------------------------------------------ */
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 50px; }
.compare-card {
  border-radius: var(--radius); padding: 34px; border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.008));
}
.compare-card.win {
  border-color: rgba(255,122,47,0.4);
  background: linear-gradient(160deg, rgba(255,90,31,0.14), rgba(143,29,16,0.08));
  box-shadow: 0 30px 70px rgba(0,0,0,0.45);
}
.compare-card h3 { font-family: var(--sans); font-size: 1.3rem; margin-bottom: 18px; display: flex; align-items: center; gap: 10px; }
.compare-card h3 .tick { color: var(--faint); }
.compare-card.win h3 .tick { color: var(--copper); }
.compare-card ul { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.compare-card li { color: var(--fog); font-size: 0.98rem; padding-left: 28px; position: relative; }
.compare-card li::before {
  content: "✕"; position: absolute; left: 0; top: 0; font-size: 0.85rem; color: var(--faint);
}
.compare-card.win li::before { content: "✓"; color: var(--copper); }
.compare-card.win li { color: var(--white); }
@media (max-width: 780px) { .compare-grid { grid-template-columns: 1fr; } }

/* horizontal process strip: Blue light in -> Quantum conversion -> Red light out */
.process-strip {
  display: flex; justify-content: center; gap: clamp(24px, 5vw, 56px); flex-wrap: wrap;
  margin-top: 50px; padding-top: 40px; border-top: 1px solid var(--line);
}
.process-strip .step { text-align: center; max-width: 180px; }
.process-strip .num {
  width: 40px; height: 40px; margin: 0 auto 14px; border-radius: 50%;
  display: grid; place-items: center; font-family: var(--sans); font-weight: 600; font-size: 0.95rem;
  border: 1px solid var(--line-strong); color: var(--fog);
}
.process-strip .step.on .num { border-color: var(--copper); color: var(--copper); box-shadow: 0 0 20px rgba(255,122,47,0.25); }
.process-strip .lab { font-family: var(--sans); font-size: 1rem; font-weight: 600; }
.process-strip .arrow { align-self: center; color: var(--faint); font-size: 1.4rem; margin-top: -30px; }
@media (max-width: 560px) { .process-strip .arrow { display: none; } }

/* ------------------------------------------------------------------ */
/*  SKU cards / Shop                                                   */
/* ------------------------------------------------------------------ */
.sku-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(255px, 1fr)); gap: 24px; margin-top: 36px; }
.sku-line { margin-top: 64px; }
.sku-line:first-of-type { margin-top: 40px; }
.sku-line-head { display: flex; align-items: baseline; gap: 16px; flex-wrap: wrap; }
.sku-line-head h3 { font-family: var(--sans); font-size: clamp(1.3rem, 2.4vw, 1.7rem); }
.sku-line-head p { color: var(--mute); font-size: 0.95rem; }
.sku {
  border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.012));
  display: flex; flex-direction: column; transition: transform .5s var(--ease), border-color .5s, box-shadow .5s;
}
.sku:hover { transform: translateY(-8px); border-color: rgba(255,122,47,0.4); box-shadow: 0 30px 70px rgba(0,0,0,0.55); }
.sku-media { position: relative; aspect-ratio: 4/3; overflow: hidden; background: #0d0d10; }
.sku-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.sku:hover .sku-media img { transform: scale(1.06); }
.sku-media .badge {
  position: absolute; top: 14px; left: 14px; font-family: var(--sans); font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; padding: 7px 12px; border-radius: 100px; color: #1c0e03;
  background: linear-gradient(100deg, var(--amber), var(--copper)); font-weight: 600;
}
.sku-body { padding: 26px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.sku-body .device { font-family: var(--sans); font-size: 1.3rem; font-weight: 600; }
.sku-body .desc { color: var(--mute); font-size: 0.9rem; }
.sku-body .price { font-family: var(--sans); font-size: 1.5rem; font-weight: 600; margin-top: 8px; color: var(--white); }
.sku-body .price small { font-size: 0.85rem; color: var(--mute); font-weight: 400; }
.sku-body .price.live { font-size: 0.95rem; font-weight: 500; color: var(--fog); }
.sku-buy { display: flex; flex-direction: column; gap: 10px; margin-top: 18px; }
.buy {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 13px 18px; border-radius: 12px; font-size: 0.92rem; font-weight: 600; font-family: var(--sans);
  border: 1px solid var(--line-strong); color: var(--white); transition: .35s var(--ease);
}
.buy:hover { border-color: var(--copper); background: rgba(255,122,47,0.08); transform: translateX(3px); }
.buy.cod { background: linear-gradient(100deg, rgba(37,211,102,0.14), rgba(37,211,102,0.05)); border-color: rgba(37,211,102,0.4); }
.buy.cod:hover { background: rgba(37,211,102,0.18); border-color: #25d366; }
@media (max-width: 620px){ .sku-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; } }

.reassure { text-align: center; margin-top: 40px; color: var(--mute); font-size: 0.95rem; }
.reassure .spark { color: var(--copper); }

/* ------------------------------------------------------------------ */
/*  Forms                                                              */
/* ------------------------------------------------------------------ */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 40px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { font-family: var(--sans); font-size: 0.8rem; letter-spacing: 0.06em; color: var(--fog); text-transform: uppercase; }
.field input, .field select, .field textarea {
  background: rgba(255,255,255,0.03); border: 1px solid var(--line-strong); border-radius: 12px;
  padding: 14px 16px; color: var(--white); font-family: var(--body); font-size: 1rem; transition: .3s;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--copper); background: rgba(255,122,47,0.05); }
.field select option { background: var(--ink); }
@media (max-width: 700px){ .form-grid { grid-template-columns: 1fr; } }

/* Contact / info cards */
.info-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 44px; }
.info-card { padding: 30px; border-radius: var(--radius); border: 1px solid var(--line); background: rgba(255,255,255,0.02); }
.info-card .k { font-family: var(--sans); font-size: 0.8rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--amber); margin-bottom: 14px; }
.info-card a, .info-card p { color: var(--fog); font-size: 1.05rem; }
.info-card a:hover { color: var(--copper); }
@media (max-width: 780px){ .info-cards { grid-template-columns: 1fr; } }

/* ------------------------------------------------------------------ */
/*  Legal / prose pages                                                */
/* ------------------------------------------------------------------ */
.page-hero { padding-top: 160px; padding-bottom: 40px; }
.prose { max-width: 780px; }
.prose h2 { font-size: 1.6rem; margin-top: 44px; margin-bottom: 14px; }
.prose h3 { font-size: 1.2rem; margin-top: 30px; margin-bottom: 10px; color: var(--amber); }
.prose p { color: var(--fog); margin-bottom: 16px; }
.prose ul { list-style: none; margin-bottom: 20px; display: flex; flex-direction: column; gap: 12px; }
.prose ul li { color: var(--fog); padding-left: 26px; position: relative; }
.prose ul li::before { content: ""; position: absolute; left: 0; top: 11px; width: 8px; height: 8px; border-radius: 50%; background: linear-gradient(var(--copper), var(--red)); }
.prose ul li strong { color: var(--white); }
.note {
  margin-top: 30px; padding: 18px 22px; border-radius: 14px; font-size: 0.9rem; color: var(--amber);
  background: rgba(255,171,94,0.06); border: 1px solid rgba(255,171,94,0.2);
}

/* ------------------------------------------------------------------ */
/*  Stat / big number band                                             */
/* ------------------------------------------------------------------ */
.values { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; margin-top: 56px; }
.value { padding-top: 26px; border-top: 1px solid var(--line-strong); }
.value h3 { font-size: 1.25rem; margin-bottom: 10px; }
.value p { color: var(--fog); font-size: 0.98rem; }
@media (max-width: 780px){ .values { grid-template-columns: 1fr; } }

/* ------------------------------------------------------------------ */
/*  Footer                                                             */
/* ------------------------------------------------------------------ */
.footer { position: relative; z-index: 2; border-top: 1px solid var(--line); padding-block: 70px 40px; background: linear-gradient(180deg, transparent, rgba(255,122,47,0.03)); }
.foot-trust { display: flex; flex-wrap: wrap; gap: 30px; justify-content: center; padding-bottom: 50px; border-bottom: 1px solid var(--line); }
.foot-trust span { font-family: var(--sans); font-size: 0.85rem; letter-spacing: 0.1em; color: var(--fog); text-transform: uppercase; display: inline-flex; gap: 10px; align-items: center; }
.foot-trust .spark { color: var(--copper); }
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; padding-block: 46px; }
.foot-brand .brand { margin-bottom: 18px; }
.foot-brand p { color: var(--mute); max-width: 42ch; font-size: 0.95rem; }
.foot-col h4 { font-family: var(--sans); font-size: 0.8rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--fog); margin-bottom: 18px; }
.foot-col a, .foot-col p { display: block; color: var(--mute); font-size: 0.95rem; margin-bottom: 12px; transition: color .3s; }
.foot-col a:hover { color: var(--copper); }
.foot-bottom { display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between; padding-top: 30px; border-top: 1px solid var(--line); color: var(--faint); font-size: 0.85rem; }
.foot-bottom a { color: var(--mute); }
.foot-bottom a:hover { color: var(--copper); }
@media (max-width: 780px){ .foot-grid { grid-template-columns: 1fr; gap: 30px; } }

/* progress bar */
.progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; z-index: 200; background: linear-gradient(90deg, var(--amber), var(--copper), var(--red)); box-shadow: 0 0 12px var(--copper); transition: width .1s linear; }

/* cursor glow */
.cursor-glow { position: fixed; width: 420px; height: 420px; border-radius: 50%; pointer-events: none; z-index: 3; transform: translate(-50%,-50%); background: radial-gradient(circle, rgba(255,122,47,0.10), transparent 65%); mix-blend-mode: screen; transition: opacity .4s; opacity: 0; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .rise { opacity: 1 !important; transform: none !important; }
}
