:root {
  --bg: #FDF8F2;
  --bg-alt: #F5EDE0;
  --fg: #1A1A1A;
  --fg-muted: #6B6560;
  --teal: #0D3B3F;
  --teal-light: #1A5C60;
  --coral: #E8623A;
  --coral-light: #F08060;
  --cream: #FDF8F2;
  --white: #FFFFFF;
  --shadow: rgba(13, 59, 63, 0.08);
  --radius: 12px;
}

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

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .hero-headline, .section-headline {
  font-family: 'Fraunces', serif;
  line-height: 1.15;
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(253, 248, 242, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(13, 59, 63, 0.08);
  padding: 0 32px;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--teal);
}
.nav-tagline {
  font-size: 0.8rem;
  color: var(--fg-muted);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Hero - Full bleed image layout */
.hero {
  padding: 0;
  min-height: 85vh;
  display: flex;
  align-items: center;
}
.hero-image-wrap {
  position: relative;
  width: 100%;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 40, 45, 0.75) 0%,
    rgba(10, 40, 45, 0.4) 50%,
    rgba(232, 98, 58, 0.2) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 120px 48px 80px;
  margin: 0 auto;
  text-align: center;
}
.hero-headline {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.88);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 1px 8px rgba(0,0,0,0.25);
}
.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}
.btn-primary {
  display: inline-block;
  background: var(--coral);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 100px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(232, 98, 58, 0.4), 0 2px 8px rgba(0,0,0,0.2);
  transition: transform 0.15s, box-shadow 0.15s;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(232, 98, 58, 0.5), 0 3px 12px rgba(0,0,0,0.25);
}
.hero-trust {
  display: flex;
  gap: 20px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}
.hero-parks {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.park-tag {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 100px;
  letter-spacing: 0.02em;
  border: 1px solid rgba(255,255,255,0.2);
}

/* Sections shared */
.section-inner { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--coral);
  margin-bottom: 12px;
}
.teal-eyebrow { color: var(--teal-light); }
.section-headline {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 56px;
}

/* How it works */
.how-it-works { background: var(--white); padding: 96px 32px; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.step-card {
  padding: 32px 28px;
  background: var(--bg);
  border-radius: var(--radius);
  border: 1px solid rgba(13, 59, 63, 0.06);
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}
.step-icon {
  margin-bottom: 4px;
}
.step-number {
  font-family: 'Fraunces', serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--coral);
  opacity: 0.2;
  line-height: 1;
}
.step-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 4px;
}
.step-card p { color: var(--fg-muted); font-size: 0.9rem; line-height: 1.6; flex: 1; }
.step-flow-arrow {
  display: flex;
  justify-content: center;
  padding-top: 8px;
}
.step-card-last .step-flow-arrow { display: none; }

/* Optimizer */
.optimizer { background: var(--teal); padding: 96px 32px; color: var(--white); }
.optimizer-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.optimizer h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}
.optimizer-body { color: rgba(255,255,255,0.75); font-size: 1rem; line-height: 1.7; margin-bottom: 32px; }
.optimizer-points { display: flex; flex-direction: column; gap: 16px; }
.opt-point { display: flex; gap: 14px; align-items: flex-start; font-size: 0.9rem; line-height: 1.5; }
.opt-point strong { color: var(--white); }
.opt-point span { color: rgba(255,255,255,0.75); }
.opt-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
  flex-shrink: 0;
  margin-top: 6px;
}

/* Engine diagram */
.optimizer-diagram {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}
.engine-block {
  width: 100%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  padding: 16px 20px;
}
.engine-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 10px;
}
.engine-nodes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.node {
  background: rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 8px 12px;
  font-size: 0.78rem;
  font-weight: 500;
  text-align: center;
  color: rgba(255,255,255,0.85);
}
.engine-core {
  font-family: 'Fraunces', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--coral);
  text-align: center;
  padding: 8px;
}
.engine-block.core {
  background: rgba(232, 98, 58, 0.2);
  border-color: rgba(232, 98, 58, 0.4);
}
.engine-output {
  padding: 4px 0;
}
.output-ride {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 4px;
}
.output-score {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
}
.engine-arrow { color: rgba(255,255,255,0.3); display: flex; justify-content: center; }

/* Live data */
.live-data { background: var(--bg); padding: 96px 32px; }
.parks-grid {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}
.park-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid rgba(13, 59, 63, 0.06);
}
.park-card.disney { border-top: 3px solid #0070C3; }
.park-card.universal { border-top: 3px solid #6B2D8B; }
.park-card.seaworld { border-top: 3px solid #00AEEF; }
.park-name {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--teal);
  margin-bottom: 16px;
}
.park-rides { display: flex; flex-direction: column; gap: 10px; }
.ride-row { display: flex; justify-content: space-between; font-size: 0.85rem; }
.ride-name { color: var(--fg); }
.ride-stat { color: var(--teal); font-weight: 600; font-size: 0.75rem; }
.data-note {
  font-size: 0.8rem;
  color: var(--fg-muted);
  text-align: center;
}

/* Get in flow */
.get-in-flow {
  background: var(--bg-alt);
  padding: 96px 32px;
  text-align: center;
}
.get-in-flow h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--teal);
  margin-bottom: 20px;
  line-height: 1.15;
}
.get-in-flow p {
  color: var(--fg-muted);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}
.cta-group { margin: 36px 0 40px; }
.btn-large { font-size: 1.05rem; padding: 16px 40px; }
.trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-top: 8px;
}
.trust-item { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.trust-val {
  font-family: 'Fraunces', serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--teal);
}
.trust-label { font-size: 0.78rem; color: var(--fg-muted); font-weight: 500; }
.trust-divider { width: 1px; height: 40px; background: rgba(13,59,63,0.12); }

/* Footer */
.footer { background: var(--teal); padding: 48px 32px; color: rgba(255,255,255,0.6); }
.footer-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.footer-logo { font-family: 'Fraunces', serif; font-weight: 700; font-size: 1.25rem; color: var(--white); display: block; margin-bottom: 8px; }
.footer-brand p { font-size: 0.9rem; }
.footer-meta p { font-size: 0.8rem; line-height: 1.6; }

/* Responsive */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { order: -1; }
  .park-map-frame { max-width: 340px; margin: 0 auto; }
  .steps-grid { grid-template-columns: 1fr; }
  .optimizer-content { grid-template-columns: 1fr; }
  .parks-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .hero { padding: 100px 20px 60px; }
  .hero-headline { font-size: 1.8rem; }
  h2, .section-headline, .get-in-flow h2 { font-size: 1.5rem; }
  .parks-grid { grid-template-columns: 1fr; }
  .steps-grid { gap: 20px; }
  .engine-nodes { grid-template-columns: 1fr; }
}
