/* =========================================================
   V1C Design System - OffsetMy.ai Light Theme
   Shared stylesheet for all OffsetMy pages
   ========================================================= */

:root {
  /* Brand gradient colors from logo: #98b4fd -> #ffcaeb */
  --gradient-start: #98b4fd;
  --gradient-end: #ffcaeb;
  --gradient-brand: linear-gradient(135deg, #98b4fd 0%, #ffcaeb 100%);

  /* Deep navy palette for primary actions + periwinkle accents */
  --navy-950: #0a1628;
  --navy-900: #0f1d32;
  --navy-800: #162540;
  --navy-700: #1e2f4d;
  --navy-600: #2a3d5f;

  /* Periwinkle/Blue palette */
  --blue-600: #6690f8;
  --blue-500: #98b4fd;
  --blue-400: #b4c9fe;
  --blue-300: #c9d9ff;
  --blue-200: #dce6ff;
  --blue-100: #e8f0ff;
  --blue-50: #f5f8ff;

  /* Pink palette */
  --pink-900: #9d174d;
  --pink-800: #be185d;
  --pink-700: #db2777;
  --pink-600: #ec4899;
  --pink-500: #ffcaeb;
  --pink-400: #ffd6f0;
  --pink-300: #ffe4f5;
  --pink-100: #fff0f9;
  --pink-50: #fff8fc;

  /* Complementary teal for environmental feel */
  --teal-700: #0f766e;
  --teal-600: #0d9488;
  --teal-500: #14b8a6;
  --teal-400: #2dd4bf;
  --teal-100: #ccfbf1;
  --teal-50: #f0fdfa;

  /* Success/action green */
  --green-700: #047857;
  --green-600: #059669;
  --green-500: #10b981;
  --green-400: #34d399;
  --green-100: #d1fae5;
  --green-50: #ecfdf5;

  /* Neutrals */
  --gray-900: #111827;
  --gray-800: #1f2937;
  --gray-700: #374151;
  --gray-600: #4b5563;
  --gray-500: #6b7280;
  --gray-400: #9ca3af;
  --gray-300: #d1d5db;
  --gray-200: #e5e7eb;
  --gray-100: #f3f4f6;
  --gray-50: #f9fafb;

  /* Surfaces */
  --surface-primary: #ffffff;
  --surface-secondary: #f8fafc;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);

  /* Typography */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  line-height: 1.6;
  color: var(--gray-900);
  background: var(--surface-primary);
  -webkit-font-smoothing: antialiased;
}

/* Page Label - identifier for page type */
.page-label {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal-600);
  margin: 0 0 0.75rem;
}

/* ===== HEADER ===== */
.header {
  background: var(--surface-primary);
  padding: 0.875rem 1.5rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header .logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.header .logo img {
  height: 140px;
  width: auto;
}

@media (max-width: 768px) {
  .header .logo img {
    height: 80px;
  }
}

.header nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.header nav a {
  padding: 0.5rem 0.875rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--gray-600);
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.15s ease;
}

.header nav a:hover {
  color: var(--navy-800);
  background: var(--blue-50);
}

.header nav .nav-cta {
  background: var(--navy-900);
  color: white !important;
  padding: 0.5rem 1.25rem;
  margin-left: 0.75rem;
  font-weight: 600;
}

.header nav .nav-cta:hover {
  background: var(--navy-800);
}

/* Mobile Menu */
.mobile-menu-btn {
  display: none;
  width: 42px;
  height: 42px;
  background: var(--surface-primary);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.hamburger-icon {
  width: 20px;
  height: 20px;
  stroke: var(--gray-700);
  stroke-width: 2;
  fill: none;
}

.mobile-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--surface-primary);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: var(--shadow-lg);
  padding: 0.75rem;
  z-index: 999;
}

.mobile-nav.open {
  display: block;
}

.mobile-nav a {
  display: block;
  padding: 0.875rem 1rem;
  border-radius: 8px;
  color: var(--gray-700);
  font-weight: 500;
  text-decoration: none;
}

.mobile-nav a:hover {
  background: var(--blue-50);
}

.mobile-nav .nav-cta {
  background: var(--navy-900);
  color: white !important;
  text-align: center;
  margin-top: 0.5rem;
}

@media (max-width: 900px) {
  .header nav { display: none; }
  .mobile-menu-btn { display: flex; }
  .header { position: relative; }
}

/* ===== FOUNDING BANNER ===== */
.founding-banner {
  background: linear-gradient(135deg, var(--navy-950) 0%, var(--navy-900) 100%);
  padding: 0.875rem 1.5rem;
}

.founding-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.founding-badge {
  background: var(--teal-500);
  color: white;
  padding: 0.375rem 0.75rem;
  border-radius: 6px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.founding-text {
  font-size: 0.9375rem;
  color: var(--blue-300);
}

.founding-stats {
  display: flex;
  gap: 1rem;
}

.founding-stat {
  text-align: center;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
}

.founding-stat-value {
  font-size: 1.25rem;
  font-weight: 800;
  color: white;
}

.founding-stat-label {
  font-size: 0.625rem;
  color: var(--blue-400);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.founding-link {
  color: white;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  transition: background 0.15s;
}

.founding-link:hover {
  background: rgba(255, 255, 255, 0.15);
}

@media (max-width: 768px) {
  .founding-container {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }
}

/* ===== HERO ===== */
.hero {
  padding: 5rem 1.5rem 6rem;
  background: linear-gradient(180deg, var(--surface-primary) 0%, var(--blue-50) 100%);
  overflow: hidden;
}

.hero .container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 1000px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
}

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

@media (max-width: 1000px) {
  .hero-content {
    max-width: 100%;
    margin: 0 auto;
  }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--teal-50);
  border: 1px solid var(--teal-100);
  color: var(--teal-700);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero-eyebrow-dot {
  width: 8px;
  height: 8px;
  background: var(--teal-500);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(0.9); }
}

.hero-title {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--navy-900);
  margin-bottom: 1.25rem;
  letter-spacing: -0.025em;
}

.hero-title .highlight {
  color: var(--teal-600);
}

.hero-lead {
  font-size: clamp(1.0625rem, 2vw, 1.1875rem);
  color: var(--gray-600);
  margin-bottom: 2rem;
  line-height: 1.75;
}

.hero-ctas {
  display: flex;
  gap: 0.875rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

@media (max-width: 1000px) {
  .hero-ctas {
    justify-content: center;
  }
}

@media (max-width: 500px) {
  .hero-ctas {
    flex-direction: column;
  }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--navy-900);
  color: white;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background: var(--navy-800);
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}

.btn-teal {
  background: var(--teal-600);
  color: white;
  box-shadow: var(--shadow-md);
}

.btn-teal:hover {
  background: var(--teal-700);
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: var(--surface-primary);
  color: var(--gray-700);
  border: 1.5px solid var(--gray-300);
}

.btn-secondary:hover {
  border-color: var(--blue-300);
  background: var(--blue-50);
  color: var(--navy-800);
}

@media (max-width: 500px) {
  .btn {
    width: 100%;
  }
}

/* Trust badges */
.trust-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 1000px) {
  .trust-row {
    justify-content: center;
  }
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--gray-600);
}

.trust-badge::before {
  content: "";
  width: 18px;
  height: 18px;
  background: var(--teal-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%230d9488'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}

/* ===== HERO VISUAL - Circular Flow Diagram ===== */
.hero-visual {
  position: relative;
}

@media (max-width: 1000px) {
  .hero-visual {
    max-width: 400px;
    margin: 0 auto;
  }
}

.flow-diagram {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  max-width: 420px;
}

.flow-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 140px;
  height: 140px;
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 100%);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(15, 29, 50, 0.4);
  z-index: 10;
}

.flow-center-icon {
  width: 40px;
  height: 40px;
  stroke: white;
  stroke-width: 1.5;
  margin-bottom: 0.25rem;
}

.flow-center-text {
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  text-align: center;
}

.flow-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 320px;
  height: 320px;
  border: 2px dashed var(--blue-300);
  border-radius: 50%;
}

.flow-node {
  position: absolute;
  width: 100px;
  height: 100px;
  background: var(--surface-primary);
  border: 2px solid var(--blue-200);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
  box-shadow: var(--shadow-lg);
  transition: all 0.3s ease;
}

.flow-node:hover {
  transform: scale(1.05);
  border-color: var(--blue-500);
  box-shadow: var(--shadow-xl);
}

.flow-node-1 {
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.flow-node-1:hover {
  transform: translateX(-50%) scale(1.05);
}

.flow-node-2 {
  top: 50%;
  right: -10px;
  transform: translateY(-50%);
}

.flow-node-2:hover {
  transform: translateY(-50%) scale(1.05);
}

.flow-node-3 {
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.flow-node-3:hover {
  transform: translateX(-50%) scale(1.05);
}

.flow-node-4 {
  top: 50%;
  left: -10px;
  transform: translateY(-50%);
}

.flow-node-4:hover {
  transform: translateY(-50%) scale(1.05);
}

.flow-node-icon {
  width: 28px;
  height: 28px;
  stroke-width: 1.5;
  margin-bottom: 0.375rem;
}

.flow-node-1 .flow-node-icon { stroke: var(--navy-700); }
.flow-node-2 .flow-node-icon { stroke: var(--teal-600); }
.flow-node-3 .flow-node-icon { stroke: var(--green-600); }
.flow-node-4 .flow-node-icon { stroke: var(--pink-600); }

.flow-node-text {
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--gray-700);
  text-align: center;
  line-height: 1.3;
}

.flow-arrow {
  position: absolute;
  width: 24px;
  height: 24px;
  background: var(--blue-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flow-arrow svg {
  width: 12px;
  height: 12px;
  stroke: var(--navy-700);
  stroke-width: 2;
}

.flow-arrow-1 { top: 60px; right: 60px; }
.flow-arrow-2 { bottom: 60px; right: 60px; }
.flow-arrow-3 { bottom: 60px; left: 60px; }
.flow-arrow-4 { top: 60px; left: 60px; }

/* ===== SOCIAL PROOF ===== */
.social-proof {
  padding: 2.5rem 1.5rem;
  background: var(--surface-primary);
  border-bottom: 1px solid var(--gray-200);
}

.social-proof-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.social-proof-text {
  font-size: 0.9375rem;
  color: var(--gray-500);
  margin-bottom: 1.5rem;
}

.social-proof-logos {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  align-items: center;
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--gray-700);
}

.proof-icon {
  width: 32px;
  height: 32px;
  background: var(--blue-100);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.proof-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--navy-700);
  stroke-width: 1.5;
}

/* ===== SECTIONS ===== */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-label {
  display: inline-block;
  background: var(--blue-100);
  color: var(--navy-700);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--navy-900);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.0625rem;
  color: var(--gray-500);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===== PILLARS ===== */
.pillars {
  padding: 6rem 1.5rem;
  background: var(--surface-secondary);
}

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

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

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

.pillar-card {
  background: var(--surface-primary);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.25s ease;
  position: relative;
}

.pillar-card:hover {
  border-color: var(--blue-400);
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
}

.pillar-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--blue-100) 0%, var(--blue-50) 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.pillar-icon svg {
  width: 28px;
  height: 28px;
  stroke-width: 1.5;
}

.pillar-card:nth-child(1) .pillar-icon svg {
  stroke: var(--navy-700);
}

.pillar-card:nth-child(2) .pillar-icon {
  background: linear-gradient(135deg, var(--teal-100) 0%, var(--teal-50) 100%);
}

.pillar-card:nth-child(2) .pillar-icon svg {
  stroke: var(--teal-600);
}

.pillar-card:nth-child(3) .pillar-icon {
  background: linear-gradient(135deg, var(--pink-100) 0%, var(--pink-50) 100%);
}

.pillar-card:nth-child(3) .pillar-icon svg {
  stroke: var(--pink-600);
}

.pillar-step {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 28px;
  height: 28px;
  background: var(--blue-50);
  color: var(--navy-700);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8125rem;
  font-weight: 700;
}

.pillar-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 0.375rem;
}

.pillar-subtitle {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--navy-600);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.pillar-card:nth-child(2) .pillar-subtitle {
  color: var(--teal-600);
}

.pillar-card:nth-child(3) .pillar-subtitle {
  color: var(--pink-600);
}

.pillar-text {
  font-size: 0.9375rem;
  color: var(--gray-600);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.pillar-list {
  list-style: none;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-100);
}

.pillar-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--gray-600);
  padding: 0.5rem 0;
}

.pillar-list li::before {
  content: "";
  width: 18px;
  height: 18px;
  background: var(--teal-100);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.1em;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%230d9488'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-size: 10px;
  background-repeat: no-repeat;
  background-position: center;
}

/* ===== FLOW BOX ===== */
.flow-box {
  background: linear-gradient(135deg, var(--navy-950) 0%, var(--navy-800) 100%);
  border-radius: 20px;
  padding: 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 3rem;
}

.flow-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at top right, rgba(152, 180, 253, 0.2), transparent 60%);
  pointer-events: none;
}

.flow-box-icon {
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.flow-box-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--blue-300);
  stroke-width: 1.5;
}

.flow-box-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1rem;
  position: relative;
}

.flow-box-text {
  font-size: 1.0625rem;
  color: var(--blue-200);
  max-width: 650px;
  margin: 0 auto 2rem;
  line-height: 1.8;
  position: relative;
}

.flow-box-text strong {
  color: var(--pink-400);
}

.flow-box-cta {
  position: relative;
}

/* ===== BONUS SECTION ===== */
.bonus-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

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

.bonus-card {
  background: var(--surface-primary);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.2s;
}

.bonus-card:hover {
  border-color: var(--blue-400);
  box-shadow: var(--shadow-lg);
}

.bonus-icon {
  width: 48px;
  height: 48px;
  background: var(--blue-50);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.bonus-icon svg {
  width: 24px;
  height: 24px;
  stroke-width: 1.5;
}

.bonus-card:nth-child(1) .bonus-icon svg {
  stroke: var(--navy-700);
}

.bonus-card:nth-child(2) .bonus-icon {
  background: var(--teal-50);
}

.bonus-card:nth-child(2) .bonus-icon svg {
  stroke: var(--teal-600);
}

.bonus-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 0.5rem;
}

.bonus-text {
  font-size: 0.9375rem;
  color: var(--gray-600);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.bonus-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  color: var(--navy-700);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
}

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

/* ===== FINAL CTA ===== */
.final-cta {
  padding: 5rem 1.5rem;
  background: var(--surface-primary);
  border-top: 1px solid var(--gray-200);
  text-align: center;
}

.final-cta-container {
  max-width: 600px;
  margin: 0 auto;
}

.final-cta h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--navy-900);
  margin-bottom: 1rem;
}

.final-cta p {
  font-size: 1.0625rem;
  color: var(--gray-600);
  margin-bottom: 2rem;
}

.final-cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 500px) {
  .final-cta-buttons {
    flex-direction: column;
  }
  .final-cta-buttons .btn {
    width: 100%;
  }
}

/* ===== FOOTER ===== */
.footer {
  padding: 2rem;
  background: var(--blue-50);
  border-top: 1px solid var(--gray-200);
  text-align: center;
}

.footer-text {
  font-size: 0.875rem;
  color: var(--gray-500);
}

/* Full Footer (for subpages) */
.site-footer {
  padding: 4rem 1.5rem 2rem;
  background: var(--surface-secondary);
  border-top: 1px solid var(--gray-200);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  color: var(--gray-600);
  font-size: 0.9375rem;
  margin-bottom: 1.5rem;
  max-width: 300px;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: var(--surface-primary);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-600);
  text-decoration: none;
  transition: all 0.2s ease;
}

.footer-social a:hover {
  border-color: var(--blue-400);
  color: var(--navy-700);
}

.footer-column h4 {
  color: var(--navy-900);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column li {
  margin-bottom: 0.75rem;
}

.footer-column a {
  color: var(--gray-600);
  text-decoration: none;
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.footer-column a:hover {
  color: var(--navy-700);
}

.footer-bottom {
  border-top: 1px solid var(--gray-200);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copyright {
  color: var(--gray-500);
  font-size: 0.875rem;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  color: var(--gray-500);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

.footer-legal a:hover {
  color: var(--gray-700);
}

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

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

  .footer-brand p {
    max-width: none;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ===== PAGE CONTAINERS ===== */
.page-container {
  max-width: 900px;
  margin: 2rem auto;
  padding: 3rem;
  background: var(--surface-primary);
  border: 1px solid var(--gray-200);
  border-radius: 24px;
  box-shadow: var(--shadow-md);
}

.page-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--navy-900);
}

.page-subtitle {
  font-size: 1.125rem;
  color: var(--gray-600);
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .page-container {
    margin: 1rem;
    padding: 2rem 1rem;
    border-radius: 12px;
  }
}

/* =========================================================
   FAQ PAGE STYLES
   ========================================================= */
.offsetmy-faq-page {
  background: var(--surface-secondary);
  padding: clamp(2rem, 5vw, 4rem) 1rem;
  margin: 0 auto;
  max-width: 1400px;
}

.faq-header {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
  padding: 0 1rem;
}

.faq-title {
  color: var(--navy-900) !important;
  font-size: clamp(2.25rem, 5vw, 3rem) !important;
  font-weight: 800 !important;
  line-height: 1.1 !important;
  margin: 0 0 1rem !important;
  letter-spacing: -0.025em !important;
}

.faq-subtitle {
  color: var(--gray-600) !important;
  font-size: clamp(1rem, 1.8vw, 1.15rem) !important;
  line-height: 1.5 !important;
  max-width: 700px;
  margin: 0 auto !important;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-section-header {
  margin: 3rem 0 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--blue-200);
}

.faq-section-header:first-child {
  margin-top: 0;
}

.faq-section-header h2 {
  color: var(--teal-600) !important;
  font-size: clamp(1.25rem, 3vw, 1.5rem) !important;
  font-weight: 700 !important;
  margin: 0 !important;
}

.faq-item {
  background: var(--surface-primary) !important;
  border: 1px solid var(--gray-200) !important;
  border-radius: 16px;
  padding: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 8px rgba(17, 24, 39, 0.06) !important;
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(17, 24, 39, 0.1) !important;
  border-color: var(--blue-300) !important;
}

.faq-item h3 {
  color: var(--navy-900) !important;
  font-size: clamp(1.05rem, 2vw, 1.2rem) !important;
  font-weight: 700 !important;
  line-height: 1.3 !important;
  margin: 0 0 1rem !important;
}

.faq-item p {
  color: var(--gray-600) !important;
  font-size: clamp(0.9rem, 1.5vw, 0.95rem) !important;
  line-height: 1.7 !important;
  margin: 0 0 1rem !important;
}

.faq-item p:last-child {
  margin-bottom: 0 !important;
}

.faq-item strong {
  color: var(--navy-800) !important;
  font-weight: 600 !important;
}

.faq-item ul {
  color: var(--gray-600) !important;
  font-size: clamp(0.9rem, 1.5vw, 0.95rem) !important;
  line-height: 1.7 !important;
  margin: 0.75rem 0 1rem 0 !important;
  padding: 0 !important;
  list-style: none;
}

.faq-item li {
  margin-bottom: 0.5rem !important;
  padding-left: 1.5rem !important;
  position: relative;
}

.faq-item li::before {
  content: "";
  width: 16px;
  height: 16px;
  background: var(--teal-100);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0.25em;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%230d9488'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-size: 9px;
  background-repeat: no-repeat;
  background-position: center;
}

@media (max-width: 768px) {
  .offsetmy-faq-page { padding: 2rem 0.75rem; }
  .faq-header { margin-bottom: 2.5rem; }
  .faq-section-header { margin: 2.5rem 0 1.25rem; }
  .faq-section-header h2 { font-size: 1.2rem !important; }
  .faq-item { padding: 1.25rem; margin-bottom: 1.25rem; border-radius: 12px; }
  .faq-item h3 { font-size: 1.05rem !important; }
  .faq-item p, .faq-item ul { font-size: 0.9rem !important; }
}

/* =========================================================
   PROJECTS PAGE STYLES
   ========================================================= */
.offsetmy-projects-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

/* Projects Header */
.projects-header {
  text-align: center;
  margin-bottom: 3rem;
  padding: 0 1rem;
}

.projects-title {
  font-size: clamp(2rem, 5vw, 3rem) !important;
  font-weight: 800 !important;
  color: var(--navy-900) !important;
  line-height: 1.1 !important;
  margin: 0 0 1rem !important;
  letter-spacing: -0.025em !important;
}

.projects-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.15rem) !important;
  color: var(--gray-600) !important;
  line-height: 1.7 !important;
  max-width: 800px;
  margin: 0 auto !important;
}

/* Container */
.projects-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Philosophy Banner */
.philosophy-banner {
  background: var(--teal-50) !important;
  border: 1px solid var(--teal-100) !important;
  border-left: 4px solid var(--teal-600) !important;
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 1rem;
}

.philosophy-banner h3 {
  color: var(--teal-700) !important;
  font-size: 1.25rem !important;
  font-weight: 700 !important;
  margin: 0 0 0.75rem !important;
}

.philosophy-banner p {
  color: var(--gray-700) !important;
  font-size: 1rem !important;
  line-height: 1.7 !important;
  margin: 0 !important;
}

/* Section Cards */
.section-card {
  background: var(--surface-primary) !important;
  border: 1px solid var(--gray-200) !important;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(17, 24, 39, 0.06) !important;
}

.section-card.highlight-section {
  background: var(--blue-50) !important;
  border: 1px solid var(--blue-200) !important;
}

.section-card .section-title {
  font-size: clamp(1.5rem, 3vw, 2rem) !important;
  font-weight: 800 !important;
  color: var(--navy-900) !important;
  margin: 0 0 1rem !important;
  line-height: 1.3 !important;
  letter-spacing: -0.02em !important;
}

.section-card .section-title.highlight-title {
  color: var(--teal-700) !important;
}

.section-card .section-title.centered {
  text-align: center;
}

.section-intro {
  font-size: 1rem !important;
  color: var(--gray-600) !important;
  line-height: 1.7 !important;
  margin-bottom: 1.5rem !important;
}

.section-intro.centered {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2rem !important;
}

.subsection-title {
  color: var(--navy-800) !important;
  font-size: 1.25rem !important;
  font-weight: 700 !important;
  margin: 2rem 0 1rem !important;
}

/* Leverage Callout */
.leverage-callout {
  background: var(--surface-primary) !important;
  border: 1px solid var(--teal-100) !important;
  border-left: 4px solid var(--teal-600) !important;
  border-radius: 8px;
  padding: 1.5rem;
  margin: 2rem 0;
}

.leverage-callout h4 {
  color: var(--teal-700) !important;
  font-size: 1.1rem !important;
  font-weight: 700 !important;
  margin: 0 0 0.5rem !important;
}

.leverage-callout p {
  color: var(--gray-600) !important;
  font-size: 0.9375rem !important;
  line-height: 1.6 !important;
  margin: 0 !important;
}

/* Precedent Box */
.precedent-box {
  background: var(--blue-50) !important;
  border: 1px solid var(--blue-200) !important;
  border-left: 4px solid var(--blue-600) !important;
  border-radius: 12px;
  padding: 1.5rem;
  margin: 1.5rem 0;
}

.precedent-box h3 {
  color: var(--navy-800) !important;
  font-size: 1.125rem !important;
  font-weight: 700 !important;
  margin: 0 0 0.75rem !important;
}

.precedent-box p {
  color: var(--gray-700) !important;
  font-size: 0.9375rem !important;
  line-height: 1.6 !important;
  margin: 0 0 0.5rem !important;
}

.precedent-box .precedent-highlight {
  color: var(--navy-900) !important;
  font-weight: 600 !important;
  margin: 0 !important;
}

/* Context Box */
.context-box {
  background: var(--pink-100) !important;
  border: 1px solid var(--pink-500) !important;
  border-left: 4px solid var(--pink-600) !important;
  border-radius: 12px;
  padding: 1.5rem;
  margin: 1.5rem 0;
}

.context-box h3 {
  color: var(--pink-600) !important;
  font-size: 1.125rem !important;
  font-weight: 700 !important;
  margin: 0 0 0.75rem !important;
}

.context-box p {
  color: var(--gray-700) !important;
  font-size: 0.9375rem !important;
  line-height: 1.6 !important;
  margin: 0 0 0.5rem !important;
}

.context-box ul {
  margin: 0.5rem 0 1rem 1.2rem !important;
  padding: 0 !important;
}

.context-box li {
  margin-bottom: 0.3rem !important;
  color: var(--gray-700) !important;
}

/* Advocacy Grid */
.advocacy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 1.5rem 0;
}

.advocacy-item {
  background: var(--blue-50) !important;
  border: 1px solid var(--blue-200) !important;
  border-radius: 12px;
  padding: 1.25rem;
}

.advocacy-item h4 {
  color: var(--navy-800) !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  margin: 0 0 0.5rem !important;
}

.advocacy-item p {
  color: var(--gray-600) !important;
  font-size: 0.9rem !important;
  line-height: 1.5 !important;
  margin: 0 !important;
}

/* Community Grid */
.community-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin: 1.5rem 0;
}

.community-card {
  background: var(--surface-primary) !important;
  border: 1px solid var(--gray-200) !important;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.community-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(17, 24, 39, 0.12) !important;
  border-color: var(--teal-500) !important;
}

.community-icon {
  width: 48px;
  height: 48px;
  background: var(--teal-50) !important;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.8rem;
}

.community-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--teal-600);
}

.community-card h3 {
  color: var(--navy-800) !important;
  font-size: 1.1rem !important;
  font-weight: 700 !important;
  margin: 0 0 0.5rem !important;
}

.community-card p {
  color: var(--gray-600) !important;
  font-size: 0.9rem !important;
  line-height: 1.5 !important;
  margin: 0 !important;
}

/* Vote Banner */
.vote-banner {
  background: var(--navy-900) !important;
  color: white !important;
  text-align: center;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  margin-top: 1.5rem;
}

.vote-banner p {
  margin: 0 !important;
  font-weight: 600 !important;
  font-size: 1rem !important;
}

/* Multiplier Banner */
.multiplier-banner {
  background: var(--teal-600) !important;
  color: white !important;
  text-align: center;
  padding: 1.25rem;
  border-radius: 8px;
  margin-top: 2rem;
}

.multiplier-banner p {
  margin: 0 !important;
  font-weight: 700 !important;
  font-size: 1.1rem !important;
}

/* Event Banner */
.event-banner {
  background: var(--pink-100) !important;
  border: 1px solid var(--pink-500) !important;
  color: var(--gray-900) !important;
  text-align: center;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  margin-top: 1.5rem;
}

.event-banner p {
  margin: 0 !important;
  font-weight: 600 !important;
  font-size: 1rem !important;
}

/* Projects Grid */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.project-card {
  background: var(--surface-primary) !important;
  box-shadow: 0 2px 8px rgba(17, 24, 39, 0.08) !important;
  border: 1px solid var(--gray-200) !important;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  text-decoration: none;
  display: block;
}

.project-card:hover {
  transform: translateY(-6px);
  border-color: var(--blue-400) !important;
  box-shadow: 0 8px 20px rgba(17, 24, 39, 0.15) !important;
}

.project-image {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.project-content {
  padding: 1.2rem;
}

.project-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.project-header h3 {
  color: var(--navy-800) !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  margin: 0 !important;
}

.project-badge {
  background: var(--teal-600) !important;
  color: white !important;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
}

.project-description {
  color: var(--gray-600) !important;
  font-size: 0.875rem !important;
  line-height: 1.5 !important;
  margin: 0.5rem 0 !important;
}

.project-tags {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.8rem;
  flex-wrap: wrap;
}

.tag {
  background: var(--blue-100) !important;
  color: var(--navy-700) !important;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 500;
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.stat-item {
  text-align: center;
  padding: 1.25rem;
  background: var(--blue-50) !important;
  border: 1px solid var(--blue-200) !important;
  border-radius: 12px;
}

.stat-number {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--teal-600) !important;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-item p {
  color: var(--gray-600) !important;
  font-size: 0.875rem !important;
  margin: 0 !important;
}

/* Steps Grid */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.step-item {
  text-align: center;
  padding: 1rem;
}

.step-number {
  width: 48px;
  height: 48px;
  background: var(--navy-900) !important;
  color: white !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-weight: 700;
  font-size: 1.2rem;
}

.step-item h4 {
  color: var(--navy-800) !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  margin: 0 0 0.5rem !important;
}

.step-item p {
  color: var(--gray-600) !important;
  font-size: 0.875rem !important;
  line-height: 1.5 !important;
  margin: 0 !important;
}

/* NFT Section */
.nft-section {
  background: var(--pink-100) !important;
  border: 1px solid var(--pink-500) !important;
}

.nft-content-wrapper {
  margin: 1.5rem 0;
}

.nft-text h3 {
  color: var(--pink-600) !important;
  font-size: 1.25rem !important;
  font-weight: 700 !important;
  margin: 0 0 0.75rem !important;
}

.nft-text p {
  color: var(--gray-700) !important;
  font-size: 1rem !important;
  line-height: 1.6 !important;
  margin: 0 0 1rem !important;
}

.benefit-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.benefit-list li {
  color: var(--gray-700) !important;
  font-size: 1rem !important;
  line-height: 1.8 !important;
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}

.benefit-list li::before {
  content: "";
  width: 18px;
  height: 18px;
  background: var(--teal-100);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0.25em;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%230d9488'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-size: 10px;
  background-repeat: no-repeat;
  background-position: center;
}

/* Projects CTA */
.projects-cta {
  text-align: center;
  padding: 3rem 1rem 2rem;
}

.cta-button {
  display: inline-block;
  background: var(--navy-900) !important;
  color: white !important;
  padding: 1rem 2.5rem !important;
  border-radius: 10px !important;
  font-weight: 700 !important;
  font-size: 1.1rem !important;
  text-decoration: none !important;
  box-shadow: 0 4px 12px rgba(15, 29, 50, 0.3) !important;
  transition: all 0.2s ease !important;
}

.cta-button:hover {
  background: var(--navy-800) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 20px rgba(15, 29, 50, 0.4) !important;
}

.cta-subtext {
  color: var(--gray-500) !important;
  font-size: 0.95rem !important;
  margin-top: 1rem !important;
}

/* Projects Mobile Responsive */
@media (max-width: 768px) {
  .offsetmy-projects-page {
    padding: 1rem 0;
  }

  .projects-header {
    margin-bottom: 2rem;
  }

  .section-card {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .community-grid,
  .projects-grid,
  .stats-grid,
  .steps-grid,
  .advocacy-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .projects-cta {
    padding: 2rem 1rem;
  }

  .philosophy-banner,
  .precedent-box,
  .context-box,
  .leverage-callout {
    padding: 1.25rem;
  }
}

@media (max-width: 480px) {
  .projects-title {
    font-size: 1.75rem !important;
  }

  .projects-subtitle {
    font-size: 0.9375rem !important;
  }

  .section-card {
    padding: 1.25rem;
    border-radius: 12px;
  }

  .section-card .section-title {
    font-size: 1.25rem !important;
  }
}

/* =========================================================
   FOUNDING 100 PAGE STYLES
   ========================================================= */
.founding100-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background: var(--surface-secondary);
}

/* Founding 100 Hero Section */
.founding100-hero {
  text-align: center;
  padding: 60px 20px;
  background: var(--surface-primary);
  border: 1px solid var(--gray-200);
  border-radius: 24px;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(17, 24, 39, 0.08);
}

.founding100-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at 30% 20%, rgba(13, 148, 136, 0.06) 0%, transparent 40%),
              radial-gradient(ellipse at 70% 80%, rgba(236, 72, 153, 0.06) 0%, transparent 40%);
  pointer-events: none;
}

.founding100-hero-content {
  position: relative;
  z-index: 1;
}

.founding100-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy-900);
  color: #ffffff;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 10px 24px;
  border-radius: 30px;
  margin-bottom: 24px;
  box-shadow: 0 4px 16px rgba(15, 29, 50, 0.3);
}

.founding100-hero-badge svg {
  width: 18px;
  height: 18px;
}

.founding100-hero h1 {
  color: var(--navy-900) !important;
  font-size: clamp(2.5rem, 5vw, 3.5rem) !important;
  font-weight: 800 !important;
  margin: 0 0 16px 0 !important;
  line-height: 1.1 !important;
  letter-spacing: -0.025em !important;
}

.founding100-hero h1 span {
  color: var(--teal-600) !important;
}

.founding100-hero-subtitle {
  color: var(--gray-600) !important;
  font-size: clamp(1rem, 2vw, 1.2rem) !important;
  max-width: 600px;
  margin: 0 auto 32px !important;
  line-height: 1.6 !important;
}

/* Counter Boxes */
.founding100-counters {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.founding100-counter-box {
  background: var(--blue-50);
  border: 1px solid var(--blue-200);
  border-radius: 16px;
  padding: 24px 40px;
  text-align: center;
  min-width: 140px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.founding100-counter-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(13, 148, 136, 0.15);
  border-color: var(--teal-500);
}

.founding100-counter-value {
  font-size: 48px;
  font-weight: 800;
  color: var(--teal-600);
  line-height: 1;
  margin-bottom: 8px;
}

.founding100-counter-value.loading {
  opacity: 0.5;
}

.founding100-counter-label {
  color: var(--gray-500);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

/* Progress Bar */
.founding100-progress-container {
  max-width: 400px;
  margin: 0 auto 32px;
}

.founding100-progress-bar {
  background: var(--gray-200);
  border-radius: 10px;
  height: 12px;
  overflow: hidden;
  margin-bottom: 8px;
}

.founding100-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--teal-600), var(--teal-500));
  border-radius: 10px;
  transition: width 0.5s ease;
  width: 0%;
}

.founding100-progress-text {
  color: var(--gray-500);
  font-size: 14px;
  text-align: center;
  font-weight: 500;
}

/* CTA Button */
.founding100-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--navy-900);
  color: #ffffff !important;
  font-weight: 700;
  font-size: 18px;
  padding: 16px 40px;
  border-radius: 12px;
  text-decoration: none !important;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(15, 29, 50, 0.3);
}

.founding100-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(15, 29, 50, 0.4);
  color: #ffffff !important;
  text-decoration: none !important;
  background: var(--navy-800);
}

.founding100-cta-primary svg {
  width: 20px;
  height: 20px;
}

.founding100-cta-primary.sold-out {
  background: #94a3b8;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Benefits Section */
.founding100-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 60px;
}

.founding100-benefit-card {
  background: var(--surface-primary);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 2px 12px rgba(17, 24, 39, 0.06);
}

.founding100-benefit-card:hover {
  transform: translateY(-4px);
  border-color: var(--teal-500);
  box-shadow: 0 12px 32px rgba(13, 148, 136, 0.12);
}

.founding100-benefit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: var(--teal-50);
  border-radius: 16px;
  margin-bottom: 16px;
}

.founding100-benefit-icon svg {
  width: 32px;
  height: 32px;
  color: var(--teal-600);
}

.founding100-benefit-title {
  color: var(--navy-900) !important;
  font-size: 20px !important;
  font-weight: 700 !important;
  margin: 0 0 12px 0 !important;
}

.founding100-benefit-desc {
  color: var(--gray-600) !important;
  font-size: 15px !important;
  line-height: 1.6 !important;
  margin: 0 !important;
}

/* Member Grid Section */
.founding100-members-section {
  background: var(--surface-primary);
  border: 1px solid var(--gray-200);
  border-radius: 24px;
  padding: 48px;
  margin-bottom: 60px;
  box-shadow: 0 4px 24px rgba(17, 24, 39, 0.08);
}

.founding100-members-title {
  color: var(--navy-900) !important;
  font-size: clamp(1.5rem, 3vw, 2rem) !important;
  font-weight: 700 !important;
  text-align: center;
  margin: 0 0 32px 0 !important;
}

.founding100-members-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(72px, 1fr));
  gap: 10px;
  max-width: 900px;
  margin: 0 auto;
}

.founding100-member-slot {
  aspect-ratio: 1;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-500);
  transition: all 0.2s ease;
}

.founding100-member-slot.claimed {
  background: var(--teal-50);
  border-color: var(--teal-500);
  color: var(--teal-600);
}

.founding100-member-slot.claimed .checkmark {
  color: var(--green-500);
  margin-right: 2px;
  font-weight: 700;
}

.founding100-member-slot.available {
  opacity: 0.5;
}

.founding100-member-slot:hover {
  transform: scale(1.05);
  border-color: var(--teal-600);
}

/* Founding 100 FAQ Section */
.founding100-faq {
  margin-bottom: 60px;
}

.founding100-faq-title {
  color: var(--navy-900) !important;
  font-size: clamp(1.5rem, 3vw, 2rem) !important;
  font-weight: 700 !important;
  text-align: center;
  margin: 0 0 32px 0 !important;
}

.founding100-faq-item {
  background: var(--surface-primary);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 16px;
  box-shadow: 0 2px 8px rgba(17, 24, 39, 0.04);
  transition: all 0.2s ease;
}

.founding100-faq-item:hover {
  border-color: var(--blue-300);
  box-shadow: 0 4px 16px rgba(17, 24, 39, 0.08);
}

.founding100-faq-q {
  color: var(--navy-900) !important;
  font-size: 18px !important;
  font-weight: 600 !important;
  margin: 0 0 12px 0 !important;
  display: flex;
  align-items: center;
  gap: 12px;
}

.founding100-faq-q svg {
  width: 20px;
  height: 20px;
  color: var(--teal-600);
  flex-shrink: 0;
}

.founding100-faq-a {
  color: var(--gray-600) !important;
  font-size: 16px !important;
  line-height: 1.6 !important;
  margin: 0 !important;
  padding-left: 32px;
}

/* Final CTA */
.founding100-final-cta {
  text-align: center;
  padding: 60px 20px;
  background: var(--navy-900);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(15, 29, 50, 0.3);
}

.founding100-final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(13, 148, 136, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.founding100-final-cta h2 {
  color: #ffffff !important;
  font-size: clamp(1.75rem, 4vw, 2.25rem) !important;
  font-weight: 800 !important;
  margin: 0 0 16px 0 !important;
  position: relative;
}

.founding100-final-cta p {
  color: var(--blue-300) !important;
  font-size: 18px !important;
  margin: 0 0 32px 0 !important;
  position: relative;
}

.founding100-final-cta .founding100-cta-primary {
  background: #ffffff;
  color: var(--navy-900) !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.founding100-final-cta .founding100-cta-primary:hover {
  background: var(--gray-100);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.founding100-final-cta .founding100-cta-primary svg {
  color: var(--navy-900);
}

/* Founding 100 Mobile Responsive */
@media (max-width: 768px) {
  .founding100-hero {
    padding: 40px 20px;
  }

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

  .founding100-hero-subtitle {
    font-size: 1rem !important;
  }

  .founding100-counter-box {
    padding: 20px 30px;
    min-width: 120px;
  }

  .founding100-counter-value {
    font-size: 36px;
  }

  .founding100-members-section {
    padding: 32px 20px;
  }

  .founding100-members-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
  }

  .founding100-member-slot {
    font-size: 11px;
    border-radius: 8px;
  }

  .founding100-faq-a {
    padding-left: 0;
  }

  .founding100-benefit-card {
    padding: 24px;
  }

  .founding100-final-cta {
    padding: 40px 20px;
  }
}

@media (max-width: 480px) {
  .founding100-page {
    padding: 20px 12px;
  }

  .founding100-hero {
    padding: 32px 16px;
    border-radius: 16px;
  }

  .founding100-counters {
    gap: 12px;
  }

  .founding100-counter-box {
    padding: 16px 24px;
    min-width: 100px;
  }

  .founding100-counter-value {
    font-size: 28px;
  }

  .founding100-cta-primary {
    padding: 14px 28px;
    font-size: 16px;
  }

  .founding100-members-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
