/* UNLIMITIME™ — Apple-Grade V5 (Design System) */

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

:root {
  /* ─── Apple Color System ─── */
  --black: #1d1d1f;
  --white: #ffffff;
  --gray-100: #f5f5f7;
  --gray-200: #e8e8ed;
  --gray-300: #d2d2d7;
  --gray-400: #86868b;
  --gray-500: #6e6e73;
  --gray-600: #424245;
  --blue: #0071e3;
  --blue-hover: #0077ed;
  --blue-glow: rgba(0,113,227,0.4);
  --gold: #bf9b5e;
  --gold-light: #d4b07a;

  /* ─── Type Scale (Apple SF Pro / HIG) ─── */
  --t-mega: 56px;       /* Hero display */
  --t-display: 80px;    /* Page hero */
  --t-headline: 56px;   /* Section heading */
  --t-subhead: 40px;    /* Sub headline */
  --t-title: 32px;      /* Card title */
  --t-card: 24px;       /* Card */
  --t-body-lg: 21px;    /* Intro paragraph */
  --t-body: 17px;       /* Body */
  --t-caption: 14px;    /* Caption */
  --t-eyebrow: 12px;    /* Eyebrow / label */

  /* ─── 8px Grid Spacing ─── */
  --s-1: 8px;
  --s-2: 16px;
  --s-3: 24px;
  --s-4: 32px;
  --s-5: 40px;
  --s-6: 48px;
  --s-7: 56px;
  --s-8: 64px;
  --s-10: 80px;
  --s-12: 96px;
  --s-16: 128px;

  /* ─── Easing ─── */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
}

html { font-size: 16px; scroll-behavior: smooth; scroll-padding-top: 64px; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-feature-settings: "cv11", "ss01", "ss03";
  text-rendering: optimizeLegibility;
  color: var(--black); background: var(--white);
  line-height: 1.47; letter-spacing: -0.022em; overflow-x: hidden;
  font-feature-settings: 'liga' 1, 'calt' 1;
}

@supports (font-variation-settings: normal) {
  body { font-family: 'InterVariable', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; }
}

/* Page transition overlay */
.page-transition {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--white);
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s ease;
}
.page-transition.active { opacity: 1; pointer-events: all; }

a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }

/* Focus accessibility — Apple style */
:focus { outline: none; }
.btn:focus-visible,
.card:focus-visible,
.pricing-card:focus-visible,
.nav-links a:focus-visible,
.nav-logo:focus-visible,
.carousel-btn:focus-visible,
.carousel-dot:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
  border-radius: 10px;
  transition: outline-offset 0.2s var(--ease-out-expo);
}

/* ═══════ TYPOGRAPHY ═══════ */
.t-display {
  font-size: var(--t-display);
  font-weight: 600; line-height: 1.05; letter-spacing: -0.035em;
  text-wrap: balance;
}
@media (max-width: 833px) { .t-display { font-size: 56px; } }
@media (max-width: 600px) { .t-display { font-size: 48px; } }

.t-headline {
  font-size: var(--t-headline);
  font-weight: 600; line-height: 1.07; letter-spacing: -0.025em;
  text-wrap: balance;
}
@media (max-width: 833px) { .t-headline { font-size: 40px; } }
@media (max-width: 600px) { .t-headline { font-size: 32px; } }

.t-subhead {
  font-size: var(--t-subhead);
  font-weight: 600; line-height: 1.1; letter-spacing: -0.015em;
}
@media (max-width: 833px) { .t-subhead { font-size: 32px; } }
@media (max-width: 600px) { .t-subhead { font-size: 24px; } }

.t-card {
  font-size: var(--t-card);
  font-weight: 600; line-height: 1.17; letter-spacing: -0.01em;
}
@media (max-width: 600px) { .t-card { font-size: 21px; } }

.t-intro {
  font-size: var(--t-body-lg);
  font-weight: 400; line-height: 1.5; letter-spacing: 0.011em; color: var(--gray-500);
}
@media (max-width: 600px) { .t-intro { font-size: 17px; } }

.t-body {
  font-size: var(--t-body); font-weight: 400; line-height: 1.47;
  letter-spacing: -0.022em; color: var(--gray-500);
}

.t-caption { font-size: var(--t-caption); color: var(--gray-400); }

.t-eyebrow {
  font-size: var(--t-eyebrow); font-weight: 600; line-height: 1.33;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold);
}

.t-hero {
  font-size: var(--t-display);
  font-weight: 700; line-height: 1.05; letter-spacing: -0.045em;
}
@media (max-width: 833px) { .t-hero { font-size: 56px; } }
@media (max-width: 600px) { .t-hero { font-size: 48px; } }

.t-white { color: #fff; }
.t-center { text-align: center; }

/* Apple text helpers */
.t-muted { color: var(--gray-400); }
.t-soft { color: var(--gray-500); }
.t-blue { color: var(--blue); }
.t-white-soft { color: rgba(255,255,255,0.7); }

/* Stat number — silver gradient (used on dark backgrounds) */
.stat-num-silver {
  background: linear-gradient(135deg, #fff, var(--gray-300));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Hero subtitle override */
.hero-sub { color: var(--gray-400); }

/* Form full-width button */
.btn-full { width: 100%; }

/* Auto centering wrapper */
.mx-auto { margin-left: auto; margin-right: auto; }

/* Gradient headline — Apple signature */
.t-gradient {
  background: linear-gradient(135deg, var(--black) 0%, var(--gray-500) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Animated gradient text */
.t-gradient-animated {
  background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,0.6) 50%, #fff 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s ease-in-out infinite;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* ═══════ LAYOUT ═══════ */
.container { max-width: 980px; margin: 0 auto; padding: 0 24px; }
.container-lg { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

.section { padding: var(--s-16) 0; }
@media (max-width: 833px) { .section { padding: var(--s-12) 0; } }
@media (max-width: 600px) { .section { padding: var(--s-10) 0; } }
.section-sm { padding: var(--s-10) 0; }
@media (max-width: 600px) { .section-sm { padding: var(--s-6) 0; } }

/* Gradient dividers instead of hard borders */
.border-t {
  border: none;
  position: relative;
}
.border-t::before {
  content: '';
  position: absolute; top: 0; left: 50%;
  transform: translateX(-50%);
  width: min(100%, 600px); height: 1px;
  background: linear-gradient(90deg, transparent, var(--gray-200), transparent);
}

.max-600 { max-width: 600px; margin-left: auto; margin-right: auto; }
.max-680 { max-width: 680px; margin-left: auto; margin-right: auto; }
.max-780 { max-width: 780px; margin-left: auto; margin-right: auto; }

.mt-8 { margin-top: 8px; } .mt-12 { margin-top: 12px; } .mt-16 { margin-top: 16px; }
.mt-20 { margin-top: 20px; } .mt-24 { margin-top: 24px; } .mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; } .mt-48 { margin-top: 48px; } .mt-64 { margin-top: 48px; } .mt-80 { margin-top: 80px; }
.mb-16 { margin-bottom: 16px; } .mb-24 { margin-bottom: 24px; }

/* ═══════ NAV — Glassmorphism ═══════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 48px;
  background: rgba(255,255,255,0.72);
  backdrop-filter: saturate(180%) blur(20px); -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 0.5px solid rgba(0,0,0,0.06);
  transition: all 0.5s var(--ease-out-expo);
}
.nav.scrolled {
  box-shadow: 0 0.5px 0 rgba(0,0,0,0.04), 0 4px 16px rgba(0,0,0,0.04);
  background: rgba(255,255,255,0.82);
}

.nav-inner {
  max-width: 1440px; margin: 0 auto; padding: 0 40px;
  height: 100%; display: flex; align-items: center;
}
.nav-logo {
  font-size: 24px; font-weight: 700; letter-spacing: -0.04em; color: var(--black);
  text-decoration: none; white-space: nowrap;
  transition: opacity 0.3s;
}
.nav-logo:hover { opacity: 0.7; text-decoration: none; }
.nav-logo sup { font-size: 9px; font-weight: 500; color: var(--gray-400); }
.nav-logo img { height: 18px; width: auto; display: block; }

.nav-cta {
  font-size: 12px; font-weight: 500; color: var(--black);
  text-decoration: none; white-space: nowrap;
  margin-left: 24px;
  padding: 6px 14px; border-radius: 980px;
  background: rgba(0,0,0,0.04);
  transition: background 0.3s var(--ease-out-expo), color 0.3s var(--ease-out-expo);
}
.nav-cta:hover { background: var(--black); color: #fff; text-decoration: none; }
.nav.nav-dark .nav-cta { color: #fff; background: rgba(255,255,255,0.08); }
.nav.nav-dark .nav-cta:hover { background: #fff; color: var(--black); }
@media (max-width: 833px) { .nav-cta { display: none; } }

.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; margin-left: auto; }
.nav-links a {
  font-size: 12px; font-weight: 400; color: var(--gray-600);
  text-decoration: none; transition: color 0.3s;
  letter-spacing: -0.01em;
}
.nav-links a:hover { color: var(--black); text-decoration: none; }
.nav-links a.active { color: var(--black); font-weight: 500; }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 17px; height: 1px; background: var(--black); margin: 4px 0; transition: all 0.3s var(--ease-out-expo); }
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(3px,3px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(3px,-3px); }

@media (max-width: 833px) {
  .nav-links {
    display: none; position: absolute; top: 48px; left: 0; right: 0;
    background: rgba(255,255,255,0.98); backdrop-filter: blur(40px); -webkit-backdrop-filter: blur(40px);
    flex-direction: column; padding: 24px; gap: 20px; margin-left: 0;
    border-bottom: 0.5px solid rgba(0,0,0,0.06);
  }
  .nav-links.open { display: flex; animation: navSlideDown 0.4s var(--ease-out-expo); }
  .nav-toggle { display: block; }
  .nav-links a { font-size: 15px; }
}

@keyframes navSlideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ═══════ BUTTONS — Apple HIG ═══════ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  height: 44px;
  padding: 0 22px;
  font-size: 17px; font-weight: 500; letter-spacing: -0.03em;
  line-height: 1;
  border-radius: 980px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none; white-space: nowrap;
  transition: all 0.4s var(--ease-out-expo);
  position: relative;
}
.btn:hover { text-decoration: none; }
.btn:active { transform: scale(0.97); transition-duration: 0.1s; }

/* Primary — filled blue */
.btn-blue {
  background: var(--blue);
  color: #fff;
}
.btn-blue:hover {
  background: var(--blue-hover);
}

/* Primary — filled dark */
.btn-dark {
  background: var(--black);
  color: #fff;
}
.btn-dark:hover {
  background: #000;
}

/* Secondary — outlined Apple style */
.btn-outline {
  background: transparent;
  border-color: var(--blue);
  color: var(--blue);
}
.btn-outline:hover {
  background: var(--blue);
  color: #fff;
}

/* Gold variant */
.btn-gold { background: var(--gold); color: #fff; }
.btn-gold:hover { background: var(--gold-light); }

/* Text link with arrow (Apple style — same height as filled btn) */
.btn-link {
  background: none;
  border: none;
  padding: 0;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: var(--blue);
  font-size: 17px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.022em;
}
.btn-link::after {
  content: '\203A';
  font-size: 1.15em;
  line-height: 1;
  display: inline-block;
  transform: translateY(-1px);
  transition: transform 0.4s var(--ease-out-expo);
}
.btn-link:hover::after { transform: translate(4px, -1px); }
.btn-link:hover { text-decoration: none; opacity: 0.8; }

.btn-link-white { color: rgba(255,255,255,0.85); }
.btn-link-white:hover { color: #fff; opacity: 1; }

/* Sizes */
.btn-sm { height: 32px; padding: 0 16px; font-size: 14px; }
.btn-lg { height: 52px; padding: 0 28px; font-size: 17px; }
.btn-link.btn-lg { padding: 0; height: 52px; font-size: 19px; }

/* Row */
.btn-row {
  display: inline-flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
}
.btn-row-center {
  justify-content: center;
  display: flex;
}

/* ═══════ HERO HOME — Cinematic dark ═══════ */
.hero-home {
  min-height: 100dvh;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; padding: 80px 48px 48px; gap: 48px;
}
.hero-home-text { max-width: 560px; margin-left: auto; }
.hero-home-img { display: flex; align-items: center; justify-content: center; }
.hero-home-img img {
  max-width: 700px; width: 100%;
  filter: drop-shadow(0 40px 80px rgba(0,0,0,0.1));
}

@media (max-width: 833px) {
  .hero-home { grid-template-columns: 1fr; text-align: center; padding: 120px 24px 48px; min-height: auto; }
  .hero-home-text { margin: 0 auto; }
  .hero-home-img img { max-width: 360px; margin: 0 auto; }
  .hero-home .btn-row { justify-content: center; }
}

/* ═══════ MEGA TITLE ═══════ */
.t-mega {
  font-size: var(--t-mega);
  font-weight: 600; line-height: 1.05; letter-spacing: -0.035em;
  color: var(--black); text-align: center;
  text-wrap: balance;
}
@media (max-width: 833px) { .t-mega { font-size: 44px; } }
@media (max-width: 600px) { .t-mega { font-size: 34px; } }

/* ═══════ HERO CENTERED — Cinematic Apple style ═══════ */
.hero-centered {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 140px 24px 0; overflow: hidden;
  background: #000;
  position: relative;
}

/* Subtle radial glow behind hero */
.hero-centered::before {
  content: '';
  position: absolute; top: 20%; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 600px;
  background: radial-gradient(ellipse, rgba(191,155,94,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-centered .t-mega {
  color: #fff;
}

.hero-centered .t-intro {
  color: var(--gray-400);
}

.hero-centered .t-eyebrow {
  color: var(--gold);
}

/* Pill badge */
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px; border-radius: 980px;
  border: 1px solid rgba(255,255,255,0.12); background: rgba(255,255,255,0.05);
  font-size: 14px; font-weight: 500; color: var(--gold);
  margin-bottom: 32px;
  backdrop-filter: blur(10px);
}

.pill-dot {
  width: 8px; height: 8px; border-radius: 50%; background: #34c759;
  box-shadow: 0 0 8px rgba(52,199,89,0.5);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(0.85); }
}

/* Counter badge in hero */
.hero-counter {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 20px; border-radius: 980px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  margin-top: 28px; font-size: 14px;
}

.hero-counter-dot {
  width: 8px; height: 8px; border-radius: 50%; background: #34c759;
  box-shadow: 0 0 8px rgba(52,199,89,0.5);
  animation: pulse 2s ease-in-out infinite;
}

.hero-counter-label {
  font-size: 11px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--gray-400);
}

.hero-counter-num {
  font-size: 20px; font-weight: 700; letter-spacing: -0.02em; color: #fff;
}

/* Watch sits in hero — Apple style, no gradient transition */
.hero-watch-flow {
  margin-top: 48px; position: relative; width: 100%;
  display: flex; justify-content: center;
  padding-bottom: 80px;
}

.hero-watch-flow img {
  max-width: 800px; width: 95%;
  filter: drop-shadow(0 40px 80px rgba(0,0,0,0.25));
  transition: transform 0.3s var(--ease-out-expo);
}

@media (max-width: 600px) {
  .hero-centered { padding-top: 100px; }
  .hero-watch-flow img { max-width: 300px; }
}

/* ═════��═ ROADMAP (Road Ahead) — Apple style ═══════ */
.roadmap-section {
  padding: 140px 0 120px;
  background: linear-gradient(180deg, #000 0%, #0d0d0d 40%, #111 60%, #0a0a0a 100%);
  position: relative;
  overflow: hidden;
}
.roadmap-section::before {
  content: '';
  position: absolute;
  top: -100px; left: 50%; transform: translateX(-50%);
  width: 800px; height: 800px;
  background: radial-gradient(ellipse, rgba(0,113,227,0.06) 0%, rgba(191,155,94,0.03) 40%, transparent 70%);
  pointer-events: none;
}
.roadmap-section::after {
  content: '';
  position: absolute;
  bottom: -200px; left: 50%; transform: translateX(-50%);
  width: 1000px; height: 400px;
  background: radial-gradient(ellipse, rgba(191,155,94,0.04) 0%, transparent 70%);
  pointer-events: none;
}

/* Progress bar */
.roadmap-progress {
  max-width: 700px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(20px);
  transition: all 1s var(--ease-out-expo);
}
.roadmap-progress.roadmap-in {
  opacity: 1;
  transform: translateY(0);
}
.roadmap-progress-track {
  height: 2px;
  background: rgba(255,255,255,0.06);
  border-radius: 2px;
  position: relative;
  overflow: visible;
}
.roadmap-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--blue), var(--gold));
  border-radius: 2px;
  position: relative;
  transition: width 1.5s var(--ease-out-expo);
}
.roadmap-progress-fill::after {
  content: '';
  position: absolute;
  right: -5px; top: 50%; transform: translateY(-50%);
  width: 10px; height: 10px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 16px var(--gold), 0 0 40px rgba(191,155,94,0.25);
  animation: roadmap-glow-pulse 2.5s ease-in-out infinite;
}
@keyframes roadmap-glow-pulse {
  0%, 100% { box-shadow: 0 0 16px var(--gold), 0 0 40px rgba(191,155,94,0.25); }
  50% { box-shadow: 0 0 24px var(--gold), 0 0 60px rgba(191,155,94,0.4); }
}
.roadmap-progress-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 16px;
}
.roadmap-progress-label {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.15);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.6s ease, text-shadow 0.6s ease;
}
.roadmap-progress-label.active {
  color: rgba(255,255,255,0.55);
  text-shadow: 0 0 20px rgba(255,255,255,0.08);
}

/* Cards row */
.roadmap-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.roadmap-card {
  position: relative;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 28px;
  padding: 40px 32px 72px;
  text-align: left;
  overflow: hidden;
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  opacity: 0;
  filter: blur(10px);
  transform: translateY(50px) scale(0.96);
  transition: opacity 0.9s var(--ease-out-expo),
              filter 1s var(--ease-out-expo),
              transform 0.15s ease,
              background 0.4s ease,
              border-color 0.4s ease,
              box-shadow 0.4s ease;
  transform-style: preserve-3d;
  will-change: transform;
}
.roadmap-card.roadmap-in {
  opacity: 1;
  filter: blur(0px);
  transform: translateY(0) scale(1);
}
.roadmap-card:hover {
  background: rgba(255,255,255,0.06);
  border-color: transparent;
  box-shadow:
    0 40px 80px rgba(0,0,0,0.5),
    0 0 0 1px rgba(255,255,255,0.05) inset,
    0 1px 0 rgba(255,255,255,0.06) inset;
}

/* Animated border glow: removed (Apple-grade simplification) */

/* Glow on card — follows cursor */
.roadmap-card-glow {
  position: absolute;
  top: -60px; right: -60px;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(0,113,227,0.15) 0%, rgba(191,155,94,0.05) 40%, transparent 70%);
  pointer-events: none;
  transition: width 0.3s ease, height 0.3s ease, opacity 0.4s ease;
  opacity: 0;
}
.roadmap-card:hover .roadmap-card-glow {
  opacity: 1;
  width: 240px; height: 240px;
}
.roadmap-glow-dim { opacity: 0 !important; }

/* Big number — counter roll */
.roadmap-big-num {
  font-size: 72px;
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 1;
  display: flex;
  height: 72px;
  overflow: hidden;
  gap: 0;
}
.roadmap-big-num .roll-digit {
  display: inline-block;
  background: linear-gradient(180deg, rgba(255,255,255,0.55) 0%, rgba(255,255,255,0.18) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: background 0.4s ease;
}
.roadmap-big-num .roll-wrap {
  display: inline-flex;
  flex-direction: column;
  transform: translateY(0);
  transition: transform 0.9s var(--ease-out-expo);
}
.roadmap-card.roadmap-in .roll-wrap {
  transform: translateY(var(--roll-to));
}
.roadmap-card:hover .roll-digit {
  background: linear-gradient(180deg, rgba(255,255,255,0.7) 0%, rgba(255,255,255,0.25) 100%);
  -webkit-background-clip: text;
  background-clip: text;
}
.roadmap-num-dim .roll-digit {
  background: linear-gradient(180deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0.06) 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

/* Badge — minimal Apple style */
.roadmap-badge-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
}
.roadmap-badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 10px rgba(0,113,227,0.5);
  animation: roadmap-dot-breathe 3s ease-in-out infinite;
}
.roadmap-dot-gray {
  background: rgba(255,255,255,0.2);
  box-shadow: none;
  animation: none;
}
@keyframes roadmap-dot-breathe {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.roadmap-badge-text {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
}

/* Title & desc */
.roadmap-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  margin-top: 16px;
  letter-spacing: -0.025em;
}
.roadmap-desc {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255,255,255,0.4);
  margin-top: 12px;
  transition: color 0.4s ease;
}
.roadmap-card:hover .roadmap-desc {
  color: rgba(255,255,255,0.55);
}

/* Card icon (bottom right) — subtle watermark */
.roadmap-card-icon {
  position: absolute;
  bottom: 28px; right: 28px;
  width: 36px; height: 36px;
  opacity: 0.08;
  transition: all 0.5s ease;
}
.roadmap-card-icon svg {
  width: 100%; height: 100%;
  stroke: var(--white);
}
.roadmap-card:hover .roadmap-card-icon {
  opacity: 0.2;
  transform: scale(1.1);
}

/* Conditioned phase — clearly separated */
.roadmap-conditioned {
  display: flex;
  justify-content: center;
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s var(--ease-out-expo) 0.5s;
}
.roadmap-conditioned.roadmap-in {
  opacity: 1;
  transform: translateY(0);
}
.roadmap-card-locked {
  max-width: 360px;
  width: 100%;
  border: 1px dashed rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.02);
  padding: 32px 28px 56px;
}
.roadmap-card-locked:hover {
  border-color: rgba(255,255,255,0.12);
  border-style: dashed;
  background: rgba(255,255,255,0.03);
}
.roadmap-card-locked::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 28px;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 10px,
    rgba(255,255,255,0.008) 10px,
    rgba(255,255,255,0.008) 20px
  );
  pointer-events: none;
}

/* Responsive */
@media (max-width: 900px) {
  .roadmap-section { padding: 80px 0; }
  .roadmap-row { grid-template-columns: 1fr; gap: 16px; }
  .roadmap-card { padding: 32px 24px 60px; border-radius: 22px; }
  .roadmap-big-num { font-size: 44px; }
  .roadmap-card-locked { max-width: 100%; }
  .roadmap-section::before { width: 400px; height: 400px; }
  .roadmap-section::after { display: none; }
  .roadmap-card:hover { transform: translateY(-4px) scale(1); }
}

/* ═══════ COUNTER ═══════ */
.counter-section {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}

.counter-label {
  font-size: 15px; color: var(--gray-400); margin-top: 10px; letter-spacing: -0.01em;
}

.counter-num {
  font-size: clamp(64px, 10vw, 120px);
  font-weight: 700; letter-spacing: -0.05em; line-height: 1;
  font-variant-numeric: tabular-nums;
  background: linear-gradient(135deg, var(--black), var(--gray-500));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* ═══════ STATS ═══════ */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }

.stat-item {
  text-align: center; padding: 48px 20px; border-radius: 24px;
  background: var(--gray-100);
  transition: transform 0.6s var(--ease-out-expo), box-shadow 0.6s var(--ease-out-expo);
}
.stat-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
}

.stat-num {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700; letter-spacing: -0.04em; line-height: 1;
}
.stat-label { font-size: 14px; color: var(--gray-400); margin-top: 12px; }

@media (max-width: 600px) { .stats { grid-template-columns: 1fr 1fr; } }
@media (max-width: 400px) { .stats { grid-template-columns: 1fr; } }

/* ═══════ SHOWCASE ═══════ */
.showcase { padding: var(--s-16) 0; }
@media (max-width: 833px) { .showcase { padding: var(--s-12) 0; } }
@media (max-width: 600px) { .showcase { padding: var(--s-10) 0; } }
.showcase-inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(48px, 6vw, 96px); align-items: center; }
.showcase-reverse .showcase-inner { direction: rtl; }
.showcase-reverse .showcase-inner > * { direction: ltr; }

.showcase-img {
  display: flex; align-items: center; justify-content: center;
  background: var(--gray-100); border-radius: 32px;
  padding: clamp(40px, 5vw, 64px); min-height: 400px;
  position: relative; overflow: hidden;
  transition: transform 0.6s var(--ease-out-expo);
}

.showcase-img:hover { transform: scale(1.02); }

/* Subtle shimmer effect on showcase */
.showcase-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.5) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0s;
}
.showcase-img.shimmer::after {
  transform: translateX(100%);
  transition: transform 1.2s var(--ease-out-expo);
}

.showcase-img img {
  max-width: 300px; width: 100%;
  filter: drop-shadow(0 20px 48px rgba(0,0,0,0.08));
}

@media (max-width: 833px) {
  .showcase-inner { grid-template-columns: 1fr; }
  .showcase-reverse .showcase-inner { direction: ltr; }
  .showcase-img { min-height: 300px; }
}

/* ═══════ CARDS — 3D hover ═══════ */
.grid { display: grid; gap: 16px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 833px) { .grid-2, .grid-3 { grid-template-columns: 1fr; } }

.card {
  background: var(--gray-100); border-radius: 20px;
  padding: clamp(28px, 3.5vw, 40px);
  border: 1px solid rgba(0,0,0,0.04);
  box-shadow: 0 1px 2px rgba(0,0,0,0.03);
  transition: transform 0.6s var(--ease-out-expo), box-shadow 0.6s var(--ease-out-expo);
  will-change: transform;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 1px 2px rgba(0,0,0,0.04),
    0 8px 24px rgba(0,0,0,0.06),
    0 32px 64px rgba(0,0,0,0.08);
}

.card-bordered {
  background: var(--white); border: 1px solid var(--gray-200);
}
.card-bordered:hover { border-color: var(--gray-300); box-shadow: 0 20px 60px rgba(0,0,0,0.08); }

.card-num {
  font-size: 48px; font-weight: 700; line-height: 1;
  background: linear-gradient(135deg, var(--gray-200), var(--gray-300));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* ═══════ QUOTE ═══════ */
.section-quote { padding: var(--s-16) 0; background: var(--gray-100); }
@media (max-width: 833px) { .section-quote { padding: var(--s-12) 0; } }
@media (max-width: 600px) { .section-quote { padding: var(--s-10) 0; } }
.quote-mark {
  font-size: 96px; font-weight: 700; line-height: 0.5;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* ═══════ CAROUSEL ═══════ */
.carousel { position: relative; overflow: hidden; }
.carousel-track { position: relative; }

.carousel-slide {
  display: none;
  animation: carouselFadeIn 0.9s var(--ease-out-expo);
}
.carousel-slide.active {
  display: block;
}

/* Slide inner layout: image + text side by side */
.carousel-slide-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  align-items: center; padding: 0 24px;
}
.carousel-slide-inner .carousel-img {
  display: flex; justify-content: center; align-items: center;
  background: var(--gray-100); border-radius: 28px;
  padding: 32px; min-height: 380px;
  transition: transform 0.6s var(--ease-out-expo);
}
.carousel-slide-inner .carousel-img:hover { transform: scale(1.03) rotate(-1deg); }
.carousel-slide-inner .carousel-img img {
  max-width: 260px; width: 100%; height: auto;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.12));
  transition: transform 0.6s var(--ease-out-expo);
}
.carousel-slide-inner .carousel-img:hover img { transform: scale(1.05); }
.carousel-text { text-align: left; }

/* Spec badges */
.carousel-specs { display: flex; gap: 8px; flex-wrap: wrap; }
.carousel-spec {
  font-size: 11px; font-weight: 600; letter-spacing: 0.03em;
  padding: 5px 12px; border-radius: 980px;
  border: 1px solid var(--gray-200); color: var(--gray-500);
  background: var(--white);
  transition: all 0.3s var(--ease-out-expo);
}
.carousel-spec:hover { border-color: var(--blue); color: var(--blue); }

@media (max-width: 833px) {
  .carousel-slide-inner { grid-template-columns: 1fr; gap: 24px; }
  .carousel-text { text-align: center; }
  .carousel-specs { justify-content: center; }
  .carousel-slide-inner .carousel-img { min-height: 280px; padding: 24px; }
  .carousel-slide-inner .carousel-img img { max-width: 200px; }
}

/* Legacy fallback for non-slide-inner images */
.carousel-img:not(.carousel-slide-inner .carousel-img) {
  display: flex; justify-content: center; align-items: center;
  height: 480px;
  max-width: 720px;
  margin: 0 auto;
  background: transparent;
  border-radius: 0;
  padding: 48px;
  position: relative;
  overflow: visible;
}
.carousel-img:not(.carousel-slide-inner .carousel-img) img {
  width: auto; height: 100%; max-width: 100%;
  object-fit: contain;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 24px 40px rgba(0,0,0,0.18));
  border-radius: 20px;
}

@keyframes carouselFadeIn {
  0% { opacity: 0; transform: translateY(12px); }
  100% { opacity: 1; transform: translateY(0); }
}
.carousel-controls { display: flex; align-items: center; justify-content: center; gap: 24px; margin-top: 32px; }
.carousel-btn {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--gray-200); background: var(--white);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all 0.4s var(--ease-out-expo);
}
.carousel-btn:hover { border-color: var(--black); box-shadow: 0 4px 16px rgba(0,0,0,0.08); transform: scale(1.08); }
.carousel-btn svg { width: 18px; height: 18px; stroke: var(--gray-500); }
.carousel-prev, .carousel-next { /* extends .carousel-btn */ }
.carousel-dots { display: flex; gap: 6px; }
.carousel-dot {
  width: 8px; height: 8px; border-radius: 4px;
  background: rgba(0,0,0,0.18); transition: all 0.4s var(--ease-out-expo); cursor: pointer;
}
.carousel-dot:hover { background: rgba(0,0,0,0.4); }
.carousel-dot.active { width: 28px; background: var(--black); }

/* ═══════ ECOSYSTEM FLOW ═══════ */
.eco-flow { display: flex; align-items: center; justify-content: center; gap: 8px; flex-wrap: wrap; }
.eco-step { text-align: center; padding: 20px 16px; min-width: 140px; }
.eco-num { font-size: 12px; font-weight: 600; color: var(--blue); letter-spacing: 0.04em; }
.eco-label { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--black); margin-top: 4px; }
.eco-desc { font-size: 13px; color: var(--gray-500); margin-top: 4px; }
.eco-arrow { display: flex; align-items: center; }
.eco-arrow svg { width: 20px; height: 20px; stroke: var(--gray-300); }
@media (max-width: 700px) { .eco-flow { flex-direction: column; } .eco-arrow svg { transform: rotate(90deg); } }

/* Ecosystem card elements */
.eco-tiers { display: flex; flex-direction: column; gap: 8px; }
.eco-tier {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 0; border-top: 1px solid var(--gray-200);
  transition: padding-left 0.3s var(--ease-out-expo);
}
.eco-tier:hover { padding-left: 4px; }
.eco-tier-name { font-size: 15px; font-weight: 500; }
.eco-tier-price { font-size: 14px; color: var(--blue); text-decoration: none; }
.eco-tier-price:hover { text-decoration: underline; }

.eco-mini-stats { display: flex; flex-direction: column; gap: 6px; }
.eco-mini-stats span { font-size: 13px; color: var(--gray-500); padding-left: 14px; position: relative; }
.eco-mini-stats span::before { content: ''; position: absolute; left: 0; top: 7px; width: 5px; height: 5px; border-radius: 50%; background: var(--blue); }

.eco-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.eco-tag {
  font-size: 12px; font-weight: 500; padding: 4px 12px; border-radius: 980px;
  border: 1px solid var(--gray-200); color: var(--gray-500);
  transition: all 0.3s var(--ease-out-expo);
}
.eco-tag:hover { border-color: var(--blue); color: var(--blue); }

/* Block number */
.card-block-num { font-size: 11px; font-weight: 700; letter-spacing: 0.06em; color: var(--blue); text-transform: uppercase; }

/* ═══════ 99 CRITERIA BLOCKS GRID ═══════ */
.blocks-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.block-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 28px 20px;
  text-align: center;
  transition: all 0.4s var(--ease-out-expo);
}
.block-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.12);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.block-icon {
  width: 32px;
  height: 32px;
  margin: 0 auto 16px;
  stroke: var(--blue);
  opacity: 0.9;
}
.block-card:hover .block-icon { opacity: 1; stroke: var(--gold); }
.block-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin-top: 8px;
  letter-spacing: -0.01em;
}
.block-desc {
  font-size: 12px;
  color: var(--gray-400);
  margin-top: 6px;
  line-height: 1.5;
  letter-spacing: 0.01em;
}

/* Blocks summary bar */
.blocks-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.blocks-summary-num {
  font-size: 28px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: -0.02em;
}
.blocks-summary-label {
  font-size: 14px;
  color: var(--gray-400);
  margin-left: 4px;
  font-weight: 500;
}
.blocks-summary-divider {
  width: 1px;
  height: 24px;
  background: rgba(255,255,255,0.12);
  margin: 0 8px;
}

@media (max-width: 900px) {
  .blocks-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .blocks-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .block-card { padding: 20px 16px; }
  .block-icon { width: 28px; height: 28px; }
}

/* ═══════ HIGHLIGHT CARD ═══════ */
.highlight-card {
  display: inline-block; padding: 48px 64px; border-radius: 24px;
  background: linear-gradient(135deg, var(--blue), #0058b0);
  color: #fff;
  box-shadow: 0 20px 60px rgba(0,113,227,0.2);
  transition: transform 0.6s var(--ease-out-expo), box-shadow 0.6s var(--ease-out-expo);
}
.highlight-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 30px 80px rgba(0,113,227,0.3);
}
.highlight-num { font-size: clamp(36px, 5vw, 56px); font-weight: 700; letter-spacing: -0.04em; line-height: 1; }
.highlight-card .t-body { color: rgba(255,255,255,0.8); }

/* ═══════ STAT SOURCE ═══════ */
.stat-source { margin-top: 6px; }
.stat-source a { font-size: 11px; color: var(--gray-400); text-decoration: none; font-style: italic; }
.stat-source a:hover { color: var(--blue); text-decoration: underline; }

/* ═══════ PRICING ═══════ */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 833px) { .pricing-grid { grid-template-columns: 1fr; } }

.pricing-card {
  position: relative;
  border-radius: 20px; padding: 40px 28px; text-align: center;
  background: var(--gray-100);
  border: 1px solid rgba(0,0,0,0.04);
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
  transition: transform 0.6s var(--ease-out-expo), box-shadow 0.6s var(--ease-out-expo);
}
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 1px 2px rgba(0,0,0,0.04),
    0 8px 24px rgba(0,0,0,0.06),
    0 32px 64px rgba(0,0,0,0.08);
}

.pricing-card-accent { background: var(--black); color: #fff; border-color: rgba(255,255,255,0.08); }
.pricing-card-accent .pricing-name, .pricing-card-accent .pricing-amt { color: #fff; }
.pricing-card-accent .pricing-list li { border-color: rgba(255,255,255,0.08); color: var(--gray-300); }
.pricing-card-accent .pricing-tier { color: var(--gold); }
.pricing-card-accent:hover {
  box-shadow:
    0 1px 2px rgba(0,0,0,0.2),
    0 8px 24px rgba(0,0,0,0.18),
    0 32px 64px rgba(0,0,0,0.16);
}

.pricing-tier { font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gray-400); }
.pricing-name { font-size: 24px; font-weight: 600; letter-spacing: -0.02em; margin-top: 4px; }
.pricing-amt { font-size: 44px; font-weight: 700; letter-spacing: -0.04em; margin-top: 20px; }
.pricing-per { font-size: 14px; color: var(--gray-400); margin-top: 4px; }

.pricing-list { list-style: none; margin-top: 28px; text-align: left; }
.pricing-list li {
  font-size: 14px; color: var(--gray-500);
  padding: 10px 0 10px 16px; border-top: 1px solid var(--gray-200); position: relative;
}
.pricing-list li::before {
  content: ''; position: absolute; left: 0; top: 50%;
  width: 5px; height: 5px; border-radius: 50%; background: var(--gold); transform: translateY(-50%);
}

.pricing-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  background: var(--gold); color: #fff;
  padding: 4px 14px; border-radius: 980px;
  white-space: nowrap;
  z-index: 1;
}

/* ═══════ CTA ═══════ */
.section-cta {
  padding: var(--s-16) 0;
  background: var(--gray-100);
  position: relative;
  overflow: hidden;
}
@media (max-width: 833px) { .section-cta { padding: var(--s-12) 0; } }
@media (max-width: 600px) { .section-cta { padding: var(--s-10) 0; } }
/* Subtle gradient overlay */
.section-cta::before {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 200px;
  background: linear-gradient(180deg, transparent, rgba(245,245,247,0.8));
  pointer-events: none;
}
.cta-img { max-width: 600px; margin: 0 auto; }
.cta-img img { width: 100%; filter: drop-shadow(0 20px 60px rgba(0,0,0,0.08)); }

/* ═══════ STEPS ═══════ */
.steps, .steps-animated { counter-reset: step; }
.step {
  display: grid; grid-template-columns: 64px 1fr; gap: 24px;
  padding: 32px 0; border-top: 1px solid var(--gray-200);
  counter-increment: step; align-items: start; position: relative;
}
.step-num { font-size: 40px; font-weight: 700; color: var(--gray-300); letter-spacing: -0.04em; line-height: 1; }
.step-num::before { content: counter(step, decimal-leading-zero); }
.step.anim .step-num { opacity: 0; transform: scale(0.8); transition: opacity 0.5s var(--ease-out-expo) 0.1s, transform 0.5s var(--ease-out-expo) 0.1s; }
.step.anim.in .step-num { opacity: 1; transform: scale(1); }
.step-line { position: absolute; left: 31px; top: 0; bottom: 0; width: 1px; background: var(--gray-200); transform-origin: top; transform: scaleY(0); transition: transform 0.8s var(--ease-out-expo) 0.2s; }
.step.anim.in .step-line { transform: scaleY(1); }
@media (max-width: 600px) { .step { grid-template-columns: 1fr; gap: 12px; } .step-line { display: none; } }

/* ═══════ ACCORDION ═══════ */
.acc-item { border-top: 1px solid var(--gray-200); }
.acc-btn {
  width: 100%; background: none; border: none;
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0; font-size: 17px; font-weight: 500; color: var(--black);
  cursor: pointer; font-family: inherit; text-align: left;
  transition: color 0.3s;
}
.acc-btn:hover { color: var(--blue); }
.acc-btn::after { content: '+'; font-size: 22px; font-weight: 300; color: var(--gray-400); transition: transform 0.4s var(--ease-out-expo), color 0.3s; }
.acc-item.open .acc-btn::after { transform: rotate(45deg); color: var(--blue); }
.acc-body { max-height: 0; overflow: hidden; transition: max-height 0.5s var(--ease-out-expo); }
.acc-item.open .acc-body { max-height: 400px; }
.acc-content { padding-bottom: 20px; font-size: 15px; color: var(--gray-500); line-height: 1.53; }

/* ═══════ TABLE ═══════ */
.cmp-table { width: 100%; border-collapse: collapse; }
.cmp-table th { font-size: 11px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gray-400); text-align: left; padding: 14px 16px; border-bottom: 1px solid var(--gray-200); }
.cmp-table td { font-size: 14px; color: var(--gray-500); padding: 14px 16px; border-bottom: 1px solid var(--gray-200); transition: background 0.3s; }
.cmp-table tr:hover td { background: var(--gray-100); }
.cmp-table tr:last-child td { border-bottom: none; }
.cmp-table .hl { font-weight: 600; color: var(--black); }

/* ═══════ FORMS ═══════ */
.form-group { margin-bottom: 16px; }
.form-label { display: block; font-size: 13px; font-weight: 500; color: var(--black); margin-bottom: 6px; }
.form-input, .form-select, .form-textarea {
  width: 100%; font-size: 17px; font-family: inherit;
  padding: 12px 16px; border: 1px solid var(--gray-300);
  border-radius: 16px; background: #fff; color: var(--black);
  transition: border-color 0.3s var(--ease-out-expo), box-shadow 0.3s var(--ease-out-expo);
  outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(0,113,227,0.12), inset 0 0 0 1px var(--blue);
}
.form-input:hover, .form-select:hover, .form-textarea:hover {
  border-color: var(--gray-400);
}
.form-textarea { resize: vertical; min-height: 100px; }
.form-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 12 12'%3E%3Cpath fill='%2386868b' d='M6 8L1 3h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

/* ═══════ FOOTER ═══════ */
.footer { border-top: none; padding: 48px 0 24px; font-size: 12px; color: var(--gray-400); position: relative; }
.footer::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: min(100%, 600px); height: 1px;
  background: linear-gradient(90deg, transparent, var(--gray-200), transparent);
}
.footer-inner { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.footer-grid { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 32px; padding-bottom: 24px; border-bottom: 1px solid var(--gray-200); }
.footer-logo { font-size: 18px; font-weight: 700; letter-spacing: -0.03em; color: var(--black); text-decoration: none; display: block; }
.footer-col h4 { font-size: 12px; font-weight: 600; color: var(--black); margin-bottom: 10px; }
.footer-col ul { list-style: none; } .footer-col li { margin-bottom: 6px; }
.footer-col a { font-size: 12px; color: var(--gray-400); text-decoration: none; transition: color 0.3s; } .footer-col a:hover { color: var(--black); text-decoration: none; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 16px; flex-wrap: wrap; gap: 12px; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 12px; color: var(--gray-400); text-decoration: none; transition: color 0.3s; } .footer-legal a:hover { color: var(--black); text-decoration: none; }

/* ═══════ ANIMATIONS ═══════ */

/* Base — element hidden */
.anim {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.6s var(--ease-out-expo),
              transform 0.6s var(--ease-out-expo);
}

/* Revealed */
.anim.in {
  opacity: 1; transform: translateY(0);
}

/* Stagger delays */
.anim-d1 { transition-delay: 0.1s; }
.anim-d2 { transition-delay: 0.2s; }
.anim-d3 { transition-delay: 0.3s; }
.anim-d4 { transition-delay: 0.4s; }

/* Scale variant — for product images */
.anim-scale {
  opacity: 0; transform: scale(0.95);
  transition: opacity 0.8s var(--ease-out-expo),
              transform 0.8s var(--ease-out-expo);
}
.anim-scale.in { opacity: 1; transform: scale(1); }

/* Scroll progress bar at top */
.scroll-progress {
  position: fixed; top: 48px; left: 0; right: 0; z-index: 999;
  height: 2px; background: transparent;
}
.scroll-progress-bar {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--blue));
  transition: width 0.05s linear;
  border-radius: 0 1px 1px 0;
}

/* ═══════ DARK VARIANTS (subpages) ═══════ */
.bg-dark { background: var(--black); }
.bg-dark .t-headline, .bg-dark .t-hero { color: #fff; }
.bg-dark .t-intro { color: var(--gray-300); }
.bg-gray { background: var(--gray-100); }

.hero {
  min-height: 100dvh; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 68px 24px 48px;
  position: relative; overflow: hidden;
}
.hero-dark { background: #000; }
.hero-dark .t-hero, .hero-dark .t-headline { color: #fff; }
.hero-dark .t-intro { color: var(--gray-300); }
.hero-fg { position: relative; z-index: 1; max-width: 820px; }

.hero-watch { position: relative; z-index: 1; margin-top: 56px; display: flex; justify-content: center; }
.hero-watch img { max-width: 780px; width: 95%; filter: drop-shadow(0 50px 100px rgba(0,0,0,0.6)); }
@media (max-width: 600px) { .hero-watch img { max-width: 380px; } }

.scroll-hint { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); animation: drift 2.4s ease-in-out infinite; }
.scroll-hint svg { width: 28px; height: 28px; stroke: var(--gray-300); fill: none; stroke-width: 1.2; stroke-linecap: round; }
@keyframes drift { 0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; } 50% { transform: translateX(-50%) translateY(8px); opacity: 0.4; } }

/* ═══════ DARK SECTIONS — Apple alternation ═══════ */
.section-dark {
  padding: var(--s-16) 0;
  background: #000;
  position: relative;
  overflow: hidden;
}
@media (max-width: 833px) { .section-dark { padding: var(--s-12) 0; } }
@media (max-width: 600px) { .section-dark { padding: var(--s-10) 0; } }

/* Grain texture overlay */
.section-dark::after,
.hero-centered::after {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  background-repeat: repeat;
  pointer-events: none;
  z-index: 0;
}

.section-dark > * { position: relative; z-index: 1; }
.hero-centered > * { position: relative; z-index: 1; }

/* Dark stat cards */
.stat-item-dark {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
}
.stat-item-dark:hover {
  background: rgba(255,255,255,0.06);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}
.stat-item-dark .stat-label { color: var(--gray-400); }
.stat-item-dark .stat-source a { color: var(--gray-500); }

/* Dark cards */
.card-dark {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
}
.card-dark:hover {
  background: rgba(255,255,255,0.06);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  border-color: rgba(255,255,255,0.1);
}

/* ═══════ DARK FOOTER — Premium ═══════ */
.footer-dark {
  background: #000;
  border-top: none;
  color: var(--gray-500);
}
.footer-dark::before {
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent);
}
.footer-dark .footer-grid { border-bottom-color: rgba(255,255,255,0.06); }
.footer-dark .footer-logo { color: #fff; }
.footer-dark .footer-col h4 { color: var(--gray-300); }
.footer-dark .footer-col a { color: var(--gray-500); }
.footer-dark .footer-col a:hover { color: #fff; }
.footer-dark .footer-bottom p { color: var(--gray-500); }
.footer-dark .footer-legal a { color: var(--gray-500); }
.footer-dark .footer-legal a:hover { color: #fff; }
.footer-dark .t-caption { color: var(--gray-500); }

/* ═══════ NAV DARK MODE ═══════ */
.nav.nav-dark {
  background: rgba(0,0,0,0.72);
  border-bottom-color: rgba(255,255,255,0.06);
}
.nav.nav-dark.scrolled {
  background: rgba(0,0,0,0.82);
  box-shadow: 0 0.5px 0 rgba(255,255,255,0.04), 0 4px 16px rgba(0,0,0,0.2);
}
.nav.nav-dark .nav-logo { color: #fff; }
.nav.nav-dark .nav-links a { color: var(--gray-400); }
.nav.nav-dark .nav-links a:hover { color: #fff; }
.nav.nav-dark .nav-links a.active { color: #fff; }
.nav.nav-dark .nav-toggle span { background: #fff; }

/* ═══════ PREFERS REDUCED MOTION ═══════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .anim, .anim-scale { opacity: 1; transform: none; filter: none; }
  .hero-watch-flow img { transform: none !important; }
}

/* ═══════ SELECTION ═══════ */
::selection { background: rgba(0,113,227,0.15); color: var(--black); }

/* ═══════ REDUCED MOTION — accessibility (Apple HIG) ═══════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .anim, .anim-scale { opacity: 1 !important; transform: none !important; }
}

/* ═══════ CRISP IMAGES ═══════ */
img { image-rendering: -webkit-optimize-contrast; }
