/* =====================================================
   SPRED LANDING PAGE — styles.css
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@400;500;600;700&display=swap');

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* ── SPRED Brand Tokens (from SpredTokens.ts) ── */
  --orange:    #F45303;   /* primary[500] — main brand orange */
  --orange-lt: #FB7A3C;   /* primary[400] */
  --orange-dk: #E04502;   /* primary[600] — hover */
  --amber:     #D69E2E;   /* secondary[500] — deep amber accent */
  --amber-lt:  #EAAF4D;   /* secondary[400] */
  --amber-dk:  #C8932A;   /* secondary[600] — hover */
  --grey:      #8B8B8B;   /* accent[500] */
  --grey-lt:   #9A9A9A;   /* accent[400] */
  --grey-dk:   #6A6A6A;   /* accent[600] */

  /* ── Semantic Backgrounds ── */
  --bg:        #1A1A1A;   /* background.primary */
  --bg-2:      #2A2A2A;   /* background.secondary */
  --bg-card:   #2A2A2A;   /* card.background */
  --bg-card-2: #3A3A3A;   /* background.tertiary */
  --border:    rgba(51,51,51,0.9);    /* interactive.border #333333 */
  --border-lt: rgba(68,68,68,0.9);    /* interactive.borderLight #444444 */

  /* ── Text ── */
  --text:   #FFFFFF;      /* text.primary */
  --text-2: #CCCCCC;      /* text.secondary */
  --text-3: #6A6A6A;      /* text.muted */

  --radius:    16px;
  --radius-lg: 24px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,h2,h3,h4 { font-family: 'Space Grotesk', sans-serif; line-height: 1.15; }

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.accent { color: var(--orange); }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-lt));
  color: #fff;
  box-shadow: 0 4px 24px rgba(255,107,26,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255,107,26,0.5);
}

.btn-ghost {
  background: transparent;
  color: var(--text-2);
  border: 1px solid var(--border);
}
.btn-ghost:hover { color: var(--text); border-color: var(--border-lt); background: rgba(255,255,255,0.04); }

.btn-hero-primary {
  background: linear-gradient(135deg, var(--orange), #FF4500);
  color: #fff;
  padding: 16px 32px;
  font-size: 17px;
  border-radius: 12px;
  box-shadow: 0 6px 30px rgba(255,107,26,0.4);
}
.btn-hero-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(255,107,26,0.55); }

.btn-hero-ghost {
  background: rgba(255,255,255,0.07);
  color: var(--text);
  padding: 16px 32px;
  font-size: 17px;
  border-radius: 12px;
  border: 1px solid var(--border-lt);
  backdrop-filter: blur(8px);
}
.btn-hero-ghost:hover { background: rgba(255,255,255,0.12); transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border-lt);
  width: 100%;
  justify-content: center;
  padding: 14px;
  font-size: 15px;
}
.btn-outline:hover { border-color: var(--orange); color: var(--orange); }

/* ---------- NAV ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}
.nav.scrolled {
  background: rgba(5,8,16,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo-icon {
  height: 28px;
  width: 28px;
  object-fit: contain;
  flex-shrink: 0;
}
.nav-logo-text {
  height: 22px;
  width: auto;
  object-fit: contain;
  /* SVG has white fill — renders perfectly on dark bg */
}

/* Hero artboard background — poster wall */
.hero-artboard-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0.18;
  filter: saturate(0.6);
  z-index: 0;
}

/* Hero brand block — SVG icon + wordmark */
.hero-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}
.hero-brand-icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 0 14px rgba(244,83,3,0.55));
}
.hero-brand-wordmark {
  height: 30px;
  width: auto;
  object-fit: contain;
  /* SVG white fill, perfectly readable */
}

/* Real phone screenshot */
.hero-phone-img-wrap {
  position: absolute;
  right: 5vw;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: float-phone 5s ease-in-out infinite;
}
.hero-phone-real {
  width: 280px;
  height: auto;
  object-fit: contain;
  border-radius: 28px;
  filter: drop-shadow(0 24px 60px rgba(0,0,0,0.7)) drop-shadow(0 0 2px rgba(244,83,3,0.2));
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 8px;
  margin-left: auto;
}
.nav-link {
  padding: 8px 14px;
  color: var(--text-2);
  font-size: 14px;
  font-weight: 500;
  border-radius: 8px;
  transition: var(--transition);
}
.nav-link:hover { color: var(--text); background: rgba(255,255,255,0.05); }
.nav-cta { display: flex; gap: 10px; align-items: center; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--text-2); border-radius: 2px; transition: var(--transition); }

/* ---------- SECTION HELPERS ---------- */
.section-label {
  display: inline-block;
  background: rgba(244,83,3,0.12);
  color: var(--orange);
  border: 1px solid rgba(244,83,3,0.25);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.section-title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.15;
}
.section-subtitle {
  font-size: 18px;
  color: var(--text-2);
  margin-bottom: 56px;
}
.accent { color: var(--orange); }

/* ---------- APP SCREENSHOTS SHOWCASE ---------- */
.app-showcase {
  padding: 120px 0 80px;
  overflow: hidden;
}
.app-showcase .container { margin-bottom: 48px; }

.screenshots-strip-wrap {
  position: relative;
  /* fade edges */
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 6%, black 94%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, black 6%, black 94%, transparent 100%);
}
.screenshots-strip {
  display: flex;
  gap: 16px;
  padding: 12px 80px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
}
.screenshots-strip::-webkit-scrollbar { display: none; }
.screenshots-strip:active { cursor: grabbing; }

.screenshot-item {
  flex: 0 0 auto;
  width: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  scroll-snap-align: start;
}
.screenshot-item-wide { width: 260px; }

.screenshot-item img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  object-fit: cover;
  border: 1px solid var(--border-lt);
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.screenshot-item img:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 24px 60px rgba(0,0,0,0.65), 0 0 0 1px rgba(244,83,3,0.2);
}

.screenshot-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-3);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(244,83,3,0.14) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(214,158,46,0.08) 0%, transparent 55%),
    radial-gradient(ellipse 100% 80% at 50% 50%, rgba(26,26,26,0.95) 0%, var(--bg) 80%);
}
.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: rgba(255,255,255,0.4);
  border-radius: 50%;
  animation: float-particle linear infinite;
}
@keyframes float-particle {
  from { transform: translateY(100vh) translateX(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  to { transform: translateY(-20px) translateX(var(--drift)); opacity: 0; }
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  max-width: 620px;
  padding-left: 5vw;
}
/* Live badge — amber */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(214,158,46,0.1);
  border: 1px solid rgba(214,158,46,0.25);
  color: var(--amber);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 28px;
}
.badge-dot {
  width: 7px; height: 7px;
  background: var(--amber);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}
.hero-title {
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 800;
  margin-bottom: 24px;
  line-height: 1.08;
  letter-spacing: -1px;
}
.hero-title-accent {
  background: linear-gradient(135deg, var(--orange), var(--amber));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: 18px;
  color: var(--text-2);
  margin-bottom: 36px;
  line-height: 1.65;
  max-width: 520px;
}
.hero-subtitle strong { color: var(--text); }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 52px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}
.stat-item {
  display: flex;
  flex-direction: column;
}
.stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}
.stat-suffix { font-size: 18px; font-weight: 700; display: inline; }
.stat-label { font-size: 12px; color: var(--text-3); text-transform: uppercase; letter-spacing: 1px; margin-top: 2px; }
.stat-divider { width: 1px; height: 36px; background: var(--border-lt); }

/* Hero Phone */
.hero-phone-wrap {
  position: absolute;
  right: 5vw;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: float-phone 5s ease-in-out infinite;
}
@keyframes float-phone {
  0%,100% { transform: translateY(-50%) translateY(0); }
  50% { transform: translateY(-50%) translateY(-16px); }
}
.hero-phone {
  width: 260px;
  height: 520px;
  background: #111111;
  border-radius: 36px;
  border: 1.5px solid rgba(255,255,255,0.08);
  box-shadow:
    0 0 0 1px rgba(0,0,0,0.5),
    0 32px 80px rgba(0,0,0,0.7),
    inset 0 0 60px rgba(244,83,3,0.04);
  position: relative;
  overflow: hidden;
}
.phone-notch {
  width: 80px; height: 24px;
  background: #0a0a0a;
  border-radius: 0 0 14px 14px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.phone-screen { padding: 0 10px 10px; height: calc(100% - 40px); }
.phone-ui { height: 100%; display: flex; flex-direction: column; gap: 10px; }
.phone-ui-header { display: flex; justify-content: space-between; align-items: center; padding: 4px 0; }
.phone-logo { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 18px; color: var(--orange); }
.phone-ui-icons { display: flex; gap: 8px; }
.phone-icon-dot { width: 20px; height: 20px; border-radius: 50%; background: rgba(255,255,255,0.07); }
.phone-featured { flex: 0 0 auto; }
.phone-featured-card {
  height: 140px;
  border-radius: 12px;
  background: linear-gradient(135deg, #1a1010, #2a1208);
  position: relative;
  overflow: hidden;
}
.phone-poster-1 {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(244,83,3,0.5), transparent 55%),
    radial-gradient(ellipse at 30% 70%, rgba(214,158,46,0.35), transparent 55%),
    linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.8));
  animation: shift-gradient 4s ease-in-out infinite alternate;
}
@keyframes shift-gradient {
  from { filter: hue-rotate(0deg); }
  to { filter: hue-rotate(20deg); }
}
.phone-card-info { position: absolute; bottom: 10px; left: 10px; }
.phone-card-badge { background: var(--orange); color: #fff; font-size: 8px; font-weight: 700; padding: 2px 6px; border-radius: 3px; letter-spacing: 0.5px; }
.phone-card-title { color: #fff; font-size: 13px; font-weight: 600; margin-top: 3px; }
.phone-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 6px; flex: 0 0 auto; }
.phone-thumb { aspect-ratio: 2/3; border-radius: 6px; }
.phone-thumb-1 { background: linear-gradient(135deg, #2a1a10, #1a0d08); }
.phone-thumb-2 { background: linear-gradient(135deg, #3a2010, #2a1408); animation: shift-gradient 3s ease-in-out infinite alternate; }
.phone-thumb-3 { background: linear-gradient(135deg, #1a1a10, #2a2408); }
.phone-thumb-4 { background: linear-gradient(135deg, #221a10, #1a1208); animation: shift-gradient 5s ease-in-out infinite alternate-reverse; }
.phone-bottom-nav {
  margin-top: auto;
  display: flex;
  justify-content: space-around;
  padding: 10px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.phone-nav-item { color: rgba(255,255,255,0.3); padding: 4px 8px; border-radius: 8px; }
.phone-nav-item.active { color: var(--orange); background: rgba(244,83,3,0.1); }
.phone-home-bar { width: 100px; height: 3px; background: rgba(255,255,255,0.15); border-radius: 2px; margin: 4px auto 0; }

/* Float cards */
.float-card {
  position: absolute;
  background: rgba(42,42,42,0.95);
  border: 1px solid var(--border-lt);
  backdrop-filter: blur(12px);
  border-radius: 12px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 200px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.float-card-1 { top: -20px; right: -40px; animation: float-card1 4s ease-in-out infinite; }
.float-card-2 { bottom: 20px; left: -60px; animation: float-card2 5s ease-in-out infinite; }
@keyframes float-card1 { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes float-card2 { 0%,100% { transform: translateY(0); } 50% { transform: translateY(8px); } }
.float-card-icon { font-size: 22px; }
.float-card-text strong { display: block; font-size: 12px; font-weight: 600; color: var(--text); }
.float-card-text span { font-size: 11px; color: var(--text-2); }

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 1;
  opacity: 0.5;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-3);
}
.scroll-arrow {
  width: 20px; height: 20px;
  border-right: 2px solid var(--text-3);
  border-bottom: 2px solid var(--text-3);
  transform: rotate(45deg);
  animation: bounce-arrow 1.5s ease-in-out infinite;
}
@keyframes bounce-arrow { 0%,100% { transform: rotate(45deg) translateY(0); } 50% { transform: rotate(45deg) translateY(4px); } }

/* ---------- FEATURES ---------- */
.features {
  padding: 120px 0;
  position: relative;
}
.features::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-lt), transparent);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card-large { grid-column: span 2; }
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  cursor: default;
}
.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-lt);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}
.feature-card-glow {
  position: absolute;
  top: -60px; left: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}
.feature-card:hover .feature-card-glow { opacity: 0.08; }
.feature-card-accent .feature-card-glow { background: var(--orange); }

.feature-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
/* Feature icon colours — only SPRED palette */
.feature-icon-blue   { background: rgba(244,83,3,0.12);   color: var(--orange); }
.feature-icon-orange { background: rgba(214,158,46,0.12); color: var(--amber); }
.feature-icon-purple { background: rgba(244,83,3,0.15);   color: var(--orange); }
.feature-icon-green  { background: rgba(214,158,46,0.12); color: var(--amber); }
.feature-icon-gold   { background: rgba(139,139,139,0.12);color: var(--grey); }
.feature-icon-pink   { background: rgba(244,83,3,0.10);   color: var(--orange-lt); }

.feature-title { font-size: 22px; font-weight: 700; margin-bottom: 10px; }
.feature-desc { font-size: 15px; color: var(--text-2); line-height: 1.6; }
.feature-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.tag {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  color: var(--text-2);
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 100px;
}

/* P2P visual */
/* P2P visual — amber waves */
.p2p-visual {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  background: rgba(214,158,46,0.06);
  border-radius: 12px;
  padding: 16px;
}
.p2p-device { display: flex; flex-direction: column; align-items: center; gap: 4px; font-size: 11px; color: var(--text-2); }
.device-screen { font-size: 28px; }
.p2p-signal { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 3px; position: relative; }
.p2p-wave {
  width: 100%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--amber), transparent);
  border-radius: 2px;
  animation: wave-anim 1.5s ease-in-out infinite;
}
.p2p-wave:nth-child(2) { animation-delay: 0.2s; opacity: 0.6; }
.p2p-wave:nth-child(3) { animation-delay: 0.4s; opacity: 0.3; }
@keyframes wave-anim { 0%,100% { opacity: 0.3; } 50% { opacity: 1; } }
.p2p-speed {
  font-size: 12px;
  font-weight: 700;
  color: var(--amber);
  background: rgba(214,158,46,0.12);
  padding: 2px 8px;
  border-radius: 4px;
}

/* Genre pills */
.genre-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.pill {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  color: var(--text-2);
  font-size: 13px;
  padding: 6px 14px;
  border-radius: 100px;
  transition: var(--transition);
}
.pill:hover { background: rgba(244,83,3,0.1); border-color: var(--orange); color: var(--orange); }

/* ---------- HOW IT WORKS ---------- */
.how-it-works {
  padding: 120px 0;
  background: var(--bg-2);
  position: relative;
}
.how-it-works::before, .how-it-works::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-lt), transparent);
}
.how-it-works::before { top: 0; }
.how-it-works::after { bottom: 0; }

.steps { display: flex; align-items: stretch; gap: 0; margin-top: 64px; }
.step {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  transition: var(--transition);
}
.step:hover { transform: translateY(-4px); border-color: var(--border-lt); }
.step-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 64px;
  font-weight: 800;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  position: absolute;
  top: 20px;
  right: 20px;
}
.step-content h3 { font-size: 22px; font-weight: 700; margin-bottom: 8px; }
.step-content p { font-size: 15px; color: var(--text-2); line-height: 1.65; }
.step-visual { margin-top: auto; padding-top: 24px; }
.step-icon-wrap {
  width: 64px; height: 64px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
}
/* Step icon colours */
.step-icon-blue   { background: rgba(244,83,3,0.12); color: var(--orange); }
.step-icon-orange { background: rgba(214,158,46,0.12); color: var(--amber); }
.step-icon-purple { background: rgba(244,83,3,0.15); color: var(--orange); }

.step-connector {
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.connector-line {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--border-lt), var(--border));
  position: relative;
}
.connector-line::after {
  content: '→';
  position: absolute;
  right: -8px;
  top: -10px;
  color: var(--border-lt);
  font-size: 14px;
}

/* ---------- PLATFORMS ---------- */
.platforms {
  padding: 120px 0;
}
.platforms-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.platform-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  position: relative;
}
.platform-card:hover { transform: translateY(-4px); border-color: var(--border-lt); }
.platform-soon { opacity: 0.65; }
.platform-icon { color: var(--text-2); margin-bottom: 16px; }
.platform-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.platform-card p { font-size: 13px; color: var(--text-2); line-height: 1.5; margin-bottom: 16px; }
.platform-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 4px 12px;
  border-radius: 100px;
}
/* Platform status badges */
.platform-active { border-color: rgba(244,83,3,0.2); }
.platform-active:hover { border-color: rgba(244,83,3,0.4); box-shadow: 0 0 32px rgba(244,83,3,0.08); }
.platform-live   { background: rgba(244,83,3,0.12);   color: var(--orange);   border: 1px solid rgba(244,83,3,0.25); }
.platform-coming { background: rgba(214,158,46,0.12); color: var(--amber);    border: 1px solid rgba(214,158,46,0.25); }
.platform-dev    { background: rgba(139,139,139,0.12); color: var(--grey);    border: 1px solid rgba(139,139,139,0.25); }

/* ---------- PRICING ---------- */
.pricing {
  padding: 120px 0;
  background: var(--bg-2);
  position: relative;
}
.pricing::before, .pricing::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-lt), transparent);
}
.pricing::before { top: 0; }
.pricing::after { bottom: 0; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
  align-items: start;
}
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  transition: var(--transition);
}
.pricing-card:hover { transform: translateY(-4px); }
.pricing-card-featured {
  border-color: rgba(244,83,3,0.35);
  background: linear-gradient(180deg, rgba(244,83,3,0.06), var(--bg-card));
  box-shadow: 0 0 48px rgba(244,83,3,0.12);
  transform: translateY(-8px);
}
.pricing-card-featured:hover { transform: translateY(-12px); }
.pricing-popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--orange), var(--orange-lt));
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 5px 16px;
  border-radius: 100px;
  white-space: nowrap;
}
.pricing-header { margin-bottom: 28px; }
.pricing-header h3 { font-size: 22px; font-weight: 700; margin-bottom: 12px; }
.price { display: flex; align-items: baseline; gap: 4px; }
.price-currency { font-size: 20px; color: var(--text-2); }
.price-amount { font-family: 'Space Grotesk', sans-serif; font-size: 48px; font-weight: 800; line-height: 1; }
.price-period { font-size: 14px; color: var(--text-2); }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.pricing-features li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text-2); }
.check { color: var(--amber); font-weight: 700; font-size: 16px; }
.cross { color: var(--text-3); font-size: 16px; }
.pricing-card .btn-primary { width: 100%; justify-content: center; padding: 14px; }

/* ---------- DOWNLOAD CTA ---------- */
.download-cta {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.cta-bg { position: absolute; inset: 0; }
/* CTA section gradient — orange + amber warm glow */
.cta-gradient {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 30% 50%, rgba(244,83,3,0.10), transparent 60%),
    radial-gradient(ellipse 50% 70% at 80% 40%, rgba(214,158,46,0.08), transparent 60%);
}
.cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.cta-title {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.1;
}
.cta-subtitle { font-size: 17px; color: var(--text-2); margin-bottom: 36px; max-width: 480px; line-height: 1.65; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 16px; }
.cta-note { font-size: 13px; color: var(--text-3); }
.store-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-card-2);
  border: 1.5px solid var(--border-lt);
  border-radius: 12px;
  padding: 14px 24px;
  color: var(--text);
  transition: var(--transition);
  min-width: 180px;
}
.store-btn:hover { background: rgba(255,255,255,0.06); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.3); }
.store-btn-alt { border-color: rgba(244,83,3,0.3); }
.store-btn-alt:hover { border-color: var(--orange); }
.store-btn svg { color: var(--orange); flex-shrink: 0; }
.store-btn-text { display: flex; flex-direction: column; gap: 1px; }
.store-label { font-size: 10px; text-transform: uppercase; letter-spacing: 1px; color: var(--text-2); }
.store-name { font-size: 16px; font-weight: 700; }

/* CTA phone / QR */
.cta-phone-wrap { position: relative; }
/* CTA QR glow */
.cta-phone-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(ellipse, rgba(214,158,46,0.12), transparent 70%);
  border-radius: 50%;
}
.cta-phone {
  width: 200px; height: 200px;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-lt);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}
.cta-qr { text-align: center; padding: 16px; }
.qr-grid {
  width: 120px; height: 120px;
  margin: 0 auto 8px;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}
.qr-cell {
  width: 100%; aspect-ratio: 1;
  background: var(--text);
  border-radius: 1px;
}
.qr-cell.empty { background: transparent; }
.cta-qr p { font-size: 11px; color: var(--text-2); }

/* ---------- FOOTER ---------- */
.footer {
  padding: 80px 0 40px;
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}
.footer-logo { margin-bottom: 16px; }
.footer-tagline { font-size: 14px; color: var(--text-2); line-height: 1.6; margin-bottom: 24px; max-width: 260px; }
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 36px; height: 36px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-2);
  transition: var(--transition);
}
.social-btn:hover { color: var(--orange); border-color: rgba(255,107,26,0.3); background: rgba(255,107,26,0.08); }
.footer-col h4 { font-size: 14px; font-weight: 700; margin-bottom: 20px; color: var(--text); }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col ul li a { font-size: 14px; color: var(--text-2); transition: var(--transition); }
.footer-col ul li a:hover { color: var(--orange); }
.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 13px;
  color: var(--text-3);
}
.footer-tech { font-size: 12px; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1100px) {
  .hero-phone-wrap { display: none; }
  .hero-phone-img-wrap { display: none; }
  .hero-inner { max-width: 100%; padding-left: 24px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-card-large { grid-column: span 1; }
  .platforms-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-inner { grid-template-columns: 1fr; }
  .cta-phone-wrap { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta .btn-ghost { display: none; }
  .nav-hamburger { display: flex; margin-left: auto; }

  .features-grid { grid-template-columns: 1fr; }
  .steps { flex-direction: column; }
  .step-connector { width: auto; height: 20px; align-items: center; justify-content: center; }
  .connector-line { width: 2px; height: 100%; }
  .connector-line::after { content: '↓'; right: auto; left: -8px; top: auto; bottom: -4px; }
  .platforms-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card-featured { transform: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-actions { flex-direction: column; }
  .store-btn { min-width: 100%; }
  .hero-stats { gap: 16px; }
  .stat-num { font-size: 22px; }
}

@media (max-width: 480px) {
  .platforms-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .btn-hero-primary, .btn-hero-ghost { width: 100%; justify-content: center; }
}

/* ---------- SCROLL ANIMATIONS ---------- */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.feature-card,
.step,
.platform-card,
.pricing-card {
  animation: fade-up 0.65s ease both;
}

.feature-card:nth-child(1) { animation-delay: 0.05s; }
.feature-card:nth-child(2) { animation-delay: 0.12s; }
.feature-card:nth-child(3) { animation-delay: 0.19s; }
.feature-card:nth-child(4) { animation-delay: 0.26s; }
.feature-card:nth-child(5) { animation-delay: 0.33s; }
.feature-card:nth-child(6) { animation-delay: 0.40s; }

.step:nth-child(1) { animation-delay: 0.05s; }
.step:nth-child(3) { animation-delay: 0.15s; }
.step:nth-child(5) { animation-delay: 0.25s; }

.platform-card:nth-child(1) { animation-delay: 0.05s; }
.platform-card:nth-child(2) { animation-delay: 0.12s; }
.platform-card:nth-child(3) { animation-delay: 0.19s; }
.platform-card:nth-child(4) { animation-delay: 0.26s; }

.pricing-card:nth-child(1) { animation-delay: 0.05s; }
.pricing-card:nth-child(2) { animation-delay: 0.15s; }
.pricing-card:nth-child(3) { animation-delay: 0.25s; }
