/* ============================================================
   LANDING.CSS — PiposX Marketing Landing Page
   Standalone styles for Start.aspx (/start route)
   References design tokens from piposx-design-system.css
   ============================================================ */

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

html { scroll-behavior: smooth; }

body.lp-body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #1e293b;
  background: #fff;
  overflow-x: hidden;
  line-height: 1.6;
}

.lp-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Shared eyebrow label ── */
.lp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 0.35rem 1rem;
  margin-bottom: 1.25rem;
}
.lp-eyebrow--gold { color: #f59e0b; background: rgba(245,158,11,0.10); border: 1px solid rgba(245,158,11,0.25); }
.lp-eyebrow--blue { color: #2563eb; background: rgba(37,99,235,0.08); border: 1px solid rgba(37,99,235,0.20); }
.lp-eyebrow--white { color: rgba(255,255,255,0.9); background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.18); }

/* ── Reveal animation base ── */
.lp-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.22,1,0.36,1), transform 0.65s cubic-bezier(0.22,1,0.36,1);
}
.lp-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.lp-reveal--delay-1 { transition-delay: 0.1s; }
.lp-reveal--delay-2 { transition-delay: 0.2s; }
.lp-reveal--delay-3 { transition-delay: 0.3s; }
.lp-reveal--delay-4 { transition-delay: 0.4s; }


/* 2 — NAV
   ============================================================ */
.lp-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.125rem 2rem;
  background: rgba(10,15,30,0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
  will-change: background;
}
.lp-nav.is-scrolled {
  background: rgba(8,13,26,0.95);
  box-shadow: 0 1px 0 rgba(255,255,255,0.05), 0 4px 24px rgba(0,0,0,0.3);
  padding: 0.75rem 2rem;
}

.lp-nav__logo {
  font-size: 1.55rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  letter-spacing: -0.03em;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.lp-nav__logo-accent { color: #f59e0b; }

.lp-nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.lp-nav__links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.2s;
}
.lp-nav__links a:hover { color: #fff; }

.lp-nav__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.lp-nav__login {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  padding: 0.45rem 1.125rem;
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 999px;
  transition: all 0.2s;
}
.lp-nav__login:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.07);
  text-decoration: none;
}
.lp-nav__join {
  font-size: 0.875rem;
  font-weight: 700;
  color: #0a0f1e;
  text-decoration: none;
  padding: 0.5rem 1.375rem;
  background: #f59e0b;
  border-radius: 999px;
  box-shadow: 0 2px 14px rgba(245,158,11,0.40);
  transition: all 0.2s;
}
.lp-nav__join:hover {
  background: #d97706;
  transform: translateY(-1px) scale(1.03);
  box-shadow: 0 4px 20px rgba(245,158,11,0.55);
  text-decoration: none;
  color: #0a0f1e;
}

/* Mobile hamburger */
.lp-nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.lp-nav__burger span {
  display: block;
  height: 2px;
  background: rgba(255,255,255,0.85);
  border-radius: 2px;
  transition: all 0.28s ease;
  transform-origin: center;
}
.lp-nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.lp-nav__burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.lp-nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu drawer */
.lp-nav__drawer {
  position: fixed;
  top: 0; right: 0;
  width: min(320px, 85vw);
  height: 100dvh;
  background: rgba(8,13,26,0.97);
  backdrop-filter: blur(24px);
  z-index: 299;
  padding: 5rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1);
  border-left: 1px solid rgba(255,255,255,0.08);
}
.lp-nav__drawer.is-open { transform: translateX(0); }
.lp-nav__drawer a {
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color 0.2s;
}
.lp-nav__drawer a:hover { color: #fff; }
.lp-nav__drawer .drawer-join {
  margin-top: auto;
  text-align: center;
  padding: 0.875rem;
  background: #f59e0b;
  color: #0a0f1e;
  border-radius: 0.75rem;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-bottom: none;
}
.lp-nav__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 298;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.lp-nav__overlay.is-open { opacity: 1; pointer-events: auto; }


/* 3 — HERO SECTION
   ============================================================ */
.lp-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #080d1a;
}

/* Layered background */
.lp-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 65% 50% at 15% 90%, rgba(245,158,11,0.10) 0%, transparent 55%),
    radial-gradient(ellipse 55% 45% at 88% 12%, rgba(14,165,233,0.11) 0%, transparent 55%),
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(37,99,235,0.16) 0%, transparent 70%),
    radial-gradient(ellipse 40% 35% at 72% 75%, rgba(139,92,246,0.08) 0%, transparent 55%),
    linear-gradient(158deg, #05090f 0%, #0b1628 30%, #101d3a 60%, #080d1a 100%);
}

/* Animated orb blobs */
.lp-hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
  pointer-events: none;
  z-index: 1;
  animation: orb-drift 18s ease-in-out infinite;
}
.lp-hero__orb--1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #2563eb, transparent 70%);
  top: -200px; left: -150px;
  animation-duration: 22s;
}
.lp-hero__orb--2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #f59e0b, transparent 70%);
  bottom: -180px; right: -100px;
  animation-duration: 18s;
  animation-delay: -6s;
}
.lp-hero__orb--3 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #8b5cf6, transparent 70%);
  top: 30%; right: 15%;
  animation-duration: 26s;
  animation-delay: -12s;
}

/* Canvas overlay for animated node graph */
#heroCanvas {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* Campus horizon silhouette */
.lp-hero__horizon {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 3;
  pointer-events: none;
}

/* Hero content */
.lp-hero__content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 7rem 1.5rem 4rem;
  max-width: 860px;
  width: 100%;
}

/* Stagger entrance */
.hero-enter {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1), transform 0.7s cubic-bezier(0.22,1,0.36,1);
}
.hero-enter.show { opacity: 1; transform: translateY(0); }

.lp-hero__headline {
  font-size: clamp(2.4rem, 6.5vw, 5rem);
  font-weight: 800;
  line-height: 1.04;
  color: #fff;
  margin-bottom: 1.5rem;
  letter-spacing: -0.038em;
}
.lp-hero__headline .hl-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.55s cubic-bezier(0.22,1,0.36,1), transform 0.55s cubic-bezier(0.22,1,0.36,1);
}
.lp-hero__headline .hl-word.show { opacity: 1; transform: translateY(0); }
.hl-gold { color: #f59e0b; }
.hl-teal { color: #38bdf8; }

.lp-hero__sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  font-weight: 400;
  line-height: 1.75;
  color: rgba(255,255,255,0.65);
  max-width: 580px;
  margin: 0 auto 2.5rem;
}

/* Proof row */
.lp-hero__proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.875rem;
  margin-bottom: 2.25rem;
}
.lp-av-stack {
  display: flex;
  align-items: center;
}
.lp-av {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2.5px solid #080d1a;
  margin-left: -10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.lp-av:first-child { margin-left: 0; }
.lp-av--1 { background: linear-gradient(135deg, #3b82f6, #6366f1); }
.lp-av--2 { background: linear-gradient(135deg, #f59e0b, #ef4444); }
.lp-av--3 { background: linear-gradient(135deg, #10b981, #06b6d4); }
.lp-av--4 { background: linear-gradient(135deg, #8b5cf6, #ec4899); }
.lp-av--5 { background: linear-gradient(135deg, #f97316, #f59e0b); }

.lp-hero__proof-text {
  text-align: left;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.68);
  line-height: 1.4;
}
.lp-hero__proof-text strong { color: #fff; font-weight: 600; }

/* CTA buttons */
.lp-hero__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}
.lp-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #0a0f1e;
  background: #f59e0b;
  border: none;
  border-radius: 999px;
  padding: 0.9rem 2.25rem;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(245,158,11,0.42);
  transition: all 0.22s ease;
  position: relative;
  overflow: hidden;
}
.lp-btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.25) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s;
}
.lp-btn-primary:hover::after { opacity: 1; }
.lp-btn-primary:hover {
  background: #d97706;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(245,158,11,0.55);
  text-decoration: none;
  color: #0a0f1e;
}
.lp-btn-primary:active { transform: translateY(0); }

.lp-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.07);
  border: 1.5px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  padding: 0.875rem 1.875rem;
  text-decoration: none;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: all 0.22s ease;
}
.lp-btn-ghost:hover {
  background: rgba(255,255,255,0.13);
  border-color: rgba(255,255,255,0.38);
  text-decoration: none;
  color: #fff;
  transform: translateY(-1px);
}
.lp-btn-ghost .play-ring {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(255,255,255,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.8rem;
  transition: background 0.2s;
}
.lp-btn-ghost:hover .play-ring { background: rgba(255,255,255,0.22); }

/* Scroll hint */
@keyframes scroll-bob {
  0%, 100% { transform: translateY(0); opacity: 0.55; }
  50%       { transform: translateY(9px); opacity: 1; }
}
.lp-hero__scroll-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.3);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: scroll-bob 2.2s ease-in-out infinite;
}
.lp-hero__scroll-hint i { font-size: 1.4rem; }


/* 4 — MARQUEE STRIP
   ============================================================ */
.lp-marquee {
  background: #fff;
  padding: 1.75rem 0;
  overflow: hidden;
  border-bottom: 1px solid #f1f5f9;
  position: relative;
}
.lp-marquee::before,
.lp-marquee::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.lp-marquee::before { left: 0; background: linear-gradient(to right, #fff, transparent); }
.lp-marquee::after  { right: 0; background: linear-gradient(to left, #fff, transparent); }

.lp-marquee__label {
  text-align: center;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 1.25rem;
}
.lp-marquee__track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 35s linear infinite;
}
.lp-marquee__track:hover { animation-play-state: paused; }
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.lp-marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.125rem;
  margin: 0 0.5rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: #475569;
  white-space: nowrap;
  transition: all 0.2s;
}
.lp-marquee__item:hover {
  border-color: #cbd5e1;
  background: #f1f5f9;
  color: #334155;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}
.lp-marquee__item i { font-size: 1rem; color: #3b82f6; }


/* 5 — SCROLL-DRIVEN STORY SECTION
   ============================================================ */
.lp-story {
  height: 330vh;
  position: relative;
}
.lp-story__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  background: #080d1a;
}

/* Background gradient that morphs between chapters */
.lp-story__bg {
  position: absolute;
  inset: 0;
  transition: background 0.8s ease;
}
.lp-story__bg--0 {
  background:
    radial-gradient(ellipse 60% 50% at 20% 60%, rgba(37,99,235,0.15) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 30%, rgba(14,165,233,0.10) 0%, transparent 55%),
    linear-gradient(158deg, #05090f 0%, #0a1428 50%, #080d1a 100%);
}
.lp-story__bg--1 {
  background:
    radial-gradient(ellipse 60% 50% at 75% 40%, rgba(245,158,11,0.14) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 20% 70%, rgba(249,115,22,0.09) 0%, transparent 55%),
    linear-gradient(158deg, #05090f 0%, #160e02 50%, #080d1a 100%);
}
.lp-story__bg--2 {
  background:
    radial-gradient(ellipse 60% 50% at 50% 50%, rgba(139,92,246,0.14) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 15% 30%, rgba(236,72,153,0.08) 0%, transparent 55%),
    linear-gradient(158deg, #05090f 0%, #0e0a1c 50%, #080d1a 100%);
}

/* Side progress indicator */
.lp-story__progress {
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lp-story__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  border: 1.5px solid rgba(255,255,255,0.35);
  cursor: pointer;
  transition: all 0.35s ease;
}
.lp-story__dot.is-active {
  background: #f59e0b;
  border-color: #f59e0b;
  transform: scale(1.4);
  box-shadow: 0 0 12px rgba(245,158,11,0.5);
}

/* Chapter panels */
.lp-story__chapter {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 5rem 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s cubic-bezier(0.22,1,0.36,1);
}
.lp-story__chapter.is-active {
  opacity: 1;
  pointer-events: auto;
}

.lp-story__chapter-inner {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* Chapter number */
.lp-story__ch-num {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1rem;
}

.lp-story__ch-title {
  font-size: clamp(1.75rem, 3.5vw, 2.9rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}
.lp-story__ch-title .accent-gold { color: #f59e0b; }
.lp-story__ch-title .accent-blue { color: #60a5fa; }
.lp-story__ch-title .accent-purple { color: #c4b5fd; }

.lp-story__ch-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  max-width: 440px;
  margin-bottom: 2rem;
}

/* Feature points list in chapter */
.lp-story__ch-points {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}
.lp-story__ch-point {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.lp-story__ch-point-icon {
  width: 32px;
  height: 32px;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.95rem;
}
.lp-story__ch-point-icon--blue  { background: rgba(37,99,235,0.20); color: #60a5fa; }
.lp-story__ch-point-icon--gold  { background: rgba(245,158,11,0.18); color: #f59e0b; }
.lp-story__ch-point-icon--purple{ background: rgba(139,92,246,0.20); color: #c4b5fd; }
.lp-story__ch-point-text {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.5;
  padding-top: 0.35rem;
}
.lp-story__ch-point-text strong {
  display: block;
  color: rgba(255,255,255,0.92);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.15rem;
}

/* Chapter illustrations (right side) */
.lp-story__ch-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Visual: network constellation (chapter 0) */
.ch-visual-network {
  width: 100%;
  max-width: 440px;
  aspect-ratio: 1;
  position: relative;
}
.cvn-node {
  position: absolute;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 0.7rem;
  animation: node-pulse 3s ease-in-out infinite;
  box-shadow: 0 0 0 0 transparent;
}
.cvn-node--center {
  width: 70px; height: 70px;
  background: linear-gradient(135deg, #2563eb, #6366f1);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.85rem;
  box-shadow: 0 0 30px rgba(37,99,235,0.5);
  animation-duration: 2.5s;
}
.cvn-node--sm {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, #0ea5e9, #6366f1);
}
.cvn-node--xs {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, #f59e0b, #ef4444);
}
.cvn-line {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,0.25), rgba(255,255,255,0.05));
  transform-origin: left center;
  pointer-events: none;
}

/* Visual: career graph bars (chapter 1) */
.ch-visual-career {
  width: 100%;
  max-width: 420px;
}
.cvc-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 1.25rem;
  padding: 1.75rem;
  backdrop-filter: blur(10px);
}
.cvc-card-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.cvc-bars {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}
.cvc-bar-row {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}
.cvc-bar-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  width: 80px;
  flex-shrink: 0;
}
.cvc-bar-track {
  flex: 1;
  height: 8px;
  background: rgba(255,255,255,0.08);
  border-radius: 999px;
  overflow: hidden;
}
.cvc-bar-fill {
  height: 100%;
  border-radius: 999px;
  width: 0;
  transition: width 1.2s cubic-bezier(0.22,1,0.36,1);
}
.cvc-bar-fill--gold   { background: linear-gradient(90deg, #f59e0b, #f97316); }
.cvc-bar-fill--blue   { background: linear-gradient(90deg, #2563eb, #6366f1); }
.cvc-bar-fill--teal   { background: linear-gradient(90deg, #0ea5e9, #10b981); }
.cvc-bar-fill--purple { background: linear-gradient(90deg, #8b5cf6, #ec4899); }
.cvc-bar-val {
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255,255,255,0.75);
  width: 36px;
  text-align: right;
}

/* Job chips on career visual */
.cvc-jobs {
  margin-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.cvc-job-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.35rem 0.75rem;
  background: rgba(245,158,11,0.12);
  border: 1px solid rgba(245,158,11,0.22);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  color: #fbbf24;
}
.cvc-job-chip i { font-size: 0.78rem; }

/* Visual: community collage (chapter 2) */
.ch-visual-community {
  width: 100%;
  max-width: 420px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.875rem;
}
.cvc-tile {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 1rem;
  padding: 1.25rem;
  backdrop-filter: blur(10px);
  transition: transform 0.3s, border-color 0.3s;
}
.cvc-tile:hover { transform: translateY(-3px); border-color: rgba(255,255,255,0.20); }
.cvc-tile-icon {
  width: 44px; height: 44px;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}
.cvc-tile-icon--blue   { background: rgba(37,99,235,0.18); color: #60a5fa; }
.cvc-tile-icon--gold   { background: rgba(245,158,11,0.16); color: #fbbf24; }
.cvc-tile-icon--purple { background: rgba(139,92,246,0.18); color: #c4b5fd; }
.cvc-tile-icon--teal   { background: rgba(14,165,233,0.16); color: #38bdf8; }
.cvc-tile-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255,255,255,0.88);
  margin-bottom: 0.3rem;
}
.cvc-tile-sub {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.5;
}
.cvc-tile--span2 { grid-column: span 2; }


/* 6 — STATS SECTION
   ============================================================ */
.lp-stats {
  background: linear-gradient(158deg, #0b1628 0%, #111f3c 50%, #080d1a 100%);
  padding: 6rem 1.5rem;
  position: relative;
  overflow: hidden;
}
.lp-stats::before {
  content: '';
  position: absolute;
  width: 800px; height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,0.08), transparent 70%);
  top: -400px; left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.lp-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 3.5rem;
}
.lp-stat-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 1.25rem;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}
.lp-stat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.03) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s;
}
.lp-stat-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.15);
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.lp-stat-card:hover::before { opacity: 1; }

.lp-stat-icon {
  width: 52px; height: 52px;
  border-radius: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.4rem;
}
.lp-stat-icon--gold   { background: rgba(245,158,11,0.14); color: #fbbf24; border: 1px solid rgba(245,158,11,0.22); }
.lp-stat-icon--blue   { background: rgba(37,99,235,0.14); color: #60a5fa; border: 1px solid rgba(37,99,235,0.22); }
.lp-stat-icon--teal   { background: rgba(14,165,233,0.14); color: #38bdf8; border: 1px solid rgba(14,165,233,0.22); }
.lp-stat-icon--purple { background: rgba(139,92,246,0.14); color: #c4b5fd; border: 1px solid rgba(139,92,246,0.22); }

.lp-stat-num {
  font-size: clamp(2.2rem, 4.5vw, 3rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.lp-stat-num .suf { color: #f59e0b; }
.lp-stat-lbl {
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
}


/* 7 — FEATURES SECTION
   ============================================================ */
.lp-features {
  background: #f8fafc;
  padding: 6.5rem 1.5rem;
}

.lp-features__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-top: 1.5rem;
}
.lp-features__grid--flip { direction: rtl; }
.lp-features__grid--flip > * { direction: ltr; }

.lp-features__text { }
.lp-features__text-title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
}
.lp-features__text-title span { color: #2563eb; }
.lp-features__text-body {
  font-size: 0.9875rem;
  color: #64748b;
  line-height: 1.75;
  margin-bottom: 1.75rem;
  max-width: 430px;
}
.lp-features__list {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  margin-bottom: 2rem;
}
.lp-features__list-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.5;
}
.lp-features__list-item i {
  font-size: 1.1rem;
  color: #2563eb;
  margin-top: 0.1rem;
  flex-shrink: 0;
}

/* Feature visual card */
.lp-features__visual {
  position: relative;
}
.lp-feat-card-mock {
  background: #fff;
  border-radius: 1.5rem;
  border: 1px solid #e2e8f0;
  box-shadow: 0 12px 48px -8px rgba(0,0,0,0.12);
  overflow: hidden;
  position: relative;
}
.lp-feat-card-mock__header {
  background: linear-gradient(135deg, #0f172a, #1e3a5f);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.875rem;
}
.lp-feat-card-mock__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
}
.lp-feat-card-mock__meta { flex: 1; }
.lp-feat-card-mock__name { font-size: 0.875rem; font-weight: 600; color: #fff; }
.lp-feat-card-mock__role { font-size: 0.72rem; color: rgba(255,255,255,0.5); margin-top: 0.1rem; }
.lp-feat-card-mock__body { padding: 1.25rem 1.5rem; }
.lp-feat-card-mock__line {
  height: 8px;
  background: #f1f5f9;
  border-radius: 999px;
  margin-bottom: 0.75rem;
}
.lp-feat-card-mock__line--w80 { width: 80%; }
.lp-feat-card-mock__line--w60 { width: 60%; }
.lp-feat-card-mock__line--w90 { width: 90%; }

.lp-feat-tag-row {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}
.lp-feat-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
}
.lp-feat-tag--blue   { background: #eff6ff; color: #2563eb; }
.lp-feat-tag--gold   { background: #fffbeb; color: #d97706; }
.lp-feat-tag--green  { background: #f0fdf4; color: #16a34a; }
.lp-feat-tag--purple { background: #faf5ff; color: #7c3aed; }

/* Floating badge decoration */
.lp-feat-badge {
  position: absolute;
  background: #fff;
  border-radius: 1rem;
  padding: 0.75rem 1rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: #0f172a;
  animation: badge-float 4s ease-in-out infinite;
}
.lp-feat-badge i { font-size: 1.2rem; }
.lp-feat-badge--tl {
  top: -1.25rem;
  left: -1.5rem;
  animation-delay: 0s;
}
.lp-feat-badge--br {
  bottom: -1.25rem;
  right: -1.5rem;
  animation-delay: 2s;
}


/* 8 — PLATFORM PREVIEW
   ============================================================ */
.lp-preview {
  background: #fff;
  padding: 5.5rem 1.5rem;
  overflow: hidden;
}
.lp-preview__inner {
  text-align: center;
  margin-bottom: 3.5rem;
}
.lp-preview__browser {
  max-width: 900px;
  margin: 0 auto;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 32px 80px -12px rgba(0,0,0,0.22), 0 0 0 1px rgba(0,0,0,0.08);
  position: relative;
}
.lp-preview__browser::before {
  content: '';
  position: absolute;
  inset: -60px;
  z-index: -1;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(37,99,235,0.12), transparent 70%);
}

.lp-browser-chrome {
  background: #f1f5f9;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-bottom: 1px solid #e2e8f0;
}
.lp-browser-dots {
  display: flex;
  gap: 5px;
}
.lp-browser-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
}
.lp-browser-dot--red    { background: #ef4444; }
.lp-browser-dot--yellow { background: #f59e0b; }
.lp-browser-dot--green  { background: #22c55e; }
.lp-browser-url {
  flex: 1;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  padding: 0.35rem 0.75rem;
  font-size: 0.75rem;
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.lp-browser-url i { font-size: 0.85rem; color: #22c55e; }

/* App mockup body */
.lp-app-mock {
  background: #f8fafc;
  display: grid;
  grid-template-columns: 220px 1fr 200px;
  min-height: 380px;
}

.lp-app-sidebar {
  background: #0f172a;
  padding: 1.25rem 0.875rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.lp-app-sidebar__logo {
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  padding: 0.5rem 0.75rem;
  margin-bottom: 0.75rem;
}
.lp-app-sidebar__logo em { font-style: normal; color: #f59e0b; }
.lp-app-sidebar-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.55rem 0.75rem;
  border-radius: 0.625rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  transition: all 0.2s;
}
.lp-app-sidebar-item i { font-size: 1.05rem; }
.lp-app-sidebar-item--active {
  background: rgba(37,99,235,0.25);
  color: #60a5fa;
}

.lp-app-feed {
  padding: 1.25rem;
  overflow: hidden;
}
.lp-app-post {
  background: #fff;
  border-radius: 0.875rem;
  padding: 1rem;
  border: 1px solid #e2e8f0;
  margin-bottom: 0.875rem;
}
.lp-app-post-header {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 0.75rem;
}
.lp-app-post-av {
  width: 34px; height: 34px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  color: #fff;
}
.lp-app-post-meta-name { font-size: 0.78rem; font-weight: 600; color: #0f172a; }
.lp-app-post-meta-time { font-size: 0.68rem; color: #94a3b8; }
.lp-app-post-line {
  height: 6px; background: #f1f5f9;
  border-radius: 999px; margin-bottom: 0.5rem;
}
.lp-app-post-line--w80 { width: 80%; }
.lp-app-post-line--w60 { width: 60%; }

.lp-app-right {
  background: #fff;
  border-left: 1px solid #e2e8f0;
  padding: 1.25rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.lp-app-widget {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  padding: 0.875rem;
}
.lp-app-widget-title { font-size: 0.72rem; font-weight: 600; color: #475569; margin-bottom: 0.625rem; }
.lp-app-widget-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0;
  font-size: 0.7rem;
  color: #64748b;
}
.lp-app-widget-av {
  width: 24px; height: 24px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.55rem;
  font-weight: 700;
  color: #fff;
}


/* 9 — TESTIMONIALS THEATRE (scroll-driven) + MAGAZINE
   ============================================================ */

/* ── 9a Theatre: outer scroll wrapper ── */
.lp-tt {
  height: 700vh;
  position: relative;
}

/* Sticky container */
.lp-tt__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  background: #070c18;
}

/* Per-testimonial background tint (morphs on transition) */
.lp-tt__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  transition: opacity 0.9s ease;
}
.lp-tt__bg--0 { background: radial-gradient(ellipse 65% 55% at 25% 55%, rgba(37,99,235,0.13) 0%, transparent 60%); }
.lp-tt__bg--1 { background: radial-gradient(ellipse 65% 55% at 72% 38%, rgba(245,158,11,0.11) 0%, transparent 60%); }
.lp-tt__bg--2 { background: radial-gradient(ellipse 65% 55% at 18% 35%, rgba(139,92,246,0.11) 0%, transparent 60%); }
.lp-tt__bg--3 { background: radial-gradient(ellipse 65% 55% at 78% 62%, rgba(14,165,233,0.11) 0%, transparent 60%); }
.lp-tt__bg--4 { background: radial-gradient(ellipse 65% 55% at 38% 55%, rgba(249,115,22,0.11) 0%, transparent 60%); }
.lp-tt__bg--5 { background: radial-gradient(ellipse 65% 55% at 62% 38%, rgba(16,185,129,0.11) 0%, transparent 60%); }

/* Inner two-column grid */
.lp-tt__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 4.5rem 1.5rem 3.5rem;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 330px;
  gap: 3rem;
  align-items: center;
}

/* ── 9b Stage: left — featured card ── */
.lp-tt__stage {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  gap: 0;
}

.lp-tt__hd { margin-bottom: 1.75rem; }

/* Relative container for absolutely-stacked cards */
.lp-tt__card-area {
  position: relative;
  height: 320px;
}

/* Each full featured card */
.lp-tt__card {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 1.5rem;
  padding: 2.25rem 2.5rem;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  /* Default: off-screen right */
  opacity: 0;
  transform: translateX(72px) scale(0.96);
  pointer-events: none;
  transition:
    opacity 0.58s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.58s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, opacity;
}

/* Colour accent stripe per card (slides in after card appears) */
.lp-tt__card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 2rem; right: 2rem;
  height: 2.5px;
  border-radius: 2.5px 2.5px 0 0;
  transform: scaleX(0);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.25s;
  transform-origin: left;
}
.lp-tt__card--0::after { background: linear-gradient(90deg, #2563eb, #6366f1); }
.lp-tt__card--1::after { background: linear-gradient(90deg, #f59e0b, #f97316); }
.lp-tt__card--2::after { background: linear-gradient(90deg, #8b5cf6, #ec4899); }
.lp-tt__card--3::after { background: linear-gradient(90deg, #0ea5e9, #10b981); }
.lp-tt__card--4::after { background: linear-gradient(90deg, #ef4444, #f97316); }
.lp-tt__card--5::after { background: linear-gradient(90deg, #10b981, #0ea5e9); }

/* Active: slides in from right */
.lp-tt__card.is-active {
  opacity: 1;
  transform: translateX(0) scale(1);
  pointer-events: auto;
}
.lp-tt__card.is-active::after { transform: scaleX(1); }

/* Exiting: slides out to left — faster, different easing than enter */
.lp-tt__card.is-exiting {
  opacity: 0;
  transform: translateX(-52px) scale(0.93);
  pointer-events: none;
  transition:
    opacity 0.42s cubic-bezier(0.55, 0, 1, 0.45),
    transform 0.42s cubic-bezier(0.55, 0, 1, 0.45);
}
.lp-tt__card.is-exiting::after { transform: scaleX(0); }

/* Large quote mark */
.lp-tt__qmark {
  font-size: 4rem;
  line-height: 0.7;
  color: rgba(255,255,255,0.10);
  font-family: Georgia, serif;
  display: block;
  margin-bottom: 1.125rem;
}

/* Quote text */
.lp-tt__text {
  font-size: 0.9875rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.78;
  margin-bottom: 1.75rem;
  font-style: italic;
}

/* Author row */
.lp-tt__author {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}
.lp-tt__av {
  width: 48px; height: 48px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.84rem;
  font-weight: 700;
  color: #fff;
  box-shadow: 0 4px 14px rgba(0,0,0,0.3);
}
.lp-tt__name {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.3rem;
}
.lp-tt__role { font-size: 0.76rem; color: rgba(255,255,255,0.48); margin-top: 0.2rem; }
.lp-tt__stars { color: #f59e0b; font-size: 0.8rem; letter-spacing: 1px; margin-top: 0.3rem; }
.lp-tt__chip {
  display: inline-flex;
  font-size: 0.62rem;
  font-weight: 700;
  color: #93c5fd;
  background: rgba(37,99,235,0.18);
  border: 1px solid rgba(37,99,235,0.30);
  border-radius: 999px;
  padding: 0.1rem 0.45rem;
  vertical-align: middle;
}

/* Footer: progress pills + counter */
.lp-tt__ft {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-top: 1.75rem;
}
.lp-tt__counter {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.30);
  white-space: nowrap;
}
.lp-tt__pills { display: flex; gap: 0.5rem; }
.lp-tt__pill {
  height: 4px;
  width: 22px;
  border-radius: 999px;
  background: rgba(255,255,255,0.16);
  transition: width 0.38s cubic-bezier(0.22,1,0.36,1), background 0.38s ease, box-shadow 0.38s ease;
  cursor: pointer;
}
.lp-tt__pill.is-active {
  width: 46px;
  background: #f59e0b;
  box-shadow: 0 0 10px rgba(245,158,11,0.55);
}
.lp-tt__pill.is-done { background: rgba(255,255,255,0.38); }

/* ── 9c Settled column: right ── */
.lp-tt__settled {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-self: center;
}

/* Settled header label */
.lp-tt__settled-hd {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.22);
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 0.75rem;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.lp-tt__settled-hd.is-visible { opacity: 1; }

/* Grid for mini-cards — 2 columns */
.lp-tt__mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.625rem;
}

/* Each mini settled card */
.lp-tt__mini {
  background: rgba(255,255,255,0.038);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 0.875rem;
  padding: 0.875rem;
  opacity: 0;
  transform: translateX(18px) translateY(6px) scale(0.96);
  pointer-events: none;
  transition:
    opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.25s;
}
.lp-tt__mini.is-visible {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.lp-tt__mini:hover { border-color: rgba(255,255,255,0.15); }

.lp-tt__mini-quote {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.48);
  line-height: 1.55;
  font-style: italic;
  margin-bottom: 0.75rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.lp-tt__mini-author { display: flex; align-items: center; gap: 0.45rem; }
.lp-tt__mini-av {
  width: 26px; height: 26px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.58rem;
  font-weight: 700;
  color: #fff;
}
.lp-tt__mini-name { font-size: 0.68rem; font-weight: 700; color: rgba(255,255,255,0.72); }
.lp-tt__mini-stars { font-size: 0.58rem; color: #f59e0b; margin-top: 0.1rem; }

/* ── 9d Magazine (static, shown after theatre) ── */
.lp-testi-mag {
  background: linear-gradient(160deg, #f8fafc 0%, #eff6ff 55%, #faf5ff 100%);
  padding: 7rem 1.5rem;
  overflow: hidden;
}
.lp-testi-mag__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-top: 3.5rem;
  margin-bottom: 2rem;
  align-items: start;
}
.lp-testi-mag__featured {
  background: #fff;
  border-radius: 1.75rem;
  padding: 2.5rem;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 30px -4px rgba(0,0,0,0.08);
  position: relative;
  overflow: hidden;
}
.lp-testi-mag__featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, #2563eb, #8b5cf6, #06b6d4);
}
.lp-testi-mag__qmark {
  font-size: 5rem;
  line-height: 0.8;
  color: #e2e8f0;
  font-family: Georgia, serif;
  margin-bottom: 1.25rem;
  display: block;
}
.lp-testi-mag__text {
  font-size: 1.05rem;
  color: #1e293b;
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 2rem;
}
.lp-testi-mag__author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.lp-testi-mag__av {
  width: 52px; height: 52px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.lp-testi-mag__name { font-size: 0.9375rem; font-weight: 700; color: #0f172a; }
.lp-testi-mag__role { font-size: 0.8rem; color: #64748b; margin-top: 0.2rem; }
.lp-testi-mag__stars { color: #f59e0b; font-size: 0.875rem; letter-spacing: 1px; margin-top: 0.35rem; }
.lp-testi-mag__badge {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 700;
  color: #2563eb;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 999px;
  padding: 0.12rem 0.45rem;
  margin-left: 0.35rem;
  vertical-align: middle;
}
.lp-testi-mag__right {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.lp-testi-mag__card {
  background: #fff;
  border-radius: 1.25rem;
  padding: 1.75rem;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 12px -2px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}
.lp-testi-mag__card:hover {
  border-color: #bfdbfe;
  box-shadow: 0 8px 32px -4px rgba(37,99,235,0.1);
  transform: translateY(-2px);
}
.lp-testi-mag__card-text {
  font-size: 0.875rem;
  color: #374151;
  line-height: 1.72;
  margin-bottom: 1.25rem;
  font-style: italic;
}
.lp-testi-mag__card-author { display: flex; align-items: center; gap: 0.75rem; }
.lp-testi-mag__card-av {
  width: 40px; height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  color: #fff;
}
.lp-testi-mag__card-name { font-size: 0.84rem; font-weight: 700; color: #0f172a; }
.lp-testi-mag__card-role { font-size: 0.72rem; color: #64748b; margin-top: 0.1rem; }
/* Bottom chip row */
.lp-testi-mag__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  margin-top: 2.5rem;
  justify-content: center;
}
.lp-testi-mag__chip {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  padding: 0.5rem 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: all 0.2s;
}
.lp-testi-mag__chip:hover {
  border-color: #93c5fd;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(37,99,235,0.1);
}
.lp-testi-mag__chip-av {
  width: 30px; height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.62rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.lp-testi-mag__chip-name { font-size: 0.78rem; font-weight: 600; color: #0f172a; }
.lp-testi-mag__chip-meta { font-size: 0.67rem; color: #94a3b8; }
.lp-testi-mag__chip-stars { color: #f59e0b; font-size: 0.65rem; letter-spacing: 1px; margin-left: auto; padding-left: 0.625rem; }


/* 10 — MOBILE APP SECTION
   ============================================================ */
.lp-mobile {
  background: linear-gradient(158deg, #0b1120 0%, #141e30 55%, #0e1622 100%);
  padding: 7rem 1.5rem;
  overflow: hidden;
  position: relative;
}
.lp-mobile::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 75% 55%, rgba(37,99,235,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 35% at 20% 30%, rgba(139,92,246,0.08) 0%, transparent 55%);
  pointer-events: none;
}

/* Two-column: text left, phone right */
.lp-mobile__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* ── Text side ── */
.lp-mobile__text { }
.lp-mobile__title {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.125rem;
}
.lp-mobile__title .accent { color: #f59e0b; }
.lp-mobile__desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  max-width: 420px;
  margin-bottom: 2.25rem;
}
.lp-mobile__feats {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.75rem;
}
.lp-mobile__feat {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
}
.lp-mobile__feat-icon {
  width: 38px; height: 38px;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  flex-shrink: 0;
}
.lp-mobile__feat-icon--blue   { background: rgba(37,99,235,0.18); color: #60a5fa; border: 1px solid rgba(37,99,235,0.28); }
.lp-mobile__feat-icon--gold   { background: rgba(245,158,11,0.16); color: #fbbf24; border: 1px solid rgba(245,158,11,0.26); }
.lp-mobile__feat-icon--purple { background: rgba(139,92,246,0.18); color: #c4b5fd; border: 1px solid rgba(139,92,246,0.28); }
.lp-mobile__feat-icon--teal   { background: rgba(14,165,233,0.16); color: #38bdf8; border: 1px solid rgba(14,165,233,0.26); }
.lp-mobile__feat-text strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.90);
  margin-bottom: 0.15rem;
}
.lp-mobile__feat-text span { font-size: 0.82rem; color: rgba(255,255,255,0.45); line-height: 1.5; }

/* App store buttons */
.lp-store-row { display: flex; gap: 0.875rem; flex-wrap: wrap; }
.lp-store-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: #fff;
  color: #0f172a;
  border-radius: 0.875rem;
  padding: 0.75rem 1.375rem;
  text-decoration: none;
  transition: all 0.22s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  border: 1px solid rgba(0,0,0,0.08);
}
.lp-store-btn:hover {
  background: #f1f5f9;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
  text-decoration: none;
  color: #0f172a;
}
.lp-store-btn--dark {
  background: #0f172a;
  color: #fff;
  border-color: rgba(255,255,255,0.12);
}
.lp-store-btn--dark:hover {
  background: #1e293b;
  color: #fff;
}
.lp-store-btn i { font-size: 1.65rem; flex-shrink: 0; }
.lp-store-btn__label span { display: block; font-size: 0.62rem; color: inherit; opacity: 0.65; line-height: 1; margin-bottom: 0.15rem; }
.lp-store-btn__label strong { display: block; font-size: 0.9375rem; font-weight: 700; line-height: 1; }
.lp-store-btn--dark .lp-store-btn__label span { color: rgba(255,255,255,0.55); }

/* ── Phone mockup side ── */
.lp-phone-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3rem 2rem;
}

/* Glowing backdrop behind phone */
.lp-phone-wrap::before {
  content: '';
  position: absolute;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,0.22) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: phone-glow 4s ease-in-out infinite alternate;
}
@keyframes phone-glow {
  from { transform: translate(-50%, -50%) scale(0.92); opacity: 0.7; }
  to   { transform: translate(-50%, -50%) scale(1.08); opacity: 1; }
}

/* The phone itself */
.lp-phone {
  width: 272px;
  height: 538px;
  background: #111827;
  border-radius: 2.75rem;
  border: 8px solid #1f2937;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.06),
    0 48px 80px rgba(0,0,0,0.55),
    inset 0 0 0 1px rgba(255,255,255,0.04);
  position: relative;
  overflow: hidden;
  animation: phone-float 5s ease-in-out infinite;
}
@keyframes phone-float {
  0%,100% { transform: translateY(0) rotate(-1.5deg); }
  50%      { transform: translateY(-14px) rotate(1.5deg); }
}

/* Dynamic island */
.lp-phone__island {
  position: absolute;
  top: 12px; left: 50%;
  transform: translateX(-50%);
  width: 92px; height: 24px;
  background: #000;
  border-radius: 999px;
  z-index: 20;
}

/* Screen */
.lp-phone__screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #0b1120 0%, #0f1928 100%);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Status bar */
.lp-phone__status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 48px 20px 4px;
  font-size: 0.6rem;
  font-weight: 700;
  color: rgba(255,255,255,0.8);
}
.lp-phone__status-icons { display: flex; gap: 4px; align-items: center; }
.lp-phone__status-icons i { font-size: 0.65rem; }

/* App header bar */
.lp-phone__app-hd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1rem 0.625rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.lp-phone__app-logo {
  font-size: 0.9rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}
.lp-phone__app-logo em { font-style: normal; color: #f59e0b; }
.lp-phone__app-hd-icons { display: flex; gap: 10px; color: rgba(255,255,255,0.6); font-size: 0.85rem; }

/* Feed inside phone */
.lp-phone__feed {
  flex: 1;
  padding: 0.625rem 0.875rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.lp-phone__post {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 0.875rem;
  padding: 0.75rem;
}
.lp-phone__post-hd { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.5rem; }
.lp-phone__post-av {
  width: 26px; height: 26px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.5rem;
  font-weight: 700;
  color: #fff;
}
.lp-phone__post-name { font-size: 0.62rem; font-weight: 600; color: rgba(255,255,255,0.82); }
.lp-phone__post-time { font-size: 0.55rem; color: rgba(255,255,255,0.35); }
.lp-phone__post-line {
  height: 5px; background: rgba(255,255,255,0.08);
  border-radius: 999px; margin-bottom: 0.35rem;
}
.lp-phone__post-line--w80 { width: 80%; }
.lp-phone__post-line--w55 { width: 55%; }
.lp-phone__post-actions {
  display: flex;
  gap: 0.625rem;
  margin-top: 0.5rem;
}
.lp-phone__post-act {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 0.6rem;
  color: rgba(255,255,255,0.4);
}
.lp-phone__post-act i { font-size: 0.7rem; }

/* Bottom nav bar */
.lp-phone__nav {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 0.5rem 0.5rem 0.875rem;
  border-top: 1px solid rgba(255,255,255,0.07);
  background: rgba(10,15,30,0.9);
}
.lp-phone__nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  font-size: 0.5rem;
  color: rgba(255,255,255,0.35);
}
.lp-phone__nav-item--active { color: #f59e0b; }
.lp-phone__nav-item i { font-size: 0.9rem; }

/* Home indicator */
.lp-phone__home {
  position: absolute;
  bottom: 6px; left: 50%;
  transform: translateX(-50%);
  width: 88px; height: 4px;
  background: rgba(255,255,255,0.22);
  border-radius: 999px;
  z-index: 20;
}

/* Floating notification badges around phone */
.lp-phone__badge {
  position: absolute;
  background: #fff;
  border-radius: 1rem;
  padding: 0.625rem 0.875rem;
  box-shadow: 0 8px 28px rgba(0,0,0,0.22);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: #0f172a;
  white-space: nowrap;
  z-index: 10;
  border: 1px solid rgba(0,0,0,0.06);
}
.lp-phone__badge i { font-size: 1rem; flex-shrink: 0; }
.lp-phone__badge span { font-size: 0.62rem; color: #64748b; font-weight: 400; display: block; }
.lp-phone__badge--1 {
  top: 14%;
  left: -5%;
  animation: badge-float 4.2s ease-in-out infinite;
}
.lp-phone__badge--2 {
  bottom: 28%;
  right: -4%;
  animation: badge-float 3.8s ease-in-out infinite 1.8s;
}
.lp-phone__badge--3 {
  top: 48%;
  right: -5%;
  animation: badge-float 5s ease-in-out infinite 0.8s;
}
.lp-phone__badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.lp-phone__badge-dot--green  { background: #22c55e; box-shadow: 0 0 6px rgba(34,197,94,0.5); }
.lp-phone__badge-dot--gold   { background: #f59e0b; box-shadow: 0 0 6px rgba(245,158,11,0.5); }
.lp-phone__badge-dot--blue   { background: #3b82f6; box-shadow: 0 0 6px rgba(59,130,246,0.5); }

/* Mobile section QR / download note */
.lp-mobile__coming-soon {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.28);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 999px;
  padding: 0.3rem 0.875rem;
}
.lp-mobile__coming-soon i { font-size: 0.85rem; }


/* 11 — FINAL CTA
   ============================================================ */
.lp-cta {
  background: #080d1a;
  padding: 6rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.lp-cta__bg-anim {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 120%, rgba(37,99,235,0.16) 0%, transparent 60%),
    radial-gradient(ellipse 40% 30% at 20% 30%, rgba(245,158,11,0.08) 0%, transparent 55%),
    radial-gradient(ellipse 40% 30% at 80% 20%, rgba(139,92,246,0.08) 0%, transparent 55%);
  animation: cta-bg-shift 12s ease-in-out infinite alternate;
}
@keyframes cta-bg-shift {
  from { opacity: 0.8; transform: scale(1); }
  to   { opacity: 1; transform: scale(1.08); }
}

.lp-cta__content { position: relative; z-index: 1; }
.lp-cta__title {
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.035em;
  line-height: 1.06;
  margin-bottom: 1.25rem;
}
.lp-cta__title .accent { color: #f59e0b; }
.lp-cta__sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.52);
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto 2.75rem;
}
.lp-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}
.lp-cta__note {
  display: block;
  margin-top: 1.25rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.28);
  position: relative;
  z-index: 1;
}
.lp-cta__note i { font-size: 0.85rem; vertical-align: middle; margin-right: 0.25rem; }


/* 11 — FOOTER
   ============================================================ */
.lp-footer {
  background: #04080f;
  padding: 4rem 1.5rem 2.25rem;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.lp-footer__inner {
  max-width: 1120px;
  margin: 0 auto;
}
.lp-footer__top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 2rem;
}

.lp-footer__brand-logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.025em;
  margin-bottom: 0.875rem;
  display: block;
  text-decoration: none;
}
.lp-footer__brand-logo em { font-style: normal; color: #f59e0b; }
.lp-footer__brand-desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.7;
  max-width: 240px;
  margin-bottom: 1.5rem;
}
.lp-footer__social {
  display: flex;
  gap: 0.625rem;
}
.lp-footer__social-link {
  width: 34px; height: 34px;
  border-radius: 0.5rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.2s;
}
.lp-footer__social-link:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border-color: rgba(255,255,255,0.2);
  text-decoration: none;
}

.lp-footer__col h5 {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.125rem;
}
.lp-footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.lp-footer__col a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.38);
  text-decoration: none;
  transition: color 0.2s;
}
.lp-footer__col a:hover { color: rgba(255,255,255,0.82); }

.lp-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.22);
}


/* 12 — VIDEO MODAL
   ============================================================ */
.lp-modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(12px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.lp-modal.is-open { display: flex; }
@keyframes modal-pop {
  from { opacity: 0; transform: scale(0.93) translateY(14px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.lp-modal__box {
  background: #0f172a;
  border-radius: 1.5rem;
  width: 100%;
  max-width: 700px;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 40px 80px rgba(0,0,0,0.6);
  overflow: hidden;
  animation: modal-pop 0.28s cubic-bezier(0.22,1,0.36,1);
}
.lp-modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.125rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.lp-modal__head h3 { font-size: 0.95rem; font-weight: 600; color: #fff; display: flex; align-items: center; gap: 0.5rem; }
.lp-modal__close {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 1.1rem;
  transition: all 0.2s;
}
.lp-modal__close:hover { background: rgba(255,255,255,0.15); color: #fff; }
.lp-modal__body {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #0b1628, #162040);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 2rem;
}
.lp-modal__play {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: rgba(245,158,11,0.16);
  border: 2px solid rgba(245,158,11,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #f59e0b;
}
.lp-modal__body p { color: rgba(255,255,255,0.4); font-size: 0.875rem; text-align: center; }
.lp-modal__body small { color: rgba(255,255,255,0.25); font-size: 0.75rem; }


/* 13 — @KEYFRAMES
   ============================================================ */
@keyframes orb-drift {
  0%,100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(30px, -20px) scale(1.05); }
  66%      { transform: translate(-20px, 15px) scale(0.97); }
}
@keyframes node-pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(37,99,235,0.3), 0 0 20px rgba(37,99,235,0.4); }
  50%      { box-shadow: 0 0 0 12px rgba(37,99,235,0), 0 0 30px rgba(37,99,235,0.25); }
}
@keyframes badge-float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
@keyframes bar-appear {
  from { opacity: 0; transform: scaleX(0); transform-origin: left; }
  to   { opacity: 1; transform: scaleX(1); transform-origin: left; }
}


/* 14 — RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .lp-nav__links { display: none; }
  .lp-nav__burger { display: flex; }

  .lp-stats__grid { grid-template-columns: repeat(2, 1fr); }
  .lp-features__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .lp-features__grid--flip { direction: ltr; }
  .lp-story__chapter-inner { grid-template-columns: 1fr; gap: 2rem; }
  .lp-story__ch-visual { display: none; }
  .lp-footer__top { grid-template-columns: 1fr 1fr; }
  .lp-app-mock { grid-template-columns: 180px 1fr; }
  .lp-app-right { display: none; }

  /* Theatre */
  .lp-tt__inner { grid-template-columns: 1fr; }
  .lp-tt__settled { display: none; }
  .lp-tt__card-area { height: 280px; }

  /* Magazine */
  .lp-testi-mag__grid { grid-template-columns: 1fr; }

  /* Mobile section */
  .lp-mobile__grid { grid-template-columns: 1fr; gap: 3rem; }
  .lp-phone-wrap { padding: 1.5rem 1rem; }
  .lp-phone__badge--1 { left: 0; }
  .lp-phone__badge--2 { right: 0; }
  .lp-phone__badge--3 { display: none; }
}

@media (max-width: 768px) {
  .lp-nav { padding: 1rem 1.25rem; }
  .lp-nav.is-scrolled { padding: 0.625rem 1.25rem; }
  .lp-hero__content { padding: 6rem 1.25rem 3.5rem; }
  .lp-stats__grid { grid-template-columns: repeat(2, 1fr); }
  .lp-footer__top { grid-template-columns: 1fr; gap: 2rem; }
  .lp-story__progress { right: 1rem; }
  .lp-preview__browser { border-radius: 0.75rem; }
  .lp-app-mock { grid-template-columns: 160px 1fr; }
  .lp-browser-chrome { padding: 0.5rem 0.75rem; }
  .lp-testi-mag__grid { grid-template-columns: 1fr; }
  .lp-testi-mag__chips { justify-content: flex-start; }
  .lp-tt__card { padding: 1.75rem 1.5rem; }
}

@media (max-width: 480px) {
  .lp-nav__login { display: none; }
  .lp-stats__grid { grid-template-columns: 1fr 1fr; gap: 0.875rem; }
  .lp-hero__cta { flex-direction: column; align-items: stretch; }
  .lp-btn-primary, .lp-btn-ghost { justify-content: center; }
  .lp-app-mock { grid-template-columns: 1fr; }
  .lp-app-sidebar { display: none; }
  .lp-cta__actions { flex-direction: column; align-items: stretch; }
  .lp-phone-wrap { display: none; }
  .lp-mobile__grid { grid-template-columns: 1fr; }
  .lp-store-row { flex-direction: column; }
}

@media (max-width: 375px) {
  .lp-hero__headline { font-size: 2.1rem; }
  .lp-stat-card { padding: 1.5rem 1rem; }
  .lp-tt__card-area { height: 300px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
