:root {
  --bg: #03060D;
  --surface: #080E1C;
  --surface-2: #0D1628;
  --surface-3: #121D32;
  --fg: #EFF2F8;
  --fg-muted: #6B7F9E;
  --accent: #F59E0B;
  --accent-bright: #FBBF24;
  --accent-dim: rgba(245, 158, 11, 0.1);
  --accent-glow: rgba(245, 158, 11, 0.3);
  --accent-glow-strong: rgba(245, 158, 11, 0.5);
  --blue: #3B82F6;
  --blue-dim: rgba(59, 130, 246, 0.12);
  --blue-glow: rgba(59, 130, 246, 0.3);
  --border: rgba(255, 255, 255, 0.07);
  --border-hover: rgba(255, 255, 255, 0.14);
  --font-display: 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.4);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.5);
  --shadow-lg: 0 20px 48px rgba(0,0,0,0.6);
}

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

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

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

/* Scroll reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* Staggered children reveal */
.stagger-children > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.stagger-children.visible > *:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0s; }
.stagger-children.visible > *:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.1s; }
.stagger-children.visible > *:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.2s; }
.stagger-children.visible > *:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 0.3s; }
.stagger-children.visible > *:nth-child(5) { opacity: 1; transform: translateY(0); transition-delay: 0.4s; }
.stagger-children.visible > *:nth-child(6) { opacity: 1; transform: translateY(0); transition-delay: 0.5s; }

/* Nav */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 20px 40px;
  background: rgba(3, 6, 13, 0.8);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s, border-color 0.3s;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; max-width: 1200px; margin: 0 auto; }
.nav-logo {
  font-family: var(--font-display); font-size: 20px; font-weight: 700;
  color: var(--fg); text-decoration: none; letter-spacing: -0.02em;
  position: relative;
}
.nav-logo::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  border-radius: 1px;
  transition: width 0.3s ease;
}
.nav-logo:hover::after { width: 100%; }
.nav-tagline { font-size: 12px; color: var(--fg-muted); font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; }

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 120px 40px 100px;
  overflow: hidden;
}
/* Background layers */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(245,158,11,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 20% 80%, rgba(59,130,246,0.05) 0%, transparent 50%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-glow), transparent);
  opacity: 0.5;
}
.hero-content { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; width: 100%; }
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-bright);
  margin-bottom: 28px;
  padding: 8px 18px;
  border: 1px solid rgba(245, 158, 11, 0.25);
  border-radius: 100px;
  background: rgba(245, 158, 11, 0.08);
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.1);
}
.hero-label-dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
  box-shadow: 0 0 8px var(--accent-glow);
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.8); }
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(52px, 8vw, 96px);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.04em;
  color: var(--fg);
  margin-bottom: 28px;
  background: linear-gradient(135deg, #EFF2F8 0%, #A8B4C8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--fg-muted);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 48px;
  font-weight: 400;
}

/* Orbit visual */
.hero-visual {
  position: absolute;
  right: 80px;
  top: 50%;
  transform: translateY(-50%);
  width: 340px;
  height: 340px;
  filter: drop-shadow(0 0 40px rgba(245,158,11,0.12));
}
.orbit-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.08);
  animation: rotate 14s linear infinite;
}
.orbit-ring::before {
  content: '';
  position: absolute;
  inset: 36px;
  border-radius: 50%;
  border: 1px dashed rgba(245, 158, 11, 0.25);
}
.orbit-ring::after {
  content: '';
  position: absolute;
  inset: 76px;
  border-radius: 50%;
  border: 1px solid rgba(245, 158, 11, 0.12);
}
.orbit-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 16px var(--accent-glow-strong), 0 0 32px rgba(245,158,11,0.2);
  animation: orbit 8s linear infinite;
}
.orbit-dot-1 { top: -2px; left: 50%; transform: translateX(-50%); animation-delay: 0s; }
.orbit-dot-2 { bottom: 44px; right: 18px; animation-delay: -3s; animation-duration: 11s; }
.orbit-dot-3 { bottom: 0; left: 28px; animation-delay: -6s; animation-duration: 7s; }
.orbit-center {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: orbit 20s linear infinite reverse;
}
.orbit-center svg {
  filter: drop-shadow(0 0 12px rgba(245,158,11,0.5));
}
@keyframes rotate { to { transform: rotate(360deg); } }
@keyframes orbit { to { transform: rotate(-360deg); } }

.hero-bg-shape {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 800px;
  height: 800px;
  background:
    radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, transparent 50%),
    radial-gradient(circle, rgba(59, 130, 246, 0.04) 40%, transparent 70%);
  pointer-events: none;
}

/* Stats */
.stats {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 56px 40px;
  background: linear-gradient(180deg, rgba(13,21,37,0.5) 0%, transparent 100%);
}
.stats-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; gap: 0; }
.stat { flex: 1; text-align: center; }
.stat-value {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--fg) 0%, var(--fg-muted) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label { font-size: 13px; color: var(--fg-muted); margin-top: 6px; font-weight: 500; letter-spacing: 0.04em; }
.stat-divider { width: 1px; height: 48px; background: linear-gradient(180deg, transparent, var(--border), transparent); flex-shrink: 0; }

/* Sections */
.section { padding: 100px 40px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-label::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
  box-shadow: 0 0 8px var(--accent-glow);
}
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--fg);
  background: linear-gradient(135deg, #EFF2F8 0%, #A8B4C8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Products */
.products-section {
  background: var(--surface);
  position: relative;
  overflow: hidden;
}
.products-section::before {
  content: '';
  position: absolute;
  top: -100px; left: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(59,130,246,0.04) 0%, transparent 60%);
  pointer-events: none;
}
.products-inner { display: flex; gap: 80px; align-items: flex-start; }
.products-inner > .section-label,
.products-inner > .section-heading { flex-shrink: 0; }
.products-grid { flex: 1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.product-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(245,158,11,0.03) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}
.product-card:hover {
  border-color: rgba(245,158,11,0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 0 1px rgba(245,158,11,0.1);
}
.product-card:hover::before { opacity: 1; }
.product-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(245,158,11,0.15) 0%, rgba(245,158,11,0.05) 100%);
  border: 1px solid rgba(245,158,11,0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 0 16px rgba(245,158,11,0.1);
}
.product-name { font-family: var(--font-display); font-size: 18px; font-weight: 600; margin-bottom: 10px; color: var(--fg); }
.product-desc { font-size: 14px; color: var(--fg-muted); line-height: 1.6; }

/* Services */
.services-section { background: var(--bg); }
.services-inner { display: flex; gap: 80px; align-items: flex-start; }
.services-text { flex: 1; }
.services-desc { font-size: 17px; color: var(--fg-muted); line-height: 1.7; margin: 28px 0 36px; max-width: 480px; }
.service-list { display: flex; flex-direction: column; gap: 16px; }
.service-item { display: flex; align-items: center; gap: 16px; font-size: 15px; color: var(--fg); }
.service-marker { width: 8px; height: 8px; background: var(--accent); border-radius: 50%; flex-shrink: 0; box-shadow: 0 0 8px var(--accent-glow); }

.services-visual { flex: 0 0 320px; }
.services-badge {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
}
.services-badge-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--fg-muted); margin-bottom: 16px; font-weight: 600; }
.services-badge-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.badge-tag {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  background: var(--surface-2);
  color: var(--fg-muted);
  border: 1px solid var(--border);
}
.badge-tag-accent { background: var(--accent-dim); color: var(--accent); border-color: rgba(245, 158, 11, 0.3); }
.badge-arrow { color: var(--fg-muted); font-size: 14px; }

/* Worldwide */
.worldwide-section { background: var(--surface); }
.worldwide-inner { display: flex; gap: 80px; align-items: center; }
.worldwide-visual { flex: 0 0 340px; }
.worldwide-text { flex: 1; }
.worldwide-desc { font-size: 17px; color: var(--fg-muted); line-height: 1.7; margin: 28px 0 32px; max-width: 460px; }
.worldwide-tags { display: flex; gap: 12px; flex-wrap: wrap; }
.w-tag { display: inline-block; padding: 8px 18px; border-radius: 100px; font-size: 13px; font-weight: 500; background: var(--accent-dim); color: var(--accent); border: 1px solid rgba(245, 158, 11, 0.2); }

/* Globe grid */
.globe-grid { display: grid; grid-template-rows: repeat(3, 1fr); gap: 16px; padding: 20px 0; }
.globe-row { display: flex; gap: 16px; justify-content: center; }
.globe-node { width: 14px; height: 14px; background: var(--border); border-radius: 50%; transition: background 0.3s; }
.globe-node-active { background: var(--accent); box-shadow: 0 0 10px var(--accent-glow); }
.globe-node-center { position: relative; }
.globe-center-dot { position: absolute; inset: -3px; background: var(--accent); border-radius: 50%; box-shadow: 0 0 16px var(--accent-glow); z-index: 2; }
.globe-center-ring {
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 1px solid rgba(245, 158, 11, 0.15);
  animation: pulse-ring 2.5s ease-in-out infinite;
}
@keyframes pulse-ring { 0%, 100% { opacity: 0.5; transform: scale(1); } 50% { opacity: 1; transform: scale(1.15); } }

/* Manifesto */
.manifesto {
  padding: 120px 40px;
  background: var(--surface);
  position: relative;
  overflow: hidden;
}
.manifesto::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(245,158,11,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.manifesto-inner { max-width: 900px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.manifesto-quote {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 500;
  line-height: 1.55;
  color: var(--fg);
  letter-spacing: -0.02em;
  margin-bottom: 40px;
  border-left: 3px solid var(--accent);
  padding-left: 40px;
  text-align: left;
  box-shadow: -3px 0 16px rgba(245,158,11,0.15);
}
.manifesto-body {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.85;
  text-align: left;
  padding-left: 40px;
}

/* Product Hero */
.product-hero-grid { display: flex; gap: 64px; align-items: center; margin-top: 48px; }
.product-hero-card { flex: 1; }
.product-hero-meta { display: flex; gap: 12px; margin-bottom: 24px; }
.product-badge {
  display: inline-block; padding: 5px 14px; border-radius: 100px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.06em;
  background: var(--surface-2); color: var(--fg-muted); border: 1px solid var(--border);
}
.product-badge-accent { background: var(--accent-dim); color: var(--accent); border-color: rgba(245,158,11,0.3); }
.product-hero-title {
  font-family: var(--font-display); font-size: clamp(28px,4vw,44px);
  font-weight: 700; line-height: 1.1; letter-spacing: -0.03em;
  color: var(--fg); margin-bottom: 20px;
}
.product-hero-desc { font-size: 16px; color: var(--fg-muted); line-height: 1.7; max-width: 480px; margin-bottom: 28px; }
.product-hero-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 36px; }
.product-feature-item { display: flex; align-items: center; gap: 12px; font-size: 15px; color: var(--fg); }
.product-hero-cta { display: flex; flex-direction: column; gap: 12px; }
.cta-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 32px; border-radius: 10px;
  background: var(--accent); color: #060A14; font-weight: 700; font-size: 15px;
  border: none; cursor: pointer; width: fit-content;
  transition: all 0.25s cubic-bezier(0.22, 1, 0.36, 1);
  font-family: var(--font-body);
  box-shadow: 0 4px 16px rgba(245,158,11,0.3), inset 0 1px 0 rgba(255,255,255,0.15);
  letter-spacing: 0.01em;
}
.cta-btn:hover {
  background: var(--accent-bright);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245,158,11,0.4), inset 0 1px 0 rgba(255,255,255,0.2);
}
.cta-btn:active { transform: translateY(0); }
.cta-sub { font-size: 13px; color: var(--fg-muted); line-height: 1.5; }

/* Teardown preview card */
.product-hero-visual { flex: 0 0 320px; }
.teardown-card-link {
  text-decoration: none; display: block;
  transition: none;
}
.teardown-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.teardown-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-bright));
  border-radius: 18px 18px 0 0;
}
.teardown-card:hover {
  border-color: rgba(245,158,11,0.25);
  box-shadow: var(--shadow-lg), 0 0 40px rgba(245,158,11,0.08);
  transform: translateY(-4px);
}
.teardown-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 16px;
}
.teardown-title {
  font-family: var(--font-display); font-size: 40px; font-weight: 700;
  letter-spacing: -0.04em; color: var(--fg); margin-bottom: 10px;
  line-height: 1;
}
.teardown-subtitle { font-size: 14px; color: var(--fg-muted); line-height: 1.6; margin-bottom: 20px; }
.teardown-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.teardown-tags span {
  display: inline-block; padding: 5px 14px; border-radius: 100px;
  font-size: 11px; font-weight: 500; background: var(--surface); color: var(--fg-muted);
  border: 1px solid var(--border);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.teardown-card:hover .teardown-tags span {
  background: rgba(245,158,11,0.05);
  border-color: rgba(245,158,11,0.2);
  color: var(--accent);
}

/* Standalone report cards */
.standalone-reports-row { margin-top: 40px; }
.standalone-reports-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--fg-muted); margin-bottom: 16px;
}
.standalone-reports-grid { display: flex; gap: 16px; }
.standalone-report-card {
  flex: 1; background: var(--surface-2); border: 1px solid var(--border);
  border-radius: 16px; padding: 24px; text-decoration: none;
  display: flex; flex-direction: column; gap: 8px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.standalone-report-card:hover {
  border-color: rgba(245,158,11,0.3); transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4), 0 0 24px rgba(245,158,11,0.06);
}
.standalone-report-card-active {
  border-color: rgba(245,158,11,0.25);
  background: linear-gradient(135deg, var(--surface-2) 0%, rgba(245,158,11,0.04) 100%);
}
.standalone-report-badge {
  font-size: 10px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--accent);
}
.standalone-report-title {
  font-family: var(--font-display); font-size: 22px; font-weight: 700;
  color: var(--fg); letter-spacing: -0.02em;
}
.standalone-report-sub { font-size: 13px; color: var(--fg-muted); }
.standalone-report-price {
  font-size: 13px; font-weight: 600; color: var(--accent-bright);
  margin-top: auto; padding-top: 12px; border-top: 1px solid var(--border);
}

/* Subscribe Modal */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(3,6,13,0.85);
  backdrop-filter: blur(16px); z-index: 200; display: none;
  align-items: center; justify-content: center; padding: 24px;
}
.modal-overlay.active { display: flex; }
.modal-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 48px 40px;
  max-width: 500px; width: 100%;
  position: relative;
  box-shadow: var(--shadow-lg), 0 0 80px rgba(245,158,11,0.06);
}
.modal-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-bright), var(--accent));
  border-radius: 24px 24px 0 0;
}
.modal-close {
  position: absolute; top: 20px; right: 20px;
  background: var(--surface-2); border: 1px solid var(--border);
  color: var(--fg-muted); font-size: 20px; cursor: pointer; line-height: 1;
  width: 32px; height: 32px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.modal-close:hover { background: var(--surface-3); color: var(--fg); border-color: var(--border-hover); }
.modal-label { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
.modal-label::before { content: ''; width: 16px; height: 2px; background: var(--accent); border-radius: 1px; }
.modal-title { font-family: var(--font-display); font-size: 32px; font-weight: 700; letter-spacing: -0.03em; color: var(--fg); margin-bottom: 14px; }
.modal-desc { font-size: 15px; color: var(--fg-muted); line-height: 1.65; margin-bottom: 28px; }
.modal-input {
  width: 100%; padding: 15px 18px; border-radius: 10px;
  background: var(--surface-2); border: 1px solid var(--border);
  color: var(--fg); font-size: 15px; font-family: var(--font-body); outline: none;
  margin-bottom: 12px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.modal-input:focus { border-color: rgba(245,158,11,0.4); box-shadow: 0 0 0 3px rgba(245,158,11,0.08); }
.modal-submit {
  width: 100%; padding: 16px; border-radius: 10px;
  background: var(--accent); color: #03060D; font-weight: 700; font-size: 15px;
  border: none; cursor: pointer; font-family: var(--font-body);
  transition: all 0.25s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 4px 16px rgba(245,158,11,0.3);
  letter-spacing: 0.01em;
}
.modal-submit:hover { background: var(--accent-bright); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(245,158,11,0.4); }
.modal-submit:active { transform: translateY(0); }
.modal-submit:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }
.success-msg {
  text-align: center; color: var(--accent-bright); font-weight: 700; font-size: 15px;
  padding: 18px; background: rgba(245,158,11,0.08); border: 1px solid rgba(245,158,11,0.2);
  border-radius: 10px; margin-top: 14px;
}
.modal-pricing { margin-top: 28px; border-top: 1px solid var(--border); padding-top: 24px; }
.pricing-row { display: flex; justify-content: space-between; margin-bottom: 10px; font-size: 14px; }
.pricing-label { color: var(--fg-muted); }
.pricing-value { color: var(--fg); font-weight: 700; }
.pricing-divider { height: 1px; background: var(--border); margin: 14px 0; }
.pricing-note { font-size: 12px; color: var(--fg-muted); margin-top: 14px; line-height: 1.5; }

/* Footer */
.footer { border-top: 1px solid var(--border); padding: 48px 40px; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-logo { font-family: var(--font-display); font-size: 22px; font-weight: 700; letter-spacing: -0.02em; color: var(--fg); margin-bottom: 12px; }
.footer-tagline { font-size: 15px; color: var(--fg-muted); margin-bottom: 8px; }
.footer-meta { font-size: 13px; color: var(--fg-muted); opacity: 0.6; }

/* Thanks page */
.thanks-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; }
.thanks-container { text-align: center; padding: 40px; max-width: 520px; margin: 0 auto; }
.thanks-icon { margin-bottom: 24px; }
.thanks-container h1 {
  font-family: var(--font-display); font-size: 48px; font-weight: 700;
  letter-spacing: -0.04em; color: var(--fg); margin-bottom: 16px;
}
.thanks-sub { font-size: 18px; color: var(--fg-muted); line-height: 1.6; margin-bottom: 40px; }
.thanks-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: 12px;
  padding: 24px 32px; margin-bottom: 32px; text-align: left;
}
.thanks-label { display: block; font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 8px; }
.thanks-value { display: block; font-size: 16px; font-weight: 600; color: var(--fg); margin-bottom: 4px; }
.thanks-price { display: block; font-size: 14px; color: var(--fg-muted); }
.thanks-home { display: inline-block; font-size: 14px; color: var(--fg-muted); text-decoration: none; transition: color 0.2s; }
.thanks-home:hover { color: var(--fg); }

/* Marketing Services */
.marketing-section { background: var(--bg); position: relative; }
.marketing-section::before {
  content: '';
  position: absolute;
  bottom: -200px; right: -100px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(59,130,246,0.04) 0%, transparent 60%);
  pointer-events: none;
}
.marketing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.marketing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.marketing-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.marketing-card:hover {
  border-color: rgba(245,158,11,0.3);
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(0,0,0,0.5), 0 0 0 1px rgba(245,158,11,0.08);
}
.marketing-card:hover::before { opacity: 1; }
.marketing-card-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, rgba(245,158,11,0.15) 0%, rgba(245,158,11,0.04) 100%);
  border: 1px solid rgba(245,158,11,0.2);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; flex-shrink: 0;
  box-shadow: 0 0 16px rgba(245,158,11,0.08);
}
.marketing-card-title {
  font-family: var(--font-display);
  font-size: 17px; font-weight: 600;
  color: var(--fg); margin-bottom: 10px;
}
.marketing-card-desc {
  font-size: 13px; color: var(--fg-muted); line-height: 1.65;
  flex: 1; margin-bottom: 20px;
}
.marketing-card-bullets {
  list-style: none;
  display: flex; flex-direction: column; gap: 8px;
  margin-bottom: 24px;
}
.marketing-card-bullets li {
  font-size: 12px; color: var(--fg-muted);
  padding-left: 16px; position: relative;
}
.marketing-card-bullets li::before {
  content: '';
  position: absolute; left: 0; top: 6px;
  width: 5px; height: 5px;
  background: var(--accent); border-radius: 50%;
  box-shadow: 0 0 6px var(--accent-glow);
}
.marketing-card-footer {
  margin-top: auto;
  padding-top: 16px; border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.marketing-tag {
  display: inline-block; padding: 4px 12px;
  border-radius: 100px; font-size: 11px; font-weight: 600;
  background: var(--surface-2); color: var(--fg-muted); border: 1px solid var(--border);
}
.marketing-card-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600; color: var(--accent);
  text-decoration: none;
  transition: gap 0.25s, color 0.2s;
}
.marketing-card-link:hover { gap: 10px; color: var(--accent-bright); }

/* Dev Services */
.dev-services-section { background: var(--surface); position: relative; overflow: hidden; }
.dev-services-section::before {
  content: '';
  position: absolute;
  top: -150px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(245,158,11,0.05) 0%, transparent 60%);
  pointer-events: none;
}
.dev-services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin-top: 56px; }
.dev-service-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.dev-service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(59,130,246,0.6), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.dev-service-card:hover {
  border-color: rgba(59,130,246,0.3);
  transform: translateY(-5px);
  box-shadow: 0 24px 48px rgba(0,0,0,0.45), 0 0 0 1px rgba(59,130,246,0.08);
}
.dev-service-card:hover::before { opacity: 1; }
.dev-service-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, rgba(59,130,246,0.15) 0%, rgba(59,130,246,0.04) 100%);
  border: 1px solid rgba(59,130,246,0.2);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
  box-shadow: 0 0 16px rgba(59,130,246,0.08);
}
.dev-service-title {
  font-family: var(--font-display);
  font-size: 18px; font-weight: 600;
  color: var(--fg); margin-bottom: 10px;
}
.dev-service-desc { font-size: 14px; color: var(--fg-muted); line-height: 1.65; margin-bottom: 12px; }
.dev-service-bullets {
  list-style: none;
  display: flex; flex-direction: column; gap: 8px;
  margin-bottom: 20px; flex: 1;
}
.dev-service-bullets li {
  font-size: 12px; color: var(--fg-muted);
  padding-left: 16px; position: relative;
}
.dev-service-bullets li::before {
  content: '';
  position: absolute; left: 0; top: 6px;
  width: 5px; height: 5px;
  background: var(--blue); border-radius: 50%;
  box-shadow: 0 0 6px var(--blue-glow);
}
.dev-service-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600; color: var(--accent);
  text-decoration: none;
  transition: gap 0.25s, color 0.2s;
}
.dev-service-link:hover { gap: 10px; color: var(--accent-bright); }
.dev-service-footer { margin-top: auto; padding-top: 16px; border-top: 1px solid var(--border); }
.dev-service-tag {
  display: inline-block; padding: 4px 12px;
  border-radius: 100px; font-size: 11px; font-weight: 600;
  background: var(--surface); color: var(--fg-muted); border: 1px solid var(--border);
}

/* Edition page */
.edition-page { min-height: 100vh; padding-top: 80px; }
.edition-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 16px 40px;
  background: rgba(3,6,13,0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between; max-width: 1200px; margin: 0 auto;
}
.edition-nav-logo { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--fg); text-decoration: none; letter-spacing: -0.02em; }
.edition-nav-logo::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 2px; background: var(--accent); border-radius: 1px; transition: width 0.3s; }
.edition-nav-logo:hover::after { width: 100%; }
.edition-nav-back { font-size: 13px; color: var(--fg-muted); text-decoration: none; display: flex; align-items: center; gap: 6px; transition: color 0.2s; }
.edition-nav-back:hover { color: var(--fg); }
.edition-header {
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg) 100%);
  padding: 80px 40px 60px;
  border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.edition-header::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 0%, rgba(59,130,246,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.edition-header::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(59,130,246,0.3), transparent);
}
.edition-header-inner { max-width: 720px; margin: 0 auto; position: relative; z-index: 1; }
.edition-meta { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; margin-bottom: 32px; }
.edition-meta-tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 16px; border-radius: 100px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.06em;
  background: rgba(59,130,246,0.1); color: var(--blue);
  border: 1px solid rgba(59,130,246,0.25);
}
.edition-meta-tag svg { width: 14px; height: 14px; }
.edition-meta-dot { width: 4px; height: 4px; background: var(--fg-muted); border-radius: 50%; opacity: 0.5; }
.edition-meta-time, .edition-meta-date { font-size: 13px; color: var(--fg-muted); font-weight: 500; }
.edition-title {
  font-family: var(--font-display); font-size: clamp(40px, 7vw, 72px);
  font-weight: 700; line-height: 1.0; letter-spacing: -0.04em;
  color: var(--fg); margin-bottom: 28px;
  background: linear-gradient(135deg, #EFF2F8 0%, #8A9BC0 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.edition-lede {
  font-size: 19px; color: var(--fg-muted); line-height: 1.7; max-width: 600px;
  border-left: 3px solid var(--blue); padding-left: 24px;
  box-shadow: -3px 0 12px rgba(59,130,246,0.15);
  margin-bottom: 32px;
}
.edition-tags { display: flex; gap: 10px; flex-wrap: wrap; }
.edition-tag {
  display: inline-block; padding: 5px 14px; border-radius: 100px;
  font-size: 11px; font-weight: 500; background: var(--surface-2); color: var(--fg-muted);
  border: 1px solid var(--border);
}
/* Edition body */
.edition-body { padding: 80px 40px; }
.edition-body-inner { max-width: 680px; margin: 0 auto; }
.edition-section { margin-bottom: 64px; }
.edition-section-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 20px; display: flex; align-items: center; gap: 10px;
}
.edition-section-label::before { content: ''; width: 16px; height: 2px; background: var(--blue); border-radius: 1px; box-shadow: 0 0 8px rgba(59,130,246,0.4); }
.edition-prose {
  font-size: 17px; color: var(--fg); line-height: 1.85;
  font-family: var(--font-body);
}
.edition-prose p { margin-bottom: 24px; }
.edition-prose strong { color: var(--fg); font-weight: 600; }
.edition-moment {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 16px; padding: 32px; margin-bottom: 40px;
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.edition-moment::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--blue), rgba(59,130,246,0.4));
}
.edition-moment p { font-size: 16px; line-height: 1.75; color: var(--fg-muted); margin-bottom: 0; }
.edition-quote {
  font-family: var(--font-display); font-size: 20px; font-weight: 500;
  line-height: 1.55; color: var(--fg); letter-spacing: -0.02em;
  border-left: 3px solid var(--blue); padding-left: 28px;
  margin: 32px 0; box-shadow: -3px 0 12px rgba(59,130,246,0.15);
}
.edition-subheading {
  font-family: var(--font-display); font-size: 26px; font-weight: 700;
  letter-spacing: -0.03em; color: var(--fg); margin: 48px 0 20px;
}
.edition-lesson {
  background: linear-gradient(135deg, rgba(59,130,246,0.08) 0%, rgba(59,130,246,0.03) 100%);
  border: 1px solid rgba(59,130,246,0.2);
  border-radius: 16px; padding: 28px 32px; margin: 40px 0;
  position: relative; overflow: hidden;
}
.edition-lesson::before {
  content: attr(data-num);
  position: absolute; top: -20px; right: 20px;
  font-family: var(--font-display); font-size: 80px; font-weight: 700;
  color: rgba(59,130,246,0.08); line-height: 1; pointer-events: none;
}
.edition-lesson-title {
  font-family: var(--font-display); font-size: 17px; font-weight: 700;
  color: var(--blue); margin-bottom: 10px; letter-spacing: -0.01em;
}
.edition-lesson-body { font-size: 15px; color: var(--fg-muted); line-height: 1.7; }
.edition-takeaway {
  background: var(--surface-2); border: 1px solid rgba(245,158,11,0.2);
  border-radius: 16px; padding: 36px 32px; margin: 56px 0 40px;
  position: relative; overflow: hidden;
}
.edition-takeaway::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-bright));
}
.edition-takeaway-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 14px;
}
.edition-takeaway p { font-size: 17px; color: var(--fg); line-height: 1.75; font-style: italic; }
.edition-footer { padding: 48px 40px 80px; border-top: 1px solid var(--border); }
.edition-footer-inner { max-width: 680px; margin: 0 auto; text-align: center; }
.edition-footer h3 { font-family: var(--font-display); font-size: 28px; font-weight: 700; letter-spacing: -0.03em; color: var(--fg); margin-bottom: 12px; }
.edition-footer p { font-size: 15px; color: var(--fg-muted); line-height: 1.6; margin-bottom: 28px; }
.edition-footer-cta { display: inline-flex; align-items: center; gap: 10px; padding: 16px 32px; border-radius: 10px; background: var(--accent); color: #060A14; font-weight: 700; font-size: 15px; text-decoration: none; transition: all 0.25s cubic-bezier(0.22, 1, 0.36, 1); box-shadow: 0 4px 16px rgba(245,158,11,0.3); }
.edition-footer-cta:hover { background: var(--accent-bright); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(245,158,11,0.4); }
.edition-unsubscribe { font-size: 11px; color: var(--fg-muted); opacity: 0.6; margin-top: 20px; text-decoration: none; }
.edition-unsubscribe:hover { opacity: 1; color: var(--fg); }
.archive-standalone-links { display: flex; gap: 16px; justify-content: center; margin-top: 8px; flex-wrap: wrap; }
.archive-standalone-link {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 20px; border-radius: 10px;
  background: var(--surface-2); border: 1px solid var(--border);
  text-decoration: none; transition: border-color 0.25s, transform 0.25s;
}
.archive-standalone-link:hover { border-color: rgba(245,158,11,0.3); transform: translateY(-2px); }
.archive-standalone-edition { font-size: 11px; font-weight: 700; color: var(--accent); letter-spacing: 0.08em; }
.archive-standalone-name { font-size: 15px; font-weight: 600; color: var(--fg); }
.archive-standalone-price { font-size: 12px; font-weight: 600; color: var(--accent-bright); padding: 4px 10px; background: var(--accent-dim); border-radius: 100px; }
.edition-prose ul, .edition-prose ol { padding-left: 28px; margin-bottom: 24px; }
.edition-prose li { margin-bottom: 10px; color: var(--fg); line-height: 1.7; }
.edition-divider { height: 1px; background: linear-gradient(90deg, transparent, var(--border), transparent); margin: 64px 0; }
@media (max-width: 768px) {
  .edition-nav { padding: 14px 24px; }
  .edition-header { padding: 60px 24px 40px; }
  .edition-body { padding: 56px 24px; }
  .edition-footer { padding: 36px 24px 60px; }
  .edition-moment { padding: 24px 20px; }
  .edition-lesson { padding: 24px 20px; }
  .edition-takeaway { padding: 28px 20px; }
}
  .nav { padding: 16px 24px; }
  .hero { padding: 100px 24px 60px; }
  .hero-visual { display: none; }
  .stats { padding: 36px 24px; }
  .stats-inner { flex-wrap: wrap; gap: 24px; }
  .stat-divider { display: none; }
  .section { padding: 72px 24px; }
  .products-inner { flex-direction: column; gap: 32px; }
  .products-grid { grid-template-columns: 1fr; }
  .services-inner { flex-direction: column; }
  .services-visual { flex: 1; width: 100%; }
  .dev-services-grid { grid-template-columns: 1fr; }
  .worldwide-inner { flex-direction: column-reverse; }
  .worldwide-visual { width: 100%; }
  .manifesto { padding: 72px 24px; }
  .manifesto-quote { padding-left: 20px; }
  .marketing-grid { grid-template-columns: 1fr; }
  .footer { padding: 36px 24px; }
}

/* Section heading link (Startup Teardown title → /teardowns) */
.section-heading-link {
  color: inherit;
  text-decoration: none;
  background: inherit;
  -webkit-background-clip: inherit;
  -webkit-text-fill-color: inherit;
  background-clip: inherit;
  transition: opacity 0.2s;
}
.section-heading-link:hover { opacity: 0.8; }

/* Product preview link (Read Edition 001 free →) */
.product-preview-link {
  display: inline-block;
  font-size: 14px;
  color: var(--blue);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s, gap 0.2s;
  margin-top: 4px;
}
.product-preview-link:hover { color: #60A5FA; }

/* Edition sources / citations */
.edition-sources { display: flex; flex-direction: column; gap: 32px; }
.edition-source-group { }
.edition-source-category {
  font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--fg-muted); margin-bottom: 14px; opacity: 0.7;
}
.edition-source-list {
  list-style: none; display: flex; flex-direction: column; gap: 12px;
}
.edition-source-list li {
  font-size: 14px; color: var(--fg-muted); line-height: 1.65;
  padding-left: 20px; position: relative;
}
.edition-source-list li::before {
  content: '';
  position: absolute; left: 0; top: 8px;
  width: 6px; height: 6px;
  background: var(--blue); border-radius: 50%;
  box-shadow: 0 0 6px rgba(59,130,246,0.4);
  flex-shrink: 0;
}
.edition-source-list em { font-style: italic; }

/* Edition footer back link */
.edition-footer-back-link {
  display: inline-block;
  font-size: 13px; color: var(--fg-muted); text-decoration: none;
  margin-top: 16px; transition: color 0.2s;
}
.edition-footer-back-link:hover { color: var(--fg); }

/* Teardowns archive page */
.teardowns-archive-page { min-height: 100vh; padding-top: 80px; }

.archive-header {
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg) 100%);
  padding: 80px 40px 72px;
  border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.archive-header::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 90% at 50% -10%, rgba(59,130,246,0.07) 0%, transparent 60%);
  pointer-events: none;
}
.archive-header::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(59,130,246,0.3), transparent);
}
.archive-header-inner {
  max-width: 720px; margin: 0 auto; position: relative; z-index: 1; text-align: center;
}
.archive-header-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 28px;
  padding: 7px 18px; border-radius: 100px;
  background: rgba(59,130,246,0.08); border: 1px solid rgba(59,130,246,0.2);
}
.archive-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 700; line-height: 1.0; letter-spacing: -0.04em;
  background: linear-gradient(135deg, #EFF2F8 0%, #8A9BC0 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 24px;
}
.archive-subtitle {
  font-size: 17px; color: var(--fg-muted); line-height: 1.7; max-width: 540px;
  margin: 0 auto 36px;
}
.archive-subscribe-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 28px; border-radius: 10px;
  background: var(--accent); color: #060A14; font-weight: 700; font-size: 15px;
  text-decoration: none; transition: all 0.25s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 4px 16px rgba(245,158,11,0.3), inset 0 1px 0 rgba(255,255,255,0.15);
}
.archive-subscribe-btn:hover {
  background: var(--accent-bright); transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245,158,11,0.4);
}

/* Archive body */
.archive-body { padding: 80px 40px; }
.archive-body-inner { max-width: 760px; margin: 0 auto; }
.archive-featured-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 20px; display: flex; align-items: center; gap: 10px;
}
.archive-featured-label::before {
  content: ''; width: 16px; height: 2px; background: var(--accent);
  border-radius: 1px; box-shadow: 0 0 8px var(--accent-glow);
}
.archive-featured-link { text-decoration: none; display: block; margin-bottom: 48px; }
.archive-featured-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.archive-featured-card:hover {
  border-color: rgba(245,158,11,0.3);
  box-shadow: var(--shadow-lg), 0 0 48px rgba(245,158,11,0.07);
  transform: translateY(-4px);
}
.archive-featured-accent {
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-bright));
  border-radius: 20px 20px 0 0;
}
.archive-featured-content { position: relative; z-index: 1; }
.archive-featured-meta {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 20px;
}
.archive-edition-badge {
  display: inline-block; padding: 5px 14px; border-radius: 100px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
  background: rgba(59,130,246,0.1); color: var(--blue);
  border: 1px solid rgba(59,130,246,0.25);
}
.archive-meta-sep { color: var(--fg-muted); opacity: 0.4; font-size: 13px; }
.archive-meta-date, .archive-meta-read { font-size: 13px; color: var(--fg-muted); font-weight: 500; }
.archive-featured-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700; line-height: 1.0; letter-spacing: -0.04em;
  background: linear-gradient(135deg, #EFF2F8 0%, #A8B4C8 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 16px;
}
.archive-featured-hook {
  font-size: 16px; color: var(--fg-muted); line-height: 1.75;
  max-width: 600px; margin-bottom: 24px;
}
.archive-featured-tags {
  display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 28px;
}
.archive-featured-tags span {
  display: inline-block; padding: 5px 14px; border-radius: 100px;
  font-size: 11px; font-weight: 500;
  background: var(--surface-2); color: var(--fg-muted); border: 1px solid var(--border);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.archive-featured-card:hover .archive-featured-tags span {
  background: rgba(245,158,11,0.06);
  border-color: rgba(245,158,11,0.2);
  color: var(--accent);
}
.archive-featured-cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 15px; font-weight: 700; color: var(--accent);
  transition: gap 0.2s, color 0.2s;
}
.archive-featured-card:hover .archive-featured-cta { gap: 12px; color: var(--accent-bright); }

/* Published edition card (used for Edition 002+) */
.archive-edition-link { text-decoration: none; display: block; }
.archive-edition-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 32px;
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.archive-edition-card:hover {
  border-color: rgba(59,130,246,0.3);
  box-shadow: var(--shadow-lg), 0 0 32px rgba(59,130,246,0.05);
  transform: translateY(-3px);
}
.archive-edition-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(59,130,246,0.5), transparent);
  border-radius: 18px 18px 0 0;
}
.archive-edition-meta {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 18px;
}
.archive-edition-title {
  font-family: var(--font-display); font-size: 32px; font-weight: 700;
  letter-spacing: -0.03em; color: var(--fg); margin-bottom: 12px;
}
.archive-edition-hook {
  font-size: 14px; color: var(--fg-muted); line-height: 1.7;
  max-width: 600px; margin-bottom: 20px;
}
.archive-edition-tags {
  display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px;
}
.archive-edition-tags span {
  display: inline-block; padding: 4px 12px; border-radius: 100px;
  font-size: 11px; font-weight: 500;
  background: var(--surface-2); color: var(--fg-muted); border: 1px solid var(--border);
}
.archive-edition-card:hover .archive-edition-tags span {
  background: rgba(59,130,246,0.06);
  border-color: rgba(59,130,246,0.2);
  color: var(--blue);
}
.archive-edition-cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 700; color: var(--blue);
  transition: gap 0.2s, color 0.2s;
}
.archive-edition-card:hover .archive-edition-cta { gap: 12px; color: #60A5FA; }

/* Upcoming edition card */
.archive-grid { display: grid; gap: 24px; }
.archive-upcoming-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 32px;
  position: relative; overflow: hidden;
  opacity: 0.65;
  transition: opacity 0.3s, border-color 0.3s;
}
.archive-upcoming-card:hover { opacity: 0.85; border-color: rgba(59,130,246,0.2); }
.archive-upcoming-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(59,130,246,0.4), transparent);
  border-radius: 18px 18px 0 0;
}
.archive-upcoming-badge {
  display: inline-block; padding: 4px 12px; border-radius: 100px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
  background: rgba(59,130,246,0.08); color: var(--blue);
  border: 1px solid rgba(59,130,246,0.2);
  margin-bottom: 16px;
}
.archive-upcoming-edition {
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--fg-muted); margin-bottom: 10px;
}
.archive-upcoming-title {
  font-family: var(--font-display); font-size: 28px; font-weight: 700;
  letter-spacing: -0.03em; color: var(--fg-muted); margin-bottom: 10px;
}
.archive-upcoming-desc {
  font-size: 14px; color: var(--fg-muted); line-height: 1.65; margin-bottom: 20px; opacity: 0.7;
}
.archive-upcoming-cta {
  font-size: 14px; font-weight: 600; color: var(--blue); text-decoration: none;
  transition: color 0.2s;
}
.archive-upcoming-cta:hover { color: #60A5FA; }

@media (max-width: 768px) {
  .archive-header { padding: 60px 24px 56px; }
  .archive-body { padding: 56px 24px; }
  .archive-featured-card { padding: 28px 24px; }
  .archive-upcoming-card { padding: 24px 20px; }
}

/* ============================================================
   Standalone Product Page (/teardown-report)
   ============================================================ */

.report-page { min-height: 100vh; padding-top: 70px; }

.report-hero {
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg) 100%);
  padding: 80px 40px 72px;
  border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.report-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 80% at 80% 50%, rgba(245,158,11,0.05) 0%, transparent 60%);
  pointer-events: none;
}
.report-hero-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; gap: 80px; align-items: center;
  position: relative; z-index: 1;
}
.report-hero-left { flex: 1; }
.report-hero-right { flex: 0 0 380px; }

.report-edition-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 16px; border-radius: 100px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.08em;
  background: rgba(245,158,11,0.1); color: var(--accent);
  border: 1px solid rgba(245,158,11,0.25);
  margin-bottom: 28px;
}

.report-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 7vw, 80px);
  font-weight: 700; line-height: 1.0; letter-spacing: -0.04em;
  background: linear-gradient(135deg, #EFF2F8 0%, #A8B4C0 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 16px;
}
.report-subtitle {
  font-size: 18px; color: var(--fg-muted); line-height: 1.6;
  margin-bottom: 24px; max-width: 440px;
}
.report-tags { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 36px; }
.report-tags span {
  display: inline-block; padding: 5px 14px; border-radius: 100px;
  font-size: 12px; font-weight: 500; background: var(--surface-2);
  color: var(--fg-muted); border: 1px solid var(--border);
}

.report-price-row { display: flex; align-items: baseline; gap: 14px; margin-bottom: 20px; }
.report-price {
  font-family: var(--font-display); font-size: 56px; font-weight: 700;
  letter-spacing: -0.04em; color: var(--accent);
}
.report-price-label { font-size: 15px; color: var(--fg-muted); }

.report-cta-row { display: flex; flex-direction: column; gap: 8px; margin-bottom: 28px; }
.report-cta-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 18px 32px; border-radius: 12px;
  background: var(--accent); color: #060A14; font-weight: 700; font-size: 16px;
  text-decoration: none; width: fit-content;
  transition: all 0.25s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 6px 20px rgba(245,158,11,0.35), inset 0 1px 0 rgba(255,255,255,0.15);
}
.report-cta-btn:hover {
  background: var(--accent-bright); transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(245,158,11,0.45);
}
.report-cta-sub { font-size: 12px; color: var(--fg-muted); opacity: 0.7; }

.report-trust-row { display: flex; gap: 20px; flex-wrap: wrap; }
.report-trust-item {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; color: var(--fg-muted); font-weight: 500;
}

/* Preview card */
.report-preview-card {
  background: var(--surface-2); border: 1px solid var(--border);
  border-radius: 20px; overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: border-color 0.3s, transform 0.3s;
}
.report-preview-card:hover { border-color: rgba(245,158,11,0.2); transform: translateY(-3px); }
.report-preview-accent {
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-bright));
}
.report-preview-content { padding: 28px 24px; }
.report-preview-section-label {
  font-size: 10px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--fg-muted); margin-bottom: 10px;
  display: flex; align-items: center; gap: 6px;
}
.report-preview-text {
  font-size: 14px; color: var(--fg-muted); line-height: 1.65;
  margin-bottom: 16px; font-style: italic;
}
.report-preview-divider { height: 1px; background: var(--border); margin: 16px 0; }
.report-preview-lesson {
  font-size: 13px; color: var(--fg); line-height: 1.55;
  margin-bottom: 8px; padding-left: 12px;
  border-left: 2px solid var(--accent);
}
.report-preview-lock {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; color: var(--fg-muted); margin-top: 8px;
  opacity: 0.6;
}

/* Sections */
.report-section { padding: 80px 40px; }
.report-section-inner { max-width: 900px; margin: 0 auto; }
.report-section-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 12px; display: flex; align-items: center; gap: 10px;
}
.report-section-label::before { content: ''; width: 20px; height: 2px; background: var(--accent); border-radius: 1px; }
.report-section-heading {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700; letter-spacing: -0.03em; color: var(--fg);
  margin-bottom: 48px;
}

/* Chapters */
.report-chapters { display: flex; flex-direction: column; gap: 32px; }
.report-chapter { display: flex; gap: 28px; align-items: flex-start; }
.report-chapter-num {
  font-family: var(--font-display); font-size: 32px; font-weight: 700;
  color: rgba(59,130,246,0.2); letter-spacing: -0.03em;
  flex-shrink: 0; width: 48px; line-height: 1.1;
}
.report-chapter-body { flex: 1; }
.report-chapter-title {
  font-family: var(--font-display); font-size: 18px; font-weight: 600;
  color: var(--fg); margin-bottom: 8px;
}
.report-chapter-desc { font-size: 14px; color: var(--fg-muted); line-height: 1.7; }

/* Quote section */
.report-quote-section {
  padding: 80px 40px;
  background: linear-gradient(180deg, transparent, rgba(59,130,246,0.03), transparent);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.report-quote-inner { max-width: 720px; margin: 0 auto; text-align: center; }
.report-quote {
  font-family: var(--font-display); font-size: clamp(18px, 3vw, 24px);
  font-weight: 500; line-height: 1.6; color: var(--fg);
  border-left: 3px solid var(--blue); padding-left: 32px;
  text-align: left; box-shadow: -3px 0 16px rgba(59,130,246,0.15);
  margin-bottom: 16px;
}
.report-quote-attr { font-size: 13px; color: var(--fg-muted); margin-bottom: 8px; font-style: italic; }
.report-quote-context { font-size: 15px; color: var(--fg-muted); }

/* Buy section */
.report-buy-section { padding: 80px 40px; }
.report-buy-inner { max-width: 600px; margin: 0 auto; }
.report-buy-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-lg);
  margin-bottom: 28px;
}
.report-buy-card-accent {
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-bright), var(--accent));
}
.report-buy-card-content { padding: 40px 36px 32px; }
.report-buy-edition {
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 14px;
}
.report-buy-title {
  font-family: var(--font-display); font-size: 36px; font-weight: 700;
  letter-spacing: -0.03em; color: var(--fg); margin-bottom: 10px;
}
.report-buy-desc { font-size: 15px; color: var(--fg-muted); margin-bottom: 28px; }

.report-buy-includes { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.report-buy-include-item {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; color: var(--fg);
}

.report-buy-total-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  margin-bottom: 20px;
}
.report-buy-total-label { font-size: 16px; color: var(--fg-muted); font-weight: 500; }
.report-buy-total-price {
  font-family: var(--font-display); font-size: 36px; font-weight: 700;
  letter-spacing: -0.03em; color: var(--accent);
}

.report-buy-btn {
  display: block; text-align: center;
  padding: 18px; border-radius: 12px;
  background: var(--accent); color: #060A14; font-weight: 700; font-size: 16px;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 6px 20px rgba(245,158,11,0.35);
  margin-bottom: 12px;
}
.report-buy-btn:hover {
  background: var(--accent-bright); transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(245,158,11,0.45);
}
.report-buy-note { font-size: 12px; color: var(--fg-muted); text-align: center; opacity: 0.7; }

/* Email alt */
.report-email-alt { text-align: center; }
.report-email-alt-label { font-size: 14px; color: var(--fg-muted); margin-bottom: 16px; }
.report-email-form { display: flex; gap: 10px; margin-bottom: 10px; }
.report-email-input {
  flex: 1; padding: 13px 16px; border-radius: 10px;
  background: var(--surface-2); border: 1px solid var(--border);
  color: var(--fg); font-size: 14px; font-family: var(--font-body);
  outline: none; transition: border-color 0.2s;
}
.report-email-input::placeholder { color: var(--fg-muted); opacity: 0.55; }
.report-email-input:focus { border-color: rgba(245,158,11,0.4); }
.report-email-btn {
  padding: 13px 20px; border-radius: 10px;
  background: var(--surface-2); border: 1px solid var(--border);
  color: var(--fg); font-size: 14px; font-weight: 600;
  font-family: var(--font-body); cursor: pointer; white-space: nowrap;
  transition: background 0.2s, border-color 0.2s;
}
.report-email-btn:hover { background: var(--surface-3); border-color: var(--border-hover); }
.report-email-btn:disabled { opacity: 0.5; cursor: not-allowed; }
.report-email-success {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 14px; font-weight: 600; color: #34d399;
  padding: 12px; background: rgba(16,185,129,0.08);
  border: 1px solid rgba(16,185,129,0.2); border-radius: 10px;
  margin-bottom: 8px;
}
.report-email-sub { font-size: 12px; color: var(--fg-muted); opacity: 0.7; }

/* FAQ */
.report-faq-section { padding: 80px 40px; background: var(--surface); }
.report-faq-inner { max-width: 800px; margin: 0 auto; }
.report-faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 36px; }
.report-faq-item { }
.report-faq-q {
  font-family: var(--font-display); font-size: 16px; font-weight: 600;
  color: var(--fg); margin-bottom: 8px;
}
.report-faq-a { font-size: 14px; color: var(--fg-muted); line-height: 1.65; }

/* Footer */
.report-footer {
  padding: 32px 40px;
  border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; gap: 16px;
}
.report-footer-back, .report-footer-home {
  font-size: 13px; color: var(--fg-muted); text-decoration: none; transition: color 0.2s;
}
.report-footer-back:hover, .report-footer-home:hover { color: var(--fg); }
.report-footer-sep { color: var(--fg-muted); opacity: 0.4; }

/* Sticky buy bar */
.report-sticky-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--surface); border-top: 1px solid var(--border);
  padding: 14px 20px; z-index: 150;
  align-items: center; justify-content: space-between; gap: 16px;
  box-shadow: 0 -8px 24px rgba(0,0,0,0.4);
}
.report-sticky-bar.visible { display: flex; }
.report-sticky-price {
  font-family: var(--font-display); font-size: 24px; font-weight: 700;
  color: var(--accent); letter-spacing: -0.03em;
}
.report-sticky-btn {
  padding: 13px 24px; border-radius: 10px;
  background: var(--accent); color: #060A14; font-weight: 700; font-size: 14px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(245,158,11,0.3);
}

@media (max-width: 768px) {
  .report-hero { padding: 60px 24px 48px; }
  .report-hero-inner { flex-direction: column; gap: 36px; }
  .report-hero-right { flex: 1; width: 100%; }
  .report-section { padding: 60px 24px; }
  .report-quote-section { padding: 60px 24px; }
  .report-buy-section { padding: 60px 24px; }
  .report-faq-section { padding: 60px 24px; }
  .report-faq-grid { grid-template-columns: 1fr; }
  .report-chapter { flex-direction: column; gap: 8px; }
  .report-chapter-num { font-size: 24px; }
  .report-buy-card-content { padding: 28px 20px 24px; }
  .report-email-form { flex-direction: column; }
  .report-footer { padding: 24px 20px; }
}


/* ============================================================
   Contact / Intake Form (/contact)
   ============================================================ */

.contact-page {
  min-height: 100vh;
  padding: 120px 40px 80px;
  display: flex;
  justify-content: center;
}

.contact-page-inner {
  width: 100%;
  max-width: 720px;
}

.contact-page-header {
  margin-bottom: 48px;
}

.contact-page-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: var(--fg);
  margin: 12px 0 16px;
}

.contact-page-sub {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 560px;
}

/* Form wrapper */
.contact-form-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px 40px 32px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Row layout */
.cf-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* Field */
.cf-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cf-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.cf-req { color: var(--accent); }
.cf-optional { color: var(--fg-muted); font-weight: 400; text-transform: none; letter-spacing: 0; }

/* Inputs / selects / textarea */
.cf-input,
.cf-select,
.cf-textarea {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 15px;
  padding: 12px 16px;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  width: 100%;
}

.cf-input::placeholder,
.cf-textarea::placeholder { color: var(--fg-muted); opacity: 0.55; }

.cf-input:focus,
.cf-select:focus,
.cf-textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-dim);
}

.cf-select {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%236B7F9E' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.cf-select option {
  background: #0d1628;
  color: var(--fg);
}

.cf-textarea { resize: vertical; min-height: 120px; }

/* Radio group */
.cf-radio-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.cf-radio-option {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 16px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  position: relative;
}

.cf-radio-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.cf-radio-option:hover {
  border-color: var(--border-hover);
  background: var(--surface-3);
}

.cf-radio-option.selected {
  border-color: var(--accent);
  background: var(--accent-dim);
}

.cf-radio-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--fg);
  pointer-events: none;
}

.cf-radio-sub {
  font-size: 12px;
  color: var(--fg-muted);
  line-height: 1.45;
  pointer-events: none;
}

/* Submit row */
.cf-submit-row { margin-top: 4px; }

.cf-submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #0a0a0f;
  border: none;
  border-radius: 10px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 14px 28px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, opacity 0.2s;
}

.cf-submit-btn:hover { background: var(--accent-bright); transform: translateY(-1px); }
.cf-submit-btn:active { transform: translateY(0); }
.cf-submit-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

/* Error / success states */
.cf-error {
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.25);
  border-radius: 8px;
  color: #f87171;
  font-size: 14px;
  padding: 12px 16px;
}

.cf-success {
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: 12px;
  color: #34d399;
  font-size: 16px;
  padding: 24px;
  text-align: center;
  line-height: 1.6;
}

/* Fallback email line */
.contact-fallback {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--fg-muted);
  text-align: center;
}

.contact-fallback a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

.contact-fallback a:hover { text-decoration: underline; }

/* Responsive */
@media (max-width: 768px) {
  .contact-page { padding: 100px 20px 60px; }
  .contact-form-wrap { padding: 28px 20px 24px; }
  .cf-row-2 { grid-template-columns: 1fr; }
  .cf-radio-group { grid-template-columns: 1fr; }
}
