:root {
  --ink: #17202a;
  --muted: #627084;
  --paper: #fffaf2;
  --paper-2: #f4efe6;
  --sun: #ffb703;
  --orange: #fb6f3d;
  --rose: #e84a5f;
  --blue: #124e78;
  --teal: #1b998b;
  --green: #3a7d44;
  --shadow: 0 24px 70px rgba(23, 32, 42, .16);
  --radius: 28px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255, 183, 3, .22), transparent 34rem),
    linear-gradient(180deg, #fffaf2 0%, #fff 48%, #f6fbff 100%);
}

a { color: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1rem, 4vw, 3rem);
  background: rgba(255, 250, 242, .84);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(23, 32, 42, .08);
}

.brand, .nav, .footer nav { display: flex; align-items: center; gap: .9rem; }

.brand {
  text-decoration: none;
  font-weight: 900;
  letter-spacing: -.03em;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 50%;
  color: white;
  background: linear-gradient(135deg, var(--orange), var(--rose));
  transform: rotate(32deg);
}

.nav a, .footer a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 700;
}

.nav a:hover, .footer a:hover { color: var(--ink); }

.nav-cta {
  padding: .7rem 1rem;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  text-decoration: none;
  font-weight: 800;
}

.hero, section, .footer {
  width: min(1160px, calc(100% - 2rem));
  margin-inline: auto;
}

.hero {
  min-height: 82vh;
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
  padding: clamp(3rem, 8vw, 7rem) 0;
}

.eyebrow {
  margin: 0 0 .9rem;
  color: var(--rose);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

h1, h2, h3, p { margin-top: 0; }

h1 {
  max-width: 12ch;
  margin-bottom: 1.2rem;
  font-size: clamp(4.1rem, 12vw, 9.4rem);
  line-height: .82;
  letter-spacing: -.09em;
}

h2 {
  font-size: clamp(2.1rem, 5vw, 4.4rem);
  line-height: .95;
  letter-spacing: -.06em;
}

h3 { font-size: 1.45rem; letter-spacing: -.03em; }

.hero-lede, .section-heading p, .split p, .final-cta p {
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.32rem);
  line-height: 1.6;
}

.hero-actions, .watch-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.1rem;
  padding: .9rem 1.25rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.button:hover { transform: translateY(-2px); }
.button.primary { background: linear-gradient(135deg, var(--orange), var(--rose)); color: white; box-shadow: 0 16px 36px rgba(232, 74, 95, .28); }
.button.ghost { border: 2px solid rgba(23, 32, 42, .16); background: rgba(255,255,255,.55); }
.button.soft { background: #eef6ff; color: var(--blue); }
.button.large { min-height: 3.5rem; padding-inline: 1.6rem; }

.hero-card {
  position: relative;
  padding: clamp(1.5rem, 4vw, 2.3rem);
  border-radius: var(--radius);
  color: white;
  background:
    radial-gradient(circle at 75% 18%, rgba(255,255,255,.28), transparent 12rem),
    linear-gradient(145deg, var(--blue), #1a7f86 58%, var(--green));
  box-shadow: var(--shadow);
  transform: rotate(2deg);
}

.hero-card p { font-size: 2rem; line-height: 1.05; font-weight: 900; letter-spacing: -.04em; }
.hero-card ul { margin: 1.5rem 0 0; padding-left: 1.2rem; line-height: 2; font-weight: 700; }
.today-badge { display: inline-block; margin-bottom: 4rem; padding: .45rem .8rem; border-radius: 999px; background: rgba(255,255,255,.16); font-weight: 900; }

section { padding: clamp(3rem, 7vw, 6rem) 0; }
.section-heading { max-width: 760px; margin-bottom: 2rem; }
.section-heading.centered { margin-inline: auto; text-align: center; }

.video-section {
  width: min(1240px, calc(100% - 1rem));
  padding: clamp(2rem, 5vw, 4rem);
  border-radius: calc(var(--radius) + 12px);
  background: #111827;
  color: white;
  box-shadow: var(--shadow);
}
.video-section .section-heading p { color: #c9d5e6; }
.video-shell {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--radius);
  background: #000;
  box-shadow: 0 30px 80px rgba(0,0,0,.35);
}
.video-shell iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.watch-actions { justify-content: center; margin-top: 1.4rem; }

.belief-grid, .idea-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.belief-grid article, .idea-grid a {
  padding: 1.4rem;
  border-radius: 22px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(23, 32, 42, .08);
  box-shadow: 0 16px 40px rgba(23,32,42,.06);
}

.belief-grid p, .idea-grid span { color: var(--muted); line-height: 1.6; }
.icon { display: inline-flex; margin-bottom: 2rem; color: var(--rose); font-weight: 900; }
.inline-link { display: inline-block; margin-top: 1.3rem; color: var(--blue); font-weight: 900; text-decoration: none; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  padding: clamp(2rem, 5vw, 4rem);
  border-radius: calc(var(--radius) + 10px);
  background: linear-gradient(135deg, #fff, #eef8f4);
  box-shadow: 0 18px 50px rgba(23,32,42,.08);
}

.mock-map {
  min-height: 360px;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(18,78,120,.08) 1px, transparent 1px),
    linear-gradient(rgba(18,78,120,.08) 1px, transparent 1px),
    radial-gradient(circle at 30% 40%, rgba(27,153,139,.25), transparent 9rem),
    radial-gradient(circle at 66% 62%, rgba(251,111,61,.22), transparent 10rem),
    #f9fcff;
  background-size: 44px 44px, 44px 44px, auto, auto, auto;
}
.pin { position: absolute; width: 24px; height: 24px; border-radius: 50% 50% 50% 0; transform: rotate(-45deg); background: var(--rose); box-shadow: 0 10px 25px rgba(232,74,95,.35); }
.pin::after { content: ""; position: absolute; inset: 7px; border-radius: 50%; background: white; }
.p1 { left: 25%; top: 32%; }
.p2 { left: 60%; top: 48%; background: var(--orange); }
.p3 { left: 45%; top: 70%; background: var(--teal); }
.route-line { position: absolute; inset: 30% 25% auto; height: 42%; border: 6px dashed rgba(18,78,120,.22); border-left: 0; border-bottom: 0; border-radius: 0 60% 0 0; transform: rotate(12deg); }

.idea-grid a {
  display: flex;
  flex-direction: column;
  min-height: 180px;
  color: inherit;
  text-decoration: none;
}
.idea-grid strong { margin-bottom: auto; font-size: 1.35rem; }

.final-cta {
  text-align: center;
  padding: clamp(3rem, 7vw, 6rem);
  border-radius: calc(var(--radius) + 12px);
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.45), transparent 20rem),
    linear-gradient(135deg, #ffe8ba, #ffd8d3 55%, #d9f3ee);
}
.final-cta p { max-width: 720px; margin-inline: auto; }

.footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem 0 3rem;
  color: var(--muted);
}

@media (max-width: 820px) {
  .site-header { position: static; flex-wrap: wrap; }
  .nav { order: 3; width: 100%; overflow-x: auto; padding-bottom: .2rem; }
  .hero, .split, .belief-grid, .idea-grid { grid-template-columns: 1fr; }
  h1 { max-width: 10ch; }
  .hero-card { transform: none; }
  .footer { flex-direction: column; }
}

@media (max-width: 520px) {
  .nav-cta { display: none; }
  .hero, section, .footer { width: min(100% - 1rem, 1160px); }
  .video-section { border-radius: 22px; }
}
