/* Thai Charm Amulet — Landing editorial (OKLCH warm spiritual) */

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

:root {
  --bg-deep: oklch(16% 0.028 48);
  --bg-base: oklch(20% 0.032 52);
  --bg-raised: oklch(24% 0.036 55);
  --bg-muted: oklch(28% 0.04 58);

  --text-primary: oklch(94% 0.02 85);
  --text-secondary: oklch(82% 0.03 78);
  --text-muted: oklch(68% 0.04 72);

  --gold: oklch(72% 0.14 75);
  --gold-soft: oklch(65% 0.1 72);
  --terracotta: oklch(52% 0.14 38);
  --terracotta-deep: oklch(42% 0.12 35);
  --success: oklch(62% 0.12 155);
  --danger: oklch(58% 0.16 25);

  --border: oklch(38% 0.04 55 / 0.45);
  --border-strong: oklch(48% 0.06 60 / 0.55);

  --font-display: 'Libre Baskerville', Georgia, 'Times New Roman', serif;
  --font-body: 'Source Sans 3', system-ui, sans-serif;

  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: clamp(3rem, 8vw, 5rem);

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;

  --max-w: 72rem;
  --nav-h: 4.25rem;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out-quart: cubic-bezier(0.165, 0.84, 0.44, 1);
  --dur-fast: 0.2s;
  --dur-med: 0.45s;
  --dur-slow: 0.85s;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

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

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 50% at 10% 0%, oklch(42% 0.08 55 / 0.35), transparent 55%),
    radial-gradient(ellipse 60% 40% at 90% 20%, oklch(38% 0.1 38 / 0.25), transparent 50%),
    linear-gradient(180deg, var(--bg-deep) 0%, oklch(18% 0.03 50) 100%);
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.04;
  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");
}

.landing-wrap {
  position: relative;
  z-index: 1;
}

.skip-link {
  position: absolute;
  left: var(--space-lg);
  top: 0.5rem;
  z-index: 1100;
  padding: 0.5rem 1rem;
  background: var(--bg-raised);
  color: var(--gold);
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transform: translateY(-200%);
  transition: transform 0.2s var(--ease-out);
}

.skip-link:focus {
  transform: translateY(0);
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* Nav */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: oklch(18% 0.03 50 / 0.78);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid transparent;
  transition: box-shadow var(--dur-med) var(--ease-out), border-color var(--dur-med) var(--ease-out), background var(--dur-med) var(--ease-out);
}

.navbar.scrolled {
  background: oklch(16% 0.03 48 / 0.94);
  border-bottom-color: var(--border);
  box-shadow: 0 12px 40px oklch(8% 0.02 40 / 0.55);
}

.nav-container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

.logo-section {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  text-decoration: none;
  color: inherit;
}

.logo-section img {
  height: 2.25rem;
  width: auto;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.nav-links {
  display: none;
  align-items: center;
  gap: var(--space-lg);
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-link:hover,
.nav-link:focus-visible {
  color: var(--gold);
}

.nav-actions {
  display: none;
  align-items: center;
  gap: var(--space-sm);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.65rem 1.25rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.15s;
}

.btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.btn-primary {
  background: var(--terracotta);
  color: oklch(96% 0.02 85);
  border-color: oklch(48% 0.12 38);
}

.btn-primary:hover {
  background: var(--terracotta-deep);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px oklch(42% 0.12 38 / 0.45);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-shine {
  position: relative;
  overflow: hidden;
}

.btn-shine::after {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(105deg, transparent, oklch(90% 0.06 85 / 0.35), transparent);
  transition: left 0.55s var(--ease-out-quart);
}

.btn-shine:hover::after {
  left: 140%;
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border-color: var(--border-strong);
}

.btn-secondary:hover {
  border-color: var(--gold-soft);
  color: var(--gold);
  transform: translateY(-1px);
}

.btn-secondary:active {
  transform: translateY(0);
}

.btn-ghost {
  background: oklch(28% 0.04 55 / 0.5);
  color: var(--text-secondary);
  border-color: var(--border);
}

.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  cursor: pointer;
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: oklch(8% 0.02 40 / 0.7);
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: min(20rem, 88vw);
  height: 100%;
  z-index: 1002;
  background: var(--bg-base);
  border-left: 1px solid var(--border);
  padding: var(--space-xl) var(--space-lg);
  transform: translateX(100%);
  transition: transform 0.35s ease-out;
  overflow-y: auto;
}

.mobile-nav.active {
  transform: translateX(0);
}

.mobile-nav-close {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.25rem;
  cursor: pointer;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-top: var(--space-2xl);
}

.mobile-nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 1rem;
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--border);
}

.mobile-nav-links .btn {
  margin-top: var(--space-md);
  width: 100%;
}

@media (min-width: 900px) {
  .nav-links,
  .nav-actions {
    display: flex;
  }
  .mobile-menu-btn {
    display: none;
  }
}

/* Hero */
.hero {
  position: relative;
  padding: calc(var(--nav-h) + var(--space-3xl)) var(--space-lg) var(--space-3xl);
  max-width: var(--max-w);
  margin: 0 auto;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: -20% -10% 0;
  pointer-events: none;
  z-index: 0;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
  animation: orbFloat 14s var(--ease-out) infinite alternate;
}

.hero-orb--1 {
  width: min(420px, 70vw);
  height: min(420px, 70vw);
  top: -8%;
  right: -5%;
  background: oklch(55% 0.12 75 / 0.35);
}

.hero-orb--2 {
  width: min(320px, 55vw);
  height: min(320px, 55vw);
  bottom: 5%;
  left: -8%;
  background: oklch(48% 0.14 38 / 0.3);
  animation-delay: -4s;
}

@keyframes orbFloat {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(-12px, 18px) scale(1.06); }
}

.hero-layout,
.hero-paths {
  position: relative;
  z-index: 1;
}

.hero-ready .hero-copy > * {
  animation: heroIn var(--dur-slow) var(--ease-out-quart) both;
}

.hero-ready .hero-eyebrow { animation-delay: 0.05s; }
.hero-ready .hero h1 { animation-delay: 0.12s; }
.hero-ready .hero-lead { animation-delay: 0.2s; }
.hero-ready .hero-actions { animation-delay: 0.28s; }

@keyframes heroIn {
  from {
    opacity: 0;
    transform: translateY(1.25rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-layout {
  max-width: 42rem;
}

.hero-ready .hero-paths {
  animation: heroIn var(--dur-slow) var(--ease-out-quart) both;
  animation-delay: 0.36s;
}

.hero-paths {
  display: grid;
  gap: var(--space-md);
  margin-top: var(--space-2xl);
}

@media (min-width: 640px) {
  .hero-paths {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
  }
}

.path-card {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: oklch(24% 0.035 52 / 0.85);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: inherit;
  transition: border-color var(--dur-med) var(--ease-out), transform var(--dur-med) var(--ease-out), background var(--dur-med) var(--ease-out);
}

.path-card:hover,
.path-card:focus-visible {
  border-color: var(--gold-soft);
  transform: translateY(-2px);
  background: oklch(26% 0.04 55);
}

.path-card__icon {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: oklch(32% 0.06 55);
  color: var(--gold);
  flex-shrink: 0;
}

.path-card--card .path-card__icon {
  color: var(--terracotta);
}

.path-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  flex: 1;
  min-width: 0;
}

.path-card__body strong {
  font-family: var(--font-display);
  font-size: 1rem;
}

.path-card__body span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.path-card__arrow {
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: transform var(--dur-med) var(--ease-out), color var(--dur-med) var(--ease-out);
}

.path-card:hover .path-card__arrow {
  transform: translateX(4px);
  color: var(--gold);
}

/* Hero product mosaic */
.hero-mosaic {
  display: grid;
  gap: var(--space-sm);
  grid-template-columns: 1fr;
  grid-template-rows: auto auto;
}

@media (min-width: 480px) {
  .hero-mosaic {
    grid-template-columns: 1.4fr 1fr;
    grid-template-rows: 1fr 1fr;
    min-height: 280px;
  }
}

.hero-mosaic__main {
  position: relative;
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-strong);
  text-decoration: none;
  grid-row: 1 / -1;
}

.hero-mosaic__main--solo {
  grid-column: 1 / -1;
  grid-row: auto;
  aspect-ratio: 16/10;
}

.hero-mosaic__main img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.8s var(--ease-out-quart);
}

@media (min-width: 480px) {
  .hero-mosaic__main {
    min-height: 100%;
  }
  .hero-mosaic__main img {
    min-height: 280px;
  }
}

.hero-mosaic__main:hover img {
  transform: scale(1.04);
}

.hero-mosaic__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: var(--space-md) var(--space-lg);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-primary);
  background: linear-gradient(0deg, oklch(14% 0.03 48 / 0.92) 0%, transparent 100%);
}

.hero-mosaic__stack {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

@media (min-width: 480px) {
  .hero-mosaic__stack {
    display: contents;
  }
}

.hero-mosaic__thumb {
  display: block;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 1;
  text-decoration: none;
}

.hero-mosaic__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.hero-mosaic__thumb:hover img {
  transform: scale(1.06);
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-xs);
  border-bottom: 1px solid oklch(72% 0.12 75 / 0.4);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 6vw, 3.5rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  max-width: 16ch;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}

.hero-lead {
  margin-top: var(--space-lg);
  font-size: clamp(1rem, 2.2vw, 1.125rem);
  color: var(--text-secondary);
  max-width: 42ch;
}

.hero-lead strong {
  color: var(--gold);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}


/* Trust strip — marquee */
.trust-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: oklch(18% 0.03 52 / 0.75);
  padding: var(--space-md) 0;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.trust-marquee {
  display: flex;
  width: max-content;
  animation: trustScroll 32s linear infinite;
}

.trust-marquee:hover {
  animation-play-state: paused;
}

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

.trust-strip-inner {
  display: flex;
  gap: var(--space-2xl);
  padding: 0 var(--space-lg);
  flex-shrink: 0;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  white-space: nowrap;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.trust-item i {
  color: var(--gold-soft);
}

/* Sections */
.section {
  padding: var(--space-3xl) var(--space-lg);
  max-width: var(--max-w);
  margin: 0 auto;
}

.section--wide {
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

.section--wide .section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.section-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-sm);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

.section-desc {
  color: var(--text-muted);
  max-width: 52ch;
  font-size: 1.05rem;
}

.section-head {
  margin-bottom: var(--space-2xl);
}

.section--airy {
  padding-top: clamp(2.5rem, 6vw, 4rem);
  padding-bottom: clamp(2.5rem, 6vw, 4rem);
}

.section--tight {
  padding-top: var(--space-2xl);
  padding-bottom: var(--space-2xl);
}

.section-head--row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-lg);
}

.section-head--row .section-desc {
  margin-bottom: 0;
}

.section-head__cta {
  flex-shrink: 0;
}

/* Proof band — editorial, not hero metrics */
.proof-band {
  padding: var(--space-2xl) var(--space-lg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: oklch(19% 0.03 50 / 0.6);
}

.proof-band__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  gap: var(--space-xl);
}

@media (min-width: 768px) {
  .proof-band__inner {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: start;
    gap: var(--space-3xl);
  }
}

.proof-band__text {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2.5vw, 1.2rem);
  line-height: 1.55;
  color: var(--text-secondary);
}

.proof-band__text strong {
  color: var(--gold-soft);
  font-weight: 700;
}

.proof-band__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.proof-band__list li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.9rem;
  color: var(--text-muted);
}

.proof-band__list i {
  color: var(--gold);
  width: 1.1rem;
  text-align: center;
}

/* Split section — installment + features side rhythm */
.section-split {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.section-split > .section {
  padding-left: 0;
  padding-right: 0;
}

.section-split .installment-band {
  padding-top: var(--space-3xl);
  padding-bottom: var(--space-2xl);
}

.section-split #features {
  padding-top: var(--space-2xl);
  padding-bottom: var(--space-3xl);
}

/* Products */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: var(--space-lg);
}

.product-card {
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  transition: border-color var(--dur-med) var(--ease-out), transform var(--dur-med) var(--ease-out), box-shadow var(--dur-med) var(--ease-out);
}

.product-card:hover {
  border-color: var(--gold-soft);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px oklch(10% 0.02 40 / 0.4);
}

.product-card-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
}

.product-card-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, oklch(14% 0.03 48 / 0.65) 100%);
  pointer-events: none;
  transition: opacity var(--dur-med) var(--ease-out);
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s var(--ease-out-quart);
}

.product-card:hover img {
  transform: scale(1.06);
}

.product-card-body {
  padding: var(--space-lg);
}

.product-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: var(--space-sm);
  line-height: 1.35;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--space-sm);
}

.product-price {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold);
}

.product-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--terracotta);
  padding: 0.2rem 0.5rem;
  border: 1px solid oklch(52% 0.12 38 / 0.5);
  border-radius: var(--radius-sm);
}

.section-cta {
  text-align: center;
  margin-top: var(--space-2xl);
}

.products-bento {
  display: grid;
  gap: var(--space-md);
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 700px) {
  .products-bento {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    gap: var(--space-lg);
  }
}

.products-bento__item--featured {
  grid-column: 1 / -1;
}

@media (min-width: 700px) {
  .products-bento__item--featured {
    grid-column: span 2;
    grid-row: span 2;
  }
}

.products-bento__item--featured .product-card-media {
  aspect-ratio: 4/3;
}

@media (min-width: 700px) {
  .products-bento__item--featured .product-card-media {
    aspect-ratio: auto;
    min-height: 100%;
  }
}

/* Installments */
.installment-band {
  background: oklch(22% 0.04 48 / 0.8);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.installment-grid {
  display: grid;
  gap: var(--space-lg);
}

@media (min-width: 700px) {
  .installment-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.installment-item {
  padding: var(--space-xl) var(--space-lg);
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: transform var(--dur-med) var(--ease-out), border-color var(--dur-med) var(--ease-out);
}

.installment-item:hover {
  transform: translateY(-3px);
  border-color: oklch(72% 0.12 75 / 0.5);
}

.installment-item h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin: var(--space-sm) 0;
}

.installment-item p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.installment-item i {
  font-size: 1.5rem;
  color: var(--gold);
}

/* Stats — editorial row, not hero-metric cards */
.stats-band {
  padding: var(--space-2xl) var(--space-lg);
  border-bottom: 1px solid var(--border);
}

.stats-row {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl) var(--space-lg);
}

@media (min-width: 640px) {
  .stats-row {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-block {
  text-align: left;
  padding: var(--space-md) 0 var(--space-md) var(--space-md);
  border-left: 1px solid var(--border-strong);
  transition: border-color var(--dur-med) var(--ease-out);
}

.stat-block.stat-lit {
  border-left-color: var(--gold);
}

.stat-block.stat-lit .stat-value {
  animation: statGlow 1.2s var(--ease-out) both;
}

@keyframes statGlow {
  0% { filter: brightness(1); }
  40% { filter: brightness(1.25); }
  100% { filter: brightness(1); }
}

.stat-value {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1.1;
}

.stat-label {
  margin-top: var(--space-xs);
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Features — compact grid */
.features-grid {
  display: grid;
  gap: var(--space-md);
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 640px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
  }
}

.feature-cell {
  padding: var(--space-lg);
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: border-color var(--dur-med) var(--ease-out), transform var(--dur-med) var(--ease-out);
}

.feature-cell:hover {
  border-color: oklch(72% 0.1 75 / 0.45);
  transform: translateY(-2px);
}

.feature-cell i {
  font-size: 1.15rem;
  color: var(--gold);
  margin-bottom: var(--space-sm);
  display: block;
}

.feature-cell h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  margin-bottom: var(--space-xs);
}

.feature-cell p {
  color: var(--text-muted);
  font-size: 0.8rem;
  line-height: 1.5;
}

/* Steps */
.steps-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  max-width: 40rem;
  position: relative;
  padding-left: var(--space-sm);
}

.steps-list::before {
  content: '';
  position: absolute;
  left: 1.15rem;
  top: 0.5rem;
  bottom: 0.5rem;
  width: 1px;
  background: linear-gradient(180deg, var(--gold-soft), oklch(52% 0.12 38 / 0.3));
  opacity: 0.5;
}

.step-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-lg);
  align-items: start;
}

.step-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: oklch(72% 0.1 75 / 0.35);
  line-height: 1;
  min-width: 2.5rem;
}

.step-item h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  margin-bottom: var(--space-xs);
}

.step-item p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Activity */
.activity-layout {
  display: grid;
  gap: var(--space-2xl);
}

@media (min-width: 900px) {
  .activity-layout {
    grid-template-columns: minmax(0, 0.42fr) minmax(0, 1fr);
    align-items: start;
    gap: var(--space-3xl);
  }
}

.activity-layout .section-head {
  margin-bottom: 0;
}

.activity-live {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--success);
  margin-top: var(--space-md);
}

.activity-live-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 0 oklch(62% 0.12 155 / 0.6);
  animation: livePulse 2s ease-out infinite;
}

@keyframes livePulse {
  0% { box-shadow: 0 0 0 0 oklch(62% 0.12 155 / 0.55); }
  70% { box-shadow: 0 0 0 10px oklch(62% 0.12 155 / 0); }
  100% { box-shadow: 0 0 0 0 oklch(62% 0.12 155 / 0); }
}

.activity-panel {
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: inset 0 1px 0 oklch(72% 0.1 75 / 0.08);
}

.activity-item--new {
  animation: activityFlash 2.2s var(--ease-out) both;
}

@keyframes activityFlash {
  0% { background: oklch(62% 0.12 155 / 0.12); }
  100% { background: transparent; }
}

.activity-feed {
  max-height: 28rem;
  overflow-y: auto;
}

.activity-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: var(--space-md);
  align-items: center;
  padding: var(--space-md) var(--space-lg);
  border-bottom: 1px solid var(--border);
  animation: fadeUp 0.5s ease-out both;
}

.activity-icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}

.activity-user {
  font-weight: 600;
  font-size: 0.9rem;
}

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

.activity-time {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.15rem;
}

.activity-amount {
  font-weight: 700;
  color: var(--gold);
  font-size: 0.9rem;
  white-space: nowrap;
}

.empty-state {
  padding: var(--space-3xl) var(--space-lg);
  text-align: center;
}

.empty-state i {
  font-size: 2.5rem;
  color: var(--text-muted);
  opacity: 0.35;
  margin-bottom: var(--space-lg);
}

.empty-state h3 {
  font-family: var(--font-display);
  margin-bottom: var(--space-sm);
}

.empty-state p {
  color: var(--text-muted);
  max-width: 28rem;
  margin: 0 auto var(--space-lg);
}

/* Trust cards (real transaction stats) */
.trust-cards {
  display: grid;
  gap: var(--space-lg);
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

.trust-card {
  padding: var(--space-lg);
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: border-color var(--dur-med) var(--ease-out), transform var(--dur-med) var(--ease-out);
}

.trust-card:hover {
  border-color: oklch(72% 0.1 75 / 0.45);
  transform: translateY(-2px);
}

.trust-card__head {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.trust-card__head h4 {
  font-size: 0.95rem;
  font-weight: 600;
}

.trust-card__meta {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.15rem;
}

.trust-card__badge {
  margin-left: auto;
  flex-shrink: 0;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--success);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.trust-card__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  border-top: 1px solid var(--border);
  padding-top: var(--space-md);
}

.trust-card__stats dt {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}

.trust-card__stats dd {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
}

.testimonial-avatar {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: var(--radius-sm);
  background: oklch(32% 0.06 55);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.testimonial-info h4 {
  font-size: 0.95rem;
  font-weight: 600;
}

.verified-badge {
  font-size: 0.65rem;
  color: var(--success);
  font-weight: 600;
  margin-left: 0.35rem;
}

.testimonial-stars {
  color: var(--gold);
  font-size: 0.75rem;
  margin: 0.2rem 0;
}

.testimonial-stats {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  font-size: 0.75rem;
  color: var(--text-muted);
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-style: italic;
  line-height: 1.6;
}

.testimonial-date {
  margin-top: var(--space-md);
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* FAQ */
.faq-list {
  max-width: 40rem;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-lg) 0;
  cursor: pointer;
  list-style: none;
}

.faq-question h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
}

.faq-icon {
  color: var(--gold);
  transition: transform 0.25s ease-out;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s var(--ease-out);
}

.faq-item.active .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer-content {
  overflow: hidden;
  padding-bottom: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
  transition: padding 0.35s var(--ease-out);
}

.faq-item.active .faq-answer-content {
  padding-bottom: var(--space-lg);
}

.faq-question:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
  border-radius: var(--radius-sm);
}

/* CTA */
.cta-band {
  position: relative;
  margin: var(--space-3xl) var(--space-lg);
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
  padding: var(--space-3xl) var(--space-xl);
  text-align: center;
  background: linear-gradient(135deg, oklch(28% 0.06 48) 0%, oklch(22% 0.05 40) 100%);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: -50%;
  background: conic-gradient(from 0deg at 50% 50%, transparent, oklch(72% 0.12 75 / 0.08), transparent 40%);
  animation: ctaRotate 12s linear infinite;
  pointer-events: none;
}

@keyframes ctaRotate {
  to { transform: rotate(360deg); }
}

.cta-band > * {
  position: relative;
  z-index: 1;
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2rem);
  margin-bottom: var(--space-md);
}

.cta-band p {
  color: var(--text-muted);
  max-width: 40ch;
  margin: 0 auto var(--space-xl);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  justify-content: center;
}

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  padding: var(--space-3xl) var(--space-lg) var(--space-xl);
  background: oklch(14% 0.025 48);
}

.footer-container {
  max-width: var(--max-w);
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .footer-grid {
    grid-template-columns: 1.2fr repeat(3, 1fr);
  }
}

.footer-section h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  margin-bottom: var(--space-md);
  color: var(--gold-soft);
}

.footer-section p {
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.7;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: var(--space-sm);
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-bottom {
  padding-top: var(--space-xl);
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-bottom a {
  color: var(--text-muted);
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(1.25rem);
  transition:
    opacity var(--dur-slow) var(--ease-out-quart),
    transform var(--dur-slow) var(--ease-out-quart);
  transition-delay: calc(var(--delay, 0) * 1ms);
}

.reveal.is-visible,
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  opacity: 0;
  transform: translateY(1rem);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(0.5rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}

/* Mobile sticky CTA */
.sticky-cta {
  display: none;
}

@media (max-width: 767px) {
  .sticky-cta {
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 900;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-lg);
    padding-bottom: max(var(--space-md), env(safe-area-inset-bottom));
    background: oklch(16% 0.03 48 / 0.96);
    border-top: 1px solid var(--border-strong);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 -8px 32px oklch(8% 0.02 40 / 0.5);
  }

  .sticky-cta .btn {
    flex: 1;
    padding: 0.75rem 1rem;
  }

  .sticky-cta {
    transition: transform 0.3s var(--ease-out), opacity 0.3s var(--ease-out);
  }

  .sticky-cta.sticky-cta--hidden {
    transform: translateY(110%);
    opacity: 0;
    pointer-events: none;
  }

  .landing-wrap {
    padding-bottom: 4.5rem;
  }
}

.path-card:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.product-card:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.faq-question:hover {
  color: var(--gold);
}

.faq-question:hover h4 {
  color: var(--text-primary);
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .fade-in {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .hero-ready .hero-copy > *,
  .hero-ready .hero-paths,
  .trust-marquee,
  .sticky-cta {
    transition: none;
  }

  .sticky-cta.sticky-cta--hidden {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .trust-marquee,
  .hero-orb,
  .cta-band::before,
  .activity-live-dot,
  .btn-shine::after {
    animation: none !important;
  }
  html {
    scroll-behavior: auto;
  }
  #particles {
    display: none;
  }
}
