/* ===== ORGANIC/ALIVE ===== */
/* Light that moves with us - Photometrics AI */

/* ===== FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,400&family=Work+Sans:wght@300;400;500;600&display=swap');

/* ===== VARIABLES ===== */
:root {
  /* Living Night - Backgrounds */
  --bg-deep: #0a0f14;
  --bg-dark: #0f1419;
  --bg-navy: #141b24;
  --bg-card: #1a222d;
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;

  /* Accent */
  --accent: #4ea3dc;
  --accent-light: #7dbde8;
  --accent-glow: rgba(78, 163, 220, 0.08);

  /* Light Colors */
  --light-warm: #ffefd5;
  --light-cool: #e8f4fc;

  /* Text - Organic (softer whites) */
  --text-white: rgba(255, 255, 255, 0.95);
  --text-light: rgba(255, 255, 255, 0.75);
  --text-muted: rgba(255, 255, 255, 0.5);
  --text-dark: #1a1a2e;
  --text-body: #4a5568;
  --text-subtle: #718096;

  /* Borders */
  --border-light: rgba(255, 255, 255, 0.08);
  --border-dark: rgba(0, 0, 0, 0.08);

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Work Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font: var(--font-body);

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 3rem;
  --space-xl: 5rem;
  --space-2xl: 8rem;

  /* Layout */
  --container: 1100px;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-full: 100px;

  /* Animation - Organic Motion */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-organic: cubic-bezier(0.25, 0.1, 0.25, 1);
  --duration: 0.3s;
  --breath-slow: 6s;
  --breath-fast: 3s;
}

/* ===== UTILITY: Screen Reader Only ===== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

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

body {
  font-family: var(--font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-body);
  background: var(--bg-white);
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color var(--duration) var(--ease);
}

a:hover {
  color: var(--accent-light);
}

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

/* ===== TYPOGRAPHY ===== */
h1, h2 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h3, h4, h5, h6 {
  font-family: var(--font-body);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2.75rem, 7vw, 4.5rem);
  font-weight: 300;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 400;
}

h3 {
  font-size: 1.25rem;
  font-weight: 500;
}

h4 {
  font-size: 1rem;
  font-weight: 500;
}

p {
  margin-bottom: var(--space-sm);
}

.lead {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.8;
}

.eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
}

.accent {
  color: var(--accent);
}

.text-gradient {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== LAYOUT ===== */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

section {
  padding: var(--space-2xl) 0;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.reveal {
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) forwards;
}

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

@media (prefers-reduced-motion: reduce) {
  .reveal { animation: none; opacity: 1; }
}

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: var(--space-sm) 0;
  transition: all var(--duration) var(--ease);
}

/* Removed .scrolled - now using theme-based backgrounds */

.nav-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 28px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  list-style: none;
}

.nav-links a {
  color: var(--text-light);
  font-size: 0.9rem;
  font-weight: 400;
  transition: color var(--duration) var(--ease);
}

.nav-links a:hover {
  color: var(--text-white);
}

/* Nav dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  list-style: none;
  background: var(--bg-dark);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: var(--space-xs) 0;
  min-width: 120px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--duration) var(--ease);
  margin-top: var(--space-xs);
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.nav-dropdown-menu li {
  list-style: none;
}

.nav-dropdown-menu a {
  display: block;
  padding: 0.4rem 1rem;
  font-size: 0.9rem;
  color: var(--text-light);
  white-space: nowrap;
  text-align: center;
}

.nav-dropdown-menu a:hover {
  color: var(--text-white);
  background: var(--border-light);
}

.site-header.theme-light .nav-dropdown-menu {
  background: var(--bg-white);
  border-color: var(--border-dark);
}

.site-header.theme-light .nav-dropdown-menu a {
  color: var(--text-body);
}

.site-header.theme-light .nav-dropdown-menu a:hover {
  color: var(--text-dark);
  background: var(--bg-light);
}

.nav-cta {
  padding: 0.5rem 1.25rem;
  background: var(--accent);
  border: 1px solid var(--accent);
  border-radius: var(--radius-full);
  color: var(--text-white) !important;
  font-weight: 500;
  transition: all var(--duration) var(--ease);
}

.nav-cta:hover {
  background: var(--accent-light);
  border-color: var(--accent-light);
  color: var(--text-white) !important;
}

/* Logo switching for theme */
.logo-light { display: none; }
.logo-dark { display: block; }

/* Dark theme header (over dark sections) */
.site-header.theme-dark {
  background: var(--bg-dark);
}

/* Light theme header (over white sections) */
.site-header.theme-light {
  background: var(--bg-white);
}

.site-header.theme-light .nav-links a {
  color: var(--text-body);
}

.site-header.theme-light .nav-links a:hover {
  color: var(--text-dark);
}

.site-header.theme-light .nav-cta {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--text-white) !important;
}

.site-header.theme-light .nav-cta:hover {
  background: var(--accent-light);
  border-color: var(--accent-light);
  color: var(--text-white) !important;
}

.site-header.theme-light .logo-dark { display: none; }
.site-header.theme-light .logo-light { display: block; }

.site-header.theme-light .hamburger,
.site-header.theme-light .hamburger::before,
.site-header.theme-light .hamburger::after {
  background: var(--text-dark);
}

/* Mobile menu */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-xs);
}

.hamburger {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-white);
  position: relative;
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  width: 22px;
  height: 2px;
  background: var(--text-white);
  transition: transform var(--duration) var(--ease);
}

.hamburger::before { top: -6px; }
.hamburger::after { bottom: -6px; }

@media (max-width: 768px) {
  .mobile-menu-toggle { display: block; }

  .nav-links {
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    background: rgba(15, 20, 25, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: var(--space-lg);
    gap: var(--space-md);
    transform: translateY(-150%);
    opacity: 0;
    transition: all 0.4s var(--ease);
  }

  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
  }

  .nav-dropdown-menu {
    position: static;
    transform: none;
    background: transparent;
    border: none;
    opacity: 1;
    visibility: visible;
    padding: 0;
    margin: 0;
    min-width: 0;
  }

  .nav-dropdown-menu a {
    padding-left: var(--space-md);
    font-size: 0.85rem;
  }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-full);
  font-family: var(--font);
  font-weight: 500;
  font-size: 0.9375rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--duration) var(--ease);
}

.btn-primary {
  background: var(--text-white);
  color: var(--bg-dark);
  border: 1px solid var(--text-white);
}

.btn-primary:hover {
  background: transparent;
  color: var(--text-white);
}

.btn-secondary {
  background: transparent;
  color: var(--text-light);
  border: 1px solid var(--border-light);
}

.btn-secondary:hover {
  color: var(--text-white);
  border-color: var(--text-white);
}

.btn-lg {
  padding: 1rem 2rem;
}

/* Primary button on light backgrounds */
.glass-card .btn-primary,
.page-content .btn-primary {
  background: var(--accent);
  color: var(--text-white);
  border-color: var(--accent);
}

.glass-card .btn-primary:hover,
.page-content .btn-primary:hover {
  background: var(--accent-light);
  border-color: var(--accent-light);
  color: var(--text-white);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-2xl) var(--space-md);
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}

/* Subtle glow */
.hero::after {
  content: '';
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(
    ellipse at center,
    rgba(78, 163, 220, 0.08) 0%,
    transparent 60%
  );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.hero-eyebrow {
  margin-bottom: var(--space-md);
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.2s forwards;
}

.hero h1 {
  color: var(--text-white);
  margin-bottom: var(--space-md);
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.3s forwards;
}

.hero .lead {
  color: var(--text-light);
  margin-bottom: var(--space-lg);
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.4s forwards;
}

.hero-buttons {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.5s forwards;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: var(--space-lg);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  opacity: 0;
  animation: fadeIn 1s var(--ease) 1.5s forwards;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--text-muted), transparent);
}

.scroll-text {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--bg-white);
  padding: var(--space-xl) 0;
  border-bottom: 1px solid var(--border-dark);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

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

.stat-value {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 300;
  line-height: 1;
  color: var(--text-dark);
  margin-bottom: var(--space-xs);
  letter-spacing: -0.02em;
}

.stat-value .accent {
  color: var(--accent);
}

.stat-label {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-subtle);
}

.stat-link {
  text-decoration: none;
  color: inherit;
}

.stat-link:hover .stat-value {
  color: var(--accent);
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
  }
}

/* ===== SECTION STYLES ===== */
.section-dark {
  background: var(--bg-dark);
  color: var(--text-white);
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: var(--text-white);
}

.section-dark p {
  color: var(--text-light);
}

.section-slate {
  background: var(--bg-white);
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto var(--space-xl);
}

.section-header h2 {
  margin-bottom: var(--space-sm);
}

.section-header .lead {
  color: var(--text-subtle);
}

.section-dark .section-header .lead {
  color: var(--text-light);
}

/* ===== PROBLEM SECTION (Split) ===== */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 60vh;
}

.split-left {
  background: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-xl);
}

.split-right {
  background: var(--bg-white);
  display: flex;
  align-items: center;
  padding: var(--space-xl);
}

.split-content h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  line-height: 1.3;
  color: var(--text-white);
}

.split-right .split-content h2 {
  color: var(--text-dark);
}

.split-right p {
  color: var(--text-body);
}

@media (max-width: 900px) {
  .split-section {
    grid-template-columns: 1fr;
  }
}

/* ===== CARDS ===== */
.card {
  background: var(--bg-white);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  padding: var(--space-lg);
  transition: all var(--duration) var(--ease);
}

.card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.section-dark .card {
  background: var(--bg-card);
  border-color: var(--border-light);
}

.card-icon {
  width: 48px;
  height: 48px;
  background: var(--bg-white);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  font-size: 1.25rem;
}

.section-dark .card-icon {
  background: rgba(78, 163, 220, 0.1);
  border-color: rgba(78, 163, 220, 0.2);
}

.card h3 {
  margin-bottom: var(--space-xs);
  color: var(--text-dark);
}

.section-dark .card h3 {
  color: var(--text-white);
}

.card p {
  color: var(--text-subtle);
  font-size: 0.9375rem;
  margin-bottom: 0;
}

.section-dark .card p {
  color: var(--text-light);
}

.card-badge {
  display: inline-block;
  margin-top: var(--space-sm);
  padding: 0.25rem 0.625rem;
  background: var(--bg-white);
  border-radius: var(--radius-full);
  font-size: 0.6875rem;
  color: var(--accent);
  font-weight: 500;
}

.section-dark .card-badge {
  background: rgba(78, 163, 220, 0.15);
}

/* Cards grid */
.cards-staggered {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.cards-staggered > :nth-child(2) {
  transform: none;
}

@media (max-width: 900px) {
  .cards-staggered {
    grid-template-columns: 1fr;
  }
}

/* ===== MATH SECTION ===== */
.math-section {
  background: var(--bg-white);
  padding: var(--space-2xl) 0;
  text-align: center;
}

.math-equation {
  max-width: 700px;
  margin: 0 auto;
}

.math-line {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.math-number {
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.03em;
}

.math-label {
  font-size: 1rem;
  color: var(--text-subtle);
  text-align: left;
}

.math-operator {
  font-size: 2rem;
  font-weight: 300;
  color: var(--text-subtle);
}

.math-result {
  padding-top: var(--space-lg);
  border-top: 1px solid var(--border-dark);
  margin-top: var(--space-lg);
}

.math-result .math-number {
  font-size: clamp(4rem, 10vw, 6rem);
}

@media (max-width: 600px) {
  .math-line {
    flex-direction: column;
    gap: var(--space-xs);
    text-align: center;
  }
  .math-label {
    text-align: center;
  }
}

/* ===== PROOF SECTION ===== */
.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.proof-item {
  text-align: center;
  padding: var(--space-md);
}

.proof-value {
  font-size: 2rem;
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
  margin-bottom: var(--space-xs);
  letter-spacing: -0.02em;
}

.proof-item p {
  font-size: 0.875rem;
  color: var(--text-light);
  margin: 0;
}

@media (max-width: 900px) {
  .proof-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* ===== TABS ===== */
.tabs {
  max-width: 800px;
  margin: 0 auto;
}

.tab-buttons {
  display: flex;
  gap: var(--space-xs);
  margin-bottom: var(--space-lg);
  justify-content: center;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 0.625rem 1.25rem;
  background: transparent;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  color: var(--text-light);
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--duration) var(--ease);
}

.tab-btn:hover {
  border-color: var(--text-light);
  color: var(--text-white);
}

.tab-btn.active {
  background: var(--text-white);
  border-color: var(--text-white);
  color: var(--bg-dark);
}

.tab-panel {
  display: none;
  animation: fadeIn var(--duration) var(--ease);
}

.tab-panel.active {
  display: block;
}

.tab-content {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: var(--space-lg);
}

.tab-stat {
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--accent);
  margin-bottom: var(--space-xs);
  letter-spacing: -0.02em;
}

.tab-stat-label {
  color: var(--text-muted);
  margin-bottom: var(--space-md);
}

.benefits-list {
  list-style: none;
  margin-top: var(--space-md);
}

.benefits-list li {
  padding: var(--space-xs) 0;
  padding-left: var(--space-md);
  position: relative;
  color: var(--text-light);
  font-size: 0.9375rem;
}

.benefits-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  background: var(--accent);
  border-radius: 50%;
}

/* ===== PROCESS FLOW ===== */
.process-flow {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-sm);
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.process-flow::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 40px;
  right: 40px;
  height: 1px;
  background: var(--border-dark);
}

.section-dark .process-flow::before {
  background: var(--border-light);
}

.process-step {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 1;
}

.process-number {
  width: 48px;
  height: 48px;
  background: var(--bg-white);
  border: 1px solid var(--border-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-sm);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-dark);
}

.section-dark .process-number {
  background: var(--bg-card);
  border-color: var(--border-light);
  color: var(--text-white);
}

.process-step h4 {
  margin-bottom: var(--space-xs);
  color: var(--text-dark);
}

.section-dark .process-step h4 {
  color: var(--text-white);
}

.process-step p {
  font-size: 0.8125rem;
  color: var(--text-subtle);
  margin: 0;
}

.section-dark .process-step p {
  color: var(--text-light);
}

@media (max-width: 900px) {
  .process-flow {
    flex-direction: column;
    gap: var(--space-md);
  }

  .process-flow::before {
    top: 0;
    bottom: 0;
    left: 24px;
    right: auto;
    width: 1px;
    height: auto;
  }

  .process-step {
    display: flex;
    gap: var(--space-md);
    text-align: left;
  }

  .process-number {
    flex-shrink: 0;
    margin: 0;
  }
}

/* ===== QUOTE SECTION ===== */
.quote-section {
  background: var(--bg-dark);
  padding: var(--space-2xl) 0;
  text-align: center;
}

.quote-text {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 400;
  color: var(--text-white);
  max-width: 700px;
  margin: 0 auto var(--space-md);
  line-height: 1.5;
}

.quote-text::before,
.quote-text::after {
  content: none;
}

.traction-text {
  color: var(--text-muted);
  font-size: 0.9375rem;
}

.traction-text strong {
  color: var(--text-white);
  font-weight: 500;
}

/* ===== CTA SECTION ===== */
.cta-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-2xl) var(--space-md);
  background: var(--bg-white);
}

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

.cta-section h2 {
  color: var(--text-dark);
  margin-bottom: var(--space-sm);
}

.cta-section h2 .text-gradient {
  display: block;
}

.cta-section .lead {
  color: var(--text-subtle);
  margin-bottom: var(--space-lg);
}

.cta-section .btn-primary {
  background: var(--accent);
  color: var(--text-white);
  border-color: var(--accent);
}

.cta-section .btn-primary:hover {
  background: var(--accent-light);
  border-color: var(--accent-light);
  color: var(--text-white);
}

.cta-alt {
  margin-top: var(--space-md);
  color: var(--text-subtle);
  font-size: 0.875rem;
}

.cta-alt a {
  color: var(--accent);
}

/* ===== PAGE HEADER ===== */
.page-header {
  padding: calc(var(--space-2xl) + 60px) 0 var(--space-xl);
  background: var(--bg-dark);
  text-align: center;
}

.page-header h1 {
  color: var(--text-white);
}

.page-header .lead {
  max-width: 550px;
  margin: var(--space-sm) auto 0;
  color: var(--text-light);
}

.page-updated {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: var(--space-sm);
}

/* ===== PAGE CONTENT ===== */
.page-content {
  padding: var(--space-xl) 0;
  background: var(--bg-white);
}

.prose {
  max-width: 680px;
  margin: 0 auto;
}

.prose h2 {
  margin-top: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--border-dark);
  color: var(--text-dark);
}

.prose h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.prose h3 {
  margin-top: var(--space-lg);
  color: var(--text-dark);
}

.prose ul, .prose ol {
  margin-left: var(--space-md);
  margin-bottom: var(--space-md);
}

.prose li {
  margin-bottom: var(--space-xs);
}

.prose strong {
  color: var(--text-dark);
  font-weight: 600;
}

.prose blockquote {
  border-left: 2px solid var(--accent);
  padding-left: var(--space-md);
  margin: var(--space-lg) 0;
  font-style: italic;
  color: var(--text-subtle);
}

.prose table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--space-lg) 0;
}

.prose th, .prose td {
  padding: 0.75rem;
  text-align: left;
  border-bottom: 1px solid var(--border-dark);
}

.prose th {
  font-weight: 600;
  color: var(--text-dark);
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 680px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border-dark);
}

.section-dark .faq-item {
  border-color: var(--border-light);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: var(--space-md) 0;
  background: none;
  border: none;
  color: var(--text-dark);
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color var(--duration) var(--ease);
}

.section-dark .faq-question {
  color: var(--text-white);
}

.faq-question:hover {
  color: var(--accent);
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--accent);
  transition: transform var(--duration) var(--ease);
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer-content {
  padding-bottom: var(--space-md);
  color: var(--text-subtle);
  line-height: 1.8;
}

.section-dark .faq-answer-content {
  color: var(--text-light);
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--bg-white);
  padding: var(--space-lg) 0;
  border-top: 1px solid var(--border-dark);
}

.footer-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.footer-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--space-md);
}

.footer-icon {
  height: 2.2rem;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}

.footer-right {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  justify-self: end;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.footer-brand {
  font-size: 0.75rem;
  color: var(--text-subtle);
  line-height: 1.4;
}

.footer-patents {
  font-size: 0.7rem;
  color: var(--text-subtle);
  line-height: 1.4;
}

.footer-linkedin {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-subtle);
  transition: color var(--duration) var(--ease);
}

.footer-linkedin:hover {
  color: #0a66c2;
}

.footer-linkedin svg {
  display: block;
  width: 2.2rem;
  height: 2.2rem;
}

.footer-parent {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.15rem;
  font-size: 0.75rem;
  color: var(--text-subtle);
  line-height: 1.4;
  justify-self: end;
}

.footer-parent img {
  height: 20px;
  opacity: 0.6;
  transition: opacity var(--duration) var(--ease);
}

.footer-parent:hover img {
  opacity: 0.9;
}

@media (max-width: 768px) {
  .footer-row {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--space-sm);
  }

  .footer-left { align-items: center; }
  .footer-parent { align-items: center; justify-self: center; }
}

/* ===== FORMS ===== */
.form-group {
  margin-bottom: var(--space-md);
}

.form-group label {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 500;
  color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.875rem 1rem;
  background: var(--bg-white);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-sm);
  color: var(--text-dark);
  font-family: var(--font);
  font-size: 1rem;
  transition: all var(--duration) var(--ease);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-subtle);
}

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

/* ===== FEATURES GRID (How It Works, Contact) ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

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

/* ===== GLASS CARD ===== */
.glass-card {
  background: var(--bg-white);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  padding: var(--space-md);
  transition: all var(--duration) var(--ease);
}

.glass-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

/* ===== FEATURE CARDS ===== */
.feature-card {
  padding: var(--space-lg);
}

.feature-card h3 {
  margin-bottom: var(--space-xs);
  color: var(--text-dark);
}

.feature-card p {
  color: var(--text-body);
  margin-bottom: var(--space-sm);
}

.feature-card p:last-child {
  margin-bottom: 0;
}

.feature-card ul,
.feature-card ol {
  margin-left: var(--space-md);
  margin-bottom: var(--space-sm);
  color: var(--text-body);
}

.feature-card li {
  margin-bottom: var(--space-xs);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--accent);
  color: var(--text-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: var(--space-md);
}

/* ===== STAT CARDS (Benefits page) ===== */
.stat-card {
  text-align: center;
  padding: var(--space-lg);
}

.stat-number {
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-xs);
}

.stat-card .stat-label {
  font-size: 0.8125rem;
  color: var(--text-subtle);
  text-transform: none;
  letter-spacing: normal;
}

/* ===== SKIP TO CONTENT (Accessibility) ===== */
.skip-to-content {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--text-white);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  z-index: 9999;
  transition: top var(--duration) var(--ease);
}

.skip-to-content:focus {
  top: var(--space-sm);
  outline: 2px solid var(--text-white);
  outline-offset: 2px;
}

/* ===== UTILITIES ===== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-muted { color: var(--text-subtle); }
.mb-0 { margin-bottom: 0; }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mt-lg { margin-top: var(--space-lg); }

/* ===== VALUE CHARTS (3-Chart with Flying Slices) ===== */
.value-charts {
  padding: var(--space-2xl) 0;
  background: var(--bg-white);
}

.ownership-toggle {
  display: flex;
  justify-content: center;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.ownership-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-subtle);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--duration) var(--ease);
  border: 1px solid transparent;
}

.ownership-label:hover {
  color: var(--text-dark);
}

.ownership-label.active {
  background: var(--accent);
  color: var(--text-white);
}

/* Light count input */
.light-count-input {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: var(--space-lg);
}

.light-count-input label {
  font-size: 1rem;
  color: var(--text-dark);
  font-weight: 500;
}

.light-count-input input {
  width: 120px;
  padding: 0.5rem 0.75rem;
  font-size: 1rem;
  border: 1px solid rgba(78, 163, 220, 0.3);
  border-radius: var(--radius);
  text-align: center;
  color: var(--text-dark);
  background: var(--bg-white);
}

.light-count-input input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(78, 163, 220, 0.15);
}

/* 3-column chart row */
.charts-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
  position: relative;
  align-items: start;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Animation overlay layer */
.charts-animation-layer {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 100;
}

/* Chart column */
.chart-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.chart-pie-area {
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pie-chart {
  display: block;
  transition: width 0.8s var(--ease), height 0.8s var(--ease);
}

.pie-slice {
  transition: opacity 0.3s var(--ease);
}

/* Flying slice animation */
.flying-slice {
  position: absolute;
  width: 70px;
  height: 70px;
  pointer-events: none;
  z-index: 101;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2));
}

.chart-label {
  margin-top: var(--space-sm);
}

.chart-title {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--text-dark);
}

.chart-value {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--accent);
  transition: all 0.4s var(--ease);
}

/* Chart legend */
.chart-legend {
  margin-top: var(--space-sm);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 14px;
  color: var(--text-subtle);
  margin-bottom: 0.35rem;
  transition: opacity 0.3s var(--ease);
}

.legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* Summary totals */
.charts-summary {
  display: flex;
  justify-content: center;
  gap: var(--space-xl);
  margin-bottom: var(--space-md);
}

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

.summary-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-subtle);
  display: block;
}

.summary-value {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--text-dark);
  transition: all 0.6s var(--ease);
}

.charts-footer {
  text-align: center;
  color: var(--text-subtle);
  font-size: 0.9375rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Tablet: 2+1 layout */
@media (max-width: 900px) {
  .charts-row {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
  }

  .chart-card:last-child {
    grid-column: 1 / -1;
    max-width: 280px;
    margin: 0 auto;
  }
}

/* Mobile: stacked layout */
@media (max-width: 600px) {
  .charts-row {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .chart-card:last-child {
    max-width: none;
  }

  .chart-card {
    min-height: 220px;
  }

  .charts-summary {
    flex-direction: column;
    gap: var(--space-sm);
  }

  .ownership-toggle {
    gap: var(--space-sm);
  }

  .ownership-label {
    font-size: 0.75rem;
    padding: 0.375rem 0.75rem;
  }
}

/* ===== VIDEO VIGNETTES ===== */
.vignette {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--bg-deep);
}

.vignette-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
  z-index: 0;
}

.vignette-weather {
  transition: opacity 1.5s ease;
}

.vignette-poster {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.vignette-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 15, 20, 0.3) 0%,
    rgba(10, 15, 20, 0.5) 50%,
    rgba(10, 15, 20, 0.7) 100%
  );
  z-index: 1;
}

.vignette-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: var(--space-lg);
  max-width: 800px;
}

.vignette-caption {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 400;
  font-style: italic;
  color: var(--text-white);
  line-height: 1.3;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

/* ===== ORGANIC MOTION ===== */
@keyframes breathe {
  0%, 100% {
    opacity: 0.6;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.02);
  }
}

@keyframes glow-pulse {
  0%, 100% {
    opacity: 0.4;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.1);
  }
}

@keyframes reveal-up {
  from {
    opacity: 0;
    transform: translateY(30px);
    filter: blur(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

.organic-reveal {
  opacity: 0;
  animation: reveal-up 1.2s var(--ease-organic) forwards;
}

.organic-reveal-delay-1 { animation-delay: 0.2s; }
.organic-reveal-delay-2 { animation-delay: 0.4s; }
.organic-reveal-delay-3 { animation-delay: 0.6s; }

/* ===== THE GAP SECTION ===== */
.gap-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-2xl) var(--space-lg);
  background: var(--bg-deep);
}

.gap-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 300;
  color: var(--text-white);
  margin-bottom: var(--space-lg);
  text-align: center;
}

.gap-timeline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
  opacity: 0.6;
}

.gap-year {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}

.gap-line {
  height: 1px;
  width: 200px;
  background: linear-gradient(to right, transparent, var(--text-muted), transparent);
}

.gap-impacts {
  max-width: 600px;
  margin: 0 auto var(--space-xl);
}

.gap-impact {
  font-family: var(--font-body);
  font-size: 1.125rem;
  color: var(--text-light);
  margin-bottom: var(--space-sm);
  padding-left: var(--space-md);
  position: relative;
}

.gap-impact::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.6;
}

.gap-punchline {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  color: var(--accent);
  text-align: center;
  margin-top: var(--space-xl);
}

/* ===== HERO VISION ===== */
.hero-vision {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--bg-deep);
}

.hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150%;
  height: 150%;
  background: radial-gradient(circle at center, var(--accent-glow) 0%, transparent 50%);
  animation: glow-pulse var(--breath-slow) var(--ease-organic) infinite;
  pointer-events: none;
}

.hero-vision-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: var(--space-lg);
}

.hero-vision h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 300;
  color: var(--text-white);
  margin-bottom: var(--space-md);
  letter-spacing: -0.02em;
}

.hero-vision .lead {
  font-family: var(--font-body);
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* ===== THE HOW SECTION ===== */
.how-section {
  padding: var(--space-2xl) var(--space-lg);
  background: var(--bg-navy);
  text-align: center;
}

.how-headline {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 400;
  color: var(--text-white);
  margin-bottom: var(--space-xl);
}

.how-steps {
  display: flex;
  justify-content: center;
  gap: var(--space-xl);
  max-width: 800px;
  margin: 0 auto;
}

.how-step {
  flex: 1;
  max-width: 200px;
}

.how-step-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-md);
  border-radius: 50%;
  background: var(--accent-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.how-step-title {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-white);
  margin-bottom: var(--space-xs);
}

.how-step-desc {
  font-size: 0.875rem;
  color: var(--text-light);
}

@media (max-width: 600px) {
  .how-steps {
    flex-direction: column;
    align-items: center;
    gap: var(--space-lg);
  }
}

/* ===== CTA VISION ===== */
.cta-vision {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--space-2xl) var(--space-lg);
  background: var(--bg-deep);
  text-align: center;
}

.cta-vision h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 400;
  color: var(--text-white);
  margin-bottom: var(--space-lg);
}

.cta-buttons {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  justify-content: center;
}

/* ===== ACCESSIBILITY: REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  .hero-glow {
    animation: none;
  }

  .organic-reveal {
    animation: none;
    opacity: 1;
  }

  .vignette-video {
    display: none;
  }

  .vignette-poster {
    display: block;
  }
}

/* ===== TAKE ACTION WIZARD ===== */
.ta-wizard {
  max-width: 800px;
  margin: 0 auto;
}

/* Cards */
.ta-card {
  margin-bottom: var(--space-md);
  transition: opacity 0.4s var(--ease), filter 0.4s var(--ease);
}

.ta-card:last-child {
  margin-bottom: 0;
}

.ta-card-locked {
  opacity: 0.45;
  pointer-events: none;
  user-select: none;
}

.ta-card-locked .glass-card {
  position: relative;
}

/* Card header with badge + title */
.ta-card-header {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-xs);
}

.ta-card-header h3 {
  color: var(--text-dark);
  margin-bottom: 0;
}

.ta-card-badge {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.875rem;
  background: var(--accent);
  color: white;
  flex-shrink: 0;
}

/* Locked placeholder in Card 3 */
.ta-card-placeholder {
  text-align: center;
  padding: var(--space-lg) 0;
  color: var(--text-subtle);
}

.ta-card-placeholder p {
  margin: 0;
  font-size: 0.9375rem;
}

/* Priorities grid */
.ta-priorities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: var(--space-sm);
}

.ta-priority-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.375rem;
  padding: var(--space-md) var(--space-sm);
  border: 2px solid var(--border-dark);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--duration) var(--ease);
  text-align: center;
  background: var(--bg-white);
}

.ta-priority-card input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.ta-priority-card:hover {
  border-color: var(--accent-light);
  background: rgba(78, 163, 220, 0.03);
}

.ta-priority-card.selected {
  border-color: var(--accent);
  background: rgba(78, 163, 220, 0.06);
  box-shadow: 0 0 0 1px var(--accent);
}

.ta-priority-card:has(input:checked) {
  border-color: var(--accent);
  background: rgba(78, 163, 220, 0.06);
  box-shadow: 0 0 0 1px var(--accent);
}

.ta-priority-icon {
  font-size: 1.75rem;
  line-height: 1;
}

.ta-priority-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-dark);
}

/* Loading state */
.ta-loading {
  text-align: center;
  padding: var(--space-xl) 0;
}

.ta-loading-spinner {
  width: 48px;
  height: 48px;
  border: 3px solid var(--border-dark);
  border-top-color: var(--accent);
  border-radius: 50%;
  margin: 0 auto;
  animation: ta-spin 0.8s linear infinite;
}

@keyframes ta-spin {
  to { transform: rotate(360deg); }
}

/* Letter textarea */
.ta-letter-textarea {
  width: 100%;
  padding: var(--space-md);
  background: var(--bg-light);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-sm);
  color: var(--text-dark);
  font-family: var(--font);
  font-size: 0.9375rem;
  line-height: 1.7;
  resize: vertical;
  transition: border-color var(--duration) var(--ease);
}

.ta-letter-textarea:focus {
  outline: none;
  border-color: var(--accent);
}

/* Rep cards grid */
.ta-reps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.ta-rep-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: var(--space-md);
}

.ta-rep-info {
  margin-bottom: var(--space-sm);
}

.ta-rep-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.ta-rep-title {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-body);
  margin-bottom: 0.125rem;
}

.ta-rep-org {
  font-size: 0.8125rem;
  color: var(--text-subtle);
  margin-bottom: 0.5rem;
}

.ta-rep-relevance {
  font-size: 0.8125rem;
  color: var(--text-body);
  font-style: italic;
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.ta-rep-email {
  font-size: 0.8125rem;
  color: var(--accent);
  word-break: break-all;
  margin-bottom: 0;
}

/* Action buttons */
.ta-actions-bar {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: center;
}

.ta-actions-bar .ta-send-btn {
  flex: 1 1 auto;
  min-width: 180px;
  max-width: 250px;
}

.ta-send-btn {
  display: block;
  width: 100%;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 0.8125rem;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: all var(--duration) var(--ease);
  text-decoration: none;
  border: none;
}

.ta-send-mailto {
  background: var(--accent);
  color: white;
}

.ta-send-mailto:hover {
  background: var(--accent-light);
  color: white;
}

.ta-send-gmail {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.ta-send-gmail:hover {
  background: rgba(78, 163, 220, 0.06);
  color: var(--accent);
}

.ta-send-copy {
  background: transparent;
  color: var(--text-subtle);
  border: 1px solid var(--border-dark);
}

.ta-send-copy:hover {
  border-color: var(--text-subtle);
  color: var(--text-dark);
}

.ta-send-copy.ta-copied {
  background: #22c55e;
  color: white;
  border-color: #22c55e;
}

/* Error state */
.ta-error {
  padding: var(--space-lg) 0;
}

/* Mobile */
@media (max-width: 600px) {
  .ta-priorities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ta-reps-grid {
    grid-template-columns: 1fr;
  }

  .ta-actions-bar {
    flex-direction: column;
  }

  .ta-actions-bar .ta-send-btn {
    max-width: none;
  }

}

/* ===== PRESS LIST ===== */
.press-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.press-card {
  padding: var(--space-lg);
}

.press-card .eyebrow {
  margin-bottom: var(--space-xs);
}

.press-card h3 {
  color: var(--text-dark);
  margin-bottom: var(--space-xs);
}

.press-card h3 a {
  color: inherit;
  text-decoration: none;
}

.press-card h3 a:hover {
  color: var(--accent);
}

.press-card p {
  color: var(--text-body);
  margin-bottom: var(--space-sm);
}

.press-card-actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

/* ===== PRESS RELEASE DOCUMENT ===== */
.press-release-doc {
  max-width: 720px;
  margin: 0 auto;
}

.press-release-header {
  padding-top: calc(60px + var(--space-lg));
  padding-bottom: var(--space-md);
  background: var(--bg-dark);
}

.press-release-page {
  padding-top: var(--space-md);
}

.press-release-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-md);
}

.press-release-topbar .btn-primary {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--text-white);
}

.press-release-topbar .btn-primary:hover {
  background: var(--accent-light);
  border-color: var(--accent-light);
  color: var(--text-white);
}

.press-release-label {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-light);
  margin-bottom: 0;
}

.press-release-title {
  font-family: var(--font-body);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--text-white);
  line-height: 1.3;
  margin-bottom: var(--space-sm);
}

.press-release-subtitle {
  font-style: italic;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 0;
}

.press-release-body h2 {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
  border: none;
  padding: 0;
}

.press-release-body p {
  color: var(--text-body);
  margin-bottom: var(--space-md);
  line-height: 1.8;
}

.press-release-body ul {
  margin-left: var(--space-md);
  margin-bottom: var(--space-md);
  color: var(--text-body);
}

.press-release-body li {
  margin-bottom: var(--space-xs);
  line-height: 1.7;
}

.press-release-body a {
  color: var(--accent);
  text-decoration: underline;
}

.press-release-body a:hover {
  color: var(--accent-light);
}

.press-release-body strong {
  color: var(--text-dark);
}

.press-release-actions {
  margin-top: var(--space-xl);
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.press-release-topics {
  margin-top: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--border-dark);
}

.press-release-topics-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-subtle);
  margin-bottom: var(--space-sm);
}

.press-release-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.press-release-tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: var(--bg-light);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  color: var(--text-body);
}
