/* ============================================================
   DittoTech — style.css v4
   Dark futuristic NFC brand · Cambodia
   ============================================================ */

/* ── Reset ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
  font-family: var(--font-body);
  background: var(--c-bg);
  color: var(--c-text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, picture, video, canvas, svg { display: block; max-width: 100%; }
input, button, textarea, select { font: inherit; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* ── Tokens ──────────────────────────────────────────────────── */
:root {
  /* Colour */
  --c-bg:        #03030a;
  --c-surface:   rgba(255,255,255,0.03);
  --c-surface2:  rgba(255,255,255,0.06);
  --c-border:    rgba(255,255,255,0.07);
  --c-border2:   rgba(255,255,255,0.13);
  --c-purple:    #7C3AED;
  --c-violet:    #A78BFA;
  --c-cyan:      #38BDF8;
  --c-pink:      #E879F9;
  --c-tg:        #229ED9;
  --c-text:      #F8FAFC;
  --c-muted:     rgba(248,250,252,0.5);
  --c-subtle:    rgba(248,250,252,0.26);

  /* Typography */
  --font-head: 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Radius */
  --r-sm:   6px;
  --r-md:   14px;
  --r-lg:   24px;
  --r-xl:   40px;
  --r-full: 999px;

  /* Motion */
  --ease-out:    cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --dur:         0.4s;
  --dur-fast:    0.18s;

  /* Layout */
  --max-w:      1120px;
  --pad:        clamp(1.25rem, 5vw, 2.5rem);
  --section-py: clamp(5rem, 10vw, 9rem);
}

/* ── Fonts ───────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@400;500&family=JetBrains+Mono:wght@400;500&display=swap');

/* ── Utilities ───────────────────────────────────────────────── */
.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: absolute; top: -100%; left: 1rem;
  background: var(--c-purple); color: #fff;
  padding: .5rem 1rem; border-radius: var(--r-sm);
  font-size: .875rem; z-index: 9999;
  transition: top var(--dur-fast);
}
.skip-link:focus { top: 1rem; }

.grad     { background: linear-gradient(135deg, var(--c-violet) 0%, var(--c-cyan) 100%);
            -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
            padding-bottom: .15em; /* prevent descender clipping on g, p, y */ }
.grad-alt { background: linear-gradient(135deg, var(--c-pink) 0%, var(--c-violet) 50%, var(--c-cyan) 100%);
            -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.container {
  width: 100%; max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--pad);
}

.site-wrapper { position: relative; z-index: 1; }

/* ── Canvas & cursor ─────────────────────────────────────────── */
#lava-canvas {
  position: fixed; inset: 0; z-index: 0;
  pointer-events: none;
  width: 100%; height: 100%;
  /* No CSS filter — blob blur is applied in JS per-draw so stars remain sharp */
}
.cursor-glow {
  position: fixed; z-index: 0; pointer-events: none;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124,58,237,0.12) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  transition: opacity .4s;
}

/* ── Skip ────────────────────────────────────────────────────── */

/* ── NAV ─────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 202;
  background: rgba(3,3,10,0.75);
  backdrop-filter: blur(20px) saturate(1.6);
  -webkit-backdrop-filter: blur(20px) saturate(1.6);
  border-bottom: 1px solid var(--c-border);
  padding: 0 var(--pad);
  height: 60px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  transition: background var(--dur), border-color var(--dur), box-shadow var(--dur);
}
.nav--scrolled {
  background: rgba(3,3,10,0.92);
  border-color: rgba(255,255,255,0.1);
  box-shadow: 0 4px 32px rgba(0,0,0,0.5);
}

.nav__logo {
  display: flex; align-items: center; gap: .55rem;
  flex-shrink: 0;
  text-decoration: none;
}
.nav__logo img, .nav__logo picture { width: 28px; height: 28px; border-radius: 7px; flex-shrink: 0; }
.nav__logo span {
  font-family: var(--font-head); font-weight: 700;
  font-size: 1rem; letter-spacing: -.02em;
  color: var(--c-text);
  white-space: nowrap;
}

/* Center nav links */
.nav__links {
  display: none;
  align-items: center; gap: .1rem;
  position: absolute; left: 50%; transform: translateX(-50%);
}
.nav__links a {
  font-family: var(--font-head); font-size: .82rem; font-weight: 500;
  color: var(--c-muted);
  padding: .38rem .7rem;
  border-radius: var(--r-full);
  white-space: nowrap;
  transition: color var(--dur-fast), background var(--dur-fast);
}
.nav__links a:hover,
.nav__links a.active,
.nav__links a.nav__link--active {
  color: var(--c-text);
  background: rgba(255,255,255,0.07);
}

.nav__actions { display: flex; align-items: center; gap: .5rem; flex-shrink: 0; }

.nav__cta {
  font-family: var(--font-head); font-size: .8rem; font-weight: 600;
  background: linear-gradient(135deg, var(--c-purple), #1E3A8A);
  color: #fff; border: none; cursor: pointer;
  padding: .48rem 1.1rem; border-radius: var(--r-full);
  transition: opacity var(--dur-fast), transform var(--dur-fast), box-shadow var(--dur-fast);
  text-decoration: none; display: inline-flex; align-items: center;
  white-space: nowrap;
}
.nav__cta:hover {
  opacity: .9; transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(124,58,237,0.4);
}

/* Burger button — visible on mobile only */
.nav__burger {
  width: 38px; height: 38px; border-radius: var(--r-sm);
  background: rgba(255,255,255,0.06); border: 1px solid var(--c-border2);
  cursor: pointer; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 5px;
  transition: background var(--dur-fast), border-color var(--dur-fast);
  flex-shrink: 0;
}
.nav__burger:hover { background: rgba(255,255,255,0.11); border-color: rgba(255,255,255,0.2); }
.nav__burger span {
  display: block; width: 16px; height: 1.5px;
  background: var(--c-text); border-radius: 2px;
  transition: transform var(--dur) var(--ease-out), opacity var(--dur-fast), width var(--dur-fast);
}
.nav__burger span:nth-child(3) { width: 10px; }
.nav__burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); width: 16px; }
.nav__burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); width: 16px; }

/* ── Mobile fullscreen menu — slides in from right ─────────── */
.nav__sheet {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(320px, 88vw);
  z-index: 201;
  background: rgba(5, 5, 16, 0.98);
  backdrop-filter: blur(32px) saturate(1.4);
  -webkit-backdrop-filter: blur(32px) saturate(1.4);
  border-left: 1px solid rgba(255,255,255,0.07);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 5rem 1.75rem calc(2.5rem + env(safe-area-inset-bottom));
  transform: translateX(100%);
  transition: transform .38s var(--ease-out);
  pointer-events: none;
  overflow-y: auto;
  overflow-x: hidden;
}
.nav__sheet.open {
  transform: translateX(0);
  pointer-events: all;
}

/* Close button in sheet */
.nav__sheet-close {
  position: absolute; top: 1rem; right: 1rem;
  background: rgba(255,255,255,0.06); border: 1px solid var(--c-border2);
  color: var(--c-muted); border-radius: var(--r-sm);
  width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; line-height: 1; cursor: pointer;
  transition: background var(--dur-fast), color var(--dur-fast);
}
.nav__sheet-close:hover { background: rgba(255,255,255,0.12); color: var(--c-text); }

/* Sheet brand row */
.nav__sheet-brand {
  display: flex; align-items: center; gap: .5rem;
  position: absolute; top: 1rem; left: 1.75rem;
  font-family: var(--font-head); font-weight: 700;
  font-size: .9rem; color: var(--c-text);
  text-decoration: none;
}
.nav__sheet-brand img { width: 24px; height: 24px; border-radius: 5px; }

/* Nav links in sheet */
.nav__sheet nav {
  display: flex; flex-direction: column; gap: 0;
  margin-bottom: 2rem;
}
.nav__sheet a:not(.nav__sheet-cta):not(.nav__sheet-brand) {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 600; letter-spacing: -.025em;
  color: var(--c-muted);
  padding: .7rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  display: flex; align-items: center; justify-content: space-between;
  transition: color var(--dur-fast), padding-left var(--dur-fast);
}
.nav__sheet a:not(.nav__sheet-cta):not(.nav__sheet-brand):last-child { border-bottom: none; }
.nav__sheet a:not(.nav__sheet-cta):not(.nav__sheet-brand)::after {
  content: '→';
  font-size: .75rem;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity var(--dur-fast), transform var(--dur-fast);
}
.nav__sheet a:not(.nav__sheet-cta):not(.nav__sheet-brand):hover,
.nav__sheet a.active,
.nav__sheet a.nav__link--active {
  color: var(--c-text);
  padding-left: .25rem;
}
.nav__sheet a:not(.nav__sheet-cta):not(.nav__sheet-brand):hover::after,
.nav__sheet a.active::after,
.nav__sheet a.nav__link--active::after { opacity: .5; transform: translateX(0); }

/* Sheet CTA button */
.nav__sheet .nav__sheet-cta {
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  background: linear-gradient(135deg, var(--c-purple) 0%, #1E3A8A 100%);
  color: #fff; font-family: var(--font-head); font-weight: 600;
  font-size: .95rem; border-radius: var(--r-full);
  padding: .85rem 1.5rem; text-decoration: none;
  transition: box-shadow var(--dur-fast), transform var(--dur-fast);
  border: none; margin-top: auto;
}
.nav__sheet .nav__sheet-cta:hover {
  box-shadow: 0 6px 28px rgba(124,58,237,0.45);
  transform: translateY(-2px);
}

/* Backdrop dimmer */
.nav__overlay {
  display: block;
  position: fixed; inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.65);
  opacity: 0;
  pointer-events: none;
  transition: opacity .38s var(--ease-out);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
.nav__overlay.open {
  opacity: 1;
  pointer-events: all;
}

/* Hide drag handle (not needed for side sheet) */
.nav__sheet-handle { display: none; }

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-head); font-weight: 600;
  border: none; cursor: pointer; border-radius: var(--r-full);
  padding: .7rem 1.5rem; font-size: .9rem;
  transition: transform var(--dur-fast), box-shadow var(--dur-fast), opacity var(--dur-fast);
  text-decoration: none; white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary {
  background: linear-gradient(135deg, var(--c-purple) 0%, #1E3A8A 100%);
  color: #fff;
}
.btn--primary:hover { box-shadow: 0 6px 28px rgba(124,58,237,0.45); }
.btn--telegram {
  background: linear-gradient(135deg, var(--c-tg) 0%, #1a85c4 100%);
  color: #fff;
}
.btn--telegram:hover { box-shadow: 0 6px 28px rgba(34,158,217,0.45); }
.btn--ghost {
  background: transparent;
  border: 1px solid var(--c-border2);
  color: var(--c-muted);
}
.btn--ghost:hover { border-color: var(--c-violet); color: var(--c-text); }
.btn--outline {
  background: transparent;
  border: 1px solid var(--c-border2);
  color: var(--c-text);
}
.btn--outline:hover { border-color: var(--c-violet); box-shadow: 0 0 20px rgba(167,139,250,0.15); }
.btn--sm { padding: .5rem 1.1rem; font-size: .82rem; }
.btn--lg { padding: .9rem 2rem; font-size: 1rem; }

/* ── CHIP ────────────────────────────────────────────────────── */
.chip {
  display: inline-flex; align-items: center; gap: .45rem;
  font-family: var(--font-mono); font-size: .72rem;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--c-violet);
  border: 1px solid rgba(167,139,250,0.25);
  background: rgba(167,139,250,0.07);
  padding: .3rem .75rem; border-radius: var(--r-full);
}
.chip--live::before {
  content: ''; display: block;
  width: 6px; height: 6px; border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 0 rgba(74,222,128,0.5);
  animation: pulse-dot 1.8s infinite;
}
@keyframes pulse-dot {
  0%   { box-shadow: 0 0 0 0 rgba(74,222,128,0.5); }
  70%  { box-shadow: 0 0 0 6px rgba(74,222,128,0); }
  100% { box-shadow: 0 0 0 0 rgba(74,222,128,0); }
}

/* ── HERO ────────────────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  display: grid;
  grid-template-rows: 1fr auto;
  padding-top: 60px; /* nav height */
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 1.5rem;
  padding: 2.5rem var(--pad) 2rem;
}
@media (min-width: 900px) {
  .hero__inner {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 3rem clamp(3rem, 8vw, 7rem);
  }
}
.hero__body {
  display: flex; flex-direction: column;
  align-items: flex-start; justify-content: center;
  text-align: left;
  gap: 1.5rem;
  order: 2; /* text below on mobile */
}
@media (min-width: 900px) {
  .hero__body { order: 1; gap: 2rem; } /* text left on desktop */
}
.hero__label {
  font-family: var(--font-mono); font-size: .72rem;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--c-subtle);
}
.hero__title {
  font-family: var(--font-head); font-weight: 700;
  font-size: clamp(2.6rem, 7vw, 7rem);
  line-height: 1; letter-spacing: -.04em;
  max-width: 14ch;
  perspective: 900px;
  perspective-origin: 50% 60%;
  padding-bottom: .15em; /* prevent descenders (g, p, y) from clipping */
  overflow: visible;
}

/* 3-D entrance: fly in from depth, rotate into place */
@keyframes hero-title-in {
  0% {
    opacity: 0;
    transform: perspective(900px) rotateX(28deg) translateY(40px) translateZ(-80px);
    filter: blur(6px);
  }
  60% {
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: perspective(900px) rotateX(0deg) translateY(0) translateZ(0);
    filter: blur(0);
  }
}

/* Each word gets its own span so we can stagger — base delay of 2.1s lets
   the loader finish before the 3D entrance begins */
.hero__title .word {
  display: inline-block;
  opacity: 0;
  animation: hero-title-in .7s var(--ease-out) forwards;
}
.hero__title .word:nth-child(1) { animation-delay: 2.10s; }
.hero__title .word:nth-child(2) { animation-delay: 2.23s; }
.hero__title .word:nth-child(3) { animation-delay: 2.36s; }
.hero__title .word:nth-child(4) { animation-delay: 2.49s; }
.hero__title .word:nth-child(5) { animation-delay: 2.62s; }
.hero__title .word:nth-child(6) { animation-delay: 2.75s; }

@media (prefers-reduced-motion: reduce) {
  .hero__title .word {
    opacity: 1;
    animation: none;
  }
}
.hero__sub {
  font-size: clamp(.95rem, 2vw, 1.1rem);
  color: var(--c-muted); max-width: 440px;
  line-height: 1.65;
}
.hero__ctas {
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: flex-start;
  gap: .75rem;
}

/* ── HERO VISUAL (carousel column) ──────────────────────────── */
.hero__visual {
  position: relative;
  order: 1;
  width: 100%;
  height: clamp(260px, 50vw, 400px);
  max-width: 420px;
  margin: 0 auto;
  overflow: visible;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (min-width: 900px) {
  .hero__visual {
    order: 2;
    max-width: none;
    height: 680px;
  }
}

/* ── HERO CAROUSEL — 3D coverflow ───────────────────────────── */
.hero__carousel {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: visible;
  perspective: 900px;
  perspective-origin: 50% 50%;
}

/* track is the 3D scene origin — centred in the carousel */
.hero__track {
  position: absolute;
  top: 50%; left: 50%;
  width: 0; height: 0;
  transform-style: preserve-3d;
}

/* each item centred on the track origin; JS applies its offset */
.hero__product {
  position: absolute;
  top: 0; left: 0;
  width: 280px;
  /* horizontal: pull left by half width so origin = item centre */
  margin-left: -140px;
  /* vertical: translateY(-50%) applied by hero-products.js keeps item
     centred on the track origin regardless of intrinsic height */
  margin-top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  cursor: pointer;
  will-change: transform, opacity, filter;
  backface-visibility: hidden;
}
@media (min-width: 900px) {
  .hero__product {
    width: 500px;
    height: 420px; /* fixed: tallest product (NFC tag ~380px + label) — ensures
                      translateY(-50%) = -210px for every item, consistent centre */
    margin-left: -250px;
    margin-top: 0;
  }
}

.hero__product--active { cursor: default; }

.hero__product-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-violet);
  opacity: 0.8;
  white-space: nowrap;
  transition: opacity 0.4s ease;
  position: relative;
  z-index: 2;
}
.hero__product--side .hero__product-label { opacity: 0.2; }

/* Carousel dot indicators */
.hero__carousel-dots {
  display: flex;
  gap: .45rem;
  justify-content: center;
  position: absolute;
  bottom: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}
.hero__carousel-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--c-border2);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, transform 0.3s, width 0.3s;
}
.hero__carousel-dot--active {
  background: var(--c-violet);
  transform: scale(1.35);
  width: 18px;
  border-radius: 3px;
}

.hero__visual-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
  pointer-events: none;
  z-index: 0;
}
.hero__visual-glow--1 {
  width: 55%;
  aspect-ratio: 1;
  background: radial-gradient(ellipse, rgba(124,58,237,0.45) 0%, transparent 70%);
  top: 10%; left: 15%;
  animation: glow-drift-1 7s ease-in-out infinite;
}
.hero__visual-glow--2 {
  width: 45%;
  aspect-ratio: 1;
  background: radial-gradient(ellipse, rgba(56,189,248,0.3) 0%, transparent 70%);
  bottom: 8%; right: 10%;
  animation: glow-drift-2 9s ease-in-out infinite;
}
@keyframes glow-drift-1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%       { transform: translate(8%, 12%) scale(1.1); }
}
@keyframes glow-drift-2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%       { transform: translate(-6%, -10%) scale(1.08); }
}


/* Hero ticker */
.hero__ticker {
  width: 100%; overflow: hidden;
  border-top: 1px solid var(--c-border);
  padding: 1rem 0;
  mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
}
.marquee-track {
  display: flex; align-items: center; gap: 2rem;
  white-space: nowrap;
  animation: ticker 28s linear infinite;
  width: max-content;
}
.marquee-track span {
  font-family: var(--font-mono); font-size: .72rem;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--c-subtle);
}
.marquee-track .grad-alt { font-size: .65rem; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── SECTIONS ────────────────────────────────────────────────── */
.section {
  padding-block: var(--section-py);
}
.section--alt {
  /* transparent — lava-lamp canvas shows through all sections */
}

/* Section label + heading pattern */
.sec-label {
  font-family: var(--font-mono); font-size: .72rem;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--c-subtle); display: block;
  margin-bottom: .75rem;
}
.sec-head {
  font-family: var(--font-head); font-weight: 700;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  line-height: 1.05; letter-spacing: -.03em;
  max-width: 16ch;
}
.sec-head--center { text-align: center; max-width: none; }
.sec-sub {
  font-size: clamp(.9rem, 1.8vw, 1rem);
  color: var(--c-muted); margin-top: 1rem;
  max-width: 480px; line-height: 1.7;
}
.sec-sub--center { max-width: 540px; margin-inline: auto; text-align: center; }

/* ── REVEAL ──────────────────────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity .6s var(--ease-out), transform .6s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── PRODUCTS GRID (homepage) ────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3.5rem;
}
.product-card {
  background: transparent;
  border: none;
  border-radius: var(--r-lg);
  overflow: visible;
  transition: transform var(--dur), filter var(--dur);
  display: flex; flex-direction: column;
}
.product-card:hover {
  transform: translateY(-6px);
  filter: drop-shadow(0 20px 48px rgba(124,58,237,0.25));
}
.product-card__img-wrap {
  aspect-ratio: 4/3; overflow: hidden;
  background: transparent;
  display: flex; align-items: center; justify-content: center;
}
.product-card__img-wrap picture { width: 100%; height: 100%; }
.product-card__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease-out);
}
.product-card:hover .product-card__img { transform: scale(1.04); }
.product-card__body {
  padding: 1.25rem 0 0;
  display: flex; flex-direction: column;
  gap: .75rem; flex: 1;
}
.product-card__tag {
  font-family: var(--font-mono); font-size: .68rem;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--c-violet);
}
.product-card__title {
  font-family: var(--font-head); font-size: 1.25rem;
  font-weight: 700; letter-spacing: -.02em;
}
.product-card__desc {
  font-size: .88rem; color: var(--c-muted);
  line-height: 1.65; flex: 1;
}
.product-card__ctas {
  display: flex; gap: .6rem; flex-wrap: wrap;
  margin-top: .25rem;
}

/* ── PRODUCT CARD VISUAL CONTAINER ─────────────────────────────── */
.product-card__visual {
  position: relative;
  aspect-ratio: 4 / 3;
  display: flex; align-items: center; justify-content: center;
  overflow: visible;
}
/* Constrain keychain (350×432) inside the 4:3 visual container.
   Override the intrinsic width/height so the card doesn't grow taller
   than the sticker/stand cards. The internal layout still works because
   all children are position:absolute or flex-centred. */
.product-card__visual .keychain-float {
  width: 210px;
  height: 258px;
}
.product-card__visual--canvas {
  overflow: hidden;
  border-radius: var(--r-lg) var(--r-lg) 0 0;
}
.product-card__stl-canvas {
  display: block; width: 100%; height: 100%;
  pointer-events: none; position: relative; z-index: 1;
}
.product-card__stl-glow {
  position: absolute; border-radius: 50%;
  filter: blur(48px); pointer-events: none; z-index: 0;
}
.product-card__stl-glow--1 {
  width: 60%; aspect-ratio: 1;
  background: radial-gradient(ellipse, rgba(124,58,237,0.4) 0%, transparent 70%);
  top: 10%; left: 15%;
}
.product-card__stl-glow--2 {
  width: 45%; aspect-ratio: 1;
  background: radial-gradient(ellipse, rgba(56,189,248,0.25) 0%, transparent 70%);
  bottom: 8%; right: 10%;
}

/* ── FLOATING STICKER ANIMATION ─────────────────────────────────── */
.sticker-float {
  position: relative;
  width: 260px; height: 281px;
  display: flex; align-items: center; justify-content: center;
}
.sticker-float__glow {
  position: absolute; border-radius: 50%;
  filter: blur(40px); pointer-events: none;
}
.sticker-float__glow--1 {
  width: 180px; height: 180px;
  background: rgba(124,58,237,0.55);
  top: 10%; left: 10%;
  animation: sfGlow1 5s ease-in-out infinite;
}
.sticker-float__glow--2 {
  width: 130px; height: 130px;
  background: rgba(56,189,248,0.42);
  bottom: 10%; right: 8%;
  animation: sfGlow2 6s ease-in-out infinite 0.8s;
}
@keyframes sfGlow1 {
  0%,100% { transform: translate(0,0) scale(1); opacity:.7; }
  50%      { transform: translate(6px,-10px) scale(1.12); opacity:1; }
}
@keyframes sfGlow2 {
  0%,100% { transform: translate(0,0) scale(1); opacity:.5; }
  50%      { transform: translate(-5px,8px) scale(1.15); opacity:.85; }
}
.sticker-float__tag {
  position: relative;
  width: 190px; height: 190px;
  border-radius: 34px;
  background: linear-gradient(145deg, #2d1a5e 0%, #1a0e3a 60%, #261545 100%);
  border: 1px solid rgba(167,139,250,0.55);
  box-shadow:
    0 18px 48px rgba(0,0,0,0.55),
    0 0 0 1px rgba(124,58,237,0.3),
    0 0 32px rgba(124,58,237,0.25),
    inset 0 1px 0 rgba(167,139,250,0.35);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  animation: sfFloat 4s ease-in-out infinite;
}
@keyframes sfFloat {
  0%,100% { transform: translateY(0) rotate(-3deg); }
  50%      { transform: translateY(-16px) rotate(-3deg); }
}
.sticker-float__holo {
  position: absolute; inset: 0; border-radius: inherit;
  background: linear-gradient(
    115deg,
    transparent 20%,
    rgba(167,139,250,0.22) 38%,
    rgba(56,189,248,0.28) 50%,
    rgba(232,121,249,0.18) 62%,
    transparent 80%
  );
  background-size: 200% 200%;
  animation: sfHolo 4.5s ease-in-out infinite;
}
@keyframes sfHolo {
  0%,100% { background-position: 0% 50%; opacity:.5; }
  50%      { background-position: 100% 50%; opacity:1; }
}
.sticker-float__brand {
  position: relative; z-index: 1;
  display: flex; flex-direction: column;
  align-items: center; gap: 6px;
}
.sticker-float__logo-ring {
  display: block; width: 68px; height: 68px;
  border-radius: 18px;
  border: 2.5px solid rgba(167,139,250,0.7);
  box-shadow:
    0 0 12px rgba(124,58,237,0.5),
    inset 0 0 8px rgba(124,58,237,0.2);
  animation: sfRingPulse 2.5s ease-in-out infinite;
}
@keyframes sfRingPulse {
  0%,100% { box-shadow: 0 0 10px rgba(124,58,237,0.45), inset 0 0 6px rgba(124,58,237,0.15); }
  50%      { box-shadow: 0 0 22px rgba(124,58,237,0.75), inset 0 0 14px rgba(124,58,237,0.35); }
}
.sticker-float__wordmark {
  font-family: var(--font-mono); font-size: .65rem;
  letter-spacing: .18em; font-weight: 700;
  color: rgba(167,139,250,0.85);
  text-transform: uppercase;
}
.sticker-float__wave {
  position: absolute; left: 50%; bottom: 18px;
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1.5px solid rgba(56,189,248,0.5);
  transform: translateX(-50%);
  animation: sfWave 2.2s ease-out infinite;
}
.sticker-float__wave--1 { animation-delay: 0s; }
.sticker-float__wave--2 { animation-delay: 0.55s; }
.sticker-float__wave--3 { animation-delay: 1.1s; }
@keyframes sfWave {
  0%   { transform: translateX(-50%) scale(0.6); opacity:.9; }
  100% { transform: translateX(-50%) scale(2.2); opacity:0; }
}
/* Peel corner */
.sticker-float__peel {
  position: absolute; bottom: 0; right: 0;
  width: 21px; height: 21px;
  background: linear-gradient(
    225deg,
    rgba(167,139,250,0.18) 0%,
    rgba(124,58,237,0.08) 40%,
    transparent 60%
  );
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  border-bottom-right-radius: 26px;
}
.sticker-float__peel::after {
  content: '';
  position: absolute; bottom: 6px; right: 6px;
  width: 12px; height: 12px;
  background: linear-gradient(135deg, rgba(167,139,250,0.45), rgba(56,189,248,0.3));
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  border-radius: 0 0 4px 0;
}
.sticker-float__shadow {
  position: absolute; bottom: -18px; left: 50%;
  transform: translateX(-50%);
  width: 100px; height: 14px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(124,58,237,0.35) 0%, transparent 70%);
  animation: sfShadow 4s ease-in-out infinite;
}
@keyframes sfShadow {
  0%,100% { transform: translateX(-50%) scale(1);   opacity:.6; }
  50%      { transform: translateX(-50%) scale(.65); opacity:.25; }
}

/* ── CSS 3D ACRYLIC STAND ─────────────────────────────────────── */
.stand-float {
  position: relative;
  width: 280px; height: 300px;
  display: flex; align-items: center; justify-content: flex-end;
  flex-direction: column;
}
.stand-float__glow {
  position: absolute; border-radius: 50%;
  filter: blur(44px); pointer-events: none;
}
.stand-float__glow--1 {
  width: 160px; height: 210px;
  background: rgba(124,58,237,0.5);
  top: 0; left: 20%;
  animation: stGlow1 5.5s ease-in-out infinite;
}
.stand-float__glow--2 {
  width: 100px; height: 100px;
  background: rgba(56,189,248,0.38);
  bottom: 20%; right: 5%;
  animation: stGlow2 7s ease-in-out infinite 1s;
}
@keyframes stGlow1 {
  0%,100% { transform: translate(0,0) scale(1); opacity:.7; }
  50%      { transform: translate(5px,-8px) scale(1.1); opacity:1; }
}
@keyframes stGlow2 {
  0%,100% { transform: translate(0,0) scale(1); opacity:.5; }
  50%      { transform: translate(-4px,6px) scale(1.15); opacity:.8; }
}
.stand-float__scene {
  position: relative;
  perspective: 600px;
  animation: stFloat 4.2s ease-in-out infinite;
}
@keyframes stFloat {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}
.stand-float__body {
  position: relative;
  width: 104px; height: 158px;
  transform-style: preserve-3d;
  transform: rotateX(4deg) rotateY(-22deg);
}
.stand-float__face {
  position: absolute;
  backface-visibility: hidden;
}
.stand-float__face--front {
  width: 104px; height: 158px;
  border-radius: 10px;
  background: linear-gradient(160deg,
    rgba(167,139,250,0.4) 0%,
    rgba(56,189,248,0.22) 50%,
    rgba(124,58,237,0.32) 100%
  );
  border: 1px solid rgba(167,139,250,0.6);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.2),
    0 0 32px rgba(124,58,237,0.5);
  transform: translateZ(4px);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.stand-float__holo {
  position: absolute; inset: 0; border-radius: inherit;
  background: linear-gradient(115deg,
    transparent 20%,
    rgba(167,139,250,0.25) 40%,
    rgba(56,189,248,0.32) 55%,
    transparent 75%
  );
  background-size: 200% 200%;
  animation: stHolo 5s ease-in-out infinite;
}
@keyframes stHolo {
  0%,100% { background-position: 0% 50%; opacity:.5; }
  50%      { background-position: 100% 50%; opacity:1; }
}
.stand-float__content {
  position: relative; z-index: 1;
  display: flex; flex-direction: column;
  align-items: center; gap: 8px;
}
.stand-float__icon {
  display: block; width: 28px; height: 28px;
  color: rgba(167,139,250,0.9);
}
.stand-float__icon svg { width: 100%; height: 100%; }
.stand-float__label {
  font-family: var(--font-mono); font-size: .55rem;
  letter-spacing: .12em; text-transform: uppercase;
  color: rgba(167,139,250,0.7);
}
.stand-float__chip {
  position: absolute; bottom: 12px; right: 10px;
  width: 14px; height: 10px;
  background: linear-gradient(135deg, #c8a870, #e8c888, #a07830);
  border-radius: 2px;
  box-shadow: 0 0 4px rgba(200,168,112,0.5);
}
.stand-float__scan {
  position: absolute; left: 0; right: 0; height: 1.5px;
  background: linear-gradient(90deg,
    transparent 0%, rgba(56,189,248,0.8) 30%,
    rgba(56,189,248,1) 50%, rgba(56,189,248,0.8) 70%, transparent 100%
  );
  box-shadow: 0 0 6px rgba(56,189,248,0.5);
  animation: stScan 3s ease-in-out infinite;
  top: 0;
}
@keyframes stScan {
  0%   { top: 0; opacity: 0; }
  5%   { opacity: 1; }
  95%  { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}
.stand-float__face--side {
  width: 10px; height: 158px;
  background: linear-gradient(180deg, rgba(124,58,237,0.3), rgba(56,189,248,0.15));
  border: 1px solid rgba(167,139,250,0.2);
  border-left: none;
  transform: rotateY(90deg) translateZ(5px);
  right: -5px;
  border-radius: 0 4px 4px 0;
}
.stand-float__face--top {
  width: 140px; height: 14px;
  background: rgba(167,139,250,0.2);
  border: 1px solid rgba(167,139,250,0.25);
  border-bottom: none;
  transform: rotateX(90deg) translateZ(-7px);
  top: -7px;
  border-radius: 14px 14px 0 0;
}
.stand-float__leg {
  width: 14px; height: 49px;
  background: linear-gradient(180deg, rgba(124,58,237,0.4), rgba(56,189,248,0.2));
  border: 1px solid rgba(167,139,250,0.3);
  border-radius: 0 0 2px 2px;
  margin: 0 auto;
  transform: skewY(-2deg);
}
.stand-float__base {
  width: 113px; height: 11px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(167,139,250,0.4) 20%,
    rgba(56,189,248,0.5) 50%,
    rgba(167,139,250,0.4) 80%,
    transparent 100%
  );
  border-radius: var(--r-full);
  box-shadow: 0 0 12px rgba(124,58,237,0.4);
}
.stand-float__shadow {
  position: absolute; bottom: -10px; left: 50%;
  transform: translateX(-50%);
  width: 108px; height: 14px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(124,58,237,0.3) 0%, transparent 70%);
  animation: stShadow 4.2s ease-in-out infinite;
}
@keyframes stShadow {
  0%,100% { transform: translateX(-50%) scale(1);   opacity:.55; }
  50%      { transform: translateX(-50%) scale(.6);  opacity:.2; }
}

/* ── KEYCHAIN FLOAT ANIMATION ───────────────────────────────── */
.keychain-float {
  position: relative;
  width: 350px; height: 432px;
  display: flex; align-items: center; justify-content: center;
}
.keychain-float__glow {
  position: absolute; border-radius: 50%;
  filter: blur(40px); pointer-events: none;
}
.keychain-float__glow--1 {
  width: 216px; height: 216px;
  background: rgba(232,121,249,0.50);
  top: 5%; left: 15%;
  animation: kcGlow1 5s ease-in-out infinite;
}
.keychain-float__glow--2 {
  width: 149px; height: 149px;
  background: rgba(56,189,248,0.38);
  bottom: 8%; right: 10%;
  animation: kcGlow2 6.5s ease-in-out infinite 0.7s;
}
@keyframes kcGlow1 {
  0%,100% { transform: translate(0,0) scale(1); opacity:.6; }
  50%      { transform: translate(5px,-8px) scale(1.1); opacity:.9; }
}
@keyframes kcGlow2 {
  0%,100% { transform: translate(0,0) scale(1); opacity:.45; }
  50%      { transform: translate(-4px,7px) scale(1.15); opacity:.75; }
}

/* Outer wrapper — handles float bob */
.keychain-float__scene {
  position: relative;
  animation: kcFloat 4.2s ease-in-out infinite;
}
@keyframes kcFloat {
  0%,100% { transform: translateY(0) rotate(-4deg); }
  50%      { transform: translateY(-16px) rotate(2deg); }
}

/* Ring / loop at the top */
.keychain-float__ring {
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 3px solid rgba(167,139,250,0.7);
  background: transparent;
  box-shadow: 0 0 10px rgba(167,139,250,0.4), inset 0 0 4px rgba(167,139,250,0.2);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
/* Metal bar connecting ring to tag */
.keychain-float__bar {
  width: 5px; height: 19px;
  background: linear-gradient(180deg, rgba(167,139,250,0.8), rgba(56,189,248,0.5));
  border-radius: 2px;
  margin: -1px auto 0;
  position: relative;
  z-index: 1;
}

/* The tag body */
.keychain-float__tag {
  width: 130px; height: 176px;
  border-radius: 65px 65px 65px 65px;
  background: linear-gradient(160deg, #2d1a5a 0%, #18103a 50%, #251340 100%);
  border: 1.5px solid rgba(167,139,250,0.6);
  position: relative;
  overflow: hidden;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 8px;
  box-shadow:
    0 0 43px rgba(124,58,237,0.5),
    inset 0 1px 0 rgba(167,139,250,0.35),
    inset 0 -1px 0 rgba(0,0,0,0.4);
}

/* Holographic shimmer overlay */
.keychain-float__holo {
  position: absolute; inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    130deg,
    transparent 20%,
    rgba(232,121,249,0.20) 38%,
    rgba(56,189,248,0.28) 50%,
    rgba(167,139,250,0.18) 62%,
    transparent 78%
  );
  background-size: 200% 200%;
  animation: kcHolo 4s ease-in-out infinite;
  pointer-events: none;
}
@keyframes kcHolo {
  0%,100% { background-position: 0% 50%;   opacity:.5; }
  50%      { background-position: 100% 50%; opacity:1; }
}

/* NFC antenna rings on tag */
.keychain-float__antenna {
  position: relative;
  width: 78px; height: 78px;
  display: flex; align-items: center; justify-content: center;
}
.keychain-float__nfc-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(167,139,250,0.35);
  animation: kcPulse 3s ease-in-out infinite;
}
.keychain-float__nfc-ring--1 { width: 78px; height: 78px; animation-delay: 0s; }
.keychain-float__nfc-ring--2 { width: 54px; height: 54px; animation-delay: .5s; }
.keychain-float__nfc-ring--3 { width: 32px; height: 32px; animation-delay: 1s; border-color: rgba(56,189,248,0.5); }
@keyframes kcPulse {
  0%,100% { opacity: .3; transform: scale(1); }
  50%      { opacity: .8; transform: scale(1.05); }
}

/* IC chip */
.keychain-float__chip {
  width: 30px; height: 22px;
  background: linear-gradient(135deg, #2a1f4a, #1a1030);
  border-radius: 2px;
  border: 1px solid rgba(167,139,250,0.5);
  box-shadow: 0 2px 6px rgba(124,58,237,0.4), inset 0 1px 0 rgba(167,139,250,0.2);
  position: relative;
}
.keychain-float__chip::after {
  content: '';
  position: absolute; inset: 2px;
  border-radius: 1px;
  background-image:
    linear-gradient(rgba(167,139,250,0.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(167,139,250,0.3) 1px, transparent 1px);
  background-size: 4px 4px;
}

/* Tap ripples */
.keychain-float__ripple {
  position: absolute;
  top: 50%; left: 50%;
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1.5px solid rgba(56,189,248,0.6);
  transform: translate(-50%, -50%) scale(0);
  animation: kcRipple 3s ease-out infinite;
  pointer-events: none;
}
.keychain-float__ripple--2 { animation-delay: 1.5s; border-color: rgba(167,139,250,0.5); }
@keyframes kcRipple {
  0%   { transform: translate(-50%,-50%) scale(0);   opacity:.8; }
  100% { transform: translate(-50%,-50%) scale(2.8); opacity:0; }
}

/* Shadow on the floor */
.keychain-float__shadow {
  position: absolute; bottom: -10px; left: 50%;
  transform: translateX(-50%);
  width: 81px; height: 14px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(124,58,237,0.35) 0%, transparent 70%);
  animation: kcShadow 4.2s ease-in-out infinite;
}
@keyframes kcShadow {
  0%,100% { transform: translateX(-50%) scale(1);   opacity:.5; }
  50%      { transform: translateX(-50%) scale(.65); opacity:.2; }
}

/* ── FEAT LIST ───────────────────────────────────────────────── */
.feat-list { display: flex; flex-direction: column; gap: .45rem; }
.feat-list li {
  font-size: .83rem; color: var(--c-muted);
  padding-left: 1.1rem; position: relative;
}
.feat-list li::before {
  content: '';
  position: absolute; left: 0; top: .52em;
  width: 5px; height: 5px; border-radius: 50%;
  background: linear-gradient(135deg, var(--c-violet), var(--c-cyan));
}

/* ── HOW IT WORKS ────────────────────────────────────────────── */
.steps-row {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 3.5rem;
}

/* ─ Bubble constants (keep in sync with ::before values below) ─
   Mobile bubble: left: 2rem, 32px wide → centre-x at 2rem (left edge at calc(2rem - 16px))
   Mobile bubble top: 1.75rem, 32px tall → centre-y at calc(1.75rem + 16px)
   So the track line must pass through: left: 2rem, top: calc(1.75rem + 16px) */

/* Track line — sits behind the bubbles */
.steps-row::before {
  content: '';
  position: absolute;
  /* Mobile: vertical line through bubble centres */
  left: 2rem;                         /* bubble centre x */
  top:  calc(1.75rem + 16px);         /* first bubble centre y (matches ::before top below) */
  bottom: calc(1.75rem + 16px);       /* last bubble centre y from bottom */
  width: 1px;
  background: var(--c-border);
  z-index: 0;
  /* Will become horizontal on desktop */
}

/* Animated fill line */
.steps-row::after {
  content: '';
  position: absolute;
  left: 2rem;
  top:  calc(1.75rem + 16px);
  width: 1px;
  height: 0;
  background: linear-gradient(180deg, var(--c-purple), var(--c-cyan));
  z-index: 1;
  transition: height 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 0 8px rgba(124,58,237,0.5);
}
.steps-row--active::after {
  height: calc(100% - (1.75rem + 16px) * 2);
}

.step-cell {
  position: relative;
  background: transparent;
  /* left padding makes room for the bubble which sits in the gutter */
  padding: 1.75rem 1.75rem 1.75rem 5rem;
  z-index: 2;
  opacity: 0;
  transform: translateX(-16px);
  transition: opacity .6s var(--ease-out), transform .6s var(--ease-out);
}
.step-cell.visible {
  opacity: 1;
  transform: translateX(0);
}
.step-cell:hover { background: rgba(124,58,237,0.04); border-radius: var(--r-lg); }

/* Number bubble — absolute inside the cell, aligned over the track line */
.step-cell::before {
  content: attr(data-step);
  position: absolute;
  /* Centre bubble horizontally ON the track line: line is at left:2rem from row,
     which equals left:2rem from the cell (cells span full width, no offset).
     Bubble width = 32px, so left = 2rem - 16px to centre it on the line. */
  left: calc(2rem - 16px);
  /* Vertically: match the top padding so it sits in the top of the cell */
  top: 1.75rem;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--c-surface2);
  border: 1px solid var(--c-border);
  display: grid; place-items: center;
  font-family: var(--font-mono); font-size: .65rem;
  letter-spacing: .05em;
  color: var(--c-subtle);
  transition: background .4s ease, border-color .4s ease, color .4s ease, box-shadow .4s ease;
  z-index: 3;
}
.step-cell.visible::before {
  background: linear-gradient(135deg, rgba(124,58,237,0.3), rgba(56,189,248,0.15));
  border-color: rgba(124,58,237,0.6);
  color: var(--c-violet);
  box-shadow: 0 0 14px rgba(124,58,237,0.4);
}

.step-cell__title {
  font-family: var(--font-head); font-size: 1.15rem;
  font-weight: 700; letter-spacing: -.02em;
  margin-bottom: .5rem;
}
.step-cell__text { font-size: .875rem; color: var(--c-muted); line-height: 1.65; }

/* ─ Desktop: 3-column horizontal layout ─ */
@media (min-width: 768px) {
  .steps-row {
    grid-template-columns: repeat(3, 1fr);
    align-items: start;
  }

  /* Horizontal track line through bubble centres.
     Bubble is at left:1.5rem inside each cell, top:1.5rem, 32px wide/tall.
     Bubble centre-x from cell left = 1.5rem + 16px.
     But we need the line on the ROW, connecting all three bubble centres.
     The first bubble centre is 1 cell-width × 0 + (1.5rem + 16px) from row left.
     Easier: just span from ~half-first-cell to ~half-last-cell.
     Use left: calc(100%/6) and right: calc(100%/6) to hit midpoints. */
  .steps-row::before {
    left:   calc(100% / 6);
    right:  calc(100% / 6);
    top:    calc(1.5rem + 16px);
    bottom: auto;
    width:  auto;
    height: 1px;
  }
  .steps-row::after {
    left:   calc(100% / 6);
    top:    calc(1.5rem + 16px);
    width:  0;
    height: 1px;
    background: linear-gradient(90deg, var(--c-purple), var(--c-cyan));
    transition: width 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .steps-row--active::after {
    width: calc(100% - 100% / 3);  /* spans the middle two-thirds */
    height: 1px;
  }

  .step-cell {
    padding: 1.75rem 1.5rem 2rem;
    /* Bubble sits at top of cell — centre it within the column */
    padding-top: calc(1.5rem + 32px + 1rem); /* room above for bubble */
    transform: translateY(16px);
  }
  .step-cell.visible { transform: translateY(0); }
  .step-cell:nth-child(2) { transition-delay: .18s; }
  .step-cell:nth-child(3) { transition-delay: .36s; }

  /* Desktop bubble: centred in the column */
  .step-cell::before {
    /* Centre horizontally in the column: left = 50% - 16px */
    left: 50%;
    transform: translateX(-50%);
    top:  1.5rem;
  }
}

/* ── FEATURE GRID ────────────────────────────────────────────── */
.feat-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--c-border);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-top: 3.5rem;
}
.feat-cell {
  background: var(--c-bg);
  padding: 2rem 1.75rem;
  transition: background var(--dur);
}
.feat-cell:hover { background: var(--c-surface); }
.feat-cell__icon {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  color: var(--c-violet);
  margin-bottom: 1rem;
}
.feat-cell__icon svg { width: 22px; height: 22px; }
.feat-cell__title {
  font-family: var(--font-head); font-size: 1rem;
  font-weight: 700; letter-spacing: -.02em;
  margin-bottom: .4rem;
}
.feat-cell__text { font-size: .85rem; color: var(--c-muted); line-height: 1.65; }

/* ── FAQ ─────────────────────────────────────────────────────── */
.faq-list { margin-top: 3rem; max-width: 680px; }
.faq-list--center { margin-inline: auto; }
.faq-item {
  border-bottom: 1px solid var(--c-border);
}
.faq-item__q {
  width: 100%; background: none; border: none;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  font-family: var(--font-head); font-size: .95rem;
  font-weight: 600; color: var(--c-text);
  cursor: pointer; text-align: left;
  transition: color var(--dur-fast);
}
.faq-item__q:hover { color: var(--c-violet); }
.faq-item__icon {
  flex-shrink: 0; width: 20px; height: 20px;
  color: var(--c-subtle);
  transition: transform var(--dur) var(--ease-out), color var(--dur-fast);
}
.faq-item.open .faq-item__icon { transform: rotate(45deg); color: var(--c-violet); }
.faq-item__a {
  max-height: 0; overflow: hidden;
  transition: max-height .45s var(--ease-out);
}
.faq-item.open .faq-item__a { max-height: 360px; }
.faq-item__a p {
  font-size: .875rem; color: var(--c-muted);
  line-height: 1.75; padding-bottom: 1.25rem;
}

/* ── INLINE CTA ──────────────────────────────────────────────── */
.cta-inline {
  padding-block: var(--section-py);
}
.cta-inline__inner {
  display: flex; flex-direction: column; gap: 1.75rem;
}
.cta-inline__text { }
.cta-inline__overline {
  font-family: var(--font-mono); font-size: .72rem;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--c-subtle); margin-bottom: .75rem; display: block;
}
.cta-inline__heading {
  font-family: var(--font-head); font-weight: 700;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  letter-spacing: -.03em; line-height: 1.1;
}
.cta-inline__actions {
  display: flex; flex-wrap: wrap; gap: .75rem;
  align-items: flex-start;
}

/* ── FAQ + CONTACT SPLIT SECTION ─────────────────────────────── */
.faq-contact {
  position: relative;
  overflow: hidden;
}
.faq-contact::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 15% 50%, rgba(124,58,237,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 85% 40%, rgba(56,189,248,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.faq-contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  position: relative;
}
@media (min-width: 900px) {
  .faq-contact__grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-items: start;
  }
}

/* Glass panel shared styles */
.faq-contact__left,
.faq-contact__right {
  background: rgba(255,255,255,0.025);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}
.faq-contact__left::before,
.faq-contact__right::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(167,139,250,0.4), transparent);
  pointer-events: none;
}

/* Left card — contact info */
.faq-contact__left::after {
  content: '';
  position: absolute; bottom: -60px; right: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(124,58,237,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.faq-contact__heading {
  font-family: var(--font-head); font-weight: 700;
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  letter-spacing: -.03em; line-height: 1.1;
  margin-top: .75rem; margin-bottom: 1.25rem;
}
.faq-contact__blurb {
  font-size: .95rem; color: var(--c-muted);
  line-height: 1.65; margin-bottom: 2rem;
}
.faq-contact__socials {
  display: flex; flex-direction: column; gap: .65rem;
  margin-bottom: 2rem;
}
.faq-contact__social-btn {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .65rem 1.2rem;
  border-radius: var(--r-full);
  font-size: .875rem; font-weight: 600;
  text-decoration: none;
  transition: opacity var(--dur-fast), transform var(--dur-fast), box-shadow var(--dur-fast);
  margin-bottom: 1.5rem;
}
.faq-contact__social-btn:hover {
  opacity: .9; transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(34,158,217,0.3);
}
.faq-contact__social-btn--tg {
  background: linear-gradient(135deg, #229ED9, #1a88bb);
  color: #fff;
  width: fit-content;
  box-shadow: 0 2px 12px rgba(34,158,217,0.2);
}
.faq-contact__social-icons {
  display: flex; gap: .75rem; align-items: center;
}
.faq-contact__icon-link {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--c-muted);
  text-decoration: none;
  transition: color var(--dur-fast), background var(--dur-fast), transform var(--dur-fast);
}
.faq-contact__icon-link:hover {
  color: var(--c-text);
  background: rgba(255,255,255,0.12);
  transform: translateY(-2px);
}
.faq-contact__social-link {
  display: inline-flex; align-items: center; gap: .55rem;
  font-size: .875rem; color: var(--c-muted);
  text-decoration: none;
  transition: color var(--dur-fast), transform var(--dur-fast);
  width: fit-content;
  padding: .3rem 0;
}
.faq-contact__social-link:hover { color: var(--c-text); transform: translateX(3px); }
.faq-contact__ctas {
  display: flex; flex-wrap: wrap; gap: .75rem;
  margin-bottom: 2rem;
}
.faq-contact__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding-top: 1.75rem;
  margin-top: 1.75rem;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.faq-stat {
  display: flex; flex-direction: column; gap: .3rem;
  text-align: center;
  padding: 1rem .5rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--r-md);
}
.faq-stat__val {
  font-family: var(--font-head); font-weight: 700;
  font-size: 1.4rem; letter-spacing: -.03em;
  background: linear-gradient(135deg, var(--c-violet), var(--c-cyan));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.faq-stat__label {
  font-family: var(--font-mono); font-size: .62rem;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--c-subtle);
}

/* Right card — FAQ accordion */
.faq-contact__right::after {
  content: '';
  position: absolute; top: -60px; left: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(56,189,248,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.faq-contact__right .faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.07);
  position: relative;
}
.faq-contact__right .faq-item:first-child {
  border-top: 1px solid rgba(255,255,255,0.07);
}
.faq-contact__right .faq-item__q {
  padding: 1.1rem 0;
  font-size: .9rem;
}
.faq-contact__right .faq-item.open {
  background: rgba(124,58,237,0.04);
  margin-inline: -2.5rem;
  padding-inline: 2.5rem;
}

/* ── PRODUCT ITEM (services detail split) ────────────────────── */
.product-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding-block: var(--section-py);
}
.product-item:first-child { }
.product-item__img-wrap {
  border-radius: var(--r-lg); overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--c-surface2);
  border: 1px solid var(--c-border);
}
.product-item__img-wrap picture { width: 100%; height: 100%; }
.product-item__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease-out);
}
.product-item__img-wrap:hover .product-item__img { transform: scale(1.03); }
/* Animated component variant — transparent, floating visual on open page background */
.product-item__img-wrap--anim {
  display: flex; align-items: center; justify-content: center;
  background: transparent;
  overflow: visible;
  border-color: transparent;
  transition: border-color var(--dur);
}
.product-item__img-wrap--anim:hover { border-color: transparent; }
.product-item__body { display: flex; flex-direction: column; gap: 1.25rem; justify-content: center; }
.product-item__title {
  font-family: var(--font-head); font-weight: 700;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  letter-spacing: -.03em;
}
.product-item__desc { font-size: .95rem; color: var(--c-muted); line-height: 1.75; }
.product-item__ctas { display: flex; gap: .75rem; flex-wrap: wrap; }

/* ── PRICING ─────────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 3.5rem;
}
.pricing-card {
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 2rem;
  background: var(--c-surface);
  display: flex; flex-direction: column; gap: 1.5rem;
  transition: border-color var(--dur), transform var(--dur);
}
.pricing-card:hover {
  border-color: rgba(167,139,250,0.25);
  transform: translateY(-3px);
}
.pricing-card--featured {
  border-color: rgba(124,58,237,0.4);
  background: rgba(124,58,237,0.06);
}
.pricing-card--featured:hover { border-color: rgba(124,58,237,0.6); }
.pricing-card__badge {
  display: inline-block;
  font-family: var(--font-mono); font-size: .68rem;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--c-violet);
  border: 1px solid rgba(167,139,250,0.3);
  background: rgba(167,139,250,0.08);
  padding: .25rem .65rem; border-radius: var(--r-full);
  margin-bottom: .25rem;
  width: fit-content;
}
.pricing-card__name {
  font-family: var(--font-head); font-size: 1rem;
  font-weight: 700; letter-spacing: -.02em;
}
.pricing-card__price {
  font-family: var(--font-head); font-weight: 700;
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  letter-spacing: -.04em; line-height: 1;
}
.pricing-card__period {
  font-size: .8rem; color: var(--c-subtle);
  font-family: var(--font-mono); letter-spacing: .04em;
  margin-top: .3rem;
}
.pricing-card hr { border: none; border-top: 1px solid var(--c-border); }
.pricing-card__features { display: flex; flex-direction: column; gap: .6rem; flex: 1; }
.pricing-card__features li {
  font-size: .875rem; color: var(--c-muted);
  display: flex; align-items: flex-start; gap: .6rem;
}
.pricing-card__features li::before {
  content: ''; flex-shrink: 0; margin-top: .45em;
  width: 5px; height: 5px; border-radius: 50%;
  background: linear-gradient(135deg, var(--c-violet), var(--c-cyan));
}

/* Bulk table */
.bulk-table-wrap {
  margin-top: 3.5rem; overflow-x: auto;
  border: 1px solid var(--c-border); border-radius: var(--r-lg);
}
.bulk-table {
  width: 100%; border-collapse: collapse;
  font-size: .875rem;
}
.bulk-table th, .bulk-table td {
  padding: 1rem 1.5rem; text-align: left;
  border-bottom: 1px solid var(--c-border);
}
.bulk-table th {
  font-family: var(--font-mono); font-size: .7rem;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--c-subtle); background: var(--c-surface);
}
.bulk-table td { color: var(--c-muted); }
.bulk-table tr:last-child td { border-bottom: none; }
.bulk-table tr:hover td { background: var(--c-surface); color: var(--c-text); }
.bulk-table .highlight { color: var(--c-violet); font-weight: 600; }

/* ── BLOG ────────────────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 3.5rem;
}
.blog-card {
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--c-surface);
  display: flex; flex-direction: column;
  transition: border-color var(--dur), transform var(--dur);
}
.blog-card:hover {
  border-color: rgba(167,139,250,0.25);
  transform: translateY(-3px);
}
.blog-card__thumb {
  aspect-ratio: 16/9; background: var(--c-surface2);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem; overflow: hidden;
  position: relative;
}
.blog-card__thumb::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(3,3,10,0.6) 100%);
}
.blog-card__body { padding: 1.5rem; display: flex; flex-direction: column; gap: .75rem; flex: 1; }
.blog-card__meta { display: flex; align-items: center; gap: .75rem; }
.blog-card__tag {
  font-family: var(--font-mono); font-size: .65rem;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--c-violet); border: 1px solid rgba(167,139,250,0.25);
  padding: .2rem .55rem; border-radius: var(--r-full);
}
.blog-card__date {
  font-family: var(--font-mono); font-size: .68rem;
  color: var(--c-subtle);
}
.blog-card__title {
  font-family: var(--font-head); font-size: 1.05rem;
  font-weight: 700; letter-spacing: -.02em; line-height: 1.3; flex: 1;
}
.blog-card__excerpt {
  font-size: .83rem; color: var(--c-muted); line-height: 1.65;
}

/* Featured blog post */
.blog-featured {
  display: grid; grid-template-columns: 1fr;
  gap: 0;
  border: 1px solid var(--c-border); border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--c-surface);
  margin-top: 3.5rem;
  transition: border-color var(--dur);
}
.blog-featured:hover { border-color: rgba(167,139,250,0.25); }
.blog-featured__thumb {
  aspect-ratio: 16/8;
  background: linear-gradient(135deg, rgba(124,58,237,0.15), rgba(56,189,248,0.1));
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem;
  border-bottom: 1px solid var(--c-border);
}
.blog-featured__body {
  padding: 2rem;
  display: flex; flex-direction: column; gap: 1rem;
}
.blog-featured__title {
  font-family: var(--font-head); font-weight: 700;
  font-size: clamp(1.25rem, 3vw, 1.85rem);
  letter-spacing: -.03em; line-height: 1.2;
}
.blog-featured__excerpt {
  font-size: .9rem; color: var(--c-muted); line-height: 1.75;
}

/* ── CONTACT ─────────────────────────────────────────────────── */
.contact-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 3rem; margin-top: 3.5rem;
}

.contact-channels { display: flex; flex-direction: column; gap: .75rem; }
.contact-channel {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  transition: border-color var(--dur), background var(--dur);
  text-decoration: none;
}
.contact-channel:hover {
  border-color: rgba(167,139,250,0.3);
  background: var(--c-surface2);
}
.contact-channel__icon {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(167,139,250,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--c-violet); flex-shrink: 0;
}
.contact-channel__icon svg { width: 18px; height: 18px; }
.contact-channel__label {
  font-family: var(--font-head); font-size: .85rem;
  font-weight: 600; color: var(--c-text); display: block;
}
.contact-channel__handle {
  font-family: var(--font-mono); font-size: .75rem;
  color: var(--c-subtle);
}
.form-card {
  background: rgba(15,15,26,0.7);
  border: 1px solid rgba(167,139,250,0.18);
  border-radius: var(--r-lg);
  padding: 2rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 0 40px rgba(124,58,237,0.08);
}
.form-row { display: grid; grid-template-columns: 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .45rem; }
.form-label {
  font-family: var(--font-mono); font-size: .72rem;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--c-subtle);
}
.form-input, .form-textarea, .form-select {
  width: 100%; background: rgba(255,255,255,0.04);
  border: 1px solid rgba(167,139,250,0.2);
  border-radius: var(--r-md); padding: .75rem 1rem;
  color: var(--c-text); font-size: .9rem;
  transition: border-color var(--dur-fast), box-shadow var(--dur-fast), background var(--dur-fast);
  -webkit-appearance: none; appearance: none;
}
.form-input:hover, .form-textarea:hover, .form-select:hover {
  border-color: rgba(167,139,250,0.4);
  background: rgba(255,255,255,0.06);
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  outline: none;
  background: rgba(124,58,237,0.06);
  border-color: var(--c-violet);
  box-shadow:
    0 0 0 3px rgba(124,58,237,0.18),
    0 0 16px rgba(124,58,237,0.12);
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-select { cursor: pointer; }
.form-select option { background: #1a1a2e; }

/* Social grid */
.social-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem; margin-top: 3.5rem;
}
.social-card {
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  background: var(--c-surface);
  display: flex; flex-direction: column; gap: .75rem;
  text-decoration: none;
  transition: border-color var(--dur), transform var(--dur);
}
.social-card:hover {
  border-color: rgba(167,139,250,0.3);
  transform: translateY(-3px);
}
.social-card--tg { border-color: rgba(34,158,217,0.25); }
.social-card--tg:hover { border-color: rgba(34,158,217,0.5); }
.social-card__icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(167,139,250,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--c-violet);
}
.social-card--tg .social-card__icon { background: rgba(34,158,217,0.1); color: var(--c-tg); }
.social-card__icon svg { width: 20px; height: 20px; }
.social-card__name {
  font-family: var(--font-head); font-size: .95rem;
  font-weight: 700; letter-spacing: -.02em;
}
.social-card__handle {
  font-family: var(--font-mono); font-size: .75rem;
  color: var(--c-subtle);
}

/* ── ABOUT ───────────────────────────────────────────────────── */
.about-split {
  display: grid; grid-template-columns: 1fr;
  gap: 3rem;
}
.about-stats-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1px; background: var(--c-border);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg); overflow: hidden;
}
.about-stat {
  background: var(--c-bg);
  padding: 1.75rem;
  transition: background var(--dur);
}
.about-stat:hover { background: var(--c-surface); }
.about-stat__num {
  font-family: var(--font-head); font-weight: 700;
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: -.04em; line-height: 1;
  margin-bottom: .4rem;
}
.about-stat__label {
  font-family: var(--font-mono); font-size: .72rem;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--c-subtle);
}

/* stacked paragraph / button spacing inside nfc-panel and sec-sub */
.nfc-panel__text + .nfc-panel__text { margin-top: 1rem; }
.nfc-panel__text + .btn             { margin-top: 1.5rem; }
.sec-sub + .sec-sub                  { margin-top: 1rem; }

/* ── ABOUT single-column process override */
.steps-row--single { grid-template-columns: 1fr !important; }

/* ── CONTACT form spacing ────────────────────────────────────── */
.form-group + .form-group { margin-top: 1rem; }
/* Inside a two-col row, siblings are next to each other — no top margin */
.form-row .form-group + .form-group { margin-top: 0; }
.form-footer {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--c-border);
}
.form-footer__label {
  font-family: var(--font-mono);
  font-size: .7rem;
  color: var(--c-subtle);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: .75rem;
}
.btn--full { width: 100%; justify-content: center; margin-top: 1.25rem; }

/* ── BLOG card body CTA push-to-bottom */
.blog-card__body .btn { margin-top: auto; }

/* ── NFC panel CTA spacing (blog subscribe) */
.nfc-panel__inner .btn { margin-top: 1.25rem; }

/* ── Inline text link accent colour */
.link--accent { color: var(--c-violet); text-decoration: underline; text-underline-offset: 2px; }
.link--accent:hover { color: var(--c-accent2); }

/* NFC panel (about) */
.nfc-panel {
  margin-top: 3.5rem;
  padding: 2.5rem;
  border: 1px solid rgba(124,58,237,0.25);
  border-radius: var(--r-lg);
  background: rgba(124,58,237,0.04);
}
.nfc-panel__inner {
  display: flex; flex-direction: column; gap: 1.5rem;
}
.nfc-panel__icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(124,58,237,0.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--c-violet);
}
.nfc-panel__icon svg { width: 24px; height: 24px; }
.nfc-panel__title {
  font-family: var(--font-head); font-weight: 700;
  font-size: clamp(1.35rem, 3vw, 1.9rem);
  letter-spacing: -.03em;
}
.nfc-panel__text {
  font-size: .9rem; color: var(--c-muted); line-height: 1.75;
}

/* ── CONTACT HERO (split layout) ────────────────────────────── */
.contact-hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: calc(60px + 4rem) var(--pad) 5rem;
  position: relative;
  overflow: hidden;
}
.contact-hero::before {
  content: '';
  position: absolute; inset: 0;
  pointer-events: none;
}
.contact-hero__inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}
.contact-hero__text {
  display: flex; flex-direction: column; gap: 1.5rem;
}
.contact-hero__title {
  font-family: var(--font-head); font-weight: 700;
  font-size: clamp(3rem, 8vw, 5.5rem);
  line-height: .92; letter-spacing: -.05em;
}
.contact-hero__sub {
  font-size: clamp(.9rem, 2vw, 1.1rem);
  color: var(--c-muted); line-height: 1.7;
  max-width: 480px;
}
.contact-hero__ctas {
  display: flex; flex-wrap: wrap; gap: .75rem;
  margin-top: .25rem;
}
.contact-hero__stats {
  display: flex; gap: 2rem; flex-wrap: wrap;
  padding-top: 1.5rem;
  border-top: 1px solid var(--c-border);
  margin-top: .25rem;
}
.contact-stat {
  display: flex; flex-direction: column; gap: .2rem;
}
.contact-stat__val {
  font-family: var(--font-head); font-weight: 700;
  font-size: 1.4rem; letter-spacing: -.03em;
  background: linear-gradient(135deg, var(--c-violet), var(--c-accent2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.contact-stat__label {
  font-family: var(--font-mono); font-size: .68rem;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--c-subtle);
}

/* Visual column */
.contact-hero__visual {
  display: flex; align-items: center; justify-content: center;
}

/* ── 3D NFC TAG ───────────────────────────────────────────────── */
.nfc-tag-3d {
  position: relative;
  width: 280px; height: 380px;
  display: flex; align-items: center; justify-content: center;
}

/* Background glow orbs */
.nfc-tag-3d__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}
.nfc-tag-3d__glow--1 {
  width: 220px; height: 220px;
  background: rgba(124,58,237,0.55);
  top: 10%; left: 10%;
  animation: nfcGlow1 5s ease-in-out infinite;
}
.nfc-tag-3d__glow--2 {
  width: 160px; height: 160px;
  background: rgba(56,189,248,0.42);
  bottom: 15%; right: 5%;
  animation: nfcGlow2 6s ease-in-out infinite 1s;
}
@keyframes nfcGlow1 {
  0%,100% { transform: translate(0,0) scale(1);   opacity: .8; }
  50%      { transform: translate(10px,-15px) scale(1.15); opacity: 1; }
}
@keyframes nfcGlow2 {
  0%,100% { transform: translate(0,0) scale(1);   opacity: .6; }
  50%      { transform: translate(-8px,12px) scale(1.2);  opacity: .9; }
}

/* Scene wrapper — perspective + float */
.nfc-tag-3d__scene {
  perspective: 900px;
  animation: nfcFloat 4s ease-in-out infinite;
}
@keyframes nfcFloat {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-18px); }
}

/* The card itself — rotated in 3D, slow auto-spin */
.nfc-tag-3d__card {
  position: relative;
  width: 200px; height: 128px;
  transform-style: preserve-3d;
  transform: rotateX(18deg) rotateY(-28deg);
  animation: nfcSpin 14s ease-in-out infinite;
}
@keyframes nfcSpin {
  0%   { transform: rotateX(18deg) rotateY(-28deg); }
  30%  { transform: rotateX(10deg) rotateY(25deg); }
  60%  { transform: rotateX(22deg) rotateY(5deg); }
  100% { transform: rotateX(18deg) rotateY(-28deg); }
}

/* Shared face styles */
.nfc-tag-3d__face,
.nfc-tag-3d__edge {
  position: absolute;
  backface-visibility: hidden;
}

/* FRONT */
.nfc-tag-3d__face--front {
  width: 200px; height: 128px;
  border-radius: 14px;
  background: linear-gradient(145deg, #281845 0%, #180f32 50%, #22123e 100%);
  border: 1px solid rgba(167,139,250,0.5);
  transform: translateZ(4px);
  overflow: hidden;
  box-shadow:
    0 0 32px rgba(124,58,237,0.4),
    inset 0 1px 0 rgba(167,139,250,0.3),
    inset 0 -1px 0 rgba(0,0,0,0.5);
}

/* Holographic shimmer */
.nfc-tag-3d__holo {
  position: absolute; inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    105deg,
    transparent 20%,
    rgba(167,139,250,0.22) 35%,
    rgba(56,189,248,0.28) 50%,
    rgba(232,121,249,0.16) 65%,
    transparent 80%
  );
  background-size: 200% 200%;
  animation: nfcHolo 4s ease-in-out infinite;
}
@keyframes nfcHolo {
  0%,100% { background-position: 0% 50%;   opacity: .6; }
  50%      { background-position: 100% 50%; opacity: 1; }
}

/* Corner dots */
.nfc-tag-3d__corner {
  position: absolute;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(167,139,250,0.4);
}
.nfc-tag-3d__corner--tl { top: 8px;  left: 8px; }
.nfc-tag-3d__corner--tr { top: 8px;  right: 8px; }
.nfc-tag-3d__corner--bl { bottom: 8px; left: 8px; }
.nfc-tag-3d__corner--br { bottom: 8px; right: 8px; }

/* Antenna rings */
.nfc-tag-3d__antenna {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 90px; height: 90px;
  display: flex; align-items: center; justify-content: center;
}
.nfc-tag-3d__ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(167,139,250,0.35);
  animation: nfcPulse 3s ease-in-out infinite;
}
.nfc-tag-3d__ring--1 { width: 90px; height: 90px; animation-delay: 0s; }
.nfc-tag-3d__ring--2 { width: 66px; height: 66px; animation-delay: .4s; }
.nfc-tag-3d__ring--3 { width: 44px; height: 44px; animation-delay: .8s; border-color: rgba(56,189,248,0.4); }
@keyframes nfcPulse {
  0%,100% { opacity: .35; transform: scale(1);    }
  50%      { opacity: .85; transform: scale(1.04); }
}

/* IC chip bump */
.nfc-tag-3d__chip {
  position: absolute;
  width: 22px; height: 18px;
  background: linear-gradient(135deg, #2a1f4a, #1a1030);
  border-radius: 3px;
  border: 1px solid rgba(167,139,250,0.5);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(124,58,237,0.4), inset 0 1px 0 rgba(167,139,250,0.2);
}
.nfc-tag-3d__chip-inner {
  width: 14px; height: 12px;
  background: rgba(167,139,250,0.12);
  border-radius: 2px;
  border: 1px solid rgba(167,139,250,0.3);
  position: relative; overflow: hidden;
}
.nfc-tag-3d__chip-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(167,139,250,0.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(167,139,250,0.3) 1px, transparent 1px);
  background-size: 4px 4px;
}

/* NFC wordmark */
.nfc-tag-3d__wordmark {
  position: absolute;
  bottom: 12px; right: 14px;
  width: 36px;
}
.nfc-tag-3d__wordmark svg { width: 100%; height: auto; }

/* Scan beam */
.nfc-tag-3d__scan {
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(56,189,248,0.7), rgba(167,139,250,0.9), rgba(56,189,248,0.7), transparent);
  animation: nfcScanBeam 3s ease-in-out infinite;
  box-shadow: 0 0 12px rgba(56,189,248,0.6);
}
@keyframes nfcScanBeam {
  0%   { top: 10%;  opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { top: 90%; opacity: 0; }
}

/* Tap ripples */
.nfc-tag-3d__ripple {
  position: absolute;
  top: 50%; left: 50%;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(56,189,248,0.6);
  transform: translate(-50%, -50%) scale(0);
  animation: nfcRipple 3s ease-out infinite;
}
.nfc-tag-3d__ripple--2 { animation-delay: 1.5s; border-color: rgba(167,139,250,0.5); }
@keyframes nfcRipple {
  0%   { transform: translate(-50%,-50%) scale(0);   opacity: .8; }
  100% { transform: translate(-50%,-50%) scale(3.5); opacity: 0; }
}

/* BACK face */
.nfc-tag-3d__face--back {
  width: 200px; height: 128px;
  border-radius: 14px;
  background: linear-gradient(145deg, #120d22, #0a0815);
  border: 1px solid rgba(124,58,237,0.2);
  transform: translateZ(-4px) rotateY(180deg);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: .5rem;
  overflow: hidden;
}
.nfc-tag-3d__back-stripe {
  position: absolute;
  left: 0; right: 0; top: 50%; height: 28px;
  transform: translateY(-50%);
  background: rgba(124,58,237,0.15);
  border-top: 1px solid rgba(124,58,237,0.2);
  border-bottom: 1px solid rgba(124,58,237,0.2);
}
.nfc-tag-3d__back-label {
  position: relative; z-index: 1;
  font-family: var(--font-head); font-size: .7rem;
  letter-spacing: .15em; text-transform: uppercase;
  color: rgba(167,139,250,0.5);
}

/* EDGE faces — simulate card thickness */
.nfc-tag-3d__edge { background: rgba(30,15,60,0.9); }
.nfc-tag-3d__edge--top    { width: 200px; height: 8px; top: 0;   left: 0; transform: rotateX(90deg) translateZ(-4px); transform-origin: top center; }
.nfc-tag-3d__edge--bottom { width: 200px; height: 8px; bottom: 0; left: 0; transform: rotateX(-90deg) translateZ(-4px); transform-origin: bottom center; }
.nfc-tag-3d__edge--left   { width: 8px; height: 128px; top: 0; left: 0;   transform: rotateY(-90deg) translateZ(-4px); transform-origin: left center; }
.nfc-tag-3d__edge--right  { width: 8px; height: 128px; top: 0; right: 0;  transform: rotateY(90deg) translateZ(-4px);  transform-origin: right center; }

/* Floor shadow */
.nfc-tag-3d__shadow {
  position: absolute;
  bottom: -20px; left: 50%;
  transform: translateX(-50%);
  width: 160px; height: 24px;
  background: radial-gradient(ellipse, rgba(124,58,237,0.5) 0%, transparent 70%);
  filter: blur(8px);
  animation: nfcShadow 4s ease-in-out infinite;
}
@keyframes nfcShadow {
  0%,100% { transform: translateX(-50%) scaleX(1);    opacity: .7; }
  50%      { transform: translateX(-50%) scaleX(.75);  opacity: .4; }
}

/* Responsive: side-by-side on wide screens */
@media (min-width: 900px) {
  .contact-hero__inner {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
  .contact-hero__text { max-width: 520px; }
}

/* ── PAGE HERO (inner pages) ─────────────────────────────────── */
.page-hero {
  min-height: 60svh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: calc(60px + 5rem) var(--pad) 5rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  pointer-events: none;
}
.page-hero__inner {
  position: relative; z-index: 1;
  display: flex; flex-direction: column;
  align-items: center; gap: 1.5rem;
  max-width: 700px;
}
.page-hero__title {
  font-family: var(--font-head); font-weight: 700;
  font-size: clamp(2.5rem, 7vw, 5rem);
  line-height: .95; letter-spacing: -.04em;
}
.page-hero__sub {
  font-size: clamp(.9rem, 2vw, 1.05rem);
  color: var(--c-muted); max-width: 480px;
  line-height: 1.7;
}
.page-hero__ctas {
  display: flex; flex-wrap: wrap; gap: .75rem;
  justify-content: center; margin-top: .5rem;
}

/* ── FOOTER ──────────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--c-border);
  padding-top: 4rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--c-border);
}
.footer__brand {
  display: flex; flex-direction: column; gap: 1rem;
  max-width: 280px;
}
.footer__logo {
  display: flex; align-items: center; gap: .6rem;
  text-decoration: none;
}
.footer__logo img, .footer__logo picture { width: 28px; height: 28px; border-radius: 6px; }
.footer__logo span {
  font-family: var(--font-head); font-weight: 700;
  font-size: .95rem; color: var(--c-text);
}
.footer__tagline {
  font-family: var(--font-mono); font-size: .75rem;
  color: var(--c-subtle); letter-spacing: .04em;
}
.footer__desc {
  font-size: .83rem; color: var(--c-muted); line-height: 1.65;
}
.footer__social {
  display: flex; gap: .5rem; flex-wrap: wrap;
}
.footer__soc-link {
  width: 34px; height: 34px; border-radius: var(--r-sm);
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--c-muted);
  transition: color var(--dur-fast), border-color var(--dur-fast), background var(--dur-fast);
}
.footer__soc-link:hover { color: var(--c-text); border-color: var(--c-border2); background: var(--c-surface2); }
.footer__soc-link svg { width: 15px; height: 15px; }

.footer__nav h4, .footer__contact h4 {
  font-family: var(--font-mono); font-size: .7rem;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--c-subtle); margin-bottom: 1rem;
}
.footer__nav ul { display: flex; flex-direction: column; gap: .5rem; }
.footer__nav a {
  font-size: .875rem; color: var(--c-muted);
  transition: color var(--dur-fast);
}
.footer__nav a:hover { color: var(--c-text); }
.footer__tg-btn {
  display: inline-flex; align-items: center; gap: .5rem;
  background: linear-gradient(135deg, var(--c-tg), #1a85c4);
  color: #fff; border-radius: var(--r-full);
  padding: .55rem 1.1rem; font-size: .83rem;
  font-family: var(--font-head); font-weight: 600;
  transition: opacity var(--dur-fast), transform var(--dur-fast);
  text-decoration: none; width: fit-content;
  margin-bottom: .75rem;
}
.footer__tg-btn:hover { opacity: .9; transform: translateY(-1px); }
.footer__tg-btn svg { width: 14px; height: 14px; }
.footer__link {
  font-size: .83rem; color: var(--c-muted);
  text-decoration: none; display: block;
  transition: color var(--dur-fast);
}
.footer__link:hover { color: var(--c-text); }

.footer__bottom {
  padding: 1.25rem 0;
  display: flex; flex-wrap: wrap; gap: .5rem;
  align-items: center; justify-content: space-between;
}
.footer__bottom p {
  font-family: var(--font-mono); font-size: .7rem;
  color: var(--c-subtle); letter-spacing: .04em;
}

/* ── TG FAB ──────────────────────────────────────────────────── */
.tg-fab {
  position: fixed; bottom: 1.75rem; right: 1.75rem;
  z-index: 100;
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, var(--c-tg), #1a85c4);
  color: #fff; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 24px rgba(34,158,217,0.4);
  transition: transform var(--dur-fast), box-shadow var(--dur-fast);
  text-decoration: none;
}
.tg-fab:hover { transform: scale(1.1); box-shadow: 0 6px 32px rgba(34,158,217,0.6); }
.tg-fab svg { width: 22px; height: 22px; }

/* ── TOAST ───────────────────────────────────────────────────── */
.toast {
  position: fixed; bottom: 1.5rem; left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--c-surface2); border: 1px solid var(--c-border2);
  backdrop-filter: blur(16px);
  color: var(--c-text); padding: .75rem 1.5rem;
  border-radius: var(--r-full); font-size: .875rem;
  z-index: 9999; opacity: 0;
  transition: opacity .3s, transform .3s var(--ease-out);
  pointer-events: none;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast--success { border-color: rgba(74,222,128,0.3); }
.toast--error   { border-color: rgba(248,113,113,0.3); }

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (min-width: 640px) {
  .form-row { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
  .nav__links { display: flex; }
  .nav__burger { display: none; }
  .nav__actions .nav__cta { display: inline-flex; }
  /* Sheet and overlay live outside <header> — they hide via transform/opacity, not display:none */
  /* On desktop, ensure they can't interfere even if .open is somehow set */
  .nav__sheet { pointer-events: none !important; transform: translateX(100%) !important; }
  .nav__overlay { opacity: 0 !important; pointer-events: none !important; }

  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .feat-grid { grid-template-columns: repeat(2, 1fr); }

  .product-item {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
  .product-item--reverse .product-item__img-wrap { order: 2; }
  .product-item--reverse .product-item__body     { order: 1; }

  .about-split { grid-template-columns: 1fr 1fr; align-items: start; }
  .nfc-panel__inner { flex-direction: row; align-items: flex-start; gap: 2rem; }

  .contact-grid { grid-template-columns: 1fr 1fr; align-items: start; }

  .footer__grid { grid-template-columns: 2fr 1fr 1fr; }

  .cta-inline__inner { flex-direction: row; align-items: center; justify-content: space-between; }
  .cta-inline__actions { flex-shrink: 0; }

  .blog-featured { grid-template-columns: 1fr 1fr; }
  .blog-featured__thumb { aspect-ratio: auto; border-bottom: none; border-right: 1px solid var(--c-border); }
}

/* On mobile, hide "Order Now" CTA in nav actions to save space */
@media (max-width: 767px) {
  .nav__actions .nav__cta { display: none; }
}

@media (min-width: 1024px) {
  .feat-grid { grid-template-columns: repeat(3, 1fr); }
  .pricing-grid { grid-template-columns: repeat(3, 1fr); }
  .blog-grid { grid-template-columns: repeat(3, 1fr); }
  .social-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ── REDUCED MOTION ──────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }
}

/* ── MOBILE SPECIFIC FIXES ───────────────────────────────────── */
@media (max-width: 639px) {
  /* Section padding tighter on small phones */
  :root { --section-py: clamp(3rem, 8vw, 5rem); }

  /* Hero title size on very small screens */
  .hero__title { font-size: clamp(2.2rem, 10vw, 3.5rem); }

  /* Hero CTAs: stack vertically */
  .hero__ctas { flex-direction: column; align-items: stretch; }
  .hero__ctas .btn { justify-content: center; text-align: center; }

  /* Product cards: smaller inner visual */
  .product-card__visual { min-height: 240px; }
  .sticker-float, .stand-float, .keychain-float { transform: scale(0.75); transform-origin: center; }

  /* Steps: reduce padding */
  .step-cell { padding: 1.25rem 1.25rem 1.25rem 4rem; }
  .steps-row::before { left: 1.5rem; }
  .steps-row::after  { left: 1.5rem; }
  .step-cell::before { left: calc(1.5rem - 16px); }

  /* Feature grid: single col cells with less padding */
  .feat-cell { padding: 1.5rem 1.25rem; }

  /* FAQ contact panels */
  .faq-contact__left,
  .faq-contact__right { padding: 1.75rem 1.25rem; }
  .faq-contact__right .faq-item.open {
    margin-inline: -1.25rem;
    padding-inline: 1.25rem;
  }

  /* Pricing cards */
  .pricing-card { padding: 1.5rem 1.25rem; }

  /* Bulk table: allow horizontal scroll with smaller font */
  .bulk-table th, .bulk-table td { padding: .75rem 1rem; font-size: .8rem; }

  /* Form */
  .form-card { padding: 1.5rem 1.25rem; }

  /* Blog cards */
  .blog-card__body { padding: 1.25rem; }

  /* Contact hero title */
  .contact-hero__title { font-size: clamp(2.5rem, 12vw, 4rem); }

  /* Page hero */
  .page-hero__title { font-size: clamp(2rem, 9vw, 3.5rem); }

  /* Stats grid on small screens */
  .faq-contact__stats { grid-template-columns: repeat(3, 1fr); gap: .5rem; }
  .faq-stat { padding: .75rem .25rem; }
  .faq-stat__val { font-size: 1.1rem; }

  /* Footer brand */
  .footer__brand { max-width: none; }

  /* CTA inline */
  .cta-inline__heading { font-size: clamp(1.5rem, 6vw, 2rem); }

  /* About stats grid */
  .about-stats-grid { grid-template-columns: repeat(2, 1fr); }

  /* Social grid on contact */
  .social-grid { grid-template-columns: repeat(2, 1fr); gap: .75rem; }
  .social-card { padding: 1.25rem; }

  /* NFC panel */
  .nfc-panel { padding: 1.75rem 1.25rem; }

  /* Tg FAB — offset from sheet bottom */
  .tg-fab { bottom: 1.25rem; right: 1.25rem; width: 46px; height: 46px; }
  .tg-fab svg { width: 20px; height: 20px; }
}

/* ── Hero Social Buttons ──────────────────────────────────────── */
.hero__ctas--social {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  align-items: center;
  justify-content: flex-start;
}

.btn--social {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .55rem 1.1rem;
  border-radius: var(--r-full);
  font-family: var(--font-body);
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .01em;
  border: 1px solid var(--c-border2);
  background: var(--c-surface2);
  color: var(--c-text);
  cursor: pointer;
  transition: transform var(--dur-fast), background var(--dur-fast), border-color var(--dur-fast), box-shadow var(--dur-fast);
  text-decoration: none;
  white-space: nowrap;
}
.btn--social:hover, .btn--social:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.35);
}
.btn--social svg { flex-shrink: 0; }

/* Telegram — sky blue tint on hover */
.btn--social-tg:hover, .btn--social-tg:focus-visible {
  background: rgba(34,158,217,0.18);
  border-color: rgba(34,158,217,0.45);
  color: #38BDF8;
}
/* Instagram — pink/violet tint on hover */
.btn--social-ig:hover, .btn--social-ig:focus-visible {
  background: rgba(232,92,167,0.15);
  border-color: rgba(232,92,167,0.4);
  color: #E879F9;
}
/* Facebook — blue tint on hover */
.btn--social-fb:hover, .btn--social-fb:focus-visible {
  background: rgba(66,103,178,0.18);
  border-color: rgba(66,103,178,0.45);
  color: #93C5FD;
}
/* TikTok — neutral/pink tint on hover */
.btn--social-tt:hover, .btn--social-tt:focus-visible {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.25);
  color: #F8FAFC;
}

@media (max-width: 479px) {
  .hero__ctas--social { gap: .5rem; }
  .btn--social { font-size: .8rem; padding: .5rem .9rem; }
}

/* ── Editorial Values Rows ───────────────────────────────────── */
.values-rows {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 3rem;
}

.values-row {
  display: grid;
  grid-template-columns: 3rem 3.5rem 1fr;
  align-items: start;
  gap: 1.5rem 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--c-border);
  position: relative;
  transition: background var(--dur-fast);
}
.values-row:first-child { border-top: 1px solid var(--c-border); }

.values-row:hover { background: var(--c-surface); border-radius: var(--r-md); }
.values-row:hover { padding-inline: 1.5rem; margin-inline: -1.5rem; }

.values-row__num {
  font-family: var(--font-mono);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .06em;
  opacity: .7;
  padding-top: .25rem;
  white-space: nowrap;
}

.values-row__icon {
  width: 3.5rem;
  height: 3.5rem;
  flex-shrink: 0;
  border-radius: var(--r-md);
  background: var(--c-surface2);
  border: 1px solid var(--c-border2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-violet);
  transition: border-color var(--dur-fast), color var(--dur-fast);
}
.values-row__icon svg {
  width: 1.4rem;
  height: 1.4rem;
}
.values-row:hover .values-row__icon {
  border-color: var(--c-violet);
  color: var(--c-cyan);
}

.values-row__body {}

.values-row__title {
  font-family: var(--font-head);
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 600;
  letter-spacing: -.02em;
  color: var(--c-text);
  margin-bottom: .5rem;
}

.values-row__text {
  font-size: .95rem;
  color: var(--c-muted);
  line-height: 1.65;
  max-width: 52ch;
}

@media (max-width: 600px) {
  .values-row {
    grid-template-columns: 2.5rem 1fr;
    grid-template-rows: auto auto;
  }
  .values-row__num { grid-column: 1; grid-row: 1; }
  .values-row__icon { display: none; }
  .values-row__body { grid-column: 1 / -1; grid-row: 2; }
}

@media (min-width: 768px) {
  .values-row { gap: 1.5rem 3rem; }
}
