@import url("https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,600;9..144,700&family=Space+Grotesk:wght@400;500;600;700&display=swap");

:root {
  color-scheme: light;
  --sand: #f5efe6;
  --pearl: #fffaf3;
  --ocean: #0f3c2f;
  --sea: #1e6a54;
  --sun: #f2a34a;
  --rust: #d96a3a;
  --ink: #16231f;
  --stone: #8e978e;
  --card: rgba(255, 250, 243, 0.92);
  --card-strong: rgba(255, 255, 255, 0.88);
  --mint: #dff2e7;
  --sand-dust: rgba(12, 24, 20, 0.06);
  --shadow: 0 24px 60px rgba(19, 32, 26, 0.18);
  --shadow-soft: 0 16px 40px rgba(16, 28, 22, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Space Grotesk", system-ui, sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top left, #fff3e1 0%, transparent 55%),
    radial-gradient(circle at 20% 80%, rgba(30, 106, 84, 0.12), transparent 50%),
    linear-gradient(160deg, #fef6ea 0%, #f4efe7 45%, #edf2ec 100%);
  overflow-x: hidden;
}

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

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

.bg-orb {
  position: fixed;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.45;
  z-index: 0;
}

.orb-one {
  top: -160px;
  right: -80px;
  background: radial-gradient(circle, rgba(242, 163, 74, 0.75), transparent 60%);
}

.orb-two {
  bottom: -200px;
  left: -120px;
  background: radial-gradient(circle, rgba(30, 106, 84, 0.5), transparent 70%);
}

.bg-grid {
  position: fixed;
  inset: 0;
  background-image: linear-gradient(rgba(20, 30, 26, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 30, 26, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: multiply;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(16px);
  background: rgba(255, 250, 243, 0.86);
  border-bottom: 1px solid rgba(17, 30, 25, 0.08);
  box-shadow: 0 12px 30px rgba(16, 26, 20, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 7vw;
}

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

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--pearl);
  padding: 6px;
  box-shadow: var(--shadow);
}

.brand-title {
  font-weight: 700;
  display: block;
  font-size: 16px;
}

.brand-subtitle {
  font-size: 12px;
  color: var(--stone);
}

.nav {
  display: flex;
  gap: 20px;
  font-size: 14px;
  align-items: center;
}

.nav a {
  color: #2e3c36;
}

.nav a.nav-cta {
  padding: 8px 16px;
  background: var(--ocean);
  color: #fef7ed;
  border-radius: 999px;
  font-weight: 600;
}

main {
  position: relative;
  z-index: 1;
}

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

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 12px;
  color: var(--sea);
  font-weight: 600;
}

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

h1 {
  font-size: clamp(2.6rem, 3.3vw, 4rem);
  line-height: 1.05;
}

.lead {
  font-size: 1.05rem;
  max-width: 480px;
  color: #3a4a45;
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn.primary {
  background: var(--ocean);
  color: #fef7ed;
  box-shadow: 0 16px 30px rgba(15, 60, 47, 0.25);
}

.btn.ghost {
  background: var(--card-strong);
  border-color: rgba(15, 60, 47, 0.2);
}

.btn.disabled {
  opacity: 0.45;
  filter: grayscale(0.8);
  cursor: not-allowed;
  box-shadow: none;
  pointer-events: none;
}

.btn:hover {
  transform: translateY(-2px);
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pill-row span {
  background: rgba(15, 60, 47, 0.1);
  color: var(--ocean);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  box-shadow: inset 0 0 0 1px rgba(15, 60, 47, 0.08);
}

.stat-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border-radius: 16px;
  background: var(--card-strong);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(15, 60, 47, 0.08);
}

.stat-title {
  font-weight: 600;
  margin: 0 0 6px;
}

.stat-body {
  margin: 0;
  color: var(--stone);
  font-size: 14px;
}

.stat-badge {
  background: var(--sun);
  color: #432007;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.hero-visual {
  display: grid;
  gap: 18px;
}

.hero-panel {
  position: relative;
  background: linear-gradient(140deg, #0f3b2c 0%, #2e7a59 65%, #52a379 100%);
  color: #fef7ed;
  border-radius: 28px;
  padding: 28px;
  min-height: 300px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-panel img {
  position: absolute;
  right: -20px;
  bottom: -10px;
  width: 230px;
  opacity: 0.95;
  filter: drop-shadow(0 18px 24px rgba(0, 0, 0, 0.15));
}

.hero-panel-copy {
  position: relative;
  z-index: 1;
  max-width: 220px;
}

.panel-title {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 8px;
}

.panel-body {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

.hero-card {
  background: var(--card-strong);
  border-radius: 20px;
  padding: 18px 20px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(15, 60, 47, 0.08);
}

.hero-card-title {
  font-weight: 700;
  margin: 0 0 6px;
}

.section {
  padding: 70px 7vw;
}

.section.alt {
  background: linear-gradient(180deg, rgba(255, 250, 243, 0.82), rgba(235, 245, 238, 0.9));
  border-top: 1px solid rgba(17, 30, 25, 0.05);
  border-bottom: 1px solid rgba(17, 30, 25, 0.05);
}

.section-header {
  max-width: 560px;
  margin-bottom: 36px;
}

.section-header h2 {
  font-size: clamp(2rem, 2.5vw, 3rem);
}

.step-grid,
.option-grid,
.driver-grid,
.safety-grid,
.access-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.step-card,
.option-card,
.driver-card,
.safety-card,
.access-card {
  background: var(--card-strong);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(15, 60, 47, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.step-card:hover,
.option-card:hover,
.driver-card:hover,
.safety-card:hover,
.access-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 60px rgba(16, 28, 22, 0.18);
}

.option-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.badge {
  background: var(--sun);
  color: #4b2a11;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 700;
}

.badge.alt {
  background: #bde6cf;
  color: #114c36;
}

.option-card ul {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  color: var(--stone);
  display: grid;
  gap: 8px;
  font-size: 14px;
}

.option-card ul li {
  position: relative;
  padding-left: 18px;
  color: #5a6560;
}

.option-card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(120deg, var(--sun), var(--rust));
  box-shadow: 0 0 0 4px rgba(242, 163, 74, 0.15);
}

.driver-note {
  margin-top: 24px;
  background: linear-gradient(135deg, #fef5e8, #e4f3eb);
  border-radius: 20px;
  padding: 20px 24px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(15, 60, 47, 0.08);
}

.driver-note h4 {
  margin-bottom: 6px;
}

.access-card p {
  color: var(--stone);
}

.access-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.download-modal {
  position: fixed;
  inset: 0;
  background: rgba(10, 18, 14, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 20;
}

.download-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.download-card {
  position: relative;
  width: min(520px, 92vw);
  background: var(--pearl);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(15, 60, 47, 0.12);
}

.download-eyebrow {
  margin: 0 0 6px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sea);
  font-weight: 600;
}

.download-description {
  color: var(--stone);
  margin: 10px 0 18px;
}

.download-options {
  display: grid;
  gap: 12px;
  margin-bottom: 16px;
}

.download-option {
  padding: 14px 18px;
  border-radius: 16px;
  background: var(--card-strong);
  border: 1px solid rgba(15, 60, 47, 0.15);
  font-weight: 600;
  color: var(--ink);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.download-option:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.download-note {
  margin: 0;
  font-size: 13px;
  color: var(--stone);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: rgba(15, 60, 47, 0.08);
  color: var(--ink);
  font-size: 20px;
  cursor: pointer;
}

.modal-close:hover {
  background: rgba(15, 60, 47, 0.16);
}

.site-footer {
  padding: 40px 7vw 60px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-top: 1px solid rgba(17, 30, 25, 0.06);
}

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

.footer-brand img {
  width: 44px;
  height: 44px;
}

.footer-brand span {
  color: var(--stone);
  font-size: 14px;
}

.footer-note {
  max-width: 480px;
  color: var(--stone);
  margin: 0;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

@media (max-width: 900px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .nav {
    flex-wrap: wrap;
    gap: 12px;
  }

  .hero {
    padding-top: 50px;
  }

  .hero-panel {
    min-height: 260px;
  }
}

@media (max-width: 640px) {
  .site-header {
    position: static;
  }

  .nav {
    display: none;
  }

  .hero-panel img {
    width: 180px;
  }

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

  .btn {
    text-align: center;
  }
}
