/* MeMy — Premium marketing site (scroll-driven) */

:root {
  color-scheme: dark;
  --black: #000000;
  --white: #ffffff;
  --gray-50: #fbfbfd;
  --gray-100: #f5f5f7;
  --gray-200: #e8e8ed;
  --gray-400: #86868b;
  --gray-500: #6e6e73;
  --gray-600: #424245;
  --gray-800: #1d1d1f;
  --gray-900: #0a0a0a;
  --ember: #ff6a1a;
  --ember-light: #ff8a4c;
  --ember-glow: rgba(255, 106, 26, 0.4);
  --ember-soft: rgba(255, 106, 26, 0.12);
  --health: #ff3b30;
  --finance: #34c759;
  --habits: #f2a93b;
  --career: #2f80ed;
  --learning: #6366f1;
  --nav-h: 52px;
  --nav-h-scrolled: 44px;
  --container: 1080px;
  --container-xl: 1200px;
  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.2, 0.64, 1);
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "SF Pro Display",
    "Helvetica Neue",
    sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  margin: 0;
  background: var(--black);
  color: var(--gray-800);
  font-size: 17px;
  line-height: 1.47;
  letter-spacing: -0.022em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.container {
  width: 100%;
  max-width: var(--container-xl);
  margin: 0 auto;
  padding: 0 max(22px, env(safe-area-inset-right)) 0 max(22px, env(safe-area-inset-left));
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 9999;
  padding: 0.75rem 1rem;
  background: var(--ember);
  color: #fff;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

/* —— Experience chrome (Lusion-like) —— */
html.has-cursor,
html.has-cursor * {
  cursor: none !important;
}

.field {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: #000;
  opacity: 0;
  transition: opacity 1.4s var(--ease-out);
}

body.is-ready .field {
  opacity: 1;
}

.vignette {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 40%, transparent 35%, rgba(0, 0, 0, 0.55) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, transparent 18%, transparent 82%, rgba(0, 0, 0, 0.5) 100%);
}

.grain {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.045;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.experience main,
.experience .nav,
.experience .footer {
  position: relative;
  z-index: 2;
}

.experience .loader {
  position: fixed;
  z-index: 80;
}

body.experience {
  color: #fff;
}

body.is-loading {
  overflow: hidden;
  height: 100svh;
}

.experience .nav {
  z-index: 40;
}

.experience .nav:not(.is-scrolled) {
  background: transparent;
}

.experience .footer {
  z-index: 3;
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  background: #000;
  color: #fff;
  transition: opacity 0.7s var(--ease-out), visibility 0.7s;
}

.loader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader__mark {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.loader__bar {
  width: min(220px, 50vw);
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.loader__bar span {
  display: block;
  height: 100%;
  width: 100%;
  background: var(--ember);
  transform: scaleX(0);
  transform-origin: left center;
}

.loader__count {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  font-variant-numeric: tabular-nums;
  color: rgba(255, 255, 255, 0.45);
}

.cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 90;
  width: 10px;
  height: 10px;
  margin: -5px 0 0 -5px;
  pointer-events: none;
}

.cursor__dot {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 16px rgba(255, 106, 26, 0.7);
}

.cursor__ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  margin: -20px 0 0 -20px;
  border: 1px solid rgba(255, 106, 26, 0.75);
  border-radius: 50%;
  transition: width 0.35s var(--ease-out), height 0.35s var(--ease-out), margin 0.35s var(--ease-out);
}

.cursor.is-hover .cursor__ring {
  width: 64px;
  height: 64px;
  margin: -32px 0 0 -32px;
}

.char {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}

.char span {
  display: inline-block;
}

.hero__scroll {
  margin: 1.75rem 0 0;
}

@keyframes scroll-hint {
  0%,
  100% {
    opacity: 0.35;
    transform: translateY(0);
  }
  50% {
    opacity: 0.8;
    transform: translateY(6px);
  }
}

.experience .reveal {
  opacity: 1;
  transform: none;
}

.experience .hero__seq {
  opacity: 1;
  transform: none;
  animation: none !important;
}

.experience .hero.is-loaded .hero__scroll {
  animation: scroll-hint 2.4s var(--ease) infinite !important;
}

.experience .device {
  transition: none;
}

.experience .filmstrip {
  overflow: hidden;
}

.experience .filmstrip__track {
  overflow: visible;
  will-change: transform;
}

.experience .story {
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.28) 18%, transparent);
}

.ticker {
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding: 1.15rem 0;
  border-top: 1px solid rgba(255, 106, 26, 0.18);
  border-bottom: 1px solid rgba(255, 106, 26, 0.18);
  background: linear-gradient(90deg, rgba(255, 106, 26, 0.06), transparent 30%, transparent 70%, rgba(255, 106, 26, 0.06));
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.ticker__inner {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  width: max-content;
  animation: ticker-move 32s linear infinite;
}

.ticker i {
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--ember);
  box-shadow: 0 0 14px var(--ember);
  flex: 0 0 auto;
}

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

[data-tilt] {
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 0.5s var(--ease-out);
}

.chapter__stage,
.chapter__duo {
  perspective: 1200px;
}

.experience .chapter-board,
.experience .duo-card,
.experience .filmstrip__card {
  border-color: rgba(255, 106, 26, 0.14);
}

[data-magnetic] {
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  .hero__scroll {
    animation: none;
  }
  .ticker__inner,
  .float-chip {
    animation: none;
  }
  .field,
  .cursor,
  .loader,
  .vignette {
    display: none !important;
  }
}

/* —— Scroll progress —— */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 400;
  height: 2px;
  background: var(--ember);
  transform: scaleX(0);
  transform-origin: left center;
  pointer-events: none;
  will-change: transform;
}

.text-gradient {
  background: linear-gradient(135deg, #ffb347 0%, var(--ember) 50%, #ff8a4c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.text-gradient .char span {
  background: linear-gradient(180deg, #ffb347 0%, var(--ember) 70%, #ff8a4c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ember);
}

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

.section-title {
  margin: 0;
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.038em;
  color: var(--gray-800);
}

.section-title--light {
  color: #fff;
}

.section-desc {
  margin: 1rem auto 0;
  max-width: 32rem;
  font-size: 1.125rem;
  line-height: 1.5;
  color: var(--gray-500);
}

.section-desc--light {
  color: rgba(255, 255, 255, 0.58);
}

.section__head {
  max-width: 680px;
  margin: 0 auto clamp(3rem, 6vw, 4.5rem);
  text-align: center;
}

.section__cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 1.5rem;
  border-radius: 980px;
  font-size: 1.0625rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  border: none;
  cursor: pointer;
  transition:
    transform 0.3s var(--ease-spring),
    background 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
}

.btn:active {
  transform: scale(0.97);
}

.btn--fill {
  background: var(--ember);
  color: #fff;
  box-shadow: 0 8px 28px rgba(255, 106, 26, 0.35);
}

.btn--fill:hover {
  background: #ff7a2e;
  transform: scale(1.02);
  box-shadow: 0 12px 36px rgba(255, 106, 26, 0.45);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.22);
  transform: scale(1.02);
}

/* —— Navbar —— */
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 300;
  height: var(--nav-h);
  transition:
    height 0.45s var(--ease-out),
    background 0.45s var(--ease),
    border-color 0.45s var(--ease),
    backdrop-filter 0.45s var(--ease);
}

.nav.is-scrolled {
  height: var(--nav-h-scrolled);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  background: rgba(0, 0, 0, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav__inner {
  max-width: var(--container-xl);
  margin: 0 auto;
  padding: 0 max(22px, env(safe-area-inset-right)) 0 max(22px, env(safe-area-inset-left));
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: -0.028em;
  color: rgba(255, 255, 255, 0.94);
  transition: opacity 0.2s;
}

.nav__brand:hover {
  opacity: 0.85;
}

.nav__brand img {
  width: 26px;
  height: auto;
}

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

.nav__link {
  position: relative;
  font-size: 0.8125rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.2s;
}

.nav__link:hover,
.nav__link.is-active {
  color: #fff;
}

.nav__link.is-active:not(.nav__cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  border-radius: 2px;
  background: var(--ember);
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 14px;
  border-radius: 980px;
  background: var(--ember);
  color: #fff !important;
  font-size: 0.8125rem;
  font-weight: 500;
  transition: transform 0.25s var(--ease-spring), background 0.2s;
}

.nav__cta:hover {
  background: #ff7a2e;
  transform: scale(1.04);
}

.nav__cta.is-active::after {
  display: none;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.nav__toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  margin: 0 auto;
  background: #fff;
  border-radius: 2px;
  transition:
    transform 0.35s var(--ease-out),
    opacity 0.2s;
}

.nav.is-open .nav__toggle span:first-child {
  transform: translateY(3.75px) rotate(45deg);
}

.nav.is-open .nav__toggle span:last-child {
  transform: translateY(-3.75px) rotate(-45deg);
}

.nav__menu {
  position: fixed;
  inset: 0;
  z-index: -1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.96);
  backdrop-filter: blur(24px);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.45s var(--ease-out),
    visibility 0.45s;
}

.nav.is-open .nav__menu {
  opacity: 1;
  visibility: visible;
}

.nav__menu-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  text-align: center;
}

.nav__menu-link {
  font-size: clamp(1.75rem, 6vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: rgba(255, 255, 255, 0.88);
  padding: 0.65rem 0;
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.5s var(--ease-out),
    transform 0.5s var(--ease-out),
    color 0.2s;
}

.nav.is-open .nav__menu-link {
  opacity: 1;
  transform: none;
}

.nav.is-open .nav__menu-link:nth-child(1) { transition-delay: 0.05s; }
.nav.is-open .nav__menu-link:nth-child(2) { transition-delay: 0.1s; }
.nav.is-open .nav__menu-link:nth-child(3) { transition-delay: 0.15s; }
.nav.is-open .nav__menu-link:nth-child(4) { transition-delay: 0.2s; }

.nav__menu-link:hover,
.nav__menu-link.is-active {
  color: var(--ember-light);
}

.nav__menu-cta {
  margin-top: 1.5rem;
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.5s var(--ease-out) 0.25s,
    transform 0.5s var(--ease-out) 0.25s;
}

.nav.is-open .nav__menu-cta {
  opacity: 1;
  transform: none;
}

@media (max-width: 768px) {
  .nav__links {
    display: none;
  }

  .nav__toggle {
    display: flex;
  }
}

/* —— Hero —— */
.hero {
  position: relative;
  min-height: 100svh;
  padding: calc(var(--nav-h) + 2.5rem) clamp(22px, 5vw, 64px) 3rem;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  align-items: center;
  gap: clamp(1.5rem, 4vw, 4rem);
  text-align: left;
  color: #fff;
  overflow: hidden;
  background: transparent;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  will-change: transform, opacity;
}

.hero__visual {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: none;
  margin-top: 0;
  will-change: transform;
}

.hero__scroll {
  grid-column: 1 / -1;
  margin: 0.5rem 0 0;
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  animation: scroll-hint 2.4s var(--ease) infinite;
}

.hero-stage {
  position: relative;
  width: min(100%, 420px);
  margin: 0 auto;
  padding: 1.5rem 0 2.5rem;
}

.hero-stage__floor {
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 0;
  height: 28px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(255, 106, 26, 0.45), transparent 70%);
  filter: blur(12px);
  pointer-events: none;
}

.float-chip {
  position: absolute;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.85rem;
  border-radius: 980px;
  background: rgba(12, 12, 14, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #fff;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  animation: chip-float 5.5s var(--ease) infinite;
}

.float-chip b {
  color: var(--ember-light);
  font-size: 0.95rem;
}

.float-chip i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #30d158;
  box-shadow: 0 0 10px #30d158;
}

.float-chip--a {
  top: 8%;
  left: -8%;
}

.float-chip--b {
  top: 38%;
  right: -10%;
  animation-delay: -1.8s;
}

.float-chip--c {
  bottom: 14%;
  left: -4%;
  animation-delay: -3.2s;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 500;
}

@keyframes chip-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: calc(var(--nav-h) + 2rem);
  }

  .hero__content {
    margin: 0 auto;
    max-width: 820px;
  }

  .hero__lead {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__visual {
    margin-top: 1.5rem;
  }

  .float-chip--a {
    left: 0;
  }

  .float-chip--b {
    right: 0;
  }

  .float-chip--c {
    left: 6%;
  }
}

.cursor-glow {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 106, 26, 0.18), transparent 70%);
  pointer-events: none;
  opacity: 0;
  z-index: 1;
  transition: opacity 0.4s;
  will-change: transform;
  mix-blend-mode: screen;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #030303 0%, #000 55%, #050505 100%);
  will-change: transform;
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  animation: orb-drift 18s var(--ease) infinite alternate;
}

.hero__orb--1 {
  width: min(70vw, 640px);
  height: min(70vw, 640px);
  top: -20%;
  left: 50%;
  margin-left: min(-35vw, -320px);
  background: radial-gradient(circle, rgba(255, 106, 26, 0.4), transparent 70%);
}

.hero__orb--2 {
  width: min(50vw, 420px);
  height: min(50vw, 420px);
  bottom: 10%;
  right: -10%;
  background: radial-gradient(circle, rgba(255, 138, 76, 0.15), transparent 70%);
  animation-delay: -6s;
}

.hero__orb--3 {
  width: min(40vw, 320px);
  height: min(40vw, 320px);
  top: 40%;
  left: -5%;
  background: radial-gradient(circle, rgba(242, 169, 59, 0.12), transparent 70%);
  animation-delay: -12s;
}

@keyframes orb-drift {
  from {
    opacity: 0.7;
    transform: translate(0, 0) scale(1);
  }
  to {
    opacity: 1;
    transform: translate(2%, 3%) scale(1.05);
  }
}

.hero__grain {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 1.25rem;
  padding: 0.35rem 0.85rem 0.35rem 0.5rem;
  border-radius: 980px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
}

.hero__title {
  margin: 0;
  font-size: clamp(3rem, 6.4vw, 5.4rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.045em;
}

.hero__line {
  display: block;
  overflow: hidden;
}

.hero__lead {
  margin: 1.35rem 0 0;
  max-width: 34rem;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.62);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 0.875rem;
  margin-top: 1.75rem;
}

.hero__visual-glow {
  position: absolute;
  left: 50%;
  bottom: 8%;
  transform: translateX(-50%);
  width: 90%;
  height: 120px;
  background: radial-gradient(ellipse, var(--ember-glow), transparent 70%);
  filter: blur(40px);
  pointer-events: none;
  will-change: transform;
}

/* Hero load sequence */
.hero__seq {
  opacity: 0;
  transform: translateY(24px);
}

.hero.is-loaded .hero__seq {
  animation: hero-in 0.9s var(--ease-out) forwards;
}

.hero.is-loaded .hero__seq[data-seq="1"] { animation-delay: 0.1s; }
.hero.is-loaded .hero__seq[data-seq="2"] { animation-delay: 0.22s; }
.hero.is-loaded .hero__seq[data-seq="3"] { animation-delay: 0.34s; }
.hero.is-loaded .hero__seq[data-seq="4"] { animation-delay: 0.46s; }
.hero.is-loaded .hero__seq[data-seq="5"] {
  animation: hero-visual-in 1.1s var(--ease-out) 0.55s forwards;
}

@keyframes hero-in {
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes hero-visual-in {
  from {
    opacity: 0;
    transform: scale(0.92) translateY(32px);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: none;
    filter: blur(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__seq {
    opacity: 1;
    transform: none;
  }

  .hero.is-loaded .hero__seq {
    animation: none;
  }

  .hero__orb {
    animation: none;
  }

  .cursor-glow {
    display: none;
  }
}

/* Device mock */
.device-stack {
  position: relative;
  width: min(100%, 360px);
  margin: 0 auto;
  min-height: 440px;
  perspective: 1400px;
}

.device {
  position: absolute;
  width: min(100%, 300px);
  transform-style: preserve-3d;
  will-change: transform;
}

.device--back {
  top: 12%;
  right: -6%;
  opacity: 0.55;
  transform: rotateY(-18deg) rotateX(6deg) scale(0.88);
  z-index: 1;
  filter: saturate(0.8);
}

.device--front {
  top: 0;
  left: 4%;
  z-index: 2;
  transform: rotateY(8deg) rotateX(4deg);
}

.device__frame {
  padding: 10px;
  border-radius: 48px;
  background: linear-gradient(155deg, #48484a, #1c1c1e 40%, #2c2c2e);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.12) inset,
    0 40px 80px -20px rgba(0, 0, 0, 0.8),
    0 0 60px rgba(255, 106, 26, 0.12);
}

.device__island {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 96px;
  height: 28px;
  border-radius: 18px;
  background: #000;
  z-index: 5;
}

.device__screen {
  border-radius: 38px;
  overflow: hidden;
  background: var(--gray-100);
  aspect-ratio: 9 / 19.2;
  display: flex;
  flex-direction: column;
  position: relative;
}

.device__screen--dim {
  filter: saturate(0.85);
}

.app-bar {
  padding: 44px 16px 8px;
}

.app-bar--compact .app-bar__name {
  font-size: 1.125rem;
}

.app-bar__greeting {
  font-size: 0.625rem;
  font-weight: 500;
  color: var(--gray-400);
}

.app-bar__name {
  margin-top: 2px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--gray-800);
}

.app-body {
  flex: 1;
  padding: 0 12px 64px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.app-card {
  background: #fff;
  border-radius: 16px;
  padding: 12px 14px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.app-card--score {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
}

.app-card--mini {
  padding: 10px 12px;
}

.score-ring {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: conic-gradient(var(--ember) 0 280deg, var(--gray-200) 280deg);
  display: grid;
  place-items: center;
  position: relative;
}

.score-ring::after {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  background: #fff;
}

.score-ring span {
  position: relative;
  z-index: 1;
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-800);
}

.app-card__kicker {
  font-size: 0.5625rem;
  font-weight: 600;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.app-card__title {
  margin-top: 2px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-800);
}

.app-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.app-mini {
  padding: 10px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.app-mini__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  margin-bottom: 6px;
}

.app-mini__label {
  font-size: 0.5rem;
  color: var(--gray-400);
}

.app-mini__val {
  font-size: 0.75rem;
  font-weight: 600;
}

.app-nav {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 52px;
  background: rgba(255, 255, 255, 0.94);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: flex-end;
  justify-content: space-around;
  padding: 0 6px 8px;
}

.app-nav__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  font-size: 0.4375rem;
  color: var(--gray-400);
  font-weight: 500;
}

.app-nav__item.is-active {
  color: var(--ember);
}

.app-nav__icon {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  background: var(--gray-200);
}

.app-nav__item.is-active .app-nav__icon {
  background: var(--ember-soft);
}

.app-nav__fab {
  width: 40px;
  height: 40px;
  margin-top: -20px;
  border-radius: 50%;
  background: linear-gradient(145deg, #ff7a2e, var(--ember));
  box-shadow: 0 6px 18px rgba(255, 106, 26, 0.4);
}

/* —— Statement typography —— */
.statement {
  padding: clamp(5rem, 14vw, 10rem) 22px;
  background: transparent;
  text-align: center;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.statement--dark {
  background: transparent;
}

.statement__text {
  margin: 0 auto;
  max-width: 14ch;
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: #fff;
  will-change: transform, opacity;
}

/* —— Story / sticky features —— */
.story {
  background: transparent;
  padding: clamp(4rem, 10vw, 7rem) 0 0;
}

.story__headline {
  margin: 0;
  font-size: clamp(2.75rem, 6.5vw, 4.75rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.045em;
  color: #fff;
}

.story__intro {
  max-width: 920px;
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
  padding: 0 22px;
  text-align: center;
}

.sticky-features__scene {
  position: relative;
  max-width: var(--container-xl);
  margin: 0 auto;
  padding: 0 22px;
}

.sticky-features__pin {
  position: sticky;
  top: calc(var(--nav-h) + 0.5rem);
  z-index: 2;
  padding-bottom: 1rem;
}

.sticky-progress {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.sticky-progress__track {
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.sticky-progress__fill {
  height: 100%;
  width: 100%;
  background: var(--ember);
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}

.sticky-progress__label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--gray-400);
  font-variant-numeric: tabular-nums;
  min-width: 3.5rem;
}

.sticky-features__grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  min-height: calc(100vh - var(--nav-h) - 5rem);
}

.sticky-feature {
  position: relative;
  padding: 1.2rem 0 1.2rem 1.15rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  opacity: 0.38;
  transition: opacity 0.45s var(--ease-out);
  --text-open: 0;
}

.sticky-feature::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.2rem;
  bottom: 1.2rem;
  width: 2px;
  border-radius: 2px;
  background: transparent;
  transition: background 0.4s, box-shadow 0.4s;
}

.sticky-feature.is-active {
  opacity: 1;
}

.sticky-feature.is-active::before {
  background: var(--ember);
  box-shadow: 0 0 14px var(--ember);
}

.sticky-feature__num {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--ember);
  margin-bottom: 0.4rem;
}

.sticky-feature__title {
  margin: 0;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.038em;
  color: #fff;
  line-height: 1.12;
}

.sticky-feature__text {
  margin: 0.55rem 0 0;
  font-size: 1.02rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.55);
  max-height: calc(var(--text-open, 0) * 96px);
  overflow: hidden;
  opacity: var(--text-open, 0);
  transition: opacity 0.35s;
}

.sticky-feature.is-active .sticky-feature__text {
  margin-top: 0.65rem;
}

.sticky-features__visual {
  position: relative;
  aspect-ratio: 1 / 1.02;
  max-height: 620px;
  border-radius: 40px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 38%, rgba(255, 106, 26, 0.2), transparent 58%),
    rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.sticky-visual {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  transform: translate3d(0, 18px, 0) scale(0.96);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
  pointer-events: none;
}

.sticky-visual.is-active {
  z-index: 1;
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

/* Rich feature panels */
.panel {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  padding: 2.25rem 1.5rem 2rem;
  position: relative;
}

.panel__tag {
  position: absolute;
  top: 1.25rem;
  left: 1.35rem;
  padding: 0.3rem 0.7rem;
  border-radius: 980px;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ember-light);
  background: rgba(255, 106, 26, 0.12);
  border: 1px solid rgba(255, 106, 26, 0.22);
}

.panel--auth {
  background: radial-gradient(circle at 50% 18%, rgba(255, 106, 26, 0.32), transparent 52%);
}

.panel--offline {
  background: radial-gradient(circle at 42% 28%, rgba(52, 199, 89, 0.24), transparent 52%);
}

.panel--privacy {
  background: radial-gradient(circle at 58% 22%, rgba(47, 128, 237, 0.26), transparent 52%);
}

.panel--today {
  background: radial-gradient(circle at 50% 16%, rgba(255, 106, 26, 0.24), transparent 52%);
}

.panel__phone {
  width: min(78%, 272px);
  border-radius: 40px;
  padding: 9px;
  background: linear-gradient(155deg, #4a4a4c, #141416 42%, #2a2a2c);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.14) inset,
    0 36px 70px rgba(0, 0, 0, 0.55),
    0 0 50px rgba(255, 106, 26, 0.12);
  position: relative;
}

.panel__island {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 88px;
  height: 24px;
  border-radius: 16px;
  background: #000;
  z-index: 3;
}

.panel__screen {
  border-radius: 32px;
  padding: 2.4rem 1.25rem 1.5rem;
  background: #161618;
  color: #fff;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.panel__screen--light {
  background: var(--gray-100);
  color: var(--gray-800);
}

.panel__kicker {
  margin: 0 0 0.35rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.panel__kicker--dark {
  color: var(--gray-400);
}

.panel__big {
  margin: 0 0 1.25rem;
  font-size: 1.65rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.15;
}

.panel__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-top: 0.55rem;
}

.panel__btn--dark {
  background: #fff;
  color: #000;
}

.panel__btn--light {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.panel__pill {
  align-self: flex-start;
  margin-bottom: 1rem;
  padding: 0.3rem 0.7rem;
  border-radius: 980px;
  background: rgba(52, 199, 89, 0.15);
  color: #30d158;
  font-size: 0.7rem;
  font-weight: 600;
}

.panel__queue {
  display: grid;
  gap: 0.5rem;
}

.panel__queue span {
  padding: 0.75rem 0.9rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
}

.panel__list {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.panel__list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 0.95rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.9rem;
}

.panel__list em {
  font-style: normal;
  color: #30d158;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.panel__greeting {
  margin: 0 0 1rem;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.panel__score-row {
  display: flex;
  gap: 0.85rem;
  align-items: center;
  padding: 0.9rem;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  margin-bottom: 0.75rem;
}

.panel__line {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
}

.score-ring--sm {
  width: 44px;
  height: 44px;
}

.score-ring--sm span {
  font-size: 0.85rem;
}

.panel__chips {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.panel__chips span {
  padding: 0.4rem 0.7rem;
  border-radius: 980px;
  background: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-600);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.sticky-features__steps {
  position: relative;
}

.sticky-step {
  height: 100vh;
}

@media (max-width: 900px) {
  .sticky-features__grid {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 1.5rem;
  }

  .sticky-features__pin {
    position: relative;
    top: auto;
  }

  .sticky-features__visual {
    aspect-ratio: 4 / 3;
    max-height: 380px;
  }

  .sticky-feature {
    opacity: 0.55;
  }

  .sticky-feature.is-active {
    opacity: 1;
  }

  .sticky-feature__text {
    max-height: none !important;
    opacity: 1 !important;
  }

  .sticky-step {
    height: 45vh;
  }

  .panel__phone {
    width: min(46%, 200px);
  }

  .panel__screen {
    min-height: 240px;
    padding: 1.85rem 1rem 1rem;
  }

  .filmstrip__item:nth-child(even) {
    margin-top: 1.35rem;
  }

  .panel__big {
    font-size: 1.25rem;
  }
}

/* —— Modules filmstrip —— */
.filmstrip {
  background: transparent;
  padding: clamp(5rem, 12vw, 8rem) 0 clamp(5rem, 10vw, 7rem);
  color: #fff;
}

.filmstrip__head {
  max-width: var(--container-xl);
  margin: 0 auto 3rem;
  padding: 0 22px;
}

.filmstrip__title {
  margin: 0;
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.filmstrip__track {
  display: flex;
  align-items: flex-start;
  gap: 1.15rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0.5rem max(22px, calc((100vw - var(--container-xl)) / 2 + 22px)) 1.5rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.filmstrip__track::-webkit-scrollbar {
  display: none;
}

.filmstrip__item {
  flex: 0 0 min(48vw, 300px);
  margin: 0;
  scroll-snap-align: start;
}

.filmstrip__item:nth-child(even) {
  margin-top: 2.75rem;
}

.filmstrip__card {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  aspect-ratio: 4 / 5;
  background:
    radial-gradient(circle at 50% 30%, rgba(255, 106, 26, 0.16), transparent 55%),
    linear-gradient(165deg, #1c1c20, #09090b);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.35);
  transition:
    transform 0.5s var(--ease-out),
    border-color 0.35s,
    box-shadow 0.5s;
}

.filmstrip__item:hover .filmstrip__card {
  transform: translateY(-10px) scale(1.03);
  border-color: rgba(255, 106, 26, 0.45);
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.45),
    0 0 40px rgba(255, 106, 26, 0.18);
}

.filmstrip__idx {
  position: absolute;
  top: 1rem;
  left: 1.05rem;
  z-index: 2;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.4);
}

.filmstrip__item img {
  width: 100%;
  height: 72%;
  object-fit: contain;
  padding: 14% 12% 6%;
  display: block;
  transition: transform 0.6s var(--ease-out);
}

.filmstrip__item:hover img {
  transform: scale(1.08);
}

.filmstrip__item figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 2.5rem 1.2rem 1.2rem;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.82));
}

.filmstrip__item figcaption strong {
  display: block;
  font-size: 1.2rem;
  font-weight: 650;
  letter-spacing: -0.03em;
}

.filmstrip__item figcaption span {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.85rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
}

/* —— Product chapters —— */
.chapter {
  background: transparent;
  color: #fff;
  padding: clamp(5rem, 12vw, 9rem) 22px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  max-width: var(--container-xl);
  margin: 0 auto;
}

.chapter--flip .chapter__copy {
  order: 2;
}

.chapter--flip .chapter__stage {
  order: 1;
}

.chapter--life {
  display: block;
  max-width: none;
  padding-left: 0;
  padding-right: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.chapter__copy--center {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
  padding: 0 22px;
}

.chapter__title {
  margin: 0;
  font-size: clamp(2.5rem, 5.5vw, 4.25rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.chapter__desc {
  margin: 1.15rem 0 0;
  max-width: 26rem;
  font-size: 1.2rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.55);
}

.chapter__copy--center .chapter__desc {
  margin-left: auto;
  margin-right: auto;
}

.chapter-phone {
  display: flex;
  justify-content: center;
}

.chapter-phone__frame {
  width: min(100%, 300px);
  border-radius: 44px;
  padding: 10px;
  background: linear-gradient(155deg, #4a4a4c, #1a1a1c);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.55);
  position: relative;
}

.chapter-phone__island {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 26px;
  border-radius: 16px;
  background: #000;
  z-index: 2;
}

.chapter-phone__ui {
  border-radius: 34px;
  background: var(--gray-100);
  color: var(--gray-800);
  padding: 3.25rem 1.15rem 1.5rem;
  min-height: 420px;
}

.chapter-phone__label {
  margin: 0 0 1rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-400);
}

.chapter-goal {
  background: #fff;
  border-radius: 16px;
  padding: 0.95rem 1rem;
  margin-bottom: 0.65rem;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}

.chapter-goal--muted {
  opacity: 0.7;
}

.chapter-goal__top {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  font-weight: 600;
}

.chapter-goal__bar {
  margin-top: 0.65rem;
  height: 4px;
  border-radius: 4px;
  background: var(--gray-200);
  overflow: hidden;
}

.chapter-goal__bar i {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--ember), #ffb347);
  border-radius: inherit;
}

.chapter-board {
  max-width: 380px;
  margin: 0 auto;
  padding: 1.5rem;
  border-radius: 28px;
  background: #121214;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.chapter-board__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.95rem 0.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.55);
}

.chapter-board__row.is-done {
  color: #fff;
}

.chapter-board__row em {
  font-style: normal;
  color: var(--ember);
  font-weight: 600;
}

.chapter-board__row:not(.is-done) em {
  color: rgba(255, 255, 255, 0.25);
}

.chapter-board__streak {
  margin: 1.25rem 0 0;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--habits);
  letter-spacing: -0.01em;
}

.chapter__duo {
  max-width: var(--container-xl);
  margin: 0 auto;
  padding: 0 22px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.duo-card {
  border-radius: 32px;
  padding: clamp(1.75rem, 4vw, 2.5rem);
  min-height: 280px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.duo-card--finance {
  background:
    radial-gradient(circle at 20% 20%, rgba(52, 199, 89, 0.2), transparent 50%),
    #111113;
}

.duo-card--wardrobe {
  background:
    radial-gradient(circle at 80% 20%, rgba(242, 169, 59, 0.18), transparent 50%),
    #111113;
}

.duo-card__label {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.duo-card__value {
  margin: 0.65rem 0 0;
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.04em;
}

.duo-card__meta {
  margin: 0.35rem 0 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.95rem;
}

.duo-card__bars {
  margin-top: auto;
  padding-top: 2rem;
  display: flex;
  align-items: flex-end;
  gap: 0.45rem;
  height: 80px;
}

.duo-card__bars span {
  flex: 1;
  border-radius: 6px 6px 2px 2px;
  background: linear-gradient(180deg, #30d158, rgba(48, 209, 88, 0.2));
}

.duo-card__swatches {
  margin-top: auto;
  padding-top: 2rem;
  display: flex;
  gap: 0.55rem;
}

.duo-card__swatches span {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

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

  .chapter--flip .chapter__copy,
  .chapter--flip .chapter__stage {
    order: unset;
  }

  .chapter__duo {
    grid-template-columns: 1fr;
  }
}

/* —— Privacy editorial —— */
.privacy-editorial {
  background: transparent;
  color: #fff;
  padding: clamp(5rem, 12vw, 9rem) 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.privacy-editorial__inner {
  max-width: 820px;
  margin: 0 auto;
}

.privacy-editorial__title {
  margin: 0 0 3rem;
  font-size: clamp(2.75rem, 6vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.privacy-editorial__rows {
  display: grid;
  gap: 0;
}

.privacy-row {
  display: grid;
  grid-template-columns: minmax(10rem, 0.45fr) 1fr;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.privacy-row strong {
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.privacy-row p {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.05rem;
  line-height: 1.5;
}

.privacy-editorial__link {
  margin: 2.5rem 0 0;
}

.privacy-editorial__link a {
  color: var(--ember-light);
  font-size: 1.05rem;
  font-weight: 500;
  transition: opacity 0.2s;
}

.privacy-editorial__link a:hover {
  opacity: 0.8;
}

@media (max-width: 640px) {
  .privacy-row {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }
}

/* —— Quiet CTA —— */
.cta-quiet {
  background: transparent;
  color: #fff;
  text-align: center;
  padding: clamp(5rem, 12vw, 9rem) 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.cta-quiet__title {
  margin: 0;
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.045em;
}

.cta-quiet__desc {
  margin: 0.85rem 0 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.15rem;
}

.cta-quiet__stores {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 2rem;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 210px;
  min-height: 54px;
  padding: 0.8rem 1.2rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  text-align: left;
  transition:
    transform 0.35s var(--ease-out),
    background 0.25s,
    border-color 0.25s;
}

.store-badge:hover {
  transform: scale(1.02);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}

.store-badge__small {
  display: block;
  font-size: 0.625rem;
  opacity: 0.65;
}

.store-badge__large {
  display: block;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.store-badge__tag {
  margin-left: auto;
  padding: 0.2rem 0.5rem;
  border-radius: 980px;
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: rgba(255, 106, 26, 0.2);
  color: var(--ember-light);
}

/* —— Footer —— */
.footer {
  background: transparent;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 3.5rem 0 2rem;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.8125rem;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.75rem;
}

.footer__tagline {
  margin: 0;
  max-width: 18rem;
  line-height: 1.55;
}

.footer__cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.footer__col h4 {
  margin: 0 0 0.75rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.footer__col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}

.footer__col a {
  transition: color 0.2s;
}

.footer__col a:hover {
  color: #fff;
}

.footer__bottom {
  padding-top: 1.5rem;
}

.footer__legal {
  margin: 0;
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.35);
}

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

  .footer__cols {
    grid-template-columns: 1fr 1fr;
  }
}

/* —— Scroll reveal —— */
.reveal {
  opacity: 0;
  transform: translateY(48px);
  transition:
    opacity 0.9s var(--ease-out),
    transform 0.9s var(--ease-out),
    filter 0.9s var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
  filter: none;
}

.reveal[data-reveal="blur"] {
  filter: blur(8px);
}

.reveal[data-reveal="blur"].is-visible {
  filter: blur(0);
}

.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }

  .feature-story__visual {
    opacity: 1;
    transform: none !important;
  }
}

/* —— Legal pages —— */
.legal-page {
  background: var(--gray-100);
  color: var(--gray-800);
  padding-top: calc(var(--nav-h) + 3rem);
  padding-bottom: 4rem;
  min-height: 100svh;
}

.legal-page .nav {
  backdrop-filter: saturate(180%) blur(20px);
  background: rgba(0, 0, 0, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.legal-page .scroll-progress {
  display: none;
}

.legal-page main {
  max-width: 42rem;
  margin: 0 auto;
  padding: 0 22px;
}

.legal-page h1 {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.035em;
  margin: 0 0 0.5rem;
}

.legal-page .meta {
  color: var(--gray-400);
  margin-bottom: 2rem;
}

.legal-page p,
.legal-page li {
  color: var(--gray-500);
  line-height: 1.6;
}

.legal-page h2 {
  margin-top: 2.5rem;
  font-size: 1.375rem;
  font-weight: 600;
}

.legal-page .footer {
  margin-top: 4rem;
}

.legal-page .footer__top {
  display: none;
}
