/* ============================================================
   Re-Charge — Power. Reclaimed.
   Modern sustainability-tech aesthetic: light theme, teal/green
   accent, 3D hero + product, animated throughout.
   ============================================================ */

:root {
  --bg: #fbfdfc;
  --bg-tint: #eff7f4;
  --bg-dark: #0e2a25;
  --text: #14201c;
  --text-muted: #55645e;
  --text-light: #e8f2ef;
  --text-light-muted: #a8c2bb;
  --accent: #0e9f7a;
  --accent-bright: #2df0b2;
  --accent-strong: #0b8465;
  --accent-soft: #d8f1e9;
  --border: #e0eae6;
  --radius: 18px;
  --radius-lg: 26px;
  --shadow: 0 10px 40px rgba(14, 42, 37, 0.09);
  --font-body: "Inter", system-ui, sans-serif;
  --font-display: "Space Grotesk", "Inter", system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; }

.container {
  width: min(1140px, 100% - 2.5rem);
  margin-inline: auto;
}

.container--narrow { width: min(780px, 100% - 2.5rem); }

/* ---------- Ambient background ---------- */

.bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.bg__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(14, 159, 122, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 159, 122, 0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 90% 60% at 50% 0%, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 90% 60% at 50% 0%, black 30%, transparent 75%);
}

.bg__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.55;
  animation: blob-drift 18s ease-in-out infinite alternate;
}

.bg__blob--1 {
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(45, 240, 178, 0.35), transparent 70%);
  top: -12%; right: -8%;
}

.bg__blob--2 {
  width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(14, 159, 122, 0.25), transparent 70%);
  bottom: -10%; left: -10%;
  animation-delay: -9s;
}

@keyframes blob-drift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(-60px, 50px) scale(1.15); }
}

/* ---------- Typography ---------- */

h1, h2, h3 {
  font-family: var(--font-display);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2rem, 3.9vw, 3.1rem); font-weight: 700; }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); font-weight: 700; }
h3 { font-size: 1.2rem; font-weight: 600; }

h1 em {
  font-style: normal;
  background: linear-gradient(100deg, var(--accent) 20%, #12c493 60%, var(--accent-bright));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

h1 .line { display: block; overflow: hidden; }
h1 .line > span { display: inline-block; }

.lead {
  font-size: clamp(1.05rem, 2vw, 1.22rem);
  color: var(--text-muted);
}

.lead--light { color: var(--text-light); }
.muted-light { color: var(--text-light-muted); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-strong);
  margin-bottom: 0.9rem;
}

.eyebrow--light { color: var(--accent-bright); }

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  padding: 0.7rem 1.5rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.98rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  position: relative;
  transition: transform 0.18s ease, box-shadow 0.2s ease, background 0.2s ease,
              border-color 0.2s ease, color 0.2s ease;
}

.btn:hover { transform: scale(1.04); }
.btn:active { transform: scale(0.97); transition-duration: 0.08s; }

.btn--primary {
  background: linear-gradient(120deg, var(--accent), #12b389);
  color: #fff;
  box-shadow: 0 6px 22px rgba(14, 159, 122, 0.35);
}
.btn--primary:hover { box-shadow: 0 0 26px rgba(14, 159, 122, 0.55); }

.btn--ghost {
  border-color: var(--border);
  color: var(--text);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(6px);
}
.btn--ghost:hover {
  border-color: var(--accent);
  color: var(--accent-strong);
  box-shadow: 0 0 16px rgba(14, 159, 122, 0.25);
}

.btn--ghost-light {
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}
.btn--ghost-light:hover {
  border-color: var(--accent-bright);
  color: var(--accent-bright);
  box-shadow: 0 0 18px rgba(45, 240, 178, 0.35);
}

.btn--large { padding: 0.95rem 2rem; font-size: 1.05rem; }
.btn--small { padding: 0.45rem 1.15rem; font-size: 0.9rem; }
.btn--full { width: 100%; }

/* ---------- Pills ---------- */

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  background: var(--accent-soft);
  border: 1px solid rgba(14, 159, 122, 0.25);
  color: var(--accent-strong);
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pill--muted { background: #edf1f0; border-color: var(--border); color: var(--text-muted); }

.pill__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(14, 159, 122, 0.45); }
  50% { box-shadow: 0 0 0 7px rgba(14, 159, 122, 0); }
}

/* ---------- Nav ---------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  transition: background 0.3s, box-shadow 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}

.nav.is-scrolled {
  background: rgba(251, 253, 252, 0.82);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--border);
  box-shadow: 0 4px 24px rgba(14, 42, 37, 0.06);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.9rem;
}

.nav__logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  color: var(--text);
  font-size: 1.05rem;
}

.nav__logo-icon {
  display: inline-flex;
  width: 32px; height: 32px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent), #12c493);
  color: #fff;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(14, 159, 122, 0.4);
}
.nav__logo-icon svg { width: 22px; height: 22px; }

.logo-hyphen { color: var(--accent); }
.logo-hyphen--bright { color: var(--accent-bright); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 1.7rem;
}

.nav__links a {
  text-decoration: none;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.15s;
}
.nav__links a:hover { color: var(--accent-strong); }
.nav__links a.btn { color: #fff; }

/* scrollspy: the section you're reading lights up in the nav */
.nav__links a:not(.btn) { position: relative; }

.nav__links a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  border-radius: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

.nav__links a.is-active { color: var(--accent-strong); }
.nav__links a.is-active::after { transform: scaleX(1); }

/* nav battery + live % = the visitor's reading progress */
.nav__meter {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-shrink: 0;
}

.nav__charge-label {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-muted);
  min-width: 2.6em;
  font-variant-numeric: tabular-nums;
}

.nav__meter.is-full .nav__charge-label { color: var(--accent-strong); }
.nav__meter.is-full .nav__charge { border-color: var(--accent); }
.nav__meter.is-full .nav__charge::after { background: var(--accent); }
.nav__meter.is-full .nav__charge-fill { animation: charge-pulse 1.4s ease-in-out infinite; }

.nav__charge {
  position: relative;
  width: 34px;
  height: 15px;
  border: 2px solid var(--text-muted);
  border-radius: 4px;
  flex-shrink: 0;
}

.nav__charge::after {
  content: "";
  position: absolute;
  right: -5px;
  top: 3px;
  width: 3px;
  height: 5px;
  background: var(--text-muted);
  border-radius: 0 2px 2px 0;
}

.nav__charge-fill {
  position: absolute;
  inset: 2px;
  width: 0%;
  max-width: calc(100% - 4px);
  border-radius: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-bright));
  transition: width 0.2s linear;
}

@keyframes charge-pulse {
  50% { box-shadow: 0 0 10px rgba(45, 240, 178, 0.8); }
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 6px;
}
.nav__toggle span {
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  padding: clamp(3rem, 7vw, 5.5rem) 0 clamp(3rem, 6vw, 4.5rem);
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hero__copy .pill { margin-bottom: 1.3rem; }
.hero__copy h1 { margin-bottom: 1.2rem; }
.hero__copy .lead { margin-bottom: 2rem; max-width: 34rem; }

.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero__battery-note {
  font-size: 0.88rem;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.6);
  border: 1px dashed var(--border);
  border-radius: 12px;
  padding: 0.6rem 1rem;
  margin-bottom: 1.6rem;
  max-width: 32rem;
}

.hero__battery-note strong { color: var(--accent-strong); }

.hero__visual {
  position: relative;
  aspect-ratio: 1 / 1.05;
  max-width: 540px;
  margin-inline: auto;
  width: 100%;
}

.hero__visual canvas {
  width: 100%;
  height: 100%;
  display: block;
  touch-action: pan-y;
}

.hero__glow {
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45, 240, 178, 0.28), rgba(14, 159, 122, 0.08) 55%, transparent 72%);
  filter: blur(10px);
  animation: glow-breathe 5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes glow-breathe {
  0%, 100% { transform: scale(1); opacity: 0.85; }
  50% { transform: scale(1.07); opacity: 1; }
}

.hero__tagline {
  position: absolute;
  bottom: -0.2rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--accent-strong);
  white-space: nowrap;
}

.hero__flow { margin-top: clamp(2.5rem, 5vw, 4rem); }

.hero__scroll {
  position: absolute;
  bottom: 1.2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 26px; height: 42px;
  border: 2px solid var(--border);
  border-radius: 999px;
  display: none;
}

/* ---------- Flow visual ---------- */

.flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.4rem, 2vw, 1.2rem);
  flex-wrap: wrap;
  padding: 1.4rem 1rem;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow);
}

.flow__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--text-muted);
  width: 96px;
  text-align: center;
}

.flow__icon {
  width: 56px; height: 56px;
  display: grid;
  place-items: center;
  font-size: 1.55rem;
  border-radius: 18px;
  background: var(--bg-tint);
  border: 1px solid var(--border);
  transition: transform 0.2s;
  animation: flow-active 6s ease-in-out infinite;
}

/* the process runs: each stage lights up in turn, forever */
.flow > .flow__step:nth-child(1) .flow__icon { animation-delay: 0s; }
.flow > .flow__step:nth-child(3) .flow__icon { animation-delay: 1.5s; }
.flow > .flow__step:nth-child(5) .flow__icon { animation-delay: 3s; }
.flow > .flow__step:nth-child(7) .flow__icon { animation-delay: 4.5s; }

@keyframes flow-active {
  0%, 22%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(14, 159, 122, 0);
  }
  9% {
    transform: scale(1.14);
    background: var(--accent-soft);
    border-color: var(--accent);
    box-shadow: 0 0 18px rgba(14, 159, 122, 0.45);
  }
}

.flow__step--accent .flow__icon {
  background: var(--accent-soft);
  border-color: var(--accent);
  box-shadow: 0 0 18px rgba(14, 159, 122, 0.35);
}
.flow__step--accent { color: var(--accent-strong); }

.flow__arrow {
  color: var(--accent);
  font-weight: 700;
  font-size: 1.1rem;
  animation: flow-arrow 6s ease-in-out infinite;
}

/* arrows "pass the charge" to the next stage, in sync with the icons */
.flow > .flow__arrow:nth-child(2) { animation-delay: 0.95s; }
.flow > .flow__arrow:nth-child(4) { animation-delay: 2.45s; }
.flow > .flow__arrow:nth-child(6) { animation-delay: 3.95s; }

@keyframes flow-arrow {
  0%, 14%, 100% { transform: translateX(0); opacity: 0.45; }
  6% { transform: translateX(6px); opacity: 1; color: var(--accent-strong); }
}

/* ---------- Marquee ---------- */

.marquee {
  overflow: hidden;
  border-block: 1px solid var(--border);
  background: var(--bg-dark);
  padding: 0.85rem 0;
}

.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.marquee__track span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.28em;
  color: var(--accent-bright);
  white-space: nowrap;
  opacity: 0.9;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Sections ---------- */

.section { padding: clamp(4rem, 8.5vw, 6.5rem) 0; position: relative; }
.section--tint { background: var(--bg-tint); }

.section--dark {
  background:
    radial-gradient(ellipse 70% 60% at 50% 0%, rgba(14, 159, 122, 0.2), transparent),
    var(--bg-dark);
  color: var(--text-light);
}

.section__head { max-width: 46rem; margin-bottom: 2.8rem; }
.section__head h2 { margin-bottom: 1rem; }
.section__head p { color: var(--text-muted); font-size: 1.05rem; }

.section__head--center {
  margin-inline: auto;
  text-align: center;
  margin-bottom: 0;
}
.section--dark .section__head--center { max-width: 48rem; }
.section--dark p { color: inherit; }
.section--dark .lead { margin: 1.2rem 0 1rem; }
#feedback .section__head--center { margin-bottom: 2.6rem; }

/* ---------- Cards ---------- */

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  perspective: 1200px;
}

.card {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.7rem;
  box-shadow: var(--shadow);
  transform-style: preserve-3d;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-bright));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.card:hover { border-color: rgba(14, 159, 122, 0.4); box-shadow: 0 18px 50px rgba(14, 42, 37, 0.14); }
.card:hover::before { transform: scaleX(1); }

.card__icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: inline-grid;
  place-items: center;
  width: 62px; height: 62px;
  border-radius: 18px;
  background: var(--accent-soft);
  transform: translateZ(30px);
}

.card h3 { margin-bottom: 0.55rem; transform: translateZ(20px); }
.card p { color: var(--text-muted); font-size: 0.97rem; transform: translateZ(12px); }

/* ---------- Problem stats band ---------- */

.stats {
  margin-top: 2.6rem;
  background:
    radial-gradient(ellipse 70% 80% at 50% 0%, rgba(14, 159, 122, 0.2), transparent),
    var(--bg-dark);
  border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--text-light);
}

.stats__title {
  font-size: 0.85rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-bright);
  margin-bottom: 1.6rem;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}

.stat__num {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  line-height: 1.05;
  color: #fff;
  margin-bottom: 0.4rem;
}

.stat__num em {
  font-style: normal;
  font-size: 0.42em;
  color: var(--accent-bright);
  margin-left: 0.25rem;
}

.stat p {
  font-size: 0.92rem;
  color: var(--text-light-muted);
  line-height: 1.55;
}

.stat sup a,
.stats__note sup a {
  color: var(--accent-bright);
  text-decoration: none;
  font-weight: 700;
  padding: 0 0.15em;
}

.stats__note {
  margin-top: 1.8rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.97rem;
  color: var(--text-light);
  max-width: 52rem;
}

.stats__note strong { color: var(--accent-bright); }

.stats__sources {
  margin-top: 1.2rem;
  padding-left: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.stats__sources li {
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.45);
}

.stats__sources a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.stats__sources a:hover { color: var(--accent-bright); }

@media (max-width: 720px) {
  .stats__grid { grid-template-columns: 1fr; gap: 1.4rem; }
}

/* ---------- Steps timeline ---------- */

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
  padding-top: 2.2rem;
}

.steps__track {
  position: absolute;
  top: 0;
  left: 4%;
  right: 4%;
  height: 3px;
  background: var(--border);
  border-radius: 3px;
  overflow: hidden;
}

.steps__progress {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--accent-bright));
  border-radius: 3px;
  box-shadow: 0 0 12px rgba(45, 240, 178, 0.7);
}

.step {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.8rem 1.6rem;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.step:hover { transform: scale(1.02); box-shadow: 0 0 20px rgba(14, 159, 122, 0.16); }

.step::before {
  content: "";
  position: absolute;
  top: -2.2rem;
  left: 50%;
  transform: translate(-50%, -35%);
  width: 13px; height: 13px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid var(--bg-tint);
  box-shadow: 0 0 0 2px var(--accent-soft);
}

.step__num {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--accent);
  letter-spacing: 0.12em;
  margin-bottom: 0.8rem;
  padding: 0.25rem 0.65rem;
  background: var(--accent-soft);
  border-radius: 9px;
}

.step h3 { margin-bottom: 0.5rem; }
.step p { color: var(--text-muted); font-size: 0.94rem; }

.disclaimer {
  margin-top: 2.4rem;
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ---------- Product ---------- */

.product {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.product__copy .pill { margin-bottom: 1.2rem; }
.product__copy h2 { margin-bottom: 1.1rem; }

.product__name {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
  background: linear-gradient(100deg, var(--accent-strong), #12c493);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.product__copy > p { color: var(--text-muted); margin-bottom: 1.5rem; max-width: 30rem; }

.product__made {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 1.6rem;
  max-width: 30rem;
}

.product__made li {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  padding: 0.9rem 1.1rem;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: 14px;
  font-size: 0.93rem;
  color: var(--text-muted);
  transition: border-color 0.2s, transform 0.2s;
}

.product__made li:hover { border-left-color: var(--accent-bright); }

.product__made-icon {
  font-size: 1.4rem;
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 12px;
  background: var(--accent-soft);
}

.product__made strong {
  display: block;
  font-family: var(--font-display);
  color: var(--text);
  margin-bottom: 0.15rem;
}

.product__tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.product__tags li {
  padding: 0.5rem 1.05rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--border);
  font-family: var(--font-display);
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
}

.product__tags li:hover {
  border-color: var(--accent);
  color: var(--accent-strong);
}

.product__cta {
  margin-top: 1.6rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.product__cta-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
}

.product__visual {
  position: relative;
  aspect-ratio: 1 / 1.1;
  max-width: 520px;
  width: 100%;
  margin-inline: auto;
}

.product__visual canvas {
  width: 100%;
  height: 100%;
  display: block;
  cursor: grab;
  touch-action: pan-y;
}
.product__visual canvas:active { cursor: grabbing; }

.product__glow {
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(14, 159, 122, 0.22), transparent 70%);
  filter: blur(14px);
  pointer-events: none; /* painted above the canvas — must not eat drag events */
}

.product__hint {
  position: absolute;
  bottom: -1.7rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: italic;
  white-space: nowrap;
  background: rgba(251, 253, 252, 0.8);
  padding: 0.1rem 0.6rem;
  border-radius: 999px;
}

/* ---------- Founder note ---------- */

.founder {
  margin-top: 2.6rem;
  padding-top: 2.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}

.founder__avatar {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #12c493);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  box-shadow: 0 6px 20px rgba(14, 159, 122, 0.4);
}

.founder__quote {
  max-width: 34rem;
  font-size: 1.02rem;
  font-style: italic;
  color: var(--text-light);
  line-height: 1.7;
}

.founder__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--accent-bright);
}

/* ---------- Feedback form ---------- */

.feedback-form {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: clamp(1.6rem, 4vw, 2.7rem);
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  backdrop-filter: blur(8px);
}

.form-row label,
.form-row legend {
  font-weight: 600;
  font-size: 0.97rem;
  display: block;
}

fieldset.form-row { border: 0; }

.form-row legend { margin-bottom: 0.85rem; }

.form-row--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.optional {
  font-weight: 500;
  font-size: 0.8rem;
  color: var(--text-muted);
}

input[type="text"],
input[type="email"],
select,
textarea {
  width: 100%;
  margin-top: 0.45rem;
  padding: 0.8rem 1.05rem;
  border: 1.5px solid var(--border);
  border-radius: 13px;
  font-family: inherit;
  font-size: 0.97rem;
  color: var(--text);
  background: var(--bg);
  transition: border-color 0.15s, box-shadow 0.15s;
  resize: vertical;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(14, 159, 122, 0.14);
}

.choices {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.choices--inline { flex-direction: row; flex-wrap: wrap; }

.choices label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1.05rem;
  border: 1.5px solid var(--border);
  border-radius: 13px;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.94rem;
  transition: border-color 0.15s, background 0.15s, transform 0.15s;
}

.choices--inline label { flex: 1 1 auto; justify-content: center; min-width: 92px; }

.choices label:hover { border-color: var(--accent); }

.choices input { accent-color: var(--accent); }

.choices label:has(input:checked) {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-weight: 600;
}

.feedback-thanks {
  text-align: center;
  background: #fff;
  border: 1.5px solid var(--accent);
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 40px rgba(14, 159, 122, 0.2);
  padding: 3.2rem 2rem;
  font-size: 1.15rem;
  font-weight: 600;
}

.feedback-thanks__icon { font-size: 2.8rem; margin-bottom: 0.8rem; }

.feedback-thanks__nudge {
  margin-top: 1.6rem;
  padding-top: 1.4rem;
  border-top: 1px dashed var(--border);
}

.feedback-thanks__nudge p {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.inline-link {
  color: var(--accent-strong);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(14, 159, 122, 0.4);
  text-underline-offset: 3px;
}

.inline-link:hover { text-decoration-color: var(--accent); }

/* ---------- FAQ ---------- */

#faq .section__head--center { margin-bottom: 2.4rem; }

.faq {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.faq__item {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.faq__item:hover { border-color: rgba(14, 159, 122, 0.4); }
.faq__item[open] { border-color: var(--accent); box-shadow: var(--shadow); }

.faq__item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.15rem 3rem 1.15rem 1.4rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.02rem;
  position: relative;
  user-select: none;
}

.faq__item summary::-webkit-details-marker { display: none; }

.faq__item summary::after {
  content: "+";
  position: absolute;
  right: 1.3rem;
  top: 50%;
  transform: translateY(-50%);
  width: 26px; height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-weight: 700;
  transition: transform 0.25s ease, background 0.25s;
}

.faq__item[open] summary::after {
  content: "–";
  transform: translateY(-50%) rotate(180deg);
  background: var(--accent);
  color: #fff;
}

.faq__item p {
  padding: 0 1.4rem 1.3rem;
  color: var(--text-muted);
  font-size: 0.96rem;
}

/* ---------- CTA ---------- */

.cta {
  position: relative;
  background:
    radial-gradient(ellipse 70% 80% at 50% 100%, rgba(14, 159, 122, 0.3), transparent),
    var(--bg-dark);
  color: #fff;
  padding: clamp(4.5rem, 10vw, 7rem) 0;
  overflow: hidden;
}

.cta__spark {
  position: absolute;
  inset: 0;
  overflow: hidden;
  mask-image: radial-gradient(ellipse 70% 90% at 50% 100%, black, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 90% at 50% 100%, black, transparent 75%);
}

/* dots animate via transform (GPU-composited) — animating background-position
   re-rasterizes the masked layer every frame and can freeze weak GPUs */
.cta__spark::before {
  content: "";
  position: absolute;
  inset: 0 0 -340px 0;
  background-image: radial-gradient(rgba(45, 240, 178, 0.35) 1px, transparent 1.5px);
  background-size: 34px 34px;
  animation: spark-rise 14s linear infinite;
  will-change: transform;
}

@keyframes spark-rise {
  from { transform: translateY(0); }
  to { transform: translateY(-340px); }
}

.cta__inner { text-align: center; max-width: 46rem; margin-inline: auto; position: relative; }
.cta h2 { font-size: clamp(2rem, 4.5vw, 3.1rem); margin-bottom: 1.1rem; }

.cta__gradient {
  background: linear-gradient(100deg, var(--accent-bright), #7df5cf);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.cta p { color: var(--text-light-muted); font-size: 1.1rem; margin-bottom: 2.2rem; }

.cta__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Notify strip ---------- */

.notify {
  margin-top: 3rem;
  padding-top: 2.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.notify__label {
  color: var(--text-light-muted);
  font-size: 0.98rem;
  margin-bottom: 1rem !important;
}

.notify__row {
  display: flex;
  gap: 0.7rem;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 30rem;
  margin-inline: auto;
}

.notify__row input {
  flex: 1 1 220px;
  margin-top: 0;
  padding: 0.85rem 1.2rem;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-family: inherit;
  font-size: 0.97rem;
}

.notify__row input::placeholder { color: rgba(255, 255, 255, 0.45); }

.notify__row input:focus {
  outline: none;
  border-color: var(--accent-bright);
  box-shadow: 0 0 0 4px rgba(45, 240, 178, 0.18);
}

.notify__done {
  margin-top: 1rem !important;
  color: var(--accent-bright) !important;
  font-weight: 600;
}

.notify__privacy {
  margin-top: 0.9rem !important;
  font-size: 0.78rem !important;
  color: rgba(255, 255, 255, 0.4) !important;
  margin-bottom: 0 !important;
}

/* ---------- Footer ---------- */

.footer {
  background: #0a1f1b;
  color: var(--text-light-muted);
  padding: 3.2rem 0 2rem;
}

.footer__inner { text-align: center; }

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-bottom: 1.5rem;
}

.footer__logo {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.16em;
  color: #fff;
  font-size: 1.2rem;
}

.footer__tagline {
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-bright);
}

.footer__links {
  display: flex;
  justify-content: center;
  gap: 1.9rem;
  flex-wrap: wrap;
  margin-bottom: 1.7rem;
}

.footer__links a {
  color: var(--text-light-muted);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  transition: color 0.15s;
}
.footer__links a:hover { color: var(--accent-bright); }

.footer__disclaimer {
  max-width: 34rem;
  margin: 0 auto 1rem;
  font-size: 0.8rem;
  opacity: 0.75;
}

.footer__copyright { font-size: 0.8rem; opacity: 0.6; }

/* ---------- Focus visibility (keyboard users) ---------- */

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

.swatch:focus-visible {
  outline: 3px solid var(--accent-strong);
  outline-offset: 3px;
}

/* ---------- Honeypot (spam trap — humans never see it) ---------- */

.hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

/* ---------- Animation safety net ---------- */
/* if GSAP never starts (slow/blocked CDN), a 3s head timer adds this class */

.anim-timeout .hero-fade,
.anim-timeout .reveal,
.anim-timeout .reveal-item,
.anim-timeout #heroTitle .line > span,
.anim-timeout .hero__flow .flow__step,
.anim-timeout .hero__flow .flow__arrow,
.anim-timeout #heroVisual {
  opacity: 1 !important;
  transform: none !important;
}

/* ---------- Skip link ---------- */

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 100;
  padding: 0.6rem 1.2rem;
  background: var(--accent);
  color: #fff;
  border-radius: 0 0 12px 12px;
  font-weight: 600;
  text-decoration: none;
  transition: top 0.2s;
}

.skip-link:focus { top: 0; }

/* ---------- Three ways in ---------- */

.ways { padding-bottom: clamp(2rem, 4vw, 3rem); }

.ways__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.way {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1.1rem 1.2rem;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-decoration: none;
  color: var(--text);
  transition: border-color 0.2s, transform 0.2s;
}

.way:hover {
  border-color: var(--accent);
  transform: scale(1.02);
  box-shadow: 0 0 18px rgba(14, 159, 122, 0.18);
}

.way__icon {
  font-size: 1.5rem;
  width: 48px; height: 48px;
  display: grid;
  place-items: center;
  background: var(--accent-soft);
  border-radius: 14px;
  flex-shrink: 0;
}

.way__text { display: flex; flex-direction: column; gap: 0.1rem; }
.way__text strong { font-family: var(--font-display); font-size: 0.98rem; }
.way__text small { color: var(--text-muted); font-size: 0.8rem; line-height: 1.4; }

.way__arrow {
  margin-left: auto;
  color: var(--accent);
  font-weight: 700;
  transition: transform 0.2s;
}

.way:hover .way__arrow { transform: translateX(4px); }

/* ---------- Share row ---------- */

.share {
  margin-top: 2.6rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  text-align: center;
}

.share__label {
  display: block;
  color: var(--text-light-muted);
  font-size: 0.88rem;
  margin-bottom: 1rem;
}

.share__row {
  display: flex;
  gap: 0.7rem;
  justify-content: center;
  flex-wrap: wrap;
}

.share__btn {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  border-radius: 999px;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  background: none;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, transform 0.15s;
}

.share__btn:hover {
  border-color: var(--accent-bright);
  color: var(--accent-bright);
  transform: scale(1.05);
  box-shadow: 0 0 14px rgba(45, 240, 178, 0.3);
}

/* ---------- Sticky mobile CTA ---------- */

.mobile-cta {
  position: fixed;
  bottom: 0.9rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 60;
  display: none;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.45rem 0.45rem 0.55rem;
  background: rgba(14, 42, 37, 0.95);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  box-shadow: 0 10px 34px rgba(14, 42, 37, 0.4);
}

.mobile-cta .btn { white-space: nowrap; }

.mobile-cta__close {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  cursor: pointer;
}

@media (max-width: 640px) {
  .mobile-cta:not([hidden]) { display: flex; }
}

/* ---------- Notify slide-in ---------- */

.slidein {
  position: fixed;
  bottom: 1.4rem;
  right: 1.4rem;
  z-index: 60;
  width: min(330px, calc(100vw - 2.8rem));
  background: #fff;
  border: 1px solid var(--border);
  border-top: 4px solid var(--accent);
  border-radius: var(--radius);
  box-shadow: 0 18px 50px rgba(14, 42, 37, 0.22);
  padding: 1.3rem 1.3rem 1.2rem;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.slidein.is-open { opacity: 1; transform: none; }

.slidein__close {
  position: absolute;
  top: 0.6rem;
  right: 0.7rem;
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 0;
  background: var(--bg-tint);
  color: var(--text-muted);
  cursor: pointer;
  font-size: 0.85rem;
}

.slidein__title { font-family: var(--font-display); font-size: 1.05rem; margin-bottom: 0.15rem; }
.slidein__text { font-size: 0.86rem; color: var(--text-muted); margin-bottom: 0.9rem; }

.slidein form { display: flex; gap: 0.5rem; }

.slidein input {
  flex: 1;
  min-width: 0;
  margin-top: 0;
  padding: 0.55rem 0.9rem;
  font-size: 0.88rem;
}

.slidein__done { font-weight: 600; color: var(--accent-strong); }

/* ---------- 3D loading / unavailable states ---------- */

.hero__visual::after,
.product__visual::after,
.viewer::after,
.partner__visual::after {
  content: "⚡";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 2.2rem;
  color: var(--accent);
  pointer-events: none;
  animation: loader-pulse 1.2s ease-in-out infinite;
}

@keyframes loader-pulse {
  50% { opacity: 0.25; transform: scale(0.88); }
}

body.webgl-on .hero__visual::after,
body.webgl-on .product__visual::after,
body.webgl-on .viewer::after,
body.webgl-on .partner__visual::after { content: none; }

body.webgl-off:not(.webgl-on) .hero__visual::after,
body.webgl-off:not(.webgl-on) .product__visual::after,
body.webgl-off:not(.webgl-on) .viewer::after,
body.webgl-off:not(.webgl-on) .partner__visual::after {
  content: "🔋 3D preview unavailable on this device";
  font-size: 0.88rem;
  color: var(--text-muted);
  animation: none;
}

/* ---------- Confetti canvas ---------- */

.fx-confetti {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
}

/* ---------- 404 ---------- */

.notfound {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  gap: 1rem;
}

.notfound__battery { font-size: 4rem; }
.notfound p { color: var(--text-muted); max-width: 28rem; }
.notfound__actions { display: flex; gap: 0.9rem; flex-wrap: wrap; justify-content: center; margin-top: 0.6rem; }

/* ---------- Footer no-cookies line ---------- */

.footer__nocookies {
  font-size: 0.8rem;
  color: var(--accent-bright);
  opacity: 0.85;
  margin-bottom: 0.8rem;
}

@media (max-width: 900px) {
  .ways__inner { grid-template-columns: 1fr; }
}

/* ---------- Rewards loop ---------- */

.rewards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  margin-bottom: 2.5rem;
}

.loop {
  position: relative;
  width: min(430px, 100%);
  aspect-ratio: 1;
  margin-inline: auto;
}

.loop__ring {
  position: absolute;
  inset: 10%;
  color: var(--accent);
  opacity: 0.55;
  animation: loop-spin 40s linear infinite;
}

@keyframes loop-spin {
  to { transform: rotate(360deg); }
}

.loop__node {
  position: absolute;
  width: 128px;
  padding: 0.7rem 0.6rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  transition: transform 0.2s, border-color 0.2s;
}

.loop__node:hover { transform: scale(1.06); border-color: var(--accent); }

.loop__node span { font-size: 1.3rem; }
.loop__node strong { font-family: var(--font-display); font-size: 0.95rem; }
.loop__node small { font-size: 0.68rem; color: var(--text-muted); line-height: 1.35; }

.loop__node--top    { top: 0;    left: 50%; transform: translateX(-50%); }
.loop__node--right  { right: 0;  top: 50%;  transform: translateY(-50%); }
.loop__node--bottom { bottom: 0; left: 50%; transform: translateX(-50%); }
.loop__node--left   { left: 0;   top: 50%;  transform: translateY(-50%); }

.loop__node--top:hover    { transform: translateX(-50%) scale(1.06); }
.loop__node--right:hover  { transform: translateY(-50%) scale(1.06); }
.loop__node--bottom:hover { transform: translateX(-50%) scale(1.06); }
.loop__node--left:hover   { transform: translateY(-50%) scale(1.06); }

.loop__center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 74px; height: 74px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #12c493);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  box-shadow: 0 8px 26px rgba(14, 159, 122, 0.45);
}

.rewards__detail h3 { margin-bottom: 1rem; }

.rewards__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.rewards__table td {
  padding: 0.65rem 0.4rem;
  border-bottom: 1px dashed var(--border);
}

.rewards__table td:last-child {
  text-align: right;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--accent-strong);
  white-space: nowrap;
}

.rewards__note {
  margin-top: 0.9rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-style: italic;
}

.rewards__actions { margin-top: 1.4rem; }

.partner {
  display: grid;
  grid-template-columns: 280px 1fr 340px;
  grid-template-areas: "visual text form";
  align-items: stretch; /* equal-height columns; dividers make the rhythm read as designed */
  background: #fff;
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  padding: 1.8rem 0;
  box-shadow: var(--shadow);
}

.partner__visual {
  grid-area: visual;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 1.5rem;
  border-right: 1px solid var(--border);
}

.partner__text {
  grid-area: text;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 2rem;
  border-right: 1px solid var(--border);
}

.partner__form,
.partner__done {
  grid-area: form;
  align-self: center;
  padding: 0 2rem;
}

@media (max-width: 1100px) {
  .partner {
    grid-template-columns: 280px 1fr;
    grid-template-areas: "visual text" "form form";
    row-gap: 1.8rem;
    padding: 1.8rem 0 1.6rem;
  }
  .partner__text { border-right: none; }
}

@media (max-width: 700px) {
  .partner {
    grid-template-columns: 1fr;
    grid-template-areas: "visual" "text" "form";
    row-gap: 1.6rem;
  }
  .partner__visual { border-right: none; padding-bottom: 1rem; }
  .partner__text { padding: 0 1.5rem; }
  .partner__form, .partner__done { padding: 0 1.5rem; }
}

.partner__text h3 { margin-bottom: 0.35rem; }
.partner__text p { color: var(--text-muted); font-size: 0.95rem; max-width: 36rem; }

.partner__visual { position: relative; }

.partner__visual canvas {
  width: 240px;
  height: 275px;
  display: block;
  cursor: grab;
  touch-action: pan-y;
}
.partner__visual canvas:active { cursor: grabbing; }

.partner__visual-hint {
  margin-top: 0.4rem;
  font-size: 0.72rem;
  color: var(--text-muted);
  font-style: italic;
  white-space: nowrap;
}

.partner__points {
  list-style: none;
  margin-top: 0.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.partner__points li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.partner__points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-strong);
  font-weight: 700;
}

.partner__form {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  min-width: min(300px, 100%);
}

.partner__form label { font-weight: 600; font-size: 0.9rem; }
.partner__form input { margin-top: 0.3rem; }

.partner__small {
  font-size: 0.76rem;
  color: var(--text-muted);
}

.partner__done {
  font-weight: 600;
  color: var(--accent-strong);
  min-width: min(300px, 100%);
}

/* ---------- Partner FAQ ---------- */

.partner-faq { margin-top: 1.6rem; }

.partner-faq__title {
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

.partner-faq__note {
  margin-top: 1rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ---------- Scan demo ---------- */

.scan { padding-top: clamp(2rem, 4vw, 3rem); }

.scan__context {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1.1rem;
  text-align: center;
}

.scan__demo-banner {
  background: #fff7e6;
  border: 1.5px solid #f0c36d;
  color: #7a5b16;
  border-radius: 14px;
  padding: 0.85rem 1.2rem;
  font-size: 0.92rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.scan__card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: clamp(1.5rem, 4vw, 2.4rem);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.scan__box-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-bottom: 1.3rem;
  border-bottom: 1px dashed var(--border);
}

.scan__box-icon {
  font-size: 2rem;
  width: 62px; height: 62px;
  display: grid;
  place-items: center;
  background: var(--accent-soft);
  border-radius: 16px;
  flex-shrink: 0;
}

.scan__box-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  font-weight: 600;
}

.scan__box-id {
  font-size: 1.6rem;
  line-height: 1.1;
}

.scan__box-loc { font-size: 0.85rem; color: var(--text-muted); }

.scan__box-status {
  margin-left: auto;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent-strong);
  white-space: nowrap;
}

.scan__wallet {
  position: relative;
  text-align: center;
  padding: 1.2rem 0 0.6rem;
}

.scan__wallet-label {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: var(--text-muted);
}

.scan__wallet-balance {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(3rem, 9vw, 4.2rem);
  line-height: 1.1;
  color: var(--text);
}

.scan__wallet-balance em {
  font-style: normal;
  font-size: 0.4em;
  color: var(--accent-strong);
  margin-left: 0.2rem;
}

#rpBalance.is-bump { animation: rp-bump 0.45s ease; display: inline-block; }

@keyframes rp-bump {
  30% { transform: scale(1.18); color: var(--accent-strong); }
}

.scan__float {
  position: absolute;
  top: 0.4rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--accent-strong);
  opacity: 0;
  pointer-events: none;
}

.scan__float.is-anim { animation: rp-float 1.1s ease forwards; }

@keyframes rp-float {
  0% { opacity: 0; transform: translate(-50%, 14px); }
  25% { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%, -34px); }
}

.scan__validate-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-align: center;
  max-width: 32rem;
  margin-inline: auto;
}

.scan__tiers h2 { font-size: 1.05rem; margin-bottom: 1rem; }

.tier { margin-bottom: 0.9rem; }

.tier__head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.88rem;
  margin-bottom: 0.35rem;
}

.tier__label { font-weight: 600; }
.tier__amount { color: var(--text-muted); font-weight: 600; white-space: nowrap; }
.tier.is-unlocked .tier__amount { color: var(--accent-strong); }

.tier__track {
  height: 10px;
  border-radius: 5px;
  background: var(--bg-tint);
  border: 1px solid var(--border);
  overflow: hidden;
}

.tier__fill {
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(90deg, var(--accent), var(--accent-bright));
  transition: width 0.5s ease;
}

.scan__reset {
  align-self: center;
  background: none;
  border: 0;
  color: var(--text-muted);
  font-size: 0.8rem;
  text-decoration: underline;
  cursor: pointer;
  font-family: inherit;
}

.scan__ctas {
  text-align: center;
  margin-top: 2.2rem;
}

.scan__ctas p { font-weight: 600; margin-bottom: 1rem; }

.scan__ctas-row {
  display: flex;
  gap: 0.9rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.6rem;
}

/* ---------- Safety section (store) ---------- */

.safety {
  max-width: 46rem;
  margin: 3.5rem auto 2rem;
  background: #fff;
  border: 1px solid var(--border);
  border-top: 4px solid var(--accent);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(1.5rem, 4vw, 2.2rem);
}

.safety h2 { margin-bottom: 0.7rem; }

.safety__intro { color: var(--text-muted); font-size: 0.97rem; margin-bottom: 1.2rem; }

.safety__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.safety__list li {
  position: relative;
  padding-left: 1.7rem;
  font-size: 0.93rem;
  color: var(--text-muted);
}

.safety__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-strong);
  font-weight: 700;
}

.safety__list strong { color: var(--text); }

/* acknowledgment checkbox */

.ack {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  font-size: 0.82rem !important;
  font-weight: 500 !important;
  color: var(--text-muted);
  line-height: 1.5;
  cursor: pointer;
}

.ack input {
  margin-top: 0.2rem;
  accent-color: var(--accent);
  width: 16px; height: 16px;
  flex-shrink: 0;
}

.ack strong { color: var(--text); }

@media (max-width: 900px) {
  .rewards { grid-template-columns: 1fr; }
  .loop { width: min(360px, 92vw); }
  .loop__node { width: 108px; }
  .partner { flex-direction: column; align-items: flex-start; }
}

/* ---------- Store / configurator ---------- */

.store { padding-top: clamp(2.5rem, 5vw, 4rem); }

.store__head { max-width: 44rem; margin-bottom: 2.5rem; }
.store__head .pill { margin-bottom: 1.2rem; }
.store__head h1 { margin-bottom: 0.9rem; }

.store__made {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.store__made span {
  padding: 0.5rem 1.05rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--border);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}

.configurator {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.viewer {
  position: sticky;
  top: 90px;
  aspect-ratio: 1 / 1.05;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.viewer canvas {
  width: 100%;
  height: 100%;
  display: block;
  cursor: grab;
  touch-action: pan-y;
}
.viewer canvas:active { cursor: grabbing; }

.viewer__glow {
  position: absolute;
  inset: 15%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(14, 159, 122, 0.18), transparent 70%);
  filter: blur(14px);
  pointer-events: none;
}

.viewer__toggle {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1.5px solid var(--border);
  background: rgba(255, 255, 255, 0.9);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.viewer__toggle:hover,
.viewer__toggle[aria-pressed="true"] {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--accent-strong);
}

.viewer__hint {
  position: absolute;
  bottom: 0.9rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.78rem;
  color: var(--text-muted);
  font-style: italic;
  white-space: nowrap;
  pointer-events: none;
}

.options {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.options__group {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.5rem 1.6rem;
  box-shadow: var(--shadow);
}

.options__title {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.options__step {
  display: inline-grid;
  place-items: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
}

.options__sub {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1.1rem;
}

.options__value {
  margin-top: 0.8rem;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--accent-strong);
  font-size: 0.95rem;
}

/* colour swatches */

.swatches { display: flex; gap: 0.8rem; flex-wrap: wrap; }

.swatch {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--swatch);
  border: 3px solid #fff;
  box-shadow: 0 0 0 1.5px var(--border), 0 4px 12px rgba(14, 42, 37, 0.18);
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
}

.swatch:hover { transform: scale(1.12); }

.swatch.is-active {
  box-shadow: 0 0 0 3px var(--accent), 0 4px 14px rgba(14, 159, 122, 0.4);
  transform: scale(1.08);
}

/* capacity options */

.capacity {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}

.capacity__option {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem 0.9rem;
  border: 1.5px solid var(--border);
  border-radius: 14px;
  background: var(--bg);
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  transition: border-color 0.15s, background 0.15s, transform 0.15s;
}

.capacity__option:hover {
  border-color: var(--accent);
  box-shadow: 0 0 14px rgba(14, 159, 122, 0.2);
}

.capacity__option.is-active {
  border-color: var(--accent);
  background: var(--accent-soft);
}

.capacity__option strong {
  font-family: var(--font-display);
  font-size: 1.02rem;
  color: var(--text);
}

.capacity__option span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.capacity__option em {
  font-style: normal;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--accent-strong);
  margin-top: 0.3rem;
}

/* summary + pre-order */

.summary__list {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin: 0.4rem 0 1.3rem;
}

.summary__list > div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.92rem;
  padding-bottom: 0.45rem;
  border-bottom: 1px dashed var(--border);
}

.summary__list dt { color: var(--text-muted); }
.summary__list dd { font-weight: 600; text-align: right; }

.impact {
  margin: -0.4rem 0 1.2rem;
  padding: 0.7rem 1rem;
  background: var(--accent-soft);
  border-radius: 12px;
  font-size: 0.9rem;
  color: var(--accent-strong);
}

.impact strong { font-family: var(--font-display); }

.impact.is-pop { animation: impact-pop 0.4s ease; }

@keyframes impact-pop {
  35% { transform: scale(1.03); }
}

.preorder { display: flex; flex-direction: column; gap: 1rem; }

.preorder label {
  font-weight: 600;
  font-size: 0.95rem;
}

.preorder__small {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.preorder__done { text-align: center; padding: 1rem 0 0.4rem; }

.followup {
  margin-top: 1.4rem;
  padding-top: 1.3rem;
  border-top: 1px dashed var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  text-align: left;
}

.followup label { font-weight: 600; font-size: 0.92rem; }

.followup__done {
  margin-top: 1.2rem;
  font-weight: 600;
  color: var(--accent-strong);
}
.preorder__done-icon { font-size: 2.4rem; margin-bottom: 0.5rem; }
.preorder__done p { margin-bottom: 0.5rem; }
.preorder__done strong { font-family: var(--font-display); font-size: 1.15rem; }

.store__disclaimer { max-width: 46rem; margin-inline: auto; }

@media (max-width: 960px) {
  .configurator { grid-template-columns: 1fr; }
  .viewer { position: relative; top: 0; max-width: 480px; margin-inline: auto; width: 100%; }
  .capacity { grid-template-columns: 1fr; }
}

/* ---------- Motion helpers (GSAP targets) ---------- */

/* hidden only once script.js confirms GSAP loaded (adds .js-anim to <html>) */
.js-anim .hero-fade,
.js-anim .reveal,
.js-anim .reveal-item { opacity: 0; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-fade, .reveal, .reveal-item { opacity: 1 !important; transform: none !important; }
  .marquee__track, .bg__blob, .flow__arrow, .flow__icon, .cta__spark, .hero__glow,
  .pill__dot, .nav__charge-fill { animation: none; }
}

/* ---------- Responsive ---------- */

@media (max-width: 960px) {
  .hero__inner,
  .product { grid-template-columns: 1fr; }

  .hero__visual { max-width: 420px; }
  .product__visual { order: -1; max-width: 400px; }

  .cards { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .steps__track { display: none; }
  .step::before { display: none; }
  .steps { padding-top: 0; }
}

@media (max-width: 640px) {
  .nav__links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: rgba(251, 253, 252, 0.92);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border);
    padding: 1.1rem 1.25rem 1.35rem;
    gap: 0.35rem;
    box-shadow: 0 24px 50px rgba(10, 40, 32, 0.16);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity 0.28s ease, transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
      visibility 0s linear 0.32s;
  }
  /* glowing accent seam under the header */
  .nav__links::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--accent-bright), var(--accent));
  }

  .nav__links.is-open {
    visibility: visible;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    transition: opacity 0.28s ease, transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
  }

  /* staggered link reveal */
  .nav__links a {
    opacity: 0;
    transform: translateX(-12px);
    transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    padding: 0.55rem 0.6rem;
    border-radius: 10px;
    font-size: 1.02rem;
  }
  .nav__links a:not(.btn):active { background: var(--accent-soft); }
  .nav__links.is-open a { opacity: 1; transform: none; }
  .nav__links.is-open a:nth-child(1) { transition-delay: 0.05s; }
  .nav__links.is-open a:nth-child(2) { transition-delay: 0.1s; }
  .nav__links.is-open a:nth-child(3) { transition-delay: 0.15s; }
  .nav__links.is-open a:nth-child(4) { transition-delay: 0.2s; }
  .nav__links.is-open a:nth-child(5) { transition-delay: 0.25s; }
  .nav__links.is-open a:nth-child(6) { transition-delay: 0.3s; }
  .nav__links a.btn { text-align: center; margin-top: 0.55rem; }

  .nav__toggle { display: flex; }
  /* burger morphs into an X */
  .nav__toggle span {
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.2s ease;
    transform-origin: center;
  }
  .nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0.4); }
  .nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .nav { background: rgba(251, 253, 252, 0.92); backdrop-filter: blur(14px); }

  .steps { grid-template-columns: 1fr; }
  .form-row--split { grid-template-columns: 1fr; }
  .flow__arrow { display: none; }
  .flow { gap: 1rem; }

  /* uniform CTAs: primary action buttons go full-width on small screens */
  .hero__actions .btn,
  .scan__ctas-row .btn,
  .cta__actions .btn,
  .rewards__actions .btn,
  .product__cta .btn {
    display: block;
    width: 100%;
    text-align: center;
  }
  .hero__actions,
  .scan__ctas-row,
  .cta__actions,
  .rewards__actions { flex-direction: column; align-items: stretch; }
}

@media (prefers-reduced-motion: reduce) {
  .nav__links, .nav__links a, .nav__toggle span { transition: none; }
}

/* ---------- email capture popup ---------- */

.signup-pop {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 90;
  width: min(360px, calc(100vw - 2.4rem));
  background: rgba(251, 253, 252, 0.96);
  backdrop-filter: blur(14px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 18px 50px rgba(10, 40, 32, 0.22);
  padding: 1.4rem 1.4rem 1.5rem;
  opacity: 0;
  transform: translateY(24px) scale(0.97);
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.signup-pop.is-visible { opacity: 1; transform: none; pointer-events: auto; }

.signup-pop__close {
  position: absolute;
  top: 0.7rem; right: 0.8rem;
  background: none; border: 0; cursor: pointer;
  font-size: 0.95rem; color: var(--text-muted);
  padding: 0.25rem;
}
.signup-pop__close:hover { color: var(--text); }

.signup-pop__badge {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--accent-strong);
  background: var(--accent-soft);
  border: 1px solid rgba(14, 159, 122, 0.3);
  border-radius: 999px;
  padding: 0.22rem 0.7rem;
  margin-bottom: 0.6rem;
}
.signup-pop h3 { font-size: 1.15rem; margin-bottom: 0.45rem; }
.signup-pop p { font-size: 0.87rem; color: var(--text-muted); margin-bottom: 0.9rem; }

.signup-pop__form { display: flex; gap: 0.5rem; }
.signup-pop__form input {
  flex: 1; min-width: 0;
  padding: 0.65rem 0.85rem;
  font: inherit; font-size: 0.9rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
}
.signup-pop__form input:focus { outline: 2px solid var(--accent); outline-offset: 1px; }
.signup-pop__form .btn { white-space: nowrap; }
.signup-pop__done { color: var(--accent-strong); font-weight: 600; margin: 0 !important; }

@media (max-width: 640px) {
  .signup-pop {
    right: 0; bottom: 0; left: 0;
    width: 100%;
    border-radius: var(--radius) var(--radius) 0 0;
    border-bottom: 0;
  }
  .signup-pop__form { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  .signup-pop { transition: opacity 0.2s ease; transform: none; }
}

/* sources collapsed into a dropdown to keep the stats section tight */
.stats__sources-drop { margin-top: 1.2rem; }
.stats__sources-drop summary {
  cursor: pointer;
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.4rem 1rem;
  background: rgba(255, 255, 255, 0.7);
  transition: color 0.2s, border-color 0.2s;
}
.stats__sources-drop summary::-webkit-details-marker { display: none; }
.stats__sources-drop summary:hover { color: var(--accent-strong); border-color: var(--accent); }
.stats__sources-drop[open] summary span { display: inline-block; transform: rotate(180deg); }
.stats__sources-drop[open] .stats__sources {
  animation: sources-in 0.3s ease both;
}
@keyframes sources-in {
  from { opacity: 0; transform: translateY(-6px); }
}

/* mobile hero: battery model leads the first screen, tighter type */
@media (max-width: 640px) {
  .hero { padding-top: 0.9rem; }
  .hero__inner { gap: 1.1rem; }
  .hero__visual { order: -1; max-width: 300px; aspect-ratio: 1 / 0.8; }
  .hero__tagline { display: none; }
  .hero__copy .pill { margin-bottom: 0.8rem; }
  .hero__copy h1 { font-size: 1.75rem; margin-bottom: 0.8rem; }
  .hero__copy .lead { font-size: 0.98rem; margin-bottom: 1.2rem; }
  .hero__battery-note { margin-bottom: 1.1rem; }
  .hero__flow { margin-top: 1.6rem; }
}

/* ---------- roadmap ---------- */

.roadmap {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.2rem;
  position: relative;
  padding-top: 1.6rem;
}
.roadmap::before {
  content: "";
  position: absolute;
  top: 0; left: 4%; right: 4%;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-bright) 70%, rgba(45, 240, 178, 0.25));
}
.roadmap__item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.3rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.roadmap__item:hover { transform: translateY(-4px); box-shadow: 0 14px 32px rgba(14, 159, 122, 0.14); }
.roadmap__phase {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-strong);
  background: var(--accent-soft);
  border-radius: 999px;
  padding: 0.2rem 0.65rem;
  margin-bottom: 0.7rem;
}
.roadmap__item h3 { font-size: 1.02rem; margin-bottom: 0.5rem; }
.roadmap__item p { font-size: 0.88rem; color: var(--text-muted); }
.roadmap__item--now { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.roadmap__item--moon {
  background: linear-gradient(150deg, #0d2b24, #143d33);
  border-color: rgba(45, 240, 178, 0.4);
}
.roadmap__item--moon h3 { color: #fff; }
.roadmap__item--moon p { color: rgba(255, 255, 255, 0.75); }
.roadmap__item--moon .roadmap__phase { background: rgba(45, 240, 178, 0.15); color: var(--accent-bright); }

@media (max-width: 960px) {
  .roadmap { grid-template-columns: 1fr 1fr; padding-top: 0; }
  .roadmap::before { display: none; }
}
@media (max-width: 640px) {
  .roadmap { grid-template-columns: 1fr; }
}
