/* =============================================
   QUARVO — styles.css
   Aesthetic: Deep Space / Quantum Premium
   Fonts: Syne (display) + DM Sans (body) + DM Mono
============================================= */

:root {
  --bg:        #08080F;
  --bg-2:      #0E0E1A;
  --bg-3:      #141428;
  --surface:   #1A1A30;
  --border:    rgba(123,47,255,0.18);
  --border-subtle: rgba(255,255,255,0.06);

  --violet:    #7B2FFF;
  --violet-soft: rgba(123,47,255,0.15);
  --cyan:      #00F5FF;
  --cyan-soft: rgba(0,245,255,0.1);
  --white:     #F0F0F8;
  --muted:     #6A6A88;
  --muted-2:   #9090B0;

  --font-display: 'Syne', sans-serif;
  --font-body:    'DM Sans', sans-serif;
  --font-mono:    'DM Mono', monospace;

  --radius:    12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --shadow-violet: 0 0 40px rgba(123,47,255,0.25);
  --shadow-cyan:   0 0 40px rgba(0,245,255,0.15);
  --shadow-card:   0 24px 80px rgba(0,0,0,0.6);
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
input, button { font-family: var(--font-body); }

/* SCROLLBAR */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--violet); border-radius: 3px; }

/* =============================================
   LAYOUT HELPERS
============================================= */
.section-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =============================================
   NAV
============================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 24px;
  transition: background 0.3s, border-bottom 0.3s;
}
.nav.scrolled {
  background: rgba(8,8,15,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
}
.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-icon {
  display: block;
  flex-shrink: 0;
}
.logo-wordmark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 0.04em;
  color: var(--white);
  line-height: 1;
}
.nav-links {
  display: flex;
  gap: 32px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 400;
  color: var(--muted-2);
  transition: color 0.2s;
  letter-spacing: 0.02em;
}
.nav-links a:hover { color: var(--white); }

.btn-nav {
  background: var(--violet);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  padding: 9px 20px;
  border-radius: 8px;
  letter-spacing: 0.02em;
  transition: opacity 0.2s, transform 0.2s;
}
.btn-nav:hover { opacity: 0.85; transform: translateY(-1px); }

/* =============================================
   BUTTONS
============================================= */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--violet);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
  box-shadow: 0 4px 24px rgba(123,47,255,0.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(123,47,255,0.55);
}
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--muted-2);
  font-size: 15px;
  font-weight: 400;
  padding: 14px 20px;
  border-radius: var(--radius);
  border: 1px solid var(--border-subtle);
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}
.btn-ghost:hover { color: var(--white); border-color: var(--border); }

/* =============================================
   SECTION TAGS & TITLES
============================================= */
.section-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
  background: var(--cyan-soft);
  border: 1px solid rgba(0,245,255,0.2);
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 24px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 56px;
}
.title-accent { color: var(--cyan); }
.title-muted { color: var(--muted); }

/* =============================================
   HERO
============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding-top: 68px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
}
.orb-1 {
  width: 600px; height: 600px;
  background: var(--violet);
  top: -200px; right: -100px;
  animation: float1 12s ease-in-out infinite;
}
.orb-2 {
  width: 400px; height: 400px;
  background: var(--cyan);
  bottom: -100px; left: -80px;
  opacity: 0.15;
  animation: float2 10s ease-in-out infinite;
}
.orb-3 {
  width: 300px; height: 300px;
  background: #2A0A6E;
  top: 40%; left: 30%;
  opacity: 0.5;
  animation: float3 14s ease-in-out infinite;
}

@keyframes float1 {
  0%,100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(-30px, 40px) scale(1.05); }
}
@keyframes float2 {
  0%,100% { transform: translate(0,0); }
  50% { transform: translate(20px, -30px); }
}
@keyframes float3 {
  0%,100% { transform: translate(0,0); }
  50% { transform: translate(-20px, 20px); }
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(123,47,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(123,47,255,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1140px;
  margin: 0 auto;
  padding: 80px 24px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cyan);
  background: var(--cyan-soft);
  border: 1px solid rgba(0,245,255,0.2);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 28px;
}
.badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 6px var(--cyan);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 18px;
  font-weight: 300;
  color: var(--muted-2);
  line-height: 1.6;
  margin-bottom: 36px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--muted);
  font-family: var(--font-mono);
  letter-spacing: 0.03em;
}
.trust-dot { color: var(--violet); opacity: 0.6; }

/* PURCHASE CARD */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.purchase-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px;
  width: 100%;
  max-width: 400px;
  box-shadow: var(--shadow-card), 0 0 60px rgba(123,47,255,0.2);
  animation: cardFloat 8s ease-in-out infinite;
  position: relative;
  z-index: 1;
}
@keyframes cardFloat {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.purchase-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.purchase-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.purchase-tag {
  font-size: 12px;
  font-weight: 500;
  color: var(--cyan);
  background: var(--cyan-soft);
  border: 1px solid rgba(0,245,255,0.2);
  padding: 3px 10px;
  border-radius: 20px;
}
.purchase-amount {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1;
}
.purchase-cents {
  font-size: 28px;
  color: var(--muted);
}

.split-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}

.cards-list { display: flex; flex-direction: column; gap: 10px; }

.card-item {
  background: var(--bg-3);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 12px 14px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-rows: auto auto;
  gap: 4px 10px;
  align-items: center;
  transition: border-color 0.2s;
}
.card-item:hover { border-color: var(--border); }

.card-chip {
  width: 24px; height: 18px;
  border-radius: 4px;
  grid-row: 1 / 3;
}
.card-item--1 .card-chip { background: linear-gradient(135deg, #FFD700, #FFA500); }
.card-item--2 .card-chip { background: linear-gradient(135deg, #E8E8E8, #A0A0A0); }
.card-item--3 .card-chip { background: linear-gradient(135deg, #4AA8FF, #1A7FFF); }

.card-info { display: flex; flex-direction: column; gap: 1px; }
.card-name { font-size: 12px; font-weight: 500; color: var(--white); }
.card-last { font-family: var(--font-mono); font-size: 10px; color: var(--muted); }

.card-amount {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  grid-row: 1;
}
.card-bar {
  grid-column: 2 / 4;
  height: 3px;
  background: var(--surface);
  border-radius: 2px;
  overflow: hidden;
}
.card-bar-fill {
  height: 100%;
  border-radius: 2px;
  transition: width 1s ease;
}
.card-item--1 .card-bar-fill { background: linear-gradient(90deg, var(--violet), var(--cyan)); }
.card-item--2 .card-bar-fill { background: linear-gradient(90deg, #7B2FFF99, var(--violet)); }
.card-item--3 .card-bar-fill { background: linear-gradient(90deg, #4AA8FF, var(--violet)); }

.purchase-footer {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--border-subtle);
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.06em;
}
.purchase-footer svg { flex-shrink: 0; }

/* FLOAT BADGES */
.float-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 500;
  color: var(--muted-2);
  white-space: nowrap;
  box-shadow: var(--shadow-card);
}
.float-1 {
  top: 10%; right: -10%;
  animation: floatBadge1 7s ease-in-out infinite;
}
.float-2 {
  bottom: 15%; left: -8%;
  animation: floatBadge2 9s ease-in-out infinite;
}
@keyframes floatBadge1 {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes floatBadge2 {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.4;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--violet), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* =============================================
   STATS BAR
============================================= */
.stats-bar {
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  background: var(--bg-2);
  padding: 32px 24px;
}
.stats-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.stat-item { text-align: center; flex: 1; min-width: 160px; }
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 4px;
}
.stat-item--accent .stat-num { color: var(--cyan); }
.stat-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border-subtle);
  flex-shrink: 0;
}

/* =============================================
   PROBLEM
============================================= */
.problem {
  padding: 120px 0;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 64px;
}

.problem-card {
  background: var(--bg-2);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: border-color 0.3s, transform 0.3s;
}
.problem-card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
}
.problem-card--highlight {
  border-color: var(--border);
  background: var(--bg-3);
  position: relative;
  overflow: hidden;
}
.problem-card--highlight::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at center, rgba(123,47,255,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.problem-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--bg-3);
  border-radius: 12px;
  margin-bottom: 16px;
}
.problem-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.problem-card p {
  font-size: 15px;
  color: var(--muted-2);
  line-height: 1.65;
}

.problem-quote {
  display: flex;
  align-items: center;
  gap: 32px;
}
.quote-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--violet), transparent);
}
blockquote {
  text-align: center;
  font-size: 17px;
  font-weight: 300;
  color: var(--muted-2);
  line-height: 1.75;
  font-style: normal;
  max-width: 640px;
  flex-shrink: 0;
}
blockquote em {
  color: var(--cyan);
  font-style: normal;
}

/* =============================================
   SOLUTION
============================================= */
.solution {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}
.solution-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.sol-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.2;
}
.sol-orb-1 { width: 500px; height: 500px; background: var(--violet); top: -100px; right: -100px; }
.sol-orb-2 { width: 400px; height: 400px; background: var(--cyan); bottom: -100px; left: -100px; opacity: 0.08; }

.solution-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 72px;
  position: relative;
  z-index: 1;
}

.solution-feature {
  background: var(--bg-2);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}
.solution-feature:hover {
  border-color: var(--border);
  transform: translateY(-4px);
}
.solution-feature::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--violet), var(--cyan));
  opacity: 0;
  transition: opacity 0.3s;
}
.solution-feature:hover::after { opacity: 1; }

.feature-number {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--violet);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  opacity: 0.8;
}
.solution-feature h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.solution-feature p {
  font-size: 15px;
  color: var(--muted-2);
  line-height: 1.65;
}

/* VS BLOCK */
.vs-block {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: center;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 48px;
  position: relative;
  z-index: 1;
}

.vs-label {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.vs-label--bad { color: var(--muted); }
.vs-label--good { color: var(--cyan); }

.vs-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }

.vs-list li {
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.vs-list li::before {
  content: '';
  width: 16px; height: 16px;
  border-radius: 50%;
  flex-shrink: 0;
}
.vs-list--bad li {
  color: var(--muted-2);
}
.vs-list--bad li::before {
  background: rgba(255,80,80,0.15);
  border: 1px solid rgba(255,80,80,0.3);
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 3l4 4M7 3l-4 4' stroke='%23ff5050' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
.vs-list--good li {
  color: var(--white);
}
.vs-list--good li::before {
  background: rgba(0,245,255,0.1);
  border: 1px solid rgba(0,245,255,0.3);
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.5 5l2 2 3-3' stroke='%2300F5FF' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.vs-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  position: relative;
}
.vs-divider::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 1px;
  background: var(--border);
}
.vs-atom {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-2);
  padding: 8px;
  position: relative;
  z-index: 1;
  border-radius: 12px;
  filter: drop-shadow(0 0 12px rgba(0,245,255,0.3));
}

/* =============================================
   HOW IT WORKS
============================================= */
.how {
  padding: 120px 0;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-bottom: 80px;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 16.6%;
  right: 16.6%;
  height: 1px;
  background: linear-gradient(90deg, var(--violet), var(--cyan), var(--violet));
  opacity: 0.3;
}

.step {
  position: relative;
  padding: 0 24px;
  text-align: center;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--bg-2);
  border: 2px solid var(--violet);
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 500;
  color: var(--violet);
  margin: 0 auto 28px;
  box-shadow: 0 0 24px rgba(123,47,255,0.3);
  position: relative;
  z-index: 1;
}

.step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.step-content h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.step-content p {
  font-size: 15px;
  color: var(--muted-2);
  line-height: 1.65;
}

/* USE CASES */
.use-cases { text-align: center; }
.use-cases-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.use-cases-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.use-case {
  background: var(--bg-2);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 10px 20px;
  font-size: 14px;
  color: var(--muted-2);
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
  cursor: default;
}
.use-case:hover {
  border-color: var(--border);
  color: var(--white);
  transform: translateY(-2px);
}

/* =============================================
   MANIFESTO
============================================= */
.manifesto {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}
.manifesto-bg { position: absolute; inset: 0; pointer-events: none; }
.man-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.25;
  width: 600px; height: 600px;
  background: var(--violet);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

.manifesto-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 24px;
}
.manifesto-symbol {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
  animation: spinSlow 20s linear infinite;
  filter: drop-shadow(0 0 20px rgba(0,245,255,0.5));
}
@keyframes spinSlow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.manifesto-text {
  font-size: clamp(17px, 2.2vw, 22px);
  font-weight: 300;
  color: var(--muted-2);
  line-height: 1.8;
  margin-bottom: 40px;
}
.manifesto-text em {
  color: var(--cyan);
  font-style: normal;
  font-weight: 400;
}
.manifesto-text strong {
  color: var(--white);
  font-weight: 600;
}

.manifesto-tagline {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--white), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* =============================================
   FAQ
============================================= */
.faq { padding: 120px 0; }

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.faq-item {
  background: var(--bg-2);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  transition: border-color 0.3s;
}
.faq-item:hover { border-color: var(--border); }

.faq-q {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--white);
  letter-spacing: -0.01em;
}
.faq-a {
  font-size: 15px;
  color: var(--muted-2);
  line-height: 1.65;
}

/* =============================================
   WAITLIST
============================================= */
.waitlist {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}
.waitlist-bg { position: absolute; inset: 0; pointer-events: none; }
.wl-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}
.wl-orb-1 { width: 600px; height: 600px; background: var(--violet); opacity: 0.2; top: -100px; left: 50%; transform: translateX(-50%); }
.wl-orb-2 { width: 400px; height: 400px; background: var(--cyan); opacity: 0.06; bottom: -100px; right: -100px; }

.waitlist-content {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 24px;
}

.waitlist-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--cyan);
  background: var(--cyan-soft);
  border: 1px solid rgba(0,245,255,0.2);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 28px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.badge-dot--pulse {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  animation: pulseBig 1.5s ease-in-out infinite;
}
@keyframes pulseBig {
  0%,100% { box-shadow: 0 0 0 0 rgba(0,245,255,0.5); }
  50% { box-shadow: 0 0 0 6px rgba(0,245,255,0); }
}

.waitlist-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 20px;
}
.waitlist-sub {
  font-size: 17px;
  font-weight: 300;
  color: var(--muted-2);
  line-height: 1.65;
  margin-bottom: 40px;
}

.waitlist-form { margin-bottom: 32px; }
.form-row {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}
.form-input {
  flex: 1;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 18px;
  font-size: 15px;
  color: var(--white);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-input::placeholder { color: var(--muted); }
.form-input:focus {
  border-color: var(--violet);
  box-shadow: 0 0 0 3px rgba(123,47,255,0.15);
}
.btn-submit { white-space: nowrap; }

.form-note {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.form-success {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
  padding: 14px 20px;
  background: var(--cyan-soft);
  border: 1px solid rgba(0,245,255,0.25);
  border-radius: var(--radius);
  font-size: 15px;
  color: var(--cyan);
  font-weight: 500;
}
.form-success.visible { display: flex; }

.waitlist-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* =============================================
   FOOTER
============================================= */
.footer {
  border-top: 1px solid var(--border-subtle);
  padding: 48px 0;
}
.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-tagline {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.04em;
}
.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-links a {
  font-size: 13px;
  color: var(--muted);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }

.footer-legal {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  opacity: 0.5;
  letter-spacing: 0.04em;
}

/* =============================================
   ANIMATIONS — Page Load
============================================= */
.hero-badge,
.hero-title,
.hero-sub,
.hero-ctas,
.hero-trust,
.hero-visual {
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
}
.hero-badge    { animation-delay: 0.1s; }
.hero-title    { animation-delay: 0.2s; }
.hero-sub      { animation-delay: 0.35s; }
.hero-ctas     { animation-delay: 0.5s; }
.hero-trust    { animation-delay: 0.6s; }
.hero-visual   { animation-delay: 0.3s; animation-name: fadeLeft; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeLeft {
  from { opacity: 0; transform: translateX(24px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 60px; text-align: center; }
  .hero-ctas { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-visual { display: none; }
  .problem-grid { grid-template-columns: 1fr; }
  .solution-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 40px; }
  .steps::before { display: none; }
  .vs-block { grid-template-columns: 1fr; }
  .vs-divider { flex-direction: row; }
  .vs-divider::before { width: 100%; height: 1px; top: 50%; left: 0; }
  .faq-grid { grid-template-columns: 1fr; }
  .stats-inner { flex-direction: column; }
  .stat-divider { width: 60px; height: 1px; }
  .problem-quote { flex-direction: column; gap: 20px; }
  .quote-line { width: 60px; height: 1px; }
  .float-1, .float-2 { display: none; }
  .nav-links { display: none; }
  .form-row { flex-direction: column; }
}

@media (max-width: 480px) {
  .section-title { font-size: 28px; }
  .hero-title { font-size: 38px; }
  .hero-sub { font-size: 16px; }
}
