/* ==========================================================================
   GRAYTILE — CONVERSION-FOCUSED MODERN DESIGN
   Cream background · Forest green dark · Lime accent · Bold typography
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Instrument+Serif:ital@0;1&family=JetBrains+Mono:wght@400;500&display=swap');

/* ===== RESET ===== */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;font-size:16px;-webkit-text-size-adjust:100%}
body{
  font-family:'Inter',system-ui,sans-serif;
  background:var(--cream);
  color:var(--ink);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  overflow-x:hidden;
  line-height:1.5;
}
img{display:block;max-width:100%;height:auto}
a{text-decoration:none;color:inherit}
ul{list-style:none}
button{font-family:inherit;cursor:pointer;border:none;background:none}
::selection{background:var(--lime);color:var(--ink)}

/* ===== TOKENS ===== */
:root{
  --cream:        #F5F1EA;
  --cream-deep:   #EFEAE0;
  --cream-soft:   #FAF7F1;
  --ink:          #0F1311;
  --ink-soft:     #1C211E;
  --ink-muted:    #4A524D;
  --muted:        #6F7873;
  --line:         #E2DDD2;
  --line-strong:  #CFC8B8;
  --forest:       #0F2A24;
  --forest-deep:  #081A16;
  --teal:         #2F6B62;
  --teal-bright:  #3F9085;
  --lime:         #C8F051;
  --lime-soft:    #E5F89C;
  --coral:        #FF5C39;
  --amber:        #FFB547;
  --white:        #FFFFFF;

  --r-sm:  10px;
  --r-md:  18px;
  --r-lg:  28px;
  --r-xl:  40px;
  --r-pill: 999px;

  --shadow-soft:  0 2px 8px rgba(15,19,17,.04), 0 12px 32px rgba(15,19,17,.06);
  --shadow-pop:   0 4px 16px rgba(15,19,17,.08), 0 24px 60px rgba(15,19,17,.10);
  --shadow-lime:  0 6px 24px rgba(200,240,81,.45);

  --max-w:        1280px;
  --max-w-narrow: 920px;
  --nav-h:        72px;

  --ease:         cubic-bezier(.22,1,.36,1);
  --ease-snap:    cubic-bezier(.34,1.56,.64,1);
}

/* ===== TYPE ===== */
.display{
  font-family:'Inter',sans-serif;
  font-weight:800;
  letter-spacing:-.04em;
  line-height:.95;
}
.serif{font-family:'Instrument Serif',serif;font-weight:400;font-style:italic;letter-spacing:-.02em}
.mono{font-family:'JetBrains Mono',monospace;font-size:12px;letter-spacing:.05em}

.eyebrow{
  display:inline-flex;align-items:center;gap:8px;
  font-family:'JetBrains Mono',monospace;
  font-size:11px;font-weight:500;letter-spacing:.18em;
  text-transform:uppercase;color:var(--ink-muted);
}
.eyebrow::before{
  content:"";display:inline-block;width:24px;height:1px;background:var(--ink-muted);
}

/* ===== LAYOUT ===== */
.container{max-width:var(--max-w);margin:0 auto;padding-left:32px;padding-right:32px}
.container-narrow{max-width:var(--max-w-narrow);margin:0 auto;padding-left:32px;padding-right:32px}
.section{padding:120px 0}
.section-sm{padding:64px 0}

/* ===== NAV ===== */
.site-nav{
  position:sticky;top:16px;z-index:100;
  margin:16px auto 0;max-width:calc(var(--max-w) - 32px);
  background:rgba(245,241,234,.78);
  backdrop-filter:blur(20px) saturate(150%);
  -webkit-backdrop-filter:blur(20px) saturate(150%);
  border:1px solid var(--line);
  border-radius:var(--r-pill);
  transition:box-shadow .3s var(--ease),transform .3s var(--ease);
}
.site-nav.scrolled{box-shadow:var(--shadow-soft)}
.nav-inner{
  height:var(--nav-h);
  padding:0 12px 0 28px;
  display:flex;align-items:center;justify-content:space-between;gap:24px;
}
.nav-logo{display:flex;align-items:center;gap:10px;font-weight:800;font-size:18px;letter-spacing:-.02em}
.nav-logo img{width:112px;height:auto;display:block}
.nav-logo .dot{width:6px;height:6px;background:var(--lime);border-radius:50%;display:inline-block}
.nav-links{display:flex;align-items:center;gap:4px;list-style:none}
.nav-links a{
  display:inline-flex;align-items:center;
  font-size:14.5px;font-weight:500;color:var(--ink-soft);
  padding:8px 16px;border-radius:var(--r-pill);
  transition:background .2s,color .2s;
}
.nav-links a:hover{background:rgba(15,19,17,.06)}
.nav-links a.active{background:var(--ink);color:var(--cream)}

.nav-cta{
  display:inline-flex;align-items:center;gap:8px;
  background:var(--lime);color:var(--ink);
  padding:12px 22px;border-radius:var(--r-pill);
  font-weight:600;font-size:14px;
  transition:transform .2s var(--ease-snap),box-shadow .2s;
}
.nav-cta:hover{transform:translateY(-1px);box-shadow:var(--shadow-lime)}
.nav-cta .arrow{transition:transform .2s}
.nav-cta:hover .arrow{transform:translate(2px,-2px) rotate(-10deg)}

.nav-toggle{display:none;width:42px;height:42px;border-radius:50%;background:var(--ink);color:var(--cream);align-items:center;justify-content:center;flex-direction:column;gap:4px}
.nav-toggle span{width:16px;height:1.5px;background:currentColor;display:block;transition:all .3s}

.mobile-menu{display:none;flex-direction:column;gap:4px;background:rgba(245,241,234,.95);backdrop-filter:blur(20px);border:1px solid var(--line);border-radius:var(--r-lg);padding:16px;margin:8px 16px 0}
.mobile-menu.open{display:flex}
.mobile-menu a{padding:14px 18px;border-radius:var(--r-md);font-weight:500;color:var(--ink-soft)}
.mobile-menu a.active{background:var(--ink);color:var(--cream)}
.mobile-menu a.cta{background:var(--lime);color:var(--ink);font-weight:600;text-align:center;justify-content:center;display:flex}

/* ===== BUTTONS ===== */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:10px;
  font-weight:600;font-size:15px;
  padding:16px 28px;border-radius:var(--r-pill);
  cursor:pointer;white-space:nowrap;
  transition:transform .2s var(--ease-snap),box-shadow .25s,background .2s,color .2s;
  position:relative;
}
.btn-lime{background:var(--lime);color:var(--ink);box-shadow:0 1px 0 rgba(15,19,17,.08)}
.btn-lime:hover{transform:translateY(-2px);box-shadow:var(--shadow-lime)}
.btn-ink{background:var(--ink);color:var(--cream)}
.btn-ink:hover{transform:translateY(-2px);background:var(--forest)}
.btn-ghost{background:transparent;color:var(--ink);border:1px solid var(--line-strong)}
.btn-ghost:hover{background:var(--ink);color:var(--cream);border-color:var(--ink)}
.btn-coral{background:var(--coral);color:#fff}
.btn-coral:hover{transform:translateY(-2px);box-shadow:0 8px 24px rgba(255,92,57,.4)}
.btn-lg{padding:20px 36px;font-size:16px}
.btn .arrow{display:inline-block;transition:transform .2s var(--ease-snap)}
.btn:hover .arrow{transform:translateX(4px)}

/* ===== UTIL ===== */
.pill{
  display:inline-flex;align-items:center;gap:8px;
  padding:6px 14px;border-radius:var(--r-pill);
  background:var(--cream-deep);border:1px solid var(--line);
  font-size:12px;font-weight:500;color:var(--ink-soft);
  font-family:'JetBrains Mono',monospace;letter-spacing:.05em;
}
.pill .live-dot{width:6px;height:6px;background:var(--coral);border-radius:50%;display:inline-block;animation:pulse 1.6s ease-in-out infinite}
@keyframes pulse{0%,100%{opacity:1;transform:scale(1)}50%{opacity:.55;transform:scale(.8)}}

.tag{
  display:inline-flex;align-items:center;gap:6px;
  padding:5px 12px;border-radius:var(--r-pill);
  background:var(--ink);color:var(--cream);
  font-size:11px;font-weight:600;letter-spacing:.08em;text-transform:uppercase;
}
.tag-lime{background:var(--lime);color:var(--ink)}
.tag-soft{background:rgba(15,19,17,.06);color:var(--ink);border:1px solid var(--line)}

/* ============================================================
   HERO (Landing)
   ============================================================ */
.hero{
  position:relative;
  padding:20px 0 0;
  overflow:hidden;
}
.hero-grid{
  display:grid;
  grid-template-columns:.95fr 1.15fr;
  gap:60px;
  align-items:center;
}
.hero-left{display:flex;flex-direction:column;gap:32px}
.hero-pill-row{display:flex;align-items:center;gap:12px;flex-wrap:wrap}
.hero-pill-row-below{justify-content:center;width:100%}
.hero-headline{
  font-size:clamp(48px,7.5vw,108px);
  font-weight:800;
  letter-spacing:-.045em;
  line-height:.92;
  color:var(--ink);
}
.hero-headline .accent{
  font-family:'Instrument Serif',serif;
  font-weight:400;
  font-style:italic;
  letter-spacing:-.02em;
  color:var(--teal);
  display:inline-block;
}
.hero-headline .underline{
  display:inline-block;position:relative;
}
.hero-headline .underline::after{
  content:"";position:absolute;left:-2%;right:-2%;bottom:6%;height:.22em;
  background:var(--lime);z-index:-1;border-radius:4px;
}

.hero-sub{
  font-size:clamp(17px,1.6vw,20px);
  color:var(--ink-muted);
  max-width:520px;line-height:1.55;
}

.hero-ctas{display:flex;align-items:center;gap:14px;flex-wrap:wrap}
.hero-meta{display:flex;align-items:center;gap:14px;flex-wrap:wrap;color:var(--ink-muted);font-size:13px}
.hero-meta > span{white-space:nowrap}
.hero-meta .dot-sep{width:3px;height:3px;background:var(--line-strong);border-radius:50%;display:inline-block}
.hero-meta strong{color:var(--ink);font-weight:600}

.hero-right{position:relative;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:16px;min-height:auto}
.hero-headline-mobile{display:none}
.hero-card-wrap{position:relative;width:100%;display:flex;justify-content:center}
.hero-product-card{
  position:relative;z-index:2;
  background:var(--forest-deep);
  border:1px solid rgba(255,255,255,.08);
  border-radius:28px;
  padding:0;
  box-shadow:
    0 40px 80px -20px rgba(8,26,22,.55),
    0 20px 40px -15px rgba(8,26,22,.4),
    0 0 0 1px rgba(255,255,255,.04) inset;
  width:100%;max-width:none;
  aspect-ratio:4/5;
  max-height:min(70vh, 660px);
  overflow:hidden;
  isolation:isolate;
  transform:none;
}
.hero-product-card:hover{transform:none}
.hero-product-card img{
  position:absolute;inset:0;
  width:100%;height:100%;
  object-fit:cover;object-position:center 38%;
  border-radius:0;
  transition:transform .8s var(--ease);
}
.hero-product-card:hover img{transform:scale(1.04)}
/* legibility gradients */
.hero-product-card::before{
  content:"";position:absolute;inset:0;z-index:1;pointer-events:none;
  background:
    linear-gradient(180deg, rgba(8,26,22,.55) 0%, rgba(8,26,22,0) 25%, rgba(8,26,22,0) 55%, rgba(8,26,22,.92) 100%);
}
/* subtle lime corner glow inside */
.hero-product-card::after{
  content:"";position:absolute;left:-15%;top:-15%;width:55%;aspect-ratio:1;z-index:1;
  background:radial-gradient(circle, rgba(200,240,81,.18) 0%, rgba(200,240,81,0) 60%);
  pointer-events:none;
}
.hero-product-card .card-head{
  position:absolute;top:24px;left:24px;right:24px;z-index:3;
  display:flex;justify-content:space-between;align-items:center;margin-bottom:0;
}
.hero-product-card .card-head .mono{color:rgba(245,241,234,.85)}
.hero-product-card .card-foot{
  position:absolute;left:24px;right:24px;bottom:24px;z-index:3;
  display:flex;justify-content:space-between;align-items:center;margin-top:0;gap:16px;
  background:rgba(15,19,17,.55);
  backdrop-filter:blur(14px) saturate(140%);
  -webkit-backdrop-filter:blur(14px) saturate(140%);
  border:1px solid rgba(255,255,255,.08);
  border-radius:18px;
  padding:18px 22px;
}
.hero-product-card .price-block{display:flex;align-items:baseline;gap:8px}
.hero-product-card .price{font-size:34px;font-weight:800;color:var(--cream);letter-spacing:-.03em}
.hero-product-card .price-old{font-size:15px;color:rgba(245,241,234,.5);text-decoration:line-through}

/* Floating chips around product */
.hero-chip{
  position:absolute;z-index:3;
  background:var(--white);
  border:1px solid var(--line);
  border-radius:var(--r-pill);
  padding:12px 18px;
  display:flex;align-items:center;gap:10px;
  font-size:13.5px;font-weight:500;color:var(--ink);
  box-shadow:var(--shadow-soft);
  animation:floatChip 5s ease-in-out infinite;
}
.hero-chip .chip-icon{
  width:32px;height:32px;border-radius:50%;
  background:var(--lime);color:var(--ink);
  display:flex;align-items:center;justify-content:center;font-size:16px;
}
.hero-chip.chip-1{top:5%;right:-6%;left:auto;animation-delay:0s}
.hero-chip.chip-2{top:45%;right:-10%;animation-delay:1.2s}
.hero-chip.chip-3{bottom:22%;right:-4%;left:auto;animation-delay:2.4s}

@keyframes floatChip{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-12px)}
}

/* Background blobs */
.hero-blob{
  position:absolute;border-radius:50%;filter:blur(80px);opacity:.55;pointer-events:none;z-index:0;
}
.hero-blob.b1{top:-100px;right:-100px;width:480px;height:480px;background:#D9F09F}
.hero-blob.b2{bottom:-180px;left:-120px;width:520px;height:520px;background:#A8D9D2}

/* ============================================================
   MARQUEE (Trust strip)
   ============================================================ */
.marquee{
  margin-top:12px;
  border-top:1px solid var(--line);border-bottom:1px solid var(--line);
  background:var(--cream-deep);
  overflow:hidden;
  padding:16px 0;
}
.marquee-track{
  display:flex;gap:64px;align-items:center;
  animation:marqueeScroll 32s linear infinite;
  width:max-content;
}
.marquee-item{
  display:flex;align-items:center;gap:12px;
  font-size:15px;font-weight:500;color:var(--ink-soft);
  white-space:nowrap;
}
.marquee-item .ico{width:24px;height:24px;border-radius:50%;background:var(--lime);color:var(--ink);display:flex;align-items:center;justify-content:center;font-size:13px;font-weight:700}
.marquee-item .sep{display:inline-block;width:6px;height:6px;background:var(--line-strong);border-radius:50%;margin:0 12px}
@keyframes marqueeScroll{from{transform:translateX(0)}to{transform:translateX(-50%)}}

/* ============================================================
   STATS BAND
   ============================================================ */
.stats{padding:60px 0}
.stats-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:32px}
.stat{display:flex;flex-direction:column;gap:6px}
.stat-num{font-size:clamp(40px,5vw,64px);font-weight:800;letter-spacing:-.03em;color:var(--ink);line-height:1}
.stat-num .unit{color:var(--teal);font-family:'Instrument Serif',serif;font-style:italic;font-weight:400}
.stat-label{font-size:14px;color:var(--ink-muted);max-width:220px;line-height:1.5}

/* ============================================================
   SECTION HEADER
   ============================================================ */
.section-head{display:flex;flex-direction:column;gap:16px;max-width:760px;margin-bottom:64px}
.section-head.center{align-items:center;text-align:center;margin-left:auto;margin-right:auto}
.section-head h2{
  font-size:clamp(40px,5.5vw,72px);
  font-weight:800;letter-spacing:-.035em;line-height:1;color:var(--ink);
}
.section-head h2 em{font-family:'Instrument Serif',serif;font-style:italic;font-weight:400;color:var(--teal)}
.section-head p{font-size:18px;color:var(--ink-muted);max-width:600px;line-height:1.55}

/* ============================================================
   BENTO GRID (Features)
   ============================================================ */
.bento{
  display:grid;
  grid-template-columns:repeat(12,1fr);
  grid-auto-rows:200px;
  gap:20px;
}
.bento-card{
  background:var(--cream-soft);
  border:1px solid var(--line);
  border-radius:var(--r-lg);
  padding:28px;
  display:flex;flex-direction:column;justify-content:space-between;
  position:relative;overflow:hidden;
  transition:transform .35s var(--ease),box-shadow .35s,border-color .35s;
}
.bento-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-soft);border-color:var(--line-strong)}
.bento-card .ico{
  width:auto;height:auto;border-radius:0;
  background:transparent;color:var(--ink);
  display:flex;align-items:center;justify-content:flex-start;
  font-size:64px;line-height:1;
}
.bento-card h3{font-size:26px;font-weight:700;letter-spacing:-.02em;color:var(--ink);line-height:1.2}
.bento-card p{font-size:16px;color:var(--ink-muted);line-height:1.6}

/* Bento layout */
.bento-card.b-large{grid-column:span 7;grid-row:span 2;background:var(--ink);color:var(--cream);border-color:var(--ink)}
.bento-card.b-large h3{color:var(--cream);font-size:44px;letter-spacing:-.03em}
.bento-card.b-large p{color:rgba(245,241,234,.75);font-size:18px;max-width:460px}
.bento-card.b-large .ico{background:transparent;color:var(--lime);font-size:72px}
.bento-card.b-large .bento-top{display:flex;align-items:center;justify-content:space-between;gap:16px}
.bento-card.b-large .visual{
  position:absolute;right:-40px;bottom:-40px;width:340px;height:340px;
  background:radial-gradient(circle,var(--teal-bright) 0%,transparent 70%);
  opacity:.4;border-radius:50%;
}

.bento-card.b-med{grid-column:span 5;grid-row:span 1}
.bento-card.b-med.b-med-wide{grid-column:span 8}
.bento-card.b-small{grid-column:span 4;grid-row:span 1}
.bento-card.b-tall{grid-column:span 4;grid-row:span 2;background:var(--lime);border-color:var(--lime)}
.bento-card.b-tall h3{font-size:32px}
.bento-card.b-tall .ico{color:var(--ink);font-size:80px}
.bento-card.b-wide{grid-column:span 8;grid-row:span 1;background:var(--cream-deep)}

.bento-card .visual-img{
  position:absolute;right:20px;bottom:-20px;
  width:55%;border-radius:var(--r-md);box-shadow:var(--shadow-soft);
  transform:rotate(-4deg);transition:transform .4s var(--ease);
}
.bento-card:hover .visual-img{transform:rotate(0deg) translateY(-4px)}

/* ============================================================
   PROCESS / HOW IT WORKS
   ============================================================ */
.process{background:var(--forest);color:var(--cream);padding:120px 0;border-radius:var(--r-xl);margin:0 32px}
.process .section-head h2{color:var(--cream)}
.process .section-head h2 em{color:var(--lime)}
.process .section-head p{color:rgba(245,241,234,.65)}

.steps{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;counter-reset:step}
.step{
  background:var(--forest-deep);
  border:1px solid rgba(255,255,255,.08);
  border-radius:var(--r-lg);
  padding:36px 32px;
  display:flex;flex-direction:column;gap:18px;
  transition:transform .3s var(--ease),border-color .3s;
  position:relative;overflow:hidden;
}
.step:hover{transform:translateY(-6px);border-color:var(--lime)}
.step-num{
  font-family:'Instrument Serif',serif;font-style:italic;font-weight:400;
  font-size:72px;line-height:.8;color:var(--lime);letter-spacing:-.04em;
}
.step h3{font-size:22px;font-weight:600;color:var(--cream)}
.step p{font-size:14.5px;color:rgba(245,241,234,.65);line-height:1.65}

/* ============================================================
   PRODUCT SHOWCASE
   ============================================================ */
.showcase{padding:120px 0}
.showcase-grid{display:grid;grid-template-columns:1fr 1.2fr;gap:80px;align-items:center}
.showcase-img-wrap{
  position:relative;
  background:linear-gradient(135deg,var(--cream-deep) 0%,var(--lime-soft) 100%);
  border-radius:var(--r-xl);padding:24px;
  display:flex;align-items:center;justify-content:center;
  aspect-ratio:1;
  border:1px solid var(--line);
  overflow:hidden;
}
.showcase-img-wrap img{
  width:100%;max-width:100%;height:auto;
  object-fit:contain;
  transform:scale(1.05);
  transform-origin:center;
  filter:drop-shadow(0 24px 50px rgba(0,0,0,.18));
}
.showcase-badge{
  position:absolute;top:24px;right:24px;
  background:var(--ink);color:var(--lime);
  font-family:'JetBrains Mono',monospace;font-size:11px;letter-spacing:.1em;
  padding:8px 16px;border-radius:var(--r-pill);
}

.feature-list{display:flex;flex-direction:column;gap:24px}
.feature-row{
  display:flex;align-items:flex-start;gap:18px;
  padding:24px 0;border-bottom:1px solid var(--line);
  transition:padding .2s;
}
.feature-row:hover{padding-left:8px}
.feature-row:last-child{border-bottom:none}
.feature-row .ico{
  width:44px;height:44px;border-radius:12px;flex-shrink:0;
  background:var(--ink);color:var(--lime);
  display:flex;align-items:center;justify-content:center;font-size:18px;font-weight:700;
}
.feature-row h4{font-size:18px;font-weight:600;letter-spacing:-.01em;margin-bottom:4px}
.feature-row p{font-size:14.5px;color:var(--ink-muted);line-height:1.6}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials{padding:120px 0;background:var(--cream-deep)}
.testimonial-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
.testi{
  background:var(--cream-soft);
  border:1px solid var(--line);
  border-radius:var(--r-lg);
  padding:32px;
  display:flex;flex-direction:column;gap:20px;
  transition:transform .3s var(--ease),box-shadow .3s;
}
.testi:hover{transform:translateY(-4px);box-shadow:var(--shadow-soft)}
.testi .stars{color:var(--amber);font-size:16px;letter-spacing:2px}
.testi blockquote{
  font-size:17px;line-height:1.55;color:var(--ink);
  font-weight:500;
}
.testi-author{display:flex;align-items:center;gap:12px;padding-top:18px;border-top:1px solid var(--line)}
.testi-avatar{
  width:42px;height:42px;border-radius:50%;
  background:var(--ink);color:var(--lime);
  display:flex;align-items:center;justify-content:center;
  font-weight:700;font-size:15px;
}
.testi-name{font-size:14px;font-weight:600}
.testi-role{font-size:12.5px;color:var(--ink-muted)}

.testi.featured{
  grid-column:span 1;
  background:var(--ink);color:var(--cream);border-color:var(--ink);
}
.testi.featured blockquote{color:var(--cream);font-size:19px}
.testi.featured .testi-author{border-top-color:rgba(255,255,255,.12)}
.testi.featured .testi-avatar{background:var(--lime);color:var(--ink)}
.testi.featured .testi-role{color:rgba(245,241,234,.6)}

/* ============================================================
   PRICING / OFFER CARD
   ============================================================ */
.offer{padding:120px 0}
.offer-card{
  background:var(--ink);color:var(--cream);
  border-radius:var(--r-xl);
  padding:64px;
  display:grid;grid-template-columns:1.1fr 1fr;gap:64px;align-items:center;
  position:relative;overflow:hidden;
}
.offer-card::before{
  content:"";position:absolute;
  top:-50%;right:-10%;width:600px;height:600px;
  background:radial-gradient(circle,var(--lime) 0%,transparent 60%);
  opacity:.18;border-radius:50%;pointer-events:none;
}
.offer-left{position:relative;z-index:1}
.offer-left .tag-lime{margin-bottom:24px}
.offer-left h2{
  font-size:clamp(36px,4.5vw,56px);
  font-weight:800;letter-spacing:-.035em;line-height:1;margin-bottom:16px;
}
.offer-left h2 em{font-family:'Instrument Serif',serif;font-style:italic;font-weight:400;color:var(--lime)}
.offer-left p{font-size:16px;color:rgba(245,241,234,.7);line-height:1.6;max-width:440px;margin-bottom:32px}

.offer-checklist{display:flex;flex-direction:column;gap:12px}
.offer-checklist li{display:flex;align-items:center;gap:12px;font-size:15px;color:rgba(245,241,234,.85)}
.offer-checklist .chk{
  width:22px;height:22px;border-radius:50%;background:var(--lime);color:var(--ink);
  display:flex;align-items:center;justify-content:center;font-size:11px;font-weight:700;flex-shrink:0;
}

.offer-right{
  background:var(--forest-deep);
  border:1px solid rgba(255,255,255,.08);
  border-radius:var(--r-lg);padding:36px;
  position:relative;z-index:1;
}
.offer-price-row{display:flex;align-items:baseline;gap:12px;margin-bottom:6px}
.offer-price{font-size:56px;font-weight:800;letter-spacing:-.04em;line-height:1}
.offer-price-old{font-size:18px;color:rgba(245,241,234,.5);text-decoration:line-through}
.offer-meta{font-size:13px;color:rgba(245,241,234,.55);margin-bottom:24px}
.offer-bonus{
  background:rgba(200,240,81,.12);border:1px dashed var(--lime);
  border-radius:var(--r-md);padding:14px 18px;margin-bottom:24px;
  font-size:13.5px;color:var(--lime);font-weight:500;
}
.offer-bonus strong{color:var(--cream);font-weight:700}
.offer-cta-stack{display:flex;flex-direction:column;gap:10px}
.offer-cta-stack .btn{width:100%}

/* ============================================================
   FAQ
   ============================================================ */
.faq{padding:120px 0;background:var(--cream-deep)}
.faq-grid{display:grid;grid-template-columns:1fr 2fr;gap:80px;align-items:start}
.faq-list{display:flex;flex-direction:column;gap:0;border-top:1px solid var(--line-strong)}
.faq-item{border-bottom:1px solid var(--line-strong);padding:0}
.faq-trigger{
  width:100%;text-align:left;
  display:flex;justify-content:space-between;align-items:center;gap:24px;
  padding:24px 0;cursor:pointer;
  font-size:18px;font-weight:600;letter-spacing:-.01em;color:var(--ink);
  background:none;border:none;
}
.faq-trigger .plus{
  width:32px;height:32px;border-radius:50%;
  background:var(--cream);border:1px solid var(--line-strong);
  display:flex;align-items:center;justify-content:center;
  font-size:18px;color:var(--ink);font-weight:400;
  transition:transform .3s var(--ease),background .2s,color .2s;flex-shrink:0;
}
.faq-item.open .faq-trigger .plus{background:var(--ink);color:var(--lime);transform:rotate(135deg)}
.faq-answer{max-height:0;overflow:hidden;transition:max-height .35s var(--ease)}
.faq-answer-inner{padding:0 0 24px;color:var(--ink-muted);font-size:15.5px;line-height:1.7;max-width:680px}

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta{padding:140px 0;text-align:center;position:relative;overflow:hidden}
.final-cta::before{
  content:"";position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);
  width:1100px;height:1100px;
  background:radial-gradient(circle,var(--lime-soft) 0%,transparent 60%);
  opacity:.5;border-radius:50%;pointer-events:none;z-index:0;
}
.final-cta > *{position:relative;z-index:1}
.final-cta h2{
  font-size:clamp(56px,9vw,140px);
  font-weight:800;letter-spacing:-.045em;line-height:.92;
  margin-bottom:32px;color:var(--ink);
}
.final-cta h2 em{font-family:'Instrument Serif',serif;font-style:italic;font-weight:400;color:var(--teal)}
.final-cta p{font-size:18px;color:var(--ink-muted);max-width:540px;margin:0 auto 40px}
.final-cta-buttons{display:inline-flex;gap:14px;flex-wrap:wrap;justify-content:center}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer{
  background:var(--ink);color:var(--cream);
  padding:80px 0 32px;
  border-radius:var(--r-xl) var(--r-xl) 0 0;
}
.footer-top{
  display:grid;grid-template-columns:1.5fr 1fr 1fr 1fr;gap:48px;
  padding-bottom:64px;border-bottom:1px solid rgba(255,255,255,.08);
}
.footer-brand{display:flex;flex-direction:column;gap:20px}
.footer-brand .logo{display:flex;align-items:center;gap:10px;font-size:24px;font-weight:800;letter-spacing:-.02em}
.footer-brand .logo img{width:200px;height:auto;display:block;filter:brightness(0) invert(1)}
.footer-brand p{font-size:14.5px;color:rgba(245,241,234,.6);line-height:1.6;max-width:300px}
.footer-col h5{
  font-family:'JetBrains Mono',monospace;font-size:11px;font-weight:500;
  letter-spacing:.16em;text-transform:uppercase;color:rgba(245,241,234,.5);
  margin-bottom:20px;
}
.footer-col ul{display:flex;flex-direction:column;gap:12px}
.footer-col a{font-size:14.5px;color:rgba(245,241,234,.8);transition:color .2s}
.footer-col a:hover{color:var(--lime)}
.footer-bottom{
  padding-top:32px;
  display:flex;justify-content:space-between;align-items:center;gap:24px;flex-wrap:wrap;
  font-size:13px;color:rgba(245,241,234,.5);
}
.footer-made{display:flex;align-items:center;gap:8px}
.footer-made .flag{width:18px;border-radius:2px}

/* ============================================================
   STICKY BUY BAR (Mobile)
   ============================================================ */
.sticky-buy{
  position:fixed;bottom:16px;left:16px;right:16px;z-index:90;
  background:var(--ink);color:var(--cream);
  border-radius:var(--r-pill);padding:12px 12px 12px 24px;
  display:none;align-items:center;justify-content:space-between;gap:16px;
  box-shadow:var(--shadow-pop);
}
.sticky-buy .price-info{display:flex;flex-direction:column;gap:2px}
.sticky-buy .price-info span:first-child{font-size:11px;color:rgba(245,241,234,.6);font-family:'JetBrains Mono',monospace}
.sticky-buy .price-info strong{font-size:18px;font-weight:700}

/* ============================================================
   ARKLYN PRODUCT PAGE
   ============================================================ */
.product-hero{padding:16px 0 16px;position:relative;overflow:hidden}
.product-hero-grid{display:grid;grid-template-columns:1fr 1.1fr;gap:60px;align-items:center}
.product-gallery{
  background:
    radial-gradient(ellipse 70% 55% at 50% 38%, rgba(200,240,81,.35) 0%, rgba(200,240,81,0) 65%),
    radial-gradient(circle at 80% 90%, rgba(15,42,36,.08) 0%, transparent 55%),
    linear-gradient(160deg, var(--cream-soft) 0%, var(--cream-deep) 100%);
  border-radius:var(--r-xl);padding:20px;
  aspect-ratio:1;display:flex;align-items:center;justify-content:center;
  border:1px solid var(--line);position:relative;overflow:hidden;
  isolation:isolate;
  max-height:min(64vh, 540px);
}
/* concentric ring pattern behind product */
.product-gallery::before{
  content:"";position:absolute;left:50%;top:42%;transform:translate(-50%,-50%);
  width:78%;aspect-ratio:1;border-radius:50%;
  background:
    radial-gradient(circle, transparent 38%, rgba(15,19,17,.05) 38.5%, transparent 39%),
    radial-gradient(circle, transparent 54%, rgba(15,19,17,.04) 54.5%, transparent 55%),
    radial-gradient(circle, transparent 70%, rgba(15,19,17,.03) 70.5%, transparent 71%);
  z-index:0;pointer-events:none;
}
/* soft floor shadow / reflection */
.product-gallery::after{
  content:"";position:absolute;left:50%;bottom:11%;transform:translateX(-50%);
  width:58%;height:24px;border-radius:50%;
  background:radial-gradient(ellipse, rgba(15,19,17,.28) 0%, rgba(15,19,17,.12) 35%, transparent 75%);
  filter:blur(6px);z-index:0;pointer-events:none;
}
.product-gallery img{
  position:relative;z-index:1;
  max-width:108%;max-height:108%;width:108%;height:auto;
  object-fit:contain;
  filter:drop-shadow(0 40px 45px rgba(15,42,36,.22)) drop-shadow(0 16px 18px rgba(15,42,36,.14));
  animation:productFloat 6s ease-in-out infinite;
  transform-origin:center;
}
@keyframes productFloat{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-10px)}
}
@media (prefers-reduced-motion: reduce){
  .product-gallery img{animation:none}
}
.product-gallery .badge-row{position:absolute;top:24px;left:24px;display:flex;gap:8px;z-index:2}

.mobile-cta-stack{display:none !important}
@media (max-width:900px){
  .product-info .product-cta-stack{display:none}
  .mobile-cta-stack{display:flex !important}
}
.product-gallery{position:relative}
.product-info{display:flex;flex-direction:column;gap:18px}
.product-name{font-size:clamp(36px,4.5vw,56px);font-weight:800;letter-spacing:-.04em;line-height:1;color:var(--ink)}
.product-name em{font-family:'Instrument Serif',serif;font-style:italic;font-weight:400;color:var(--teal)}
.product-tagline{font-size:16.5px;color:var(--ink-muted);line-height:1.5;max-width:520px}
.product-price-row{display:flex;align-items:baseline;gap:14px;padding:16px 0;border-top:1px solid var(--line);border-bottom:1px solid var(--line)}
.product-price{font-size:40px;font-weight:800;letter-spacing:-.03em;color:var(--ink)}
.product-price-old{font-size:18px;color:var(--muted);text-decoration:line-through}
.product-save{background:var(--lime);color:var(--ink);padding:4px 12px;border-radius:var(--r-pill);font-size:12px;font-weight:700;letter-spacing:.05em}

.product-quick-feats{display:grid;grid-template-columns:1fr 1fr;gap:10px}
.quick-feat{
  display:flex;align-items:center;gap:10px;
  background:var(--cream-soft);border:1px solid var(--line);
  border-radius:var(--r-md);padding:10px 14px;
}
.quick-feat .ico{
  width:28px;height:28px;border-radius:8px;background:var(--ink);color:var(--lime);
  display:flex;align-items:center;justify-content:center;font-size:13px;font-weight:700;flex-shrink:0;
}
.quick-feat span{font-size:13.5px;font-weight:500;color:var(--ink)}

.product-cta-stack{display:flex;flex-direction:column;gap:10px}
.product-cta-stack .btn{width:100%}

.amazon-row{display:flex;align-items:center;gap:14px;flex-wrap:wrap;padding-top:8px}
.amazon-row img{height:36px;width:auto}

/* ============================================================
   FEATURE DEEP (alternating)
   ============================================================ */
.feature-deep{padding:80px 0}
.feature-deep .grid{display:grid;grid-template-columns:1fr 1fr;gap:80px;align-items:center}
.feature-deep .grid.reverse{direction:rtl}
.feature-deep .grid.reverse > *{direction:ltr}
.feature-deep .visual{
  border-radius:var(--r-xl);overflow:hidden;
  background:var(--cream-deep);
  aspect-ratio:5/4;
  display:flex;align-items:center;justify-content:center;
  border:1px solid var(--line);position:relative;
}
.feature-deep .visual img{width:100%;height:100%;object-fit:cover}
.feature-deep .content{display:flex;flex-direction:column;gap:18px}
.feature-deep .label{
  font-family:'JetBrains Mono',monospace;font-size:11px;letter-spacing:.18em;text-transform:uppercase;
  color:var(--teal);font-weight:500;
}
.feature-deep h3{font-size:clamp(32px,4vw,48px);font-weight:800;letter-spacing:-.03em;line-height:1.05;color:var(--ink)}
.feature-deep h3 em{font-family:'Instrument Serif',serif;font-style:italic;font-weight:400;color:var(--teal)}
.feature-deep p{font-size:16px;color:var(--ink-muted);line-height:1.7;max-width:500px}

/* ============================================================
   ACCESSORIES PAGE
   ============================================================ */
.page-header{padding:80px 0 60px;text-align:center;position:relative}
.page-header h1{font-size:clamp(48px,7vw,96px);font-weight:800;letter-spacing:-.045em;line-height:1;color:var(--ink);margin-bottom:20px}
.page-header h1 em{font-family:'Instrument Serif',serif;font-style:italic;font-weight:400;color:var(--teal)}
.page-header p{font-size:18px;color:var(--ink-muted);max-width:600px;margin:0 auto 16px;line-height:1.6}

.acc-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;padding-bottom:80px}
.acc-card{
  background:var(--cream-soft);border:1px solid var(--line);
  border-radius:var(--r-lg);overflow:hidden;
  display:flex;flex-direction:column;
  transition:transform .3s var(--ease),box-shadow .3s,border-color .3s;
}
.acc-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-soft);border-color:var(--line-strong)}
.acc-card .acc-img{
  background:linear-gradient(135deg,var(--cream-deep),var(--lime-soft));
  padding:40px 30px;min-height:220px;
  display:flex;align-items:center;justify-content:center;
  position:relative;
}
.acc-card .acc-img img{max-height:160px;width:auto}
.acc-card .acc-save{
  position:absolute;top:16px;right:16px;
  background:var(--ink);color:var(--lime);
  padding:5px 12px;border-radius:var(--r-pill);
  font-family:'JetBrains Mono',monospace;font-size:10px;letter-spacing:.05em;
}
.acc-body{padding:24px;display:flex;flex-direction:column;gap:10px;flex:1}
.acc-name{font-size:18px;font-weight:700;letter-spacing:-.01em;color:var(--ink)}
.acc-price-row{display:flex;align-items:baseline;gap:10px}
.acc-price{font-size:24px;font-weight:800;letter-spacing:-.02em;color:var(--ink)}
.acc-price-old{font-size:14px;color:var(--muted);text-decoration:line-through}
.acc-specs{display:flex;flex-direction:column;gap:6px;margin-top:8px}
.acc-spec{font-size:13px;color:var(--ink-muted);display:flex;align-items:center;gap:8px}
.acc-spec::before{content:"";width:6px;height:6px;background:var(--lime);border-radius:50%}
.acc-cta{margin-top:14px}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-wrap{padding:80px 0}
.contact-grid{display:grid;grid-template-columns:1.1fr .9fr;gap:64px;align-items:start}
.contact-left{display:flex;flex-direction:column;gap:24px}
.contact-card{
  background:var(--cream-soft);border:1px solid var(--line);
  border-radius:var(--r-lg);padding:28px;
  display:flex;flex-direction:column;gap:6px;
  transition:border-color .2s,box-shadow .2s;
}
.contact-card:hover{border-color:var(--line-strong);box-shadow:var(--shadow-soft)}
.contact-card .label{
  font-family:'JetBrains Mono',monospace;font-size:11px;letter-spacing:.16em;text-transform:uppercase;
  color:var(--teal);font-weight:500;margin-bottom:4px;
}
.contact-card .value{font-size:24px;font-weight:700;letter-spacing:-.02em;color:var(--ink)}
.contact-card .value a:hover{color:var(--teal)}
.contact-card .note{font-size:13.5px;color:var(--ink-muted);margin-top:4px}

.contact-right{
  background:var(--ink);color:var(--cream);
  border-radius:var(--r-xl);padding:48px;
  display:flex;flex-direction:column;align-items:center;text-align:center;gap:20px;
  position:relative;overflow:hidden;
}
.contact-right::before{content:"";position:absolute;top:-30%;right:-30%;width:340px;height:340px;background:radial-gradient(circle,var(--lime) 0%,transparent 60%);opacity:.15;border-radius:50%}
.contact-right > *{position:relative;z-index:1}
.contact-right h3{font-size:28px;font-weight:700;letter-spacing:-.02em}
.contact-right .qr{width:180px;height:180px;border-radius:var(--r-md);border:6px solid var(--cream)}
.contact-right p{font-size:14px;color:rgba(245,241,234,.7);max-width:280px}

/* ============================================================
   SPECIAL THANKS
   ============================================================ */
.thanks-hero{padding:80px 0 40px;text-align:center}
.thanks-history{padding:60px 0;background:var(--cream-deep)}
.thanks-history .container-narrow{display:flex;flex-direction:column;gap:16px}
.thanks-history h2{font-size:32px;font-weight:700;letter-spacing:-.02em}
.thanks-history p{font-size:16.5px;color:var(--ink-muted);line-height:1.75}

.people-section{padding:100px 0}
.people-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:32px}
.person{
  display:flex;flex-direction:column;align-items:center;text-align:center;gap:14px;
  padding:24px;border-radius:var(--r-lg);
  transition:background .25s;
}
.person:hover{background:var(--cream-deep)}
.person-photo{
  width:140px;height:140px;border-radius:50%;
  object-fit:cover;object-position:top;
  border:3px solid var(--cream-soft);
  box-shadow:var(--shadow-soft);
  transition:transform .35s var(--ease);
}
.person:hover .person-photo{transform:scale(1.05)}
.person-name{font-size:16px;font-weight:700;letter-spacing:-.01em;color:var(--ink)}
.person-role{font-size:12px;color:var(--ink);background:var(--lime);padding:4px 12px;border-radius:var(--r-pill);font-weight:600;letter-spacing:.02em}

/* ============================================================
   LEGAL / WARRANTY
   ============================================================ */
.legal{max-width:780px;margin:0 auto;padding:80px 32px 100px}
.legal h1{font-size:clamp(36px,5vw,56px);font-weight:800;letter-spacing:-.035em;line-height:1.05;margin-bottom:12px;color:var(--ink)}
.legal .meta{font-size:13px;color:var(--ink-muted);font-family:'JetBrains Mono',monospace;margin-bottom:48px}
.legal h2{font-size:22px;font-weight:700;letter-spacing:-.01em;color:var(--ink);margin:40px 0 12px;padding-top:24px;border-top:1px solid var(--line)}
.legal h2:first-of-type{border-top:none;padding-top:0;margin-top:0}
.legal p,.legal li{font-size:15.5px;color:var(--ink-muted);line-height:1.75;margin-bottom:10px}
.legal ul,.legal ol{padding-left:20px;display:flex;flex-direction:column;gap:6px;margin-bottom:14px}
.legal a{color:var(--teal);text-decoration:underline}
.legal strong{color:var(--ink);font-weight:600}

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal{opacity:0;transform:translateY(28px);transition:opacity .7s var(--ease),transform .7s var(--ease)}
.reveal.visible{opacity:1;transform:translateY(0)}
.reveal-d1{transition-delay:.08s}
.reveal-d2{transition-delay:.16s}
.reveal-d3{transition-delay:.24s}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width:1100px){
  .bento{grid-template-columns:repeat(6,1fr);grid-auto-rows:auto}
  .bento-card{grid-column:span 6 !important;grid-row:auto !important;min-height:240px}
  .bento-card.b-med,.bento-card.b-small{grid-column:span 3 !important}
  .footer-top{grid-template-columns:1fr 1fr}
}
@media (max-width:900px){
  .site-nav{margin:8px 8px 0;max-width:none;border-radius:var(--r-lg)}
  .nav-inner{padding:0 8px 0 20px}
  .nav-links,.nav-cta{display:none}
  .nav-toggle{display:flex}
  .section{padding:80px 0}
  .stats{padding:56px 0}
  .showcase{padding:72px 0}
  .testimonials{padding:72px 0}
  .offer{padding:72px 0}
  .faq{padding:72px 0}
  .final-cta{padding:80px 0}
  .hero{padding-top:40px}
  .hero-grid,.product-hero-grid,.showcase-grid,.feature-deep .grid,.feature-deep .grid.reverse,.faq-grid,.offer-card,.contact-grid{grid-template-columns:1fr;gap:48px}
  .hero-grid{gap:24px}
  .feature-deep .grid.reverse{direction:ltr}
  .hero-right{min-height:auto;margin-top:0;order:1}
  .hero-left{order:2;gap:18px}
  .hero-left > .hero-headline{display:none}
  .hero-card-wrap{position:relative}
  .hero-headline-mobile{
    display:block;position:absolute;top:18px;left:50%;transform:translateX(-50%);
    width:min(360px, calc(100% - 32px));
    z-index:5;color:var(--cream);text-align:center;
    font-size:38px;line-height:1.02;margin:0;
    text-shadow:0 2px 22px rgba(0,0,0,.55), 0 1px 3px rgba(0,0,0,.4);
    pointer-events:none;
  }
  .hero-headline-mobile .accent{color:var(--lime)}
  .hero-headline-mobile .underline::after{display:none}
  .hero-product-card{transform:none;max-width:none;width:100%;margin:0 auto;padding:0;aspect-ratio:auto;height:calc(100svh - 180px);max-height:none;min-height:380px}
  .hero-product-card .card-foot{display:none}
  .hero-pill-row-below{margin-top:8px}
  .hero-product-card::before{
    background:linear-gradient(180deg, rgba(8,26,22,.78) 0%, rgba(8,26,22,.25) 30%, rgba(8,26,22,0) 55%, rgba(8,26,22,.92) 100%);
  }
  .hero-product-card .card-head{display:none}
  .hero-chip{display:none}
  .stats-grid{grid-template-columns:repeat(2,1fr);gap:32px 24px}
  .steps,.testimonial-grid,.acc-grid{grid-template-columns:1fr}
  .acc-grid{max-width:420px;margin:0 auto}
  .people-grid{grid-template-columns:repeat(2,1fr);gap:20px}
  .offer-card{padding:40px 28px}
  .process{padding:80px 0;margin:0 12px;border-radius:var(--r-lg)}
  .container,.container-narrow{padding-left:20px;padding-right:20px}
  .footer-top{grid-template-columns:1fr;gap:32px}
  .sticky-buy{display:none}
  body.show-sticky-buy .sticky-buy{display:flex}
  body{padding-bottom:80px}
  .testi.featured{grid-column:span 1}
  .final-cta{padding:80px 0}
  .marquee{margin-top:32px}
  .bento-card,.bento-card.b-med,.bento-card.b-small,.bento-card.b-large,.bento-card.b-tall,.bento-card.b-wide{grid-column:span 6 !important;grid-row:auto !important}
  .bento-card.b-large h3{font-size:28px}
  .bento-card.b-large .visual{display:none}
  .hero-ctas{flex-direction:column;align-items:stretch;width:100%}
  .hero-ctas .btn{width:100%;justify-content:center}
  .hero-pill-row,.hero-pill-row-below{flex-wrap:wrap}
}
@media (max-width:500px){
  .stats-grid{grid-template-columns:1fr}
  .people-grid{grid-template-columns:1fr;max-width:280px;margin:0 auto}
  .product-quick-feats{grid-template-columns:1fr}
  .hero-headline-mobile{font-size:42px;width:min(340px, calc(100% - 24px))}
  .nav-toggle{width:38px;height:38px}
}

/* ============================================================
   FONT AWESOME ICON TWEAKS
   ============================================================ */
.fa-solid,.fa-regular,.fa-brands{line-height:1}
.stars{display:inline-flex;gap:3px;align-items:center}
.testi .stars i{font-size:14px}
.pill .fa-star{font-size:11px;margin-right:4px;color:var(--amber)}
.tag .fa-star{font-size:10px;margin-right:5px}
.step-num{font-size:44px !important;color:var(--lime)}
.chip-icon i{font-size:13px}
.marquee-item .ico i{font-size:11px}

/* Hero chip phone-number ticker — rotates through international codes */
.call-ticker{
  display:inline-block;height:1.25em;line-height:1.25em;
  overflow:hidden;vertical-align:bottom;
  font-variant-numeric:tabular-nums;font-feature-settings:"tnum";
  min-width:11ch;
}
.call-ticker .track{
  display:block;
  animation:callTickerRoll 12s cubic-bezier(.7,.05,.3,.95) infinite;
}
.call-ticker .track > span{
  display:block;height:1.25em;line-height:1.25em;white-space:nowrap;
}
@keyframes callTickerRoll{
  0%,   18% {transform:translateY(0)}
  20%,  38% {transform:translateY(-20%)}
  40%,  58% {transform:translateY(-40%)}
  60%,  78% {transform:translateY(-60%)}
  80%, 100% {transform:translateY(-80%)}
}
@media (prefers-reduced-motion: reduce){
  .call-ticker{height:auto}
  .call-ticker .track{animation:none}
  .call-ticker .track > span:not(:first-child){display:none}
}

/* ===== Scroll cue ===== */
.scroll-cue{
  position:fixed;left:50%;bottom:22px;transform:translateX(-50%);
  z-index:60;display:inline-flex;align-items:center;gap:10px;
  padding:10px 16px 10px 18px;border-radius:var(--r-pill);
  background:rgba(15,19,17,.88);color:var(--cream);
  font-size:12px;font-weight:600;letter-spacing:.12em;text-transform:uppercase;
  text-decoration:none;
  backdrop-filter:saturate(140%) blur(8px);
  -webkit-backdrop-filter:saturate(140%) blur(8px);
  border:1px solid rgba(200,240,81,.35);
  box-shadow:0 10px 30px rgba(0,0,0,.25), 0 0 0 6px rgba(200,240,81,.06);
  opacity:1;transition:opacity .4s ease, transform .4s ease;
  animation:cueFloat 2.2s ease-in-out infinite;
}
.scroll-cue:hover{color:var(--lime)}
.scroll-cue .cue-arrow{
  width:22px;height:22px;border-radius:50%;
  background:var(--lime);color:var(--ink);
  display:inline-flex;align-items:center;justify-content:center;
  font-size:10px;
}
.scroll-cue.is-hidden{opacity:0;pointer-events:none;transform:translate(-50%, 20px)}
@keyframes cueFloat{
  0%,100%{transform:translate(-50%, 0)}
  50%{transform:translate(-50%, -6px)}
}
@media (prefers-reduced-motion: reduce){
  .scroll-cue{animation:none}
}
@media (max-width: 600px){
  .scroll-cue{display:none}
}

@media (max-width: 900px){
  .hero-meta{font-size:13px;gap:10px 16px}
}

/* Accessories page origin disclosure */
.origin-note{
  display:inline-flex;align-items:flex-start;gap:10px;
  margin-top:18px;padding:14px 20px;
  background:var(--cream-soft);border:1px solid var(--line);
  border-radius:14px;
  font-size:13px;color:var(--ink-muted);
  text-align:left;line-height:1.5;
  max-width:680px;
}
@media (max-width: 600px){
  .origin-note{
    display:flex;width:100%;max-width:100%;
  }
}
.origin-note img{width:18px;height:auto;border-radius:2px;display:inline-block;flex-shrink:0}
