:root {
  --bg: #faf6f1;
  --surface: #fffaf5;
  --paper: #ffffff;
  --ink: #111111;
  --muted: #6b7280;
  --line: #e9e2da;
  --divider: #f1ece6;
  --accent: #ff6a00;
  --accent-dark: #e65b00;
  --accent-soft: #ffe3cc;
  --charcoal: #151515;
  --shadow: 0 26px 70px rgba(46, 28, 12, 0.14);
  --soft-shadow: 0 14px 34px rgba(46, 28, 12, 0.08);
  --radius: 18px;
  --radius-lg: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 0%, rgba(255, 106, 0, 0.09), transparent 30%),
    linear-gradient(180deg, #fffaf4 0, var(--bg) 64%, #fff 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

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

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

p {
  color: var(--muted);
  line-height: 1.55;
}

img {
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(233, 226, 218, 0.8);
  background: rgba(255, 250, 245, 0.9);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1240px, calc(100% - 36px));
  min-height: 72px;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo-link {
  flex: 0 0 auto;
  max-width: 156px;
  overflow: hidden;
}

.brand-logo {
  display: block;
  width: 138px;
  max-width: 138px;
  height: auto;
  max-height: 45px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 22px;
  align-items: center;
}

.nav-links a {
  color: #171717;
  font-size: 0.84rem;
  font-weight: 800;
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--accent-dark);
}

.language-select {
  display: inline-flex;
  align-items: center;
  color: #5d554f;
  font-size: 0.76rem;
  font-weight: 850;
}

.language-select select {
  min-height: 34px;
  padding: 0 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: #fff;
  font-weight: 850;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--paper);
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.button {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 0;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  color: #fff;
  background: var(--accent);
  box-shadow: 0 16px 32px rgba(255, 106, 0, 0.24);
}

.button.primary:hover {
  background: var(--accent-dark);
}

.button.secondary,
.button.outline {
  border: 1px solid var(--line);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
}

.button.dark {
  color: #fff;
  background: var(--charcoal);
}

.nav-button {
  min-height: 40px;
  padding: 0 14px;
  font-size: 0.8rem;
}

.button-with-icon::before {
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 0.68rem;
  content: "▶";
}

.hero,
.section,
.feature-strip,
.waitlist-content,
.legal-main {
  width: min(1240px, calc(100% - 36px));
  margin: 0 auto;
}

.story-section,
.visual-feature,
.social-preview {
  width: min(1240px, calc(100% - 36px));
  margin: 0 auto;
}

.hero-community {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(540px, 1.1fr);
  gap: 34px;
  align-items: center;
  min-height: 650px;
  padding: 78px 0 56px;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0 calc(50% - 50vw);
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(250, 246, 241, 0.98) 0 30%, rgba(250, 246, 241, 0.76) 48%, rgba(250, 246, 241, 0.34) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.3), rgba(250, 246, 241, 0.86)),
    url("/assets/landing/hero-motorcycle-road.jpg") 48% center / cover no-repeat;
}

.hero-photo {
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.52fr);
  min-height: 680px;
  color: #fff;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0 calc(50% - 50vw);
  z-index: -1;
}

.hero-image {
  display: block;
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  object-position: 54% center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(9, 9, 8, 0.78) 0 26%, rgba(9, 9, 8, 0.54) 48%, rgba(9, 9, 8, 0.18) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.26), rgba(0, 0, 0, 0.5));
}

.hero-photo .hero-copy {
  max-width: 760px;
}

.hero-photo .hero-copy h1 {
  max-width: 760px;
  color: #fff;
  font-size: clamp(3rem, 6vw, 5.9rem);
}

.hero-photo .hero-copy h1 strong {
  color: #fff;
}

.hero-photo .hero-promise {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 1.5vw, 1.24rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero-secondary {
  border-color: rgba(255, 255, 255, 0.42);
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.hero-waitlist-panel {
  align-self: end;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
}

.hero-waitlist-panel h2 {
  margin-bottom: 8px;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  letter-spacing: 0;
}

.hero-waitlist-panel p:not(.eyebrow) {
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 0.94rem;
}

.hero-copy {
  max-width: 650px;
}

.hero-copy h1 {
  margin-bottom: 22px;
  font-size: clamp(3.2rem, 5.3vw, 5.25rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.hero-copy h1 span,
.hero-copy h1 strong {
  display: block;
}

.hero-copy h1 strong,
.app-copy h2 span,
.clubs-copy h2 span,
.real-trips-heading h2 span,
.community-intro h2 span {
  color: var(--accent);
}

.hero-promise {
  max-width: 590px;
  margin-bottom: 26px;
  color: #2f2925;
  font-size: 1.08rem;
}

.rider-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.rider-proof span {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 14px;
  color: #39322e;
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
  font-weight: 850;
  box-shadow: 0 12px 26px rgba(40, 25, 12, 0.08);
}

.hero-product {
  min-width: 0;
}

.real-screen-cluster {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
}

.mini-map-card {
  position: relative;
  height: 176px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    linear-gradient(112deg, transparent 0 38%, rgba(130, 151, 169, 0.55) 39% 40%, transparent 41%),
    linear-gradient(22deg, transparent 0 52%, rgba(130, 151, 169, 0.48) 53% 54%, transparent 55%),
    radial-gradient(ellipse at 24% 28%, rgba(68, 143, 92, 0.18), transparent 28%),
    radial-gradient(ellipse at 74% 68%, rgba(68, 143, 92, 0.22), transparent 34%),
    radial-gradient(ellipse at 42% 62%, rgba(217, 181, 122, 0.26), transparent 24%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.62), rgba(228, 240, 232, 0.82)),
    #eef5ed;
  background-size: auto;
  overflow: hidden;
}

.mini-map-card::before,
.mini-map-card::after {
  position: absolute;
  border-radius: 999px;
  background: rgba(115, 139, 163, 0.5);
  content: "";
}

.mini-map-card::before {
  left: -24px;
  top: 112px;
  width: 180px;
  height: 5px;
  transform: rotate(-19deg);
}

.mini-map-card::after {
  right: -34px;
  top: 36px;
  width: 150px;
  height: 5px;
  transform: rotate(28deg);
}

.map-route-line {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.map-route-line path {
  fill: none;
  stroke: #9d00d7;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 12;
  filter: drop-shadow(0 2px 0 rgba(75, 0, 108, 0.8)) drop-shadow(0 4px 0 rgba(255, 255, 255, 0.58));
}

.road-label {
  position: absolute;
  z-index: 4;
  padding: 2px 6px;
  border-radius: 6px;
  color: #1d2e1d;
  background: rgba(255, 255, 255, 0.88);
  font-size: 0.64rem;
  font-weight: 950;
  box-shadow: 0 4px 10px rgba(44, 31, 19, 0.1);
}

.road-c14 {
  right: 14px;
  top: 28px;
}

.road-lv {
  left: 18px;
  bottom: 18px;
  color: #fff;
  background: #5c05a9;
}

.road-pass {
  left: 52px;
  top: 16px;
  color: #55656a;
}

.waypoint {
  position: absolute;
  z-index: 5;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border: 2px solid #fff;
  border-radius: 50%;
  color: #fff;
  background: #b600ff;
  font-size: 0.72rem;
  font-weight: 950;
  box-shadow: 0 7px 14px rgba(102, 0, 148, 0.24);
}

.waypoint-one {
  left: 22px;
  bottom: 24px;
}

.waypoint-two {
  left: 104px;
  top: 12px;
}

.waypoint-three {
  right: 18px;
  bottom: 46px;
}

.bike-marker {
  position: absolute;
  right: 30px;
  bottom: 30px;
  z-index: 6;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 2px solid #fff;
  border-radius: 50%;
  color: #fff;
  background: #2f80ff;
  font-size: 0.7rem;
  box-shadow: 0 0 0 9px rgba(47, 128, 255, 0.18);
}

.route-squiggle {
  position: absolute;
  left: 24px;
  top: 48px;
  width: 150px;
  height: 88px;
  border-top: 8px solid var(--accent);
  border-right: 8px solid var(--accent);
  border-bottom: 8px solid var(--accent);
  border-left: 0;
  border-radius: 54px 78px 62px 22px;
  transform: rotate(10deg);
  filter: drop-shadow(0 7px 0 rgba(255, 255, 255, 0.84));
}

.pin {
  position: absolute;
  width: 18px;
  height: 18px;
  border: 4px solid #fff;
  border-radius: 50%;
  background: var(--accent);
}

.pin-one {
  left: 38px;
  top: 77px;
}

.pin-two {
  right: 26px;
  bottom: 42px;
}

.club-social-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.club-social-meta span {
  padding: 6px 8px;
  border-radius: 999px;
  color: #6f3917;
  background: var(--accent-soft);
  font-size: 0.68rem;
  font-weight: 900;
}

.member-row {
  display: flex;
  align-items: center;
  margin-top: 10px;
}

.member-row span,
.member-row small {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  margin-left: -5px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: var(--accent-soft);
}

.member-row span:first-child {
  margin-left: 0;
}

.member-row small {
  color: var(--accent-dark);
  font-size: 0.62rem;
  font-weight: 900;
}

.feature-strip-wide {
  padding: 24px 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--soft-shadow);
}

.feature-strip-wide h2 {
  margin-bottom: 22px;
  text-align: center;
  font-size: clamp(1.45rem, 2.1vw, 2rem);
}

.feature-row {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.action-strip {
  margin-top: -26px;
  position: relative;
  z-index: 2;
}

.action-strip .feature-row {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.feature-row article {
  display: grid;
  gap: 6px;
  justify-items: center;
  padding: 8px 14px;
  text-align: center;
}

.feature-row article + article {
  border-left: 1px solid var(--line);
}

.line-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--accent);
  font-size: 1.5rem;
}

.feature-row strong {
  font-size: 0.88rem;
}

.feature-row p {
  margin: 0;
  font-size: 0.76rem;
  line-height: 1.35;
}

.section {
  padding: 34px 0;
}

.story-section-intro {
  padding: 84px 0 28px;
}

.section-heading {
  max-width: 740px;
}

.centered {
  margin-inline: auto;
  text-align: center;
}

.visual-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 42px;
  align-items: center;
  padding: 56px 0;
}

.visual-feature-story,
.visual-feature-scenic {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
}

.visual-feature-copy {
  max-width: 520px;
}

.visual-feature-copy h2,
.social-preview-copy h2 {
  font-size: clamp(2rem, 3.6vw, 3.55rem);
}

.visual-feature-copy p,
.social-preview-copy p,
.section-heading p {
  font-size: 1.02rem;
}

.visual-feature-media {
  margin: 0;
}

.visual-feature-media img,
.community-image img {
  display: block;
  width: 100%;
  min-height: 440px;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 24px 70px rgba(34, 24, 16, 0.16);
}

.visual-feature-routes .visual-feature-media img {
  object-position: center;
}

.visual-feature-story .visual-feature-media img {
  object-position: center 42%;
}

.visual-feature-scenic .visual-feature-media img {
  object-position: center 48%;
}

.social-preview {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.1fr);
  gap: 34px;
  align-items: center;
  padding: 64px 0;
}

.social-preview-copy {
  max-width: 480px;
}

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

.preview-card {
  display: grid;
  gap: 8px;
  min-height: 168px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--soft-shadow);
}

.preview-card span {
  color: var(--accent-dark);
  font-size: 0.74rem;
  font-weight: 950;
  text-transform: uppercase;
}

.preview-card strong {
  font-size: 1.15rem;
}

.preview-card p {
  margin: 0;
  font-size: 0.92rem;
}

.community-image {
  grid-column: 1 / -1;
  margin: 4px 0 0;
}

.community-image img {
  min-height: 360px;
}

.screenshots-section {
  padding-top: 46px;
}

.screenshot-rail {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
}

.screenshot-rail-compact {
  grid-template-columns: repeat(2, minmax(0, 300px));
  justify-content: center;
}

.app-shot {
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 10px;
  min-width: 0;
  margin: 0;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(180deg, #fff, #fff7f0);
  box-shadow: var(--soft-shadow);
}

.app-shot img {
  display: block;
  width: 100%;
  aspect-ratio: 1284 / 2778;
  border: 5px solid #111;
  border-radius: 24px;
  object-fit: cover;
  background: #111;
}

.app-shot figcaption {
  color: #3a3029;
  font-size: 0.82rem;
  font-weight: 950;
  text-align: center;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent-dark);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow.light {
  color: rgba(255, 255, 255, 0.82);
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 3.25vw, 3.2rem);
  line-height: 1.03;
  letter-spacing: -0.025em;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.08rem;
  line-height: 1.16;
}

.community-section {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 2.8fr);
  gap: 28px;
  align-items: stretch;
}

.community-intro,
.app-copy,
.clubs-copy,
.real-trips-heading {
  min-width: 0;
}

.community-intro {
  display: grid;
  align-content: center;
  max-width: 300px;
}

.community-intro h2 {
  max-width: 285px;
  font-size: clamp(1.65rem, 2.2vw, 2.2rem);
  line-height: 1.08;
}

.app-copy h2,
.clubs-copy h2,
.real-trips-heading h2 {
  font-size: clamp(1.9rem, 3vw, 2.7rem);
}

.nowrap {
  white-space: nowrap;
}

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

.social-card,
.club-card,
.challenge-card,
.scope-grid article,
.legal-card,
.support-card,
.step-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--soft-shadow);
}

.social-card {
  padding: 12px;
}

.card-author {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
}

.card-author > span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: #fff;
  background: var(--accent);
  font-weight: 950;
}

.card-author strong {
  display: grid;
  min-width: 0;
  font-size: 0.82rem;
}

.card-author small {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
}

.card-author b {
  color: var(--muted);
  font-size: 0.8rem;
}

.social-card img {
  display: block;
  width: 100%;
  height: 152px;
  border-radius: 12px;
  object-fit: cover;
}

.social-card p {
  margin: 10px 0 0;
  color: #3a332e;
  font-size: 0.82rem;
  font-weight: 720;
  line-height: 1.35;
}

.social-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: space-between;
  margin-top: 10px;
  font-size: 0.78rem;
}

.social-meta span {
  color: #665c55;
  font-weight: 850;
}

.app-section,
.clubs-goals-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 24px;
  align-items: stretch;
}

.app-section {
  padding-top: 10px;
}

.app-copy,
.clubs-copy {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--soft-shadow);
}

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

.check-list li {
  position: relative;
  padding-left: 26px;
  color: #332c27;
  font-weight: 760;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 1px;
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  color: var(--accent);
  font-size: 0.7rem;
  content: "✓";
}

.route-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 106, 0, 0.06), transparent 48%),
    #fff;
  box-shadow: var(--soft-shadow);
}

.route-feature-card {
  display: grid;
  gap: 10px;
  align-content: start;
  min-height: 180px;
  padding: 18px;
  border: 1px solid rgba(233, 226, 218, 0.88);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.86);
}

.route-feature-card h3 {
  margin: 0;
}

.route-feature-card p {
  margin: 0;
  font-size: 0.9rem;
}

.club-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}

.club-card,
.challenge-card {
  padding: 14px;
}

.club-card img {
  display: block;
  width: 100%;
  height: 150px;
  border-radius: 14px;
  object-fit: cover;
}

.club-card h3 {
  margin-top: 14px;
}

.club-card p {
  min-height: 48px;
  font-size: 0.88rem;
}

.challenge-card {
  display: grid;
  align-content: center;
  min-height: 100%;
  background:
    radial-gradient(circle at 82% 16%, rgba(255, 106, 0, 0.14), transparent 30%),
    #fffaf5;
}

.badge-icon {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  margin-bottom: 18px;
  border: 6px solid #3b332e;
  border-radius: 22px;
  color: var(--accent);
  background: linear-gradient(145deg, #fff, #ffe3cc);
  font-size: 2rem;
  font-weight: 950;
  box-shadow: var(--soft-shadow);
}

.progress {
  height: 8px;
  margin: 16px 0 8px;
  border-radius: 999px;
  background: #f0dfcf;
}

.progress span {
  display: block;
  width: 64%;
  height: 100%;
  border-radius: inherit;
  background: var(--accent);
}

.beta-note {
  margin: 18px 0 0;
  padding: 14px;
  border: 1px solid rgba(255, 106, 0, 0.22);
  border-radius: 14px;
  background: var(--accent-soft);
  color: #6f3917;
  font-size: 0.9rem;
}

.real-trips-strip {
  display: grid;
  grid-template-columns: minmax(230px, 0.48fr) minmax(0, 1.52fr);
  gap: 22px;
  align-items: stretch;
}

.real-trip-pill-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.real-trip-pill-row article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--soft-shadow);
}

.real-trip-pill-row p {
  margin: 6px 0 0;
  font-size: 0.82rem;
}

.lower-photo-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 1fr;
  gap: 14px;
}

.lower-photo-grid img {
  display: block;
  width: 100%;
  height: 210px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--soft-shadow);
}

.lower-photo-grid img:first-child {
  object-position: center 58%;
}

.nav-turn,
.nav-distance {
  position: absolute;
  z-index: 5;
  color: #111;
  font-weight: 950;
}

.nav-turn {
  left: 12px;
  top: 10px;
  font-size: 1.5rem;
}

.nav-distance {
  left: 50px;
  top: 14px;
  font-size: 0.9rem;
}

.moving-bike {
  right: 16px;
  bottom: 38px;
  background: #111;
  box-shadow: 0 0 0 9px rgba(157, 0, 215, 0.18);
}

.beta-honesty,
.responsible-section {
  padding-top: 24px;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 26px;
}

.section-heading.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

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

.scope-grid article {
  min-height: 198px;
  padding: 20px;
}

.scope-grid span {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 6px 8px;
  border-radius: 999px;
  color: var(--accent-dark);
  background: var(--accent-soft);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.scope-grid p {
  margin-bottom: 0;
  font-size: 0.92rem;
}

.pricing-section {
  padding-top: 28px;
}

.pricing-note {
  max-width: 620px;
  margin: 14px auto 0;
  color: #786f67;
  font-size: 0.86rem;
  font-weight: 760;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--soft-shadow);
}

.pricing-card.recommended-plan {
  border-color: rgba(255, 106, 0, 0.42);
  background:
    linear-gradient(180deg, rgba(255, 246, 239, 0.95), #fff 42%),
    #fff;
  box-shadow: 0 22px 54px rgba(255, 106, 0, 0.14);
}

.pricing-card-header {
  display: grid;
  gap: 7px;
  margin-bottom: 18px;
}

.plan-label {
  margin: 0;
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2rem, 3vw, 2.55rem);
  line-height: 1;
}

.pricing-card h3 span {
  margin-left: 4px;
  color: #6f6760;
  font-size: 0.95rem;
  font-weight: 850;
}

.pricing-card-header > span {
  color: #6c645d;
  font-size: 0.94rem;
  font-weight: 760;
}

.plan-badge {
  align-self: flex-start;
  margin-bottom: 18px;
  padding: 7px 10px;
  border-radius: 999px;
  color: #fff;
  background: var(--accent);
  font-size: 0.74rem;
  font-weight: 950;
}

.muted-badge {
  color: #6f3917;
  background: var(--accent-soft);
}

.pricing-button {
  width: 100%;
  margin: 2px 0 20px;
}

.pricing-card ul {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pricing-card li {
  position: relative;
  padding-left: 24px;
  color: #342d28;
  font-size: 0.94rem;
  font-weight: 760;
  line-height: 1.35;
}

.pricing-card li::before {
  position: absolute;
  left: 0;
  top: 0.05em;
  color: var(--accent);
  content: "✓";
  font-weight: 950;
}

.waitlist-band {
  margin-top: 28px;
  border-top: 1px solid rgba(255, 106, 0, 0.18);
  border-bottom: 1px solid rgba(255, 106, 0, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.56)),
    radial-gradient(circle at 12% 24%, rgba(255, 106, 0, 0.16), transparent 30%),
    linear-gradient(135deg, #fff3e9, #fffaf5);
}

.waitlist-content {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.76fr);
  gap: 40px;
  align-items: center;
  padding: 54px 0;
}

.waitlist-content h2 {
  margin-bottom: 10px;
}

.waitlist-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.contact-method-selector {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  border: 0;
  margin: 0;
}

.contact-method-selector legend {
  width: 100%;
  margin-bottom: 2px;
  color: #3d352f;
  font-size: 0.8rem;
  font-weight: 900;
}

.contact-method-selector label {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: #514840;
  font-size: 0.86rem;
  font-weight: 900;
  cursor: pointer;
}

.contact-method-selector label:has(input:checked) {
  border-color: rgba(255, 106, 0, 0.72);
  background: #fff3e9;
  color: #231f1b;
}

.contact-method-selector input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

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

.field[hidden],
.phone-fields[hidden] {
  display: none;
}

.field label {
  color: #3d352f;
  font-size: 0.8rem;
  font-weight: 900;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--ink);
  background: #fff;
}

.phone-fields {
  display: grid;
  grid-template-columns: minmax(118px, 0.45fr) minmax(180px, 1fr);
  gap: 12px;
}

.country-code-field select {
  padding-right: 12px;
}

.field textarea {
  padding-top: 12px;
}

.waitlist-form .button {
  align-self: end;
  min-height: 48px;
}

.honeypot-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.consent-field {
  grid-column: 1 / -1;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #514840;
  font-size: 0.84rem;
  font-weight: 750;
  line-height: 1.4;
}

.consent-field input {
  width: 18px;
  height: 18px;
  margin-top: 1px;
  accent-color: var(--accent);
  flex: 0 0 auto;
}

.form-note,
.status-message {
  grid-column: 1 / -1;
}

.form-note {
  margin: 0;
  color: #796f68;
  font-size: 0.84rem;
}

.status-message {
  min-height: 20px;
  margin: 0;
  color: var(--accent-dark);
  font-weight: 850;
}

.footer {
  padding: 46px 0 112px;
  background: #fff;
}

.footer-inner {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 38px;
  width: min(1240px, calc(100% - 36px));
  margin: 0 auto;
}

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

.footer-columns div {
  display: grid;
  gap: 9px;
  align-content: start;
}

.footer-columns strong {
  margin-bottom: 6px;
  font-size: 0.86rem;
}

.footer-columns a {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 750;
  text-decoration: none;
}

.footer-columns a:hover {
  color: var(--accent-dark);
}

.footer-simple {
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 0;
  align-items: center;
  justify-content: flex-end;
  color: var(--muted);
}

.footer-links span,
.footer-links a {
  font-size: 0.88rem;
  font-weight: 800;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
}

.footer-links a::before {
  margin: 0 12px;
  color: #c7bdb3;
  content: "·";
}

.footer-links a:hover {
  color: var(--accent-dark);
}

.legal-page {
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 106, 0, 0.08), transparent 30%),
    linear-gradient(180deg, #fffaf4 0, var(--bg) 100%);
}

.legal-nav {
  min-height: 72px;
}

.legal-main {
  width: min(900px, calc(100% - 36px));
  padding: 54px 0 76px;
}

.legal-hero {
  max-width: 800px;
  margin-bottom: 28px;
}

.legal-hero h1,
.legal-main > h1 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 3.3vw, 3rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
}

.legal-intro,
.legal-main > p {
  max-width: 780px;
}

.legal-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 22px 0;
}

.legal-summary article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--soft-shadow);
}

.legal-summary span {
  display: block;
  margin-bottom: 8px;
  color: var(--accent-dark);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.legal-summary strong {
  display: block;
  line-height: 1.35;
}

.legal-grid,
.support-grid,
.steps-grid {
  display: grid;
  gap: 18px;
}

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

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

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

.legal-card,
.support-card,
.step-card {
  padding: 22px;
}

.legal-card {
  padding: clamp(22px, 4vw, 34px);
}

.legal-card section + section {
  margin-top: 26px;
  padding-top: 24px;
  border-top: 1px solid var(--divider);
}

.legal-card h2,
.support-card h2,
.step-card h2 {
  font-size: 1.18rem;
  line-height: 1.2;
}

.legal-card li,
.support-card li,
.step-card li {
  color: var(--muted);
  line-height: 1.55;
}

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

.legal-page .support-grid,
.legal-page .steps-grid {
  margin-top: 22px;
}

@media (max-width: 1080px) {
  .nav-links {
    gap: 14px;
  }

  .hero-community,
  .app-section,
  .clubs-goals-section,
  .real-trips-strip,
  .hero-photo,
  .visual-feature,
  .visual-feature-story,
  .visual-feature-scenic,
  .social-preview {
    grid-template-columns: 1fr;
  }

  .hero-community {
    padding-top: 52px;
  }

  .feature-row,
  .social-card-grid,
  .action-strip .feature-row,
  .social-preview-grid,
  .screenshot-rail,
  .scope-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-waitlist-panel {
    align-self: start;
    max-width: 430px;
  }

  .feature-row article:nth-child(odd) {
    border-left: 0;
  }

  .community-section {
    grid-template-columns: 1fr;
  }

  .real-trip-pill-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lower-photo-grid {
    grid-template-columns: 1fr 1fr;
  }

  .lower-photo-grid img:first-child {
    grid-column: 1 / -1;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-simple {
    justify-items: start;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 820px) {
  .menu-button {
    display: block;
  }

  .nav {
    min-height: 68px;
  }

  .nav-links {
    position: fixed;
    top: 68px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
  }

  body.menu-open .nav-links {
    display: flex;
  }

  .nav-links a,
  .language-select,
  .nav-links .button {
    width: 100%;
    justify-content: center;
  }

  .hero,
  .section,
  .feature-strip,
  .story-section,
  .visual-feature,
  .social-preview,
  .waitlist-content,
  .legal-main {
    width: min(100% - 28px, 1240px);
  }

  .hero-community {
    min-height: auto;
    padding: 42px 0 32px;
  }

  .hero-photo {
    min-height: 760px;
    padding: 54px 0 32px;
  }

  .hero-background {
    background:
      linear-gradient(180deg, rgba(250, 246, 241, 0.98) 0 34%, rgba(250, 246, 241, 0.78) 68%, rgba(250, 246, 241, 0.94) 100%),
      url("/assets/landing/hero-motorcycle-road.jpg") 44% top / cover no-repeat;
  }

  .hero-image {
    object-position: 52% center;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(8, 8, 7, 0.76) 0 38%, rgba(8, 8, 7, 0.44) 66%, rgba(8, 8, 7, 0.72) 100%);
  }

  .hero-copy h1 {
    font-size: clamp(2.55rem, 11vw, 4.1rem);
  }

  .hero-photo .hero-copy h1 {
    font-size: clamp(2.7rem, 12vw, 4.3rem);
  }

  .hero-photo .hero-actions {
    display: grid;
    justify-items: start;
  }

  .hero-photo .hero-secondary {
    min-height: auto;
    padding: 0;
    border: 0;
    border-radius: 0;
    color: rgba(255, 255, 255, 0.9);
    background: transparent;
    box-shadow: none;
    text-decoration: underline;
    text-underline-offset: 4px;
  }

  .hero-photo .hero-waitlist-panel {
    margin-top: 300px;
  }

  .action-strip {
    margin-top: 0;
  }

  .story-section-intro,
  .visual-feature,
  .social-preview {
    padding: 42px 0;
  }

  .visual-feature-story .visual-feature-media {
    order: 2;
  }

  .visual-feature-media img,
  .community-image img {
    min-height: 320px;
  }

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

  .feature-row,
  .social-card-grid,
  .action-strip .feature-row,
  .social-preview-grid,
  .screenshot-rail,
  .club-card-grid,
  .scope-grid,
  .pricing-grid,
  .real-trip-pill-row,
  .lower-photo-grid,
  .footer-columns,
  .legal-grid,
  .legal-summary,
  .support-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .app-shot {
    width: min(100%, 320px);
    margin: 0 auto;
  }

  .feature-row article {
    border-left: 0 !important;
    border-top: 1px solid var(--line);
  }

  .feature-row article:first-child {
    border-top: 0;
  }

  .waitlist-content,
  .waitlist-form {
    grid-template-columns: 1fr;
  }

  .phone-fields {
    grid-template-columns: 1fr;
  }

  .waitlist-form .button {
    width: 100%;
  }

}

@media (max-width: 480px) {
  .brand-logo {
    width: 118px;
  }

  .rider-proof span {
    width: 100%;
    text-align: center;
  }

  .real-screen-cluster,
  .route-feature-grid {
    grid-template-columns: 1fr;
  }

  .footer-links {
    display: flex;
    line-height: 1.4;
  }

  .footer-links a::before {
    margin: 0 8px;
  }
}

/* Strava-inspired landing refresh */
.word-brand {
  color: var(--ink);
  font-size: 1.45rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-header {
  background: rgba(255, 255, 255, 0.92);
}

.landing-hero {
  position: relative;
  display: grid;
  align-items: end;
  width: auto;
  min-height: calc(100vh - 72px);
  min-height: calc(100svh - 72px);
  margin: 0;
  padding: 92px max(18px, calc((100vw - 1240px) / 2)) 70px;
  overflow: hidden;
  color: #fff;
}

.landing-hero picture,
.landing-hero-image,
.landing-hero-overlay {
  position: absolute;
  inset: 0;
}

.landing-hero picture {
  z-index: -2;
}

.landing-hero-image {
  display: block;
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
}

.landing-hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.76) 0 28%, rgba(0, 0, 0, 0.48) 48%, rgba(0, 0, 0, 0.12) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.58));
}

.landing-hero-content {
  width: min(720px, 100%);
}

.landing-hero h1 {
  margin-bottom: 22px;
  color: #fff;
  font-size: clamp(3.1rem, 7vw, 6.8rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.landing-hero .hero-promise {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.06rem, 1.6vw, 1.28rem);
}

.hero-text-link {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.action-strip,
.intro-section,
.visual-band,
.community-band,
.waitlist-cta {
  width: min(1240px, calc(100% - 36px));
  margin: 0 auto;
}

.action-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  padding: 0;
  border-radius: 0;
  background: var(--line);
  transform: translateY(-1px);
}

.action-strip article {
  display: grid;
  gap: 12px;
  min-height: 148px;
  padding: 24px;
  background: #fff;
}

.action-strip span {
  color: var(--accent-dark);
  font-size: 0.72rem;
  font-weight: 950;
}

.action-strip strong {
  max-width: 160px;
  color: var(--ink);
  font-size: clamp(1.05rem, 1.7vw, 1.5rem);
  line-height: 1.05;
}

.intro-section {
  padding: 86px 0 42px;
}

.intro-section .section-heading {
  max-width: 830px;
}

.intro-section h2,
.visual-copy h2,
.community-copy h2,
.waitlist-cta h2 {
  font-size: clamp(2.2rem, 4.8vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.visual-band {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 48px;
  align-items: center;
  padding: 72px 0;
}

.visual-band-story,
.visual-band-safety {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
}

.visual-copy {
  max-width: 540px;
}

.visual-copy p,
.community-copy p {
  font-size: 1.04rem;
}

.visual-media,
.community-media {
  margin: 0;
}

.visual-media img,
.community-media img {
  display: block;
  width: 100%;
  height: min(72vh, 680px);
  min-height: 430px;
  border-radius: 0;
  object-fit: cover;
  box-shadow: 0 26px 80px rgba(20, 15, 10, 0.18);
}

.visual-band-routes .visual-media img,
.visual-band-safety .visual-media img {
  object-position: center;
}

.visual-band-story .visual-media img {
  height: min(64vh, 610px);
  object-position: center;
}

.check-list {
  margin-top: 22px;
}

.community-band {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 42px;
  align-items: center;
  margin-top: 46px;
  padding: 54px;
  overflow: hidden;
  color: #fff;
  background: #101010;
}

.community-copy,
.community-media {
  position: relative;
  z-index: 1;
}

.community-copy h2,
.community-copy p {
  color: #fff;
}

.community-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
}

.community-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.community-cards article {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
}

.community-cards span {
  color: #ffb06d;
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.community-cards strong {
  display: block;
  margin: 8px 0;
  color: #fff;
  font-size: 1.12rem;
}

.community-cards p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.92rem;
}

.community-media img {
  height: min(68vh, 620px);
}

.waitlist-cta {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  margin-top: 54px;
  padding: 42px;
  color: #fff;
  background: var(--charcoal);
}

.waitlist-cta h2 {
  max-width: 760px;
  margin: 0;
  color: #fff;
}

.waitlist-band {
  margin-top: 0;
}

.waitlist-band .eyebrow.light,
.waitlist-cta .eyebrow.light,
.landing-hero .eyebrow.light,
.community-band .eyebrow.light {
  color: #ffb06d;
}

.footer-brand {
  font-size: 1.15rem;
}

@media (max-width: 980px) {
  .landing-hero {
    align-items: end;
    min-height: 760px;
    padding-top: 80px;
  }

  .landing-hero-overlay {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.78)),
      linear-gradient(90deg, rgba(0, 0, 0, 0.2), transparent);
  }

  .landing-hero-image {
    object-position: 66% center;
  }

  .landing-hero h1 {
    font-size: clamp(3rem, 13vw, 4.8rem);
  }

  .hero-actions {
    display: grid;
    justify-items: start;
  }

  .hero-text-link {
    padding-top: 4px;
  }

  .action-strip {
    grid-template-columns: 1fr;
  }

  .action-strip article {
    min-height: auto;
    grid-template-columns: 42px 1fr;
    align-items: center;
    padding: 18px 20px;
  }

  .visual-band,
  .visual-band-story,
  .visual-band-safety,
  .community-band {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 48px 0;
  }

  .visual-band-story .visual-media {
    order: 2;
  }

  .community-band {
    width: 100%;
    padding: 44px 18px;
  }

  .community-cards {
    grid-template-columns: 1fr;
  }

  .visual-media img,
  .community-media img {
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .visual-band-routes .visual-media img,
  .visual-band-safety .visual-media img {
    aspect-ratio: 4 / 5;
  }

  .waitlist-cta {
    display: grid;
    padding: 30px 22px;
  }
}

@media (max-width: 760px) {
  .nav {
    width: min(100% - 28px, 1240px);
  }

  .intro-section,
  .visual-band,
  .waitlist-cta {
    width: auto;
    margin-right: 18px;
    margin-left: 18px;
  }

  .landing-hero {
    min-height: calc(100svh - 72px);
    padding-right: 18px;
    padding-bottom: 42px;
    padding-left: 18px;
  }

  .landing-hero .button.primary {
    min-width: 190px;
  }

  .landing-hero .hero-promise {
    font-size: 1rem;
  }

  .intro-section h2,
  .visual-copy h2,
  .community-copy h2,
  .waitlist-cta h2 {
    font-size: clamp(2.05rem, 10vw, 3.3rem);
  }
}
