:root {
  color-scheme: light;
  --lp-blue: #009AD0;
  --lp-blue-700: #0076A7;
  --lp-blue-900: #06364D;
  --lp-mist: #F3FAFD;
  --lp-cloud: #E8F6FB;
  --lp-border: #BFE7F3;
  --ink: #1F2A33;
  --muted: #60727C;
  --card: #FFFFFF;
  --wy-teal: #0E5A58;
  --privilege-gold: #D7B461;
  --paper: var(--lp-mist);
  --soft: var(--lp-cloud);
  --white: var(--card);
  --line: rgba(191, 231, 243, 0.85);
  --navy: var(--lp-blue-900);
  --blue: var(--lp-blue-700);
  --teal: var(--wy-teal);
  --gold: var(--privilege-gold);
  --gold-soft: #F4E7BB;
  --shadow: 0 18px 45px rgba(6, 54, 77, 0.08);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 16% 8%, rgba(0, 154, 208, 0.14), transparent 34rem),
    radial-gradient(circle at 84% 18%, rgba(0, 118, 167, 0.10), transparent 30rem),
    linear-gradient(180deg, #F3FAFD 0%, #FFFFFF 42%, #F7FCFE 100%);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 14px clamp(18px, 4vw, 48px);
  border-bottom: 1px solid rgba(191, 231, 243, 0.78);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  min-width: 205px;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(145deg, var(--lp-blue-900), var(--wy-teal));
  font-weight: 850;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 15px;
}

.brand small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 3vw, 30px);
  color: var(--ink);
  font-size: 14px;
  font-weight: 760;
}

.nav-links a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
}

.nav-links a:hover {
  color: var(--lp-blue-700);
}

.language-switcher {
  display: inline-flex;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
}

.lang-button {
  min-width: 44px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  color: var(--muted);
  background: transparent;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.lang-button.active {
  color: var(--white);
  background: var(--lp-blue-900);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(46px, 8vw, 86px) clamp(18px, 4vw, 48px);
  background:
    radial-gradient(circle at 18% 10%, rgba(0, 154, 208, 0.18), transparent 28rem),
    linear-gradient(135deg, #06364D 0%, #0A4B66 58%, #073246 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0 8%, rgba(191, 231, 243, 0.12) 8% 8.25%, transparent 8.25% 16%),
    linear-gradient(0deg, rgba(191, 231, 243, 0.12) 1px, transparent 1px);
  background-size: 150px 100%, 100% 84px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(34px, 6vw, 78px);
  width: min(1180px, 100%);
  margin: 0 auto;
  align-items: center;
}

.hero-copy-panel {
  color: var(--white);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--lp-blue-700);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .eyebrow,
.final-cta .eyebrow {
  color: var(--privilege-gold);
}

.hero h1,
.section h2,
.final-cta h2 {
  margin: 0;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(40px, 5.8vw, 72px);
  line-height: 1;
}

.hero-copy {
  max-width: 650px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.48;
}

.hero-note {
  max-width: 620px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 850;
}

.button.primary {
  color: var(--white);
  background: var(--lp-blue-700);
}

.button.secondary {
  color: var(--lp-blue-900);
  border: 1px solid rgba(0, 154, 208, 0.45);
  background: rgba(255, 255, 255, 0.72);
}

.button.primary:hover {
  background: var(--lp-blue-900);
}

.button.secondary:hover {
  border-color: rgba(0, 154, 208, 0.72);
  background: rgba(255, 255, 255, 0.9);
}

.hero .button.secondary,
.final-cta .button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.44);
  background: rgba(255, 255, 255, 0.10);
}

.hero-visual {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  border: 1px solid rgba(191, 231, 243, 0.32);
  border-radius: 8px;
  background:
    radial-gradient(circle at 18% 18%, rgba(0, 154, 208, 0.24), transparent 30%),
    radial-gradient(circle at 82% 72%, rgba(191, 231, 243, 0.14), transparent 32%),
    linear-gradient(145deg, #06364D, #0A4B66);
  box-shadow: 0 36px 90px rgba(6, 54, 77, 0.26);
}

.hero-visual > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(191, 231, 243, 0.16) 1px, transparent 1px),
    linear-gradient(0deg, rgba(191, 231, 243, 0.16) 1px, transparent 1px),
    linear-gradient(180deg, rgba(6, 54, 77, 0.06), rgba(6, 54, 77, 0.34));
  background-size: 46px 46px, 46px 46px, auto;
}

.motion-panel {
  position: absolute;
  z-index: 2;
  inset: 26px;
}

.route-path {
  position: absolute;
  left: 8%;
  right: 8%;
  top: 28%;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(191, 231, 243, 0.88), var(--lp-blue), rgba(255, 255, 255, 0.78));
  box-shadow: 0 0 18px rgba(0, 154, 208, 0.42);
  transform-origin: left center;
  animation: route-draw 5.2s ease-out infinite;
}

.route-step {
  position: absolute;
  top: calc(28% - 42px);
  display: grid;
  min-width: 94px;
  gap: 6px;
  justify-items: center;
  padding: 12px 10px;
  border: 1px solid rgba(191, 231, 243, 0.26);
  border-radius: 8px;
  color: var(--white);
  background: rgba(6, 54, 77, 0.72);
  backdrop-filter: blur(10px);
}

.route-step span {
  color: var(--gold-soft);
  font-size: 11px;
  font-weight: 900;
}

.route-step strong {
  font-size: 12px;
  line-height: 1.25;
  text-align: center;
}

.step-a { left: 0; }
.step-b { left: 38%; }
.step-e { right: 0; }

.eligibility-card,
.privilege-card,
.stay-card {
  animation: soft-pop 5.2s ease-in-out infinite;
}

.privilege-card {
  animation-delay: 0.48s;
}

.stay-card {
  border-color: rgba(215, 180, 97, 0.66);
  background: rgba(215, 180, 97, 0.18);
  animation-delay: 0.9s;
}

.mini-bus {
  position: absolute;
  left: 7%;
  top: calc(28% + 26px);
  width: 64px;
  height: 34px;
  border-radius: 8px 10px 7px 7px;
  background: linear-gradient(180deg, var(--privilege-gold), #B88E3F);
  box-shadow: 0 12px 24px rgba(6, 54, 77, 0.28);
  animation: bus-once 5.2s ease-in-out infinite;
}

.ticket-qr-pair {
  display: grid;
  grid-template-columns: minmax(170px, 1fr) 42px minmax(130px, 0.78fr);
  gap: 12px;
  align-items: center;
}

.hero-ticket-pair {
  position: absolute;
  left: 4%;
  right: 4%;
  bottom: 16px;
  animation: soft-pop 5.2s ease-in-out infinite;
}

.sample-ticket,
.wy-qr-card {
  border-radius: 8px;
  box-shadow: 0 18px 38px rgba(6, 54, 77, 0.18);
}

.sample-ticket {
  padding: 16px;
  color: var(--ink);
  background:
    linear-gradient(90deg, transparent 0 24px, rgba(0, 154, 208, 0.14) 24px 26px, transparent 26px),
    #FFFDF7;
}

.sample-ticket span,
.wy-qr-card span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sample-ticket strong {
  display: block;
  margin: 7px 0 4px;
  color: var(--lp-blue-900);
  font-size: clamp(22px, 3vw, 34px);
  letter-spacing: 0.02em;
}

.sample-ticket small,
.wy-qr-card small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
  line-height: 1.35;
}

.sample-ticket img {
  width: 100%;
  height: 44px;
  margin-top: 12px;
  object-fit: contain;
}

.ticket-connector {
  position: relative;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--lp-blue), var(--wy-teal));
}

.ticket-connector::after {
  content: "";
  position: absolute;
  right: -2px;
  top: 50%;
  width: 11px;
  height: 11px;
  border-top: 2px solid var(--lp-blue);
  border-right: 2px solid var(--lp-blue);
  transform: translateY(-50%) rotate(45deg);
}

.ticket-connector span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.wy-qr-card {
  display: grid;
  gap: 9px;
  justify-items: center;
  padding: 14px;
  color: var(--ink);
  border: 1px solid rgba(191, 231, 243, 0.9);
  background: rgba(255, 255, 255, 0.96);
}

.wy-qr-card img {
  width: 96px;
  height: 96px;
  border-radius: 6px;
  object-fit: contain;
}

.wy-qr-card small {
  text-align: center;
}

.mini-bus::before {
  content: "";
  position: absolute;
  left: 8px;
  right: 10px;
  top: 7px;
  height: 10px;
  border-radius: 3px;
  background: repeating-linear-gradient(90deg, #E8F6FB 0 12px, #0A4B66 12px 15px);
}

.mini-bus::after {
  content: "";
  position: absolute;
  left: 9px;
  right: 9px;
  bottom: -6px;
  height: 12px;
  background:
    radial-gradient(circle at 8px 6px, #14202a 0 6px, transparent 7px),
    radial-gradient(circle at calc(100% - 8px) 6px, #14202a 0 6px, transparent 7px);
}

@keyframes route-draw {
  0% { transform: scaleX(0.1); opacity: 0.6; }
  42%, 82% { transform: scaleX(1); opacity: 1; }
  100% { transform: scaleX(1); opacity: 0.75; }
}

@keyframes bus-once {
  0%, 12% { transform: translateX(0); }
  58%, 100% { transform: translateX(min(430px, 56vw)); }
}

@keyframes soft-pop {
  0%, 38% { transform: translateY(0); }
  46%, 72% { transform: translateY(-8px); }
  100% { transform: translateY(0); }
}

.section,
.section-soft,
.final-cta {
  padding: clamp(64px, 8vw, 104px) clamp(18px, 4vw, 48px);
}

.section-soft {
  background: var(--soft);
  border-block: 1px solid var(--line);
}

.section-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.section-heading.wide {
  max-width: 960px;
}

.section-heading.compact {
  margin-bottom: 28px;
}

.section h2,
.final-cta h2 {
  font-size: clamp(30px, 4.7vw, 54px);
  line-height: 1.06;
}

.section-heading p:not(.eyebrow),
.split-grid > div > p:not(.eyebrow),
.final-cta p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.62;
}

.evidence-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.evidence-strip article,
.offer-card,
.value-grid article,
.pilot-grid article,
.touchpoint-grid article,
.check-list li {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.evidence-strip article {
  overflow: hidden;
}

.evidence-strip img {
  width: 100%;
  height: 188px;
  object-fit: cover;
}

.evidence-strip article div {
  padding: 20px;
}

.evidence-strip h3,
.value-grid h3 {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.2;
}

.evidence-strip p,
.offer-card p,
.value-grid p,
.proposal-note {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.58;
}

.offer-grid,
.value-grid,
.pilot-grid,
.touchpoint-grid {
  display: grid;
  gap: 18px;
}

.offer-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.value-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.offer-card {
  min-height: 190px;
  padding: 24px;
}

.offer-card span,
.pilot-grid span {
  color: var(--lp-blue-700);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.offer-card strong {
  display: block;
  margin: 12px 0 10px;
  color: var(--lp-blue-900);
  font-size: clamp(42px, 6vw, 64px);
  line-height: 0.95;
}

.ticket-offer strong {
  color: var(--wy-teal);
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.05;
}

.touchpoint-offer {
  display: grid;
  gap: 14px;
}

.touchpoint-offer > span {
  margin-bottom: 0;
}

.compact-pair {
  grid-template-columns: 1fr;
  gap: 8px;
}

.compact-pair .ticket-connector {
  width: 54px;
  justify-self: center;
  transform: rotate(90deg);
}

.compact-pair .sample-ticket,
.compact-pair .wy-qr-card {
  padding: 12px;
  box-shadow: none;
  border: 1px solid var(--line);
}

.compact-pair .sample-ticket strong {
  font-size: 21px;
}

.compact-pair .sample-ticket img {
  height: 34px;
}

.compact-pair .wy-qr-card img {
  width: 74px;
  height: 74px;
}

.proposal-note {
  margin-top: 16px;
}

.inline-note {
  padding: 14px 16px;
  border-left: 4px solid var(--gold);
  background: rgba(255, 255, 255, 0.78);
}

.value-section {
  background:
    radial-gradient(circle at 16% 4%, rgba(0, 154, 208, 0.08), transparent 28rem),
    #F7FCFE;
}

.value-grid article {
  min-height: 0;
  overflow: hidden;
  padding: 0;
}

.value-grid article img {
  width: 100%;
  height: 132px;
  object-fit: cover;
}

.traveller-visual-card {
  position: relative;
  height: 132px;
  overflow: hidden;
  background:
    radial-gradient(circle at 22% 28%, rgba(215, 180, 97, 0.34), transparent 25%),
    linear-gradient(145deg, #06364D, #0A4B66);
}

.suitcase-shape {
  position: absolute;
  left: 24px;
  bottom: 22px;
  width: 58px;
  height: 70px;
  border: 3px solid rgba(255, 255, 255, 0.72);
  border-radius: 10px;
}

.suitcase-shape::before {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  top: -18px;
  height: 16px;
  border: 3px solid rgba(255, 255, 255, 0.72);
  border-bottom: 0;
  border-radius: 10px 10px 0 0;
}

.ticket-slip {
  position: absolute;
  left: 96px;
  top: 34px;
  padding: 10px 16px;
  border-radius: 8px;
  color: var(--lp-blue-900);
  background: #FFFDF7;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 12px 26px rgba(5, 12, 18, 0.18);
}

.phone-shape {
  position: absolute;
  right: 26px;
  bottom: 20px;
  display: grid;
  width: 54px;
  height: 86px;
  place-items: center;
  border: 3px solid rgba(255, 255, 255, 0.72);
  border-radius: 14px;
  color: var(--gold-soft);
  font-weight: 900;
}

.value-grid article div {
  padding: 18px;
}

.alignment-grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
}

.alignment-copy .check-list {
  margin-top: 22px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 16px 16px 16px 46px;
  color: var(--ink);
  font-weight: 730;
  line-height: 1.45;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 19px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--lp-blue-700);
}

.pilot-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.pilot-grid article {
  min-height: 150px;
  padding: 18px;
}

.pilot-icon {
  display: grid !important;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  place-items: center;
  border-radius: 8px;
  color: var(--white) !important;
  background: linear-gradient(145deg, var(--lp-blue-700), var(--lp-blue-900));
  font-size: 11px !important;
  letter-spacing: 0 !important;
}

.pilot-grid strong {
  display: block;
  margin-top: 13px;
  font-size: 20px;
  line-height: 1.2;
}

.touchpoint-board {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.touchpoint-board article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.touchpoint-board > article > img,
.phone-mockup,
.ticket-card-preview,
.support-card-preview,
.report-card-preview {
  width: 100%;
  height: 152px;
  object-fit: cover;
  background: linear-gradient(145deg, #E8F6FB, #F7FCFE);
}

.touchpoint-board article div:last-child {
  padding: 16px;
}

.touchpoint-board h3 {
  margin: 0 0 8px;
  font-size: 17px;
  line-height: 1.2;
}

.touchpoint-board p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.phone-mockup,
.support-card-preview,
.report-card-preview,
.ticket-card-preview {
  display: grid;
  place-items: center;
  padding: 16px;
}

.phone-mockup {
  align-content: center;
  gap: 10px;
  background:
    linear-gradient(145deg, var(--lp-blue-900), #0A4B66);
}

.phone-mockup span,
.support-card-preview span,
.report-card-preview span,
.ticket-card-preview span {
  color: var(--lp-blue-900);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.phone-mockup span {
  color: rgba(255, 255, 255, 0.78);
}

.phone-mockup img {
  width: 72px;
  height: 72px;
  border-radius: 6px;
  padding: 6px;
  background: var(--white);
}

.ticket-card-preview {
  color: var(--lp-blue-900);
  background: #FFFDF7;
}

.ticket-card-preview span {
  color: var(--muted);
}

.ticket-card-preview strong {
  margin: 6px 0;
  font-size: 22px;
}

.ticket-card-preview img {
  width: 100%;
  height: 36px;
  object-fit: contain;
}

.support-card-preview strong,
.report-card-preview strong {
  margin-top: 8px;
  color: var(--lp-blue-900);
  font-size: 22px;
}

.support-card-preview small,
.report-card-preview small {
  margin-top: 5px;
  color: var(--muted);
  font-weight: 720;
}

.support-card-preview {
  background:
    radial-gradient(circle at 72% 24%, rgba(14, 90, 88, 0.12), transparent 26%),
    linear-gradient(145deg, #FFFFFF, #E8F6FB);
}

.report-card-preview {
  background:
    linear-gradient(90deg, transparent 0 48%, rgba(0, 154, 208, 0.28) 48% 53%, transparent 53%),
    linear-gradient(145deg, #FFFFFF, #E8F6FB);
}

.final-cta {
  color: var(--white);
  background:
    radial-gradient(circle at 14% 8%, rgba(0, 154, 208, 0.16), transparent 28rem),
    linear-gradient(135deg, #06364D 0%, #0A4B66 100%);
}

.final-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
}

.final-cta .eyebrow {
  margin-bottom: 12px;
}

.final-cta h2 {
  max-width: 840px;
}

.final-cta p:not(.eyebrow) {
  max-width: 760px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.74);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 26px clamp(18px, 4vw, 48px);
  border-top: 1px solid var(--line);
  background: #F7FCFE;
}

.site-footer strong,
.site-footer p {
  margin: 0;
}

.site-footer p {
  max-width: 780px;
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.site-footer a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--blue);
  font-weight: 850;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .hero-inner,
  .alignment-grid,
  .final-cta-inner {
    grid-template-columns: 1fr;
  }

  .evidence-strip,
  .offer-grid,
  .value-grid,
  .pilot-grid,
  .touchpoint-board {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 740px) {
  .site-header {
    gap: 12px;
    padding: 12px 16px;
  }

  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .language-switcher {
    justify-self: end;
  }

  .hero {
    padding-top: 42px;
  }

  .hero h1 {
    font-size: clamp(38px, 12vw, 54px);
  }

  .hero-copy {
    font-size: 17px;
  }

  .button {
    width: 100%;
  }

  .motion-panel {
    inset: 18px;
  }

  .route-path {
    left: 20px;
    right: 20px;
    top: 132px;
    width: auto;
    height: 3px;
    transform-origin: left center;
    animation-name: route-draw;
  }

  .route-step {
    top: 22px;
    width: auto;
    min-width: 0;
    grid-template-columns: 1fr;
    justify-items: center;
    align-items: center;
    text-align: center;
    padding: 10px 8px;
  }

  .step-a {
    left: 0;
    right: auto;
    width: 31%;
  }

  .step-b {
    left: 34%;
    right: auto;
    width: 32%;
  }

  .step-e {
    left: auto;
    right: 0;
    width: 31%;
  }

  .mini-bus {
    display: block;
    left: 18px;
    top: 152px;
    width: 54px;
    height: 30px;
    animation-name: bus-mobile-short;
  }

  .evidence-strip,
  .offer-grid,
  .value-grid,
  .pilot-grid,
  .touchpoint-board,
  .alignment-copy .check-list {
    grid-template-columns: 1fr;
  }

  .ticket-qr-pair {
    grid-template-columns: 1fr;
  }

  .hero-ticket-pair {
    top: 230px;
    bottom: auto;
    left: 16px;
    right: 16px;
    padding-bottom: max(16px, env(safe-area-inset-bottom));
  }

  .ticket-connector {
    width: 54px;
    justify-self: center;
    transform: rotate(90deg);
  }

  .hero-visual {
    min-height: 700px;
    padding-bottom: max(24px, env(safe-area-inset-bottom));
  }

  .touchpoint-board > article > img,
  .phone-mockup,
  .ticket-card-preview,
  .support-card-preview,
  .report-card-preview {
    height: 210px;
  }

  .site-footer {
    display: block;
  }

  @keyframes bus-mobile-short {
    0%, 14% { transform: translateX(0); }
    58%, 100% { transform: translateX(min(260px, calc(100vw - 150px))); }
  }
}
