/* ═══════════════════════════════════════════════════
   GLINT ARCHIVE — LANDING PAGE STYLES
   Premium dark glassmorphism · "Launching Soon"
   ═══════════════════════════════════════════════════ */

/* ─── Design Tokens ──────────────────────────────── */
:root {
  --bg:           #060610;
  --surface:      #0d0d1f;
  --text:         #f0f0ff;
  --text-muted:   #7c7ca8;
  --text-faint:   #3d3d5c;

  --accent:       #00f2ff;
  --accent-dim:   rgba(0, 242, 255, 0.15);
  --accent-glow:  rgba(0, 242, 255, 0.25);
  --accent-deep:  rgba(0, 242, 255, 0.07);

  --purple:       #9b6dff;
  --purple-dim:   rgba(155, 109, 255, 0.15);

  --glass:        rgba(255, 255, 255, 0.04);
  --glass-border: rgba(255, 255, 255, 0.09);
  --glass-hover:  rgba(255, 255, 255, 0.08);

  --nav-h:        72px;
  --radius-sm:    12px;
  --radius:       20px;
  --radius-lg:    32px;

  --shadow-card:  0 24px 64px rgba(0,0,0,0.6);
  --shadow-glow:  0 0 40px var(--accent-glow);
  --shadow-purple: 0 0 40px rgba(155,109,255,0.2);
}

/* ─── Reset & Base ───────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

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

#bg-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
}

/* ─── Typography ─────────────────────────────────── */
h1, h2, h3 {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.gradient-text {
  background: linear-gradient(135deg, #fff 20%, var(--accent) 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-headline {
  background: linear-gradient(120deg, var(--accent) 0%, var(--purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── Layout ─────────────────────────────────────── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

section { position: relative; }

/* ─── Buttons ────────────────────────────────────── */
.btn-accent {
  background: var(--accent);
  color: #000;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: var(--shadow-glow);
  white-space: nowrap;
}
.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 60px var(--accent-glow), 0 8px 24px rgba(0,0,0,0.4);
}
.btn-accent.sm { padding: 10px 20px; font-size: 13px; }

.btn-ghost {
  background: var(--glass);
  color: var(--text);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--glass-border);
  cursor: pointer;
  transition: all 0.25s ease;
  backdrop-filter: blur(12px);
  white-space: nowrap;
}
.btn-ghost:hover {
  background: var(--glass-hover);
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-1px);
}

/* ─── Glass ──────────────────────────────────────── */
.glass {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

/* ─── Section Eyebrow ────────────────────────────── */
.section-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

/* ─── Section Header ─────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header h2 { font-size: clamp(32px, 5vw, 48px); margin-bottom: 16px; }
.section-subtitle { color: var(--text-muted); font-size: 18px; max-width: 600px; margin: 0 auto; }

/* ─── Blobs ──────────────────────────────────────── */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}
.blob-1 { width: 600px; height: 600px; background: rgba(0,242,255,0.12); top: -200px; left: -150px; }
.blob-2 { width: 500px; height: 500px; background: rgba(155,109,255,0.12); top: 100px; right: -200px; }
.blob-3 { width: 300px; height: 300px; background: rgba(0,242,255,0.08); bottom: -100px; left: 30%; }
.blob-w1 { width: 700px; height: 700px; background: rgba(155,109,255,0.1); top: -300px; right: -200px; }
.blob-w2 { width: 500px; height: 500px; background: rgba(0,242,255,0.1); bottom: -200px; left: -100px; }

/* ════════════════════════════════════════════════════
   NAVIGATION
   ════════════════════════════════════════════════════ */
.glass-nav {
  position: fixed;
  top: 0; left: 0; width: 100%;
  height: var(--nav-h);
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}
.glass-nav.scrolled {
  background: rgba(6, 6, 16, 0.85);
  border-bottom-color: var(--glass-border);
  backdrop-filter: blur(24px);
}

.nav-container {
  max-width: 1160px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
}
.nav-logo { width: 30px; height: 30px; }
.brand-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.04em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a:not(.btn-accent) {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:not(.btn-accent):hover { color: var(--text); }

/* Mobile menu button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}
.mobile-menu-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-btn.open span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: rgba(6,6,16,0.98);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--glass-border);
  display: flex;
  flex-direction: column;
  padding: 16px 24px 24px;
  gap: 4px;
  z-index: 99;
  transform: translateY(-120%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-menu.open { transform: translateY(0); }
.mobile-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 17px;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid var(--glass-border);
  transition: color 0.2s;
}
.mobile-link:last-child { border-bottom: none; }
.mobile-link:hover, .mobile-link.highlight { color: var(--accent); }

/* ════════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 48px) 24px 80px;
  overflow: hidden;
}

.hero-inner {
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Launch badge */
.launch-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent-deep);
  border: 1px solid var(--glass-border);
  border-left: 2px solid var(--accent);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 28px;
}
.badge-dot {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
  flex-shrink: 0;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}

.hero-title {
  font-size: clamp(42px, 6vw, 72px);
  margin-bottom: 24px;
  color: var(--text);
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 40px;
  line-height: 1.75;
}

/* Hero form */
.hero-form { margin-bottom: 24px; }
.input-group {
  display: flex;
  gap: 0;
  max-width: 480px;
}
.email-input {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--glass-border);
  border-right: none;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  color: var(--text);
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  padding: 14px 18px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.email-input::placeholder { color: var(--text-faint); }
.email-input:focus {
  border-color: var(--accent);
  background: rgba(0,242,255,0.05);
}
.hero-submit {
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 14px 24px;
  min-width: 120px;
  justify-content: center;
}
.form-note {
  font-size: 13px;
  color: var(--text-faint);
  margin-top: 10px;
}

/* Hero success state */
.hero-form-success {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--accent-deep);
  border: 1px solid rgba(0,242,255,0.2);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  max-width: 480px;
  margin-bottom: 24px;
}
.success-icon { font-size: 24px; color: var(--accent); flex-shrink: 0; }
.hero-form-success strong { color: var(--text); display: block; margin-bottom: 4px; }
.hero-form-success p { font-size: 14px; color: var(--text-muted); }

/* Social proof */
.social-proof {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  color: var(--text-muted);
}
.avatars { display: flex; }
.avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--bg);
  margin-left: -8px;
  color: #000;
}
.avatar:first-child { margin-left: 0; }
.av1 { background: #00f2ff; }
.av2 { background: #9b6dff; }
.av3 { background: #f59e0b; }
.av4 { background: #10b981; }
.social-proof strong { color: var(--text); }

/* ─── Hero Visual / Portal Mockup ────────────────── */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.portal-mockup {
  width: 100%;
  max-width: 420px;
  background: rgba(13,13,31,0.9);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card), 0 0 60px rgba(155,109,255,0.15);
  overflow: hidden;
  backdrop-filter: blur(24px);
}

.mockup-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--glass-border);
  background: rgba(255,255,255,0.02);
}
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot.r { background: #ff5f57; }
.dot.y { background: #febc2e; }
.dot.g { background: #28c840; }
.mockup-url {
  margin-left: 8px;
  font-size: 12px;
  color: var(--text-faint);
  font-family: monospace;
}

.mockup-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mock-capture-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  padding: 14px;
  animation: slide-in-card 0.6s ease both;
}
@keyframes slide-in-card {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.mock-platform-badge {
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 100px;
  display: inline-block;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.mock-platform-badge.ig { background: rgba(225,48,108,0.2); color: #e1306c; border: 1px solid rgba(225,48,108,0.3); }
.mock-platform-badge.x  { background: rgba(255,255,255,0.1); color: #ccc; border: 1px solid rgba(255,255,255,0.15); }
.mock-platform-badge.yt { background: rgba(255,0,0,0.15); color: #f33; border: 1px solid rgba(255,0,0,0.2); }

.mock-img-placeholder {
  width: 100%; height: 64px;
  background: linear-gradient(135deg, rgba(155,109,255,0.2) 0%, rgba(0,242,255,0.1) 100%);
  border-radius: 8px;
  margin-bottom: 10px;
}

.mock-line {
  height: 9px;
  border-radius: 100px;
  background: var(--text-faint);
  margin-bottom: 7px;
  opacity: 0.4;
}
.mock-line.full  { width: 100%; }
.mock-line.long  { width: 80%; }
.mock-line.medium{ width: 60%; }
.mock-line.short { width: 40%; }

.mock-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  flex-wrap: wrap;
}
.mock-tag {
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 100px;
  background: var(--accent-dim);
  color: var(--accent);
  border: 1px solid rgba(0,242,255,0.2);
}
.mock-timestamp {
  font-size: 10px;
  color: var(--text-faint);
  margin-left: auto;
}

/* ════════════════════════════════════════════════════
   WHAT IS GLINT
   ════════════════════════════════════════════════════ */
.what-section {
  padding: 120px 0;
}
.what-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.what-text h2 {
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 24px;
}
.what-text p {
  color: var(--text-muted);
  font-size: 16px;
  margin-bottom: 16px;
  line-height: 1.8;
}
.what-text p:last-child { margin-bottom: 0; }

.what-cards-stack {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.stack-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  font-weight: 500;
  transition: transform 0.3s, border-color 0.3s;
}
.stack-card:hover {
  border-color: rgba(255,255,255,0.2);
  transform: translateX(4px);
}
.stack-icon { font-size: 20px; flex-shrink: 0; }
.stack-line { flex: 1; height: 1px; background: var(--glass-border); margin-left: auto; max-width: 60px; }
.stack-glow {
  position: absolute;
  bottom: -60px; left: 50%;
  transform: translateX(-50%);
  width: 200px; height: 200px;
  background: var(--accent);
  filter: blur(80px);
  opacity: 0.08;
  pointer-events: none;
}

/* ════════════════════════════════════════════════════
   FEATURES — BENTO GRID
   ════════════════════════════════════════════════════ */
.features-section {
  padding: 120px 0;
  background: radial-gradient(ellipse at center, rgba(155,109,255,0.04) 0%, transparent 70%);
}

.features-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: auto;
  gap: 20px;
}

.bento-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 36px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.bento-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.16);
  box-shadow: var(--shadow-card);
}
.bento-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.02) 0%, transparent 60%);
  pointer-events: none;
}
.bento-wide { grid-column: span 2; }

.bento-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(0,242,255,0.2);
  padding: 3px 10px;
  border-radius: 100px;
  display: inline-block;
  margin-bottom: 20px;
}

.feature-icon-lg {
  font-size: 36px;
  margin-bottom: 16px;
  display: block;
}

.bento-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}
.bento-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 0;
}

.platform-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.pill {
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 100px;
  background: var(--glass-hover);
  border: 1px solid var(--glass-border);
  color: var(--text-muted);
}

.color-swatches {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.swatch {
  width: 28px; height: 28px;
  border-radius: 50%;
  display: block;
  border: 2px solid rgba(255,255,255,0.1);
  transition: transform 0.2s;
}
.swatch:hover { transform: scale(1.2); }

kbd {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 5px;
  padding: 2px 7px;
  font-size: 12px;
  font-family: monospace;
  color: var(--text-muted);
}

/* ════════════════════════════════════════════════════
   WHO IT'S FOR
   ════════════════════════════════════════════════════ */
.who-section { padding: 120px 0; }

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

.persona-card {
  padding: 32px;
  border-radius: var(--radius);
  transition: transform 0.3s, border-color 0.3s;
}
.persona-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.16);
}
.persona-emoji { font-size: 36px; margin-bottom: 16px; display: block; }
.persona-card h3 { font-size: 18px; margin-bottom: 12px; }
.persona-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ════════════════════════════════════════════════════
   PRICING
   ════════════════════════════════════════════════════ */
.pricing-section {
  padding: 120px 0;
  background: radial-gradient(ellipse at center top, rgba(0,242,255,0.04) 0%, transparent 60%);
}

.pricing-grid {
  display: flex;
  gap: 24px;
  justify-content: center;
  max-width: 860px;
  margin: 0 auto 40px;
}

.pricing-card {
  flex: 1;
  padding: 44px;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
}
.pricing-card:hover { transform: translateY(-4px); }
.pricing-card.featured {
  border-color: rgba(0,242,255,0.3);
  background: rgba(0,242,255,0.03);
  box-shadow: 0 0 60px rgba(0,242,255,0.1), var(--shadow-card);
  position: relative;
}

.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #000;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 100px;
  white-space: nowrap;
}

.plan-label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 12px;
}
.plan-price {
  font-size: 56px;
  font-weight: 900;
  font-family: 'Outfit', sans-serif;
  margin-bottom: 16px;
  line-height: 1;
}
.plan-price span { font-size: 18px; font-weight: 400; color: var(--text-muted); }
.plan-desc { font-size: 14px; color: var(--text-muted); margin-bottom: 28px; line-height: 1.6; }

.plan-features {
  list-style: none;
  flex: 1;
  margin-bottom: 32px;
}
.plan-features li {
  font-size: 14px;
  color: var(--text-muted);
  padding: 9px 0;
  border-bottom: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  gap: 10px;
}
.plan-features li:last-child { border-bottom: none; }
.plan-features li::before {
  content: "✓";
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
}
.plan-features li strong { color: var(--text); }

.plan-cta {
  width: 100%;
  justify-content: center;
  text-align: center;
  font-size: 15px;
}
.plan-cta-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.save-badge {
  font-size: 11px;
  font-style: normal;
  background: var(--accent-dim);
  color: var(--accent);
  border-radius: 100px;
  padding: 2px 8px;
  font-weight: 700;
}

.pricing-note {
  text-align: center;
  font-size: 15px;
  color: var(--text-muted);
}
.pricing-note strong { color: var(--text); }

/* ════════════════════════════════════════════════════
   WAITLIST SECTION
   ════════════════════════════════════════════════════ */
.waitlist-section {
  padding: 120px 0 160px;
}

.waitlist-inner {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  text-align: center;
}

.waitlist-content { position: relative; z-index: 1; }
.waitlist-content h2 { font-size: clamp(36px, 5vw, 56px); margin-bottom: 20px; }
.waitlist-content > p {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.75;
}

.waitlist-form { margin-bottom: 12px; }
.wl-input-row {
  display: flex;
  gap: 0;
  max-width: 500px;
  margin: 0 auto;
}
.wl-email { border-radius: var(--radius-sm) 0 0 var(--radius-sm); }
.wl-submit {
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 14px 28px;
  min-width: 160px;
  justify-content: center;
  font-size: 15px;
}

/* Waitlist success */
.waitlist-success { margin: 0 auto 32px; max-width: 480px; }
.success-card {
  padding: 32px;
  border-radius: var(--radius);
  text-align: center;
}
.success-sparkle {
  font-size: 32px;
  color: var(--accent);
  margin-bottom: 12px;
  animation: spin-sparkle 4s linear infinite;
}
@keyframes spin-sparkle {
  0%   { transform: rotate(0deg) scale(1); }
  50%  { transform: rotate(180deg) scale(1.2); }
  100% { transform: rotate(360deg) scale(1); }
}
.success-card h3 { margin-bottom: 8px; font-size: 22px; }
.success-card p  { color: var(--text-muted); font-size: 15px; }
.success-card strong { color: var(--accent); }

/* Perks */
.wl-perks {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 400px;
  margin: 32px auto 0;
  text-align: left;
}
.wl-perk {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  color: var(--text-muted);
}
.perk-icon { font-size: 18px; flex-shrink: 0; }

/* ════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════ */
.site-footer {
  border-top: 1px solid var(--glass-border);
  padding: 60px 0 40px;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.03em;
}
.footer-logo { width: 26px; height: 26px; }
.footer-tagline { font-size: 14px; color: var(--text-faint); font-style: italic; }

.footer-bottom {
  border-top: 1px solid var(--glass-border);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--text-faint);
}
.footer-links { display: flex; gap: 20px; }
.footer-links a {
  color: var(--text-faint);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--text-muted); }

/* ════════════════════════════════════════════════════
   SCROLL ANIMATIONS
   ════════════════════════════════════════════════════ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered delays for grids */
.bento-card:nth-child(1)  { transition-delay: 0.05s; }
.bento-card:nth-child(2)  { transition-delay: 0.1s; }
.bento-card:nth-child(3)  { transition-delay: 0.15s; }
.bento-card:nth-child(4)  { transition-delay: 0.2s; }
.bento-card:nth-child(5)  { transition-delay: 0.25s; }
.bento-card:nth-child(6)  { transition-delay: 0.3s; }

.persona-card:nth-child(1) { transition-delay: 0.05s; }
.persona-card:nth-child(2) { transition-delay: 0.1s; }
.persona-card:nth-child(3) { transition-delay: 0.15s; }
.persona-card:nth-child(4) { transition-delay: 0.2s; }
.persona-card:nth-child(5) { transition-delay: 0.25s; }
.persona-card:nth-child(6) { transition-delay: 0.3s; }

/* ════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .features-bento { grid-template-columns: repeat(2, 1fr); }
  .bento-wide { grid-column: span 2; }
  .persona-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 48px; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .input-group { flex-direction: column; }
  .email-input {
    border-right: 1px solid var(--glass-border);
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  }
  .hero-submit {
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    width: 100%;
    justify-content: center;
  }
  .launch-badge { justify-content: center; }
  .hero-form { max-width: 100%; }
  .social-proof { justify-content: center; }

  .what-grid { grid-template-columns: 1fr; gap: 48px; }
  .features-bento { grid-template-columns: 1fr; }
  .bento-wide { grid-column: span 1; }
  .persona-grid { grid-template-columns: 1fr; }

  .pricing-grid { flex-direction: column; align-items: center; }
  .pricing-card { max-width: 400px; width: 100%; }

  .wl-input-row { flex-direction: column; }
  .wl-email { border-radius: var(--radius-sm) var(--radius-sm) 0 0; border-right: 1px solid var(--glass-border); }
  .wl-submit { border-radius: 0 0 var(--radius-sm) var(--radius-sm); width: 100%; }

  .footer-top { flex-direction: column; gap: 8px; text-align: center; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }

  .nav-links { display: none; }
  .mobile-menu-btn { display: flex; }

  .hero-visual { order: -1; }
  .portal-mockup { max-width: 340px; }
}

@media (max-width: 480px) {
  .hero { padding-top: calc(var(--nav-h) + 32px); }
  .hero-title { font-size: 36px; }
  .bento-card { padding: 24px; }
  .persona-card { padding: 24px; }
  .pricing-card { padding: 28px; }
}
