:root {
  --deep-teal: #0f3d36;
  --teal: #1a7a6d;
  --teal-hover: #22a594;
  --teal-light: rgba(26, 122, 109, 0.08);
  --teal-mid: rgba(26, 122, 109, 0.15);
  --teal-on-dark: #5cc4b5;
  --warm-white: #f7f7f5;
  --near-black: #0d0d0d;
  --body-text: #1a1a1a;
  --muted: #6b6b6b;
  --border: #e0dfdb;
  --amber: #d4930d;
  --amber-light: rgba(212, 147, 13, 0.1);
  --soft-red: #c0392b;
  --max-w: 1120px;
  --section-py: clamp(80px, 10vw, 120px);
  --section-px: clamp(20px, 5vw, 40px);
  --font-heading: "DM Sans", -apple-system, "Helvetica Neue", sans-serif;
  --font-body: "Inter", -apple-system, "Helvetica Neue", sans-serif;
  --font-mono: "JetBrains Mono", "Fira Code", monospace;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--body-text);
  background: var(--warm-white);
}

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

a {
  color: var(--teal);
  text-decoration: none;
  transition: color 0.15s;
}

a:hover {
  color: var(--teal-hover);
}

::selection {
  background: rgba(26, 122, 109, 0.25);
  color: var(--near-black);
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--section-px);
}

.section-light {
  background: var(--warm-white);
  padding: var(--section-py) 0;
}

.section-dark {
  background: var(--deep-teal);
  padding: var(--section-py) 0;
  color: #ddd;
}

.section-dark h2,
.section-dark h3 {
  color: #f0efeb;
}

.section-dark .section-label {
  color: var(--teal-on-dark);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  color: var(--near-black);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 600;
  margin-bottom: 0.5em;
}

h3 {
  font-size: clamp(20px, 2.5vw, 24px);
  font-weight: 500;
}

.section-label {
  display: block;
  margin-bottom: 16px;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 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.35s; }

.hero {
  position: relative;
  overflow: hidden;
  background: var(--deep-teal);
  padding: clamp(100px, 14vw, 160px) 0 var(--section-py);
}

.hero::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -10%;
  width: 70%;
  height: 140%;
  background: radial-gradient(ellipse at center, rgba(26, 122, 109, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  background-attachment: fixed;
  pointer-events: none;
}

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

.hero h1 {
  max-width: 700px;
  margin-bottom: 24px;
  color: #f0efeb;
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 700;
  line-height: 1.14;
}

.hero h1 .h1-accent {
  color: var(--teal-on-dark);
}

.hero-sub {
  max-width: 600px;
  margin-bottom: 36px;
  color: rgba(240, 239, 235, 0.75);
  font-size: clamp(15px, 1.6vw, 17px);
  font-weight: 400;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}

.stat-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.stat-pill {
  padding: 8px 18px;
  border: 1px solid rgba(26, 122, 109, 0.2);
  border-radius: 100px;
  background: rgba(26, 122, 109, 0.12);
  color: rgba(240, 239, 235, 0.8);
  font-size: 14px;
  font-weight: 400;
  white-space: nowrap;
}

.stat-pill strong {
  color: var(--teal-on-dark);
  font-weight: 600;
}

.btn-primary,
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 6px;
  font-family: var(--font-heading);
  font-size: 16px;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.15s;
}

.btn-primary {
  border: none;
  background: var(--teal);
  color: #fff;
  cursor: pointer;
  font-weight: 600;
}

.btn-primary:hover {
  background: var(--teal-hover);
  color: #fff;
  transform: translateY(-1px);
}

.btn-outline {
  border: 1.5px solid rgba(92, 196, 181, 0.4);
  background: transparent;
  color: var(--teal-on-dark);
  cursor: pointer;
  font-weight: 500;
}

.btn-outline:hover {
  border-color: var(--teal-on-dark);
  color: #fff;
  transform: translateY(-1px);
}

.btn-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 38px;
  background: #fff;
  color: var(--deep-teal);
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  text-decoration: none;
}

.btn-light:hover {
  background: #f0efeb;
  color: var(--deep-teal);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.18);
}

.timeline-track {
  position: relative;
  margin: 48px 0 40px;
  padding: 0 20px;
}

.timeline-line {
  position: absolute;
  top: 10px;
  left: 20px;
  right: 20px;
  height: 2px;
  background: var(--border);
}

.timeline-points {
  position: relative;
  display: flex;
  justify-content: space-between;
}

.timeline-point {
  position: relative;
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
}

.timeline-dot {
  position: relative;
  z-index: 1;
  width: 12px;
  height: 12px;
  margin-bottom: 14px;
  border: 2px solid var(--warm-white);
  border-radius: 50%;
  background: var(--border);
}

.timeline-point.past .timeline-dot {
  background: var(--muted);
}

.timeline-point.today .timeline-dot {
  width: 16px;
  height: 16px;
  border: 3px solid var(--warm-white);
  background: var(--teal);
  box-shadow: 0 0 0 3px var(--teal), 0 0 12px rgba(26, 122, 109, 0.3);
}

.timeline-point.future .timeline-dot {
  border-color: var(--warm-white);
  background: var(--amber);
}

.timeline-date {
  margin-bottom: 4px;
  color: var(--near-black);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}

.timeline-point.today .timeline-date {
  color: var(--teal);
}

.timeline-desc {
  max-width: 140px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
  text-align: center;
}

.timeline-statement {
  max-width: 720px;
  margin-bottom: 16px;
  color: var(--body-text);
  font-size: clamp(17px, 2vw, 19px);
  line-height: 1.6;
}

.timeline-fines {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.countdown {
  color: var(--teal);
  font-family: var(--font-heading);
  font-size: inherit;
  font-variant-numeric: tabular-nums;
  font-weight: 700;
}

.faq-list {
  max-width: 780px;
  margin-top: 40px;
}

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

.faq-question {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  border: none;
  background: none;
  color: var(--near-black);
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.4;
  text-align: left;
  transition: color 0.15s;
}

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

.faq-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--teal);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-answer-inner {
  padding: 0 0 20px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.footer-cta {
  padding: clamp(80px, 12vw, 140px) 0 clamp(60px, 8vw, 80px);
  text-align: center;
}

.footer-cta h2 {
  max-width: 640px;
  margin: 0 auto 16px;
  color: #f0efeb;
}

.footer-cta .sub {
  margin-bottom: 36px;
  color: rgba(240, 239, 235, 0.6);
  font-size: 17px;
}

@media (max-width: 640px) {
  .timeline-points {
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
  }

  .timeline-point {
    flex-direction: row;
    gap: 16px;
  }

  .timeline-dot {
    margin-bottom: 0;
  }

  .timeline-desc {
    max-width: none;
    text-align: left;
  }

  .timeline-line {
    top: 0;
    bottom: 0;
    left: 25px;
    right: auto;
    width: 2px;
    height: auto;
  }
}
