/* ============================================================
   DynastyOS Design System — styles.css
   Version: 1.0.0
   Brand: Navy (#050A10) / Gold (#C9A962)
   Typography: Cormorant Garamond (display) + Inter (body)
   ============================================================ */

/* --- CSS Custom Properties --- */
:root {
  /* Brand Colors */
  --navy-darkest: #050A10;
  --navy-dark: #0A1628;
  --navy-mid: #132744;
  --navy-light: #1E3A5F;
  --navy-lighter: #2A4D7A;
  --gold: #C9A962;
  --gold-light: #D4BC7E;
  --gold-dark: #A88B45;
  --gold-muted: rgba(201, 169, 98, 0.15);

  /* Neutral */
  --white: #FFFFFF;
  --off-white: #F5F5F5;
  --gray-100: #E8E8E8;
  --gray-200: #D1D1D1;
  --gray-300: #A0A0A0;
  --gray-400: #707070;
  --gray-500: #505050;
  --gray-600: #333333;

  /* Semantic */
  --success: #2ECC71;
  --warning: #F39C12;
  --error: #E74C3C;
  --info: #3498DB;

  /* Glass */
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-bg-light: rgba(255, 255, 255, 0.85);
  --glass-border-light: rgba(0, 0, 0, 0.08);

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Sizing */
  --max-width: 1200px;
  --max-width-narrow: 800px;
  --header-height: 80px;
  --section-padding: 100px;
  --section-padding-mobile: 60px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.2);
  --shadow-gold: 0 4px 20px rgba(201, 169, 98, 0.3);

  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--gray-600);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  color: var(--gold);
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

ul, ol {
  list-style: none;
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  color: var(--navy-darkest);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }

.text-gold { color: var(--gold); }
.text-white { color: var(--white); }
.text-navy { color: var(--navy-darkest); }
.text-muted { color: var(--gray-400); }
.text-center { text-align: center; }

.kicker {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.subheadline {
  font-family: var(--font-body);
  font-size: clamp(1.0625rem, 2vw, 1.375rem);
  color: var(--gray-400);
  max-width: 700px;
  line-height: 1.7;
}

.section-headline {
  margin-bottom: 1.5rem;
}

.section-intro {
  max-width: 700px;
  margin: 0 auto 3rem;
  text-align: center;
}

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

.container--narrow {
  max-width: var(--max-width-narrow);
}

.section {
  padding: var(--section-padding) 0;
}

.section--navy {
  background: var(--navy-darkest);
  color: var(--white);
}

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

.section--navy .subheadline {
  color: rgba(255, 255, 255, 0.7);
}

.section--light {
  background: var(--off-white);
}

.section--gradient {
  background: linear-gradient(180deg, var(--navy-darkest) 0%, var(--navy-dark) 100%);
  color: var(--white);
}

.section--gradient h2,
.section--gradient h3 {
  color: var(--white);
}

/* Grid System */
.grid {
  display: grid;
  gap: 2rem;
}

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

@media (max-width: 1024px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--6 { grid-template-columns: repeat(3, 1fr); }
}

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

  .section {
    padding: var(--section-padding-mobile) 0;
  }
}

/* Flex Utilities */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.gap-4 { gap: 2rem; }

/* --- Header / Navigation --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  z-index: 1000;
  background: rgba(5, 10, 16, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201, 169, 98, 0.1);
  transition: background var(--transition-normal);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.header__logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.header__logo span {
  color: var(--white);
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.header__nav-link {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color var(--transition-fast);
  position: relative;
}

.header__nav-link:hover,
.header__nav-link.active {
  color: var(--gold);
}

.header__nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition-normal);
}

.header__nav-link:hover::after,
.header__nav-link.active::after {
  width: 100%;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Mega Menu */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--navy-dark);
  border-bottom: 2px solid var(--gold);
  padding: 2rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all var(--transition-normal);
}

.mega-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-menu__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.mega-menu__column-title {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(201, 169, 98, 0.2);
}

.mega-menu__link {
  display: block;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.8);
  padding: 0.4rem 0;
  transition: color var(--transition-fast);
}

.mega-menu__link:hover {
  color: var(--gold);
}

/* Mobile Menu */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
  transition: all var(--transition-normal);
}

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

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

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

@media (max-width: 1024px) {
  .header__nav,
  .header__actions {
    display: none;
  }

  .header__nav.mobile-open,
  .header__actions.mobile-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--navy-dark);
    padding: 1.5rem;
    border-bottom: 2px solid var(--gold);
  }

  .mobile-toggle {
    display: block;
  }
}

/* Sub-Navigation (Track-Specific) */
.sub-nav {
  background: var(--navy-dark);
  border-bottom: 1px solid rgba(201, 169, 98, 0.15);
  padding: 0;
  margin-top: var(--header-height);
}

.sub-nav__inner {
  display: flex;
  align-items: center;
  gap: 0;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.sub-nav__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
  padding: 0.875rem 1.25rem;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: all var(--transition-fast);
}

.sub-nav__link:hover,
.sub-nav__link.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

@media (max-width: 768px) {
  .sub-nav__inner {
    padding: 0 0.75rem;
  }

  .sub-nav__link {
    padding: 0.75rem 1rem;
    font-size: 0.8125rem;
  }
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-normal);
  text-decoration: none;
  white-space: nowrap;
}

.btn--gold {
  background: var(--gold);
  color: var(--navy-darkest);
  border-color: var(--gold);
}

.btn--gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--navy-darkest);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

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

.btn--outline:hover {
  background: var(--gold);
  color: var(--navy-darkest);
  transform: translateY(-2px);
}

.btn--white {
  background: var(--white);
  color: var(--navy-darkest);
  border-color: var(--white);
}

.btn--white:hover {
  background: var(--off-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--navy {
  background: var(--navy-darkest);
  color: var(--white);
  border-color: var(--navy-darkest);
}

.btn--navy:hover {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
  transform: translateY(-2px);
}

.btn--sm {
  font-size: 0.875rem;
  padding: 0.625rem 1.25rem;
}

.btn--lg {
  font-size: 1.125rem;
  padding: 1rem 2.5rem;
}

.btn--signin {
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  border-color: rgba(255, 255, 255, 0.3);
  font-size: 0.875rem;
  padding: 0.5rem 1.25rem;
}

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

/* --- Cards --- */
.card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.card--glass {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.card--glass:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 30px rgba(201, 169, 98, 0.15);
}

.card--glass-light {
  background: var(--glass-bg-light);
  border: 1px solid var(--glass-border-light);
  backdrop-filter: blur(10px);
}

.card--gold-accent {
  border-top: 3px solid var(--gold);
}

.card--navy {
  background: var(--navy-dark);
  color: var(--white);
}

.card--navy h3,
.card--navy h4 {
  color: var(--white);
}

.card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-muted);
  color: var(--gold);
  border-radius: var(--radius-sm);
  margin-bottom: 1.25rem;
  font-size: 1.25rem;
}

.card__title {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.card__text {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--gray-400);
}

.card--navy .card__text {
  color: rgba(255, 255, 255, 0.7);
}

/* --- Stats Bar --- */
.stats-bar {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  padding: 2rem 0;
}

.stat {
  text-align: center;
}

.stat__number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.stat__label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 0.5rem;
}

.section--light .stat__label {
  color: var(--gray-400);
}

/* --- Trust Signal Strip --- */
.trust-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding: 1rem 0;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.6);
}

.trust-strip__item {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.trust-strip__divider {
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
  .trust-strip {
    gap: 0.75rem;
  }

  .trust-strip__divider {
    display: none;
  }
}

/* --- Hero Section --- */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--header-height) + 3rem) 1.5rem 3rem;
  background: var(--navy-darkest);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(201, 169, 98, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(30, 58, 95, 0.3) 0%, transparent 50%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero__subheadline {
  font-size: clamp(1.0625rem, 2vw, 1.375rem);
  color: rgba(255, 255, 255, 0.8);
  max-width: 700px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.hero__ctas {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

.hero__scroll-indicator svg {
  width: 24px;
  height: 24px;
  color: rgba(255, 255, 255, 0.4);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}

/* Hero variant for track landing pages */
.hero--track {
  min-height: 70vh;
  padding-top: calc(var(--header-height) + 60px + 3rem);
}

/* --- Two-Path Section --- */
.two-path {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.two-path__card {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-mid) 100%);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border-top: 3px solid var(--gold);
  transition: all var(--transition-normal);
}

.two-path__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(201, 169, 98, 0.15);
}

.two-path__card ul {
  margin: 1.25rem 0;
}

.two-path__card li {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.8);
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.two-path__card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.two-path__stats {
  display: flex;
  gap: 1.5rem;
  margin: 1.5rem 0;
  padding: 1rem 0;
  border-top: 1px solid rgba(201, 169, 98, 0.2);
  border-bottom: 1px solid rgba(201, 169, 98, 0.2);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

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

/* --- Comparison Table --- */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.comparison-table thead {
  background: var(--navy-darkest);
}

.comparison-table th {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
  padding: 1rem 1.25rem;
  text-align: center;
}

.comparison-table th:first-child {
  text-align: left;
}

.comparison-table th.highlight {
  background: var(--gold);
  color: var(--navy-darkest);
  font-size: 1rem;
}

.comparison-table td {
  padding: 0.875rem 1.25rem;
  font-size: 0.9375rem;
  text-align: center;
  border-bottom: 1px solid var(--gray-100);
}

.comparison-table td:first-child {
  text-align: left;
  font-weight: 500;
}

.comparison-table td.highlight {
  background: var(--gold-muted);
  font-weight: 600;
}

.comparison-table tbody tr:hover {
  background: var(--off-white);
}

.check { color: var(--success); font-weight: 700; }
.cross { color: var(--error); font-weight: 700; }
.partial { color: var(--warning); font-weight: 700; }

/* --- Testimonials --- */
.testimonial {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 2rem;
  position: relative;
}

.testimonial::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--gold);
  position: absolute;
  top: 0.5rem;
  left: 1.5rem;
  line-height: 1;
  opacity: 0.5;
}

.testimonial__text {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.25rem;
  font-style: italic;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-weight: 700;
  font-size: 1.125rem;
}

.testimonial__name {
  font-weight: 600;
  color: var(--white);
  font-size: 0.9375rem;
}

.testimonial__role {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
}

/* --- Pricing Cards --- */
.pricing-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--gray-100);
  transition: all var(--transition-normal);
  position: relative;
}

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

.pricing-card--featured {
  border-color: var(--gold);
  transform: scale(1.05);
}

.pricing-card--featured:hover {
  transform: scale(1.05) translateY(-6px);
}

.pricing-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy-darkest);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.375rem 1.25rem;
  border-radius: 20px;
}

.pricing-card__name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.pricing-card__price {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--navy-darkest);
  line-height: 1;
}

.pricing-card__price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--gray-400);
}

.pricing-card__desc {
  font-size: 0.875rem;
  color: var(--gray-400);
  margin: 0.5rem 0 1.5rem;
}

.pricing-card__features {
  text-align: left;
  margin: 1.5rem 0;
}

.pricing-card__features li {
  font-size: 0.9375rem;
  padding: 0.5rem 0;
  padding-left: 1.75rem;
  position: relative;
  border-bottom: 1px solid var(--gray-100);
}

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

.pricing-card__features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
}

/* --- FAQ / Accordion --- */
.accordion {
  max-width: var(--max-width-narrow);
  margin: 0 auto;
}

.accordion__item {
  border-bottom: 1px solid var(--gray-100);
}

.accordion__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.25rem 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--navy-darkest);
  text-align: left;
  transition: color var(--transition-fast);
}

.accordion__trigger:hover {
  color: var(--gold);
}

.accordion__trigger::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--gold);
  transition: transform var(--transition-normal);
}

.accordion__item.active .accordion__trigger::after {
  content: '−';
}

.accordion__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal);
}

.accordion__content-inner {
  padding: 0 0 1.25rem;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--gray-400);
}

.section--navy .accordion__trigger {
  color: var(--white);
}

.section--navy .accordion__content-inner {
  color: rgba(255, 255, 255, 0.7);
}

/* --- Forms --- */
.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-600);
  margin-bottom: 0.375rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  background: var(--white);
  transition: border-color var(--transition-fast);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 169, 98, 0.15);
}

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

/* --- Footer --- */
.footer {
  background: var(--navy-darkest);
  color: rgba(255, 255, 255, 0.65);
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(201, 169, 98, 0.15);
}

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

.footer__brand {
  max-width: 300px;
}

.footer__brand-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer__brand-desc {
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.footer__social {
  display: flex;
  gap: 0.75rem;
}

.footer__social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.875rem;
  transition: all var(--transition-fast);
}

.footer__social a:hover {
  background: var(--gold);
  color: var(--navy-darkest);
}

.footer__column-title {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
}

.footer__link {
  display: block;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
  padding: 0.3rem 0;
  transition: color var(--transition-fast);
}

.footer__link:hover {
  color: var(--gold);
}

.footer__bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8125rem;
}

.footer__legal-links {
  display: flex;
  gap: 1.5rem;
}

@media (max-width: 768px) {
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

/* --- Process Steps --- */
.process-steps {
  display: flex;
  justify-content: space-between;
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 40px;
  right: 40px;
  height: 2px;
  background: var(--gold-muted);
}

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

.process-step__number {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy-darkest);
  border: 2px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: 50%;
  margin: 0 auto 1rem;
}

.process-step__title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.process-step__desc {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.55);
  max-width: 140px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .process-steps {
    flex-direction: column;
    gap: 1.5rem;
  }

  .process-steps::before {
    top: 0;
    bottom: 0;
    left: 28px;
    right: auto;
    width: 2px;
    height: auto;
  }

  .process-step {
    display: flex;
    align-items: center;
    text-align: left;
    gap: 1.25rem;
  }

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

  .process-step__desc {
    max-width: none;
  }
}

/* --- Funding Progress Bar --- */
.funding-bar {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  height: 10px;
  overflow: hidden;
  margin: 0.5rem 0;
}

.funding-bar__fill {
  height: 100%;
  border-radius: 100px;
  background: linear-gradient(90deg, var(--gold-dark) 0%, var(--gold) 100%);
  transition: width 1s ease;
}

.funding-bar__fill--complete {
  background: var(--success);
}

/* --- Scroll Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* --- Badge / Tag --- */
.badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
}

.badge--gold {
  background: var(--gold-muted);
  color: var(--gold);
}

.badge--success {
  background: rgba(46, 204, 113, 0.15);
  color: var(--success);
}

/* --- Divider --- */
.divider {
  width: 60px;
  height: 3px;
  background: var(--gold);
  border: none;
  margin: 1.5rem 0;
}

.divider--center {
  margin-left: auto;
  margin-right: auto;
}

/* --- Skip Link (accessibility) --- */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--gold);
  color: var(--navy-darkest);
  padding: 0.5rem 1rem;
  font-weight: 600;
  z-index: 9999;
  transition: top var(--transition-fast);
}

.skip-link:focus {
  top: 0;
}

/* --- Reduced Motion (Accessibility) --- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* --- High Contrast (Accessibility) --- */
@media (prefers-contrast: high) {
  :root {
    --glass-bg: rgba(255, 255, 255, 0.15);
    --glass-border: rgba(255, 255, 255, 0.3);
  }
}

/* --- Print --- */
@media print {
  .header,
  .footer,
  .sub-nav,
  .hero__scroll-indicator,
  .skip-link,
  .btn,
  .cta-section {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
    font-size: 12pt;
    line-height: 1.5;
  }

  .hero {
    min-height: auto;
    padding: 2rem 0;
    background: none !important;
    color: #000;
  }

  .section {
    padding: 1.5rem 0;
    break-inside: avoid;
  }

  a[href]::after {
    content: " (" attr(href) ")";
    font-size: 0.8em;
    color: #666;
  }

  a[href^="#"]::after,
  a[href^="javascript"]::after {
    content: "";
  }

  h1, h2, h3, h4 {
    color: #000;
    break-after: avoid;
  }

  img {
    max-width: 100% !important;
    break-inside: avoid;
  }
}
