/**
 * Covely Marketing Theme — Main Stylesheet
 *
 * Design System:
 *   Deep Sea:          #002f57  (primary)
 *   White Sand:        #fff9f3  (surface)
 *   Low Sun:           #e91515  (accent red)
 *   Grass:             #30df7a  (accent green)
 *   Shallows:          #29a3ff  (accent blue)
 *   High Sun:          #fed573  (accent gold)
 *   Heading font:      Fraunces 72pt Soft
 *   Body font:         DM Sans
 */

/* ========== FONTS ========== */

@font-face {
  font-family: 'DM Sans';
  src: url('../fonts/DMSans-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'DM Sans';
  src: url('../fonts/DMSans-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'DM Sans';
  src: url('../fonts/DMSans-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'DM Sans';
  src: url('../fonts/DMSans-MediumItalic.ttf') format('truetype');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'DM Sans';
  src: url('../fonts/DMSans-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'DM Sans';
  src: url('../fonts/DMSans-SemiBoldItalic.ttf') format('truetype');
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'DM Sans';
  src: url('../fonts/DMSans-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'DM Sans';
  src: url('../fonts/DMSans-BoldItalic.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Fraunces 72pt Soft';
  src: url('../fonts/Fraunces-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fraunces 72pt Soft';
  src: url('../fonts/Fraunces-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Fraunces 72pt Soft';
  src: url('../fonts/Fraunces-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fraunces 72pt Soft';
  src: url('../fonts/Fraunces-SemiBoldItalic.ttf') format('truetype');
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Fraunces 72pt Soft';
  src: url('../fonts/Fraunces-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fraunces 72pt Soft';
  src: url('../fonts/Fraunces-BoldItalic.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

/* ========== RESET & BASE ========== */

*, *::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: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #4a5a6a;
  background-color: #FFFFFF;
}

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

a {
  color: #002f57;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: #001f3a;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid #002f57;
  outline-offset: 2px;
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Fraunces 72pt Soft', Georgia, serif;
  color: #002f57;
  font-weight: 600;
  line-height: 1.25;
}

h1 { font-size: 2.75rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.1rem; }

/* ========== LAYOUT ========== */

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

.page-section {
  padding: 80px 0;
}

.page-section--grey {
  background-color: #fff9f3;
}

/* ========== HEADER ========== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid #e8e0d4;
  transition: all 0.3s ease;
}

.site-header.is-scrolled {
  border-bottom-color: #e8e0d4;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.04);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

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

.site-logo:hover {
  opacity: 0.85;
}

.site-logo-img {
  height: 38px;
  width: auto;
  display: block;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-list a {
  font-size: 0.875rem;
  font-weight: 400;
  color: #4a5a6a;
  transition: color 0.2s ease;
  padding: 4px 0;
}

.nav-list a:hover {
  color: #002f57;
}

.nav-login {
  color: #4a5a6a !important;
  font-weight: 400 !important;
}

/* Mobile-only nav CTA — hidden on desktop, shown in mobile nav */
.nav-mobile-cta {
  display: none !important;
}

/* Mobile menu toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: #002f57;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle.is-active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.is-active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.is-active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ========== BUTTONS ========== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 12px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
  line-height: 1.4;
}

.btn-primary {
  background: #002f57;
  color: #FFFFFF;
  border-color: #002f57;
}

.btn-primary:hover {
  background: #001f3a;
  border-color: #001f3a;
  color: #FFFFFF;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 47, 87, 0.25);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(4px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.35);
  color: #FFFFFF;
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: #002f57;
  border-color: #002f57;
}

.btn-outline:hover {
  background: #e8edf4;
  color: #002f57;
  transform: translateY(-1px);
}

.btn-lg {
  padding: 14px 32px;
  font-size: 1rem;
}

.btn-block {
  display: block;
  width: 100%;
  text-align: center;
}

.btn-hero-light {
  background: rgba(255, 255, 255, 0.92);
  color: #002f57;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50px;
  padding: 10px 24px;
  font-size: 0.875rem;
  font-weight: 600;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.btn-hero-light:hover {
  background: #FFFFFF;
  color: #001f3a;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.btn-hero-green {
  background: #30df7a;
  color: #002f57;
  border: 1px solid #30df7a;
  border-radius: 50px;
  padding: 10px 24px;
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(48, 223, 122, 0.35);
}

.btn-hero-green:hover {
  background: #22cc6a;
  border-color: #22cc6a;
  color: #002f57;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(48, 223, 122, 0.4);
}

/* ========== HERO SECTION ========== */

.hero-section {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.0) 0%,
    rgba(0, 0, 0, 0.28) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 180px 24px 80px;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}

.hero-headline {
  font-size: 3.25rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.3);
  font-style: italic;
  font-family: 'Fraunces 72pt Soft', Georgia, serif;
}

.hero-subheadline {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 28px;
  max-width: 520px;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.25);
}

.hero-ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ========== SECTION HEADERS ========== */

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

.section-title {
  font-size: 1.85rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #4a5a6a;
  max-width: 600px;
  margin: 0 auto;
}

/* ========== PATHWAYS SECTION ========== */

.pathways-section {
  padding: 100px 0;
  background: #FFFFFF;
}

.pathways-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.pathway-card {
  background: #fffcf8;
  border: 1px solid #ede5db;
  border-radius: 16px;
  padding: 40px 28px;
  text-align: center;
  transition: all 0.3s ease;
}

.pathway-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  border-color: #d5cfc6;
}

.pathway-icon {
  width: 64px;
  height: 64px;
  background: #e8edf4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.pathway-title {
  margin-bottom: 10px;
  font-size: 1.15rem;
  font-weight: 600;
}

.pathway-desc {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #4a5a6a;
}

/* ========== HOW IT WORKS SECTION ========== */

.how-it-works-section {
  padding: 100px 0;
  background: #fff9f3;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.step-card {
  background: #FFFFFF;
  border: 1px solid #e8e0d4;
  border-radius: 20px;
  padding: 40px 28px;
  text-align: center;
  transition: all 0.3s ease;
}

.step-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05);
}

.step-number {
  width: 48px;
  height: 48px;
  background: #002f57;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 auto 20px;
}

.step-title {
  margin-bottom: 12px;
  font-size: 1.15rem;
}

.step-desc {
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ========== WHY CHOOSE SECTION ========== */

.why-choose-section {
  padding: 100px 0;
  background: #FFFFFF;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.benefit-card {
  background: #fff9f3;
  border: 1px solid #e8e0d4;
  border-radius: 20px;
  padding: 40px 36px;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05);
}

.benefit-icon {
  width: 56px;
  height: 56px;
  background: #e8edf4;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.benefit-title {
  margin-bottom: 10px;
}

.benefit-desc {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ========== TESTIMONIALS SECTION ========== */

.testimonials-section {
  padding: 100px 0;
  background: #fff9f3;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: #FFFFFF;
  border: 1px solid #e8e0d4;
  border-radius: 20px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05);
}

.testimonial-quote p {
  font-size: 0.95rem;
  line-height: 1.7;
  font-style: italic;
  color: #3a4a5a;
  margin-bottom: 24px;
}

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

.author-avatar {
  width: 44px;
  height: 44px;
  background: #e8edf4;
  border-radius: 50%;
  flex-shrink: 0;
}

.author-name {
  display: block;
  font-size: 0.9rem;
  color: #002f57;
}

.author-role {
  font-size: 0.8rem;
  color: #7a8898;
}

/* ========== CTA SECTION ========== */

.cta-section {
  padding: 80px 0;
  background: #FFFFFF;
}

.cta-card {
  background: linear-gradient(135deg, #002f57 0%, #004070 100%);
  border-radius: 24px;
  padding: 64px 48px;
  text-align: center;
  color: #FFFFFF;
}

.cta-title {
  color: #FFFFFF;
  font-size: 2.25rem;
  margin-bottom: 16px;
}

.cta-desc {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 560px;
  margin: 0 auto 32px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-buttons .btn-outline {
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.5);
}

.cta-buttons .btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
}

/* ========== PAGE HERO (inner pages) ========== */

.page-hero {
  padding: 140px 0 60px;
  text-align: center;
}

.page-hero--light {
  background: #fff9f3;
}

.page-hero-title {
  font-size: 2.75rem;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.page-hero-subtitle {
  font-size: 1.15rem;
  color: #4a5a6a;
  max-width: 600px;
  margin: 0 auto;
}

/* ========== CONTENT GRIDS ========== */

.content-grid--two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.content-text h2 {
  margin-bottom: 20px;
}

.content-text h3 {
  margin-top: 28px;
  margin-bottom: 12px;
}

.content-text p {
  margin-bottom: 16px;
  line-height: 1.7;
}

.rounded-image {
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.lead-text {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #3a4a5a;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

/* ========== ABOUT PAGE ========== */

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.audience-card {
  background: #FFFFFF;
  border: 1px solid #e8e0d4;
  border-radius: 20px;
  padding: 36px 28px;
}

.audience-card h3 {
  margin-bottom: 12px;
  color: #002f57;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.team-card {
  text-align: center;
  padding: 32px 24px;
}

.team-avatar {
  width: 96px;
  height: 96px;
  background: #e8edf4;
  border-radius: 50%;
  margin: 0 auto 20px;
}

.team-name {
  margin-bottom: 4px;
}

.team-role {
  font-size: 0.9rem;
  color: #002f57;
  font-weight: 500;
  margin-bottom: 12px;
}

.team-bio {
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ========== EVIDENCE PAGE ========== */

.evidence-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.evidence-card {
  background: #FFFFFF;
  border: 1px solid #e8e0d4;
  border-radius: 20px;
  padding: 36px 32px;
}

.evidence-card h3 {
  margin-bottom: 12px;
  color: #002f57;
}

.evidence-list {
  margin-top: 12px;
  list-style: none;
}

.evidence-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.evidence-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: #002f57;
  border-radius: 50%;
}

.download-section {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.download-section h2 {
  margin-bottom: 16px;
}

.download-section p {
  margin-bottom: 24px;
}

.download-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: center;
}

/* ========== PRICING PAGE ========== */

.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 56px;
}

.toggle-label {
  font-size: 0.95rem;
  font-weight: 500;
  color: #7a8898;
  transition: color 0.2s ease;
}

.toggle-label--active {
  color: #002f57;
  font-weight: 600;
}

.toggle-badge {
  background: #e8edf4;
  color: #002f57;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 6px;
  margin-left: 4px;
}

.toggle-switch {
  position: relative;
  width: 52px;
  height: 28px;
  background: #e8e0d4;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.toggle-switch.is-annual {
  background: #002f57;
}

.toggle-slider {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 22px;
  height: 22px;
  background: #FFFFFF;
  border-radius: 50%;
  transition: transform 0.3s ease;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}

.toggle-switch.is-annual .toggle-slider {
  transform: translateX(24px);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}

.pricing-card {
  background: #FFFFFF;
  border: 1px solid #e8e0d4;
  border-radius: 24px;
  padding: 40px 32px;
  position: relative;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.pricing-card--featured {
  border-color: #002f57;
  box-shadow: 0 8px 32px rgba(0, 47, 87, 0.12);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #002f57;
  color: #FFFFFF;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 4px 16px;
  border-radius: 8px;
}

.pricing-header {
  margin-bottom: 24px;
}

.pricing-tier {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.pricing-desc {
  font-size: 0.9rem;
  color: #7a8898;
}

.pricing-price {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e8e0d4;
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: #002f57;
}

.price-period {
  font-size: 0.9rem;
  color: #7a8898;
  margin-left: 4px;
}

.pricing-tier-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.pricing-tier-row .pricing-tier {
  margin-bottom: 0;
}

.founding-pill {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #002f57;
  background: #e8edf4;
  border: 1px solid #b8cdd9;
  border-radius: 20px;
  padding: 3px 10px;
  white-space: nowrap;
}

.founding-pill--gold {
  color: #7a5c10;
  background: #FAF3E0;
  border-color: #DFC97A;
}

.card-founding-note {
  font-size: 0.78rem;
  color: #9a9fa3;
  line-height: 1.5;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid #F0F1F2;
  margin-bottom: 0;
}

.pricing-footer-note {
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid #e0d8cf;
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

.pricing-footer-note__title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #002f57;
  flex-shrink: 0;
  width: 140px;
  padding-top: 3px;
}

.pricing-footer-note p {
  font-size: 0.875rem;
  color: #5a5f63;
  line-height: 1.65;
  margin: 0;
}

.pricing-footer-note p + p {
  margin-top: 6px;
}

.pricing-payg {
  font-size: 0.85rem;
  font-weight: 600;
  color: #002f57;
  margin-top: -20px;
  margin-bottom: 24px;
}

.pricing-partner-note {
  font-size: 0.85rem;
  color: #4a5a6a;
  line-height: 1.6;
  background: #fff9f3;
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 20px;
}

.pricing-footnote {
  text-align: center;
  font-size: 0.85rem;
  color: #7a8898;
  margin-top: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-badge--gold {
  background: #8B6914;
}

.pricing-card--partner {
  border-color: #c9a227;
  box-shadow: 0 8px 32px rgba(180, 140, 20, 0.1);
}

.practitioner-selector {
  margin-bottom: 20px;
}

.practitioner-selector label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: #4a5a6a;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}

.capacity-options {
  display: flex;
  gap: 8px;
}

.capacity-btn {
  flex: 1;
  padding: 9px 8px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1.5px solid #e8e0d4;
  border-radius: 10px;
  background: #FFFFFF;
  color: #4a5a6a;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
}

.capacity-btn:hover {
  border-color: #002f57;
  color: #002f57;
}

.capacity-btn.active {
  background: #002f57;
  border-color: #002f57;
  color: #FFFFFF;
}

.pricing-features {
  margin-bottom: 32px;
}

.pricing-features li {
  position: relative;
  padding-left: 28px;
  padding-top: 8px;
  padding-bottom: 8px;
  font-size: 0.9rem;
  border-bottom: 1px solid #fff9f3;
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 16px;
  height: 16px;
  background: #e8edf4;
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='%232F6B4F'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
}

/* ========== CONTACT PAGE ========== */

.waitlist-wrapper {
  max-width: 640px;
  margin: 0 auto;
}

.contact-success {
  text-align: center;
  padding: 64px 32px;
}

.contact-success__icon {
  margin-bottom: 24px;
}

.contact-success h2 {
  font-size: 1.75rem;
  color: #002f57;
  margin-bottom: 12px;
}

.contact-success p {
  color: #5a6472;
  font-size: 1rem;
  margin-bottom: 8px;
}

.contact-success__note {
  font-size: 0.9rem;
  color: #8a9aaa;
}

.waitlist-submit-row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.waitlist-privacy {
  font-size: 0.82rem;
  color: #7a8898;
  margin: 0;
}

.form-optional {
  font-size: 0.8rem;
  font-weight: 400;
  color: #7a8898;
}

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

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

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: #002f57;
  margin-bottom: 6px;
}

.required {
  color: #c0392b;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: inherit;
  font-size: 0.95rem;
  color: #002f57;
  background: #fff9f3;
  border: 1px solid #e8e0d4;
  border-radius: 12px;
  transition: all 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #002f57;
  background: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(0, 47, 87, 0.1);
}

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

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

.contact-info-card {
  background: #fff9f3;
  border: 1px solid #e8e0d4;
  border-radius: 20px;
  padding: 32px 28px;
}

.contact-info-card h3 {
  margin-bottom: 16px;
  color: #002f57;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.95rem;
}

.small-text {
  font-size: 0.85rem;
  color: #7a8898;
  margin-top: 12px;
}

/* ========== FOUNDING PARTNER PAGE ========== */

.fp-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #002f57;
  opacity: 0.6;
  margin-bottom: 12px;
}

.fp-hero-btn {
  margin-top: 28px;
  display: inline-block;
}

.fp-two-col {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 64px;
  align-items: start;
}

.fp-col-main {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.fp-block h2 {
  margin-bottom: 16px;
}

.fp-block p {
  color: #5a5f63;
  line-height: 1.75;
  margin-bottom: 12px;
}

.fp-block p:last-child {
  margin-bottom: 0;
}

.fp-benefits-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}

.fp-benefits-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  font-size: 0.95rem;
  color: #1a1a1a;
  border-bottom: 1px solid #f0ece7;
}

.fp-benefits-list li::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #002f57;
  flex-shrink: 0;
}

.fp-deposit-block {
  padding-top: 40px;
  border-top: 1px solid #e8e0d4;
}

.fp-form-card {
  background: #fff9f3;
  border: 1px solid #e0d8cf;
  border-radius: 20px;
  padding: 36px 32px;
  position: sticky;
  top: 24px;
}

.fp-form-title {
  font-size: 1.15rem;
  color: #002f57;
  margin-bottom: 24px;
}

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

.fp-submit-btn {
  margin-top: 8px;
  width: 100%;
  justify-content: center;
}

.consent-group {
  margin-top: 4px;
  margin-bottom: 16px;
}

.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 0.88rem;
  color: #5a6472;
  line-height: 1.5;
}

.consent-label input[type="checkbox"] {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: #002f57;
  cursor: pointer;
}

.consent-label a {
  color: #002f57;
  text-decoration: underline;
}

.consent-label a:hover {
  color: #30df7a;
}

.fp-deposit-note {
  text-align: center;
  font-size: 0.8rem;
  color: #7a8898;
  margin: 10px 0 0;
}

.fp-no-spam {
  text-align: center;
  font-size: 0.8rem;
  color: #7a8898;
  margin: 10px 0 0;
}

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

.fp-thankyou-card {
  max-width: 600px;
  margin: 0 auto;
  background: #fff9f3;
  border: 1px solid #e0d8cf;
  border-radius: 20px;
  padding: 48px 40px;
}

.fp-thankyou-icon {
  margin-bottom: 24px;
}

.fp-thankyou-card h2 {
  margin-bottom: 16px;
}

.fp-thankyou-card p {
  color: #5a5f63;
  line-height: 1.7;
  margin-bottom: 12px;
}

.fp-thankyou-note {
  font-size: 0.875rem;
  color: #7a8898;
}

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

@media (max-width: 600px) {
  .fp-benefits-grid {
    grid-template-columns: 1fr;
  }
  .fp-deposit-card {
    padding: 24px 20px;
  }
  .fp-thankyou-card {
    padding: 32px 24px;
  }
}

/* ========== LEGAL PAGES ========== */

.legal-content {
  max-width: 760px;
  margin: 0 auto;
  color: #3a4550;
  line-height: 1.8;
}

.legal-content p {
  margin-bottom: 20px;
}

.legal-content h2 {
  font-size: 1.25rem;
  color: #002f57;
  margin-top: 40px;
  margin-bottom: 12px;
  font-weight: 600;
}

.legal-content ul {
  margin: 0 0 20px 24px;
  padding: 0;
  list-style: disc;
}

.legal-content ul li {
  margin-bottom: 8px;
}

.legal-content a {
  color: #002f57;
  text-decoration: underline;
}

.legal-content a:hover {
  color: #30df7a;
}

.legal-content h3 {
  font-size: 1rem;
  color: #002f57;
  margin-top: 28px;
  margin-bottom: 8px;
  font-weight: 600;
}

.legal-notice {
  background: #f0f5f2;
  border-left: 4px solid #30df7a;
  padding: 16px 20px;
  border-radius: 0 8px 8px 0;
  margin: 24px 0;
  font-size: 0.92rem;
  color: #3a4550;
  line-height: 1.6;
}

.legal-notice a {
  color: #002f57;
  text-decoration: underline;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0 28px;
  font-size: 0.88rem;
  line-height: 1.5;
}

.legal-table th {
  background: #002f57;
  color: #fff9f3;
  text-align: left;
  padding: 10px 14px;
  font-weight: 600;
}

.legal-table td {
  padding: 10px 14px;
  border-bottom: 1px solid #e6e8ea;
  vertical-align: top;
  color: #3a4550;
}

.legal-table tbody tr:nth-child(even) td {
  background: #f8f9fa;
}

.legal-download {
  margin-top: 48px;
  margin-bottom: 8px;
  text-align: center;
}

.legal-footer-note {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid #e6e8ea;
  text-align: center;
  font-size: 0.82rem;
  color: #8a9aaa;
  line-height: 1.8;
}

.legal-footer-note a {
  color: #8a9aaa;
}

/* ========== FOOTER ========== */

.site-footer {
  background: #002f57;
  color: #b0bbc6;
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  margin-bottom: 16px;
}

.footer-logo:hover {
  opacity: 0.85;
}

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

.footer-tagline {
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 280px;
}

.footer-links h4 {
  color: #FFFFFF;
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul a {
  color: #b0bbc6;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer-links ul a:hover {
  color: #FFFFFF;
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

.footer-legal {
  color: #6a7a8a;
}

/* ========== RESPONSIVE ========== */

/* Nav overlay backdrop */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.nav-overlay.is-visible {
  display: block;
  opacity: 1;
}

/* ── Tablet (≤1024px) ── */
@media (max-width: 1024px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-card:last-child {
    grid-column: span 2;
    max-width: 500px;
    margin: 0 auto;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .fp-two-col {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .fp-form-card {
    position: static;
  }
}

/* ── Mobile (≤768px) ── */
@media (max-width: 768px) {
  /* Typography */
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  h3 { font-size: 1.2rem; }

  /* Container */
  .container {
    padding: 0 20px;
  }

  /* Mobile nav toggle */
  .mobile-menu-toggle {
    display: flex;
  }

  /* Slide-in mobile nav */
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    height: 100dvh;
    background: #FFFFFF;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.12);
    transition: right 0.32s ease;
    z-index: 999;
    padding: 88px 28px 40px;
    overflow-y: auto;
  }

  .main-nav.is-open {
    right: 0;
  }

  .nav-list {
    flex-direction: column;
    gap: 0;
    align-items: stretch;
  }

  .nav-list li {
    border-bottom: 1px solid #f0ece7;
  }

  .nav-list a {
    display: block;
    padding: 16px 0;
    font-size: 1rem;
    color: #002f57;
  }

  /* Mobile nav CTA */
  .nav-mobile-cta {
    display: block !important;
    margin-top: 28px;
    text-align: center;
    width: 100%;
  }

  /* Hero */
  .hero-section {
    min-height: 65vh;
  }

  .hero-headline {
    font-size: 2.1rem;
  }

  .hero-subheadline {
    font-size: 1rem;
  }

  .hero-content {
    padding: 96px 20px 56px;
  }

  /* Grids → single column */
  .pathways-grid,
  .audience-grid,
  .testimonials-grid,
  .team-grid,
  .steps-grid,
  .benefits-grid,
  .evidence-grid {
    grid-template-columns: 1fr;
  }

  .content-grid--two-col {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .fp-two-col {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .fp-form-card {
    position: static;
  }

  .fp-benefits-grid {
    grid-template-columns: 1fr;
  }

  /* Pricing */
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card:last-child {
    grid-column: span 1;
    max-width: none;
  }

  .pricing-footer-note {
    flex-direction: column;
    gap: 8px;
  }

  .pricing-footer-note__title {
    width: auto;
  }

  /* Forms */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .waitlist-submit-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .fp-form-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  /* Page hero */
  .page-hero {
    padding: 112px 0 48px;
  }

  .page-hero-title {
    font-size: 2rem;
  }

  .page-hero-subtitle {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.7rem;
  }

  .page-section {
    padding: 52px 0;
  }

  /* CTA section */
  .cta-card {
    padding: 40px 24px;
  }

  .cta-title {
    font-size: 1.5rem;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

  /* Rounded images don't overflow */
  .rounded-image {
    width: 100%;
  }

  /* Founding partner deposit block */
  .fp-deposit-block {
    padding-top: 28px;
  }
}

/* ── Small mobile (≤480px) ── */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  h1 { font-size: 1.85rem; }
  h2 { font-size: 1.45rem; }

  .hero-headline {
    font-size: 1.8rem;
  }

  .hero-subheadline {
    font-size: 0.95rem;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-ctas .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-buttons .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .page-hero-title {
    font-size: 1.75rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .btn-lg {
    padding: 14px 24px;
    font-size: 0.95rem;
  }

  .pricing-card {
    padding: 28px 20px;
  }

  .fp-form-card {
    padding: 28px 20px;
  }

  .fp-thankyou-card {
    padding: 32px 20px;
  }

  .step-card,
  .benefit-card,
  .audience-card {
    padding: 24px 20px;
  }
}

/* ── Very small (≤375px) ── */
@media (max-width: 375px) {
  h1 { font-size: 1.65rem; }
  h2 { font-size: 1.35rem; }

  .hero-headline {
    font-size: 1.6rem;
  }

  .page-hero-title {
    font-size: 1.55rem;
  }

  .container {
    padding: 0 14px;
  }
}
