:root {
  --ink: #f0f0f0;
  --soft-ink: rgba(255, 255, 255, 0.85);
  --paper: #1c1c1e;
  --cream: #0a0a0a;
  --mist: #141414;
  --clay: #c3532b;
  --orange: #ff5a1f;
  --coral: #ff2d55;
  --yellow: #ffd45a;
  --lime: #a7ff4f;
  --green: #174b34;
  --cyan: #58f0ff;
  --blue: #21476a;
  --white: #ffffff;
  --muted: rgba(255, 255, 255, 0.48);
  --muted-light: rgba(255, 255, 255, 0.62);
  --line: rgba(255, 255, 255, 0.06);
  --glass: rgba(255, 255, 255, 0.03);
  --glass-strong: rgba(255, 255, 255, 0.06);
  --glow: 0 16px 60px rgba(255, 90, 31, 0.18);
  --shadow: 0 34px 120px rgba(0, 0, 0, 0.7);
  --shadow-float: 0 0 0 1px rgba(255, 255, 255, 0.05), 0 4px 24px rgba(0, 0, 0, 0.5);
  --font-display: ui-rounded, "SF Pro Rounded", "Avenir Next", "Inter Tight", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-ui: "Inter Tight", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-rounded: var(--font-display);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: #000000;
}

body::before {
  display: none;
}

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

body.modal-open {
  overflow: hidden;
}

body.legal-page,
body.article-page {
  background: #000000;
  color: var(--white);
}

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

button,
input,
select,
textarea {
  font: inherit;
}

img {
  max-width: 100%;
}

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hp-field {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.skip-link:focus {
  z-index: 100;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  clip: auto;
  color: var(--ink);
  background: var(--yellow);
  border-radius: 8px;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(calc(100% - 32px), 1180px);
  margin: 14px auto 0;
  padding: 12px 14px;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(8, 8, 8, 0.82);
  border: none;
  border-radius: 22px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(22px) saturate(160%);
}

.site-header.on-light {
  color: rgba(255, 255, 255, 0.85);
  background: rgba(8, 8, 8, 0.88);
}

.brand,
.nav-links,
.header-actions,
.hero-actions,
.live-strip,
.site-footer,
.post-meta,
.article-nav {
  display: flex;
  align-items: center;
}

.brand {
  font-family: var(--font-ui);
  flex: 0 0 auto;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 0 28px rgba(255, 106, 26, 0.34), inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav-links {
  flex: 1 1 auto;
  justify-content: center;
  min-width: 0;
  gap: clamp(14px, 1.7vw, 26px);
  font-family: var(--font-ui);
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.62);
  /* Keep each label on one line so multi-word items never break to two rows. */
  white-space: nowrap;
}

.nav-links a,
.header-action,
.button,
.segment,
summary {
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease, opacity 180ms ease;
}

.nav-links a:hover,
.header-action:hover,
.button:hover,
.segment:hover,
summary:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.site-header.on-light .nav-links {
  color: rgba(255, 255, 255, 0.62);
}

/* Combined "Explore" dropdown (Blog + Rides) — pure CSS, both links stay in the DOM for SEO. */
.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  font: inherit;
  color: inherit;
  cursor: pointer;
}
.nav-dropdown-toggle:hover {
  opacity: 1;
  transform: translateY(-1px);
}
.nav-caret {
  font-size: 0.7em;
  opacity: 0.8;
  transition: transform 180ms ease;
}
.nav-dropdown:hover .nav-caret,
.nav-dropdown:focus-within .nav-caret {
  transform: rotate(180deg);
}
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 150px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(12, 12, 12, 0.98);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%) translateY(-6px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms;
  z-index: 60;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
  padding: 9px 12px;
  border-radius: 9px;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.82);
}
.nav-dropdown-menu a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  transform: none;
}

/* Highlighted header CTA (Poker Stops). Deliberately cyan so it reads as a separate
   call to action instead of competing with the orange Download button. */
.header-action-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #eafeff;
  background: rgba(88, 240, 255, 0.12);
  box-shadow: 0 0 0 1px rgba(88, 240, 255, 0.55), 0 0 18px rgba(88, 240, 255, 0.22);
  animation: headerCtaPulse 2.6s ease-in-out infinite;
}
.header-action-cta::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #58f0ff;
  box-shadow: 0 0 8px #58f0ff;
  flex-shrink: 0;
}
.header-action-cta:hover {
  background: rgba(88, 240, 255, 0.2);
  box-shadow: 0 0 0 1px rgba(88, 240, 255, 0.8), 0 0 26px rgba(88, 240, 255, 0.4);
}
@keyframes headerCtaPulse {
  0%, 100% { box-shadow: 0 0 0 1px rgba(88, 240, 255, 0.45), 0 0 14px rgba(88, 240, 255, 0.18); }
  50% { box-shadow: 0 0 0 1px rgba(88, 240, 255, 0.85), 0 0 26px rgba(88, 240, 255, 0.45); }
}
@media (prefers-reduced-motion: reduce) {
  .header-action-cta { animation: none; }
}

/* Social icon row in the header nav. */
.nav-social {
  display: inline-flex;
  align-items: center;
  gap: 13px;
}
.nav-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: inherit;
  opacity: 0.68;
}
.nav-social a:hover {
  opacity: 1;
}
.nav-social svg {
  display: block;
  width: 18px;
  height: 18px;
}

/* Between the mobile pill nav (<=860) and the width where the full desktop header
   fits (~1210), compact the nav so it never clips. Socials drop out first - they
   stay reachable in the footer - because the CTA and Download matter more.
   Must sit AFTER the .nav-social base rules to win the cascade. */
@media (min-width: 861px) and (max-width: 1210px) {
  .nav-links { gap: 9px; font-size: 0.84rem; }
  .header-action { padding: 9px 12px; }
  .nav-social { gap: 9px; }
}
@media (min-width: 861px) and (max-width: 1080px) {
  .nav-social { display: none; }
  .nav-links { gap: 7px; font-size: 0.8rem; }
  .header-action { padding: 9px 10px; }
}

/* .header-actions is hidden on mobile, so highlight the Poker Stops pill in the
   scrolling nav instead - the CTA still pops where phones can actually see it. */
@media (max-width: 860px) {
  .nav-links a[href="/poker-stops/"] {
    color: #eafeff;
    border-color: rgba(88, 240, 255, 0.6);
    background: rgba(88, 240, 255, 0.14);
    box-shadow: 0 0 12px rgba(88, 240, 255, 0.28);
  }
}

.header-actions {
  flex: 0 0 auto;
  gap: 5px;
  padding: 4px;
  border: none;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
}

.header-action {
  min-width: max-content;
  min-height: 42px;
  padding: 10px 16px;
  border: none;
  border-radius: 14px;
  background: transparent;
  font-family: var(--font-ui);
  font-weight: 800;
  line-height: 1;
}

.header-action-app {
  color: rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.06);
  border-color: transparent;
}

.header-action-app::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 999px;
  background: #6cecff;
  box-shadow: 0 0 18px rgba(108, 236, 255, 0.78);
  vertical-align: 0.08em;
}

.header-action-download {
  color: #fff;
  background: linear-gradient(135deg, #ffb84f 0%, #ff562e 48%, #ff2f62 100%);
  border-color: rgba(255, 184, 79, 0.42);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 10px 26px rgba(255, 84, 46, 0.26);
}

.site-header.on-light .header-action {
  border-color: transparent;
}

.beta-modal[hidden] {
  display: none;
}

.beta-modal {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  min-height: 100dvh;
  padding: max(22px, env(safe-area-inset-top)) max(22px, env(safe-area-inset-right)) max(22px, env(safe-area-inset-bottom)) max(22px, env(safe-area-inset-left));
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.beta-modal.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.beta-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.86);
  backdrop-filter: blur(24px) saturate(120%);
}

.beta-modal-panel {
  position: relative;
  width: min(100%, 560px);
  max-height: min(820px, calc(100dvh - 44px));
  overflow: auto;
  overscroll-behavior: contain;
  padding: clamp(24px, 5vw, 34px);
  border: none;
  border-radius: 34px;
  background: #0e0e0e;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.07), 0 40px 120px rgba(0, 0, 0, 0.8);
  isolation: isolate;
  transform: translateY(14px) scale(0.98);
  transition: transform 220ms ease;
}

.beta-modal.is-visible .beta-modal-panel {
  transform: translateY(0) scale(1);
}

.beta-modal-panel::before {
  display: none;
}

.beta-modal-close {
  position: absolute;
  z-index: 2;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  border: none;
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  font-weight: 900;
}

.beta-modal-art,
.beta-modal-copy,
.beta-form,
.beta-modal-later {
  position: relative;
  z-index: 1;
}

.beta-modal-art {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 32px;
  padding-right: 54px;
}

.beta-modal-icon {
  width: 76px;
  height: 76px;
  border-radius: 22px;
  box-shadow: 0 0 46px rgba(255, 90, 31, 0.38);
}

.beta-modal-count {
  display: grid;
  min-width: 156px;
  min-height: 86px;
  place-items: center;
  padding: 12px 16px 14px;
  border: none;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.06);
}

.beta-modal-count span {
  color: var(--yellow);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.beta-modal-count strong {
  margin-top: -5px;
  color: var(--white);
  font-size: 3.25rem;
  line-height: 0.95;
}

.beta-modal-copy h2 {
  max-width: 12ch;
  margin: 14px 0 14px;
  color: var(--white);
  font-size: clamp(2.7rem, 9vw, 4.6rem);
  line-height: 0.92;
}

.beta-modal-copy p:not(.pill) {
  max-width: 36rem;
  color: var(--muted-light);
  font-size: 1.05rem;
  line-height: 1.65;
}

.modal-proof {
  width: 100%;
  max-width: 100%;
  margin: 20px 0 22px;
}

.beta-modal-copy > .button.primary {
  display: flex;
  width: min(100%, 360px);
  margin: 0 auto;
}

.beta-form {
  margin-top: 24px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.beta-form input {
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.075);
}

.beta-form .button {
  width: 100%;
  justify-content: center;
}

.beta-modal-later {
  display: block;
  margin: 14px auto 0;
  border: 0;
  color: rgba(255, 255, 255, 0.62);
  background: transparent;
  cursor: pointer;
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: 680px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(260px, 430px);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 104px clamp(24px, 6vw, 92px) 48px;
  overflow: hidden;
  color: var(--white);
  background: #000000;
}

.hero::before {
  display: none;
}

.hero-home {
  max-width: none;
  margin: 0;
  row-gap: clamp(16px, 2vw, 28px);
  padding-right: max(24px, calc((100vw - 1180px) / 2));
  padding-left: max(24px, calc((100vw - 1180px) / 2));
}

.hero-home::before {
  z-index: 1;
}

.hero-home::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  z-index: 1;
  height: min(180px, 28%);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), #000000 82%);
  pointer-events: none;
}

.hero-home .hero-content,
.hero-home .hero-app-stack {
  z-index: 2;
}

.hero-subpage {
  min-height: 64vh;
  align-items: center;
}

.blog-hero {
  min-height: 620px;
}

.blog-hero-stack {
  min-height: 430px;
}

.blog-hero-stack .app-shot-main {
  width: min(100%, 210px);
}

.blog-hero-stack .app-shot-back {
  right: 130px;
  width: min(70%, 184px);
  opacity: 0.5;
}

.hero-image,
.hero-scrim {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(17, 18, 15, 0.9), rgba(17, 18, 15, 0.46) 56%, rgba(17, 18, 15, 0.18)),
    linear-gradient(0deg, rgba(17, 18, 15, 0.78), transparent 45%);
}

.hero-content {
  position: relative;
  max-width: 640px;
  z-index: 1;
}

.pill,
.eyebrow {
  margin: 0 0 14px;
  color: var(--orange);
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.pill {
  display: inline-flex;
  padding: 5px 11px;
  color: var(--orange);
  background: rgba(255, 90, 31, 0.09);
  border-radius: 999px;
  box-shadow: none;
}

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

h1 {
  margin-bottom: 18px;
  font-family: var(--font-display);
  font-size: clamp(4rem, 7vw, 7.35rem);
  line-height: 0.9;
  letter-spacing: 0;
  text-shadow: 0 3px 0 rgba(0, 0, 0, 0.72), 0 18px 42px rgba(0, 0, 0, 0.42);
}

.hero-home h1 {
  max-width: 10ch;
  font-size: clamp(3.65rem, 6vw, 6.25rem);
}

.hero-subpage h1 {
  font-size: clamp(3.4rem, 9vw, 7.5rem);
}

h2 {
  margin-bottom: 18px;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4.7rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0;
}

p {
  line-height: 1.68;
}

.hero-copy {
  max-width: 580px;
  font-family: var(--font-ui);
  font-size: clamp(1rem, 1.3vw, 1.16rem);
  line-height: 1.44;
  color: rgba(255, 255, 255, 0.94);
  font-weight: 800;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.62), 0 10px 24px rgba(0, 0, 0, 0.34);
}

.hero-app-stack {
  position: relative;
  z-index: 1;
  min-height: 500px;
  align-self: center;
}

.hero-app-stack-small {
  min-height: 360px;
}

.app-shot {
  position: absolute;
  right: 0;
  width: min(100%, 230px);
  margin: 0;
  aspect-ratio: 414 / 900;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 42px;
  background: transparent;
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(28px) saturate(150%);
  overflow: hidden;
}

.app-shot::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: inherit;
  pointer-events: none;
}

.app-shot img,
.screenshot-frame img,
.shot-tile img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.app-shot img,
.screenshot-frame img {
  border-radius: inherit;
}

.app-shot-main {
  top: 0;
  z-index: 2;
}

.app-shot-back {
  top: 72px;
  right: 146px;
  z-index: 1;
  width: min(72%, 200px);
  opacity: 0.5;
  transform: rotate(-6deg);
}

.app-shot-rewards {
  top: 132px;
  right: 274px;
  z-index: 0;
  width: min(64%, 178px);
  opacity: 0.38;
  transform: rotate(-11deg);
}

.shot-label {
  display: inline-flex;
  margin-bottom: 20px;
  padding: 8px 10px;
  border-radius: 8px;
  color: var(--ink);
  background: var(--yellow);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.app-shot strong {
  display: block;
  font-size: 2rem;
  line-height: 1.05;
}

.app-shot p,
.app-shot small {
  color: rgba(255, 255, 255, 0.72);
}

.mini-map {
  position: relative;
  height: 220px;
  margin: 26px 0;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255, 212, 90, 0.22) 0 16%, transparent 16%),
    linear-gradient(135deg, rgba(88, 240, 255, 0.18), transparent 52%),
    repeating-linear-gradient(32deg, transparent 0 22px, rgba(255, 255, 255, 0.08) 22px 24px),
    #173f2d;
  overflow: hidden;
}

.mini-map::after {
  content: "";
  position: absolute;
  left: 24%;
  top: 20%;
  width: 54%;
  height: 58%;
  border: 5px solid var(--orange);
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-radius: 45% 55% 50% 42%;
  transform: rotate(22deg);
}

.shot-row,
.mini-riders {
  display: flex;
  align-items: center;
}

.shot-row {
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 8px;
}

.shot-row span {
  color: rgba(255, 255, 255, 0.76);
}

.shot-row b {
  color: var(--lime);
}

.mini-riders {
  gap: 8px;
  margin-top: 22px;
}

.mini-riders span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  font-size: 0.74rem;
  font-weight: 900;
}

.mini-map span {
  position: absolute;
  z-index: 1;
  width: 18px;
  height: 18px;
  border: 4px solid var(--white);
  border-radius: 50%;
  background: var(--yellow);
}

.mini-map span:nth-child(1) {
  left: 25%;
  bottom: 22%;
}

.mini-map span:nth-child(2) {
  left: 49%;
  top: 42%;
  background: var(--blue);
}

.mini-map span:nth-child(3) {
  right: 22%;
  top: 24%;
  background: var(--orange);
}

.app-store-proof {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 12px;
  max-width: 650px;
  margin-top: 18px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 212, 90, 0.44);
  border-radius: 14px;
  color: rgba(255, 255, 255, 0.94);
  background:
    linear-gradient(135deg, rgba(255, 212, 90, 0.18), rgba(255, 90, 31, 0.11)),
    rgba(255, 255, 255, 0.07);
  box-shadow: 0 18px 48px rgba(255, 90, 31, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  font-family: var(--font-ui);
  font-size: 0.96rem;
  font-weight: 800;
}

.hero-validation {
  width: fit-content;
}

.proof-main {
  color: var(--white);
  font-weight: 800;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.5);
}

.proof-sub {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.rating-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 10px;
  color: var(--ink);
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  font-weight: 900;
  box-shadow: 0 0 34px rgba(255, 90, 31, 0.32);
}

.city-momentum {
  max-width: 780px;
  margin: 16px 0 0;
  padding: 3px 0 4px 14px;
  border-left: 2px solid rgba(255, 212, 90, 0.62);
  color: rgba(255, 255, 255, 0.76);
  background: transparent;
  font-family: var(--font-ui);
  font-size: clamp(0.92rem, 1.2vw, 1.02rem);
  font-weight: 800;
  line-height: 1.5;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.52);
}

.city-momentum strong {
  color: rgba(255, 255, 255, 0.96);
}

.city-momentum span {
  display: block;
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.66);
  font-weight: 600;
}

.hero-actions {
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.reward-loop {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  max-width: 650px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.reward-loop span {
  display: inline-flex;
  align-items: center;
  min-height: 0;
  padding: 0;
  border: 0;
  color: transparent;
  background: linear-gradient(90deg, var(--yellow), var(--orange), var(--cyan));
  background-clip: text;
  -webkit-background-clip: text;
  text-shadow: none;
  -webkit-text-fill-color: transparent;
}

.reward-loop span:nth-child(2) {
  background-image: linear-gradient(90deg, var(--orange), var(--coral), var(--cyan));
}

.reward-loop span:nth-child(3) {
  background-image: linear-gradient(90deg, var(--coral), var(--cyan), var(--lime));
}

.reward-loop span + span::before {
  content: "/";
  margin: 0 10px;
  color: rgba(255, 212, 90, 0.58);
  background: none;
  -webkit-text-fill-color: rgba(255, 212, 90, 0.58);
}

.reviews-band {
  grid-column: 1 / -1;
  position: relative;
  z-index: 2;
  width: 100%;
  min-width: 0;
  margin: 0;
  padding: 0;
  background: transparent;
}

.reviews-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
  gap: 16px;
  width: 100%;
  min-width: 0;
  margin: 0;
}

.reviews-heading {
  display: grid;
  gap: 10px;
  max-width: 760px;
  padding-bottom: 6px;
}

.reviews-heading .eyebrow {
  margin: 0;
}

.reviews-heading h2 {
  margin: 0;
  max-width: 13ch;
  font-size: clamp(1.85rem, 3.2vw, 3.65rem);
  line-height: 0.92;
  letter-spacing: 0;
  text-shadow: 0 3px 0 rgba(0, 0, 0, 0.68), 0 20px 50px rgba(0, 0, 0, 0.36);
}

.reviews-grid {
  display: flex;
  gap: 12px;
  min-width: 0;
  margin-top: 2px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 4px 0 12px;
  scroll-padding-inline: 2px;
  scroll-snap-type: x mandatory;
  scrollbar-color: rgba(255, 212, 90, 0.7) rgba(255, 255, 255, 0.08);
  scrollbar-width: thin;
}

.reviews-grid::-webkit-scrollbar {
  height: 8px;
}

.reviews-grid::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
}

.reviews-grid::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: linear-gradient(90deg, var(--yellow), var(--orange), var(--cyan));
}

.review-card {
  position: relative;
  flex: 0 0 clamp(268px, 29vw, 354px);
  display: grid;
  align-content: space-between;
  gap: 18px;
  min-height: 172px;
  overflow: hidden;
  padding: clamp(20px, 3vw, 28px);
  border: none;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.07);
  scroll-snap-align: start;
}

.review-card::before {
  display: none;
}

.review-card-featured {
  border-color: transparent;
  background: rgba(255, 255, 255, 0.09);
}

.review-card-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: rgba(255, 255, 255, 0.46);
  font-family: var(--font-ui);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.review-stars {
  color: var(--yellow);
  font-size: 1rem;
  line-height: 1;
  text-shadow: 0 0 24px rgba(255, 212, 90, 0.32);
}

.review-card blockquote {
  margin: 0;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(1.28rem, 1.75vw, 1.75rem);
  font-weight: 900;
  line-height: 1.08;
  text-shadow: none;
}

.review-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.42);
  font-family: var(--font-ui);
  font-size: 0.84rem;
  font-weight: 700;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border: 0;
  border-radius: 16px;
  cursor: pointer;
  font-family: var(--font-ui);
  font-weight: 800;
}

.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), var(--coral));
  box-shadow: 0 18px 48px rgba(255, 90, 31, 0.32);
}

.ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(20px) saturate(150%);
}

.button.secondary {
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.10);
}

.button.disabled-link {
  cursor: not-allowed;
  opacity: 0.68;
  box-shadow: none;
}

.intro-band,
.planner-band,
.privacy-band,
.cta-band,
.ugc-band,
.signals-band,
.showcase-band,
.legal-wrap,
.blog-grid,
.article-layout,
.support-grid {
  display: grid;
  gap: clamp(28px, 6vw, 86px);
  width: min(100%, 1280px);
  margin: 0 auto;
  padding: clamp(68px, 8vw, 108px) clamp(20px, 5vw, 64px);
}

.intro-band,
.planner-band,
.privacy-band,
.cta-band,
.ugc-band,
.signals-band,
.support-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 520px);
  align-items: center;
}

.section-copy p,
.section-heading p,
.feature-card p,
.signal-grid p,
.faq-list p,
.legal-content p,
.legal-content li,
.article-content p,
.article-content li,
.post-card p,
.support-card p {
  color: var(--muted);
}

.section-heading {
  max-width: 820px;
  margin: 0 auto;
  padding: clamp(58px, 7vw, 86px) clamp(20px, 5vw, 64px) 30px;
  text-align: center;
}

.feature-band {
  position: relative;
  width: min(100%, 1280px);
  margin: 0 auto;
  background: transparent;
}

.feature-grid,
.signal-grid,
.post-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  padding: 0 clamp(20px, 5vw, 64px) clamp(56px, 7vw, 86px);
  background: transparent;
}

.feature-card,
.signal-grid article {
  background: var(--paper);
  color: var(--ink);
  border: none;
  border-radius: 30px;
  box-shadow: var(--shadow-float);
}

.post-card,
.support-card {
  background: #0e0e0e;
  color: var(--white);
  border: none;
  border-radius: 30px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.feature-card {
  min-height: 280px;
  padding: clamp(24px, 4vw, 38px);
  position: relative;
  overflow: hidden;
}

.post-card,
.support-card {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.feature-card::before,
.signal-grid article::before {
  display: none;
}

.feature-index {
  display: inline-flex;
  margin-bottom: 58px;
  color: var(--orange);
  font-weight: 900;
}

.phone-shell {
  width: min(100%, 390px);
  justify-self: center;
  border: 10px solid var(--ink);
  border-radius: 34px;
  padding: 18px;
  background: #181b19;
  color: var(--white);
  box-shadow: var(--shadow);
}

.screenshot-frame {
  width: min(100%, 360px);
  justify-self: center;
  aspect-ratio: 414 / 900;
  padding: 0;
  border: none;
  border-radius: 42px;
  background: transparent;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08), 0 24px 80px rgba(0, 0, 0, 0.6);
  overflow: hidden;
}

.screenshot-frame img {
  border-radius: inherit;
}

.phone-status,
.app-topline,
.ride-card {
  display: flex;
}

.phone-status {
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.8rem;
}

.app-topline {
  flex-direction: column;
  gap: 5px;
  margin: 22px 0 14px;
}

.app-topline span {
  color: var(--yellow);
  font-size: 0.82rem;
  font-weight: 900;
}

.route-map {
  position: relative;
  height: 236px;
  border-radius: 22px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(246, 196, 83, 0.18) 0 12%, transparent 12% 100%),
    repeating-linear-gradient(32deg, transparent 0 22px, rgba(255, 255, 255, 0.08) 22px 24px),
    var(--green);
}

.route-line {
  position: absolute;
  left: 22%;
  top: 18%;
  width: 54%;
  height: 62%;
  border: 5px solid var(--orange);
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-radius: 45% 55% 50% 42%;
  transform: rotate(22deg);
}

.pin {
  position: absolute;
  z-index: 2;
  width: 18px;
  height: 18px;
  border: 4px solid var(--white);
  border-radius: 50%;
}

.pin.start {
  left: 28%;
  bottom: 24%;
  background: var(--yellow);
}

.pin.mid {
  left: 48%;
  top: 38%;
  background: var(--blue);
}

.pin.end {
  right: 21%;
  top: 22%;
  background: var(--orange);
}

.live-strip {
  gap: 8px;
  margin: 16px 0;
}

.avatar {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--yellow);
  font-size: 0.72rem;
  font-weight: 900;
}

.live-copy {
  margin-left: 4px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.9rem;
}

.ride-card {
  flex-direction: column;
  gap: 7px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
}

.ride-type {
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.ride-card span:last-child {
  color: rgba(255, 255, 255, 0.68);
}

.steps-band {
  width: min(100%, 1280px);
  margin: 0 auto;
  color: var(--ink);
  background: transparent;
}

.steps-band .section-heading p,
.steps-band .steps-list p {
  color: var(--muted);
}

.steps-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0 clamp(20px, 5vw, 64px) clamp(56px, 7vw, 86px);
  list-style: none;
  background: transparent;
}

.steps-list li {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 24px;
  padding: clamp(24px, 4vw, 36px);
  background: var(--paper);
  border: none;
  border-radius: 30px;
  box-shadow: var(--shadow-float);
}

.steps-list span {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  color: var(--ink);
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  border-radius: 18px;
  font-weight: 900;
}

.signals-band {
  background: transparent;
}

.signal-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 0;
  gap: 14px;
}

.signal-grid article {
  position: relative;
  min-height: 170px;
  padding: 28px;
  overflow: hidden;
}

.reward-highlight-card {
  isolation: isolate;
  border-color: transparent;
  background: rgba(255, 90, 31, 0.07);
  box-shadow: 0 0 0 1px rgba(255, 90, 31, 0.14), 0 8px 32px rgba(255, 90, 31, 0.06);
  animation: none;
}

.reward-highlight-card h3,
.reward-highlight-card .shot-caption strong {
  color: var(--orange);
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  text-shadow: none;
  animation: none;
}

.reward-highlight-card::before {
  display: none;
}

.reward-highlight-card::after {
  display: none;
}

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

.showcase-band {
  display: block;
  width: 100%;
  margin: 0;
  background: var(--cream);
}

.ugc-band {
  position: relative;
  isolation: isolate;
  align-items: stretch;
  overflow: hidden;
  background: var(--cream);
  border: none;
  border-radius: clamp(24px, 4vw, 42px);
  box-shadow: var(--shadow-float);
}

.ugc-band::before,
.ugc-band::after {
  display: none;
}

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

.ugc-copy,
.ugc-form {
  min-width: 0;
}

.ugc-copy h2 {
  max-width: 11ch;
  margin-bottom: 18px;
}

.ugc-copy > p:not(.eyebrow),
.ugc-form-heading p {
  color: var(--muted);
}

.ugc-prompt-list {
  display: grid;
  gap: 0;
  margin-top: clamp(24px, 4vw, 40px);
  border-top: 1px solid var(--line);
}

.ugc-prompt-list span {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 14px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-weight: 840;
  line-height: 1.45;
}

.ugc-prompt-list b {
  color: var(--yellow);
  font-size: 0.82rem;
}

.ugc-form {
  display: grid;
  gap: 12px;
  align-content: start;
  padding: clamp(18px, 3vw, 24px);
  border: none;
  border-radius: 24px;
  background: var(--paper);
  box-shadow: var(--shadow-float);
}

.ugc-form-heading {
  display: grid;
  gap: 8px;
  margin-bottom: 4px;
}

.ugc-form-heading h3 {
  margin: 0;
  font-size: clamp(1.55rem, 2.8vw, 2.25rem);
  line-height: 1;
}

.showcase-band .section-heading {
  padding-top: clamp(58px, 7vw, 86px);
}

.shot-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: auto;
  gap: 18px;
  width: min(100%, 1280px);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 64px) clamp(56px, 7vw, 86px);
}

.shot-tile {
  position: relative;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  justify-items: center;
  gap: 20px;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  border: none;
  border-radius: 34px;
  padding: 24px 22px 22px;
  background: var(--paper);
  box-shadow: var(--shadow-float);
}

.shot-tile.tall {
  grid-row: auto;
  grid-column: auto;
}

.shot-tile.wide {
  grid-column: auto;
}

.shot-tile:not(.tall):not(.wide) {
  grid-column: auto;
}

.shot-tile img {
  width: min(100%, 236px);
  height: auto;
  aspect-ratio: 414 / 900;
  object-fit: contain;
  opacity: 0.96;
  filter: saturate(1.04) contrast(1.01);
  border-radius: 42px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.14);
}

.shot-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 52%, rgba(0, 0, 0, 0.52) 78%, rgba(0, 0, 0, 0.82));
  pointer-events: none;
}

.shot-tile.reward-highlight-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, transparent 52%, rgba(0, 0, 0, 0.52) 78%, rgba(0, 0, 0, 0.82));
  pointer-events: none;
  animation: none;
}

.shot-caption {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
  width: 100%;
  padding: 0 2px;
  align-self: end;
}

.shot-caption span {
  color: var(--orange);
  font-weight: 900;
}

.shot-caption strong {
  font-size: 1.45rem;
  color: var(--white);
}

.shot-caption p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.comparison-band {
  width: min(100%, 1280px);
  margin: 0 auto;
  padding: clamp(56px, 7vw, 86px) clamp(20px, 5vw, 64px);
  background: transparent;
}

.comparison-band .section-heading {
  padding: 0 0 32px;
  margin: 0;
  text-align: left;
}

.table-wrap {
  overflow-x: auto;
  border: none;
  border-radius: 30px;
  background: var(--cream);
  box-shadow: var(--shadow-float);
}

table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

th,
td {
  padding: 22px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

th {
  color: var(--ink);
  font-size: 0.78rem;
  text-transform: uppercase;
  opacity: 0.5;
}

tr:last-child td {
  border-bottom: 0;
}

.planner-band {
  color: var(--ink);
  background: var(--cream);
}

.planner-band .section-copy p {
  color: var(--muted-light);
}

.planner-panel {
  padding: 14px;
  border: none;
  border-radius: 30px;
  background: var(--paper);
  box-shadow: var(--shadow-float);
  backdrop-filter: none;
}

.segment-control {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.segment {
  min-height: 44px;
  border: 0;
  border-radius: 16px;
  color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
  font-weight: 900;
}

.segment.active {
  color: #ffffff;
  background: var(--orange);
}

.planner-output {
  margin-top: 14px;
  min-height: 240px;
  padding: 34px;
  border-radius: 24px;
  background: var(--cream);
  color: var(--ink);
}

.metric {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--orange);
  font-size: 2.5rem;
  font-weight: 900;
}

.planner-output p {
  color: var(--muted);
}

.privacy-band {
  align-items: center;
  background: transparent;
}

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

.check-list li {
  padding: 18px 18px 18px 50px;
  border: none;
  border-radius: 22px;
  background: var(--cream);
  box-shadow: var(--shadow-float);
  position: relative;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 24px;
  width: 14px;
  height: 8px;
  border-left: 3px solid var(--orange);
  border-bottom: 3px solid var(--orange);
  transform: rotate(-45deg);
}

.faq-band {
  width: min(100%, 1280px);
  margin: 0 auto;
  padding: clamp(56px, 7vw, 86px) clamp(20px, 5vw, 64px);
  background: transparent;
}

.faq-band .section-heading {
  padding: 0 0 28px;
  margin: 0;
  text-align: left;
}

.faq-list {
  display: grid;
  gap: 10px;
  max-width: 920px;
}

details {
  border: none;
  border-radius: 24px;
  background: var(--cream);
  box-shadow: var(--shadow-float);
  overflow: hidden;
}

summary {
  cursor: pointer;
  padding: 21px 22px;
  font-weight: 900;
}

details p {
  margin: 0;
  padding: 0 20px 20px;
}

.cta-band {
  align-items: end;
  background: #000000;
  color: var(--white);
}

.cta-band p {
  color: rgba(255, 255, 255, 0.68);
}

.waitlist-form {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: none;
  border-radius: 30px;
  background: var(--paper);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.22);
}

.waitlist-form input,
.waitlist-form select,
.ugc-form input,
.ugc-form select,
.ugc-form textarea {
  width: 100%;
  min-height: 56px;
  padding: 0 16px;
  border: none;
  border-radius: 18px;
  color: var(--ink);
  background: var(--cream);
}

.support-card input,
.support-card select,
.support-card textarea {
  width: 100%;
  min-height: 56px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 18px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.waitlist-form select,
.ugc-form select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(255, 255, 255, 0.5) 50%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.5) 50%, transparent 50%);
  background-position:
    calc(100% - 22px) 50%,
    calc(100% - 15px) 50%;
  background-size: 7px 7px, 7px 7px;
  background-repeat: no-repeat;
  padding-right: 42px;
}

.support-card select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(255, 255, 255, 0.78) 50%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.78) 50%, transparent 50%);
  background-position:
    calc(100% - 22px) 50%,
    calc(100% - 15px) 50%;
  background-size: 7px 7px, 7px 7px;
  background-repeat: no-repeat;
  padding-right: 42px;
}

.ugc-form textarea {
  min-height: 132px;
  padding-top: 15px;
  resize: vertical;
}

.field-group {
  display: grid;
  gap: 7px;
}

.field-group label,
.support-card label {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  font-weight: 900;
}

.waitlist-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.testflight-card {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.testflight-card span {
  display: block;
  padding: 14px 16px;
  border: none;
  border-radius: 18px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.08);
  font-weight: 850;
}

.signup-share-actions {
  display: grid;
  gap: 12px;
  margin-top: 4px;
  padding: 14px;
  border: 1px solid rgba(255, 212, 90, 0.2);
  border-radius: 22px;
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 212, 90, 0.14), transparent 12rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.078), rgba(255, 255, 255, 0.026));
}

.signup-share-actions[hidden] {
  display: none;
}

.signup-share-actions p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  line-height: 1.45;
}

.signup-share-buttons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.signup-share-buttons .button {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
}

.signup-share-actions .testflight-steps {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  font-weight: 750;
}

.support-card input,
.support-card select,
.support-card textarea {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--line);
}

.support-card textarea {
  min-height: 140px;
  padding-top: 14px;
  resize: vertical;
}

.waitlist-form input:focus,
.waitlist-form select:focus,
.ugc-form input:focus,
.ugc-form select:focus,
.ugc-form textarea:focus {
  outline: 2px solid rgba(255, 90, 31, 0.4);
}

.support-card input:focus,
.support-card select:focus,
.support-card textarea:focus {
  outline: 3px solid rgba(255, 106, 26, 0.35);
}

.form-message {
  min-height: 24px;
  margin: 0;
  color: var(--orange);
}

.auth-success-panel {
  display: grid;
  gap: 12px;
  margin: 18px 0;
  padding: clamp(18px, 3vw, 26px);
  border: 1px solid rgba(255, 212, 90, 0.34);
  border-radius: 26px;
  background:
    radial-gradient(circle at 8% 0%, rgba(255, 212, 90, 0.16), transparent 15rem),
    linear-gradient(145deg, rgba(255, 106, 26, 0.16), rgba(255, 255, 255, 0.035));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 24px 70px rgba(255, 106, 26, 0.12);
}

.auth-success-panel[hidden] {
  display: none;
}

.auth-card-form[hidden],
[data-photographer-apple-auth][hidden] {
  display: none;
}

.auth-success-panel:focus {
  outline: 3px solid rgba(255, 212, 90, 0.34);
  outline-offset: 4px;
}

.auth-success-kicker {
  width: fit-content;
  padding: 7px 12px;
  border: 1px solid rgba(255, 212, 90, 0.28);
  border-radius: 999px;
  color: var(--yellow);
  background: rgba(255, 212, 90, 0.1);
  font-size: 0.75rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.auth-success-panel h3 {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  line-height: 0.98;
}

.auth-success-panel p {
  max-width: 58ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 750;
  line-height: 1.5;
}

.auth-success-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.auth-success-actions .button {
  min-height: 46px;
  padding: 0 18px;
}

.support-card.is-authenticated .support-mini-grid span.is-complete {
  border-color: rgba(112, 255, 156, 0.32);
  color: rgba(255, 255, 255, 0.9);
  background:
    linear-gradient(145deg, rgba(112, 255, 156, 0.14), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.04);
}

.email-heads-up {
  margin: -2px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.45;
}

.site-footer {
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(20px, 5vw, 64px);
  color: rgba(255, 255, 255, 0.55);
  background: #050505;
  border-top: none;
}

.site-footer nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-brand {
  color: var(--white);
  font-weight: 900;
}

.blog-grid {
  grid-template-columns: minmax(0, 0.68fr) minmax(0, 1.32fr);
  align-items: start;
  background: #000000;
}

.post-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.post-card {
  position: relative;
  display: grid;
  align-content: center;
  gap: 12px;
  min-height: 220px;
  padding: 28px 92px 28px 30px;
  overflow: hidden;
  border-radius: 32px;
}

.post-card::before {
  display: none;
}

.post-card::after {
  content: "";
  position: absolute;
  inset: 50% 26px auto auto;
  width: 58px;
  height: 58px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-50%);
}

.post-card-featured {
  min-height: 280px;
}

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

.post-card h2 {
  max-width: 18ch;
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1;
}

.post-card:not(.post-card-featured) h2 {
  max-width: 20ch;
  font-size: clamp(1.5rem, 2.1vw, 2.05rem);
}

.post-card:hover h2,
.post-card:hover h3 {
  color: var(--orange);
}

.post-card strong,
.article-nav a {
  color: var(--white);
  font-weight: 900;
}

.post-card strong::after,
.article-nav a::after {
  content: " ->";
  color: var(--orange);
}

.post-meta {
  gap: 10px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.legal-wrap,
.article-layout {
  width: min(100%, 1180px);
  margin: 0 auto;
  grid-template-columns: minmax(0, 220px) minmax(0, 820px);
  align-items: start;
  gap: clamp(28px, 6vw, 76px);
  padding-top: 150px;
}

.legal-sidebar,
.article-sidebar {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 10px;
  padding: 18px;
  border: none;
  border-radius: 26px;
  background: #0e0e0e;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.legal-sidebar a,
.article-sidebar a {
  color: var(--muted);
}

.article-sidebar span {
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.legal-content,
.article-content {
  max-width: 820px;
}

.article-content {
  padding: clamp(28px, 5vw, 52px);
  border: 1px solid var(--line);
  border-radius: 34px;
  background:
    radial-gradient(circle at 10% 0%, rgba(255, 90, 31, 0.14), transparent 22rem),
    linear-gradient(150deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.015)),
    #050505;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.legal-content h1,
.article-content h1 {
  margin-top: 12px;
  font-size: clamp(3rem, 6vw, 5.2rem);
  line-height: 0.96;
}

.legal-content h2,
.article-content h2 {
  margin-top: 48px;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
}

.article-content p {
  font-size: 1.08rem;
}

.legal-content ul,
.article-content ul {
  padding-left: 22px;
}

.article-nav {
  justify-content: space-between;
  gap: 16px;
  margin-top: 54px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.support-grid {
  align-items: start;
  padding-top: 140px;
}

.support-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 28px;
}

.support-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.local-rides-shell {
  width: min(100%, 1280px);
  margin: 0 auto;
  padding: 140px clamp(20px, 5vw, 64px) 0;
}

.local-rides-hero,
.local-rides-section {
  display: grid;
  gap: clamp(24px, 5vw, 64px);
}

.local-rides-hero {
  grid-template-columns: minmax(0, 0.65fr) minmax(320px, 1.15fr);
  align-items: center;
  min-height: 720px;
}

.local-rides-copy h1 {
  max-width: 13ch;
  margin: 12px 0 0;
  font-size: clamp(3.35rem, 7vw, 6.8rem);
  line-height: 0.9;
}

.local-rides-copy p {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(1.06rem, 1.7vw, 1.28rem);
  line-height: 1.65;
}

.local-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 22px;
}

.local-trust-row span {
  min-height: 36px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.055);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.local-device-stage {
  position: relative;
  min-height: 610px;
}

.local-device-shot {
  position: absolute;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 34px;
  background: #050505;
  box-shadow:
    0 34px 80px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.local-device-shot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.local-device-main {
  top: 0;
  right: 0;
  z-index: 2;
  width: min(74%, 310px);
  aspect-ratio: 1206 / 2622;
}

.local-device-secondary {
  top: 82px;
  left: 0;
  z-index: 1;
  width: min(60%, 248px);
  aspect-ratio: 1206 / 2622;
  opacity: 0.72;
  transform: rotate(-5deg);
}

.rides-map-panel {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  background: #050505;
  margin-right: calc(-1 * clamp(20px, 5vw, 64px));
  border-radius: 0 0 0 0;
}

.rides-map-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.4) 20%, transparent 48%),
    linear-gradient(180deg, rgba(0,0,0,0.42) 0%, transparent 16%, rgba(0,0,0,0.58) 80%, rgba(0,0,0,0.82) 100%),
    radial-gradient(circle at 22% 54%, rgba(255, 90, 31, 0.07), transparent 9rem);
  pointer-events: none;
}

.rides-map-panel::after {
  display: none;
}

.rides-map-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% center;
  opacity: 0.94;
}

.rides-map-heading {
  position: absolute;
  top: 28px;
  left: 28px;
  z-index: 4;
  max-width: 460px;
}

.rides-map-heading h2 {
  margin: 10px 0 8px;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 0.95;
}

.rides-map-heading p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.rides-map-pin {
  position: absolute;
  z-index: 4;
  display: grid;
  min-width: 142px;
  gap: 2px;
  padding: 12px 14px;
  border: none;
  border-radius: 18px;
  color: var(--white);
  text-decoration: none;
  background: rgba(10, 10, 10, 0.88);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.10),
    0 16px 40px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(12px);
}

.rides-map-pin::before {
  content: "";
  position: absolute;
  top: -11px;
  left: 18px;
  width: 18px;
  height: 18px;
  border: 4px solid #050505;
  border-radius: 999px;
  background: var(--orange);
  box-shadow: 0 0 10px rgba(255, 90, 31, 0.6);
}

.rides-map-pin strong {
  font-size: 0.95rem;
  line-height: 1.05;
}

.rides-map-pin span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.pin-california {
  left: 18%;
  top: 36%;
}

.pin-san-diego {
  left: 24%;
  top: 57%;
}

.pin-texas {
  left: 47%;
  top: 57%;
}

.pin-nyc {
  left: 78%;
  top: 28%;
}

.rides-map-chip {
  position: absolute;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 6px 10px 6px 26px;
  border: none;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(10, 10, 10, 0.82);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.09),
    0 8px 24px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  font-size: 0.70rem;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

.rides-map-chip::before {
  content: "";
  position: absolute;
  left: 9px;
  width: 9px;
  height: 9px;
  border: 2px solid #050505;
  border-radius: 999px;
  background: var(--orange);
  box-shadow: 0 0 6px rgba(255, 90, 31, 0.5);
}

.chip-pnw {
  left: 19%;
  top: 24%;
}

.chip-southwest {
  left: 31%;
  top: 51%;
}

.chip-rockies {
  left: 40%;
  top: 34%;
}

.chip-appalachia {
  left: 63%;
  top: 43%;
}

.chip-florida {
  left: 70%;
  top: 58%;
}

.chip-hawaii {
  left: 3%;
  top: 68%;
}

.rides-map-key {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  z-index: 4;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.rides-map-key span {
  min-height: 34px;
  padding: 9px 11px;
  border: none;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.rides-map-phone-wrap {
  display: none;
}

.rides-map-phone-wrap img {
  display: block;
  width: 100%;
  height: auto;
}

.local-route-card,
.local-info-card,
.road-deep-card,
.intent-card,
.event-card,
.route-list-item,
.local-cta {
  border: none;
  background: #0e0e0e;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.07), 0 4px 20px rgba(0, 0, 0, 0.3);
}

.local-route-card {
  position: absolute;
  right: min(16%, 76px);
  bottom: 0;
  z-index: 3;
  width: min(84%, 360px);
  padding: clamp(22px, 4vw, 30px);
  border-radius: 28px;
  backdrop-filter: blur(18px);
}

.local-route-card h2 {
  margin: 12px 0 20px;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 0.98;
}

.local-route-map {
  height: 280px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 212, 90, 0.18) 0 15%, transparent 15% 100%),
    radial-gradient(circle at 74% 20%, rgba(88, 240, 255, 0.22), transparent 9rem),
    repeating-linear-gradient(32deg, transparent 0 22px, rgba(255, 255, 255, 0.08) 22px 24px),
    #173f2d;
}

.local-route-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 18px;
}

.local-route-pills span,
.route-list-item span {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 32px;
  padding: 0 11px;
  border: none;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.09);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.local-rides-section {
  padding: clamp(54px, 7vw, 92px) 0;
}

.local-map-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: 18px;
  align-items: stretch;
}

.sd-map-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 30px;
  background: #050505;
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.sd-map-embed {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.sd-map-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.sd-map-pin {
  position: absolute;
  display: grid;
  min-width: 150px;
  gap: 2px;
  padding: 12px 13px;
  border: 1px solid rgba(255, 212, 90, 0.34);
  border-radius: 18px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(255, 90, 31, 0.38), rgba(255, 255, 255, 0.09)),
    rgba(0, 0, 0, 0.76);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.35);
  pointer-events: auto;
  text-decoration: none;
}

.sd-map-pin::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 16px;
  width: 20px;
  height: 20px;
  border: 4px solid #050505;
  border-radius: 999px;
  background: var(--yellow);
  box-shadow: 0 0 0 2px rgba(255, 212, 90, 0.32);
}

.sd-map-pin strong {
  font-size: 1rem;
  line-height: 1;
}

.sd-map-pin span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.pin-palomar {
  right: 18%;
  top: 18%;
}

.pin-julian {
  right: 33%;
  top: 43%;
}

.pin-east-county {
  right: 18%;
  bottom: 20%;
}

.pin-coast {
  left: 10%;
  top: 34%;
}

.pin-city {
  left: 17%;
  bottom: 24%;
}

.local-map-notes {
  display: grid;
  gap: 14px;
}

.local-map-notes .local-info-card {
  min-height: 0;
}

.local-section-note {
  max-width: 520px;
  color: var(--muted);
  line-height: 1.58;
}

.local-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.local-info-card {
  min-height: 250px;
  padding: clamp(22px, 3vw, 30px);
  border-radius: 28px;
}

.local-info-card > span {
  color: var(--orange);
  font-weight: 900;
}

.local-info-card h3,
.route-list-item strong {
  display: block;
  margin: 18px 0 10px;
  color: var(--white);
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  line-height: 1;
}

.local-info-card p,
.route-list-item p,
.local-steps p,
.local-cta p {
  color: var(--muted);
  line-height: 1.58;
}

.route-list {
  display: grid;
  gap: 12px;
}

.local-segment-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.local-segment-tabs span {
  padding: 16px 18px;
  border: 1px solid rgba(255, 212, 90, 0.18);
  border-radius: 22px;
  color: rgba(255, 255, 255, 0.8);
  background:
    linear-gradient(135deg, rgba(255, 212, 90, 0.08), rgba(255, 255, 255, 0.035)),
    #060606;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.45;
}

.route-list-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  padding: clamp(20px, 3vw, 28px);
  border-radius: 26px;
}

.route-list-item strong {
  margin-top: 0;
}

.route-list-item p {
  max-width: 760px;
  margin: 0;
}

.local-split,
.local-cta {
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  align-items: start;
}

.local-steps {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.local-steps li {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.045);
}

.local-steps span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 14px;
  color: var(--ink);
  background: var(--yellow);
  font-weight: 900;
}

.local-steps p {
  margin: 0;
}

.local-search-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.local-thread-grid {
  align-items: stretch;
}

.local-thread-card {
  border-color: rgba(255, 212, 90, 0.16);
}

.local-thread-card > span {
  display: inline-flex;
  width: fit-content;
  min-height: 32px;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(255, 212, 90, 0.18);
  border-radius: 999px;
  color: var(--yellow);
  background: rgba(255, 212, 90, 0.075);
  font-size: 0.76rem;
  text-transform: uppercase;
}

.source-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 18px;
}

.source-list a,
.local-inline-link,
.event-card a {
  display: inline-flex;
  width: fit-content;
  min-height: 34px;
  align-items: center;
  padding: 9px 12px;
  border: 1px solid rgba(255, 212, 90, 0.22);
  border-radius: 999px;
  color: var(--yellow);
  background: rgba(255, 212, 90, 0.08);
  font-size: 0.8rem;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.road-deep-grid,
.intent-cluster-grid,
.event-grid,
.safety-grid {
  display: grid;
  gap: 14px;
}

.road-deep-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.road-deep-card {
  display: grid;
  align-content: start;
  gap: 16px;
  padding: clamp(22px, 3vw, 32px);
  border-radius: 28px;
}

.road-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.road-meta span,
.intent-card span,
.event-card > span {
  display: inline-flex;
  width: fit-content;
  min-height: 28px;
  align-items: center;
  padding: 7px 10px;
  border: 1px solid rgba(255, 212, 90, 0.18);
  border-radius: 999px;
  color: var(--yellow);
  background: rgba(255, 212, 90, 0.075);
  font-size: 0.72rem;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.road-deep-card h3,
.intent-card strong,
.event-card h3 {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.35rem, 2.4vw, 2.1rem);
  line-height: 1;
}

.road-deep-card p,
.road-deep-card li,
.intent-card p,
.event-card p {
  color: var(--muted);
  line-height: 1.58;
}

.road-deep-card p,
.intent-card p,
.event-card p {
  margin: 0;
}

.road-deep-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
}

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

.intent-card {
  display: grid;
  gap: 12px;
  min-height: 210px;
  align-content: start;
  padding: clamp(20px, 3vw, 28px);
  border-radius: 26px;
}

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

.event-card {
  display: grid;
  gap: 14px;
  align-content: start;
  min-height: 300px;
  padding: clamp(22px, 3vw, 30px);
  border-radius: 28px;
}

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

.safety-grid .local-info-card {
  min-height: 0;
}

.local-guide-card {
  display: grid;
  color: inherit;
  text-decoration: none;
}

.local-guide-card strong {
  align-self: end;
  margin-top: 18px;
  color: var(--yellow);
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: uppercase;
}

.local-guide-card-muted {
  opacity: 0.72;
}

.local-cta {
  padding: clamp(28px, 5vw, 48px);
  border-radius: 34px;
}

.support-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}

.support-mini-grid span {
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 18px;
  color: rgba(255, 255, 255, 0.78);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02)),
    #050505;
  font-size: 0.9rem;
  font-weight: 850;
}

.partner-qr-card {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  margin-top: 18px;
  padding: 16px;
  border: none;
  border-radius: 24px;
  background: #0e0e0e;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.partner-qr-card img {
  display: block;
  width: 112px;
  height: 112px;
  padding: 10px;
  border-radius: 18px;
  background: #ffffff;
}

.partner-qr-card h2 {
  margin: 0;
  font-size: 1.08rem;
}

.partner-qr-card p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.45;
}

.merch-shell {
  width: min(100% - 32px, 1180px);
  margin: 0 auto;
  padding: 126px 0 68px;
}

.merch-hero,
.merch-products {
  border: none;
  border-radius: 32px;
  background: #0e0e0e;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06), 0 34px 120px rgba(0, 0, 0, 0.7);
}

.merch-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.58fr);
  gap: 28px;
  align-items: end;
  min-height: 430px;
  padding: clamp(34px, 5vw, 62px);
}

.merch-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3.2rem, 9vw, 8rem);
  line-height: 0.92;
}

.merch-hero p:not(.eyebrow) {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1.05rem, 2vw, 1.32rem);
  line-height: 1.55;
}

.merch-loop-card {
  display: grid;
  gap: 10px;
  padding: 22px;
  border: none;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.06);
}

.merch-loop-card span,
.merch-loop-card strong {
  display: block;
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.055);
  font-weight: 900;
}

.merch-loop-card strong {
  color: var(--yellow);
}

.merch-products {
  margin-top: 18px;
  padding: clamp(24px, 4vw, 38px);
}

.merch-section-heading {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: end;
  margin-bottom: 22px;
}

.merch-section-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.8rem);
}

.merch-status,
.merch-fine-print {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.92rem;
  font-weight: 800;
}

.merch-store-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.34fr);
  gap: 16px;
  align-items: start;
}

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

.merch-card,
.merch-empty {
  overflow: hidden;
  border: none;
  border-radius: 28px;
  background: #0e0e0e;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.merch-card-media {
  display: grid;
  height: 280px;
  padding: 0;
  place-items: center;
  background: #fff;
  overflow: hidden;
}

.merch-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 0;
  object-fit: contain;
  background: #fff;
}

.merch-card-body {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.merch-card-body h3 {
  margin: 0;
  font-size: 1.2rem;
}

.merch-card-body p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-weight: 850;
}

.merch-purchase-controls {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.merch-purchase-controls label {
  display: grid;
  gap: 6px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.merch-purchase-controls select,
.merch-purchase-controls input {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 0 12px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.07);
  font: inherit;
  font-weight: 900;
}

.merch-purchase-controls select:focus,
.merch-purchase-controls input:focus {
  outline: 2px solid rgba(87, 235, 255, 0.28);
  border-color: rgba(87, 235, 255, 0.36);
}

.merch-pill {
  width: max-content;
  padding: 7px 10px;
  border-radius: 999px;
  color: #110b05;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.merch-disabled {
  justify-content: center;
  opacity: 0.62;
  pointer-events: none;
}

.merch-cart {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 14px;
  padding: 18px;
  border: none;
  border-radius: 28px;
  background: #0e0e0e;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06), 0 28px 80px rgba(0, 0, 0, 0.6);
}

.merch-cart h3,
.merch-cart p {
  margin: 0;
}

.merch-cart h3 {
  font-size: 1.4rem;
}

.merch-cart-lines {
  display: grid;
  gap: 10px;
}

.merch-cart-lines > p,
.merch-cart-note {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.45;
}

.merch-cart-line {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 34px;
  gap: 10px;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.055);
}

.merch-cart-line strong,
.merch-cart-line span {
  display: block;
}

.merch-cart-line strong {
  font-size: 0.92rem;
}

.merch-cart-line span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.8rem;
  font-weight: 850;
}

.merch-cart-line button {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 900;
}

.merch-cart-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.68);
  font-weight: 950;
}

.merch-cart-total strong {
  color: #ffffff;
  font-size: 1.2rem;
}

.merch-checkout-button:disabled {
  cursor: not-allowed;
  filter: saturate(0.5);
  opacity: 0.58;
}

.merch-card-loading .merch-card-media {
  animation: merchPulse 1.2s ease-in-out infinite alternate;
}

.merch-empty {
  grid-column: 1 / -1;
  padding: 28px;
}

.merch-empty h3,
.merch-empty p {
  margin: 0;
}

.merch-empty p {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.66);
}

.merch-fine-print {
  margin: 18px 0 0;
}

@keyframes merchPulse {
  from {
    opacity: 0.55;
  }
  to {
    opacity: 1;
  }
}

@media (max-width: 1040px) {
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .shot-tile img {
    width: min(100%, 220px);
  }

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

  .merch-store-layout {
    grid-template-columns: 1fr;
  }

  .merch-cart {
    position: static;
  }

  .local-map-grid,
  .intent-cluster-grid,
  .event-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .site-header {
    position: absolute;
    flex-wrap: wrap;
    gap: 10px 12px;
  }

  .nav-links {
    order: 3;
    display: flex;
    width: 100%;
    gap: 8px;
    overflow-x: auto;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.84);
    scrollbar-width: none;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .nav-links a {
    flex: 0 0 auto;
    min-height: 34px;
    padding: 9px 11px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.055);
    font-size: 0.78rem;
    font-weight: 900;
  }

  /* On the scrolling mobile pill nav, drop the dropdown/icon-row wrappers so Blog,
     Rides, and each social link become their own pills (nothing hidden behind hover). */
  .nav-dropdown,
  .nav-dropdown-menu,
  .nav-social {
    display: contents;
  }
  .nav-dropdown-toggle {
    display: none;
  }
  .nav-dropdown-menu {
    position: static;
    padding: 0;
    border: none;
    background: none;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }
  .nav-social a {
    min-height: 34px;
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.055);
    opacity: 1;
  }
  .nav-social svg {
    width: 16px;
    height: 16px;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    align-items: center;
    padding-top: 142px;
    padding-bottom: 48px;
  }

  .hero-app-stack {
    min-height: 445px;
    width: min(100%, 260px);
    margin: 10px auto 0;
  }

  .reviews-shell {
    grid-template-columns: 1fr;
  }

  .hero-reviews {
    order: 2;
  }

  .hero-app-stack {
    order: 3;
  }

  .reviews-heading h2 {
    max-width: 14ch;
  }

  .app-shot {
    position: relative;
    right: auto;
    width: min(100%, 226px);
    min-height: 0;
    margin: 0 auto;
  }

  .app-shot-back {
    display: none;
  }

  .app-shot-rewards {
    display: none;
  }

  .merch-shell {
    padding-top: 104px;
  }

  .merch-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 28px;
  }

  .merch-section-heading {
    display: grid;
  }

  .merch-grid {
    grid-template-columns: 1fr;
  }

  .intro-band,
  .planner-band,
  .privacy-band,
  .cta-band,
  .ugc-band,
  .signals-band,
  .showcase-band,
  .blog-grid,
  .legal-wrap,
  .article-layout,
  .support-grid,
  .local-rides-hero,
  .local-split,
  .local-cta {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .signal-grid,
  .local-card-grid,
  .road-deep-grid,
  .safety-grid,
  .local-search-grid {
    grid-template-columns: 1fr;
  }

  .local-rides-shell {
    padding-top: 112px;
  }

  .local-rides-hero {
    min-height: auto;
  }

  .local-device-stage {
    min-height: 560px;
  }

  .rides-map-panel {
    min-height: 620px;
    margin-right: 0;
  }

  .rides-map-image {
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .rides-map-heading {
    right: 22px;
    left: 22px;
    max-width: none;
  }

  .rides-map-pin {
    min-width: 132px;
    padding: 11px 12px;
  }

  .pin-california {
    left: 18%;
    top: 36%;
  }

  .pin-san-diego {
    left: 12%;
    top: 56%;
  }

  .pin-texas {
    left: 48%;
    top: 57%;
  }

  .pin-nyc {
    left: 77%;
    top: 28%;
  }

  .rides-map-chip {
    min-height: 28px;
    padding: 6px 8px 6px 24px;
    font-size: 0.66rem;
  }

  .rides-map-chip::before {
    left: 8px;
    width: 9px;
    height: 9px;
  }

  .sd-map-card {
    min-height: 560px;
  }

  .sd-map-pin {
    min-width: 126px;
    padding: 10px 11px;
  }

  .sd-map-pin strong {
    font-size: 0.88rem;
  }

  .sd-map-pin span {
    font-size: 0.66rem;
  }

  .pin-palomar {
    right: 6%;
    top: 17%;
  }

  .pin-julian {
    right: 18%;
    top: 42%;
  }

  .pin-east-county {
    right: 8%;
    bottom: 20%;
  }

  .pin-coast {
    left: 7%;
    top: 35%;
  }

  .pin-city {
    left: 12%;
    bottom: 25%;
  }

  .chip-pnw {
    left: 18%;
    top: 24%;
  }

  .chip-southwest {
    left: 30%;
    top: 51%;
  }

  .chip-rockies {
    left: 41%;
    top: 34%;
  }

  .chip-appalachia {
    left: 62%;
    top: 43%;
  }

  .chip-florida {
    display: block;
    left: 70%;
    top: 58%;
  }

  .chip-hawaii {
    left: 4%;
    top: 68%;
  }

  .local-device-main {
    width: min(74%, 270px);
  }

  .local-device-secondary {
    top: 74px;
    width: min(58%, 210px);
  }

  .local-route-card {
    right: 0;
    width: min(100%, 330px);
  }

  .local-rides-copy h1 {
    max-width: 12ch;
  }

  .local-segment-tabs {
    grid-template-columns: 1fr;
  }

  .route-list-item {
    grid-template-columns: 1fr;
  }

  .shot-grid {
    grid-template-columns: 1fr;
  }

  .post-card,
  .post-card-featured {
    min-height: 240px;
    padding: 26px;
  }

  .post-card::after {
    inset: auto 22px 22px auto;
    width: 44px;
    height: 44px;
    transform: none;
  }

  .shot-tile,
  .shot-tile.tall,
  .shot-tile.wide {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .shot-tile img {
    width: min(100%, 230px);
  }

  .feature-card {
    min-height: auto;
  }

  .screenshot-frame {
    width: min(100%, 300px);
  }

  .feature-index {
    margin-bottom: 42px;
  }

  .legal-sidebar,
  .article-sidebar {
    position: static;
  }
}

@media (max-width: 520px) {
  .beta-modal {
    align-items: start;
    padding: max(10px, env(safe-area-inset-top)) 10px max(10px, env(safe-area-inset-bottom));
  }

  .beta-modal-panel {
    width: 100%;
    max-height: calc(100dvh - 20px);
    padding: 18px;
    border-radius: 26px;
  }

  .beta-modal-close {
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
  }

  .beta-modal-art {
    gap: 12px;
    margin-bottom: 16px;
    padding-right: 42px;
  }

  .beta-modal-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
  }

  .beta-modal-count {
    min-width: 104px;
    min-height: 72px;
    padding: 10px;
    border-radius: 22px;
  }

  .beta-modal-count strong {
    margin-top: -5px;
    font-size: 2.85rem;
  }

  .beta-modal-copy .pill {
    margin-bottom: 12px;
    padding: 8px 11px;
    font-size: 0.7rem;
  }

  .beta-modal-copy h2 {
    max-width: 11.5ch;
    margin: 10px 0 10px;
    font-size: clamp(2.28rem, 11.5vw, 3.35rem);
    line-height: 0.95;
  }

  .beta-modal-copy p:not(.pill) {
    font-size: 0.98rem;
    line-height: 1.5;
  }

  .beta-form {
    gap: 10px;
    margin-top: 16px;
  }

  .beta-form input {
    min-height: 50px;
    border-radius: 16px;
  }

  .waitlist-form-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .support-mini-grid {
    grid-template-columns: 1fr;
  }

  .partner-qr-card {
    grid-template-columns: 1fr;
  }

  .signup-share-buttons {
    grid-template-columns: 1fr;
  }

  .beta-form .button {
    min-height: 50px;
  }

  .beta-modal-later {
    margin-top: 8px;
  }

  .header-actions {
    display: none;
  }

  h1 {
    font-size: clamp(3rem, 14.5vw, 4.45rem);
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .reviews-band {
    padding-right: 0;
    padding-left: 0;
  }

  .review-card {
    flex-basis: min(84vw, 330px);
    min-height: 0;
    border-radius: 16px;
  }

  .phone-shell {
    border-width: 7px;
    border-radius: 28px;
  }

  .steps-list li {
    grid-template-columns: 1fr;
  }

  .planner-output {
    padding: 24px;
  }

  .site-footer,
  .article-nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .table-wrap {
    overflow: visible;
    border: 0;
    background: transparent;
  }

  table,
  thead,
  tbody,
  tr,
  td {
    display: block;
    width: 100%;
    min-width: 0;
  }

  thead {
    display: none;
  }

  tr {
    margin-bottom: 12px;
    border: 1px solid var(--line);
    border-radius: 22px;
    overflow: hidden;
    background:
      linear-gradient(150deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.01)),
      #050505;
  }

  td {
    display: grid;
    grid-template-columns: minmax(90px, 0.42fr) minmax(0, 1fr);
    gap: 14px;
    padding: 14px;
  }

  td::before {
    content: attr(data-label);
    color: var(--yellow);
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
  }
}

@media (max-height: 760px) and (max-width: 520px) {
  .beta-modal-panel {
    padding: 14px;
    border-radius: 24px;
  }

  .beta-modal-art {
    margin-bottom: 12px;
  }

  .beta-modal-icon {
    width: 48px;
    height: 48px;
    border-radius: 15px;
  }

  .beta-modal-count {
    min-width: 92px;
    min-height: 62px;
    border-radius: 20px;
  }

  .beta-modal-count span {
    font-size: 0.64rem;
  }

  .beta-modal-count strong {
    font-size: 2.35rem;
  }

  .beta-modal-copy .pill {
    display: none;
  }

  .beta-modal-copy h2 {
    max-width: 15ch;
    font-size: clamp(2rem, 9.5vw, 2.7rem);
    line-height: 0.98;
  }

  .beta-modal-copy p:not(.pill) {
    font-size: 0.92rem;
    line-height: 1.38;
  }

  .beta-form {
    margin-top: 12px;
  }

  .beta-form input,
  .beta-form .button {
    min-height: 46px;
  }

  .waitlist-form-row {
    gap: 8px;
  }

  .beta-modal-later {
    font-size: 0.9rem;
  }
}

.invite-page {
  min-height: 100vh;
  background: #000;
}

.invite-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px 18px;
}

.invite-card {
  width: min(560px, 100%);
  padding: 30px;
  border: none;
  border-radius: 28px;
  background: #0e0e0e;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.07), 0 24px 80px rgba(0, 0, 0, 0.6);
}

.invite-mark {
  width: 72px;
  height: 72px;
  margin-bottom: 18px;
}

.invite-code-box {
  margin: 22px 0;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.invite-code-box span {
  display: block;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.invite-code-box strong {
  display: block;
  margin-top: 5px;
  color: var(--text);
  font-size: clamp(2rem, 8vw, 3rem);
  letter-spacing: 0.14em;
}

.invite-actions {
  margin-top: 14px;
}

.download-card {
  max-width: 640px;
}

.download-card h1 {
  margin: 16px 0;
  color: var(--text);
  font-size: clamp(3.2rem, 10vw, 5.8rem);
  line-height: 0.92;
}

.download-store-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.store-card {
  display: grid;
  gap: 6px;
  min-height: 154px;
  padding: 20px;
  border: 1px solid rgba(255, 213, 91, 0.32);
  border-radius: 22px;
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 190, 80, 0.32), transparent 44%),
    linear-gradient(145deg, rgba(255, 91, 40, 0.18), rgba(255, 255, 255, 0.04));
  color: var(--text);
  text-decoration: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 18px 50px rgba(0, 0, 0, 0.32);
}

.store-card-android {
  border-color: rgba(105, 231, 255, 0.28);
  background:
    radial-gradient(circle at 18% 0%, rgba(105, 231, 255, 0.25), transparent 44%),
    linear-gradient(145deg, rgba(51, 255, 170, 0.12), rgba(255, 255, 255, 0.04));
}

.store-card span,
.store-card em {
  color: var(--muted);
  font-style: normal;
  font-weight: 850;
}

.store-card span {
  color: #ffd45a;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.store-card-android span {
  color: #73e9ff;
}

.store-card strong {
  color: var(--text);
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  line-height: 0.95;
}

.download-fallback {
  margin: 18px 0 0;
  color: var(--muted);
}

@media (max-width: 720px) {
  .download-store-grid {
    grid-template-columns: 1fr;
  }
}

.about-page {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 160px 0 90px;
}

.about-hero {
  max-width: 980px;
}

.about-hero h1 {
  max-width: 12ch;
  margin: 28px 0 24px;
  color: var(--text);
  font-size: clamp(4rem, 10vw, 8.4rem);
  line-height: 0.9;
}

.about-hero p:not(.pill) {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(1.18rem, 2vw, 1.45rem);
  line-height: 1.55;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 76px;
}

.about-grid article,
.press-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.028));
}

.about-grid article {
  min-height: 260px;
  padding: 28px;
}

.about-grid h2,
.press-card h2 {
  margin: 32px 0 14px;
  color: var(--text);
  font-size: clamp(1.75rem, 3vw, 2.7rem);
  line-height: 1;
}

.about-grid p,
.press-card p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.press-card {
  margin-top: 18px;
  padding: 34px;
}

.press-card h2 {
  margin-top: 14px;
}

.press-card strong {
  color: var(--text);
}

.partner-qr-card .qr-placeholder {
  display: grid;
  width: 112px;
  height: 112px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 22px;
  background: linear-gradient(135deg, var(--gold), var(--orange), var(--hot));
  color: #080808;
  font-size: 2.6rem;
  font-weight: 950;
  letter-spacing: -0.04em;
  box-shadow: 0 20px 60px rgba(255, 90, 31, 0.2);
}

@media (max-width: 820px) {
  .about-page {
    padding-top: 118px;
  }

  .about-hero h1 {
    font-size: clamp(3.35rem, 15vw, 5rem);
  }

  .about-grid {
    grid-template-columns: 1fr;
    margin-top: 48px;
  }
}

@keyframes rewardBorderBreath {
  0%,
  100% {
    border-color: rgba(255, 212, 90, 0.28);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.13),
      0 0 0 1px rgba(255, 212, 90, 0.04),
      0 24px 82px rgba(255, 90, 31, 0.08);
  }

  50% {
    border-color: rgba(255, 212, 90, 0.58);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.19),
      0 0 0 1px rgba(255, 212, 90, 0.14),
      0 30px 105px rgba(255, 90, 31, 0.17);
  }
}

@keyframes rewardGlassSweep {
  0%,
  24% {
    background-position: 130% 0, 0 0;
    opacity: 0.32;
  }

  48% {
    background-position: -60% 0, 0 0;
    opacity: 0.78;
  }

  100% {
    background-position: -60% 0, 0 0;
    opacity: 0.32;
  }
}

@keyframes rewardTextGlint {
  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reward-highlight-card,
  .reward-highlight-card::after,
  .reward-highlight-card h3,
  .reward-highlight-card .shot-caption strong {
    animation: none;
  }
}

/* ================================================================
   MERCH PAGE — single-column, no side-by-side
   ================================================================ */

/* Hero: full-width, drop the 2-col grid */
.merch-hero {
  grid-template-columns: 1fr;
  align-items: start;
  min-height: auto;
}

.merch-hero h1 {
  max-width: none;
  font-size: clamp(3.4rem, 8vw, 7.6rem);
}

/* Loop card: horizontal step pills instead of a card */
.merch-loop-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding: 0;
  background: none;
  margin-top: 4px;
}

.merch-loop-card span {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.09);
  font-size: 0.875rem;
  font-weight: 900;
}

.merch-loop-card strong {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border: none;
  border-radius: 999px;
  color: var(--yellow);
  background: rgba(255, 212, 90, 0.1);
  box-shadow: 0 0 0 1px rgba(255, 212, 90, 0.22);
  font-size: 0.875rem;
  font-weight: 900;
}

/* Products: full width, cart stacks below */
.merch-store-layout {
  grid-template-columns: 1fr;
}

/* Cart: full-width 2-col layout — items left, checkout right */
.merch-cart {
  position: static;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 288px;
  column-gap: 32px;
  row-gap: 12px;
  align-items: start;
  padding: 24px 28px;
}

.merch-cart > .eyebrow {
  grid-column: 1 / -1;
}

.merch-cart > h3 {
  grid-column: 1;
}

.merch-cart-lines {
  grid-column: 1;
}

.merch-cart-total,
.merch-checkout-button,
.merch-cart-note {
  grid-column: 2;
}

@media (max-width: 860px) {
  .merch-cart {
    grid-template-columns: 1fr;
    column-gap: 0;
  }

  .merch-cart > .eyebrow,
  .merch-cart > h3,
  .merch-cart-lines,
  .merch-cart-total,
  .merch-checkout-button,
  .merch-cart-note {
    grid-column: 1;
  }
}

/* ================================================================
   PARTNER / AMBASSADOR PAGE — single-column, no side-by-side
   ================================================================ */

.partner-page .support-grid {
  grid-template-columns: 1fr;
  max-width: 960px;
}

.partner-page .legal-content {
  max-width: none;
}

.partner-page .support-mini-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.partner-page .support-card {
  padding: clamp(32px, 4vw, 52px);
}

@media (max-width: 720px) {
  .partner-page .support-mini-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* ---- Partners marquee (brushed-metal plates) ---- */
.partners-band {
  width: min(100%, 1280px);
  margin: 0 auto;
  padding: clamp(30px, 4vw, 46px) 0 clamp(26px, 3.5vw, 40px);
}
.partners-head {
  padding: 0 clamp(20px, 5vw, 64px);
  margin-bottom: clamp(16px, 2vw, 22px);
}
.partners-band .partners-head h2 {
  font-size: clamp(1.15rem, 2.1vw, 1.55rem);
  line-height: 1.15;
  margin: 6px 0 0;
  max-width: 24ch;
}
.partner-marquee {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.partner-track {
  display: flex;
  width: max-content;
  animation: partnerScroll 32s linear infinite;
}
.partner-marquee:hover .partner-track { animation-play-state: paused; }
.partner-chip {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 196px;
  height: 74px;
  margin-right: 16px;
  padding: 0 24px;
  border-radius: 14px;
  background:
    linear-gradient(115deg, rgba(255,255,255,0.6), rgba(255,255,255,0) 34%),
    linear-gradient(160deg, #c8bda6 0%, #e8e1d0 32%, #d3c9b3 56%, #e8e1d0 74%, #c2b79f 100%);
  border: 1px solid rgba(72, 60, 42, 0.42);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.7),
    inset 0 -2px 3px rgba(60,48,30,0.18),
    0 12px 28px rgba(0,0,0,0.5);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}
.partner-chip img {
  max-width: 100%;
  max-height: 46px;
  width: auto;
  object-fit: contain;
  display: block;
  margin: auto;
}
.partner-chip:hover {
  transform: translateY(-2px);
  border-color: rgba(225, 90, 34, 0.6);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.7),
    0 16px 34px rgba(0,0,0,0.55),
    0 0 0 1px rgba(225, 90, 34, 0.25);
}
@keyframes partnerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .partner-track { animation: none; flex-wrap: wrap; justify-content: center; width: 100%; gap: 16px; }
  .partner-chip { margin-right: 0; }
  .partner-chip[aria-hidden="true"] { display: none; }
}
@media (max-width: 620px) {
  .partner-chip { width: 160px; height: 64px; padding: 0 18px; margin-right: 12px; }
  .partner-chip img { max-height: 40px; }
}
