:root {
  color-scheme: dark;
  --black: #020202;
  --black-soft: #070707;
  --white: #f8f8f4;
  --muted: rgba(248, 248, 244, 0.68);
  --muted-2: rgba(248, 248, 244, 0.46);
  --hairline: rgba(248, 248, 244, 0.1);
  --blue: #159bff;
  --green: #20e573;
  --yellow: #ffe45c;
  --orange: #ff8b24;
  --red: #ff3044;
  --brand-gradient: linear-gradient(90deg, var(--blue), var(--green), var(--yellow), var(--orange), var(--red));
  --max: 1280px;
  --pad: 24px;
  --font-sans: "Google Sans Flex", ui-sans-serif, system-ui, -apple-system, sans-serif;
  --font-display: "Google Sans Flex", sans-serif;
  --font-mono: "Google Sans Flex", ui-monospace, "SF Mono", Menlo, monospace;
}

* { box-sizing: border-box; }
html { background: var(--black); scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-sans);
  line-height: 1.4;
  overflow-x: hidden;
  min-width: 320px;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; border: 0; background: transparent; color: inherit; cursor: pointer; }
:focus-visible { outline: 2px solid var(--yellow); outline-offset: 4px; }
::selection { background: rgba(255, 228, 92, 0.34); color: var(--white); }

.site-grain {
  position: fixed; inset: 0; z-index: 2; pointer-events: none;
  opacity: 0.08;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 3px 3px;
  mix-blend-mode: overlay;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 10;
  background: rgba(2, 2, 2, 0.5);
  backdrop-filter: blur(18px);
  transition: background 220ms ease;
}
body.is-scrolled .site-header { background: rgba(2, 2, 2, 0.78); }
.nav-shell {
  position: relative;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 14px var(--pad) 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-shell::after {
  content: "";
  position: absolute;
  left: var(--pad); right: var(--pad);
  bottom: 0;
  height: 1px;
  background: var(--brand-gradient);
  box-shadow: 0 0 16px rgba(255, 139, 36, 0.34), 0 0 18px rgba(255, 48, 68, 0.18);
}
.brand {
  display: inline-flex; align-items: center; gap: 12px;
  color: var(--white); font-weight: 760;
  position: absolute; left: 50%; transform: translateX(-50%);
}
.brand img {
  width: 36px; height: 36px;
  border-radius: 9px;
  filter: drop-shadow(0 0 18px rgba(255, 139, 36, 0.22));
}
.brand-text {
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
  line-height: 1;
}
.brand-text b { font-size: 1rem; font-weight: 760; letter-spacing: -0.01em; }
.brand-text small {
  font-size: 0.64rem; color: var(--muted-2);
  font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  font-family: var(--font-mono);
}
.primary-nav {
  display: flex; gap: 24px;
  color: var(--muted); font-size: 0.86rem;
}
.primary-nav a { padding: 6px 0; transition: color 160ms ease; }
.primary-nav a:hover { color: var(--white); }
.nav-end {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.nav-cta {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 38px; padding: 0 16px;
  border: 1px solid rgba(248, 248, 244, 0.18);
  border-radius: 8px;
  font-size: 0.84rem; font-weight: 700;
  background: rgba(248, 248, 244, 0.035);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}
.nav-cta:hover {
  transform: translateY(-1px);
  border-color: rgba(248, 248, 244, 0.34);
  box-shadow: 0 0 30px rgba(255, 139, 36, 0.12);
}
@media (max-width: 700px) {
  .primary-nav { display: none; }
  .brand {
    position: static;
    transform: none;
  }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
  overflow: hidden;
  padding-top: 66px; /* nav offset — shifts the flex center down correctly */
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 18% 22%, rgba(32, 229, 115, 0.08), transparent 30%),
    radial-gradient(circle at 82% 78%, rgba(255, 48, 68, 0.08), transparent 30%),
    var(--black);
}
.hero::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -46%);
  width: clamp(500px, 58vw, 780px);
  height: clamp(500px, 58vw, 780px);
  border-radius: 50%;
  border: 1px solid rgba(248, 248, 244, 0.055);
  background: radial-gradient(circle, rgba(255, 139, 36, 0.025) 0%, rgba(21, 155, 255, 0.015) 50%, transparent 72%);
  pointer-events: none;
  z-index: 0;
}
.hero-thoughts {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
}
.hero-inner {
  width: min(100%, var(--max));
  padding: 48px var(--pad) 80px;
  display: grid;
  gap: 28px;
  justify-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
}
.eyebrow {
  margin: 0;
  color: rgba(248, 248, 244, 0.78);
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-mono);
}
.eyebrow::before {
  content: "";
  width: 36px; height: 2px;
  background: var(--brand-gradient);
  box-shadow: 0 0 20px rgba(255, 139, 36, 0.28);
}
h1, h2, h3, h4 {
  margin-top: 0;
  font-family: var(--font-display);
}
p { margin-top: 0; }

.hero-title {
  max-width: 15ch;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 9.2vw, 7.2rem);
  line-height: 0.92;
  font-weight: 400;
  letter-spacing: -0.02em;
}
.hero-title .word-ideas {
  font-weight: 400;
  color: var(--white);
  opacity: 0.95;
}
.hero-title .word-shaped {
  font-weight: 400;
  color: var(--muted);
  letter-spacing: -0.012em;
}
.hero-title .word-products {
  font-weight: 800;
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
  position: relative;
  letter-spacing: -0.025em;
  filter: drop-shadow(0 2px 25px rgba(255, 139, 36, 0.22));
}
.hero-row {
  display: flex; flex-wrap: wrap; gap: 14px;
  align-items: center;
}

/* ---------- Scroll cue ---------- */
.scroll-cue {
  position: absolute;
  left: 50%; bottom: 24px;
  transform: translateX(-50%);
  display: grid;
  justify-items: center;
  gap: 8px;
  color: var(--muted-2);
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  pointer-events: none;
  z-index: 1;
  font-family: var(--font-mono);
}
.scroll-cue-line {
  width: 1px; height: 44px;
  background: linear-gradient(180deg, transparent, rgba(248, 248, 244, 0.6));
  position: relative;
  overflow: hidden;
}
.scroll-cue-line::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  top: -50%; height: 50%;
  background: linear-gradient(180deg, transparent, var(--yellow));
  animation: scrollCue 2.4s ease-in-out infinite;
}
@keyframes scrollCue { 0% { top: -50%; } 100% { top: 100%; } }
.hero-tagline {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0;
}
.hero-inner.will-animate > * {
  opacity: 0;
  transform: translateY(28px);
}


/* ---------- Buttons ---------- */
.button {
  display: inline-flex;
  align-items: center; justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 8px;
  font-weight: 720;
  font-size: 0.92rem;
  letter-spacing: -0.005em;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary {
  border: 1px solid rgba(248, 248, 244, 0.18);
  color: var(--white);
  background:
    linear-gradient(var(--black-soft), var(--black-soft)) padding-box,
    linear-gradient(100deg, var(--green), var(--yellow), var(--orange), var(--red)) border-box;
  box-shadow: 0 0 34px rgba(255, 139, 36, 0.1), 0 0 28px rgba(255, 48, 68, 0.08);
}
.button-primary:hover { box-shadow: 0 0 42px rgba(32, 229, 115, 0.14), 0 0 36px rgba(255, 48, 68, 0.1); }
.button-ghost {
  border: 1px solid rgba(248, 248, 244, 0.18);
  color: var(--white);
  background: rgba(248, 248, 244, 0.035);
}
.button-ghost:hover { border-color: rgba(248, 248, 244, 0.36); }

/* ---------- The Story (sticky scroll) ---------- */
.story {
  position: relative;
  width: 100%;
  /* one viewport per stage + intro/outro pad */
  height: calc(700vh + 0px);
}
.story-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr auto;
  isolation: isolate;
}
.story-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  transition: background 800ms ease;
  background:
    radial-gradient(circle at 50% 50%, rgba(21, 155, 255, 0.08), transparent 40%),
    var(--black);
}
.story-grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(248, 248, 244, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(248, 248, 244, 0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  background-position: center;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  opacity: 0.5;
}

.story-header {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 100px var(--pad) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.story-counter {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 0.74rem;
  color: var(--muted);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.story-counter b { color: var(--white); font-weight: 700; }

.story-progress {
  display: flex; gap: 6px;
  flex: 1; max-width: 320px;
  margin-left: auto;
}
.story-progress span {
  flex: 1;
  height: 3px;
  border-radius: 999px;
  background: rgba(248, 248, 244, 0.1);
  overflow: hidden;
  position: relative;
}
.story-progress span::after {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: var(--p, 0%);
  background: var(--white);
  transition: width 200ms linear;
}

.story-stage {
  position: relative;
  width: 100%;
  display: grid;
  place-items: center;
  padding: 0 var(--pad);
  overflow: hidden;
}

.story-foot {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 0 var(--pad) 80px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  align-items: end;
  pointer-events: none;
}
.story-title {
  font-size: clamp(2.4rem, 7vw, 5.4rem);
  line-height: 0.92;
  font-weight: 600;
  letter-spacing: -0.03em;
  margin: 0;
  position: relative;
  height: 1.05em;
  overflow: hidden;
}
.story-title-track {
  display: grid;
  transition: transform 700ms cubic-bezier(0.22, 0.8, 0.36, 1);
}
.story-title-item {
  display: block;
  height: 1.05em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.story-title-item em {
  font-style: normal;
  color: var(--white);
}

.story-sub {
  color: var(--muted);
  font-size: 1rem;
  max-width: 460px;
  margin: 0;
  height: 1.4em;
  overflow: hidden;
  position: relative;
}
.story-sub-track {
  display: grid;
  transition: transform 700ms cubic-bezier(0.22, 0.8, 0.36, 1);
}
.story-sub-item {
  display: block;
  height: 1.4em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ---------- Stage SVG canvas ---------- */
.stage-svg {
  width: min(100%, 880px);
  height: auto;
  max-height: 56vh;
  aspect-ratio: 1 / 1;
  display: block;
  overflow: visible;
}

/* shared element styles (driven by CSS vars from JS) */
.s-orb {
  transition: opacity 600ms ease, transform 600ms cubic-bezier(0.22, 0.8, 0.36, 1);
}
.s-frame {
  transition: opacity 600ms ease, transform 600ms cubic-bezier(0.22, 0.8, 0.36, 1);
}
.s-line { transition: stroke-dashoffset 1200ms cubic-bezier(0.22, 0.8, 0.36, 1), opacity 600ms ease; }
.s-fill { transition: opacity 700ms ease, fill-opacity 700ms ease; }
.s-shape { transition: opacity 600ms ease, transform 800ms cubic-bezier(0.22, 0.8, 0.36, 1); }

/* ---------- Products section ---------- */
.products {
  position: relative;
  padding: 140px 0 120px;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}
.products-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}
.products-head h2 {
  margin: 8px 0 0;
  font-size: clamp(2rem, 4.4vw, 3.2rem);
  line-height: 1;
  letter-spacing: -0.025em;
  font-weight: 600;
}
.products-head h2 em {
  font-style: normal;
  background: linear-gradient(96deg, var(--green), var(--yellow), var(--orange));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.product-list {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
}
.product-card {
  position: relative;
  padding: 22px;
  display: grid;
  grid-template-rows: auto auto auto auto;
  gap: 18px;
  border: 1px solid var(--hairline);
  border-radius: 16px;
  background: rgba(248, 248, 244, 0.03);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
  isolation: isolate;
  overflow: hidden;
}
.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(248, 248, 244, 0.22);
  background: rgba(248, 248, 244, 0.05);
}
.product-card--soon { opacity: 0.72; }
.product-card-top {
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.product-card-identity {
  display: flex; align-items: center; gap: 14px;
}
.product-app-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  flex-shrink: 0;
  box-shadow: 0 2px 16px rgba(0,0,0,0.4);
}
.product-app-icon-placeholder {
  width: 48px; height: 48px;
  border-radius: 12px;
  border: 1px dashed rgba(248,248,244,0.18);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted-2);
  flex-shrink: 0;
}
.product-card-identity h3 {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1;
  letter-spacing: -0.02em;
  font-weight: 700;
}
.product-tagline {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.3;
}
.product-features {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.product-features span {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 11px;
  border: 1px solid var(--hairline);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--muted);
  background: rgba(248,248,244,0.03);
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  letter-spacing: 0.02em;
}
.product-features--muted span {
  opacity: 0.4;
  letter-spacing: 0.08em;
}
.status {
  display: inline-flex; align-items: center; gap: 7px;
  font-weight: 700;
}
.status::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 999px;
  background: currentColor;
  box-shadow: 0 0 12px currentColor;
}
.status-live { color: var(--green); }
.status-soon { color: var(--muted-2); }

.product-art {
  width: 100%;
  height: 180px;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  background: rgba(248, 248, 244, 0.02);
  border: 1px solid var(--hairline);
}
.product-art-screenshot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
  display: block;
}
.product-art-placeholder { opacity: 0.7; }
.product-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-size: 0.86rem;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  border-bottom: 1px solid rgba(255, 139, 36, 0.42);
  width: max-content;
  padding-bottom: 2px;
  transition: color 160ms ease, text-shadow 160ms ease;
}
.product-link:hover { color: var(--yellow); text-shadow: 0 0 20px rgba(255, 228, 92, 0.4); }

/* ---------- About ---------- */
.about {
  position: relative;
  padding: 120px 0;
}
.about-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  gap: 48px;
  grid-template-columns: 1fr;
  align-items: start;
  border-top: 1px solid var(--hairline);
  padding-top: 80px;
}
.about-left h2 {
  margin: 8px 0 0;
  font-size: clamp(2rem, 4.4vw, 3.2rem);
  line-height: 1;
  letter-spacing: -0.025em;
  font-weight: 600;
}
.about-left h2 em {
  font-style: normal;
  background: linear-gradient(96deg, var(--blue), var(--green));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.about-bio {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 500px;
  margin: 0 0 28px;
}
.about-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.about-chips span {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border: 1px solid var(--hairline);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  color: var(--muted);
  background: rgba(248, 248, 244, 0.03);
}
@media (min-width: 720px) {
  .about-inner { grid-template-columns: 1fr 1fr; gap: 64px; }
}

/* ---------- Testimonials ---------- */
.testimonials {
  padding: 0 0 120px;
}
.testimonials-head {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 0 var(--pad) 40px;
}
.testimonials-head h2 {
  margin: 8px 0 0;
  font-size: clamp(2rem, 4.4vw, 3.2rem);
  line-height: 1;
  letter-spacing: -0.025em;
  font-weight: 600;
}
.testimonials-head h2 em {
  font-style: normal;
  background: linear-gradient(96deg, var(--orange), var(--red));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.testimonial-list {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
}
.testimonial-card {
  margin: 0;
  padding: 28px 32px 32px;
  border: 1px solid var(--hairline);
  border-radius: 14px;
  background: rgba(248, 248, 244, 0.025);
  display: grid;
  gap: 24px;
  align-content: space-between;
  transition: transform 220ms ease, border-color 220ms ease;
}
.testimonial-card:hover {
  transform: translateY(-3px);
  border-color: rgba(248, 248, 244, 0.2);
}
.t-quote {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
  position: relative;
  padding-top: 36px;
}
.t-quote::before {
  content: "\201C";
  position: absolute;
  top: -4px;
  left: 0;
  font-size: 3rem;
  line-height: 1;
  color: var(--yellow);
  font-family: "Georgia", "Times New Roman", serif;
}
.t-author {
  display: grid;
  gap: 3px;
}
.t-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--white);
}
.t-role {
  font-size: 0.76rem;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  color: var(--muted-2);
  letter-spacing: 0.06em;
}
@media (min-width: 720px) {
  .testimonial-list { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

/* ---------- Contact ---------- */
.contact-cta {
  position: relative;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 120px var(--pad);
  text-align: center;
  display: grid;
  justify-items: center;
  gap: 28px;
  isolation: isolate;
  overflow: hidden;
}
.contact-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 30% 50%, rgba(32, 229, 115, 0.1), transparent 38%),
    radial-gradient(circle at 70% 50%, rgba(255, 48, 68, 0.1), transparent 40%);
}
.contact-cta h2 {
  font-size: clamp(2.4rem, 7vw, 5.4rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 600;
  margin: 0;
  max-width: 16ch;
  overflow: visible;
  padding-bottom: 0.05em;
}
.contact-cta h2 em {
  font-style: normal;
  font-weight: 700;
  background: linear-gradient(96deg, var(--green), var(--yellow), var(--orange));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.contact-cta p {
  color: var(--muted);
  margin: 0;
  font-size: 1.02rem;
  max-width: 460px;
}

/* ---------- Reviews ticker ---------- */
.reviews {
  padding: 120px 0;
  overflow: hidden;
}
.reviews-head {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 0 var(--pad) 48px;
}
.reviews-head h2 {
  margin: 8px 0 0;
  font-size: clamp(2rem, 4.4vw, 3.2rem);
  line-height: 1;
  letter-spacing: -0.025em;
  font-weight: 600;
}
.reviews-head h2 em {
  font-style: normal;
  background: linear-gradient(96deg, var(--yellow), var(--orange));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.ticker-wrap {
  display: grid;
  gap: 12px;
  mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
}
.ticker-row { overflow: hidden; width: 100%; }
.ticker-track {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: tickerLeft 48s linear infinite;
}
.ticker-track--rev { animation: tickerRight 52s linear infinite; }
.ticker-wrap:hover .ticker-track { animation-play-state: paused; }
@keyframes tickerLeft {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes tickerRight {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}
.review-card {
  flex-shrink: 0;
  width: 300px;
  padding: 18px 22px 20px;
  border: 1px solid var(--hairline);
  border-radius: 12px;
  background: rgba(248, 248, 244, 0.025);
  display: grid;
  gap: 8px;
  cursor: default;
  transition: border-color 180ms ease;
}
.review-card:hover { border-color: rgba(248, 248, 244, 0.2); }
.review-stars { color: var(--yellow); font-size: 0.76rem; letter-spacing: 2px; }
.review-text {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
  margin: 0;
}
.review-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 4px;
}
.review-name {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--white);
}
.review-app {
  font-size: 0.7rem;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  color: var(--muted-2);
  letter-spacing: 0.06em;
}

/* ---------- Newsletter ---------- */
.newsletter {
  position: relative;
  padding: 0 0 120px;
}
.newsletter-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 80px var(--pad);
  display: grid;
  gap: 48px;
  grid-template-columns: 1fr;
  align-items: center;
  border: 1px solid var(--hairline);
  border-radius: 20px;
  background:
    radial-gradient(circle at 20% 50%, rgba(21, 155, 255, 0.07), transparent 40%),
    radial-gradient(circle at 80% 50%, rgba(32, 229, 115, 0.06), transparent 40%),
    rgba(248, 248, 244, 0.02);
}
.newsletter-copy h2 {
  margin: 8px 0 0;
  font-size: clamp(2rem, 4.4vw, 3.2rem);
  line-height: 1;
  letter-spacing: -0.025em;
  font-weight: 600;
}
.newsletter-copy h2 em {
  font-style: normal;
  background: linear-gradient(96deg, var(--blue), var(--green));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.newsletter-sub {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
  max-width: 400px;
  margin: 16px 0 0;
}
.newsletter-form {
  display: grid;
  gap: 12px;
}
.newsletter-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.newsletter-row-2 input {
  height: 50px;
  padding: 0 18px;
  background: rgba(248, 248, 244, 0.05);
  border: 1px solid rgba(248, 248, 244, 0.18);
  border-radius: 10px;
  color: var(--white);
  font: inherit;
  font-size: 0.96rem;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
  width: 100%;
}
.newsletter-row-2 input::placeholder { color: var(--muted-2); }
.newsletter-row-2 input:focus {
  border-color: rgba(248, 248, 244, 0.36);
  box-shadow: 0 0 0 3px rgba(21, 155, 255, 0.12);
}
.newsletter-field {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.newsletter-field input[type="email"] {
  flex: 1;
  min-width: 220px;
  height: 50px;
  padding: 0 18px;
  background: rgba(248, 248, 244, 0.05);
  border: 1px solid rgba(248, 248, 244, 0.18);
  border-radius: 10px;
  color: var(--white);
  font: inherit;
  font-size: 0.96rem;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}
.newsletter-field input[type="email"]::placeholder { color: var(--muted-2); }
.newsletter-field input[type="email"]:focus {
  border-color: rgba(248, 248, 244, 0.36);
  box-shadow: 0 0 0 3px rgba(21, 155, 255, 0.12);
}
.newsletter-field button {
  height: 50px;
  padding: 0 24px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: -0.005em;
  border: 1px solid rgba(248, 248, 244, 0.18);
  color: var(--white);
  background:
    linear-gradient(var(--black-soft), var(--black-soft)) padding-box,
    linear-gradient(100deg, var(--blue), var(--green)) border-box;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
  white-space: nowrap;
}
.newsletter-field button:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 28px rgba(21, 155, 255, 0.2);
}
.newsletter-note {
  color: var(--muted-2);
  font-size: 0.78rem;
  margin: 0;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  letter-spacing: 0.04em;
}
@media (min-width: 720px) {
  .newsletter-inner { grid-template-columns: 1fr 1fr; gap: 64px; padding: 80px 64px; }
}

/* ---------- Country picker ---------- */
.country-picker {
  position: relative;
}
.country-trigger {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  height: 50px;
  padding: 0 14px 0 14px;
  background: rgba(248, 248, 244, 0.05);
  border: 1px solid rgba(248, 248, 244, 0.18);
  border-radius: 10px;
  color: var(--white);
  font: inherit;
  font-size: 0.96rem;
  cursor: pointer;
  text-align: left;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}
.country-trigger:hover {
  border-color: rgba(248, 248, 244, 0.36);
}
.country-picker.is-open .country-trigger {
  border-color: rgba(248, 248, 244, 0.36);
  box-shadow: 0 0 0 3px rgba(21, 155, 255, 0.12);
}
.country-flag-display {
  font-size: 1.35rem;
  line-height: 1;
  flex-shrink: 0;
}
.country-label {
  flex: 1;
  color: var(--muted-2);
  transition: color 160ms ease;
}
.country-picker.has-value .country-label {
  color: var(--white);
}
.country-chevron {
  flex-shrink: 0;
  color: var(--muted-2);
  transition: transform 240ms cubic-bezier(0.16, 1, 0.3, 1);
}
.country-picker.is-open .country-chevron {
  transform: rotate(180deg);
}

.country-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0; right: 0;
  background: rgba(14, 14, 14, 0.96);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(248, 248, 244, 0.14);
  border-radius: 12px;
  overflow: hidden;
  z-index: 100;
  transform-origin: top center;
  transform: scaleY(0.88) translateY(-6px);
  opacity: 0;
  pointer-events: none;
  transition:
    transform 220ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 180ms ease;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(248, 248, 244, 0.04);
}
.country-picker.is-open .country-dropdown {
  transform: scaleY(1) translateY(0);
  opacity: 1;
  pointer-events: all;
}

.country-search-wrap {
  padding: 10px 10px 8px;
  border-bottom: 1px solid rgba(248, 248, 244, 0.08);
}
.country-search {
  width: 100%;
  height: 36px;
  padding: 0 12px;
  background: rgba(248, 248, 244, 0.07);
  border: 1px solid rgba(248, 248, 244, 0.1);
  border-radius: 7px;
  color: var(--white);
  font: inherit;
  font-size: 0.88rem;
  outline: none;
  transition: border-color 160ms ease;
}
.country-search::placeholder { color: var(--muted-2); }
.country-search:focus { border-color: rgba(248, 248, 244, 0.28); }

.country-list {
  list-style: none;
  margin: 0;
  padding: 6px;
  max-height: 220px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(248, 248, 244, 0.12) transparent;
}
.country-list::-webkit-scrollbar { width: 4px; }
.country-list::-webkit-scrollbar-thumb {
  background: rgba(248, 248, 244, 0.14);
  border-radius: 2px;
}

.country-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 10px;
  border-radius: 7px;
  cursor: pointer;
  transition: background 120ms ease;
  font-size: 0.9rem;
  color: var(--muted);
}
.country-item:hover {
  background: rgba(248, 248, 244, 0.07);
  color: var(--white);
}
.country-item.is-selected {
  background: rgba(21, 155, 255, 0.1);
  color: var(--white);
}
.country-item-flag {
  font-size: 1.25rem;
  line-height: 1;
  flex-shrink: 0;
}
.country-item-name {
  flex: 1;
}
.country-item-check {
  flex-shrink: 0;
  width: 14px;
  color: var(--blue);
  opacity: 0;
  transition: opacity 120ms ease;
}
.country-item.is-selected .country-item-check { opacity: 1; }
.country-no-results {
  padding: 20px 10px;
  text-align: center;
  color: var(--muted-2);
  font-size: 0.86rem;
}

/* ---------- Contact socials ---------- */
.contact-socials {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-top: -4px;
}
.contact-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border: 1px solid var(--hairline);
  border-radius: 10px;
  color: var(--muted);
  background: rgba(248, 248, 244, 0.03);
  transition: color 160ms ease, border-color 160ms ease, transform 160ms ease;
}
.contact-socials a:hover {
  color: var(--white);
  border-color: rgba(248, 248, 244, 0.28);
  transform: translateY(-2px);
}

/* ---------- Footer socials ---------- */
.footer-socials {
  display: inline-flex;
  gap: 14px;
  align-items: center;
  margin-left: 4px;
}
.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--muted-2);
  transition: color 160ms ease, transform 160ms ease;
}
.footer-socials a:hover {
  color: var(--white);
  transform: translateY(-1px);
}

/* ---------- Footer ---------- */
.site-footer {
  position: relative;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 36px var(--pad) 48px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  color: var(--muted-2);
  font-size: 0.84rem;
  border-top: 1px solid var(--hairline);
}
.site-footer .footer-brand {
  display: flex; align-items: center; gap: 12px;
}
.site-footer .footer-brand img { width: 28px; height: 28px; border-radius: 7px; }
.site-footer .footer-row {
  display: flex; gap: 18px; flex-wrap: wrap; align-items: center;
}
.site-footer a:hover { color: var(--white); }

/* ---------- Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.22, 0.8, 0.36, 1);
}
.reveal.is-visible { opacity: 1; transform: translate3d(0, 0, 0); }

/* ---------- Responsive ---------- */
@media (min-width: 720px) {
  :root { --pad: 32px; }
  .product-list { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .product-card { min-height: 360px; }
  .story-foot { grid-template-columns: 1fr 1fr; gap: 32px; }
  .site-footer { grid-template-columns: 1fr 1fr; align-items: center; }
  .site-footer .footer-row { justify-content: flex-end; }
  .stage-svg { max-height: 60vh; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    transition-duration: 0.001s !important;
  }
}
