:root {
      --ink: #0d1b2a;
      --ink-2: #1f2a3a;
      --muted: #5e6c7f;
      --paper: #f5f2ee;
      --cream: #fdfbf8;
      --sun: #f9b267;
      --sage: #c7d9b9;
      --ocean: #2b78c5;
      --accent: #b52121;
      --radius: 24px;
      --shadow: 0 18px 45px rgba(15, 24, 38, 0.12);
      --shadow-soft: 0 10px 30px rgba(15, 24, 38, 0.08);
      --shadow-deep: 0 24px 55px rgba(6, 10, 20, 0.18);
      --ease-out-premium: cubic-bezier(0.22, 1, 0.36, 1);
      --section-gap: clamp(56px, 8vw, 88px);
    }

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

    body {
      font-family: "Manrope", "Segoe UI", system-ui, -apple-system, sans-serif;
      font-size: clamp(16px, 0.24vw + 15px, 18px);
      background: radial-gradient(circle at 10% -5%, rgba(181, 33, 33, 0.08), transparent 32%),
                  radial-gradient(circle at 90% 0%, rgba(43, 120, 197, 0.1), transparent 35%),
                  var(--paper);
      color: var(--ink);
      line-height: 1.6;
      overflow-x: hidden;
    }

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 3px 3px, 3px 3px;
  opacity: 0.15;
  z-index: -2;
}

    h1, h2, h3, h4 {
      font-family: "Fraunces", "Times New Roman", serif;
      color: var(--ink);
    }

    a {
      color: inherit;
      text-decoration: none;
    }

.skip-link {
  position: fixed;
  top: 8px;
  left: 10px;
  z-index: 100;
  transform: translateY(-160%);
  background: #0b0f17;
  color: #f8fafc;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: var(--shadow-soft);
  transition: transform 0.18s ease;
}

.skip-link:focus-visible {
  transform: translateY(0);
}

:focus-visible {
  outline: 2px solid #b52121;
  outline-offset: 2px;
}

.aurora {
  position: fixed;
  inset: -20% 0 auto 0;
  height: 60vh;
  background: radial-gradient(circle at 20% 30%, rgba(249, 178, 103, 0.35), transparent 55%),
              radial-gradient(circle at 80% 10%, rgba(43, 120, 197, 0.35), transparent 55%),
              radial-gradient(circle at 60% 80%, rgba(199, 217, 185, 0.4), transparent 50%);
  filter: blur(40px);
  z-index: -1;
  transform: translateY(0px);
  transition: transform 0.2s ease-out;
  will-change: transform;
}

    .container {
      width: min(1140px, 92vw);
      margin: 0 auto;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 20;
      backdrop-filter: blur(26px);
      -webkit-backdrop-filter: blur(26px);
      background: linear-gradient(120deg, rgba(11, 15, 23, 0.75), rgba(26, 34, 51, 0.78));
      border-bottom: 1px solid rgba(255, 255, 255, 0.12);
      color: #f8fafc;
      box-shadow: 0 10px 30px rgba(2, 6, 23, 0.35);
      transition: background 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
      will-change: backdrop-filter, background;
    }

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
  transition: padding 0.22s ease, gap 0.22s ease;
}

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

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--ocean), var(--sun));
  display: grid;
  place-items: center;
  color: white;
  font-weight: 700;
  letter-spacing: 1px;
}

.brand-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
  background: white;
  border-radius: 14px;
  padding: 4px;
  box-shadow: var(--shadow-soft);
  transition: width 0.22s ease, height 0.22s ease, border-radius 0.22s ease;
}

    .brand-text {
      display: flex;
      flex-direction: column;
    }

    .brand-title {
      font-weight: 700;
      color: #f8fafc;
      transition: font-size 0.22s ease;
    }

.brand-subtitle {
  font-size: 0.85rem;
  color: rgba(248, 250, 252, 0.7);
  max-height: 24px;
  overflow: hidden;
  transition: opacity 0.22s ease, max-height 0.22s ease, font-size 0.22s ease;
}

.nav {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
  color: rgba(248, 250, 252, 0.82);
}

.nav a {
  position: relative;
  transition: color 0.2s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: #f8fafc;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.nav a:hover::after {
  transform: scaleX(1);
}

.nav a:hover {
  color: #ffffff;
}

.nav a.is-active {
  color: #ffffff;
}

.nav a.is-active::after {
  transform: scaleX(1);
}

.nav-mobile {
  display: none;
  position: relative;
}

.nav-mobile summary {
  list-style: none;
  cursor: pointer;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(248, 250, 252, 0.12);
  border: 1px solid rgba(248, 250, 252, 0.25);
  font-weight: 600;
  color: #f8fafc;
  text-align: center;
  min-width: 120px;
  transition: padding 0.22s ease, font-size 0.22s ease, min-width 0.22s ease;
}

.nav-mobile summary::-webkit-details-marker {
  display: none;
}

.nav-mobile-panel {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: calc(100% + 10px);
  background: #0f172a;
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 14px;
  display: grid;
  gap: 10px;
  min-width: 240px;
  z-index: 30;
  text-align: center;
}

.nav-mobile-panel a {
  color: #f8fafc;
  font-weight: 600;
  border-radius: 10px;
  padding: 6px 8px;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-mobile-panel a.is-active {
  background: rgba(181, 33, 33, 0.2);
  color: #ffffff;
}

.cta {
  padding: 10px 18px;
  border-radius: 999px;
  background: #0b0f17;
  color: #f8fafc;
  font-weight: 700;
  transition: transform 0.22s var(--ease-out-premium), box-shadow 0.22s var(--ease-out-premium), background 0.22s ease;
}

.cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-deep);
}

.back-to-top {
  --progress-angle: 0deg;
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: linear-gradient(140deg, rgba(7, 10, 18, 0.82), rgba(15, 23, 42, 0.62));
  color: #f8fafc;
  font-weight: 800;
  letter-spacing: 0.4px;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(2, 6, 23, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px) saturate(115%);
  -webkit-backdrop-filter: blur(12px) saturate(115%);
  opacity: 0;
  transform: translateY(8px) scale(0.92);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
  isolation: isolate;
}

.back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.back-to-top::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: inherit;
  background: conic-gradient(
    from -90deg,
    #b52121 var(--progress-angle),
    rgba(255, 255, 255, 0.18) 0deg
  );
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 4px), #000 calc(100% - 3px));
  mask: radial-gradient(farthest-side, transparent calc(100% - 4px), #000 calc(100% - 3px));
  pointer-events: none;
  z-index: -1;
}

.back-to-top > span {
  position: relative;
  z-index: 1;
}

.back-to-top:hover {
  border-color: rgba(181, 33, 33, 0.7);
}

.back-to-top:focus-visible {
  outline: 2px solid rgba(181, 33, 33, 0.9);
  outline-offset: 3px;
}

    .hero {
      padding: 72px 0 44px;
      position: relative;
      isolation: isolate;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0 0 auto 0;
      height: min(76vh, 700px);
      background: radial-gradient(circle at 14% 18%, rgba(181, 33, 33, 0.12), transparent 42%),
                  radial-gradient(circle at 84% 24%, rgba(43, 120, 197, 0.12), transparent 44%);
      z-index: -1;
      pointer-events: none;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 40px;
      align-items: center;
    }

    .hero-copy {
      padding-top: clamp(14px, 1.8vw, 30px);
    }

    .hero-media {
      width: 100%;
      align-self: start;
      margin-top: 4px;
    }

    .hero-media img {
      width: 100%;
      height: auto;
      display: block;
      border-radius: 24px;
      box-shadow: var(--shadow-deep);
      opacity: 0;
      transform: translateY(10px);
      animation: banner-fade 0.9s ease-out 0.45s both;
    }

    @keyframes banner-fade {
      to {
        opacity: 0.75;
        transform: translateY(0);
      }
    }

    @media (min-width: 960px) {
      .hero-grid {
        grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
      }
    }

    .hero-copy h1 {
      font-size: clamp(2.2rem, 2vw + 2rem, 3.6rem);
      margin-bottom: 14px;
      line-height: 1.08;
      max-width: 22ch;
      min-height: 2.5em;
      text-wrap: pretty;
    }

    .hero-title {
      animation: hero-fade-in 0.9s ease-out both;
    }

    .typewriter {
      position: relative;
      white-space: normal;
    }

    .typewriter.is-typing {
      text-wrap: normal;
    }

    .typewriter.is-complete {
      text-wrap: balance;
    }

    .typewriter::after {
      content: "";
      display: inline-block;
      width: 2px;
      height: 1em;
      margin-left: 6px;
      background: currentColor;
      animation: blink 0.9s steps(1) infinite;
      vertical-align: -2px;
    }

    .typewriter.is-complete::after {
      animation: blink 0.9s steps(1) infinite;
      opacity: 1;
    }

    @keyframes blink {
      50% {
        opacity: 0;
      }
    }

    @keyframes hero-fade-in {
      0% {
        opacity: 0;
        transform: translateY(18px);
      }
      100% {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .hero-eyebrow {
      animation: hero-fade-in 0.7s ease-out both;
    }

    .hero-lede {
      animation: hero-fade-in 0.9s ease-out 0.12s both;
    }

    .hero-actions-animated {
      animation: hero-fade-in 0.9s ease-out 0.22s both;
    }

    .hero-strip {
      animation: hero-fade-in 0.9s ease-out 0.32s both;
    }

    @media (prefers-reduced-motion: reduce) {
      .hero-title,
      .hero-eyebrow,
      .hero-lede,
      .hero-actions-animated,
      .hero-strip,
      .typewriter::after {
        animation: none;
      }
      .back-to-top {
        transition: none;
      }
      .countdown {
        animation: none;
        opacity: 1;
        transform: none;
      }
      .info-strip {
        animation: none;
      }
    }

.reveal {
  opacity: 0;
  transform: translateY(18px) scale(0.98);
  transition: opacity 0.7s var(--ease-out-premium), transform 0.7s var(--ease-out-premium);
  will-change: opacity, transform;
}

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

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

    .eyebrow {
      text-transform: uppercase;
      letter-spacing: 3px;
      font-weight: 700;
      font-size: 0.75rem;
      color: var(--accent);
      margin-bottom: 10px;
    }

    .lede {
      font-size: 1.1rem;
      color: var(--ink-2);
    }

.hero-actions {
  display: flex;
  gap: 14px;
  margin: 24px 0;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}

.hero-actions-full {
  margin-top: 16px;
}

.hero-actions a {
  min-width: 190px;
  text-align: center;
}

.hero-actions .cta {
  background: var(--ink);
  box-shadow: var(--shadow-soft);
}


.primary {
  background: var(--ink);
  color: white;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: var(--shadow-soft);
}

.ghost {
  background: var(--ink);
  color: white;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: var(--shadow-soft);
}

    .info-strip {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 18px;
      margin-top: 24px;
      background: linear-gradient(145deg, rgba(8, 12, 22, 0.72), rgba(17, 24, 39, 0.58));
      padding: 18px;
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      border: 1px solid rgba(255, 255, 255, 0.14);
      backdrop-filter: blur(14px) saturate(115%);
      -webkit-backdrop-filter: blur(14px) saturate(115%);
    }

    .info-strip .label {
      font-size: 0.8rem;
      color: rgba(248, 250, 252, 0.74);
      display: block;
    }

    .info-strip .value {
      font-weight: 700;
      color: #ffffff;
    }

    .hero-panel {
      display: grid;
      gap: 20px;
    }

    .panel-card {
      background: white;
      padding: 24px;
      border-radius: var(--radius);
      box-shadow: var(--shadow);
    }

.panel-card.highlight {
  border: 1px solid rgba(235, 90, 60, 0.2);
  background: linear-gradient(145deg, rgba(235, 90, 60, 0.08), rgba(255, 255, 255, 0.9));
}

.checklist-section {
  background: linear-gradient(120deg, rgba(43, 120, 197, 0.12), rgba(235, 90, 60, 0.08));
}

.countdown {
  margin: 24px 0 32px;
  padding: 20px;
  border-radius: var(--radius);
  background: linear-gradient(120deg, rgba(120, 10, 20, 0.85), rgba(20, 24, 38, 0.9), rgba(180, 20, 40, 0.8));
  background-size: 200% 200%;
  animation: gradient-shift 7s ease-in-out infinite;
  color: #f8fafc;
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
  opacity: 0;
  transform: translateY(14px);
  animation: hero-fade-in 0.9s ease-out 0.35s both, gradient-shift 7s ease-in-out infinite;
}

.countdown-head h3 {
  font-family: "Fraunces", "Times New Roman", serif;
  font-size: 1.3rem;
  color: #ffffff;
  font-weight: 700;
}

.countdown-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 14px;
}

.countdown-item {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 14px;
  text-align: center;
}

.countdown-value {
  font-size: 2rem;
  font-weight: 700;
  display: block;
}

.countdown-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(248, 250, 252, 0.7);
}

.checklist-card {
  display: grid;
  gap: 18px;
}

.checklist-card h3 {
  color: #b52121;
  font-weight: 700;
}

.callout {
  margin-top: 12px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(15, 27, 42, 0.04);
}

.callout h4 {
  margin-bottom: 8px;
}

.meeting {
  display: grid;
  gap: 4px;
  padding: 10px 0;
  border-top: 1px solid rgba(31, 42, 58, 0.08);
}

.meeting:first-of-type {
  border-top: none;
}

.meeting-date {
  position: relative;
  display: inline-block;
  width: fit-content;
  max-width: max-content;
  background-image: linear-gradient(rgba(253, 224, 71, 0.45), rgba(253, 224, 71, 0.45));
  background-size: 0% 100%;
  background-repeat: no-repeat;
  padding: 0 2px 2px;
  animation: highlight-reveal 0.8s ease forwards;
  animation-delay: 0.3s;
}

@keyframes highlight-reveal {
  to {
    background-size: 100% 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .meeting-date {
    animation: none;
    background-size: 100% 100%;
  }
}


.checklist-stack {
  display: grid;
  gap: 20px;
}

.checklist-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 24px;
  align-items: start;
}

.checklist-card {
  max-width: 720px;
}

.checklist-card-todo {
  max-width: 520px;
  justify-self: end;
  align-self: center;
}

@media (max-width: 900px) {
  .checklist-layout {
    grid-template-columns: 1fr;
  }
  .checklist-card,
  .checklist-card-todo {
    max-width: 100%;
    justify-self: stretch;
  }
}

.calendar-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
  justify-content: center;
}

.calendar-btn {
  background: #0b0f17;
  color: #f8fafc;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid rgba(239, 68, 68, 0.8);
}

.calendar-btn.outline {
  background: #111827;
  border: 2px solid rgba(239, 68, 68, 0.6);
  color: #f8fafc;
}

@media (max-width: 640px) {
  .calendar-btn {
    width: 100%;
    justify-content: center;
    font-size: 0.85rem;
    padding: 8px 12px;
  }
}
.checklist {
  list-style: none;
  display: grid;
  gap: 14px;
}

.checklist li {
  display: block;
}

.check-item {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: start;
  cursor: pointer;
  border-radius: 14px;
  padding: 10px 12px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.check-item:hover {
  background: rgba(31, 42, 58, 0.04);
  transform: translateY(-1px);
}

.check-item input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.checklist .check {
  width: 24px;
  height: 24px;
  border-radius: 8px;
  border: 2px solid rgba(31, 42, 58, 0.25);
  background: white;
  margin-top: 4px;
  display: grid;
  place-items: center;
  transition: all 0.2s ease;
}

.check-item input:checked + .check {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 8px 16px rgba(235, 90, 60, 0.25);
}

.check-item input:checked + .check::after {
  content: "";
  width: 10px;
  height: 6px;
  border: 2px solid #fff;
  border-top: none;
  border-right: none;
  transform: rotate(-45deg);
  margin-bottom: 2px;
}

.check-item input:checked ~ .check-copy strong {
  color: var(--accent);
}

.checklist p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-top: 4px;
}

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

main > .section:not(.hero) {
  content-visibility: auto;
  contain-intrinsic-size: 900px;
}

    .section + .section::before {
      content: "";
      position: absolute;
      left: 50%;
      top: 0;
      transform: translateX(-50%);
      width: min(1120px, 92vw);
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(31, 42, 58, 0.14), transparent);
    }

    .section.alt {
      background: var(--cream);
    }

    .section-title {
      margin-bottom: 22px;
    }

    .section-title h2 {
      font-size: clamp(1.95rem, 1.25vw + 1.45rem, 3.05rem);
      line-height: 1.14;
      letter-spacing: -0.012em;
      text-wrap: balance;
    }

    .section-title .lede {
      font-size: clamp(1rem, 0.32vw + 0.95rem, 1.16rem);
      max-width: 68ch;
    }

    .section-title h2,
    .section-title h3 {
      color: #b52121;
    }

    .grid-3 {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 20px;
    }

    .grid-2 {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 24px;
    }

    .whatif-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 16px;
    }

    .whatif-card {
      display: flex;
      flex-direction: column;
      gap: 10px;
      padding: 20px;
    }

    .whatif-card h3 {
      color: #b52121;
      line-height: 1.25;
      margin: 0;
      font-size: 1.18rem;
    }

    .whatif-card p {
      margin: 0;
      line-height: 1.55;
    }

    .whatif-card ul {
      margin: 0;
      padding-left: 20px;
      display: grid;
      gap: 6px;
      color: var(--ink);
      line-height: 1.45;
    }

    .whatif-card .whatif-cost {
      margin-top: auto;
      padding-top: 10px;
      border-top: 1px solid rgba(31, 42, 58, 0.12);
    }

    @media (min-width: 1280px) {
      .whatif-grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
      }
      .whatif-card h3 {
        font-size: 1.06rem;
      }
      .whatif-card,
      .whatif-card p,
      .whatif-card li {
        font-size: 0.92rem;
      }
    }

    .card {
      background: white;
      padding: 26px;
      border-radius: var(--radius);
      box-shadow: var(--shadow-soft);
      transition: transform 0.24s var(--ease-out-premium), box-shadow 0.24s var(--ease-out-premium), border-color 0.24s ease;
      border: 1px solid transparent;
    }

    .card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow);
      border-color: rgba(31, 42, 58, 0.08);
    }

    .card.media {
      display: grid;
      gap: 16px;
    }

    .media-block {
      height: 200px;
      border-radius: 20px;
      background: linear-gradient(135deg, rgba(43, 120, 197, 0.2), rgba(249, 178, 103, 0.35));
      display: grid;
      place-items: center;
      color: var(--ink-2);
      font-weight: 600;
    }

    .timeline {
      display: grid;
      gap: 18px;
    }

    .timeline-step {
      display: grid;
      grid-template-columns: 48px 1fr;
      gap: 16px;
      align-items: start;
      background: white;
      padding: 20px;
      border-radius: var(--radius);
      box-shadow: var(--shadow-soft);
    }

    .timeline-step span {
      width: 42px;
      height: 42px;
      border-radius: 14px;
      background: var(--sage);
      display: grid;
      place-items: center;
      font-weight: 700;
    }

    .stat {
      display: flex;
      justify-content: space-between;
      padding: 12px 0;
      border-bottom: 1px solid rgba(31, 42, 58, 0.08);
    }

    .stat:last-child {
      border-bottom: none;
    }

    .stat-label {
      color: var(--muted);
    }

    .stat-value {
      font-weight: 700;
    }

    .simple-list {
      list-style: none;
      display: grid;
      gap: 10px;
      margin-top: 14px;
    }

    .faq {
      display: grid;
      gap: 12px;
    }

.faq details {
  background: rgba(11, 15, 23, 0.78);
  padding: 18px 22px;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(2, 6, 23, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.faq summary {
  font-weight: 600;
  cursor: pointer;
  color: #f8fafc;
}

.faq details {
  border: 1px solid rgba(31, 42, 58, 0.08);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.faq details[open] {
  box-shadow: 0 20px 45px rgba(7, 12, 24, 0.24);
  transform: translateY(-1px);
}

.faq details p {
  margin-top: 10px;
  color: rgba(248, 250, 252, 0.78);
}

.faq summary::marker {
  color: var(--accent);
}

.cost-summary {
  margin-top: 32px;
  padding: 24px;
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow-soft);
}

.cost-summary h3 {
  margin-bottom: 12px;
}

.summary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.summary-grid .label {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 6px;
}

.cost-summary .summary-grid > div:nth-child(2) strong {
  color: #15803d;
}

.cost-summary .summary-grid > div:nth-child(3) strong {
  color: #b52121;
}

.docs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  align-items: stretch;
}

@media (min-width: 1200px) {
  .docs-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

.purpose-section {
  background: linear-gradient(180deg, rgba(253, 251, 248, 0.9), rgba(245, 242, 238, 0.9));
}

.purpose-card {
  display: grid;
  gap: 16px;
}

.icon-list {
  list-style: none;
  display: grid;
  gap: 14px;
}

.icon-list li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: start;
}

.icon-list .icon {
  width: 28px;
  height: 28px;
  border-radius: 10px;
  background: rgba(43, 120, 197, 0.12);
  color: var(--ocean);
  display: grid;
  place-items: center;
  font-weight: 700;
  margin-top: 4px;
}

.icon-list li strong {
  display: block;
}

.icon-list li p {
  color: var(--muted);
  margin-top: 4px;
}

.rationale {
  background: var(--cream);
}

.rationale-intro {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: 32px;
}

.highlight-stat {
  background: white;
  padding: 18px;
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 6px;
}

.highlight-stat strong {
  font-size: 1.4rem;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
  margin-bottom: 32px;
}

@media (min-width: 1200px) {
  .project-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

.project-card {
  background: rgba(7, 8, 12, 0.68);
  padding: 20px;
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(3, 4, 8, 0.35);
  display: grid;
  gap: 10px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(22px);
}

.project-card.reveal {
  opacity: 0;
  transform: translateX(-34px) scale(0.985);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.project-card.reveal.is-visible {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.project-card.reveal:nth-child(1) { transition-delay: 0.05s; }
.project-card.reveal:nth-child(2) { transition-delay: 0.1s; }
.project-card.reveal:nth-child(3) { transition-delay: 0.15s; }
.project-card.reveal:nth-child(4) { transition-delay: 0.2s; }
.project-card.reveal:nth-child(5) { transition-delay: 0.25s; }

.project-card p {
  color: var(--muted);
}

.project-card::before {
  content: "";
  position: absolute;
  inset: -30%;
  background: radial-gradient(circle at 20% 20%, rgba(30, 36, 52, 0.9), rgba(8, 10, 16, 0.2)),
              radial-gradient(circle at 80% 30%, rgba(18, 22, 36, 0.9), rgba(6, 8, 14, 0.2)),
              radial-gradient(circle at 50% 80%, rgba(24, 30, 46, 0.9), rgba(6, 8, 14, 0.2));
  background-size: 220% 220%;
  animation: gradient-shift 4.2s ease-in-out infinite;
  opacity: 0.95;
  filter: blur(28px);
  z-index: 0;
}

.project-card > * {
  position: relative;
  z-index: 1;
}

.project-card:nth-child(2)::before {
  animation-duration: 4.6s;
  background-image: radial-gradient(circle at 30% 30%, rgba(26, 32, 48, 0.95), rgba(6, 8, 14, 0.2)),
                    radial-gradient(circle at 70% 60%, rgba(16, 20, 36, 0.9), rgba(6, 8, 14, 0.2));
}

.project-card:nth-child(3)::before {
  animation-duration: 5s;
  background-image: radial-gradient(circle at 20% 70%, rgba(32, 38, 54, 0.95), rgba(6, 8, 14, 0.2)),
                    radial-gradient(circle at 80% 20%, rgba(18, 22, 38, 0.9), rgba(6, 8, 14, 0.2));
}

.project-card:nth-child(4)::before {
  animation-duration: 5.4s;
  background-image: radial-gradient(circle at 25% 25%, rgba(26, 32, 46, 0.95), rgba(6, 8, 14, 0.2)),
                    radial-gradient(circle at 75% 75%, rgba(20, 26, 40, 0.9), rgba(6, 8, 14, 0.2));
}

.project-card:nth-child(5)::before {
  animation-duration: 5.8s;
  background-image: radial-gradient(circle at 15% 40%, rgba(28, 34, 50, 0.95), rgba(6, 8, 14, 0.2)),
                    radial-gradient(circle at 85% 50%, rgba(16, 20, 36, 0.9), rgba(6, 8, 14, 0.2));
}

.project-card {
  color: #f8fafc;
}

.project-card h3 {
  color: #f8fafc;
  font-weight: 800;
  line-height: 1.25;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.28);
  padding-bottom: 0.55rem;
  border-bottom: 2px solid rgba(181, 33, 33, 0.55);
}

.project-card p {
  color: rgba(248, 250, 252, 0.85);
}

.project-label {
  display: block;
  width: max-content;
  margin: 0 0 0.45rem 0;
  padding: 0.12rem 0.52rem;
  border-radius: 999px;
  background: rgba(181, 33, 33, 0.24);
  border: 1px solid rgba(181, 33, 33, 0.62);
  color: #ffffff;
  font-weight: 800;
  letter-spacing: 0.01em;
}

@keyframes gradient-shift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .project-card::before {
    animation: none;
  }
}

.funding {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
  align-items: start;
  margin-bottom: 32px;
}

.funding-callout {
  background: linear-gradient(120deg, rgba(120, 10, 20, 0.9), rgba(180, 20, 40, 0.85), rgba(235, 90, 60, 0.75));
  background-size: 200% 200%;
  animation: gradient-shift 6s ease-in-out infinite;
  padding: 20px;
  border-radius: 20px;
  display: grid;
  gap: 10px;
  color: #f8fafc;
}

.funding-callout strong {
  font-size: 1.1rem;
}

.funding-callout .label {
  color: rgba(248, 250, 252, 0.8);
}

.funding-callout p {
  color: rgba(248, 250, 252, 0.88);
}

.photos-section {
  background: var(--cream);
}

.carousel {
  position: relative;
  margin-top: 18px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
}

.carousel-viewport {
  overflow: hidden;
  border-radius: 22px;
  box-shadow: var(--shadow-deep);
  background: #0b0f17;
}

.carousel-track {
  display: flex;
  transition: transform 0.6s ease;
}

.carousel-slide {
  min-width: 100%;
  position: relative;
  aspect-ratio: 16 / 9;
  background: #0b0f17;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: none;
  background: rgba(15, 23, 42, 0.9);
  color: #f8fafc;
  font-size: 1.6rem;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, background 0.2s ease;
}

.carousel-btn:hover {
  transform: translateY(-1px);
  background: rgba(15, 23, 42, 1);
}

.carousel-progress {
  margin-top: 12px;
  height: 6px;
  border-radius: 999px;
  background: rgba(31, 42, 58, 0.12);
  overflow: hidden;
}

.carousel-progress span {
  display: block;
  height: 100%;
  width: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #b52121, #15803d);
  transform-origin: left center;
  transform: scaleX(0);
  transition: transform 0.3s var(--ease-out-premium);
}

@media (max-width: 640px) {
  .carousel {
    grid-template-columns: 1fr;
  }
  .carousel-btn {
    justify-self: center;
  }
}

.table-card {
  background: white;
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.table-wrap {
  width: 100%;
  overflow-x: auto;
  border-radius: 14px;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
}

th, td {
  text-align: left;
  padding: 12px 10px;
  border-bottom: 1px solid rgba(31, 42, 58, 0.08);
  font-size: 0.95rem;
}

thead th {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
  position: sticky;
  top: 0;
  z-index: 2;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

tfoot th {
  font-weight: 700;
  color: #b52121;
}

tfoot th:nth-child(3) {
  color: #15803d;
}

.table-card .countup-value {
  transition: color 0.35s ease, text-shadow 0.35s ease;
}

.table-card tbody td:nth-child(2) {
  color: var(--ink);
}

.table-card tbody td:nth-child(3) {
  color: #15803d;
}

.table-card tbody td:nth-child(4) {
  color: #b52121;
}

.table-card .countup-value.is-counting.amount-estimated {
  color: #111827;
  text-shadow: 0 0 10px rgba(17, 24, 39, 0.16);
}

.table-card .countup-value.is-counting.amount-reimbursement {
  color: #16a34a;
  text-shadow: 0 0 12px rgba(22, 163, 74, 0.24);
}

.table-card .countup-value.is-counting.amount-net {
  color: #b52121;
  text-shadow: 0 0 12px rgba(181, 33, 33, 0.24);
}

.table-card .countup-value.is-counting.amount-total {
  color: #b52121;
  text-shadow: 0 0 14px rgba(181, 33, 33, 0.24);
}

.table-card .countup-value.is-loaded.amount-estimated {
  color: var(--ink);
}

.table-card .countup-value.is-loaded.amount-reimbursement {
  color: #15803d;
}

.table-card .countup-value.is-loaded.amount-net {
  color: #b52121;
}

.table-card .countup-value.is-loaded.amount-total {
  color: #b52121;
}

.table-card tfoot th:nth-child(3).countup-value.is-counting.amount-total,
.table-card tfoot th:nth-child(3).countup-value.is-loaded.amount-total {
  color: #15803d;
  text-shadow: 0 0 12px rgba(22, 163, 74, 0.24);
}

@media (max-width: 640px) {
  .investing-eyebrow {
    margin-bottom: 18px;
  }

  #rationale .section-title h2 {
    margin-bottom: 14px;
  }

  .table-wrap {
    overflow: visible;
  }
  table {
    min-width: 0;
    border-collapse: separate;
    border-spacing: 0 12px;
  }
  thead {
    display: none;
  }
  tbody tr {
    display: block;
    background: #ffffff;
    border: 1px solid rgba(31, 42, 58, 0.1);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
  }
  tbody td {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    padding: 10px 12px;
    border-bottom: 1px solid rgba(31, 42, 58, 0.08);
    text-align: right;
  }
  tbody td::before {
    content: attr(data-label);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--muted);
    text-align: left;
  }
  tbody td:first-child {
    text-align: left;
  }
  tbody td:last-child {
    border-bottom: none;
  }
  tfoot tr {
    display: block;
    border-top: 2px solid rgba(31, 42, 58, 0.16);
    margin-top: 8px;
  }
  tfoot th {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    padding: 8px 4px;
    border: none;
    text-align: right;
  }
  tfoot th:not(:first-child)::before {
    content: attr(data-label);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--muted);
    text-align: left;
  }
  tfoot th:nth-child(1) {
    text-align: left;
  }
}

.doc-card {
  background: white;
  padding: 18px;
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid transparent;
  transition: transform 0.24s var(--ease-out-premium), box-shadow 0.24s var(--ease-out-premium), border-color 0.24s ease;
}

    .doc-card:hover {
      transform: translateY(-2px);
      box-shadow: var(--shadow);
      border-color: rgba(31, 42, 58, 0.08);
    }

.doc-title {
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
}

.doc-content {
  display: flex;
  flex-direction: column;
  gap: 6px;
  height: 100%;
}

.doc-meta {
  color: var(--muted);
  font-size: 0.85rem;
}

.doc-action {
  background: var(--ink);
  color: white;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: auto;
  align-self: center;
  width: 160px;
  text-align: center;
}

.committee-grid {
  margin-top: 10px;
}

.committee-card {
  text-align: center;
  background: linear-gradient(145deg, rgba(7, 10, 18, 0.72), rgba(15, 23, 42, 0.56));
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 16px 30px rgba(2, 6, 23, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px) saturate(115%);
  -webkit-backdrop-filter: blur(14px) saturate(115%);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.committee-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow: 0 20px 34px rgba(2, 6, 23, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.committee-card h3 {
  margin-bottom: 6px;
  color: #ffffff;
  font-weight: 800;
}

.committee-card p {
  color: rgba(226, 232, 240, 0.82);
}

@media (max-width: 640px) {
  .doc-action {
    width: 100%;
    text-align: center;
  }
}

    .vote {
      background: linear-gradient(120deg, rgba(43, 120, 197, 0.15), rgba(235, 90, 60, 0.15));
    }

    .vote-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 24px;
      align-items: center;
    }

    .vote-card {
      background: white;
      padding: 24px;
      border-radius: 22px;
      box-shadow: var(--shadow);
      display: grid;
      gap: 12px;
    }

    .text-link {
      color: var(--ocean);
      font-weight: 600;
    }

.site-footer {
  padding: 50px 0 60px;
  background: #111827;
  color: #f8fafc;
}

.footer-center {
  display: grid;
  place-items: center;
  text-align: center;
}

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

@media (max-width: 900px) {
  .nav {
    display: none;
  }
  .nav-mobile {
    display: block;
  }
}

@media (max-width: 640px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .hero-media {
    order: -1;
    margin-top: 0;
  }
  .hero-copy {
    order: 1;
  }
  .back-to-top {
    width: 46px;
    height: 46px;
    right: 12px;
    bottom: 12px;
    font-size: 0.78rem;
  }
  .site-header .container {
    flex-wrap: nowrap;
    justify-content: space-between;
    padding: 6px 0;
    gap: 8px;
  }
  .nav-mobile summary {
    padding: 6px 10px;
    font-size: 0.78rem;
    min-width: 110px;
  }
  .brand-logo {
    width: 36px;
    height: 36px;
  }
  .info-strip {
    padding: 16px;
  }
  .brand-title {
    font-size: 0.9rem;
  }
  .brand-subtitle {
    font-size: 0.75rem;
  }
  .hero-copy h1 {
    font-size: clamp(1.95rem, 5.8vw, 2.5rem);
    line-height: 1.12;
    max-width: 100%;
    min-height: 2.45em;
  }
  .hero-copy {
    padding-top: 0;
  }
  .hero-media img {
    animation-delay: 0.05s;
  }
  .section-title h2 {
    font-size: clamp(1.65rem, 6vw, 2.15rem);
    line-height: 1.2;
  }
  .section-title .lede {
    font-size: 1rem;
  }
  .section {
    padding: clamp(42px, 7vw, 58px) 0;
  }
  .section + .section::before {
    width: 92vw;
  }
}

@media (max-width: 900px) {
  .hero-strip {
    animation: none;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.45s var(--ease-out-premium), transform 0.45s var(--ease-out-premium);
  }
  .hero-strip.is-ready {
    opacity: 1;
    transform: translateY(0);
  }
}

.nav-compact .site-header .container {
  padding: 8px 0;
  gap: 12px;
}

.nav-compact .brand {
  gap: 8px;
}

.nav-compact .brand-logo {
  width: 30px;
  height: 30px;
}

.nav-compact .brand-title {
  font-size: 0.85rem;
}

.nav-compact .brand-subtitle {
  opacity: 0;
  max-height: 0;
  pointer-events: none;
}

.nav-compact .nav-mobile summary {
  padding: 6px 10px;
  font-size: 0.75rem;
  min-width: 110px;
}

@media (max-width: 640px) {
  .nav-compact .site-header .container {
    flex-wrap: nowrap;
    justify-content: space-between;
  }
}
