:root {
  --ink: #043146;
  --ink-soft: #16475a;
  --sky: #62b4d0;
  --sun: #f5c658;
  --orange: #fa8503;
  --paper: #ffffff;
  --mist: #f1f7f8;
  --line: rgba(4, 49, 70, 0.16);
  --page: min(1180px, calc(100% - 48px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "League Spartan", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
}

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

.skip-link {
  position: fixed;
  left: 16px;
  top: -100px;
  z-index: 100;
  background: var(--sun);
  padding: 12px 18px;
  font-weight: 700;
}
.skip-link:focus { top: 16px; }

.site-header {
  width: var(--page);
  min-height: 112px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  border-bottom: 1px solid var(--line);
}

.brand { flex: 0 0 auto; }
.brand img { width: 94px; height: 76px; object-fit: contain; }

.main-nav { display: flex; align-items: center; gap: clamp(18px, 3vw, 42px); }
.main-nav a, .nav-contact {
  text-decoration: none;
  font-weight: 650;
  font-size: 0.9rem;
}
.main-nav a:not(.nav-contact):hover { color: var(--orange); }
.nav-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  color: white;
  background: var(--ink);
  border: 2px solid var(--ink);
  border-radius: 99px;
}
.nav-contact:hover { background: var(--orange); border-color: var(--orange); }

.hero {
  width: var(--page);
  margin: 0 auto;
  min-height: min(760px, calc(100vh - 112px));
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(330px, 0.82fr);
  align-items: center;
  gap: clamp(50px, 8vw, 120px);
  padding: 80px 0;
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.eyebrow.light { color: var(--sun); }

h1, h2, h3, p { text-wrap: pretty; }
h1, h2, h3 { margin-top: 0; line-height: 0.98; letter-spacing: -0.035em; }
h1 { margin-bottom: 28px; font-size: clamp(3.2rem, 6.1vw, 6.7rem); font-weight: 800; }
h1 span { color: var(--orange); }
.hero-intro { max-width: 650px; margin: 0; font-size: clamp(1.08rem, 1.7vw, 1.4rem); line-height: 1.45; }
.hero-actions { display: flex; align-items: center; gap: 26px; margin-top: 38px; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 56px;
  padding: 0 26px;
  border: 2px solid transparent;
  border-radius: 99px;
  text-decoration: none;
  font-weight: 750;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: white; background: var(--ink); }
.button-primary:hover { background: var(--orange); }
.button-outline { border-color: currentColor; }
.button-outline:hover { color: white; background: var(--ink); }
.button-light { color: var(--ink); background: white; }
.button-light:hover { background: var(--sun); }
.text-link { font-weight: 700; text-underline-offset: 5px; }
.text-link:hover { color: var(--orange); }

.hero-visual {
  position: relative;
  aspect-ratio: 0.78;
  min-height: 480px;
  overflow: hidden;
  background: var(--mist);
  border-radius: 180px 180px 28px 28px;
}
.route-card {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 51%;
  width: 68%;
  padding: 30px;
  transform: translate(-50%, -50%);
  color: white;
  background: var(--ink);
  box-shadow: 0 24px 50px rgba(4, 49, 70, 0.2);
}
.route-card span { display: block; }
.route-card strong { display: block; margin: 9px 0 0; color: var(--sun); font-size: clamp(5.5rem, 11vw, 9rem); line-height: 0.82; }
.route-kicker { color: var(--sky); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.route-line { position: absolute; height: 10px; border-radius: 99px; transform-origin: left center; }
.route-blue { width: 84%; left: -4%; top: 24%; background: var(--sky); transform: rotate(13deg); }
.route-yellow { width: 78%; left: 18%; top: 81%; background: var(--sun); transform: rotate(-54deg); }
.route-orange { width: 88%; left: 22%; top: 10%; background: var(--orange); transform: rotate(69deg); }
.station { position: absolute; z-index: 2; width: 24px; height: 24px; border: 6px solid white; border-radius: 50%; }
.station-one { left: 25%; top: 28%; background: var(--sky); }
.station-two { right: 18%; top: 36%; background: var(--orange); }
.station-three { left: 27%; bottom: 16%; background: var(--sun); }

.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  color: white;
  background: var(--ink);
}
.metrics div { min-height: 176px; padding: 38px clamp(20px, 3vw, 54px); border-right: 1px solid rgba(255,255,255,0.17); }
.metrics div:last-child { border-right: 0; }
.metrics strong { display: block; color: var(--sun); font-size: clamp(1.65rem, 2.5vw, 2.5rem); line-height: 1; }
.metrics span { display: block; margin-top: 11px; color: rgba(255,255,255,0.77); font-size: 0.9rem; }

.offer { padding: 120px max(24px, calc((100% - 1180px) / 2)); color: white; background: var(--ink-soft); }
.section-heading { display: grid; grid-template-columns: 0.35fr 1fr; gap: 60px; }
.section-heading h2 { max-width: 850px; margin-bottom: 82px; font-size: clamp(2.6rem, 5vw, 5rem); }
.offer-layout { display: grid; grid-template-columns: 0.75fr 1.25fr; gap: clamp(50px, 10vw, 160px); }
.offer-price { align-self: start; position: sticky; top: 30px; padding: 36px; color: var(--ink); background: var(--sun); }
.offer-price span { display: block; font-weight: 650; }
.offer-price strong { display: block; margin: 8px 0 -6px; font-size: clamp(3.5rem, 6vw, 6.2rem); line-height: 0.92; letter-spacing: -0.06em; }
.offer-price .all-in { display: inline-block; margin-top: 26px; padding: 8px 12px 6px; color: white; background: var(--ink); font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; }
.offer-list article { display: grid; grid-template-columns: 66px 1fr; gap: 20px; padding: 0 0 35px; margin-bottom: 35px; border-bottom: 1px solid rgba(255,255,255,0.2); }
.number { color: var(--sky); font-weight: 700; }
.offer-list h3 { margin-bottom: 12px; font-size: clamp(1.45rem, 2.5vw, 2.1rem); }
.offer-list p { max-width: 620px; margin: 0; color: rgba(255,255,255,0.72); }

.method {
  width: var(--page);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(50px, 10vw, 160px);
  padding: 130px 0;
}
.method h2 { margin: 0; font-size: clamp(2.7rem, 5vw, 5rem); }
.method-copy { align-self: end; padding-left: 30px; border-left: 8px solid var(--sky); }
.method-copy p { margin: 0 0 24px; font-size: 1.1rem; }
.method-copy p:last-child { margin-bottom: 0; }

.collaboration {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
  min-height: 650px;
  background: var(--mist);
}
.collab-mark {
  display: grid;
  place-items: center;
  overflow: hidden;
  color: white;
  background: var(--orange);
  font-size: clamp(9rem, 24vw, 24rem);
  font-weight: 800;
  letter-spacing: -0.12em;
  line-height: 1;
}
.collab-copy { align-self: center; max-width: 700px; padding: 80px clamp(30px, 8vw, 120px); }
.collab-copy h2 { margin-bottom: 28px; font-size: clamp(2.8rem, 5vw, 5.4rem); }
.collab-copy p:not(.eyebrow) { margin-bottom: 20px; font-size: 1.1rem; }

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.78fr);
  gap: clamp(54px, 8vw, 120px);
  padding: 120px max(24px, calc((100% - 1180px) / 2));
  color: white;
  background: var(--orange);
}
.contact-copy { position: relative; align-self: center; }
.contact-copy h2 { margin-bottom: 28px; font-size: clamp(3.4rem, 6.5vw, 7rem); }
.contact-copy > p:not(.eyebrow) { max-width: 590px; font-size: 1.08rem; }
.contact-form { align-self: center; padding: clamp(28px, 4vw, 48px); color: var(--ink); background: white; box-shadow: 0 26px 60px rgba(4,49,70,0.16); }
.contact-form > label:not(.form-consent) { display: grid; gap: 8px; margin-bottom: 20px; font-size: 0.84rem; font-weight: 750; }
.contact-form input, .contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 2px solid rgba(4,49,70,0.28);
  border-radius: 0;
  padding: 11px 2px;
  color: var(--ink);
  background: transparent;
  font: inherit;
}
.contact-form textarea { resize: vertical; }
.contact-form input:focus, .contact-form textarea:focus { outline: 0; border-color: var(--orange); box-shadow: 0 3px 0 rgba(250,133,3,0.15); }
.form-consent { display: grid; grid-template-columns: 22px 1fr; gap: 10px; align-items: start; margin: 5px 0 25px; font-size: 0.76rem; line-height: 1.35; }
.form-consent input { width: 18px; height: 18px; margin: 1px 0 0; accent-color: var(--orange); }
.form-consent a { text-underline-offset: 3px; }
.form-honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; }
.form-submit { width: 100%; color: white; background: var(--ink); border: 0; cursor: pointer; }
.form-submit:hover { background: var(--orange); }
.form-submit:disabled { cursor: wait; opacity: 0.68; transform: none; }
.form-status { min-height: 1.4em; margin: 16px 0 0; font-size: 0.82rem; }
.form-status.is-success { color: #15713b; }
.form-status.is-error { color: #a83a22; }

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: end;
  gap: 50px;
  padding: 58px max(24px, calc((100% - 1180px) / 2));
  color: white;
  background: var(--ink);
}
.footer-brand { display: flex; align-items: center; gap: 16px; }
.footer-logo { width: 54px; height: 64px; object-fit: contain; flex: 0 0 auto; }
.footer-brand strong, .footer-brand span { display: block; }
.footer-brand strong { font-size: 1.15rem; }
.footer-brand span, .footer-copy { margin-top: 6px; color: rgba(255,255,255,0.62); font-size: 0.8rem; }
.footer-links { display: flex; flex-wrap: wrap; gap: 18px 30px; }
.footer-links a, .site-footer > a { text-underline-offset: 5px; font-size: 0.85rem; }

.legal-page { background: var(--mist); }
.legal-main { width: min(860px, calc(100% - 48px)); margin: 0 auto; padding: 90px 0 130px; }
.legal-main h1 { font-size: clamp(3.3rem, 8vw, 7rem); }
.legal-main section { padding: 34px 0; border-top: 1px solid var(--line); }
.legal-main h2 { margin-bottom: 16px; font-size: 1.65rem; }
.legal-main p { margin: 8px 0; }
.legal-note { margin-top: 45px; padding: 22px; background: white; font-size: 0.85rem; }

@media (max-width: 900px) {
  :root { --page: min(100% - 32px, 720px); }
  .site-header { min-height: 88px; }
  .brand img { width: 70px; height: 60px; }
  .main-nav a:not(.nav-contact) { display: none; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding: 64px 0 80px; }
  .hero-visual { width: min(100%, 520px); min-height: 0; justify-self: center; }
  .metrics { grid-template-columns: repeat(2, 1fr); }
  .metrics div { min-height: 150px; }
  .metrics div:nth-child(2) { border-right: 0; }
  .section-heading { grid-template-columns: 1fr; gap: 0; }
  .section-heading h2 { margin-bottom: 60px; }
  .offer-layout, .method { grid-template-columns: 1fr; }
  .offer-price { position: static; }
  .method-copy { max-width: 680px; }
  .collaboration { grid-template-columns: 1fr; }
  .collab-mark { min-height: 380px; }
  .contact-section { grid-template-columns: 1fr; }
  .contact-copy > p:not(.eyebrow) { max-width: 680px; }
  .site-footer { grid-template-columns: 1fr; align-items: start; gap: 28px; }
}

@media (max-width: 560px) {
  body { font-size: 17px; }
  .nav-contact { min-height: 42px; padding: 0 15px; font-size: 0.78rem; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .hero-visual { border-radius: 120px 120px 22px 22px; }
  .route-card { width: 76%; padding: 24px; }
  .metrics { grid-template-columns: 1fr; }
  .metrics div { min-height: 126px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.17); }
  .offer { padding-top: 90px; padding-bottom: 90px; }
  .offer-list article { grid-template-columns: 48px 1fr; }
  .method { padding: 90px 0; }
  .collab-mark { min-height: 300px; }
  .collab-copy { padding-top: 64px; padding-bottom: 70px; }
  .contact-section { padding-top: 86px; padding-bottom: 86px; }
  .contact-form { padding: 27px 22px; }
  .footer-links { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
