/* =========================================================================
   RIKSHAY WALA — Landing Page
   Brutalist-lite · Mobile-first · No build tools
   ========================================================================= */

/* -------------------------------------------------------------------------
   1. DESIGN TOKENS
   ------------------------------------------------------------------------- */
:root {
  /* Colour */
  --lime: #C4FF00;
  --lime-bright: #D4FF00;
  --lime-deep: #A8DC00;      /* hover / pressed */
  --cream: #FAFAEE;
  --cream-deep: #F2F2E2;     /* subtle section shift */
  --ink: #000000;
  --ink-60: rgba(0, 0, 0, .60);
  --ink-45: rgba(0, 0, 0, .45);
  --ink-12: rgba(0, 0, 0, .12);

  /* Type */
  --font: 'Space Grotesk', ui-sans-serif, system-ui, -apple-system,
          'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  /* Fluid type scale — mobile-first, scales to desktop */
  --fs-display: clamp(2.6rem, 10.5vw, 6.5rem);
  --fs-h2:      clamp(2rem, 7.2vw, 3.75rem);
  --fs-h3:      clamp(1.35rem, 4.6vw, 1.75rem);
  --fs-lead:    clamp(1.02rem, 3.6vw, 1.3rem);
  --fs-body:    clamp(.98rem, 3.2vw, 1.06rem);
  --fs-sm:      .875rem;
  --fs-xs:      .75rem;

  /* Space */
  --gutter: 1.25rem;
  --section-y: clamp(4rem, 12vw, 8.5rem);
  --wrap: 1200px;

  /* Radii */
  --r-sm: 12px;
  --r-md: 20px;
  --r-lg: 32px;
  --r-xl: 44px;
  --r-pill: 999px;

  /* Motion */
  --ease: cubic-bezier(.2, .8, .2, 1);
  --dur: .28s;

  /* Elevation */
  --shadow-card: 0 1px 0 var(--ink-12);
  --shadow-soft: 0 18px 44px -18px rgba(0, 0, 0, .28), 0 2px 8px rgba(0, 0, 0, .06);
  --shadow-hard: 0 6px 0 var(--ink);
}

/* -------------------------------------------------------------------------
   2. RESET & BASE
   ------------------------------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

* { margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 88px;   /* clears sticky header on anchor jumps */
}

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font);
  font-size: var(--fs-body);
  line-height: 1.6;
  font-synthesis-weight: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
ul { list-style: none; padding: 0; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

/* Author display rules outrank the UA [hidden] rule — enforce it */
[hidden] { display: none !important; }

h1, h2, h3 {
  line-height: .98;
  letter-spacing: -.035em;
  font-weight: 700;
  text-wrap: balance;
}

p { text-wrap: pretty; }

::selection {
  background: var(--lime);
  color: var(--ink);
}

:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 3px;
  border-radius: 4px;
}

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  background: var(--ink);
  color: var(--lime);
  padding: .85rem 1.25rem;
  border-radius: 0 0 var(--r-sm) 0;
  font-weight: 700;
}
.skip-link:focus { left: 0; }

/* -------------------------------------------------------------------------
   3. BUTTONS
   ------------------------------------------------------------------------- */
.btn {
  --btn-bg: var(--lime);
  --btn-fg: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-weight: 700;
  letter-spacing: -.015em;
  line-height: 1;
  border: 2px solid var(--ink);
  border-radius: var(--r-pill);
  padding: .95rem 1.5rem;
  cursor: pointer;
  white-space: nowrap;
  transition:
    transform var(--dur) var(--ease),
    background-color var(--dur) var(--ease),
    box-shadow var(--dur) var(--ease),
    color var(--dur) var(--ease);
  -webkit-tap-highlight-color: transparent;
}

.btn--sm { padding: .68rem 1.1rem; font-size: var(--fs-sm); }

.btn--lg {
  font-size: clamp(1rem, 3.6vw, 1.15rem);
  padding: 1.15rem 1.85rem;
  min-height: 58px;           /* chunky, easy to tap */
  box-shadow: var(--shadow-hard);
}

.btn--block { width: 100%; }

.btn--lime { --btn-bg: var(--lime); }
.btn--lime:hover { --btn-bg: var(--lime-deep); }

.btn--ink {
  --btn-bg: var(--ink);
  --btn-fg: var(--lime);
  border-color: var(--ink);
  box-shadow: 0 6px 0 rgba(0, 0, 0, .25);
}
.btn--ink:hover { --btn-bg: #171717; }

.btn--ghost {
  --btn-bg: transparent;
  box-shadow: none;
}
.btn--ghost:hover { --btn-bg: var(--cream-deep); }

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

.btn--lg:hover { box-shadow: 0 8px 0 var(--ink); }
.btn--ink.btn--lg:hover { box-shadow: 0 8px 0 rgba(0, 0, 0, .25); }

.btn:active {
  transform: translateY(2px) scale(.995);
  box-shadow: 0 2px 0 var(--ink);
}
.btn--ink:active { box-shadow: 0 2px 0 rgba(0, 0, 0, .25); }

.btn__icon {
  width: 1.15em;
  height: 1.15em;
  transition: transform var(--dur) var(--ease);
}
.btn:hover .btn__icon { transform: translateX(4px); }

/* -------------------------------------------------------------------------
   4. SHARED SECTION BITS
   ------------------------------------------------------------------------- */
.section { padding-block: var(--section-y); }
.section--tight { padding-block: clamp(1rem, 4vw, 2rem) var(--section-y); }

.section__head { max-width: 760px; margin-bottom: clamp(2.25rem, 6vw, 3.5rem); }
.section__head--center { margin-inline: auto; text-align: center; }

.section__title { font-size: var(--fs-h2); }

.section__sub {
  margin-top: 1.1rem;
  font-size: var(--fs-lead);
  color: var(--ink-60);
  max-width: 52ch;
}
.section__head--center .section__sub { margin-inline: auto; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-60);
  margin-bottom: 1.1rem;
  border: 2px solid var(--ink);
  border-radius: var(--r-pill);
  padding: .42rem .85rem;
  background: var(--cream);
}
.eyebrow--ink { background: transparent; color: var(--ink); }

.eyebrow__dot {
  width: .55rem;
  height: .55rem;
  border-radius: 50%;
  background: var(--lime);
  border: 1.5px solid var(--ink);
  flex: none;
}
.eyebrow__dot--ink { background: var(--ink); }

/* -------------------------------------------------------------------------
   5. HEADER / NAV
   ------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in srgb, var(--cream) 88%, transparent);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 2px solid transparent;
  transition: border-color var(--dur) var(--ease), background-color var(--dur) var(--ease);
}
.site-header.is-stuck { border-bottom-color: var(--ink); }

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 56px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-weight: 700;
  letter-spacing: -.04em;
  font-size: clamp(1rem, 3.5vw, 1.2rem);
}

.brand__logo {
  width: auto;
  height: clamp(1.6rem, 4.5vw, 2rem);
  flex: none;
  transition: transform var(--dur) var(--ease);
}
.brand:hover .brand__logo { transform: translateX(3px); }

/* -------------------------------------------------------------------------
   6. HERO
   ------------------------------------------------------------------------- */
.hero {
  position: relative;
  padding-top: clamp(1rem, 3.5vw, 2rem);
  padding-bottom: 0;
  overflow: hidden;
}

.hero__inner {
  display: grid;
  gap: clamp(1.5rem, 4vw, 3rem);
}

.hero__title {
  font-size: clamp(2.2rem, 4.8vw, 4rem);
  letter-spacing: -.045em;
  margin-bottom: 0.85rem;
}

.hl {
  position: relative;
  display: inline-block;
  z-index: 0;
  padding-inline: .12em;
}
.hl::before {
  content: '';
  position: absolute;
  inset: 12% -.04em 12% -.04em;
  background: var(--lime);
  border-radius: 8px;
  z-index: -1;
  transform: rotate(-1.1deg);
}

.hero__sub {
  font-size: var(--fs-lead);
  color: var(--ink-60);
  max-width: 48ch;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin-top: 1.35rem;
}
.hero__actions .btn { flex: 1 1 auto; }

.hero__points {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.35rem;
  margin-top: 1.25rem;
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--ink-60);
}
.hero__points li {
  display: flex;
  align-items: center;
  gap: .45rem;
}
.hero__points li::before {
  content: '';
  width: .9rem;
  height: .9rem;
  border-radius: 50%;
  background: var(--lime);
  border: 2px solid var(--ink);
  flex: none;
}

/* --- Hero visual: fare card mock --- */
.hero__visual {
  position: relative;
  display: grid;
  place-items: center;
  isolation: isolate;
}

/* Brand rickshaw sitting on top of the fare card */
.hero-art {
  width: min(76%, 250px);
  margin-bottom: -1.25rem;
  z-index: 2;
  position: relative;
  animation: heroDrive 4.5s var(--ease) infinite alternate;
}
.hero-art img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, .14));
}

@keyframes heroDrive {
  from { transform: translateX(-2.5%) rotate(-1deg); }
  to   { transform: translateX(2.5%) rotate(1deg); }
}

.blob {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  width: min(98%, 380px);
  aspect-ratio: 1 / .92;
  background: var(--lime);
  border-radius: 46% 54% 58% 42% / 52% 44% 56% 48%;
  animation: blobMorph 14s var(--ease) infinite alternate;
}

@keyframes blobMorph {
  0%   { border-radius: 46% 54% 58% 42% / 52% 44% 56% 48%; transform: translate(-50%, -50%) rotate(0deg) scale(1); }
  100% { border-radius: 58% 42% 44% 56% / 44% 58% 42% 56%; transform: translate(-50%, -50%) rotate(7deg) scale(1.04); }
}

.fare-card {
  width: min(100%, 340px);
  background: var(--cream);
  border: 2.5px solid var(--ink);
  border-radius: var(--r-lg);
  padding: 1.15rem 1.25rem;
  box-shadow: 6px 6px 0 var(--ink);
  transform: rotate(-1.6deg);
  transition: transform var(--dur) var(--ease);
  z-index: 1;
}
.fare-card:hover { transform: rotate(0deg) translateY(-4px); }

.fare-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.9rem;
}

.fare-card__label {
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-45);
}

.tag {
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: .1em;
  background: var(--lime);
  border: 2px solid var(--ink);
  border-radius: var(--r-pill);
  padding: .2rem .55rem;
}

.fare-route {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .75rem;
  padding-bottom: 0.85rem;
  border-bottom: 2px dashed var(--ink-12);
}

.fare-route__line {
  position: relative;
  width: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding-block: .3rem;
}
.fare-route__line::before {
  content: '';
  position: absolute;
  top: .8rem;
  bottom: .8rem;
  width: 2px;
  background: repeating-linear-gradient(to bottom, var(--ink) 0 4px, transparent 4px 8px);
}

.dot {
  width: 11px;
  height: 11px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--cream);
  z-index: 1;
}
.dot--end { background: var(--lime); border-radius: 3px; }

.fare-route__stops {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: .75rem;
}
.fare-route__stops p { display: grid; gap: .05rem; line-height: 1.2; }
.fare-route__stops strong { font-size: .95rem; letter-spacing: -.02em; }
.fare-route__stops span { font-size: var(--fs-xs); color: var(--ink-45); }

.fare-card__amount {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding-block: .75rem .6rem;
}
.fare-card__amount-label {
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--ink-60);
}
.fare-card__amount-value {
  font-size: clamp(1.6rem, 5vw, 2rem);
  font-weight: 700;
  letter-spacing: -.045em;
}

.fare-card__foot {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
}
.fare-card__foot span {
  font-size: var(--fs-xs);
  font-weight: 600;
  background: var(--cream-deep);
  border: 1.5px solid var(--ink-12);
  border-radius: var(--r-pill);
  padding: .3rem .6rem;
  color: var(--ink-60);
}

/* -------------------------------------------------------------------------
   7. TICKER
   ------------------------------------------------------------------------- */
.hero .ticker {
  width: 100%;
  margin-top: clamp(1.25rem, 3vw, 2rem);
}

.ticker {
  background: var(--ink);
  color: var(--lime);
  border-block: 2px solid var(--ink);
  overflow: hidden;
  padding-block: .8rem;
}

.ticker__track {
  display: flex;
  width: max-content;
  gap: 1.5rem;
  animation: tickerScroll 26s linear infinite;
}

.ticker__track span {
  font-size: clamp(.9rem, 3.2vw, 1.05rem);
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  white-space: nowrap;
}

@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-50% - .75rem)); }
}

/* -------------------------------------------------------------------------
   8. BENEFITS CARDS
   ------------------------------------------------------------------------- */
.cards {
  display: grid;
  gap: 1.1rem;
}

.card {
  position: relative;
  background: var(--cream);
  border: 2.5px solid var(--ink);
  border-radius: var(--r-lg);
  padding: 1.6rem 1.5rem 1.75rem;
  overflow: hidden;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.card::after {
  content: '';
  position: absolute;
  right: -3.5rem;
  bottom: -3.5rem;
  width: 9rem;
  height: 9rem;
  border-radius: 50%;
  background: var(--lime);
  opacity: 0;
  transition: opacity var(--dur) var(--ease), transform .45s var(--ease);
  transform: scale(.6);
  z-index: 0;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 8px 8px 0 var(--ink);
}
.card:hover::after { opacity: .28; transform: scale(1); }

.card > * { position: relative; z-index: 1; }

.card__icon {
  display: grid;
  place-items: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: var(--r-md);
  background: var(--lime);
  border: 2.5px solid var(--ink);
  margin-bottom: 1.35rem;
  transition: transform var(--dur) var(--ease);
}
.card:hover .card__icon { transform: rotate(-8deg) scale(1.06); }
.card__icon svg { width: 1.75rem; height: 1.75rem; color: var(--ink); }

.card__title { font-size: var(--fs-h3); margin-bottom: .6rem; }
.card__text { color: var(--ink-60); max-width: 34ch; }

.card__num {
  position: absolute;
  top: 1.35rem;
  right: 1.5rem;
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--ink-45);
}

/* -------------------------------------------------------------------------
   9. TRUST / SAFETY
   ------------------------------------------------------------------------- */
.trust {
  position: relative;
  background: var(--lime);
  color: var(--ink);
  border: 2.5px solid var(--ink);
  border-radius: var(--r-xl);
  padding: clamp(2.25rem, 7vw, 4.5rem) clamp(1.5rem, 5vw, 4rem);
  overflow: hidden;
}

.trust__content { position: relative; z-index: 1; max-width: 46ch; }

.trust__title {
  font-size: var(--fs-h2);
  margin-bottom: 1.15rem;
}

.trust__text {
  font-size: var(--fs-lead);
  font-weight: 500;
  margin-bottom: 2rem;
  color: rgba(0, 0, 0, .78);
}

.trust__stamp {
  position: absolute;
  right: -3rem;
  bottom: -2rem;
  width: clamp(18rem, 46vw, 30rem);
  height: auto;
  opacity: .14;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

/* -------------------------------------------------------------------------
   10. SIGN-UP + FORM SLOT
   ------------------------------------------------------------------------- */
.signup { background: var(--cream-deep); }

#google-form-container {
  width: 100%;
  max-width: 720px;
  margin-inline: auto;
  background: #fff;
  border: 2.5px solid var(--ink);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-soft);
  padding: clamp(.75rem, 3vw, 1.5rem);
  overflow: hidden;
}

/* The form iframe can't self-resize (cross-origin), so height is set by hand.
   The form gets TALLER as it gets NARROWER (labels wrap onto more lines), so
   the heights below step down as the viewport grows. Each value was measured
   against the live form at the exact iframe width this layout produces, plus a
   ~60px buffer for font-rendering differences across platforms.
   Too tall = harmless white space. Too short = nested scrollbar, so buffer up.
   If you edit the form (add/remove questions), re-check these numbers. */
#google-form-container iframe {
  display: block;
  width: 100% !important;
  height: 2540px; /* <360px viewport · iframe ~252px · measured need ~2467 */
  border: 0;
  border-radius: var(--r-md);
  background: #fff;
  color-scheme: light;
}

@media (min-width: 360px) { /* iframe ~296px · measured 2244 */
  #google-form-container iframe { height: 2310px; }
}
@media (min-width: 390px) { /* iframe ~322px · measured 2215 */
  #google-form-container iframe { height: 2280px; }
}
@media (min-width: 414px) { /* iframe ~349px · measured 2092 */
  #google-form-container iframe { height: 2160px; }
}
@media (min-width: 480px) { /* iframe ~411px · measured 2020 */
  #google-form-container iframe { height: 2085px; }
}
@media (min-width: 600px) { /* iframe ~500px · measured 1954 */
  #google-form-container iframe { height: 2020px; }
}
@media (min-width: 700px) { /* iframe ~594px · measured 1896 */
  #google-form-container iframe { height: 1960px; }
}
@media (min-width: 768px) { /* iframe 658-672px · measured 1826 (form's own wide layout) */
  #google-form-container iframe { height: 1890px; }
}

.signup__note {
  max-width: 720px;
  margin: 1.25rem auto 0;
  text-align: center;
  font-size: var(--fs-sm);
  color: var(--ink-45);
}

/* -------------------------------------------------------------------------
   11. FOOTER
   ------------------------------------------------------------------------- */
.site-footer {
  background: var(--ink);
  color: var(--cream);
  padding-top: clamp(2.75rem, 8vw, 4.5rem);
}

.footer__inner {
  display: grid;
  gap: 2.25rem;
  padding-bottom: 2.5rem;
}

.footer__logo-tile {
  display: inline-grid;
  place-items: center;
  width: 4.25rem;
  height: 4.25rem;
  border-radius: var(--r-md);
  background: var(--cream);
  border: 2.5px solid var(--ink);
  margin-bottom: 1rem;
  overflow: hidden;
}
.footer__logo-tile img { width: 78%; height: auto; }
.footer__name {
  font-size: clamp(1.75rem, 7vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -.04em;
  line-height: 1;
}
.footer__tag { color: rgba(250, 250, 238, .55); margin-top: .5rem; }

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem 1.5rem;
  font-weight: 600;
}
.footer__nav a {
  position: relative;
  padding-bottom: 2px;
  color: rgba(250, 250, 238, .8);
  transition: color var(--dur) var(--ease);
}
.footer__nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur) var(--ease);
}
.footer__nav a:hover { color: var(--lime); }
.footer__nav a:hover::after { transform: scaleX(1); }

.footer__bottom {
  border-top: 1px solid rgba(250, 250, 238, .16);
  padding-block: 1.35rem;
  font-size: var(--fs-sm);
  color: rgba(250, 250, 238, .5);
}

/* -------------------------------------------------------------------------
   12. STICKY MOBILE CTA
   ------------------------------------------------------------------------- */
.mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  padding: .75rem var(--gutter) calc(.75rem + env(safe-area-inset-bottom));
  background: color-mix(in srgb, var(--cream) 92%, transparent);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 2px solid var(--ink);
  transform: translateY(120%);
  transition: transform .35s var(--ease);
}
.mobile-cta.is-visible { transform: translateY(0); }
.mobile-cta .btn { box-shadow: none; min-height: 54px; }
.mobile-cta .btn:hover { transform: none; }

/* -------------------------------------------------------------------------
   13. SCROLL REVEAL
   ------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }

/* Stagger the benefit cards */
.cards .card:nth-child(2) { transition-delay: .09s; }
.cards .card:nth-child(3) { transition-delay: .18s; }

/* JS off / not supported → always show content */
.no-js .reveal { opacity: 1; transform: none; }

/* -------------------------------------------------------------------------
   14. RESPONSIVE — scale up from mobile
   ------------------------------------------------------------------------- */

/* ≥ 600px — cards go 2-up, buttons stop stretching */
@media (min-width: 600px) {
  :root { --gutter: 2rem; }

  .hero__actions .btn { flex: 0 0 auto; }
  .cards { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
  .footer__inner { grid-template-columns: 1fr auto; align-items: end; }
  .footer__nav { justify-content: flex-end; }
}

/* ≥ 900px — hero goes 2-column, cards 3-up */
@media (min-width: 900px) {
  html { scroll-padding-top: 104px; }

  .header__inner { min-height: 84px; }

  .hero__inner {
    grid-template-columns: 1.08fr .92fr;
    align-items: center;
  }

  .cards { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

  .card { padding: 2rem 1.85rem 2.15rem; }

  /* Sticky mobile CTA is mobile-only */
  .mobile-cta { display: none; }
}

/* ≥ 1200px — a touch more air */
@media (min-width: 1200px) {
  .hero { padding-block: 5.5rem 7rem; }
  .trust__content { max-width: 52ch; }
}

/* -------------------------------------------------------------------------
   15. PREFERENCES & PRINT
   ------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal { opacity: 1; transform: none; }
  .btn:hover, .card:hover, .fare-card:hover { transform: none; }
}

@media (prefers-contrast: more) {
  :root { --ink-60: rgba(0, 0, 0, .82); --ink-45: rgba(0, 0, 0, .72); }
}

@media print {
  .site-header, .mobile-cta, .ticker, .blob { display: none !important; }
  body { background: #fff; }
  .reveal { opacity: 1; transform: none; }
}
