/* ======================================================
   Philosopher Democracies (PhD) — Design System
   Ported from DF Academia's visual language
   ====================================================== */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

/* ── Design Tokens ── */
:root {
  /* Premium Dark Mode Palette (from DF Academia) */
  --bg-dark: #0f172a;
  --bg-darker: #020617;
  --bg-body: #060815;
  --text-light: #f8fafc;
  --text-muted: #94a3b8;
  --text-dim: rgba(255,255,255,0.55);

  /* Brand Colors */
  --primary: #3b82f6;
  --primary-hover: #2563eb;
  --primary-glow: rgba(59, 130, 246, 0.5);
  --secondary: #8b5cf6;
  --accent: #f59e0b;
  --emerald: #34d399;
  --emerald-dark: #059669;
  --phd-purple: #4040a0;

  /* Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-hover: rgba(255, 255, 255, 0.10);
  --glass-blur: blur(16px);

  /* Typography */
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-heading: 'Outfit', 'Inter', sans-serif;

  /* Spacing & Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --max-w: 1200px;

  color-scheme: dark;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  background: var(--bg-body);
  color: var(--text-light);
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.15;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

img { max-width: 100%; display: block; }

/* ── Cosmic Background Gradient ── */
.cosmic-bg {
  background:
    radial-gradient(1400px 700px at 15% 8%, rgba(59,130,246,.18), transparent 60%),
    radial-gradient(1000px 600px at 85% 15%, rgba(139,92,246,.14), transparent 55%),
    radial-gradient(900px 500px at 50% 90%, rgba(52,211,153,.08), transparent 60%),
    linear-gradient(180deg, #070A12, var(--bg-body));
}

/* ── Container ── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Glass Card ── */
.glass {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.glass-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.glass-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.25);
  border-color: rgba(255, 255, 255, 0.15);
}

.glass-card-static {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 1.02rem;
  cursor: pointer;
  transition: all 0.25s ease;
  border: none;
  font-family: var(--font-sans);
  letter-spacing: 0.01em;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  box-shadow: 0 4px 20px var(--primary-glow);
  border-radius: var(--radius-md);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px var(--primary-glow);
  filter: brightness(1.12);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-emerald {
  background: linear-gradient(135deg, var(--emerald), var(--emerald-dark));
  color: #000;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 20px rgba(52,211,153,0.3);
}

.btn-emerald:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(52,211,153,0.4);
  filter: brightness(1.1);
}

.btn-glass {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  color: var(--text-light);
  border-radius: var(--radius-md);
}

.btn-glass:hover {
  background: var(--glass-hover);
  border-color: rgba(255,255,255,0.15);
}

.btn-white {
  background: #fff;
  color: #000;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.35);
}

.btn-white:active {
  transform: translateY(0);
}

/* ── Navigation ── */
.navbar {
  position: sticky;
  top: 16px;
  z-index: 100;
  margin: 16px 16px 0;
  padding: 14px 28px;
  border-radius: var(--radius-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(6, 8, 21, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.navbar-logo {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 12px rgba(64, 64, 160, 0.4);
}

.navbar-brand-text {
  line-height: 1.25;
}

.navbar-brand-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.3px;
}

.navbar-brand-tagline {
  font-size: 0.845rem;
  color: var(--text-dim);
  letter-spacing: 0.02em;
}

.navbar-links {
  display: flex;
  gap: 28px;
}

.nav-link {
  font-weight: 500;
  font-size: 1.02rem;
  color: var(--text-muted);
  transition: color 0.3s;
  position: relative;
}

.nav-link:hover {
  color: var(--text-light);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transition: width 0.3s ease;
  border-radius: 1px;
}

.nav-link:hover::after {
  width: 100%;
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Hamburger menu (mobile) */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

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

/* ── Hero Section ── */
.hero {
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: flex-end;
  position: relative;
  background-image: url('assets/head-splash.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 16px 16px 0;
  padding: 0 40px 80px;
}

/* Dark overlay for readability */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(2, 6, 23, 0.25) 0%,
    rgba(2, 6, 23, 0.45) 50%,
    rgba(2, 6, 23, 0.7) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: center;
  width: 100%;
}

.hero-inner {
  max-width: 900px;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.975rem;
  font-weight: 500;
  color: var(--text-light); /* Better readability */
  background: rgba(255,255,255,0.15); /* Less transparent */
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.20);
  margin-bottom: 28px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--emerald);
  box-shadow: 0 0 8px rgba(52,211,153,0.6);
  animation: dotPulse 2s infinite ease-in-out;
}

@keyframes dotPulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.3); }
}

.hero h1 {
  font-size: clamp(2.5rem, 5.5vw, 4.2rem);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.08;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.hero-spark {
  background: linear-gradient(90deg, rgba(255,255,255,.97), rgba(200,210,255,.7));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p.subtitle {
  font-size: clamp(1.18rem, 2vw, 1.43rem);
  color: rgba(255,255,255,0.78);
  line-height: 1.6;
  max-width: 720px;
  margin: 0 auto 32px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}

.hero p.subtitle strong {
  color: #fff;
}

.hero-cta {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero-tags {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-tag {
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.905rem;
  color: var(--text-dim);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
}

/* ── Twinkling Stars (from DF Academia) ── */
.star {
  position: absolute;
  z-index: 2;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 0 6px 2px rgba(255,255,255,0.8), 0 0 14px 5px rgba(200,220,255,0.4);
  pointer-events: none;
  opacity: 0;
}

.star-1 { top: 10%; left: 68%; animation: starPulse 6s 0s infinite ease-in-out; }
.star-2 { top: 32%; left: 18%; animation: starPulse 8s 2.5s infinite ease-in-out; }
.star-3 { top: 55%; left: 85%; animation: starPulse 7s 1s infinite ease-in-out; }
.star-4 { top: 22%; left: 42%; animation: starPulse 9s 4s infinite ease-in-out; }
.star-5 { top: 70%; left: 30%; animation: starPulse 7.5s 3s infinite ease-in-out; }
.star-6 { top: 5%;  left: 10%; animation: starPulse 7s 1.5s infinite ease-in-out; }
.star-7 { top: 7%;  left: 90%; animation: starPulse 8.5s 0.5s infinite ease-in-out; }
.star-8 { top: 43%; left: 5%;  animation: starPulse 6.5s 3.5s infinite ease-in-out; }
.star-9 { top: 40%; left: 94%; animation: starPulse 9s 2s infinite ease-in-out; }
.star-10 { top: 80%; left: 12%; animation: starPulse 7s 5s infinite ease-in-out; }
.star-11 { top: 83%; left: 78%; animation: starPulse 8s 1.8s infinite ease-in-out; }

@keyframes starPulse {
  0%, 100% { opacity: 0.04; }
  12% { opacity: 1; }
  30% { opacity: 0.04; }
}

/* ── Sections ── */
.section {
  padding: 80px 0;
}

.section-header {
  margin-bottom: 48px;
}

.section-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.8px;
  margin-bottom: 14px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.18rem;
  max-width: 700px;
  line-height: 1.65;
}

.section-link {
  font-size: 1.02rem;
  color: var(--text-muted);
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 0.3s;
}

.section-link:hover {
  color: var(--text-light);
}

/* ── Problem / Reframe Grid ── */
.dual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.dual-grid .glass-card h2 {
  font-size: 1.5rem;
  margin-bottom: 14px;
}

.dual-grid .glass-card p {
  color: var(--text-muted);
  line-height: 1.65;
}

.dual-grid ul {
  list-style: none;
  margin-top: 20px;
}

.dual-grid ul li {
  font-size: 1.02rem;
  color: var(--text-muted);
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.dual-grid ul li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}

.design-rule {
  margin-top: 24px;
  padding: 20px 24px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
}

.design-rule .label {
  font-size: 0.905rem;
  color: var(--text-dim);
  margin-bottom: 6px;
}

.design-rule .value {
  font-size: 1.15rem;
  font-weight: 600;
  font-family: var(--font-heading);
}

.design-rule .note {
  font-size: 0.975rem;
  color: var(--text-muted);
  margin-top: 6px;
}

/* ── Steps Grid ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.step-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: 0 4px 30px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.step-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.15);
}

.step-card:hover::before {
  opacity: 1;
}

.step-number {
  font-size: 0.845rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.step-card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.step-card p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ── Outcomes Grid ── */
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.outcome-item {
  padding: 20px 24px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  font-size: 1.02rem;
  color: var(--text-muted);
  line-height: 1.55;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.outcome-item:hover {
  border-color: rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
}

/* ── Viral Card (Hero sidebar) ── */
.viral-card {
  border-radius: var(--radius-lg);
  padding: 28px;
}

.viral-card .label {
  font-size: 0.975rem;
  color: var(--text-muted);
}

.viral-card .quote {
  font-size: 1.35rem;
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.35;
  margin: 14px 0 24px;
}

.viral-mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.viral-mini-item {
  padding: 14px 16px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
}

.viral-mini-item .mini-label {
  font-size: 0.845rem;
  color: var(--text-dim);
}

.viral-mini-item .mini-value {
  font-size: 1.02rem;
  font-weight: 600;
  margin-top: 4px;
}

/* ── Starter Section ── */
.starter-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 28px;
  align-items: start;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 0.945rem;
  color: var(--text-dim);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--text-light);
  font-family: var(--font-sans);
  font-size: 1.02rem;
  transition: all 0.3s ease;
  appearance: none;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-glow);
}

select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2394a3b8' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.btn-full {
  width: 100%;
}

.form-tip {
  font-size: 0.905rem;
  color: var(--text-dim);
  margin-top: 12px;
  line-height: 1.5;
}

/* Plan output */
.plan-output-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 20px;
}

.plan-output-header .label {
  font-size: 0.845rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.plan-output-header h3 {
  font-size: 1.5rem;
  margin-top: 4px;
}

.plan-output-actions {
  display: flex;
  gap: 10px;
}

.plan-text {
  padding: 24px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.65;
  white-space: pre-wrap;
  font-family: var(--font-sans);
}

.plan-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 20px;
}

.plan-card-item {
  padding: 20px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
}

.plan-card-item .card-label {
  font-size: 0.845rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.plan-card-item .card-value {
  font-size: 1.07rem;
  font-weight: 600;
  margin-top: 8px;
}

.plan-card-item .card-hint {
  font-size: 0.78rem;
  color: var(--text-dim);
  margin-top: 6px;
}

.kit-cta {
  margin-top: 24px;
  padding: 20px 24px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
}

.kit-cta .kit-title {
  font-weight: 600;
  margin-bottom: 4px;
}

.kit-cta .kit-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}

/* ── FAQ ── */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.faq-item {
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  cursor: pointer;
  transition: border-color 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(255,255,255,0.15);
}

.faq-item summary {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.05rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

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

.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
  content: '−';
  color: var(--primary);
}

.faq-item .faq-answer {
  margin-top: 14px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── Cross-Promotion (DF Academia) ── */
.promo-section {
  position: relative;
  overflow: hidden;
}

.promo-card {
  border-radius: var(--radius-xl);
  padding: 48px;
  position: relative;
  overflow: hidden;
}

.promo-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(59,130,246,0.08), rgba(139,92,246,0.08));
  z-index: 0;
}

.promo-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.promo-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.78rem;
  color: var(--accent);
  background: rgba(245,158,11,0.1);
  border: 1px solid rgba(245,158,11,0.2);
  margin-bottom: 20px;
}

.promo-inner h2 {
  font-size: 2rem;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}

.promo-inner p {
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 24px;
}

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

.promo-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.promo-features li .icon {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  background: rgba(59,130,246,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}

.promo-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.promo-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.promo-stat {
  padding: 20px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  text-align: center;
}

.promo-stat .stat-value {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.promo-stat .stat-label {
  font-size: 0.78rem;
  color: var(--text-dim);
  margin-top: 4px;
}

/* ── Contact ── */
.contact-card {
  border-radius: var(--radius-xl);
  padding: 48px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 32px;
  align-items: center;
}

.contact-info h2 {
  font-size: 2rem;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.contact-info p {
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}

.contact-details .detail-label {
  font-size: 0.78rem;
  color: var(--text-dim);
  margin-bottom: 2px;
}

.contact-details .detail-value {
  font-weight: 600;
  margin-bottom: 14px;
}

.outreach-box {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
}

.outreach-box .outreach-title {
  font-weight: 600;
  margin-bottom: 10px;
}

.outreach-box .outreach-text {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  font-family: 'SF Mono', ui-monospace, monospace;
}

/* ── Footer ── */
.site-footer {
  text-align: center;
  padding: 40px 0 48px;
  color: var(--text-dim);
  font-size: 0.82rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 16px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--text-light);
}

.footer-divider {
  width: 48px;
  height: 1px;
  background: var(--glass-border);
  margin: 0 auto 16px;
}

/* ── Animations ── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-in {
  opacity: 0;
  animation: fadeInUp 0.7s ease forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* ── Scroll-triggered fade ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

/* ── Responsive ── */
@media (max-width: 1024px) {
  .dual-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .outcomes-grid { grid-template-columns: 1fr 1fr; }
  .starter-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .promo-inner { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .promo-card { padding: 32px; }
  .contact-card { padding: 32px; }
}

@media (max-width: 768px) {
  .navbar-links { display: none; }
  .navbar-actions .btn-glass { display: none; }
  .hamburger { display: flex; }

  .navbar-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 8px;
    padding: 20px;
    background: rgba(6, 8, 21, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    gap: 16px;
  }

  .hero {
    min-height: 70vh;
    padding: 0 20px 48px;
    margin: 8px 8px 0;
  }

  .hero h1 { font-size: 2rem; }

  .steps-grid { grid-template-columns: 1fr; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .plan-cards { grid-template-columns: 1fr; }
  .viral-mini-grid { grid-template-columns: 1fr; }
  .promo-stat-grid { grid-template-columns: 1fr; }

  .section { padding: 48px 0; }
  .container { padding: 0 16px; }
  .navbar { margin: 8px 8px 0; padding: 12px 16px; }
}

@media (max-width: 480px) {
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { text-align: center; }
}
