/* ═══════════════════════════════════════════════════
   PRODUCTIVE — Landing Page Design System
   Matches App Style: Dark Mode | Phosphor Green | Glass
   ═══════════════════════════════════════════════════ */

:root {
  /* Core palette from app */
  --bg-base:        #050508;
  --bg-surface:     #0a0a0f;
  --bg-elevated:    #12121c;
  --bg-overlay:     #181825;
  --glass-bg:       rgba(10, 10, 15, 0.65);
  --glass-border:   rgba(255, 255, 255, 0.05);

  /* Tokens */
  --accent:         #00ff88;
  --accent-glow:    rgba(0, 255, 136, 0.3);
  --accent-pulse:   rgba(0, 255, 136, 0.08);
  --text-primary:   #ffffff;
  --text-secondary: #a0a0c0;
  --text-muted:     #555570;
  
  --font-mono:  'Space Mono', monospace;
  --font-sans:  'Outfit', system-ui, sans-serif; /* Upgraded to Outfit */

  --radius-md: 12px;
  --radius-lg: 24px;
  --radius-xl: 40px;
  --radius-full: 9999px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-premium: 
    0 8px 32px rgba(0,0,0,0.5),
    0 16px 80px rgba(0,0,0,0.3);
  --shadow-glow: 0 0 20px var(--accent-glow);
}

/* ── Notifications ────────────────────────────── */
#notification-container {
  position: fixed;
  top: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 12px;
  pointer-events: none;
  width: 100%;
  max-width: 400px;
  padding: 0 20px;
}

.notification {
  pointer-events: auto;
  padding: 16px 24px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(13, 13, 20, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-premium);
  color: var(--text-primary);
  font-family: var(--font-mono);
  font-size: 14px;
  animation: notification-in 0.5s var(--ease-out) forwards;
  transition: all 0.3s var(--ease-out);
}

.notification.success { border-color: var(--accent); }
.notification.error { border-color: #ff4444; }
.notification.info { border-color: #44aaff; }

.notification.fade-out {
  opacity: 0;
  transform: translateY(-20px) translateX(-50%) scale(0.9) !important;
}

@keyframes notification-in {
  from { opacity: 0; transform: translateY(-20px) scale(0.9); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.notification-icon {
  font-size: 18px;
  flex-shrink: 0;
}

.notification-message {
  flex: 1;
}

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

html { scroll-behavior: smooth; }

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

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

.mesh-bg {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: 
    radial-gradient(at 0% 0%, rgba(0, 255, 136, 0.05) 0px, transparent 50%),
    radial-gradient(at 100% 0%, rgba(68, 170, 255, 0.05) 0px, transparent 50%),
    radial-gradient(at 50% 100%, rgba(204, 136, 255, 0.05) 0px, transparent 50%);
  z-index: -1;
}

/* ── Typography ────────────────────────────────── */
h1, h2, h3 { font-family: var(--font-mono); font-weight: 700; }
h4 { 
  font-family: var(--font-mono); 
  text-transform: uppercase; 
  letter-spacing: 0.2em; 
  color: var(--accent); 
  font-size: 14px;
  margin-bottom: 12px;
}

.text-accent { color: var(--accent); text-shadow: 0 0 20px var(--accent-glow); }
.text-muted { color: var(--text-muted); }

/* ── Components ────────────────────────────────── */
.aura-orb {
  position: fixed;
  width: 50vw;
  height: 50vw;
  border-radius: 50%;
  filter: blur(120px);
  z-index: -1;
  opacity: 0.1;
  pointer-events: none;
}

.orb-1 {
  background: radial-gradient(circle, var(--accent), transparent);
  top: -20%;
  left: -10%;
  animation: float 20s infinite ease-in-out;
}

.orb-2 {
  background: radial-gradient(circle, #44aaff, transparent);
  bottom: -10%;
  right: -5%;
  animation: float 25s infinite ease-in-out reverse;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s var(--ease-out);
  cursor: pointer;
  border: none;
  font-family: var(--font-mono);
  font-size: 14px;
}

.btn-primary {
  background: var(--accent);
  color: #000;
  box-shadow: 0 4px 14px 0 rgba(0, 255, 136, 0.39);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 255, 136, 0.5);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-primary);
  border: 1px solid var(--glass-border);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-lg { padding: 16px 32px; font-size: 16px; }
.btn-xl { padding: 20px 48px; font-size: 18px; border-radius: var(--radius-lg); }

.btn-glow {
  position: relative;
  box-shadow: 0 0 20px var(--accent-glow);
  animation: glow-pulse 3s infinite ease-in-out;
}

@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 15px var(--accent-glow); }
  50% { box-shadow: 0 0 30px var(--accent-glow); }
}

@media (max-width: 600px) {
  .hide-mobile { display: none !important; }
}

.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.05);
}

.glass-heavy {
  background: rgba(13, 13, 20, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 700;
  font-family: var(--font-mono);
  margin-bottom: 16px;
}
.badge-active { background: var(--accent-pulse); color: var(--accent); border: 1px solid var(--accent-glow); }

/* ── Navigation ────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; width: 100%;
  z-index: 100;
  height: 80px;
  display: flex;
  align-items: center;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.1em;
}

.logo-img { height: 32px; width: auto; }
.logo-text { color: var(--text-primary); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a:not(.btn) {
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover:not(.btn) { color: var(--accent); }

/* ── Hero ──────────────────────────────────────── */
.hero {
  padding: 160px 0 80px;
  text-align: center;
}

.hero h1 {
  font-size: clamp(32px, 8vw, 72px);
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero p {
  max-width: 600px;
  margin: 0 auto 40px;
  font-size: 18px;
  color: var(--text-secondary);
}

.hero-btns {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 80px;
}

.hero-preview {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.app-screenshot {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
  position: relative;
  z-index: 2;
}

.glow-orb {
  position: absolute;
  top: 50%; left: 50%;
  width: 80%; height: 80%;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
}

/* ── Features ──────────────────────────────────── */
.features { padding: 100px 0; }

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header h2 { font-size: 40px; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.feature-card {
  padding: 40px;
  border-radius: var(--radius-lg);
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-12px) scale(1.02);
  border-color: rgba(0, 255, 136, 0.3);
  background: rgba(0, 255, 136, 0.03);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 20px rgba(0, 255, 136, 0.1);
}

.featured-update {
  border: 1px solid rgba(0, 255, 136, 0.1);
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.03) 0%, transparent 100%);
}

.featured-update .badge {
    margin-bottom: 24px;
}

.feature-icon {
  font-size: 32px;
  color: var(--accent);
  margin-bottom: 24px;
}

.feature-card h3 { margin-bottom: 16px; font-size: 20px; }
.feature-card p { color: var(--text-secondary); font-size: 15px; }

/* ── Benefits ──────────────────────────────────── */
.benefits { padding: 60px 0; }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}
.benefit-card {
  padding: 48px 40px;
  text-align: center;
  border-radius: var(--radius-xl);
}
.benefit-number {
  font-family: var(--font-mono);
  font-size: 48px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 16px;
  display: block;
}
.benefit-card h3 { margin-bottom: 16px; font-size: 24px; }
.benefit-card p { color: var(--text-secondary); font-size: 16px; line-height: 1.7; }

/* ── Feature Detailed Sections ────────────────── */
.feature-detail { padding: 100px 0; }

.app-screenshot {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-premium);
  transition: transform 0.5s var(--ease-out);
}

.feature-detail:hover .app-screenshot {
  transform: scale(1.02);
}

/* ── AI Architect (Removed) ──────────────────── */
/* ── Gallery ─────────────────────────────────── */
.gallery { padding: 100px 0; background: rgba(255,255,255,0.01); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 60px;
}

.gallery-item {
  padding: 16px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.4s var(--ease-out);
}

.gallery-item img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  display: block;
}

.gallery-item:hover {
  transform: translateY(-12px) scale(1.02);
  border-color: var(--accent-glow);
}

.gallery-caption {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 16px;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: 1fr; }
}

/* ── CTA & Pricing ────────────────────────────── */

.ai-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.ai-text h2 { font-size: 40px; margin-bottom: 24px; }
.ai-text p { font-size: 18px; color: var(--text-secondary); margin-bottom: 32px; }

.ai-features {
  list-style: none;
}

.ai-features li {
  margin-bottom: 12px;
  font-weight: 500;
  display: flex;
  gap: 12px;
}

.ai-terminal {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.terminal-header {
  background: rgba(255,255,255,0.05);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--glass-border);
}

.dot { width: 10px; height: 10px; border-radius: 50%; background: #555; }
.terminal-title { font-family: var(--font-mono); font-size: 11px; margin-left: auto; color: var(--text-muted); }

.terminal-body {
  padding: 24px;
  font-family: var(--font-mono);
  font-size: 14px;
  min-height: 200px;
}

.line { margin-bottom: 12px; }
.prompt { color: var(--accent); }
.response { color: var(--text-secondary); opacity: 0; animation: typeIn 0.5s var(--ease-out) forwards; }
.response:nth-child(2) { animation-delay: 1s; }
.response:nth-child(3) { animation-delay: 2s; }
.response:nth-child(4) { animation-delay: 3s; }

.line.cursor {
  width: 8px; height: 18px;
  background: var(--accent);
  display: inline-block;
  animation: blink 1s infinite;
}

@keyframes typeIn {
  from { opacity: 0; transform: translateX(-10px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes blink { 50% { opacity: 0; } }

/* ── CTA ───────────────────────────────────────── */
.cta { padding: 100px 0; text-align: center; }

.cta-card {
  padding: 80px 40px;
  border-radius: var(--radius-xl);
}

    /* Improved Auth Modal Styles */
    #auth-modal {
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.85);
        backdrop-filter: blur(15px);
        z-index: 9999;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 20px;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.4s var(--ease-out), visibility 0.4s;
    }

    #auth-modal.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .auth-card {
        background: var(--bg-surface);
        border: 1px solid var(--glass-border);
        padding: 40px;
        border-radius: var(--radius-xl);
        width: 100%;
        max-width: 440px;
        position: relative;
        box-shadow: 0 30px 60px rgba(0,0,0,0.6);
        transform: translateY(20px);
        transition: transform 0.5s var(--ease-out);
        max-height: 90vh;
        overflow-y: auto;
    }

    #auth-modal.active .auth-card {
        transform: translateY(0);
    }

    .auth-input-group {
        display: flex;
        flex-direction: column;
        gap: 8px;
        margin-bottom: 20px;
    }

    .auth-input-group label {
        font-family: var(--font-mono);
        font-size: 11px;
        color: var(--text-muted);
        text-transform: uppercase;
        letter-spacing: 0.15em;
    }

    .auth-input-group input {
        background: rgba(255,255,255,0.03);
        border: 1px solid var(--glass-border);
        padding: 14px 18px;
        border-radius: var(--radius-md);
        color: #fff;
        font-size: 15px;
        transition: all 0.3s;
        outline: none;
    }

    .auth-input-group input:focus {
        border-color: var(--accent);
        background: rgba(0, 255, 136, 0.03);
        box-shadow: 0 0 15px var(--accent-pulse);
    }

    #auth-form-container {
        transition: all 0.3s var(--ease-out);
    }

    .loading-overlay {
        position: absolute;
        inset: 0;
        background: rgba(10, 10, 15, 0.85);
        display: none;
        align-items: center;
        justify-content: center;
        border-radius: var(--radius-xl);
        z-index: 10;
        backdrop-filter: blur(5px);
    }

    .loading-overlay.active {
        display: flex;
    }

    .loader {
        width: 24px;
        height: 24px;
        border: 3px solid rgba(255,255,255,0.1);
        border-top: 3px solid var(--accent);
        border-radius: 50%;
        animation: spin 1s linear infinite;
    }

    @keyframes spin {
        0% { transform: rotate(0deg); }
        100% { transform: rotate(360deg); }
    }

.pricing-grid {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 60px;
  flex-wrap: wrap;
}

.pricing-card {
  padding: 48px 40px;
  width: 100%;
  max-width: 360px;
  border-radius: var(--radius-lg);
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-card.featured {
  border: 1px solid var(--accent-glow) !important;
  background: rgba(0, 255, 136, 0.05) !important;
  transform: translateY(-10px);
}

.best-value {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #000;
  padding: 4px 16px;
  border-radius: var(--radius-full);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.price {
  font-family: var(--font-mono);
  font-size: 56px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 8px;
  display: flex;
  align-items: baseline;
  justify-content: center;
}

.price span {
  font-size: 18px;
  color: var(--text-secondary);
  font-weight: 400;
}

.pricing-card h3 { margin-bottom: 12px; font-size: 22px; }
.pricing-card p { margin-bottom: 32px; font-size: 15px; color: var(--text-secondary); }

.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 40px;
  flex: 1;
}

.pricing-features li {
  font-size: 14px;
  color: var(--text-primary);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.pricing-features li::before {
  content: "✓";
  color: var(--accent);
  font-weight: 800;
}

.pricing-card .btn { width: 100%; }

.cta-btns {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

/* ── Footer ────────────────────────────────────── */
footer {
  padding: 60px 0;
  border-top: 1px solid var(--glass-border);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-left p { margin-top: 12px; font-size: 12px; color: var(--text-muted); }

.footer-center, .footer-right {
  display: flex;
  gap: 24px;
}

.footer-center a, .footer-right a {
  color: var(--text-secondary);
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 13px;
  transition: color 0.2s;
}

.footer-center a:hover, .footer-right a:hover { color: var(--accent); }

/* ── Animations ────────────────────────────────── */
.animate-fade-in { opacity: 0; animation: fadeIn 0.8s var(--ease-out) forwards; }
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }

.animate-float { animation: float 6s ease-in-out infinite; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-20px) rotate(1deg); }
}

/* ── Reveal Animations ────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s var(--ease-out);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.8s var(--ease-out);
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.8s var(--ease-out);
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

/* ── Auth Modal ────────────────────────────────── */
.auth-modal {
  display: none !important;
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
  pointer-events: none;
}

.auth-modal.active {
  display: flex !important;
  opacity: 1;
  pointer-events: auto;
}
/* ── Hero Badge & Trust ────────────────────────── */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 255, 136, 0.08);
  border: 1px solid rgba(0, 255, 136, 0.25);
  border-radius: var(--radius-full);
  padding: 6px 16px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  animation: pulse-dot 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

.hero-trust {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 60px;
  font-size: 13px;
  color: var(--text-muted);
  font-family: var(--font-mono);
}

.hero-trust span { display: flex; align-items: center; gap: 6px; }

/* ── Stats Bar ─────────────────────────────────── */
.stats-bar {
  padding: 40px 0;
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  background: rgba(0, 255, 136, 0.02);
}

.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 16px 48px;
  text-align: center;
}

.stat-number {
  font-family: var(--font-mono);
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-family: var(--font-mono);
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--glass-border);
}

/* ── "Why Flow" Jokes Section ──────────────────── */
.jokes-section { padding: 100px 0; }

.jokes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.joke-card {
  padding: 36px 32px;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.joke-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.joke-emoji {
  font-size: 36px;
  line-height: 1;
}

.joke-before {
  font-size: 14px;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.5;
}

.joke-arrow {
  font-size: 20px;
  color: var(--accent);
  line-height: 1;
}

.joke-after {
  font-size: 15px;
  color: var(--text-primary);
  line-height: 1.6;
}

/* ── How It Works ──────────────────────────────── */
.how-it-works { padding: 100px 0; }

.steps-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-top: 64px;
}

.step-card {
  flex: 1;
  max-width: 280px;
  text-align: center;
  padding: 40px 32px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  transition: transform 0.3s var(--ease-out), border-color 0.3s;
}

.step-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 255, 136, 0.3);
}

.step-number {
  font-family: var(--font-mono);
  font-size: 48px;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 20px;
}

.step-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.step-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.step-connector {
  flex-shrink: 0;
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-glow), transparent);
  margin-top: 80px;
  align-self: flex-start;
}

kbd {
  display: inline-block;
  padding: 2px 7px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 5px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--accent);
  white-space: nowrap;
}

/* ── Pricing Guarantee ─────────────────────────── */
.pricing-guarantee {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 48px;
  padding: 24px 32px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  text-align: left;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.guarantee-icon { font-size: 32px; flex-shrink: 0; }

.pricing-guarantee strong {
  display: block;
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.pricing-guarantee p {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
}

/* ── FAQ Section ───────────────────────────────── */
.faq-section { padding: 100px 0; }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 48px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.faq-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item[open] {
  border-color: rgba(0, 255, 136, 0.2) !important;
}

.faq-item summary {
  padding: 20px 24px;
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-primary);
  user-select: none;
  transition: color 0.2s;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-size: 22px;
  color: var(--accent);
  font-weight: 300;
  line-height: 1;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease-out);
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item[open] summary { color: var(--accent); }

.faq-item > p {
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.75;
  animation: faq-open 0.3s var(--ease-out);
}

@keyframes faq-open {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── Final CTA ─────────────────────────────────── */
.final-cta { padding: 100px 0; }

.final-cta-content {
  text-align: center;
  padding: 80px 40px;
  border-radius: var(--radius-xl);
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.final-cta-content::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(0, 255, 136, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.final-cta-content h2 {
  font-size: clamp(28px, 5vw, 48px);
  margin-bottom: 16px;
}

.final-cta-content > p {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 480px;
  margin: 0 auto;
}

/* ── Footer Redesign ───────────────────────────── */
footer {
  padding: 0;
  border-top: 1px solid var(--glass-border);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 64px 0 48px;
  border-bottom: 1px solid var(--glass-border);
}

.footer-tagline {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.6;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.2s;
}

.footer-social a:hover {
  color: var(--accent);
  border-color: var(--accent-glow);
  background: var(--accent-pulse);
}

.footer-links-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links-group h5 {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: 8px;
  font-weight: 700;
}

.footer-links-group a {
  font-size: 14px;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s;
  line-height: 1.4;
}

.footer-links-group a:hover { color: var(--accent); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 13px;
  color: var(--text-muted);
  font-family: var(--font-mono);
}

.footer-made { color: var(--text-muted); }

/* ── Mobile Nav Hamburger ──────────────────────── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: background 0.2s;
}

.nav-hamburger:hover { background: rgba(255,255,255,0.05); }

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s var(--ease-out);
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Auth Divider ──────────────────────────────── */
.auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-muted);
  font-size: 12px;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--glass-border);
}

/* ── Shadow Utility ────────────────────────────── */
.shadow-premium {
  box-shadow: var(--shadow-premium);
}

/* ── Responsive ────────────────────────────────── */
@media (max-width: 900px) {
  .ai-content { grid-template-columns: 1fr; gap: 40px; }
  .hero h1 { font-size: 48px; }
  .cta-card h2 { font-size: 32px; }

  .steps-grid {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
  .step-connector {
    width: 2px;
    height: 32px;
    background: linear-gradient(180deg, var(--accent-glow), transparent);
    margin: 0;
    align-self: center;
  }
  .step-card { max-width: 100%; width: 100%; }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
  .nav-links { display: none; flex-direction: column; gap: 0; }
  .nav-links.mobile-open {
    display: flex;
    position: fixed;
    top: 80px;
    left: 0; right: 0;
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    padding: 16px 24px 24px;
    z-index: 99;
    gap: 4px;
  }
  .nav-links.mobile-open a { padding: 12px 0; font-size: 16px; display: block; }
  .nav-hamburger { display: flex; }

  .hero { padding: 120px 0 60px; }
  .hero-trust { gap: 12px; font-size: 12px; }

  .stats-grid { gap: 0; }
  .stat-item { padding: 12px 20px; }
  .stat-divider { display: none; }
  .stats-grid { display: grid; grid-template-columns: 1fr 1fr; }

  .jokes-grid { grid-template-columns: 1fr; }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 48px 0 32px;
  }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  .pricing-guarantee { flex-direction: column; text-align: center; gap: 12px; }

  .final-cta-content { padding: 48px 24px; }

  .step-number { font-size: 36px; }
}
