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

:root {
  --bg: #05060a;
  --bg-alt: #0b0d14;
  --surface: #10131c;
  --surface-2: #161a26;
  --border: rgba(255,255,255,0.08);
  --text: #f5f6fa;
  --muted: #9aa0ae;
  --muted-2: #6b7180;
  --accent-1: #6489FF;
  --accent-2: #6489FF;
  --accent-3: #57DDE8;
  --accent-gradient: linear-gradient(135deg, #6489FF 0%, #735FF0 45%, #6489FF 100%);
  --accent-gradient-soft: linear-gradient(135deg, rgba(100,137,255,0.18), rgba(100,137,255,0.18));
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-glow: 0 8px 40px rgba(100,137,255,0.25);
  --ease: cubic-bezier(.16,1,.3,1);
  --font-display: 'Space Grotesk', 'Inter', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
input { font: inherit; }

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; letter-spacing: -0.02em; line-height: 1.15; }

.text-gradient {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--accent-gradient-soft);
  border: 1px solid rgba(100,137,255,0.3);
  color: #d8cfff;
  margin-bottom: 18px;
}

/* ============ SCROLL REVEAL ============ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  transition-delay: calc(var(--d, 0) * 90ms);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ============ CURSOR GLOW / NOISE ============ */
.cursor-glow {
  position: fixed;
  top: 0; left: 0;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(100,137,255,0.14) 0%, rgba(100,137,255,0) 70%);
  pointer-events: none;
  transform: translate(-50%,-50%);
  z-index: 2;
  transition: opacity 0.3s;
  will-change: transform;
}
@media (hover: none), (max-width: 860px) { .cursor-glow { display: none; } }

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

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 11px 22px;
  border-radius: 999px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.3s, border-color 0.3s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent-gradient);
  color: #fff;
  box-shadow: 0 4px 24px rgba(100,137,255,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(100,137,255,0.5); }
.btn-secondary {
  background: var(--surface-2);
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-secondary:hover { border-color: rgba(100,137,255,0.5); transform: translateY(-2px); }
.btn-ghost { color: var(--muted); }
.btn-ghost:hover { color: var(--text); }
.btn-lg { padding: 14px 28px; font-size: 1rem; }
.btn-block { width: 100%; }
.play-dot {
  width: 22px; height: 22px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.1);
}

/* ============ HEADER ============ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: padding 0.35s var(--ease), background 0.35s var(--ease), border-color 0.35s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  padding: 10px 0;
  background: rgba(5,6,10,0.75);
  backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
}
.logo-mark { display: inline-flex; filter: drop-shadow(0 2px 10px rgba(100,137,255,0.5)); }
.main-nav { display: flex; gap: 30px; }
.main-nav a {
  font-size: 0.92rem;
  color: var(--muted);
  transition: color 0.25s;
  position: relative;
}
.main-nav a:hover { color: var(--text); }
.main-nav a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -6px; height: 1px;
  background: var(--accent-gradient);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.main-nav a:hover::after { transform: scaleX(1); }
.header-cta { display: flex; align-items: center; gap: 10px; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; width: 26px; }
.nav-toggle span { display: block; height: 2px; background: var(--text); border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 100px;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  animation: float 16s ease-in-out infinite;
}
.blob-1 { width: 480px; height: 480px; background: var(--accent-1); top: -140px; left: -100px; animation-duration: 18s; }
.blob-2 { width: 420px; height: 420px; background: var(--accent-2); top: 200px; right: -140px; animation-duration: 22s; animation-delay: -4s; }
.blob-3 { width: 340px; height: 340px; background: var(--accent-3); bottom: -160px; left: 40%; animation-duration: 20s; animation-delay: -9s; opacity: 0.35; }
@keyframes float {
  0%, 100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(40px,-30px) scale(1.08); }
  66% { transform: translate(-30px,20px) scale(0.95); }
}
.grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, black 30%, transparent 75%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}
.hero-copy h1 {
  font-size: clamp(2.4rem, 4.4vw, 3.6rem);
  margin-bottom: 22px;
}
.hero-sub {
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  max-width: 46ch;
  margin-bottom: 34px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px; }
.hero-trust { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 18px; }
.hero-trust span {
  font-size: 0.84rem;
  color: var(--muted);
  background: var(--surface-2);
  border: 1px solid var(--border);
  padding: 7px 14px;
  border-radius: 999px;
}

/* --- hero visual / device mock --- */
.hero-visual { position: relative; }
.device-frame {
  background: linear-gradient(160deg, var(--surface), var(--bg-alt));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.02);
  animation: drift 8s ease-in-out infinite;
}
@keyframes drift {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(0.3deg); }
}
.device-topbar {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
}
.device-topbar .dot { width: 9px; height: 9px; border-radius: 50%; }
.dot.red { background: #ff5f57; } .dot.yellow { background: #febc2e; } .dot.green { background: #28c840; }
.device-url {
  margin-left: 10px;
  font-size: 0.72rem;
  color: var(--muted-2);
  background: rgba(255,255,255,0.04);
  padding: 3px 10px;
  border-radius: 999px;
}
.device-screen {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.ai-render-loop { position: absolute; inset: 0; background: linear-gradient(135deg, #171226, #1c1230 40%, #2a1430 70%, #17202b); }
.render-grid {
  position: absolute; inset: -20%;
  background-image: repeating-linear-gradient(45deg, rgba(100,137,255,0.12) 0 2px, transparent 2px 22px);
  animation: shift 6s linear infinite;
}
@keyframes shift { to { transform: translate(40px, 40px); } }
.scan-line {
  position: absolute; left: 0; right: 0; height: 40%;
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(100,137,255,0.25) 50%, rgba(255,255,255,0) 100%);
  animation: scan 3.2s ease-in-out infinite;
}
@keyframes scan { 0% { top: -40%; } 100% { top: 100%; } }

.floating-chip {
  position: absolute;
  background: rgba(16,19,28,0.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  font-size: 0.78rem;
  font-weight: 600;
  box-shadow: 0 10px 26px rgba(0,0,0,0.35);
  animation: chipFloat 5s ease-in-out infinite;
}
.chip-1 { top: 12%; left: 8%; animation-delay: 0s; }
.chip-2 { bottom: 30%; right: 6%; animation-delay: -1.5s; }
.chip-3 { bottom: 10%; left: 8%; right: 8%; display: flex; flex-direction: column; gap: 6px; animation-delay: -3s; }
@keyframes chipFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.progress-track { height: 5px; border-radius: 999px; background: rgba(255,255,255,0.1); overflow: hidden; }
.progress-fill { height: 100%; width: 30%; border-radius: 999px; background: var(--accent-gradient); animation: loadbar 2.6s ease-in-out infinite; }
@keyframes loadbar { 0% { width: 10%; } 50% { width: 85%; } 100% { width: 10%; } }

.stat-card.float-card {
  position: absolute;
  bottom: -26px; right: -18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex; flex-direction: column;
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
  animation: chipFloat 6s ease-in-out infinite;
}
.stat-card.float-card strong { font-family: var(--font-display); font-size: 1.4rem; }
.stat-card.float-card span { color: var(--muted); font-size: 0.78rem; }

.scroll-hint {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  width: 26px; height: 42px; border: 2px solid var(--border); border-radius: 20px;
  z-index: 2;
}
.scroll-hint span {
  display: block; width: 4px; height: 8px; border-radius: 2px;
  background: var(--accent-1); margin: 7px auto 0;
  animation: scrollDot 1.8s ease-in-out infinite;
}
@keyframes scrollDot { 0% { transform: translateY(0); opacity: 1; } 70% { opacity: 0; } 100% { transform: translateY(14px); opacity: 0; } }

/* ============ LOGOS MARQUEE ============ */
.logos { padding: 50px 0 30px; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.logos-label { text-align: center; color: var(--muted-2); font-size: 0.85rem; margin-bottom: 26px; }
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent); mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent); }
.marquee-track { display: flex; gap: 64px; width: max-content; animation: marquee 28s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
.brand { font-family: var(--font-display); font-weight: 600; font-size: 1.15rem; color: var(--muted-2); white-space: nowrap; }

/* ============ SECTION HEAD ============ */
.section-head { max-width: 640px; margin: 0 auto 56px; text-align: center; }
.section-head h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); margin-bottom: 14px; }
.section-head p { color: var(--muted); font-size: 1.02rem; }

section { padding: 110px 0; position: relative; }

/* ============ HOW IT WORKS ============ */
.steps { display: flex; align-items: flex-start; gap: 0; }
.step-card {
  flex: 1;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  transition: transform 0.4s var(--ease), border-color 0.4s;
}
.step-card:hover { transform: translateY(-6px); border-color: rgba(100,137,255,0.4); }
.step-num { font-family: var(--font-display); font-size: 0.8rem; color: var(--accent-1); font-weight: 700; margin-bottom: 14px; }
.step-icon {
  width: 52px; height: 52px; border-radius: var(--radius-sm);
  background: var(--accent-gradient-soft);
  display: flex; align-items: center; justify-content: center;
  color: #cdbfff;
  margin-bottom: 18px;
}
.step-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.step-card p { color: var(--muted); font-size: 0.92rem; }
.step-connector {
  width: 60px; align-self: center;
  height: 2px;
  background: linear-gradient(90deg, rgba(100,137,255,0.5), rgba(100,137,255,0.5));
  position: relative;
  margin: 0 4px;
}
.step-connector::after {
  content: '';
  position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent-2);
}

/* ============ SHOWCASE ============ */
.showcase-tabs {
  display: flex; justify-content: center; gap: 10px;
  margin-bottom: 44px;
}
.tab-btn {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--muted);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s var(--ease);
}
.tab-btn span { opacity: 0.6; font-weight: 400; }
.tab-btn.active { background: var(--accent-gradient); color: #fff; border-color: transparent; }

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.vertical-grid { grid-template-columns: repeat(4, 1fr); }

.video-card { border-radius: var(--radius-md); overflow: hidden; background: var(--surface); border: 1px solid var(--border); transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease); }
.video-card:hover { transform: translateY(-8px); box-shadow: 0 24px 50px rgba(0,0,0,0.4); }
.video-thumb { position: relative; overflow: hidden; }
.ratio-16-9 { aspect-ratio: 16/9; }
.ratio-9-16 { aspect-ratio: 9/16; }

.video-motion {
  position: absolute; inset: -30%;
  background: conic-gradient(from 0deg, #241a3a, #3a1a3c, #1a2b3a, #241a3a);
  animation: spinHue 12s linear infinite;
}
[data-tint="1"] .video-motion { filter: hue-rotate(0deg); }
[data-tint="2"] .video-motion { filter: hue-rotate(45deg); }
[data-tint="3"] .video-motion { filter: hue-rotate(90deg); }
[data-tint="4"] .video-motion { filter: hue-rotate(150deg); }
[data-tint="5"] .video-motion { filter: hue-rotate(200deg); }
[data-tint="6"] .video-motion { filter: hue-rotate(260deg); }
@keyframes spinHue { to { transform: rotate(360deg); } }

.video-thumb::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.55) 100%);
  pointer-events: none;
  transition: opacity .35s var(--ease);
}
.video-thumb .tag, .video-thumb .duration, .video-thumb .play-btn { z-index: 2; }
.video-thumb .tag {
  position: absolute; top: 12px; left: 12px;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(6px);
  padding: 4px 12px; border-radius: 999px;
  font-size: 0.72rem; font-weight: 600;
}
.video-thumb .duration {
  position: absolute; bottom: 12px; right: 12px;
  background: rgba(0,0,0,0.55);
  padding: 3px 8px; border-radius: 6px;
  font-size: 0.7rem;
}
.play-btn {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  transition: transform 0.3s var(--ease), background 0.3s;
}
.video-card:hover .play-btn {
  transform: translate(-50%,-50%) scale(1.12);
  color: #111318;
  background: rgba(255,255,255,.9);
  border-color: rgba(255,255,255,.96);
  box-shadow: 0 16px 42px rgba(10,12,16,.2), inset 0 1px 0 #fff;
}
.video-thumb.is-playing::after { opacity: 0; }
.video-thumb.is-playing .video-real { z-index: 3; }
.video-thumb.is-playing .play-btn,
.video-thumb.is-playing .tag,
.video-thumb.is-playing .duration {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.video-meta { padding: 16px 18px; }
.video-meta h4 { font-size: 0.98rem; margin-bottom: 4px; }
.video-meta p { color: var(--muted); font-size: 0.82rem; }

/* ============ FEATURES ============ */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform 0.4s var(--ease), border-color 0.4s;
}
.feature-card:hover { transform: translateY(-6px); border-color: rgba(255,255,255,0.18); }
.feature-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.icon-smoked { background: rgba(100,137,255,0.15); color: #D6DEE7; }
.icon-silver { background: rgba(100,137,255,0.15); color: #D6DEE7; }
.icon-teal { background: rgba(61,220,151,0.15); color: #7fe7bd; }
.feature-card h3 { font-size: 1.08rem; margin-bottom: 8px; }
.feature-card p { color: var(--muted); font-size: 0.92rem; }

/* ============ STATS ============ */
.stats { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 70px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  font-weight: 700;
  background: var(--accent-gradient);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat-label { color: var(--muted); font-size: 0.88rem; }

/* ============ WHY TRUST US (trust-alt) ============ */
.trust-alt { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.trust-alt-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.trust-alt-copy h2 { font-size: clamp(1.6rem, 2.6vw, 2.2rem); margin: 10px 0 16px; }
.trust-alt-copy p { color: var(--muted); font-size: 1rem; max-width: 48ch; }
.trust-alt-list { display: flex; flex-direction: column; gap: 22px; }
.trust-alt-list li { display: flex; align-items: flex-start; gap: 14px; }
.trust-alt-icon {
  flex-shrink: 0;
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--accent-gradient-soft);
  color: #cdbfff;
  display: flex; align-items: center; justify-content: center;
}
.trust-alt-list strong { display: block; font-size: 0.98rem; margin-bottom: 4px; }
.trust-alt-list span { color: var(--muted); font-size: 0.86rem; }

/* ============ PRICING ============ */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.price-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  display: flex; flex-direction: column;
  transition: transform 0.4s var(--ease), border-color 0.4s;
}
.price-card:hover { transform: translateY(-6px); }
.price-card.popular { border: 1px solid rgba(100,137,255,0.5); background: linear-gradient(180deg, rgba(100,137,255,0.08), var(--surface) 40%); box-shadow: var(--shadow-glow); }
.popular-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--accent-gradient); color: #fff;
  font-size: 0.72rem; font-weight: 700;
  padding: 6px 16px; border-radius: 999px;
  white-space: nowrap;
}
.price-card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.price-desc { color: var(--muted); font-size: 0.86rem; margin-bottom: 22px; min-height: 40px; }
.price-amount { display: flex; align-items: baseline; gap: 4px; margin-bottom: 4px; }
.currency { font-size: 1rem; color: var(--muted); }
.price-value { font-family: var(--font-display); font-size: 2.4rem; font-weight: 700; }
.price-value-custom { font-size: 1.7rem; }
.price-period { display: block; color: var(--muted); font-size: 0.86rem; margin-bottom: 26px; }
.price-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 30px; flex: 1; }
.price-features li { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: var(--text); }
.price-features li::before {
  content: '';
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--accent-gradient);
  flex-shrink: 0;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000' stroke-width='3' d='M4 12l6 6L20 6'/%3E%3C/svg%3E") center/60% no-repeat;
}
.pricing-note { text-align: center; margin-top: 40px; color: var(--muted-2); font-size: 0.88rem; }

/* ============ GUARANTEE ============ */
.guarantee { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.guarantee-inner { display: flex; align-items: center; gap: 40px; }
.guarantee-badge {
  flex-shrink: 0;
  width: 100px; height: 100px; border-radius: 28px;
  background: var(--accent-gradient-soft);
  border: 1px solid rgba(100,137,255,0.3);
  display: flex; align-items: center; justify-content: center;
  color: #cdbfff;
}
.guarantee h2 { font-size: clamp(1.5rem, 2.6vw, 2rem); margin-bottom: 12px; }
.guarantee p { color: var(--muted); max-width: 60ch; margin-bottom: 20px; }
.trust-badges { display: flex; flex-wrap: wrap; gap: 12px; }
.trust-badges span {
  background: var(--surface-2); border: 1px solid var(--border);
  padding: 8px 14px; border-radius: 999px; font-size: 0.84rem;
}

/* ============ FAQ ============ */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; }
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px;
  font-weight: 600; text-align: left;
}
.faq-q svg { transition: transform 0.3s var(--ease); flex-shrink: 0; margin-left: 16px; color: var(--muted); }
.faq-item.open .faq-q svg { transform: rotate(180deg); color: var(--accent-1); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq-a p { padding: 0 24px 20px; color: var(--muted); font-size: 0.92rem; }
.faq-item.open .faq-a { max-height: 240px; }

/* ============ FINAL CTA ============ */
.cta-final {
  background: var(--accent-gradient);
  border-radius: var(--radius-lg);
  margin: 0 24px;
  max-width: 1240px;
  margin-inline: auto;
  padding: 90px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.25), transparent 55%);
}
.cta-final-inner { position: relative; z-index: 1; max-width: 720px; margin-inline: auto; }
.cta-final h2 { font-size: clamp(1.8rem, 3.2vw, 2.5rem); margin-bottom: 14px; color: #fff; }
.cta-final p { color: rgba(255,255,255,0.9); margin-bottom: 30px; }
.cta-final .btn-primary { background: #0b0d14; box-shadow: none; }
.form-note { color: rgba(255,255,255,0.75); font-size: 0.82rem; }

.quote-alert {
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.35);
  color: #fff;
  padding: 12px 18px;
  border-radius: 10px;
  font-size: 0.9rem;
  margin-bottom: 18px;
  text-align: left;
}

.quote-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 20px 26px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.14);
  color: #fff;
  font: inherit;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  text-align: left;
  transition: background 0.25s, transform 0.2s;
  margin-bottom: 4px;
}
.quote-strip:hover { background: rgba(255,255,255,0.24); transform: translateY(-2px); }
.quote-strip-cta { white-space: nowrap; font-weight: 700; }
.quote-strip.is-hidden { display: none; }

.quote-form-wrapper {
  display: none;
  height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  margin: 0;
}
.quote-form-wrapper.is-expanded {
  display: block;
  height: auto;
  overflow: visible;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  margin-top: 26px;
}

.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
}

.quote-success {
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 20px;
  padding: 48px 34px;
  text-align: center;
  animation: quoteSuccessIn 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.quote-success.is-hidden { display: none; }
.quote-success-icon { width: 78px; height: 78px; margin: 0 auto 20px; }
.quote-success-icon svg { width: 100%; height: 100%; }
.quote-success-circle {
  stroke: #fff;
  stroke-width: 2;
  stroke-dasharray: 152;
  stroke-dashoffset: 152;
  animation: quoteCircleDraw 0.5s ease-out forwards;
}
.quote-success-check {
  stroke: #fff;
  stroke-width: 3.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 40;
  stroke-dashoffset: 40;
  animation: quoteCheckDraw 0.35s ease-out 0.45s forwards;
}
.quote-success h3 { color: #fff; font-size: 1.5rem; margin-bottom: 10px; }
.quote-success p { color: rgba(255,255,255,0.9); margin-bottom: 26px; }
.quote-success .btn-ghost {
  color: #fff;
  border: 1px solid rgba(255,255,255,0.5);
}
.quote-success .btn-ghost:hover { background: rgba(255,255,255,0.15); color: #fff; }

@keyframes quoteSuccessIn {
  from { opacity: 0; transform: scale(0.92) translateY(14px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes quoteCircleDraw { to { stroke-dashoffset: 0; } }
@keyframes quoteCheckDraw { to { stroke-dashoffset: 0; } }

.quote-form { text-align: left; margin-bottom: 10px; }
.quote-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 18px;
}
.quote-field label,
.quote-field-group > label {
  display: block;
  color: rgba(255,255,255,0.9);
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 6px;
}
.quote-field input,
.quote-field select,
.quote-field-group textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.12);
  color: #fff;
  font: inherit;
  font-size: 0.92rem;
}
.quote-field input::placeholder { color: rgba(255,255,255,0.7); }
.quote-field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath fill='white' d='M1 1l5 5 5-5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }
.quote-field select option { color: #1a1d24; }

.quote-field-group { margin-bottom: 18px; }
.quote-field-group textarea { min-height: 90px; resize: vertical; }

.radio-pill-row { display: flex; flex-wrap: wrap; gap: 10px; }
.radio-pill {
  display: flex; align-items: center; gap: 7px;
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.92);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  margin-bottom: 0;
  transition: background 0.25s, border-color 0.25s;
}
.radio-pill:has(input:checked) { background: rgba(255,255,255,0.9); color: #1a1d24; border-color: transparent; }
.radio-pill input { accent-color: #6489FF; }

.quote-submit { width: 100%; margin-top: 6px; }

/* ============ FOOTER ============ */
.site-footer { padding: 70px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 50px; }
.footer-brand p { color: var(--muted); font-size: 0.88rem; margin-top: 14px; max-width: 32ch; }
.footer-col h4 { font-size: 0.85rem; color: var(--muted-2); margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.05em; }
.footer-col a { display: block; color: var(--muted); font-size: 0.9rem; margin-bottom: 12px; transition: color 0.25s; }
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 26px; border-top: 1px solid var(--border);
  color: var(--muted-2); font-size: 0.82rem;
}
.footer-social { display: flex; gap: 14px; }
.footer-social a {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--surface-2); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 700;
  transition: border-color 0.3s, transform 0.3s;
}
.footer-social a:hover { border-color: var(--accent-1); transform: translateY(-3px); }

/* ============ RESPONSIVE ============ */
@media (max-width: 980px) {
  .main-nav { display: none; }
  .header-cta .btn-ghost { display: none; }
  .nav-toggle { display: flex; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { max-width: 480px; margin: 0 auto; }
  .steps { flex-direction: column; }
  .step-connector { display: none; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .showcase-grid { grid-template-columns: repeat(2, 1fr); }
  .vertical-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .guarantee-inner { flex-direction: column; text-align: center; }
  .trust-badges { justify-content: center; }
  .trust-alt-inner { grid-template-columns: 1fr; text-align: center; }
  .trust-alt-copy p { margin: 0 auto; }
  .trust-alt-list li { text-align: left; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .main-nav.open {
    display: flex; flex-direction: column;
    position: fixed; top: 64px; left: 16px; right: 16px;
    background: var(--surface); border: 1px solid var(--border);
    border-radius: var(--radius-md); padding: 20px;
    gap: 18px;
  }
  section { padding: 70px 0; }
  .hero { padding: 120px 0 70px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .feature-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .showcase-grid, .vertical-grid { grid-template-columns: 1fr 1fr; }
  .quote-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; gap: 14px; }
  .cta-final { padding: 60px 24px; margin: 0 16px; }
}

@media (max-width: 500px) {
  .showcase-grid, .vertical-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* ============ REAL VIDEO (admin-uploaded/linked) ============ */
.video-real { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* ============ PUBLIC LIGHT LUXURY / LIQUID GLASS THEME ============ */
.landing-page {
  --bg:#f4f4f1; --bg-alt:#e9ebe8; --surface:rgba(255,255,255,.72);
  --surface-2:rgba(255,255,255,.52); --border:rgba(26,29,33,.11);
  --text:#16181b; --muted:#666b70; --muted-2:#94989b;
  --accent-1:#6489FF; --accent-2:#735FF0; --accent-3:#57DDE8;
  --accent-gradient:linear-gradient(120deg,#57DDE8,#6489FF 48%,#735FF0);
  --accent-gradient-soft:linear-gradient(135deg,rgba(100,137,255,.12),rgba(115,95,240,.13));
  --font-display:'Manrope',-apple-system,BlinkMacSystemFont,sans-serif;
  --font-body:'DM Sans',-apple-system,BlinkMacSystemFont,sans-serif;
  --radius-sm:14px; --radius-md:24px; --radius-lg:38px;
  background:radial-gradient(circle at 5% 5%,rgba(214,222,231,.55),transparent 27rem),
    radial-gradient(circle at 95% 20%,rgba(229,234,240,.5),transparent 28rem),#f4f4f1;
  color:var(--text);
}
.landing-page .noise-overlay{opacity:.018;mix-blend-mode:multiply}
.landing-page .cursor-glow{width:420px;height:420px;opacity:.48;background:radial-gradient(circle,rgba(255,255,255,.28),rgba(151,164,255,.07) 38%,transparent 70%);mix-blend-mode:screen}
.landing-page .container{max-width:1320px;padding-inline:clamp(20px,4vw,54px)}
.landing-page h1,.landing-page h2,.landing-page h3,.landing-page h4{letter-spacing:-.045em}
.landing-page h2{font-size:clamp(2.25rem,5vw,4.65rem);line-height:1.02}
.landing-page section{position:relative}
.landing-page .text-gradient{background:linear-gradient(115deg,#15171a 12%,#4f5d70 55%,#657080 92%);-webkit-background-clip:text;background-clip:text}
.landing-page .eyebrow{color:#555a61;background:rgba(255,255,255,.5);border-color:rgba(255,255,255,.8);box-shadow:inset 0 1px 0 #fff,0 8px 25px rgba(41,46,61,.06);backdrop-filter:blur(20px) saturate(160%);letter-spacing:.08em;text-transform:uppercase;font-size:.69rem}

/* floating glass navigation */
.landing-page .site-header{padding:18px 0;border:0}
.landing-page .header-inner{max-width:1180px;padding:9px 10px 9px 18px;border:1px solid rgba(255,255,255,.78);border-radius:999px;background:rgba(247,248,246,.64);box-shadow:0 14px 50px rgba(36,39,48,.08),inset 0 1px 0 rgba(255,255,255,.95);backdrop-filter:blur(24px) saturate(180%)}
.landing-page .site-header.scrolled{padding:9px 0;background:transparent;border:0}
.landing-page .logo{letter-spacing:-.04em;color:#17191c}.landing-page .logo-mark{filter:drop-shadow(0 7px 15px rgba(108,102,210,.18))}
.landing-page .logo-mark rect{fill:#fff}.landing-page .logo-mark path{fill:#202227}
.landing-page .main-nav{gap:27px}.landing-page .main-nav a{color:#656a70;font-size:.88rem}.landing-page .main-nav a:hover{color:#16181b}.landing-page .main-nav a::after{background:#16181b}

/* controls */
.landing-page .btn{min-height:46px;padding:11px 22px;font-size:.9rem;letter-spacing:-.01em;border:1px solid rgba(255,255,255,.7);box-shadow:inset 0 1px 0 rgba(255,255,255,.65)}
.landing-page .btn-primary{color:#fff;background:#17191c;border-color:#17191c;box-shadow:0 12px 28px rgba(18,20,23,.2),inset 0 1px 0 rgba(255,255,255,.15)}
.landing-page .btn-primary:hover{background:#33363b;box-shadow:0 16px 38px rgba(18,20,23,.23)}
.landing-page .btn-secondary,.landing-page .btn-ghost{color:#33373c;background:rgba(255,255,255,.55);border-color:rgba(255,255,255,.82);backdrop-filter:blur(18px)}
.landing-page .btn-secondary:hover,.landing-page .btn-ghost:hover{background:rgba(255,255,255,.9);color:#111}
.landing-page .btn-lg{min-height:54px;padding-inline:27px}.landing-page .play-dot{background:rgba(20,22,25,.08)}

/* cinematic hero */
.landing-page .hero{min-height:auto;padding:140px 0 80px;overflow:clip}
.landing-page .hero-bg{opacity:.9}.landing-page .blob{filter:blur(105px);opacity:.4}
.landing-page .blob-1{background:#c9c2ff;width:520px;height:520px}.landing-page .blob-2{background:#c6eee6;width:500px;height:500px}.landing-page .blob-3{background:#f3cfdf;opacity:.42}.landing-page .grid-lines{display:none}
.landing-page .hero-inner{grid-template-columns:minmax(0,.9fr) minmax(500px,1.1fr);gap:clamp(44px,5vw,76px);align-items:center}
.landing-page .hero-copy{padding-block:18px}.landing-page .hero-copy h1{font-size:clamp(3rem,4vw,4.1rem);line-height:1;font-weight:500;letter-spacing:-.07em;margin:0 0 22px}
.landing-page .hero-sub{color:#5c6268;font-size:clamp(.96rem,1.2vw,1.08rem);line-height:1.58;max-width:52ch;margin-bottom:25px}
.landing-page .hero-actions{margin-bottom:32px}.landing-page .hero-trust{gap:8px}
.landing-page .hero-trust span{color:#555a60;background:rgba(255,255,255,.46);border-color:rgba(255,255,255,.78);box-shadow:inset 0 1px 0 rgba(255,255,255,.9);backdrop-filter:blur(15px)}
.landing-page .hero-visual{min-width:0;isolation:isolate}
.landing-page .hero-video-shell{position:relative;aspect-ratio:4/5;max-height:560px;overflow:hidden;border-radius:46px;background:#d9d9d5;border:1px solid rgba(255,255,255,.85);box-shadow:0 35px 100px rgba(42,48,59,.22),inset 0 1px 0 rgba(255,255,255,.95);transform:translateZ(0)}
.landing-page .hero-video,.landing-page .hero-video-fallback{position:relative;inset:auto;width:100%;height:100%;object-fit:cover;display:block}
.landing-page .hero-video-fallback{display:grid;place-items:center;overflow:hidden;background:linear-gradient(145deg,#c9cdd1,#d9cddd 48%,#aebcbb)}
.landing-page .fallback-glow{position:absolute;width:80%;aspect-ratio:1;border-radius:50%;background:conic-gradient(from 90deg,#e5eaf0,#6489ff,#d6dee7,#e5eaf0);filter:blur(45px);animation:liquidDrift 9s ease-in-out infinite alternate}
.landing-page .fallback-copy{position:relative;color:#fff;font:500 clamp(1.5rem,3vw,3rem)/1 var(--font-display);letter-spacing:-.06em}
.landing-page .hero-video-shade{position:absolute;inset:0;background:linear-gradient(180deg,rgba(0,0,0,.04),transparent 55%,rgba(0,0,0,.36));pointer-events:none}
.landing-page .hero-video-label{position:absolute;left:22px;bottom:22px;display:flex;align-items:center;gap:9px;color:#fff;font-size:.76rem;letter-spacing:.05em;padding:10px 14px;border-radius:999px;background:rgba(20,22,25,.24);border:1px solid rgba(255,255,255,.3);backdrop-filter:blur(18px) saturate(160%)}
.landing-page .live-dot{width:6px;height:6px;border-radius:50%;background:#baffdf;box-shadow:0 0 0 4px rgba(186,255,223,.16)}
.landing-page .hero-sound-toggle{position:absolute;right:22px;bottom:22px;width:42px;height:42px;display:grid;place-items:center;color:#fff;border-radius:50%;background:rgba(20,22,25,.24);border:1px solid rgba(255,255,255,.3);backdrop-filter:blur(18px)}
.landing-page .hero-sound-toggle .sound-on{display:none}.landing-page .hero-sound-toggle.is-audible .sound-off{display:none}.landing-page .hero-sound-toggle.is-audible .sound-on{display:block}
.landing-page .hero-glass-note{position:absolute;z-index:4;min-width:160px;padding:15px 18px;display:flex;flex-direction:column;gap:2px;border-radius:21px;color:#272a2e;background:linear-gradient(135deg,rgba(255,255,255,.75),rgba(255,255,255,.34));border:1px solid rgba(255,255,255,.86);box-shadow:0 16px 45px rgba(45,48,57,.13),inset 0 1px 0 #fff;backdrop-filter:blur(22px) saturate(180%);animation:glassFloat 6s ease-in-out infinite}
.landing-page .hero-glass-note span{color:#72777c;font-size:.72rem}.landing-page .hero-glass-note strong{font:600 1.08rem/1.2 var(--font-display)}
.landing-page .hero-note-top{top:9%;left:-38px}.landing-page .hero-note-bottom{right:-28px;bottom:11%;animation-delay:-3s}
.landing-page .hero-glass-orbit{position:absolute;z-index:-1;border-radius:50%;background:linear-gradient(135deg,rgba(255,255,255,.8),rgba(171,190,255,.12));border:1px solid rgba(255,255,255,.85);box-shadow:inset -20px -18px 40px rgba(124,131,183,.12),inset 12px 10px 28px rgba(255,255,255,.85);backdrop-filter:blur(4px)}
.landing-page .orbit-one{width:180px;height:180px;right:-74px;top:-48px;animation:liquidDrift 9s ease-in-out infinite alternate}.landing-page .orbit-two{width:108px;height:108px;left:-48px;bottom:-20px;animation:liquidDrift 7s ease-in-out infinite alternate-reverse}
.landing-page .scroll-hint{border-color:rgba(18,20,23,.2)}.landing-page .scroll-hint span{background:#23262a}
@keyframes glassFloat{50%{transform:translateY(-9px) rotate(.4deg)}}@keyframes liquidDrift{to{transform:translate(18px,-16px) rotate(16deg) scale(1.08);border-radius:43% 57% 64% 36%/55% 41% 59% 45%}}

/* content rhythm and glass cards */
.landing-page .logos{padding:35px 0;border-color:rgba(28,31,35,.08);background:rgba(255,255,255,.22)}.landing-page .brand{color:#8a8e91;font-weight:500}
.landing-page .how,.landing-page .showcase,.landing-page .features,.landing-page .trust-alt,.landing-page .pricing,.landing-page .security,.landing-page .faq{padding-block:clamp(90px,12vw,160px)}
.landing-page .how,.landing-page .features,.landing-page .pricing,.landing-page .faq{background:rgba(255,255,255,.32)}
.landing-page .section-head{max-width:840px;margin:0 auto 64px;text-align:center}.landing-page .section-head p{color:#666b70;font-size:1.05rem;line-height:1.7;max-width:68ch;margin-inline:auto}
.landing-page .step-card,.landing-page .feature-card,.landing-page .price-card,.landing-page .faq-item,.landing-page .security-panel,.landing-page .trust-alt-list,.landing-page .video-card{background:linear-gradient(145deg,rgba(255,255,255,.76),rgba(255,255,255,.42));border:1px solid rgba(255,255,255,.88);box-shadow:0 24px 70px rgba(42,46,55,.08),inset 0 1px 0 #fff;backdrop-filter:blur(24px) saturate(160%)}
.landing-page .step-card,.landing-page .feature-card,.landing-page .price-card{border-radius:32px;transition:transform .55s var(--ease),box-shadow .55s var(--ease)}
.landing-page .step-card:hover,.landing-page .feature-card:hover,.landing-page .price-card:hover{transform:translateY(-8px);box-shadow:0 34px 90px rgba(42,46,55,.13),inset 0 1px 0 #fff}
.landing-page .step-num{color:#a0a4a8}.landing-page .step-icon,.landing-page .feature-icon{color:#24272b;background:rgba(255,255,255,.68);border:1px solid rgba(255,255,255,.9)}
.landing-page .step-card p,.landing-page .feature-card p,.landing-page .video-meta p,.landing-page .price-desc{color:#6a6f74}.landing-page .step-connector{background:linear-gradient(90deg,transparent,rgba(83,88,96,.18),transparent)}

/* portfolio */
.landing-page .showcase{overflow:hidden}.landing-page .showcase::before{content:'';position:absolute;width:520px;height:520px;border-radius:50%;left:-250px;top:15%;background:rgba(183,177,255,.24);filter:blur(85px);pointer-events:none}
.landing-page .showcase-tabs{background:rgba(255,255,255,.5);border:1px solid rgba(255,255,255,.85);box-shadow:0 10px 35px rgba(44,48,57,.07)}
.landing-page .tab-btn{color:#73777b}.landing-page .tab-btn.active{color:#fff;background:#1c1e22}
.landing-page .video-card{border-radius:30px;overflow:hidden}.landing-page .video-thumb{border-radius:25px}.landing-page .video-meta{color:#1d2024}
.landing-page .tag,.landing-page .duration,.landing-page .play-btn{backdrop-filter:blur(16px)}.landing-page .play-btn{background:rgba(255,255,255,.8);color:#15171a;border:1px solid rgba(255,255,255,.9);box-shadow:0 12px 35px rgba(0,0,0,.12)}

/* proof, pricing and security */
.landing-page .stats{background:#1a1c20;border:0;color:#fff}.landing-page .stat-label{color:rgba(255,255,255,.55)}
.landing-page .trust-alt{background:linear-gradient(145deg,#e7e8e4,#f4f2ef)}.landing-page .trust-alt-copy p,.landing-page .trust-alt-list li span{color:#686d72}.landing-page .trust-alt-icon{color:#fff;background:#1c1e22}
.landing-page .price-card.popular{border-color:rgba(112,105,204,.35);box-shadow:0 28px 90px rgba(95,91,170,.15),inset 0 1px 0 #fff}.landing-page .popular-badge{background:#1d2024;color:#fff}.landing-page .price-features li::before{color:#686fd8}.landing-page .pricing-note,.landing-page .form-note{color:#797e83}
.landing-page .pricing-grid{grid-template-columns:repeat(4,minmax(0,1fr));gap:16px}
.landing-page .price-card{padding:30px 24px}.landing-page .price-value{font-size:clamp(2rem,3vw,3rem)}
.landing-page .security{background:#1a1c20;color:#f7f7f5}.landing-page .security .eyebrow{background:rgba(255,255,255,.09);border-color:rgba(255,255,255,.14);color:#d7d9dc;box-shadow:none}.landing-page .security-copy p,.landing-page .security-item span{color:rgba(255,255,255,.6)}
.landing-page .security-panel{color:#f8f8f7;background:rgba(255,255,255,.07);border-color:rgba(255,255,255,.12);box-shadow:inset 0 1px 0 rgba(255,255,255,.1)}.landing-page .trust-badge{background:rgba(255,255,255,.06);border-color:rgba(255,255,255,.1)}

/* FAQ and conversion */
.landing-page .faq-list{max-width:900px}.landing-page .faq-item{border-radius:22px;margin-bottom:12px;overflow:hidden}.landing-page .faq-q{color:#25282c}.landing-page .faq-a p{color:#656a70}
.landing-page .cta-final{padding-block:clamp(90px,12vw,150px);margin:0;overflow:hidden;background:radial-gradient(circle at 20% 30%,rgba(196,187,255,.55),transparent 32%),radial-gradient(circle at 80% 65%,rgba(186,236,225,.62),transparent 32%),#eeefec}
.landing-page .cta-final-inner{max-width:1040px}.landing-page .cta-final h2{color:#17191c;font-size:clamp(2.4rem,5vw,5rem)}.landing-page .cta-final>.container>p{color:#666b70}
.landing-page .quote-strip{color:#fff;background:rgba(25,27,31,.94);border:1px solid rgba(255,255,255,.18);box-shadow:0 25px 70px rgba(28,31,38,.22),inset 0 1px 0 rgba(255,255,255,.14);backdrop-filter:blur(24px)}
.landing-page .quote-form,.landing-page .quote-success{color:#202327;background:linear-gradient(145deg,rgba(255,255,255,.84),rgba(255,255,255,.55));border:1px solid rgba(255,255,255,.9);box-shadow:0 30px 90px rgba(42,46,55,.13),inset 0 1px 0 #fff;backdrop-filter:blur(28px) saturate(160%);border-radius:34px}
.landing-page .quote-field label,.landing-page .quote-field-group>label{color:#33373c}.landing-page .quote-field input,.landing-page .quote-field select,.landing-page .quote-field textarea,.landing-page .quote-field-group textarea{color:#1c1f23;background:rgba(255,255,255,.65);border-color:rgba(31,35,40,.12)}
.landing-page .radio-pill{color:#555a60;background:rgba(255,255,255,.55);border-color:rgba(31,35,40,.12)}.landing-page .radio-pill:has(input:checked){color:#fff;background:#202226;border-color:#202226}
.landing-page .quote-success h3{color:#1d2024}.landing-page .quote-success p{color:#676c71}

/* footer */
.landing-page .site-footer{background:#f4f4f1;border-color:rgba(28,31,35,.1);color:#202327}.landing-page .footer-brand p,.landing-page .footer-col a,.landing-page .footer-bottom{color:#73787d}
.landing-page .footer-col a:hover{color:#16181b}.landing-page .footer-social a{border-color:rgba(28,31,35,.13);color:#555a60}

@media(max-width:1080px){.landing-page .hero-inner{grid-template-columns:1fr 1fr;gap:48px}.landing-page .hero-copy h1{font-size:clamp(3rem,6vw,5rem)}.landing-page .main-nav{display:none}}
@media(max-width:860px){
  .landing-page .site-header{padding-inline:12px}.landing-page .header-inner{padding-left:14px}.landing-page .header-cta{display:none}.landing-page .nav-toggle{display:flex}.landing-page .nav-toggle span{background:#202327}
  .landing-page .main-nav{display:none}
  .landing-page .main-nav.open{display:flex;position:fixed;top:78px;left:14px;right:14px;padding:22px;border-radius:26px;background:rgba(248,249,247,.94);border:1px solid rgba(255,255,255,.9);box-shadow:0 24px 60px rgba(34,38,45,.14);backdrop-filter:blur(24px)}
  .landing-page .hero{padding-top:130px}.landing-page .hero-inner{grid-template-columns:1fr;text-align:center}.landing-page .hero-copy{padding-bottom:0}.landing-page .hero-sub{margin-inline:auto}.landing-page .hero-actions,.landing-page .hero-trust{justify-content:center}
  .landing-page .hero-visual{width:min(100%,620px);margin:10px auto 0}.landing-page .hero-video-shell{aspect-ratio:16/11}.landing-page .hero-note-top{left:14px}.landing-page .hero-note-bottom{right:14px}.landing-page .scroll-hint{display:none}
}
@media(max-width:600px){
  .landing-page .container{padding-inline:18px}.landing-page .hero{padding:115px 0 70px}.landing-page .hero-copy h1{font-size:clamp(2.75rem,13vw,4rem)}.landing-page .hero-sub{font-size:1rem}.landing-page .hero-actions{flex-direction:column}.landing-page .hero-actions .btn{width:100%}
  .landing-page .hero-video-shell{aspect-ratio:4/5;border-radius:32px}.landing-page .hero-glass-note{min-width:132px;padding:12px 14px}.landing-page .hero-note-top{top:18px;left:-6px}.landing-page .hero-note-bottom{right:-6px;bottom:18px}
  .landing-page .hero-video-label{left:15px;bottom:15px}.landing-page .hero-sound-toggle{right:15px;bottom:15px}.landing-page .how,.landing-page .showcase,.landing-page .features,.landing-page .trust-alt,.landing-page .pricing,.landing-page .security,.landing-page .faq{padding-block:85px}
  .landing-page .section-head{margin-bottom:42px}.landing-page h2{font-size:2.55rem}.landing-page .step-card,.landing-page .feature-card,.landing-page .price-card,.landing-page .quote-form{border-radius:25px}
}

/* ============ FULL-BLEED HUMAN DIRECTION HERO ============ */
.landing-page .hero {
  min-height: 100svh;
  padding: 0;
  display: flex;
  align-items: flex-end;
  color: #fff;
  background: #0a0a0a;
}
.landing-page .hero-cinema { position: absolute; inset: 0; overflow: hidden; }
.landing-page .hero-cinema .hero-video,
.landing-page .hero-cinema .hero-video-fallback { width: 100%; height: 100%; object-fit: cover; }
.landing-page .hero-cinema-overlay {
  position: absolute; inset: 0;
  background: transparent;
  pointer-events: none;
}
.landing-page .hero-film-grain {
  position: absolute; inset: -50%; opacity: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
  animation: filmGrain .28s steps(2) infinite;
}
@keyframes filmGrain { 0%{transform:translate(0,0)}25%{transform:translate(3%,-2%)}50%{transform:translate(-2%,3%)}75%{transform:translate(2%,2%)}100%{transform:translate(-3%,-1%)} }
.landing-page .hero-full-inner {
  display: block; width: 100%; z-index: 3;
  padding-top: 180px; padding-bottom: 115px;
}
.landing-page .hero .hero-copy { max-width: 830px; padding: 0; text-align: left; }
.landing-page .hero .hero-copy {
  text-shadow: 0 2px 18px rgba(0,0,0,.62), 0 1px 3px rgba(0,0,0,.75);
}
.landing-page .hero .eyebrow {
  color: rgba(255,255,255,.8); background: rgba(255,255,255,.09);
  border-color: rgba(255,255,255,.2); box-shadow: inset 0 1px 0 rgba(255,255,255,.18);
}
.landing-page .hero .hero-copy h1 {
  color: #fff; font-size: clamp(4rem, 9.2vw, 9rem);
  line-height: .84; letter-spacing: -.085em; margin: 12px 0 26px;
}
.landing-page .hero-liquid-title {
  display: inline-block; color: rgba(255,255,255,.92);
  text-shadow: 0 12px 50px rgba(0,0,0,.22);
  animation: titleFloat 7s ease-in-out infinite;
}
.landing-page .hero-human-title,
.landing-page .hero-machine-title {
  position: relative;
  white-space: nowrap;
}
.landing-page .hero-sequence-title.is-sequencing .hero-human-title.is-active-line::after {
  content: '';
  display: inline-block;
  width: .055em;
  height: .78em;
  margin-left: .055em;
  background: #fff;
  box-shadow: 0 0 18px rgba(255,255,255,.75);
  animation: heroCaretBlink .72s steps(1,end) infinite;
  vertical-align: .01em;
}
.landing-page .hero-sequence-title.is-machine-active .hero-human-title::after {
  display: none;
}
.landing-page .hero-sequence-title.is-sequencing .hero-machine-title {
  min-width: 4.1ch;
  font-variant-numeric: tabular-nums;
}
.landing-page .hero-sequence-title.is-complete .hero-machine-title {
  animation: titleFloat 7s ease-in-out infinite;
}
@keyframes heroCaretBlink { 50% { opacity: 0; } }
@keyframes titleFloat { 50% { transform: translateX(8px); filter: blur(.15px); } }
.landing-page .hero-lead {
  font: 500 clamp(1.35rem,2.4vw,2.1rem)/1.2 var(--font-display);
  letter-spacing: -.04em; margin-bottom: 12px;
}
.landing-page .hero .hero-sub {
  color: rgba(255,255,255,.72); max-width: 66ch; font-size: 1rem; line-height: 1.65;
}
.landing-page .hero .btn-primary { background: #fff; border-color: #fff; color: #15171a; }
.landing-page .hero .btn-primary { text-shadow: none; }
.landing-page .hero .btn-secondary { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.22); color: #fff; }
.landing-page .hero .hero-trust span { color: rgba(255,255,255,.72); background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.16); }
.landing-page .hero-production-strip {
  position: absolute; right: clamp(22px,4vw,60px); bottom: 38px; z-index: 4;
  display: flex; align-items: center; gap: 13px;
  padding: 12px 18px; border-radius: 999px; color: rgba(255,255,255,.82);
  background: rgba(20,22,25,.25); border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(22px) saturate(170%); font-size: .74rem; letter-spacing: .04em;
}
.landing-page .hero-production-strip i { width: 4px; height: 4px; background: #ff7b27; border-radius: 50%; }
.landing-page .hero > .hero-sound-toggle { z-index: 5; right: auto; left: clamp(22px,4vw,60px); bottom: 34px; }

/* manifesto and animated direction object */
.landing-page .manifesto {
  padding: clamp(100px,14vw,190px) 0 70px;
  overflow: hidden;
  background: radial-gradient(circle at 75% 40%,rgba(189,181,255,.42),transparent 30rem),#f1f2ef;
}
.landing-page .manifesto-grid { display:grid; grid-template-columns:1fr 1fr; gap:clamp(55px,8vw,120px); align-items:center; }
.landing-page .manifesto-copy h2 { font-size:clamp(3rem,6vw,6rem); margin-bottom:30px; }
.landing-page .manifesto-copy h2 span { color:#747a82; }
.landing-page .manifesto-lead { font:500 clamp(1.2rem,2vw,1.7rem)/1.45 var(--font-display); letter-spacing:-.035em; color:#30343a; margin-bottom:24px; }
.landing-page .manifesto-copy > p:last-child { color:#666b70; line-height:1.75; max-width:65ch; }
.landing-page .direction-stage {
  position:relative; min-height:580px; display:grid; place-items:center;
  border-radius:48px; border:1px solid rgba(255,255,255,.9);
  background:linear-gradient(145deg,rgba(255,255,255,.76),rgba(255,255,255,.28));
  box-shadow:0 40px 110px rgba(51,54,68,.14),inset 0 1px 0 #fff;
  backdrop-filter:blur(28px);
}
.landing-page .direction-core {
  position:relative; z-index:3; width:240px; aspect-ratio:1; border-radius:42% 58% 63% 37%/45% 40% 60% 55%;
  display:flex; flex-direction:column; justify-content:center; align-items:center;
  color:#fff; background:linear-gradient(145deg,#17191d,#4d5260);
  box-shadow:0 30px 70px rgba(17,19,24,.3),inset 12px 12px 30px rgba(255,255,255,.12);
  animation:morphCore 9s ease-in-out infinite alternate;
}
.landing-page .direction-core span { font-size:.64rem; letter-spacing:.2em; opacity:.58; }
.landing-page .direction-core strong { font:600 2.2rem/1 var(--font-display); letter-spacing:-.06em; margin:8px 0; }
@keyframes morphCore { to { border-radius:58% 42% 38% 62%/37% 55% 45% 63%; transform:rotate(5deg) scale(1.04); } }
.landing-page .liquid-object { position:absolute; border-radius:50%; border:1px solid rgba(255,255,255,.9); backdrop-filter:blur(7px); box-shadow:inset 12px 10px 30px rgba(255,255,255,.8),inset -18px -20px 35px rgba(102,111,185,.15); }
.landing-page .liquid-object-a { width:185px; height:185px; top:42px; right:38px; background:rgba(175,190,255,.2); animation:liquidDrift 8s ease-in-out infinite alternate; }
.landing-page .liquid-object-b { width:105px; height:105px; bottom:44px; left:50px; background:rgba(189,242,229,.28); animation:liquidDrift 6s ease-in-out infinite alternate-reverse; }
.landing-page .glass-spec { position:absolute; z-index:4; padding:13px 16px; min-width:135px; border-radius:18px; background:rgba(255,255,255,.6); border:1px solid rgba(255,255,255,.9); box-shadow:0 18px 45px rgba(47,50,62,.1); backdrop-filter:blur(18px); animation:glassFloat 5s ease-in-out infinite; }
.landing-page .glass-spec small { display:block; color:#999da3; font-size:.62rem; }.landing-page .glass-spec b { font-size:.86rem; }
.landing-page .glass-spec-1 { left:28px; top:100px; }.landing-page .glass-spec-2 { right:24px; bottom:120px; animation-delay:-2s; }.landing-page .glass-spec-3 { left:28%; bottom:34px; animation-delay:-3.5s; }
.landing-page .kinetic-line { display:flex; width:max-content; margin-top:90px; color:#17191c; font:500 clamp(2rem,4vw,4.5rem)/1 var(--font-display); letter-spacing:-.05em; white-space:nowrap; animation:kineticMarquee 24s linear infinite; }
@keyframes kineticMarquee { to { transform:translateX(-50%); } }

@media(max-width:860px){
  .landing-page .hero-full-inner{padding-top:145px;padding-bottom:150px}
  .landing-page .hero .hero-copy{max-width:100%;text-align:left}
  .landing-page .hero .hero-copy h1{font-size:clamp(3.8rem,15vw,7rem)}
  .landing-page .hero .hero-actions,.landing-page .hero .hero-trust{justify-content:flex-start}
  .landing-page .hero-cinema-overlay{background:transparent}
  .landing-page .manifesto-grid{grid-template-columns:1fr}.landing-page .direction-stage{min-height:500px}
  .landing-page .pricing-grid{grid-template-columns:repeat(2,minmax(0,1fr));max-width:none}
}
@media(max-width:600px){
  .landing-page .hero{min-height:100svh}.landing-page .hero-full-inner{padding-top:125px;padding-bottom:155px}
  .landing-page .hero .hero-copy h1{font-size:clamp(3.25rem,16vw,5.2rem)}
  .landing-page .hero .hero-sub{font-size:.93rem;line-height:1.55}
  .landing-page .hero-production-strip{left:18px;right:18px;bottom:28px;justify-content:center;font-size:.67rem;padding-inline:10px}
  .landing-page .hero>.hero-sound-toggle{left:auto;right:18px;bottom:78px}
  .landing-page .direction-stage{min-height:430px;border-radius:32px}.landing-page .direction-core{width:190px}.landing-page .direction-core strong{font-size:1.8rem}
  .landing-page .pricing-grid{grid-template-columns:1fr;max-width:440px}
  .landing-page .glass-spec{min-width:112px;padding:10px 12px}.landing-page .glass-spec-1{left:10px;top:48px}.landing-page .glass-spec-2{right:8px;bottom:84px}.landing-page .glass-spec-3{left:22%;bottom:18px}
}

/* ============ BRUTALIST TYPE + REFINED CONTENT SYSTEM ============ */
.landing-page main > section:not(.hero) h2,
.landing-page .cta-final h2 {
  font-weight: 700;
  letter-spacing: -.065em;
  line-height: .94;
}
.landing-page .section-head h2,
.landing-page .manifesto-copy h2 {
  text-transform: uppercase;
}
.landing-page .section-head { max-width: 960px; }
.landing-page .section-head p { max-width: 74ch; }

/* expanded human expertise object */
.landing-page .direction-stage { min-height: 680px; }
.landing-page .direction-core { width: 220px; }
.landing-page .direction-core strong { font-size: 1.75rem; }
.landing-page .glass-spec { min-width: 132px; animation-duration: 6s; }
.landing-page .glass-spec-1 { left: 24px; top: 72px; }
.landing-page .glass-spec-2 { right: 24px; top: 82px; bottom: auto; animation-delay: -1s; }
.landing-page .glass-spec-3 { left: 18px; top: 245px; bottom: auto; animation-delay: -2s; }
.landing-page .glass-spec-4 { right: 16px; top: 245px; animation-delay: -3s; }
.landing-page .glass-spec-5 { left: 22px; bottom: 126px; animation-delay: -4s; }
.landing-page .glass-spec-6 { right: 18px; bottom: 126px; animation-delay: -5s; }
.landing-page .glass-spec-7 { left: 20%; bottom: 28px; animation-delay: -2.5s; }
.landing-page .glass-spec-8 { right: 17%; bottom: 26px; animation-delay: -4.5s; }

/* five PDF-accurate animated production phases */
.landing-page .production-timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
  position: relative;
}
.landing-page .production-timeline::before {
  content: '';
  position: absolute;
  top: 71px; left: 7%; right: 7%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(59,64,72,.22) 10%, rgba(59,64,72,.22) 90%, transparent);
}
.landing-page .production-phase {
  position: relative; z-index: 1;
  min-width: 0;
  padding: 22px 18px 26px;
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(255,255,255,.8), rgba(255,255,255,.4));
  border: 1px solid rgba(255,255,255,.92);
  box-shadow: 0 22px 65px rgba(42,46,55,.08), inset 0 1px 0 #fff;
  backdrop-filter: blur(22px) saturate(160%);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.landing-page .production-phase:hover { transform: translateY(-10px); box-shadow: 0 34px 80px rgba(42,46,55,.14), inset 0 1px 0 #fff; }
.landing-page .phase-object {
  width: 98px; height: 98px; margin: 0 auto 25px;
  display: grid; place-items: center;
  border-radius: 44% 56% 62% 38% / 55% 38% 62% 45%;
  color: #fff;
  background: linear-gradient(145deg, #1a1c20, #555b68);
  box-shadow: 0 18px 40px rgba(22,24,29,.22), inset 9px 8px 20px rgba(255,255,255,.12);
  animation: phaseMorph 7s ease-in-out infinite alternate;
}
.landing-page .production-phase:nth-child(2n) .phase-object { animation-direction: alternate-reverse; animation-duration: 8s; }
.landing-page .production-phase:nth-child(3) .phase-object { background: linear-gradient(145deg,#111722,#6489ff); }
.landing-page .production-phase:nth-child(5) .phase-object { background: linear-gradient(145deg,#277d70,#67b9a8); }
.landing-page .phase-object span { font: 700 1.3rem/1 var(--font-display); }
.landing-page .production-phase small { display: block; min-height: 2.4em; color: #969ba1; font-size: .62rem; letter-spacing: .12em; }
.landing-page .production-phase h3 { margin: 5px 0 12px; font-size: 1.35rem; text-transform: uppercase; font-weight: 700; }
.landing-page .production-phase p { color: #686d72; font-size: .84rem; line-height: 1.58; overflow-wrap: anywhere; }
@keyframes phaseMorph { to { border-radius: 62% 38% 42% 58% / 38% 55% 45% 62%; transform: rotate(7deg) scale(1.05); } }

/* readable video labels */
.landing-page .video-thumb .tag {
  color: #fff;
  background: rgba(12,14,17,.78);
  border: 1px solid rgba(255,255,255,.24);
  box-shadow: 0 8px 24px rgba(0,0,0,.22);
  font-weight: 700;
  letter-spacing: .03em;
  text-shadow: none;
}
.landing-page .video-thumb .duration {
  color: #fff;
  background: rgba(12,14,17,.72);
  border: 1px solid rgba(255,255,255,.2);
}

/* stats now belong to the light liquid-glass system */
.landing-page .stats {
  padding: 38px 0 110px;
  color: #17191c;
  background: rgba(255,255,255,.32);
}
.landing-page .stats-grid {
  gap: 14px;
  padding: 0 clamp(20px,4vw,54px);
}
.landing-page .stat {
  padding: 34px 22px;
  border-radius: 28px;
  background: linear-gradient(145deg,rgba(255,255,255,.8),rgba(255,255,255,.42));
  border: 1px solid rgba(255,255,255,.9);
  box-shadow: 0 20px 60px rgba(42,46,55,.08), inset 0 1px 0 #fff;
  backdrop-filter: blur(20px);
}
.landing-page .stat-number {
  color: #17191c;
  background: none;
  -webkit-text-fill-color: currentColor;
  font-size: clamp(2.5rem,4vw,4.2rem);
  font-weight: 700;
}
.landing-page .stat-label { color: #6d7277; line-height: 1.4; }

/* expertise block spacing */
.landing-page .trust-alt-inner { gap: clamp(50px,8vw,120px); align-items: stretch; }
.landing-page .trust-alt-copy { padding: clamp(14px,2vw,30px) 0; }
.landing-page .trust-alt-copy h2 { font-size: clamp(2.7rem,5vw,5.2rem); font-weight: 700; text-transform: uppercase; }
.landing-page .trust-alt-copy p { max-width: 60ch; line-height: 1.75; }
.landing-page .trust-alt-list {
  padding: clamp(28px,4vw,52px);
  gap: 0;
  border-radius: 34px;
  overflow: hidden;
}
.landing-page .trust-alt-list li {
  padding: 20px 0;
  min-width: 0;
  border-bottom: 1px solid rgba(38,42,48,.09);
}
.landing-page .trust-alt-list li:last-child { border-bottom: 0; }
.landing-page .trust-alt-list li > div { min-width: 0; padding-right: 4px; }
.landing-page .trust-alt-list li span { display: block; line-height: 1.5; overflow-wrap: anywhere; }

/* conversion form: real internal spacing and safe wrapping */
.landing-page .cta-final-inner { max-width: 1120px; padding-inline: clamp(0px,2vw,18px); }
.landing-page .cta-final-inner > h2,
.landing-page .cta-final-inner > p { max-width: 850px; margin-inline: auto; }
.landing-page .quote-strip { padding: 24px clamp(22px,4vw,40px); border-radius: 24px; }
.landing-page .quote-form {
  width: 100%;
  padding: clamp(28px,5vw,64px);
  margin: 0 0 16px;
  overflow: hidden;
}
.landing-page .quote-grid { gap: 22px 20px; margin-bottom: 30px; }
.landing-page .quote-field,
.landing-page .quote-field-group { min-width: 0; }
.landing-page .quote-field-group { margin-top: 26px; }
.landing-page .quote-field label,
.landing-page .quote-field-group > label { margin-bottom: 10px; font-size: .78rem; letter-spacing: .04em; text-transform: uppercase; }
.landing-page .quote-field input,
.landing-page .quote-field select,
.landing-page .quote-field-group textarea {
  min-width: 0;
  min-height: 52px;
  padding: 14px 16px;
  border-radius: 14px;
}
.landing-page .quote-field-group textarea { min-height: 150px; resize: vertical; }
.landing-page .radio-pill-row { gap: 10px; }
.landing-page .radio-pill {
  min-width: 0;
  max-width: 100%;
  padding: 12px 16px;
  white-space: normal;
  line-height: 1.35;
  overflow-wrap: anywhere;
}
.landing-page .quote-submit { margin-top: 30px; min-width: min(100%,280px); }
.landing-page .form-note { display: block; padding: 0 18px; text-align: center; overflow-wrap: anywhere; }

@media(max-width:1080px) {
  .landing-page .production-timeline { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .landing-page .production-timeline::before { display:none; }
  .landing-page .production-phase:last-child { grid-column: 1 / -1; }
}
@media(max-width:860px) {
  .landing-page .direction-stage { min-height: 620px; }
  .landing-page .trust-alt-copy { text-align:left; }
  .landing-page .trust-alt-copy p { margin:0; }
}
@media(max-width:600px) {
  .landing-page .direction-stage { min-height: 660px; }
  .landing-page .direction-core { width: 170px; }
  .landing-page .direction-core strong { font-size: 1.35rem; }
  .landing-page .glass-spec { min-width: 114px; max-width: 150px; }
  .landing-page .glass-spec-1 { left: 8px; top: 42px; }
  .landing-page .glass-spec-2 { right: 8px; top: 52px; }
  .landing-page .glass-spec-3 { left: 6px; top: 180px; }
  .landing-page .glass-spec-4 { right: 6px; top: 188px; }
  .landing-page .glass-spec-5 { left: 8px; bottom: 175px; }
  .landing-page .glass-spec-6 { right: 8px; bottom: 165px; }
  .landing-page .glass-spec-7 { left: 8px; bottom: 30px; }
  .landing-page .glass-spec-8 { right: 8px; bottom: 28px; }
  .landing-page .production-timeline { grid-template-columns: 1fr; }
  .landing-page .production-phase:last-child { grid-column:auto; }
  .landing-page .production-phase { display:grid; grid-template-columns:88px 1fr; align-items:center; gap:18px; padding:18px; }
  .landing-page .phase-object { width:82px; height:82px; margin:0; }
  .landing-page .production-phase small { min-height:0; }
  .landing-page .stats-grid { grid-template-columns:1fr; gap:12px; }
  .landing-page .stat { padding:25px 18px; }
  .landing-page .trust-alt-list { padding:22px; }
  .landing-page .quote-strip { flex-direction:column; align-items:flex-start; }
  .landing-page .quote-strip-cta { white-space:normal; }
  .landing-page .quote-form { padding:28px 18px; border-radius:24px; }
  .landing-page .quote-grid { grid-template-columns:1fr; }
  .landing-page .radio-pill-row { display:grid; grid-template-columns:1fr; }
}

/* ============ CONSISTENT HEADING MASS ============ */
.landing-page main > section:not(.hero) h2,
.landing-page .cta-final h2,
.landing-page .manifesto-copy h2,
.landing-page .trust-alt-copy h2,
.landing-page .section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 4.15vw, 4.15rem);
  font-weight: 800;
  line-height: .98;
  letter-spacing: -.065em;
  text-transform: none;
}
.landing-page main > section:not(.hero) h3,
.landing-page .price-card h3,
.landing-page .production-phase h3 {
  font-weight: 800;
  letter-spacing: -.035em;
  text-transform: none;
}
.landing-page .manifesto-copy h2 span { font-weight: 800; }

@media(max-width:600px) {
  .landing-page main > section:not(.hero) h2,
  .landing-page .cta-final h2,
  .landing-page .manifesto-copy h2,
  .landing-page .trust-alt-copy h2,
  .landing-page .section-head h2 {
    font-size: clamp(2.25rem, 11.5vw, 3.15rem);
    line-height: 1;
    letter-spacing: -.06em;
  }
}

/* ============ FULL-WIDTH SECURITY + QUOTE SECTIONS ============ */
.landing-page .guarantee {
  padding-block: clamp(95px, 11vw, 155px);
  background:
    radial-gradient(circle at 16% 45%, rgba(193,186,255,.38), transparent 25rem),
    radial-gradient(circle at 88% 30%, rgba(185,239,226,.4), transparent 28rem),
    #eef0ed;
  border: 0;
  overflow: hidden;
}
.landing-page .guarantee-inner {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(240px, .65fr) minmax(0, 1.35fr);
  align-items: center;
  gap: clamp(55px, 8vw, 120px);
}
.landing-page .guarantee-badge {
  position: relative;
  width: min(100%, 300px);
  aspect-ratio: 1;
  height: auto;
  justify-self: center;
  border-radius: 42% 58% 61% 39% / 51% 39% 61% 49%;
  color: #20242a;
  background: linear-gradient(145deg, rgba(255,255,255,.72), rgba(255,255,255,.25));
  border: 1px solid rgba(255,255,255,.9);
  box-shadow:
    0 35px 90px rgba(43,48,61,.15),
    inset 18px 15px 38px rgba(255,255,255,.88),
    inset -22px -24px 42px rgba(105,113,180,.12);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  animation: securityMorph 9s ease-in-out infinite alternate;
}
.landing-page .guarantee-badge svg {
  position: relative;
  z-index: 2;
  width: 42%;
  height: 42%;
  stroke-width: 1.1;
  filter: drop-shadow(0 12px 22px rgba(35,39,48,.16));
  animation: securityPulse 3.8s ease-in-out infinite;
}
.landing-page .guarantee-inner > div:last-child { min-width: 0; }
.landing-page .guarantee h2 {
  max-width: 14ch;
  margin-bottom: 22px;
}
.landing-page .guarantee p {
  max-width: 78ch;
  font-size: 1.04rem;
  line-height: 1.75;
  margin-bottom: 28px;
}
.landing-page .trust-badges { gap: 10px; }
.landing-page .trust-badges span {
  padding: 10px 15px;
  background: rgba(255,255,255,.52);
  border-color: rgba(255,255,255,.9);
  box-shadow: inset 0 1px 0 #fff;
  backdrop-filter: blur(16px);
}
@keyframes securityMorph {
  to {
    border-radius: 59% 41% 38% 62% / 39% 56% 44% 61%;
    transform: rotate(4deg) translateY(-8px);
  }
}
@keyframes securityPulse {
  50% { transform: scale(1.08); filter: drop-shadow(0 15px 30px rgba(73,80,114,.25)); }
}

.landing-page .cta-final { width: 100%; max-width: none; }
.landing-page .cta-final-inner {
  width: 100%;
  max-width: none;
  margin-inline: auto;
  padding-inline: 0;
}
.landing-page .quote-strip,
.landing-page .quote-form-wrapper,
.landing-page .quote-success,
.landing-page .quote-alert { width: 100%; }
.landing-page .quote-form { max-width: none; }

@media(max-width:860px) {
  .landing-page .guarantee-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 42px;
  }
  .landing-page .guarantee-badge { width: min(68vw, 260px); }
  .landing-page .guarantee h2,
  .landing-page .guarantee p { margin-inline: auto; }
  .landing-page .trust-badges { justify-content: center; }
}

/* ============ REELUSION BRAND MARK ============ */
.landing-page .logo-mark {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  filter: none;
}
.landing-page .logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.landing-page .site-footer .logo-mark { width: 36px; height: 36px; }
.landing-page .brand-watermark {
  position: absolute;
  pointer-events: none;
  user-select: none;
  object-fit: contain;
  z-index: 0;
}
.landing-page .manifesto-watermark {
  width: clamp(220px, 28vw, 470px);
  right: -5%;
  top: 3%;
  opacity: .035;
  transform: rotate(-8deg);
  animation: brandWatermarkFloat 14s ease-in-out infinite alternate;
}
.landing-page .quote-watermark {
  width: clamp(240px, 30vw, 520px);
  left: -8%;
  bottom: -18%;
  opacity: .035;
  transform: rotate(11deg);
  animation: brandWatermarkFloat 16s ease-in-out infinite alternate-reverse;
}
.landing-page .manifesto > .container,
.landing-page .manifesto .kinetic-line,
.landing-page .cta-final > .container { position: relative; z-index: 1; }
@keyframes brandWatermarkFloat {
  to { transform: translate(20px,-16px) rotate(2deg) scale(1.04); }
}
@media(max-width:600px) {
  .landing-page .manifesto-watermark { width: 260px; right: -80px; top: 8%; }
  .landing-page .quote-watermark { width: 280px; left: -100px; bottom: -4%; }
}

/* ============ CREATIVE NAV LINK INTERACTION ============ */
.landing-page .main-nav {
  gap: 5px;
  padding: 4px;
  border-radius: 999px;
}
.landing-page .main-nav a {
  position: relative;
  isolation: isolate;
  padding: 9px 14px;
  border-radius: 999px;
  color: #454a50;
  font-family: var(--font-display);
  font-size: .84rem;
  font-weight: 700;
  letter-spacing: -.018em;
  transition: color .3s var(--ease), transform .35s var(--ease);
}
.landing-page .main-nav a::after { content: none; }
.landing-page .main-nav a::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  opacity: 0;
  transform: scale(.78) translateY(5px);
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.95), transparent 42%),
    linear-gradient(135deg, rgba(255,255,255,.7), rgba(207,213,255,.32));
  border: 1px solid rgba(255,255,255,.88);
  box-shadow: 0 10px 25px rgba(41,45,56,.1), inset 0 1px 0 #fff;
  backdrop-filter: blur(14px) saturate(170%);
  transition: opacity .3s var(--ease), transform .4s var(--ease);
}
.landing-page .main-nav a:hover {
  color: #17191c;
  transform: translateY(-1px);
}
.landing-page .main-nav a:hover::before {
  opacity: 1;
  transform: scale(1) translateY(0);
}

/* ============ NAV GLASS + WORKING VIDEO FILTER ============ */
.landing-page .site-header,
.landing-page .site-header.scrolled {
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.landing-page .header-inner {
  background:
    linear-gradient(135deg, rgba(255,255,255,.67), rgba(255,255,255,.32));
  border: 1px solid rgba(255,255,255,.78);
  box-shadow:
    0 18px 50px rgba(32,36,45,.1),
    inset 0 1px 0 rgba(255,255,255,.92),
    inset 0 -1px 0 rgba(255,255,255,.24);
  backdrop-filter: blur(24px) saturate(185%);
  -webkit-backdrop-filter: blur(24px) saturate(185%);
}
.landing-page .showcase-tabs {
  width: fit-content;
  margin-inline: auto;
  padding: 0;
  gap: 10px;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
}
.landing-page .showcase-tabs .tab-btn {
  min-height: 48px;
  padding: 12px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255,255,255,.7), rgba(255,255,255,.36));
  border: 1px solid rgba(255,255,255,.9);
  box-shadow: 0 12px 32px rgba(42,46,55,.08), inset 0 1px 0 #fff;
  backdrop-filter: blur(20px) saturate(170%);
  -webkit-backdrop-filter: blur(20px) saturate(170%);
  color: #292d32;
}
.landing-page .showcase-tabs .tab-btn.active {
  color: #fff;
  background: rgba(24,26,30,.94);
  border-color: rgba(24,26,30,.94);
  box-shadow: 0 14px 34px rgba(20,22,27,.2), inset 0 1px 0 rgba(255,255,255,.16);
}
.landing-page .showcase-grid[hidden] {
  display: none !important;
}

/* ============ HUMAN-DIRECTED CREATIVE CONTROL SYSTEM ============ */
.landing-page .direction-system {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  border-radius: 42px;
  color: #fff;
  background:
    radial-gradient(circle at 50% 48%, rgba(129,139,255,.2), transparent 35%),
    linear-gradient(145deg, #15171c, #08090c 72%);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 44px 110px rgba(24,27,35,.28), inset 0 1px 0 rgba(255,255,255,.18);
}
.landing-page .direction-system::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: .17;
  background-image:
    linear-gradient(rgba(255,255,255,.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.16) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at center, #000, transparent 78%);
  animation: systemGrid 12s linear infinite;
}
@keyframes systemGrid { to { background-position: 44px 44px; } }
.landing-page .system-head,
.landing-page .system-footer {
  position: relative;
  z-index: 8;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 26px;
  font-size: .64rem;
  letter-spacing: .15em;
}
.landing-page .system-head { border-bottom: 1px solid rgba(255,255,255,.12); }
.landing-page .system-head span { display: flex; align-items: center; gap: 9px; font-weight: 800; }
.landing-page .system-head span i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #8df1cf;
  box-shadow: 0 0 0 5px rgba(141,241,207,.1), 0 0 22px #8df1cf;
  animation: systemLive 1.7s ease-in-out infinite;
}
@keyframes systemLive { 50% { opacity: .35; transform: scale(.72); } }
.landing-page .system-head small { color: rgba(255,255,255,.42); font-size: inherit; }
.landing-page .system-field { position: relative; height: 540px; }
.landing-page .system-orbit {
  position: absolute;
  left: 50%;
  top: 50%;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  transform: translate(-50%,-50%);
}
.landing-page .orbit-outer { width: 430px; height: 430px; border-style: dashed; animation: systemOrbit 28s linear infinite; }
.landing-page .orbit-inner { width: 290px; height: 290px; border-color: rgba(141,241,207,.28); animation: systemOrbit 18s linear infinite reverse; }
.landing-page .orbit-outer::before,
.landing-page .orbit-inner::before {
  content: '';
  position: absolute;
  left: 50%;
  top: -5px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 22px rgba(255,255,255,.9);
}
.landing-page .orbit-inner::before { background: #8df1cf; box-shadow: 0 0 22px #8df1cf; }
@keyframes systemOrbit { to { transform: translate(-50%,-50%) rotate(360deg); } }
.landing-page .system-scan {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 390px;
  height: 390px;
  border-radius: 50%;
  transform: translate(-50%,-50%);
  background: conic-gradient(from 20deg, transparent 0 78%, rgba(144,152,255,.22) 94%, transparent 100%);
  animation: systemScan 8s linear infinite;
}
@keyframes systemScan { to { transform: translate(-50%,-50%) rotate(360deg); } }
.landing-page .system-core {
  position: absolute;
  z-index: 5;
  left: 50%;
  top: 50%;
  width: 196px;
  height: 196px;
  transform: translate(-50%,-50%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 50%;
  background: rgba(248,249,247,.96);
  color: #111318;
  border: 1px solid #fff;
  box-shadow: 0 0 0 14px rgba(255,255,255,.04), 0 28px 75px rgba(0,0,0,.42), inset 0 1px 0 #fff;
  animation: systemCore 4.6s ease-in-out infinite;
}
.landing-page .system-core img { width: 38px; height: 38px; object-fit: contain; margin-bottom: 9px; }
.landing-page .system-core small { font-size: .55rem; letter-spacing: .17em; color: #777c83; }
.landing-page .system-core strong { margin: 7px 0 9px; font: 800 1.15rem/.95 var(--font-display); letter-spacing: -.045em; }
.landing-page .system-core span { font: 800 .5rem/1 var(--font-body); letter-spacing: .13em; color: #16775a; }
@keyframes systemCore {
  50% { transform: translate(-50%,-50%) scale(1.035); box-shadow: 0 0 0 22px rgba(255,255,255,.025), 0 34px 90px rgba(0,0,0,.5), 0 0 55px rgba(126,139,255,.2); }
}
.landing-page .system-node {
  --node-delay: 0s;
  position: absolute;
  z-index: 6;
  min-width: 132px;
  padding: 11px 13px;
  display: flex;
  align-items: center;
  gap: 9px;
  border-radius: 14px;
  color: #f7f8f5;
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.2);
  box-shadow: 0 16px 38px rgba(0,0,0,.2), inset 0 1px 0 rgba(255,255,255,.13);
  backdrop-filter: blur(18px) saturate(150%);
  animation: systemNode 4s ease-in-out infinite;
  animation-delay: var(--node-delay);
}
.landing-page .system-node i {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  border-radius: 50%;
  color: #0d1013;
  background: #8df1cf;
  font: 800 .54rem/1 var(--font-body);
  font-style: normal;
  box-shadow: 0 0 18px rgba(141,241,207,.24);
}
.landing-page .system-node b { font-size: .72rem; white-space: nowrap; }
.landing-page .node-1 { left: 18px; top: 34px; --node-delay: -.4s; }
.landing-page .node-2 { right: 18px; top: 34px; --node-delay: -1.8s; }
.landing-page .node-3 { left: 8px; top: 190px; --node-delay: -2.8s; }
.landing-page .node-4 { right: 8px; top: 190px; --node-delay: -3.7s; }
.landing-page .node-5 { left: 18px; bottom: 92px; --node-delay: -1.2s; }
.landing-page .node-6 { right: 18px; bottom: 92px; --node-delay: -2.2s; }
.landing-page .node-7 { left: 76px; bottom: 16px; --node-delay: -3.2s; }
.landing-page .node-8 { right: 76px; bottom: 16px; --node-delay: -.7s; }
@keyframes systemNode {
  50% { transform: translateY(-8px); border-color: rgba(141,241,207,.4); background: rgba(255,255,255,.14); }
}
.landing-page .system-footer { padding-block: 18px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.5); }
.landing-page .system-footer > i {
  position: relative;
  width: 42%;
  height: 1px;
  overflow: visible;
  background: rgba(255,255,255,.18);
}
.landing-page .system-footer > i b {
  position: absolute;
  top: -3px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #8df1cf;
  box-shadow: 0 0 18px #8df1cf;
  animation: systemData 3.2s ease-in-out infinite;
}
@keyframes systemData { to { left: calc(100% - 7px); } }

@media(max-width:600px) {
  .landing-page .direction-system { min-height: 650px; border-radius: 30px; }
  .landing-page .system-head { padding: 18px; }
  .landing-page .system-head small { display: none; }
  .landing-page .system-field { height: 520px; }
  .landing-page .orbit-outer { width: 320px; height: 320px; }
  .landing-page .orbit-inner { width: 230px; height: 230px; }
  .landing-page .system-scan { width: 300px; height: 300px; }
  .landing-page .system-core { width: 158px; height: 158px; }
  .landing-page .system-core img { width: 30px; height: 30px; margin-bottom: 6px; }
  .landing-page .system-core strong { font-size: .95rem; }
  .landing-page .system-node { min-width: 0; padding: 8px 9px; gap: 6px; }
  .landing-page .system-node i { width: 20px; height: 20px; }
  .landing-page .system-node b { font-size: .59rem; }
  .landing-page .node-1 { left: 8px; top: 25px; }
  .landing-page .node-2 { right: 8px; top: 25px; }
  .landing-page .node-3 { left: 3px; top: 155px; }
  .landing-page .node-4 { right: 3px; top: 155px; }
  .landing-page .node-5 { left: 4px; bottom: 105px; }
  .landing-page .node-6 { right: 4px; bottom: 105px; }
  .landing-page .node-7 { left: 12px; bottom: 24px; }
  .landing-page .node-8 { right: 12px; bottom: 24px; }
  .landing-page .system-footer { padding: 15px 18px; font-size: .54rem; }
}

/* ============ CINEMATIC MONOCHROME SITE SYSTEM ============ */
.landing-page {
  --cinema-black: #07090c;
  --cinema-navy: #0d131b;
  --cinema-steel: #18212c;
  --cinema-silver: #d9dee5;
  --cinema-white: #f7f8f8;
  --cinema-line: rgba(220,230,242,.16);
  color: var(--cinema-white);
  background: var(--cinema-black);
}
.landing-page .cursor-glow {
  background: radial-gradient(circle, rgba(150,177,211,.14), rgba(150,177,211,0) 70%);
}
.landing-page section:not(.hero) {
  position: relative;
  border-top: 1px solid var(--cinema-line);
}
.landing-page .eyebrow {
  color: rgba(239,244,249,.76);
  background: rgba(209,220,233,.08);
  border-color: rgba(220,231,243,.2);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12);
}
.landing-page .section-head h2,
.landing-page .manifesto-copy h2,
.landing-page .trust-alt-copy h2,
.landing-page .guarantee h2,
.landing-page .cta-final h2 {
  color: var(--cinema-white);
  text-wrap: balance;
}
.landing-page .section-head p,
.landing-page .manifesto-copy p,
.landing-page .trust-alt-copy p,
.landing-page .guarantee p,
.landing-page .cta-final-inner > p {
  color: rgba(223,229,236,.65);
}

/* moving silver light shared by the dark sections */
.landing-page .how::after,
.landing-page .features::after,
.landing-page .pricing::after {
  content: '';
  position: absolute;
  z-index: 0;
  top: 0;
  bottom: 0;
  width: 38%;
  pointer-events: none;
  background: linear-gradient(105deg, transparent, rgba(190,208,230,.07), transparent);
  filter: blur(18px);
  animation: cinemaLight 13s ease-in-out infinite alternate;
}
.landing-page .how > .container,
.landing-page .features > .container,
.landing-page .pricing > .container { position: relative; z-index: 1; }
@keyframes cinemaLight { from { left: -35%; } to { left: 98%; } }

/* brand / audience strip */
.landing-page .logos {
  color: rgba(239,243,248,.62);
  background: linear-gradient(180deg, #0a0d12, #101720);
}
.landing-page .logos-label { color: rgba(225,232,240,.54); }
.landing-page .brand { color: rgba(244,246,248,.76); }

/* manifesto */
.landing-page .manifesto {
  background:
    radial-gradient(circle at 18% 45%, rgba(123,149,180,.16), transparent 34rem),
    linear-gradient(145deg, #111923, #07090c 76%);
}
.landing-page .manifesto-copy h2 span { color: #a9b5c3; }
.landing-page .manifesto-lead { color: #e9edf1 !important; }
.landing-page .manifesto-watermark { opacity: .035; filter: invert(1); }
.landing-page .kinetic-line { color: rgba(218,225,233,.76); }

/* production workflow */
.landing-page .how {
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 22%, rgba(106,133,164,.13), transparent 30rem),
    #0b0f15;
}
.landing-page .production-timeline::before {
  background: linear-gradient(90deg, rgba(222,231,240,.1), rgba(222,231,240,.48), rgba(222,231,240,.1));
}
.landing-page .production-phase {
  color: var(--cinema-white);
  background: linear-gradient(145deg, rgba(218,227,238,.1), rgba(255,255,255,.025));
  border-color: rgba(218,228,240,.17);
  box-shadow: 0 24px 65px rgba(0,0,0,.24), inset 0 1px 0 rgba(255,255,255,.1);
}
.landing-page .production-phase:hover {
  border-color: rgba(222,232,243,.38);
  box-shadow: 0 30px 80px rgba(0,0,0,.34), 0 0 45px rgba(133,158,188,.08);
}
.landing-page .production-phase p { color: rgba(221,228,236,.6); }
.landing-page .production-phase small { color: #9eabb9; }
.landing-page .phase-object {
  color: #11151a;
  background: linear-gradient(145deg, #f8f9fa, #aeb9c6);
  border-color: rgba(255,255,255,.78);
  box-shadow: 0 16px 45px rgba(0,0,0,.3), inset 0 1px 0 #fff;
}

/* work showcase */
.landing-page .showcase {
  background:
    radial-gradient(circle at 10% 40%, rgba(126,150,181,.12), transparent 27rem),
    linear-gradient(180deg, #090c11, #111822);
}
.landing-page .showcase::before { background: rgba(121,146,178,.12); }
.landing-page .showcase-tabs .tab-btn {
  color: #d9e0e8;
  background: rgba(205,217,230,.08);
  border-color: rgba(219,230,241,.18);
  box-shadow: 0 12px 32px rgba(0,0,0,.16), inset 0 1px 0 rgba(255,255,255,.1);
}
.landing-page .showcase-tabs .tab-btn.active {
  color: #111318;
  background: linear-gradient(145deg, #fff, #cbd3dc);
  border-color: #fff;
  box-shadow: 0 15px 38px rgba(0,0,0,.3), inset 0 1px 0 #fff;
}
.landing-page .video-card {
  color: var(--cinema-white);
  background: rgba(214,225,237,.06);
  border-color: rgba(219,229,240,.16);
  box-shadow: 0 24px 70px rgba(0,0,0,.24), inset 0 1px 0 rgba(255,255,255,.08);
}
.landing-page .video-card:hover {
  border-color: rgba(225,234,244,.32);
  box-shadow: 0 30px 80px rgba(0,0,0,.4);
}
.landing-page .video-meta p { color: rgba(220,228,236,.58); }

/* capabilities */
.landing-page .features {
  overflow: hidden;
  background: linear-gradient(155deg, #121923, #080a0e 72%);
}
.landing-page .feature-card {
  color: var(--cinema-white);
  background: linear-gradient(145deg, rgba(218,227,238,.095), rgba(255,255,255,.025));
  border-color: rgba(218,228,240,.16);
  box-shadow: 0 26px 70px rgba(0,0,0,.2), inset 0 1px 0 rgba(255,255,255,.08);
}
.landing-page .feature-card:hover {
  border-color: rgba(226,235,244,.34);
  background: linear-gradient(145deg, rgba(226,234,243,.14), rgba(255,255,255,.035));
}
.landing-page .feature-card p { color: rgba(220,228,236,.6); }
.landing-page .feature-icon,
.landing-page .icon-smoked,
.landing-page .icon-silver,
.landing-page .icon-teal {
  color: #0c1117;
  background: linear-gradient(145deg, #f7f8f9, #aebac8);
  border: 1px solid rgba(255,255,255,.76);
  box-shadow: 0 12px 30px rgba(0,0,0,.24), inset 0 1px 0 #fff;
}

/* experience counters */
.landing-page .stats {
  background: #06080b;
  border-block: 1px solid rgba(221,230,240,.16);
}
.landing-page .stat {
  background: transparent;
  border-color: rgba(221,230,240,.13);
}
.landing-page .stat-number {
  color: #f5f7f8;
  background: none;
  -webkit-text-fill-color: currentColor;
}
.landing-page .stat-label { color: rgba(219,227,236,.56); }

/* deliberate light contrast section */
.landing-page .trust-alt {
  color: #11151a;
  background:
    radial-gradient(circle at 84% 16%, rgba(255,255,255,.95), transparent 25rem),
    linear-gradient(145deg, #edf0f3, #c8d0d9);
}
.landing-page .trust-alt .eyebrow {
  color: #37404a;
  background: rgba(255,255,255,.38);
  border-color: rgba(255,255,255,.7);
}
.landing-page .trust-alt-copy h2 { color: #101419; }
.landing-page .trust-alt-copy p { color: #4f5964; }
.landing-page .trust-alt-list {
  background: rgba(255,255,255,.44);
  border-color: rgba(255,255,255,.72);
  box-shadow: 0 30px 80px rgba(31,39,49,.13), inset 0 1px 0 #fff;
}
.landing-page .trust-alt-list li { border-color: rgba(41,50,60,.11); }
.landing-page .trust-alt-list li strong { color: #151a20; }
.landing-page .trust-alt-list li span { color: #5c6671; }
.landing-page .trust-alt-icon {
  color: #fff;
  background: #121820;
  box-shadow: 0 10px 26px rgba(18,24,32,.18);
}

/* pricing */
.landing-page .pricing {
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 10%, rgba(121,147,179,.14), transparent 32rem),
    #090c11;
}
.landing-page .price-card {
  color: var(--cinema-white);
  background: linear-gradient(150deg, rgba(218,227,238,.1), rgba(255,255,255,.025));
  border-color: rgba(220,229,240,.17);
  box-shadow: 0 28px 80px rgba(0,0,0,.24), inset 0 1px 0 rgba(255,255,255,.09);
}
.landing-page .price-card.popular {
  background: linear-gradient(145deg, rgba(222,231,241,.17), rgba(118,140,168,.08));
  border-color: rgba(235,241,247,.42);
  box-shadow: 0 35px 95px rgba(0,0,0,.4), 0 0 70px rgba(135,158,185,.1);
}
.landing-page .price-desc,
.landing-page .price-period,
.landing-page .pricing-note { color: rgba(220,228,236,.58); }
.landing-page .price-features li { color: rgba(236,240,244,.8); border-color: rgba(220,229,239,.1); }
.landing-page .price-features li::before { color: #b9c8d7; }
.landing-page .popular-badge {
  color: #11151a;
  background: linear-gradient(145deg, #fff, #bdc8d4);
}

/* security */
.landing-page .guarantee {
  background: linear-gradient(145deg, #111923, #06080b);
}
.landing-page .guarantee-inner {
  color: var(--cinema-white);
  background: linear-gradient(140deg, rgba(220,229,239,.11), rgba(255,255,255,.025));
  border-color: rgba(221,230,240,.18);
  box-shadow: 0 35px 90px rgba(0,0,0,.3), inset 0 1px 0 rgba(255,255,255,.1);
}
.landing-page .guarantee-badge {
  color: #10151b;
  background: linear-gradient(145deg, #fff, #acb9c7);
  border-color: #fff;
  box-shadow: 0 18px 45px rgba(0,0,0,.3), 0 0 55px rgba(171,191,214,.13);
}
.landing-page .trust-badges span {
  color: rgba(236,240,244,.8);
  background: rgba(222,231,241,.08);
  border-color: rgba(222,231,241,.16);
}

/* light FAQ */
.landing-page .faq {
  color: #11151a;
  background: linear-gradient(155deg, #e9edf1, #cbd3dc);
}
.landing-page .faq .eyebrow {
  color: #37404a;
  background: rgba(255,255,255,.4);
  border-color: rgba(255,255,255,.72);
}
.landing-page .faq .section-head h2 { color: #11151a; }
.landing-page .faq-item {
  color: #171c22;
  background: rgba(255,255,255,.47);
  border-color: rgba(255,255,255,.75);
  box-shadow: 0 18px 48px rgba(34,42,52,.08), inset 0 1px 0 #fff;
}
.landing-page .faq-item.open {
  background: rgba(255,255,255,.68);
  border-color: rgba(255,255,255,.92);
}
.landing-page .faq-a p { color: #56606b; }

/* final conversion area */
.landing-page .cta-final {
  background:
    radial-gradient(circle at 50% 8%, rgba(130,157,190,.18), transparent 30rem),
    linear-gradient(180deg, #101720, #05070a);
}
.landing-page .quote-watermark { opacity: .035; filter: invert(1); }
.landing-page .quote-strip {
  background: linear-gradient(135deg, rgba(220,229,240,.14), rgba(255,255,255,.055));
  border-color: rgba(226,234,243,.25);
  box-shadow: 0 28px 75px rgba(0,0,0,.34), inset 0 1px 0 rgba(255,255,255,.12);
}
.landing-page .quote-strip-cta {
  color: #11151a;
  background: linear-gradient(145deg, #fff, #c6d0db);
}
.landing-page .quote-form,
.landing-page .quote-success {
  color: #161b21;
  background: linear-gradient(145deg, rgba(250,251,251,.96), rgba(211,218,226,.9));
  border-color: rgba(255,255,255,.95);
  box-shadow: 0 36px 100px rgba(0,0,0,.4), inset 0 1px 0 #fff;
}
.landing-page .quote-form h3,
.landing-page .quote-success h3 { color: #11151a; }
.landing-page .quote-form p,
.landing-page .quote-success p,
.landing-page .quote-form label { color: #4f5964; }
.landing-page .quote-form input,
.landing-page .quote-form select,
.landing-page .quote-form textarea {
  color: #151a20;
  background: rgba(255,255,255,.72);
  border-color: rgba(66,78,91,.18);
}
.landing-page .quote-form input:focus,
.landing-page .quote-form select:focus,
.landing-page .quote-form textarea:focus {
  border-color: #66788c;
  box-shadow: 0 0 0 4px rgba(102,120,140,.12);
}
.landing-page .quote-form .btn-primary {
  color: #fff;
  background: #111820;
  border-color: #111820;
}

.landing-page .site-footer {
  color: rgba(232,237,242,.7);
  background: #040609;
  border-color: rgba(221,230,240,.13);
}
.landing-page .site-footer h4,
.landing-page .footer-brand .logo { color: #f5f7f8; }
.landing-page .site-footer a:hover { color: #fff; }

@media(max-width:860px) {
  .landing-page .how::after,
  .landing-page .features::after,
  .landing-page .pricing::after { display: none; }
}

/* ============ STRICT BLACK / WHITE SECTION RHYTHM ============ */
/* 01 light */
.landing-page .logos {
  color: #252b32;
  background: linear-gradient(145deg, #f5f6f7, #d5dbe2);
  border-top-color: rgba(255,255,255,.88);
}
.landing-page .logos-label { color: #69737e; }
.landing-page .brand { color: #252c34; }

/* 03 light */
.landing-page .how {
  color: #11161c;
  background:
    radial-gradient(circle at 78% 22%, rgba(255,255,255,.96), transparent 30rem),
    linear-gradient(145deg, #edf0f3, #ccd4dd);
  border-top-color: rgba(255,255,255,.86);
}
.landing-page .how .eyebrow {
  color: #3c4651;
  background: rgba(255,255,255,.42);
  border-color: rgba(255,255,255,.76);
}
.landing-page .how .section-head h2 { color: #10151b; }
.landing-page .how .section-head p { color: #505a65; }
.landing-page .how::after {
  background: linear-gradient(105deg, transparent, rgba(255,255,255,.48), transparent);
}
.landing-page .how .production-timeline::before {
  background: linear-gradient(90deg, rgba(30,39,49,.05), rgba(30,39,49,.34), rgba(30,39,49,.05));
}
.landing-page .how .production-phase {
  color: #12171d;
  background: rgba(255,255,255,.47);
  border-color: rgba(255,255,255,.76);
  box-shadow: 0 24px 65px rgba(31,40,51,.1), inset 0 1px 0 #fff;
}
.landing-page .how .production-phase:hover {
  border-color: #fff;
  background: rgba(255,255,255,.68);
  box-shadow: 0 30px 75px rgba(31,40,51,.16), inset 0 1px 0 #fff;
}
.landing-page .how .production-phase p { color: #5c6671; }
.landing-page .how .production-phase small { color: #687482; }
.landing-page .how .phase-object {
  color: #fff;
  background: linear-gradient(145deg, #202832, #080b0f);
  border-color: rgba(255,255,255,.28);
  box-shadow: 0 17px 42px rgba(17,23,30,.24), inset 0 1px 0 rgba(255,255,255,.16);
}

/* 05 light */
.landing-page .features {
  color: #11161c;
  background:
    radial-gradient(circle at 16% 12%, rgba(255,255,255,.98), transparent 28rem),
    linear-gradient(150deg, #eef1f4, #cbd3dc);
  border-top-color: rgba(255,255,255,.86);
}
.landing-page .features .eyebrow {
  color: #3d4752;
  background: rgba(255,255,255,.43);
  border-color: rgba(255,255,255,.76);
}
.landing-page .features .section-head h2 { color: #10151b; }
.landing-page .features::after {
  background: linear-gradient(105deg, transparent, rgba(255,255,255,.52), transparent);
}
.landing-page .features .feature-card {
  color: #12171d;
  background: rgba(255,255,255,.48);
  border-color: rgba(255,255,255,.78);
  box-shadow: 0 25px 70px rgba(31,40,51,.1), inset 0 1px 0 #fff;
}
.landing-page .features .feature-card:hover {
  background: rgba(255,255,255,.72);
  border-color: #fff;
  box-shadow: 0 30px 78px rgba(31,40,51,.16), inset 0 1px 0 #fff;
}
.landing-page .features .feature-card p { color: #596470; }
.landing-page .features .feature-icon {
  color: #fff;
  background: linear-gradient(145deg, #242c35, #07090d);
  border-color: rgba(255,255,255,.25);
  box-shadow: 0 13px 32px rgba(17,23,30,.23), inset 0 1px 0 rgba(255,255,255,.16);
}

/* 09 light */
.landing-page .guarantee {
  color: #11161c;
  background:
    radial-gradient(circle at 85% 20%, rgba(255,255,255,.98), transparent 27rem),
    linear-gradient(145deg, #edf0f3, #cad2db);
  border-top-color: rgba(255,255,255,.86);
}
.landing-page .guarantee-inner {
  color: #12171d;
  background: rgba(255,255,255,.48);
  border-color: rgba(255,255,255,.78);
  box-shadow: 0 35px 90px rgba(31,40,51,.13), inset 0 1px 0 #fff;
}
.landing-page .guarantee h2 { color: #10151b; }
.landing-page .guarantee p { color: #56616c; }
.landing-page .guarantee-badge {
  color: #fff;
  background: linear-gradient(145deg, #222a33, #080a0e);
  border-color: rgba(255,255,255,.3);
  box-shadow: 0 18px 45px rgba(18,24,31,.24), inset 0 1px 0 rgba(255,255,255,.16);
}
.landing-page .trust-badges span {
  color: #343d47;
  background: rgba(255,255,255,.48);
  border-color: rgba(255,255,255,.8);
}

/* 10 dark */
.landing-page .faq {
  color: var(--cinema-white);
  background:
    radial-gradient(circle at 15% 20%, rgba(124,150,181,.13), transparent 27rem),
    linear-gradient(150deg, #111822, #06080b);
  border-top-color: rgba(220,230,242,.16);
}
.landing-page .faq .eyebrow {
  color: rgba(239,244,249,.76);
  background: rgba(209,220,233,.08);
  border-color: rgba(220,231,243,.2);
}
.landing-page .faq .section-head h2 { color: var(--cinema-white); }
.landing-page .faq-item,
.landing-page .faq-item.open {
  color: var(--cinema-white);
  background: linear-gradient(145deg, rgba(218,227,238,.09), rgba(255,255,255,.025));
  border-color: rgba(219,229,240,.16);
  box-shadow: 0 22px 60px rgba(0,0,0,.22), inset 0 1px 0 rgba(255,255,255,.08);
}
.landing-page .faq-item.open {
  border-color: rgba(226,235,244,.32);
  background: linear-gradient(145deg, rgba(226,234,243,.14), rgba(255,255,255,.035));
}
.landing-page .faq-a p { color: rgba(220,228,236,.62); }

/* 11 light */
.landing-page .cta-final {
  color: #11161c;
  background:
    radial-gradient(circle at 50% 8%, rgba(255,255,255,.98), transparent 30rem),
    linear-gradient(145deg, #eef1f4, #c9d1da);
  border-top-color: rgba(255,255,255,.86);
}
.landing-page .cta-final h2 { color: #10151b; }
.landing-page .cta-final-inner > p { color: #55606b; }
.landing-page .quote-watermark { opacity: .045; filter: none; }
.landing-page .quote-strip {
  color: #fff;
  background: linear-gradient(145deg, #1a222c, #07090d);
  border-color: rgba(255,255,255,.2);
  box-shadow: 0 28px 75px rgba(25,32,41,.25), inset 0 1px 0 rgba(255,255,255,.13);
}

/* ============ ACCESSIBILITY + WARMER CONVERSION PALETTE ============ */
/* experience is intentionally light, not another black band */
.landing-page .stats {
  color: #121820;
  background:
    radial-gradient(circle at 50% -80%, rgba(255,255,255,.95), transparent 65%),
    linear-gradient(110deg, #dce2e8, #aeb9c5 52%, #d5dce3);
  border-block-color: rgba(255,255,255,.78);
}
.landing-page .stats .stat {
  background: rgba(255,255,255,.18);
  border-color: rgba(255,255,255,.46);
}
.landing-page .stats .stat-number {
  color: #10161d;
  text-shadow: 0 1px 0 rgba(255,255,255,.5);
}
.landing-page .stats .stat-label { color: #4c5864; }

/* blue-grey pricing lifts the page without breaking the cinematic palette */
.landing-page .pricing {
  color: #10161d;
  background:
    radial-gradient(circle at 50% 0, rgba(255,255,255,.4), transparent 32rem),
    linear-gradient(145deg, #9aa8b7, #68798b 58%, #8796a6);
  border-top-color: rgba(255,255,255,.34);
}
.landing-page .pricing::after {
  background: linear-gradient(105deg, transparent, rgba(255,255,255,.2), transparent);
}
.landing-page .pricing .eyebrow {
  color: #25313d;
  background: rgba(255,255,255,.3);
  border-color: rgba(255,255,255,.5);
}
.landing-page .pricing .section-head h2 { color: #0e141a; }
.landing-page .pricing .section-head p { color: #2f3b47; }
.landing-page .pricing .price-card {
  color: #11171e;
  background: rgba(247,249,250,.72);
  border-color: rgba(255,255,255,.75);
  box-shadow: 0 28px 80px rgba(23,32,42,.18), inset 0 1px 0 #fff;
}
.landing-page .pricing .price-card.popular {
  color: #f7f8f9;
  background: linear-gradient(150deg, #26313d, #10161d);
  border-color: rgba(255,255,255,.32);
  box-shadow: 0 36px 95px rgba(20,28,37,.34), inset 0 1px 0 rgba(255,255,255,.14);
}
.landing-page .pricing .price-card:not(.popular) h3,
.landing-page .pricing .price-card:not(.popular) .price-value,
.landing-page .pricing .price-card:not(.popular) .currency { color: #11171e; }
.landing-page .pricing .price-card:not(.popular) .price-desc,
.landing-page .pricing .price-card:not(.popular) .price-period { color: #596573; }
.landing-page .pricing .price-card:not(.popular) .price-features li {
  color: #303b46;
  border-color: rgba(33,43,54,.1);
}
.landing-page .pricing .price-card.popular h3,
.landing-page .pricing .price-card.popular .price-value,
.landing-page .pricing .price-card.popular .currency { color: #fff; }
.landing-page .pricing .price-card.popular .price-desc,
.landing-page .pricing .price-card.popular .price-period { color: rgba(231,237,243,.68); }
.landing-page .pricing .price-card.popular .price-features li {
  color: rgba(241,244,247,.84);
  border-color: rgba(255,255,255,.1);
}
.landing-page .pricing .price-card:not(.popular) .btn-secondary,
.landing-page .pricing .price-card:not(.popular) .btn-ghost {
  color: #fff;
  background: #17202a;
  border-color: #17202a;
}
.landing-page .pricing-note { color: #26323e; font-weight: 600; }

/* FAQ inherited an old dark question color */
.landing-page .faq .faq-q { color: #f4f6f8; }
.landing-page .faq .faq-q svg { color: #aab7c5; }
.landing-page .faq .faq-item.open .faq-q svg { color: #fff; }
.landing-page .faq .faq-a p { color: #c3cdd7; }

/* clearly rounded security surface */
.landing-page .guarantee-inner {
  border-radius: 42px;
  padding: clamp(30px,5vw,64px);
  overflow: hidden;
}

/* warmer, less clinical quote area */
.landing-page .cta-final {
  background:
    radial-gradient(circle at 52% 0, rgba(255,255,255,.92), transparent 30rem),
    linear-gradient(145deg, #e7e1d9, #c9c2b8 58%, #ddd7cf);
}
.landing-page .cta-final h2 { color: #191714; }
.landing-page .cta-final-inner > p { color: #5e5952; }
.landing-page .quote-strip {
  border-radius: 38px;
  overflow: hidden;
  padding: clamp(25px,4vw,40px);
  background:
    radial-gradient(circle at 85% 20%, rgba(155,175,197,.22), transparent 18rem),
    linear-gradient(145deg, #27313c, #11171e);
  border-color: rgba(255,255,255,.24);
  box-shadow: 0 30px 78px rgba(43,40,35,.22), inset 0 1px 0 rgba(255,255,255,.14);
}
.landing-page .quote-strip:hover {
  background:
    radial-gradient(circle at 82% 18%, rgba(176,196,218,.28), transparent 19rem),
    linear-gradient(145deg, #303b47, #151c24);
}
.landing-page .quote-strip-cta {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: 999px;
  color: #11161c;
  background: linear-gradient(145deg, #fff, #d4dbe2);
  box-shadow: 0 12px 30px rgba(0,0,0,.2), inset 0 1px 0 #fff;
}

@media(max-width:600px) {
  .landing-page .guarantee-inner { border-radius: 30px; padding: 28px 20px; }
  .landing-page .quote-strip { border-radius: 30px; }
}

/* ============ BORDERLESS DIRECTION SYSTEM + GREY / WHITE FLOW ============ */
.landing-page .direction-system {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}
.landing-page .direction-system::before { opacity: .12; }
.landing-page .system-head { border-bottom-color: rgba(255,255,255,.09); }
.landing-page .system-footer { border-top-color: rgba(255,255,255,.09); }

/* From the production process onward: white and grey alternate, no black sections. */
.landing-page .showcase {
  color: #f8fafb;
  background:
    radial-gradient(circle at 12% 28%, rgba(255,255,255,.22), transparent 28rem),
    linear-gradient(145deg, #8996a3, #637180 58%, #7d8a97);
  border-top-color: rgba(255,255,255,.36);
}
.landing-page .showcase::before { background: rgba(255,255,255,.1); }
.landing-page .showcase .section-head h2 { color: #fff; }
.landing-page .showcase .section-head p { color: rgba(247,249,251,.78); }
.landing-page .showcase .eyebrow {
  color: #fff;
  background: rgba(255,255,255,.13);
  border-color: rgba(255,255,255,.26);
}
.landing-page .showcase .video-card {
  color: #fff;
  background: rgba(247,249,251,.12);
  border-color: rgba(255,255,255,.26);
  box-shadow: 0 24px 70px rgba(36,46,57,.18), inset 0 1px 0 rgba(255,255,255,.16);
}
.landing-page .showcase .video-meta p { color: rgba(247,249,251,.72); }
.landing-page .showcase .showcase-tabs .tab-btn {
  color: #fff;
  background: rgba(255,255,255,.13);
  border-color: rgba(255,255,255,.28);
}
.landing-page .showcase .showcase-tabs .tab-btn.active {
  color: #18202a;
  background: linear-gradient(145deg, #fff, #d8dfe6);
  border-color: #fff;
}

.landing-page .stats {
  background:
    radial-gradient(circle at 50% -80%, rgba(255,255,255,.95), transparent 65%),
    linear-gradient(110deg, #c7cfd7, #9eabb7 52%, #c0c8d1);
  padding-block: 110px;
}

.landing-page .faq {
  color: #151b22;
  background:
    radial-gradient(circle at 18% 15%, rgba(255,255,255,.38), transparent 28rem),
    linear-gradient(145deg, #9ca8b4, #778592 58%, #919da9);
  border-top-color: rgba(255,255,255,.35);
}
.landing-page .faq .eyebrow {
  color: #25303b;
  background: rgba(255,255,255,.3);
  border-color: rgba(255,255,255,.5);
}
.landing-page .faq .section-head h2 { color: #11171e; }
.landing-page .faq .faq-item,
.landing-page .faq .faq-item.open {
  color: #141a21;
  background: rgba(249,250,251,.68);
  border-color: rgba(255,255,255,.78);
  box-shadow: 0 22px 60px rgba(36,46,57,.14), inset 0 1px 0 #fff;
}
.landing-page .faq .faq-item.open { background: rgba(255,255,255,.84); }
.landing-page .faq .faq-q { color: #141a21; }
.landing-page .faq .faq-q svg { color: #52606d; }
.landing-page .faq .faq-a p { color: #4f5b67; }

.landing-page .site-footer {
  color: rgba(248,250,251,.8);
  background: linear-gradient(145deg, #6f7c88, #4d5965);
  border-top-color: rgba(255,255,255,.24);
}
.landing-page .site-footer h4,
.landing-page .footer-brand .logo { color: #fff; }
.landing-page .site-footer p,
.landing-page .site-footer a { color: rgba(248,250,251,.72); }

@media(max-width:600px) {
  .landing-page .stats { padding-block: 72px; }
}

/* ============ EVOLVING PRODUCTION OBJECTS ============ */
.landing-page .production-phase .phase-object {
  width: 104px;
  height: 104px;
  overflow: hidden;
}
.landing-page .production-phase .phase-object > i {
  position: absolute;
  z-index: 1;
  display: block;
  pointer-events: none;
}
.landing-page .production-phase .phase-object > span {
  z-index: 5;
  color: #fff;
  text-shadow: 0 2px 14px rgba(44,20,86,.42);
}
.landing-page .production-phase:hover .phase-object::before {
  animation-duration: 3.4s;
}

/* 00 / Brief: a soft idea taking its first breath */
.landing-page .phase-brief .phase-object {
  border-radius: 50%;
  animation: briefBreathe 4.8s ease-in-out infinite;
}
.landing-page .phase-brief .phase-object::before {
  animation-duration: 9s;
  animation-direction: reverse;
}
.landing-page .brief-pulse {
  inset: 13%;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.42);
  box-shadow: inset 0 0 22px rgba(255,255,255,.14), 0 0 20px rgba(22,215,232,.2);
  animation: briefPulse 2.4s ease-out infinite;
}
@keyframes briefBreathe {
  0%,100% { transform: scale(.94); border-radius: 50%; }
  50% { transform: scale(1.06); border-radius: 46% 54% 50% 50% / 54% 47% 53% 46%; }
}
@keyframes briefPulse {
  0% { transform: scale(.72); opacity: 0; }
  35% { opacity: .72; }
  100% { transform: scale(1.14); opacity: 0; }
}

/* 01 / Concept: a lens choosing the visual direction */
.landing-page .phase-concept .phase-object {
  width: 116px;
  height: 88px;
  border-radius: 50%;
  transform: rotate(-10deg);
  animation: conceptLens 5.6s ease-in-out infinite;
}
.landing-page .phase-concept .phase-object::before {
  animation-duration: 7.5s;
  animation-delay: -2s;
}
.landing-page .concept-ring {
  inset: 12%;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.5);
}
.landing-page .concept-ring.ring-a { animation: lensOrbitA 4.2s linear infinite; }
.landing-page .concept-ring.ring-b {
  inset: 24% 8%;
  border-color: rgba(22,215,232,.58);
  animation: lensOrbitB 3.4s linear infinite reverse;
}
@keyframes conceptLens {
  0%,100% { transform: rotate(-10deg) scale(.96); }
  50% { transform: rotate(7deg) scale(1.04); }
}
@keyframes lensOrbitA { to { transform: rotate(360deg) scaleX(.76); } }
@keyframes lensOrbitB { to { transform: rotate(360deg) scaleY(.68); } }

/* 02 / Bible: modular rules repeatedly lock into a system */
.landing-page .phase-bible .phase-object {
  width: 102px;
  height: 102px;
  border-radius: 25px;
  animation: bibleFrame 5.5s ease-in-out infinite;
}
.landing-page .phase-bible .phase-object::before {
  animation-duration: 8.5s;
  animation-delay: -4s;
}
.landing-page .bible-module {
  width: 29%;
  height: 29%;
  border-radius: 9px;
  border: 1px solid rgba(255,255,255,.48);
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(4px);
}
.landing-page .module-a { left: 15%; top: 15%; animation: moduleA 3.8s ease-in-out infinite; }
.landing-page .module-b { right: 15%; top: 15%; animation: moduleB 3.8s ease-in-out infinite; }
.landing-page .module-c { left: 15%; bottom: 15%; animation: moduleC 3.8s ease-in-out infinite; }
.landing-page .module-d { right: 15%; bottom: 15%; animation: moduleD 3.8s ease-in-out infinite; }
@keyframes bibleFrame { 50% { border-radius: 36px 22px 34px 24px; transform: rotate(3deg); } }
@keyframes moduleA { 0%,100%{transform:translate(-9px,-9px)}50%{transform:translate(0,0)} }
@keyframes moduleB { 0%,100%{transform:translate(9px,-9px)}50%{transform:translate(0,0)} }
@keyframes moduleC { 0%,100%{transform:translate(-9px,9px)}50%{transform:translate(0,0)} }
@keyframes moduleD { 0%,100%{transform:translate(9px,9px)}50%{transform:translate(0,0)} }

/* 03 / Production: faster generative core with orbiting particles */
.landing-page .phase-production {
  transform: translateY(-12px);
  border-color: rgba(105,70,245,.28);
  box-shadow: 0 30px 78px rgba(63,54,110,.14), inset 0 1px 0 #fff;
}
.landing-page .phase-production:hover { transform: translateY(-20px); }
.landing-page .phase-production .phase-object {
  width: 116px;
  height: 116px;
  border-radius: 38% 62% 56% 44% / 58% 36% 64% 42%;
  animation: productionCore 3.2s ease-in-out infinite alternate;
}
.landing-page .phase-production .phase-object::before {
  animation-duration: 4.6s;
  animation-delay: -1s;
}
.landing-page .production-particle {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 13px rgba(255,255,255,.8);
  left: calc(50% - 4px);
  top: calc(50% - 4px);
}
.landing-page .particle-a { animation: particleOrbitA 2.6s linear infinite; }
.landing-page .particle-b { animation: particleOrbitB 3.4s linear infinite reverse; }
@keyframes productionCore {
  to { border-radius: 63% 37% 42% 58% / 34% 61% 39% 66%; transform: rotate(8deg) scale(1.06); }
}
@keyframes particleOrbitA { to { transform: rotate(360deg) translateX(43px) rotate(-360deg); } }
@keyframes particleOrbitB { to { transform: rotate(360deg) translateY(38px) rotate(-360deg); } }

/* 72 / Delivery: motion resolves into a stable final frame */
.landing-page .phase-delivery .phase-object {
  width: 120px;
  height: 88px;
  border-radius: 24px;
  animation: deliverySettle 6s ease-in-out infinite;
}
.landing-page .phase-delivery .phase-object::before {
  animation-duration: 10s;
  animation-delay: -6s;
}
.landing-page .delivery-frame {
  inset: 10px;
  border-radius: 17px;
  border: 1px solid rgba(255,255,255,.45);
}
.landing-page .delivery-frame::after {
  content: '';
  position: absolute;
  left: 8px;
  right: 8px;
  top: 8px;
  height: 2px;
  border-radius: 2px;
  background: rgba(255,255,255,.8);
  box-shadow: 0 0 12px rgba(255,255,255,.75);
  animation: deliveryScan 3.2s ease-in-out infinite;
}
.landing-page .delivery-check {
  right: 15px;
  bottom: 13px;
  width: 13px;
  height: 7px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
  animation: deliveryCheck 3.2s ease-in-out infinite;
}
@keyframes deliverySettle {
  0%,20% { transform: scale(.94) rotate(-3deg); border-radius: 34px 20px 30px 22px; }
  55%,100% { transform: scale(1) rotate(0); border-radius: 24px; }
}
@keyframes deliveryScan {
  0% { transform: translateY(0); opacity: 0; }
  18% { opacity: .9; }
  65% { transform: translateY(50px); opacity: .7; }
  85%,100% { transform: translateY(50px); opacity: 0; }
}
@keyframes deliveryCheck {
  0%,62% { opacity: 0; transform: rotate(-45deg) scale(.4); }
  76%,96% { opacity: 1; transform: rotate(-45deg) scale(1); }
  100% { opacity: 0; transform: rotate(-45deg) scale(1); }
}

@media(max-width:1080px) {
  .landing-page .phase-production { transform: none; }
  .landing-page .phase-production:hover { transform: translateY(-8px); }
}

/* Lock each outer object to its own motion instead of the legacy shared morph. */
.landing-page .how .production-timeline .phase-brief .phase-object {
  animation: briefBreathe 4.8s ease-in-out infinite;
}
.landing-page .how .production-timeline .phase-concept .phase-object {
  animation: conceptLens 5.6s ease-in-out infinite;
}
.landing-page .how .production-timeline .phase-bible .phase-object {
  animation: bibleFrame 5.5s ease-in-out infinite;
}
.landing-page .how .production-timeline .phase-production .phase-object {
  animation: productionCore 3.2s ease-in-out infinite alternate;
}
.landing-page .how .production-timeline .phase-delivery .phase-object {
  animation: deliverySettle 6s ease-in-out infinite;
}

/* Animated AI crew headline accent */
.landing-page .hero-liquid-title {
  color: transparent;
  background:
    linear-gradient(90deg, var(--reel-optical-cyan), #4f8df7, var(--reel-optical-indigo), var(--reel-optical-blue), var(--reel-optical-cyan));
  background-size: 260% 100%;
  background-repeat: no-repeat;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
  filter: drop-shadow(0 8px 24px rgba(77,60,184,.2));
  animation: reelusionAccentFlow 6s ease-in-out infinite;
}
