:root {
  --bg: #0d0f12;
  --bg-mid: #121416;
  --surface: #1a1a1a;
  --surface-strong: #1a1c20;
  --surface-high: #242424;
  --outline: #303030;
  --outline-soft: rgba(255, 255, 255, 0.08);
  --text: #ffffff;
  --text-muted: #9e9e9e;
  --text-dim: #6b6b6b;
  --accent: #ccff00;
  --accent-strong: #d8ff3d;
  --accent-soft: rgba(204, 255, 0, 0.1);
  --danger: #ff6b6b;
  --radius-sm: 12px;
  --radius: 16px;
  --radius-card: 24px;
  --radius-lg: 28px;
  --radius-pill: 999px;
  --font-display: "Space Grotesk", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --nav-height: 80px;
  --container: 1280px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-height) + 24px);
}

body.site-body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.site-body a {
  color: var(--accent);
  text-decoration: none;
}

body.site-body a:focus-visible,
body.site-body button:focus-visible,
body.site-body summary:focus-visible,
body.site-body input:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

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

.site-main {
  flex: 1 1 auto;
  width: 100%;
}

.site-container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

/* Navigation */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--nav-height);
  background: rgba(13, 15, 18, 0.92);
  border-bottom: 1px solid var(--outline-soft);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.site-nav__inner {
  width: min(calc(100% - 48px), var(--container));
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.site-brand,
.site-footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text) !important;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.05em;
}

.site-brand img {
  width: 46px;
  height: 46px;
  border-radius: 0;
  mix-blend-mode: screen;
}

.site-nav__links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav__link {
  padding: 10px 14px;
  border-radius: var(--radius-pill);
  color: var(--text-muted) !important;
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 180ms ease, background-color 180ms ease;
}

.site-nav__link:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text) !important;
}

/* Buttons */
.button,
.btn-lime,
.btn-ghost {
  min-height: 52px;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 220ms var(--ease), box-shadow 220ms ease, background-color 180ms ease, border-color 180ms ease;
}

.button:hover,
.btn-lime:hover,
.btn-ghost:hover {
  transform: translateY(-2px);
}

.button--primary,
.btn-lime {
  background: var(--accent);
  color: #0a0a0a !important;
  box-shadow: 0 0 0 rgba(204, 255, 0, 0);
}

.button--primary:hover,
.btn-lime:hover {
  background: var(--accent-strong);
  box-shadow: 0 12px 34px rgba(204, 255, 0, 0.18);
}

.button--secondary,
.btn-ghost {
  border-color: var(--outline);
  background: transparent;
  color: var(--text) !important;
}

.button--secondary:hover,
.btn-ghost:hover {
  border-color: rgba(204, 255, 0, 0.65);
  background: var(--accent-soft);
}

.button--small,
.btn-lime--sm {
  min-height: 44px;
  padding-inline: 22px;
  font-size: 0.82rem;
}

.button--dark {
  background: #0a0a0a;
  color: var(--text) !important;
}

.button--dark:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* Home: hero */
.landing-hero {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
  padding: 34px 0 0;
}

.landing-hero__inner {
  min-height: 500px;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1.14fr);
  align-items: center;
  gap: clamp(40px, 6vw, 92px);
}

.landing-hero__copy {
  position: relative;
  z-index: 2;
  max-width: 590px;
}

.landing-hero__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.6rem, 6.4vw, 6rem);
  font-weight: 700;
  letter-spacing: -0.065em;
  line-height: 0.91;
}

.landing-hero__title span,
.section-heading h2 span,
.connection-story__copy h2 span,
.confidence-copy h2 span,
.faq-panel h2 span {
  color: var(--accent);
}

.landing-hero__lead {
  max-width: 520px;
  margin: 30px 0 0;
  color: var(--text-muted);
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  line-height: 1.75;
}

.landing-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.trust-line {
  margin: 20px 0 0;
  color: var(--text-dim);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.trust-line span {
  margin-inline: 8px;
  color: var(--accent);
}

.landing-hero__brand {
  display: grid;
  place-items: center;
  min-height: 470px;
}

.landing-hero__brand img {
  width: min(100%, 520px);
  aspect-ratio: 1;
  border-radius: 0;
  object-fit: contain;
  filter: drop-shadow(0 24px 44px rgba(0, 0, 0, 0.35));
  animation: mascot-float 5s ease-in-out infinite;
}

.community-carousel {
  width: 100vw;
  margin-top: 24px;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  border-block: 1px solid var(--outline);
  border-radius: 0;
  background: var(--surface);
}

.community-carousel__viewport {
  width: 100%;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  cursor: grab;
  scrollbar-width: none;
}

.community-carousel__viewport::-webkit-scrollbar {
  display: none;
}

.community-carousel__viewport:active {
  cursor: grabbing;
}

.community-carousel__track {
  width: max-content;
  display: flex;
}

.community-carousel__strip {
  flex: 0 0 clamp(1180px, 125vw, 1800px);
  width: clamp(1180px, 125vw, 1800px);
  max-width: none;
  height: 300px;
  object-fit: cover;
  object-position: center 16%;
  user-select: none;
  -webkit-user-drag: none;
}

/* Home: experience */
.experience-section {
  padding: 82px 0;
  background: var(--bg-mid);
  border-top: 1px solid var(--outline-soft);
}

.section-heading {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}

.section-heading h2,
.connection-story__copy h2,
.confidence-copy h2,
.faq-panel h2,
.final-cta h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.section-heading h2 {
  font-size: clamp(2.35rem, 4.5vw, 4.4rem);
}

.section-heading > p:last-child {
  max-width: 620px;
  margin: 22px auto 0;
  color: var(--text-muted);
  font-size: 1.04rem;
}

.journey {
  margin: 52px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
  border-block: 1px solid var(--outline);
}

.journey__item {
  min-height: 195px;
  padding: 28px;
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: start;
  gap: 18px;
}

.journey__item + .journey__item {
  border-left: 1px solid var(--outline);
}

.journey__number {
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
}

.journey__icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 26px rgba(204, 255, 0, 0.12);
}

.journey__icon img {
  width: 24px;
  height: 24px;
}

.journey h3,
.principle-list strong,
.commitment-list h3 {
  margin: 0;
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 600;
}

.journey h3 {
  font-size: 1.22rem;
}

.journey p {
  margin: 10px 0 0;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.connection-story {
  margin-top: 76px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: clamp(52px, 7vw, 108px);
  align-items: center;
}

.connection-story__image {
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--outline);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
}

.connection-story__image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.connection-story__copy h2,
.confidence-copy h2,
.faq-panel h2 {
  font-size: clamp(2.35rem, 4.2vw, 4.2rem);
}

.principle-list {
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: principle;
}

.principle-list li {
  position: relative;
  padding: 22px 0 22px 54px;
  border-top: 1px solid var(--outline);
  counter-increment: principle;
}

.principle-list li::before {
  content: "0" counter(principle);
  position: absolute;
  left: 0;
  top: 22px;
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 600;
}

.principle-list strong {
  display: block;
  font-size: 1.02rem;
}

.principle-list span {
  display: block;
  margin-top: 6px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Home: confidence and FAQ */
.confidence-section {
  padding: 84px 0 74px;
  background: #090b0d;
  border-top: 1px solid var(--outline-soft);
}

.confidence-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(420px, 1.06fr);
  gap: clamp(56px, 8vw, 116px);
  align-items: start;
}

.confidence-copy__lead {
  max-width: 520px;
  margin: 24px 0 0;
  color: var(--text-muted);
  font-size: 1rem;
}

.commitment-list {
  margin-top: 28px;
}

.commitment-list article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid var(--outline);
}

.commitment-list article > span {
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 0.86rem;
  font-weight: 700;
}

.commitment-list h3 {
  font-size: 1.03rem;
}

.commitment-list p {
  margin: 7px 0 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.faq-panel {
  padding: 32px;
  border: 1px solid var(--outline);
  border-radius: var(--radius-lg);
  background: var(--surface-strong);
}

.faq-panel h2 {
  font-size: clamp(2.1rem, 3.6vw, 3.5rem);
}

.faq-list {
  margin-top: 24px;
}

.faq-list details {
  border-top: 1px solid var(--outline);
}

.faq-list details:last-child {
  border-bottom: 1px solid var(--outline);
}

.faq-list summary {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  color: var(--accent);
  font-family: var(--font-body);
  font-size: 1.35rem;
  font-weight: 400;
  transition: transform 180ms ease;
}

.faq-list details[open] summary::after {
  transform: rotate(45deg);
}

.faq-list details p {
  margin: -2px 38px 22px 0;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.final-cta {
  margin-top: 72px;
  min-height: 245px;
  padding: 28px 38px;
  display: grid;
  grid-template-columns: 210px 1fr auto;
  align-items: center;
  gap: 40px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--accent);
  color: #0a0a0a;
}

.final-cta__brand img {
  width: 174px;
  height: 174px;
  border-radius: 0;
  object-fit: contain;
  filter: drop-shadow(0 18px 32px rgba(0, 0, 0, 0.2));
}

.final-cta .eyebrow {
  color: rgba(10, 10, 10, 0.62);
}

.final-cta h2 {
  font-size: clamp(2.5rem, 4.4vw, 4.3rem);
}

.final-cta__copy > p:last-child {
  margin: 16px 0 0;
  color: rgba(10, 10, 10, 0.72);
  font-weight: 600;
}

.final-cta__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.google-play-button {
  min-width: 226px;
  min-height: 72px;
  padding: 10px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  background: #0d0f12;
  color: #ffffff !important;
  box-shadow: 0 14px 34px rgba(13, 15, 18, 0.2);
  transition: transform 220ms var(--ease), background-color 180ms ease, box-shadow 220ms ease;
}

.google-play-button:hover {
  transform: translateY(-3px);
  background: #181b1f;
  box-shadow: 0 18px 40px rgba(13, 15, 18, 0.28);
}

.google-play-button img {
  width: 32px;
  height: 36px;
  object-fit: contain;
}

.google-play-button span {
  display: grid;
  gap: 1px;
  text-align: left;
  line-height: 1;
}

.google-play-button small {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.google-play-button strong {
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 600;
  letter-spacing: -0.025em;
}

/* Footer */
.site-footer {
  padding: 48px 24px 28px;
  background: #070809;
  border-top: 1px solid var(--outline-soft);
}

.site-footer__inner {
  max-width: var(--container);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 1.2fr;
  gap: 56px;
}

.site-footer__brand {
  margin-bottom: 14px;
}

.site-footer__brand img {
  width: 44px;
  height: 44px;
  border-radius: 0;
  mix-blend-mode: screen;
}

.site-footer__tag {
  max-width: 340px;
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.site-footer h4 {
  margin: 0 0 16px;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer li + li {
  margin-top: 9px;
}

.site-footer a {
  color: var(--text-muted) !important;
  font-size: 0.88rem;
  transition: color 180ms ease;
}

.site-footer a:hover {
  color: var(--accent) !important;
}

.site-footer__copy {
  max-width: var(--container);
  margin: 38px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--outline);
  color: var(--text-dim);
  font-size: 0.78rem;
}

/* Legal and account pages */
.legal-shell {
  max-width: 860px;
  margin: 0 auto;
  padding: 56px 24px 96px;
}

.legal-doc {
  padding: 44px 40px;
  border: 1px solid var(--outline);
  border-radius: var(--radius-lg);
  background: var(--surface-strong);
}

.legal-doc h1,
.legal-doc h2 {
  margin: 0 0 30px;
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.15rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.15;
  text-align: center;
}

.legal-doc h3,
.legal-doc h4,
.legal-doc h5 {
  margin: 34px 0 12px;
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
}

.legal-doc,
.legal-doc p,
.legal-doc li,
.legal-doc .msgBox {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.75;
}

.legal-doc p {
  margin: 0 0 15px;
}

.legal-doc ul,
.legal-doc ol {
  margin: 0 0 18px;
  padding-left: 1.3rem;
}

.legal-doc li + li {
  margin-top: 7px;
}

.legal-doc strong {
  color: var(--text);
}

.legal-doc a {
  color: var(--accent);
}

.legal-doc .alert,
.legal-doc .alert-info {
  margin: 18px 0;
  padding: 16px 18px;
  border: 1px solid rgba(204, 255, 0, 0.3);
  border-radius: var(--radius);
  background: var(--accent-soft);
  color: var(--text);
}

.legal-doc .guideline-item {
  padding: 18px 0;
  border-bottom: 1px solid var(--outline);
}

.legal-doc .guideline-item:last-child {
  border-bottom: 0;
}

.legal-doc .msgBox > div + div {
  margin-top: 8px;
}

.flash-message {
  margin-bottom: 20px;
}

.flash-message .alert {
  margin: 0;
  padding: 14px 16px;
  border-radius: var(--radius);
}

.flash-message .alert-success {
  border: 1px solid rgba(204, 255, 0, 0.3);
  background: var(--accent-soft);
  color: var(--accent);
}

.flash-message .alert-danger,
.flash-message .alert-warning {
  border: 1px solid rgba(255, 107, 107, 0.35);
  background: rgba(255, 107, 107, 0.12);
  color: #ff9a9a;
}

.flash-message .alert-info {
  border: 1px solid var(--outline);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-muted);
}

.auth-shell {
  max-width: 560px;
  margin: 0 auto;
  padding: 72px 24px 96px;
}

.auth-card {
  padding: 38px 34px;
  border: 1px solid var(--outline);
  border-radius: var(--radius-lg);
  background: var(--surface-strong);
}

.auth-card h1 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.auth-card__sub {
  margin: 0 0 28px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.auth-field {
  margin-bottom: 18px;
}

.auth-field label {
  display: block;
  margin-bottom: 8px;
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.auth-field input {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid var(--outline);
  border-radius: var(--radius);
  outline: 0;
  background: var(--bg);
  color: var(--text);
  font: inherit;
}

.auth-field input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.auth-field .invalid-feedback {
  display: block;
  margin-top: 6px;
  color: var(--danger);
  font-size: 0.84rem;
}

.auth-card .button,
.auth-card .btn-lime {
  width: 100%;
  margin-top: 8px;
}

/* Motion */
@keyframes hero-rise {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes mascot-float {
  0%,
  100% {
    transform: translateY(0) rotate(-0.5deg);
  }
  50% {
    transform: translateY(-14px) rotate(0.5deg);
  }
}

.hero-animate {
  opacity: 0;
  animation: hero-rise 850ms var(--ease) forwards;
}

.hero-animate--1 {
  animation-delay: 80ms;
}

.hero-animate--2 {
  animation-delay: 160ms;
}

.hero-animate--3 {
  animation-delay: 290ms;
}

.hero-animate--4 {
  animation-delay: 420ms;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 780ms var(--ease), transform 780ms var(--ease);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero-animate,
  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* Responsive */
@media (max-width: 1080px) {
  .landing-hero__inner {
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  }

  .journey__item {
    padding: 30px 24px;
    grid-template-columns: auto 1fr;
  }

  .journey__number {
    grid-column: 1 / -1;
  }

  .final-cta {
    grid-template-columns: 170px 1fr;
  }

  .final-cta__brand img {
    width: 160px;
    height: 160px;
  }

  .final-cta__actions {
    grid-column: 2;
  }
}

@media (max-width: 860px) {
  :root {
    --nav-height: 72px;
  }

  .site-container,
  .landing-hero,
  .site-nav__inner {
    width: min(calc(100% - 32px), var(--container));
  }

  .site-nav__link {
    display: none;
  }

  .landing-hero {
    padding-top: 32px;
  }

  .landing-hero__inner {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .landing-hero__copy {
    max-width: 680px;
    padding-top: 36px;
  }

  .landing-hero__title {
    font-size: clamp(3.4rem, 12vw, 5.4rem);
  }

  .landing-hero__brand {
    min-height: 0;
  }

  .landing-hero__brand img {
    width: min(78vw, 500px);
  }

  .community-carousel__strip {
    height: 220px;
  }

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

  .journey__item {
    min-height: 0;
    grid-template-columns: auto auto 1fr;
  }

  .journey__item + .journey__item {
    border-top: 1px solid var(--outline);
    border-left: 0;
  }

  .journey__number {
    grid-column: auto;
  }

  .connection-story,
  .confidence-grid,
  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .connection-story {
    gap: 48px;
  }

  .confidence-grid {
    gap: 72px;
  }

  .final-cta {
    grid-template-columns: 150px 1fr;
    padding: 30px;
  }

  .final-cta__brand img {
    width: 140px;
    height: 140px;
  }

  .site-footer__inner {
    gap: 34px;
  }
}

@media (max-width: 580px) {
  .site-nav__inner {
    gap: 12px;
  }

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

  .site-brand img {
    width: 40px;
    height: 40px;
  }

  .button--small {
    min-height: 40px;
    padding-inline: 17px;
  }

  .landing-hero__copy {
    padding-top: 18px;
  }

  .landing-hero__title {
    font-size: clamp(3rem, 16vw, 4.3rem);
  }

  .landing-hero__lead {
    margin-top: 22px;
    line-height: 1.65;
  }

  .landing-hero__actions {
    flex-direction: column;
  }

  .landing-hero__actions .button {
    width: 100%;
  }

  .landing-hero__brand img {
    width: 100%;
  }

  .community-carousel {
    margin-top: 22px;
  }

  .community-carousel__strip {
    height: 200px;
  }

  .experience-section,
  .confidence-section {
    padding-block: 84px;
  }

  .section-heading {
    text-align: left;
  }

  .section-heading > p:last-child {
    margin-inline: 0;
  }

  .journey {
    margin-top: 48px;
  }

  .journey__item {
    padding: 26px 8px;
    grid-template-columns: 38px 46px 1fr;
    gap: 12px;
  }

  .journey__icon {
    width: 46px;
    height: 46px;
  }

  .connection-story {
    margin-top: 78px;
  }

  .connection-story__copy h2,
  .confidence-copy h2,
  .faq-panel h2 {
    font-size: clamp(2.25rem, 12vw, 3.25rem);
  }

  .faq-panel {
    padding: 28px 20px;
  }

  .faq-list summary {
    min-height: 70px;
  }

  .final-cta {
    margin-top: 78px;
    padding: 24px;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .final-cta__brand img {
    width: 132px;
    height: 132px;
  }

  .final-cta__actions {
    grid-column: auto;
  }

  .final-cta__actions .button,
  .final-cta__actions .google-play-button {
    width: 100%;
  }

  .legal-shell,
  .auth-shell {
    padding: 34px 16px 72px;
  }

  .legal-doc,
  .auth-card {
    padding: 28px 20px;
  }
}
