/* TechStart Pitch Deck Sprint Style System */

@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');

:root {
  /* Colors */
  --color-primary: #005ac8;      /* TechStart Blue */
  --color-primary-dark: #0046a0;
  --color-primary-light: #e6f0fa;
  --color-secondary: #e9661f;    /* TechStart Gold/Orange */
  --color-secondary-dark: #d5530f;
  --color-secondary-light: #fef0e6;
  --color-dark: #111827;         /* Charcoal Black */
  --color-dark-muted: #4b5563;   /* Slate Gray */
  --color-light: #ffffff;
  --color-light-bg: #f9fafb;     /* Very Light Gray */
  --color-border: #e5e7eb;
  
  /* Fonts */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  
  /* Layout */
  --max-width: 1200px;
  --header-height: 80px;
  
  /* Transitions & Shadows */
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-glow: 0 0 20px rgba(0, 90, 200, 0.15);
  --shadow-glow-gold: 0 0 20px rgba(233, 102, 31, 0.2);
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--color-light);
  color: var(--color-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-dark);
}

p {
  color: var(--color-dark-muted);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}

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

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

.section-padding {
  padding: 100px 0;
}

.text-center {
  text-align: center;
}

.grid {
  display: grid;
  gap: 32px;
}

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

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

@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: 2px solid transparent;
  gap: 8px;
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-light);
}

.btn-primary:hover {
  background-color: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.btn-secondary {
  background-color: var(--color-secondary);
  color: var(--color-light);
}

.btn-secondary:hover {
  background-color: var(--color-secondary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-gold);
}

.btn-outline {
  background-color: transparent;
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.btn-outline:hover {
  background-color: var(--color-primary-light);
  transform: translateY(-2px);
}

.btn-outline-white {
  background-color: transparent;
  border-color: var(--color-light);
  color: var(--color-light);
}

.btn-outline-white:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: var(--transition-smooth);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
  background-color: rgba(255, 255, 255, 0.95);
}

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

.logo-link {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-img {
  height: 36px;
  width: auto;
}

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

.nav-link {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--color-dark-muted);
}

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

.header-cta {
  display: none;
}

@media (min-width: 992px) {
  .nav-links {
    display: flex;
  }
  .header-cta {
    display: block;
  }
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.mobile-nav-toggle span {
  width: 100%;
  height: 2px;
  background-color: var(--color-dark);
  transition: var(--transition-smooth);
}

@media (min-width: 992px) {
  .mobile-nav-toggle {
    display: none;
  }
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background-color: var(--color-light);
  box-shadow: var(--shadow-xl);
  z-index: 999;
  padding: 100px 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: var(--transition-smooth);
}

.mobile-drawer.open {
  right: 0;
}

.mobile-drawer .nav-link {
  font-size: 1.2rem;
  font-weight: 600;
}

/* Section Header styling */
.section-header {
  max-width: 700px;
  margin: 0 auto 60px auto;
}

.section-header h2 {
  font-size: 2.25rem;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-header p {
  font-size: 1.15rem;
}

@media (min-width: 768px) {
  .section-header h2 {
    font-size: 2.75rem;
  }
}

/* Hero Section */
.hero {
  padding-top: calc(var(--header-height) + 60px);
  padding-bottom: 100px;
  background-color: var(--color-light);
  overflow: hidden;
}

.hero-content {
  max-width: 600px;
}

.hero-headline {
  font-size: 2.75rem;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
  font-weight: 800;
}

.hero-headline span.gradient-text {
  color: var(--color-primary);
}

.hero-subheadline {
  font-size: 1.15rem;
  margin-bottom: 36px;
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}

.hero-trust-points {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.trust-point {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-dark-muted);
}

.trust-point svg {
  color: var(--color-primary);
  flex-shrink: 0;
}

/* Hero Visual: Laptop and Floating Slides */
.hero-visual-wrapper {
  position: relative;
  margin-top: 60px;
}

@media (min-width: 768px) {
  .hero-visual-wrapper {
    margin-top: 0;
  }
}

.laptop-container {
  width: 100%;
  max-width: 540px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  filter: drop-shadow(var(--shadow-xl));
}

.laptop-screen {
  background: #2d3748;
  border-radius: 12px 12px 0 0;
  padding: 12px;
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  box-shadow: inset 0 2px 8px rgba(0,0,0,0.8);
}

.laptop-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

.laptop-base {
  background: #e2e8f0;
  height: 14px;
  border-radius: 0 0 16px 16px;
  position: relative;
  width: 110%;
  left: -5%;
  box-shadow: 0 10px 15px -5px rgba(0,0,0,0.2);
}

.laptop-base::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: #cbd5e0;
  border-radius: 0 0 4px 4px;
}

/* Floating Slides */
.floating-slide {
  position: absolute;
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.7);
  overflow: hidden;
  width: 180px;
  aspect-ratio: 16/9;
  z-index: 3;
  animation: float-slow 6s ease-in-out infinite;
  transition: var(--transition-smooth);
}

.floating-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floating-slide:hover {
  transform: scale(1.1) translateY(-5px);
  z-index: 10;
  box-shadow: var(--shadow-xl);
}

.fs-1 {
  top: -20px;
  left: -20px;
  animation-delay: 0s;
}

.fs-2 {
  bottom: 20px;
  left: -40px;
  animation-delay: 1.5s;
}

.fs-3 {
  top: 10px;
  right: -30px;
  animation-delay: 3s;
}

.fs-4 {
  bottom: 40px;
  right: -10px;
  animation-delay: 4.5s;
}

@keyframes float-slow {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@media (min-width: 992px) {
  .hero .container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 48px;
  }
  .hero-headline {
    font-size: 3.5rem;
  }
  .floating-slide {
    width: 220px;
  }
}

/* Problem Section */
.problem-section {
  background-color: var(--color-light-bg);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.problem-card {
  background: var(--color-light);
  border-radius: 12px;
  padding: 32px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary-light);
}

.problem-icon-wrapper {
  background-color: var(--color-secondary-light);
  color: var(--color-secondary);
  width: 48px;
  height: 48px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.problem-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.problem-card p {
  font-size: 0.95rem;
  color: var(--color-dark-muted);
}

.problem-transition {
  margin-top: 50px;
  padding: 24px;
  background-color: var(--color-primary-light);
  border-radius: 12px;
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-primary-dark);
  text-align: center;
}

/* Before and After Section */
.before-after-section {
  background-color: var(--color-light);
}

.ba-selector {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.ba-tab-btn {
  background: var(--color-light-bg);
  border: 1px solid var(--color-border);
  padding: 12px 24px;
  font-family: var(--font-heading);
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  color: var(--color-dark-muted);
  transition: var(--transition-smooth);
}

.ba-tab-btn:hover {
  background-color: var(--color-primary-light);
  color: var(--color-primary);
}

.ba-tab-btn.active {
  background-color: var(--color-primary);
  color: var(--color-light);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-glow);
}

.ba-container {
  position: relative;
  background: var(--color-light-bg);
  border-radius: 16px;
  padding: 40px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.ba-content-item {
  display: none;
  animation: fadeIn 0.5s ease;
}

.ba-content-item.active {
  display: block;
}

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

@media (min-width: 768px) {
  .ba-visual-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.ba-panel {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
  background-color: #ffffff;
}

.ba-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  z-index: 10;
}

.ba-badge.before {
  background: rgba(17, 24, 39, 0.8);
  color: #ffffff;
}

.ba-badge.after {
  background: var(--color-primary);
  color: #ffffff;
}

.ba-sample-label {
  position: absolute;
  bottom: 12px;
  right: 12px;
  font-size: 0.75rem;
  color: var(--color-dark-muted);
  background: rgba(255,255,255,0.8);
  padding: 2px 8px;
  border-radius: 4px;
}

.ba-improvements {
  grid-column: span 1;
  text-align: center;
  background-color: var(--color-primary-light);
  border-radius: 8px;
  padding: 16px;
  font-weight: 500;
  color: var(--color-primary-dark);
}

@media (min-width: 768px) {
  .ba-improvements {
    grid-column: span 2;
  }
}

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

/* Value Proposition Section */
.val-prop-section {
  background-color: var(--color-light-bg);
}

.val-table-wrapper {
  overflow-x: auto;
  margin-bottom: 60px;
  box-shadow: var(--shadow-md);
  border-radius: 12px;
  border: 1px solid var(--color-border);
  background: var(--color-light);
}

.val-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  min-width: 600px;
}

.val-table th, .val-table td {
  padding: 20px 24px;
  border-bottom: 1px solid var(--color-border);
}

.val-table th {
  background: #f8fafc;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
}

.val-table tr:last-child td {
  border-bottom: none;
}

.val-table td strong {
  font-weight: 600;
  color: var(--color-dark);
}

.val-table tr.highlighted-row {
  background-color: var(--color-primary-light);
}

.val-table tr.highlighted-row td {
  color: var(--color-primary-dark);
  font-weight: 500;
}

.val-table tr.highlighted-row td strong {
  color: var(--color-primary-dark);
}

.badge-green {
  background: #d1fae5;
  color: #065f46;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
}

.badge-red {
  background: #fee2e2;
  color: #991b1b;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
}

.val-benefits {
  margin-top: 40px;
}

.benefit-card {
  background: var(--color-light);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 24px;
  display: flex;
  gap: 16px;
}

.benefit-icon-wrapper {
  background-color: var(--color-primary-light);
  color: var(--color-primary);
  width: 40px;
  height: 40px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-card h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.benefit-card p {
  font-size: 0.9rem;
}

/* What's Included Section */
.included-section {
  background-color: var(--color-light);
}

.included-card {
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 32px;
  background-color: var(--color-light-bg);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

.included-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary-light);
}

.included-card svg {
  color: var(--color-primary);
  margin-bottom: 16px;
  flex-shrink: 0;
}

.included-card h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.included-card p {
  font-size: 0.9rem;
}

.included-note {
  margin-top: 60px;
  background-color: var(--color-secondary-light);
  border-left: 4px solid var(--color-secondary);
  padding: 20px;
  border-radius: 0 8px 8px 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.included-note p {
  color: var(--color-secondary-dark);
  font-weight: 500;
  font-size: 1rem;
}

/* Investor Story Framework */
.framework-section {
  background-color: var(--color-light-bg);
}

.framework-card {
  background-color: var(--color-light);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 24px;
  transition: var(--transition-smooth);
}

.framework-card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-glow);
}

.framework-number {
  color: var(--color-secondary);
  font-weight: 800;
  font-size: 1.25rem;
  font-family: var(--font-heading);
  margin-bottom: 8px;
}

.framework-card h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  font-weight: 600;
}

.framework-card p {
  font-size: 0.9rem;
}

/* Process Section */
.process-section {
  background-color: var(--color-light);
}

.process-timeline {
  display: flex;
  flex-direction: column;
  position: relative;
  margin: 40px 0;
  gap: 32px;
}

.process-timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, var(--color-secondary), var(--color-primary));
}

.process-step {
  display: flex;
  gap: 24px;
  position: relative;
  z-index: 2;
}

.step-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--color-light);
  border: 4px solid var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--color-primary);
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.process-step:nth-child(1) .step-number,
.process-step:nth-child(2) .step-number {
  border-color: var(--color-secondary);
  color: var(--color-secondary);
}

.process-step:hover .step-number {
  transform: scale(1.1);
  box-shadow: var(--shadow-md);
}

.step-content {
  background-color: var(--color-light-bg);
  padding: 24px;
  border-radius: 8px;
  border: 1px solid var(--color-border);
  flex-grow: 1;
}

.step-content h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.step-content p {
  font-size: 0.95rem;
}

@media (min-width: 992px) {
  .process-timeline {
    flex-direction: row;
    justify-content: space-between;
    gap: 0;
  }
  .process-timeline::before {
    left: 0;
    right: 0;
    top: 20px;
    height: 4px;
    width: 100%;
    background: linear-gradient(to right, var(--color-secondary) 30%, var(--color-primary) 70%);
  }
  .process-step {
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 19%;
  }
  .step-content {
    margin-top: 16px;
  }
}

.process-note {
  text-align: center;
  font-size: 0.95rem;
  color: var(--color-dark-muted);
  margin-top: 40px;
  font-style: italic;
}

/* Pricing Section */
.pricing-section {
  background-color: var(--color-light-bg);
}

.pricing-grid {
  align-items: stretch;
}

.pricing-card {
  background: var(--color-light);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 40px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.pricing-card.recommended {
  border: 3px solid var(--color-primary);
  box-shadow: var(--shadow-lg);
}

.pricing-card.recommended:hover {
  box-shadow: 0 25px 30px -10px rgba(0, 90, 200, 0.15);
}

.recommended-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--color-primary);
  color: var(--color-light);
  padding: 6px 18px;
  border-radius: 20px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.pricing-card h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.pricing-price {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--color-dark);
  margin-bottom: 8px;
  line-height: 1;
}

.pricing-desc {
  font-size: 0.95rem;
  margin-bottom: 24px;
  min-height: 48px;
}

.pricing-features-list {
  list-style: none;
  margin-bottom: 32px;
  flex-grow: 1;
}

.pricing-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  margin-bottom: 12px;
  color: var(--color-dark-muted);
}

.pricing-feature-item svg {
  color: var(--color-primary);
  flex-shrink: 0;
}

.pricing-card.recommended .pricing-feature-item svg {
  color: var(--color-secondary);
}

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

.addons-box {
  margin-top: 60px;
  background-color: var(--color-light);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 32px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.addons-box h3 {
  font-size: 1.35rem;
  margin-bottom: 20px;
  text-align: center;
}

.addons-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

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

.addon-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  background-color: var(--color-light-bg);
  border: 1px solid var(--color-border);
  border-radius: 8px;
}

.addon-name {
  font-weight: 600;
  font-size: 0.95rem;
}

.addon-price {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-primary);
}

/* Founding Offer Section */
.founding-section {
  background-color: var(--color-secondary-light);
  border-top: 1px solid rgba(233, 102, 31, 0.2);
  border-bottom: 1px solid rgba(233, 102, 31, 0.2);
}

.founding-wrapper {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.founding-badge {
  background-color: var(--color-secondary);
  color: var(--color-light);
  display: inline-block;
  padding: 6px 16px;
  border-radius: 20px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.founding-section h2 {
  font-size: 2.25rem;
  color: var(--color-secondary-dark);
  margin-bottom: 16px;
}

.founding-section p {
  color: var(--color-dark);
  font-size: 1.1rem;
  margin-bottom: 32px;
}

.founding-spots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  font-weight: 600;
  color: var(--color-secondary-dark);
}

.spots-indicator {
  display: flex;
  gap: 6px;
}

.spot-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--color-border);
}

.spot-dot.filled {
  background-color: var(--color-secondary);
}

.spot-dot.active-blink {
  background-color: var(--color-secondary);
  animation: pulse-orange 1.5s infinite;
}

@keyframes pulse-orange {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.5; }
  100% { transform: scale(1); opacity: 1; }
}

/* Social Proof & Who it's For */
.social-proof-section {
  background-color: var(--color-light);
}

.testimonials-grid {
  margin-top: 40px;
}

.testimonial-card {
  background: var(--color-light-bg);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 32px;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 20px;
  color: var(--color-dark);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--color-primary-light);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: var(--font-heading);
}

.author-info h4 {
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.author-info p {
  font-size: 0.8rem;
}

/* Who it is For Section */
.who-for-section {
  background-color: var(--color-light);
}

.fit-card {
  border-radius: 16px;
  padding: 40px;
  height: 100%;
}

.fit-card.good-fit {
  background-color: rgba(230, 240, 250, 0.5);
  border: 1px solid var(--color-primary-light);
}

.fit-card.not-ready {
  background-color: #fafafa;
  border: 1px solid var(--color-border);
}

.fit-card h3 {
  font-size: 1.5rem;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.fit-card.good-fit h3 {
  color: var(--color-primary-dark);
}

.fit-card.not-ready h3 {
  color: var(--color-dark-muted);
}

.fit-list {
  list-style: none;
}

.fit-item {
  display: flex;
  gap: 12px;
  font-size: 0.95rem;
  margin-bottom: 16px;
  align-items: flex-start;
}

.fit-item svg {
  margin-top: 3px;
  flex-shrink: 0;
}

.good-fit .fit-item svg {
  color: var(--color-primary);
}

.not-ready .fit-item svg {
  color: var(--color-dark-muted);
}

/* FAQ Section */
.faq-section {
  background-color: var(--color-light-bg);
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--color-light);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-question {
  width: 100%;
  padding: 24px;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--color-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.faq-question svg {
  transition: var(--transition-smooth);
  flex-shrink: 0;
}

.faq-question.active svg {
  transform: rotate(180deg);
  color: var(--color-primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.faq-answer-inner {
  padding: 0 24px 24px 24px;
  color: var(--color-dark-muted);
  font-size: 0.95rem;
}

/* Final CTA Section */
.final-cta {
  background-color: var(--color-primary);
  color: var(--color-light);
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 80% 20%, rgba(233, 102, 31, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.final-cta h2, .final-cta p, .final-cta h3 {
  color: var(--color-light);
}

.final-cta-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 992px) {
  .final-cta-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

.final-cta-left h2 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.final-cta-left .cta-statement {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-secondary-light);
  margin-bottom: 24px;
}

.final-cta-left p {
  margin-bottom: 32px;
  font-size: 1.05rem;
  opacity: 0.9;
}

.final-cta-left .btn {
  margin-right: 16px;
  margin-bottom: 16px;
}

.final-cta-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 32px;
  border-radius: 16px;
  backdrop-filter: blur(10px);
}

.qr-code-wrapper {
  background: var(--color-light);
  padding: 16px;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-lg);
}

.qr-code-img {
  width: 180px;
  height: 180px;
}

.final-cta-right h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  font-weight: 600;
}

.final-cta-right p {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-bottom: 16px;
  text-align: center;
}

.email-link {
  color: var(--color-secondary) !important;
  font-weight: 700;
  font-size: 1.05rem;
}

.email-link:hover {
  text-decoration: underline;
}

/* Forms (Intake Page) */
.intake-section {
  padding-top: calc(var(--header-height) + 40px);
  background-color: var(--color-light-bg);
}

.form-card {
  background-color: var(--color-light);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 40px;
  box-shadow: var(--shadow-lg);
  max-width: 700px;
  margin: 0 auto;
}

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

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 8px;
  color: var(--color-dark);
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background-color: var(--color-light-bg);
  transition: var(--transition-smooth);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-primary);
  background-color: var(--color-light);
  box-shadow: 0 0 0 3px rgba(0, 90, 200, 0.1);
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234b5563' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
  padding-right: 40px;
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.form-card .btn {
  width: 100%;
  margin-top: 16px;
}

.file-upload-wrapper {
  position: relative;
  border: 2px dashed var(--color-border);
  border-radius: 8px;
  padding: 24px;
  text-align: center;
  background-color: var(--color-light-bg);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.file-upload-wrapper:hover {
  border-color: var(--color-primary);
  background-color: var(--color-primary-light);
}

.file-upload-wrapper input[type="file"] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.file-upload-icon {
  color: var(--color-primary);
  margin-bottom: 12px;
}

.file-upload-text {
  font-size: 0.9rem;
  color: var(--color-dark-muted);
}

.file-upload-text span {
  color: var(--color-primary);
  font-weight: 600;
}

.file-selected-name {
  margin-top: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-primary-dark);
  display: none;
}

/* Platform Options Grid */
.platform-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

@media (min-width: 768px) {
  .platform-options {
    grid-template-columns: repeat(4, 1fr);
  }
}

.platform-option {
  position: relative;
}

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

.platform-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 8px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.85rem;
  transition: var(--transition-smooth);
  text-align: center;
  background-color: var(--color-light-bg);
}

.platform-option input[type="radio"]:checked + .platform-label {
  border-color: var(--color-primary);
  background-color: var(--color-primary-light);
  color: var(--color-primary-dark);
  box-shadow: 0 0 0 2px var(--color-primary-light);
}

.platform-icon {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

/* Thank You Page Styling */
.thank-you-section {
  padding-top: calc(var(--header-height) + 60px);
  padding-bottom: 100px;
  background-color: var(--color-light-bg);
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.thank-you-card {
  background: var(--color-light);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 60px 40px;
  box-shadow: var(--shadow-xl);
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.success-icon-wrapper {
  background-color: #d1fae5;
  color: #10b981;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px auto;
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.2);
}

.thank-you-card h1 {
  font-size: 2.25rem;
  margin-bottom: 16px;
}

.thank-you-card p {
  font-size: 1.05rem;
  margin-bottom: 32px;
}

.next-steps-list {
  text-align: left;
  background-color: var(--color-light-bg);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 32px;
}

.next-steps-list h3 {
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.next-step-item {
  display: flex;
  gap: 12px;
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.next-step-item:last-child {
  margin-bottom: 0;
}

.next-step-item svg {
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 3px;
}

/* Footer */
.footer {
  background-color: var(--color-dark);
  color: var(--color-light);
  padding: 60px 0 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer h3, .footer p {
  color: var(--color-light);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }
}

.footer-brand h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-logo {
  height: 30px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  font-size: 0.9rem;
  opacity: 0.7;
  max-width: 320px;
}

.footer-links h4 {
  font-size: 1.1rem;
  margin-bottom: 16px;
  position: relative;
  padding-bottom: 8px;
}

.footer-links h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  background-color: var(--color-primary);
}

.footer-links-list {
  list-style: none;
}

.footer-links-list li {
  margin-bottom: 12px;
}

.footer-links-list a {
  font-size: 0.9rem;
  opacity: 0.7;
}

.footer-links-list a:hover {
  opacity: 1;
  color: var(--color-secondary);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-bottom p {
  font-size: 0.85rem;
  opacity: 0.5;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 0.85rem;
  opacity: 0.5;
}

.footer-bottom-links a:hover {
  opacity: 1;
}

/* Secondary CTA Modal (Free 3-Slide Review) */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(17, 24, 39, 0.6);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  background: var(--color-light);
  border-radius: 16px;
  padding: 40px;
  max-width: 500px;
  width: 90%;
  box-shadow: var(--shadow-xl);
  position: relative;
  transform: translateY(20px);
  transition: var(--transition-smooth);
}

.modal-overlay.open .modal-card {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-dark-muted);
}

.modal-card h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.modal-card p {
  font-size: 0.95rem;
  margin-bottom: 24px;
}

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

/* Analytics Log Floating Console (For Demo / Launch Verification) */
.analytics-console {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background-color: rgba(17, 24, 39, 0.9);
  color: #10b981;
  padding: 12px 18px;
  border-radius: 8px;
  font-family: monospace;
  font-size: 0.8rem;
  z-index: 10000;
  box-shadow: var(--shadow-lg);
  pointer-events: none;
  max-width: 300px;
  border: 1px solid #10b981;
  opacity: 0;
  transition: var(--transition-smooth);
}

.analytics-console.show {
  opacity: 1;
}
