@import url('https://fonts.googleapis.com/css2?family=Exo+2:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wdth,wght@12..96,75..100,200..800&family=Manrope:wght@400;600;700&display=swap');

:root {
  --landing-bg: #060B14;
  --landing-surface: #0A1020;
  --landing-card: #0D1525;
  --landing-card-hi: #101A2E;
  --landing-teal: #03C1B0;
  --landing-teal-hover: #05D7C4;
  --landing-teal-pressed: #029E91;
  --landing-teal-text: #041014;
  --landing-purple: #7C5CFF;
  --landing-border: rgba(255, 255, 255, 0.07);
  --landing-border-teal: rgba(6, 193, 176, 0.25);
  --landing-text: #E8EEFF;
  --landing-muted: #8892A4;
  --landing-glass: rgba(13, 21, 48, 0.55);
  --landing-gradient: linear-gradient(135deg, var(--landing-teal) 0%, #7C5CFF 100%);
  --landing-gradient-soft: linear-gradient(135deg, rgba(6, 193, 176, 0.15) 0%, rgba(124, 92, 255, 0.15) 100%);
}

@property --connected-tracking-border-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.landing-home {
  margin: 0;
  min-height: 100vh;
  background: var(--landing-bg);
  color: var(--landing-text);
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
}

body.landing-home h1,
body.landing-home h2,
body.landing-home h3 {
  font-family: 'Exo 2', system-ui, sans-serif;
}

.landing-shell {
  min-height: 100vh;
  overflow: hidden;
  background: var(--landing-bg);
}

.landing-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(6, 11, 20, 0.92);
  border-bottom: 1px solid var(--landing-border);
  backdrop-filter: blur(20px);
}

.landing-nav__inner {
  max-width: 1200px;
  height: 68px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.landing-brand__logo {
  display: block;
  width: 180px;
  max-width: 38vw;
  height: auto;
}

.landing-nav__links,
.landing-nav__actions {
  display: flex;
  align-items: center;
}

.landing-nav__links { gap: 4px; }
.landing-nav__actions { gap: 10px; }

.landing-nav__links a {
  padding: 8px 14px;
  border-radius: 8px;
  color: var(--landing-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s, background 0.2s;
}

.landing-nav__links a:hover {
  color: var(--landing-text);
  background: rgba(255, 255, 255, 0.05);
}

.landing-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 10px;
  border: 1px solid transparent;
  color: var(--landing-text);
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s, box-shadow 0.2s, background 0.2s, border-color 0.2s;
}

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

.landing-button--small { padding: 8px 14px; font-size: 13px; }
.landing-button--large { padding: 14px 36px; font-size: 16px; }

.landing-button--primary {
  color: var(--landing-teal-text);
  background: var(--landing-teal);
  border-color: var(--landing-teal);
  box-shadow: 0 8px 32px rgba(3, 193, 176, 0.24);
}

.landing-button--primary:hover {
  background: var(--landing-teal-hover);
  border-color: var(--landing-teal-hover);
  opacity: 1;
  box-shadow: 0 8px 32px rgba(3, 193, 176, 0.35);
}

.landing-button--primary:active {
  background: var(--landing-teal-pressed);
  border-color: var(--landing-teal-pressed);
}

.landing-button--secondary {
  color: var(--landing-text);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.12);
}

.landing-button--secondary:hover {
  background: rgba(6, 193, 176, 0.1);
  border-color: rgba(6, 193, 176, 0.35);
}

.landing-hero {
  position: relative;

  /*
   * Keep the immersive scene close to one visible
   * viewport, accounting for the 68px sticky nav.
   */
  height: min(
    880px,
    calc(100vh - 68px)
  );

  height: min(
    880px,
    calc(100svh - 68px)
  );

  min-height: 720px;

  display: flex;
  align-items: stretch;
  justify-content: center;
  overflow: hidden;
}

.landing-hero__background {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.landing-grid {
  position: absolute;
  inset: -60px;
  background-image:
    linear-gradient(rgba(6, 193, 176, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 193, 176, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: landing-grid-drift 20s linear infinite;
}

.landing-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.landing-orb--teal {
  top: 30%;
  left: 20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(6, 193, 176, 0.07) 0%, transparent 70%);
  transform: translate(-50%, -50%);
}

.landing-orb--purple {
  top: 60%;
  right: 10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(124, 92, 255, 0.09) 0%, transparent 70%);
  transform: translate(30%, -50%);
}

.landing-hero__inner {
  position: relative;
  z-index: 2;

  display: grid;
  place-items: center;

  width: 100%;
  max-width: 1000px;
  height: 100%;

  margin: 0 auto;
  padding:
    clamp(72px, 9vh, 96px)
    24px
    clamp(48px, 6vh, 64px);

  text-align: center;
  pointer-events: none;
}

.landing-hero__copy {
  width: min(100%, 900px);

  /*
   * Keep the copy slightly above mathematical
   * centre. Do not lower it to chase the ring.
   */
  transform: translateY(-4%);
}

.landing-hero__copy
.landing-hero-wordmark {
  margin-bottom: 12px;
}

.landing-hero__copy h1 {
  margin-bottom: 22px;

  text-shadow:
    0 3px 24px
    rgba(3, 10, 21, 0.72);
}

.landing-hero__copy
.landing-hero__lede {
  margin-bottom: 0;

  text-shadow:
    0 2px 16px
    rgba(3, 10, 21, 0.7);
}

.landing-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: 20px;
  color: var(--landing-teal);
  background: rgba(6, 193, 176, 0.12);
  border: 1px solid rgba(6, 193, 176, 0.25);
  font: 600 11px/1 'JetBrains Mono', monospace;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.landing-tag--hero {
  margin-bottom: 20px;
  font-size: 12px;
}

.landing-tag--purple {
  color: #9B7FFF;
  background: rgba(124, 92, 255, 0.12);
  border-color: rgba(124, 92, 255, 0.25);
}

.landing-hero h1 {
  margin: 0 0 24px;
  font-size: clamp(38px, 6vw, 76px);
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 1.05;
}

.landing-stats p {
  background: var(--landing-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.landing-hero-heading-line {
  display: block;
}

.landing-hero-heading-line--primary {
  color: #f8fafc;
  -webkit-text-fill-color: #f8fafc;
}

.landing-hero-heading-line--secondary {
  color: #a5b4fc;
  -webkit-text-fill-color: #a5b4fc;

  font-weight: 700;
  pointer-events: auto;
}

.landing-hero-bubble-char {
  display: inline-block;

  color: inherit;
  -webkit-text-fill-color: currentColor;

  font-weight: 700;

  transition:
    0.35s font-weight,
    0.35s color;
}

.landing-hero-bubble-char:hover {
  color: #eef2ff;
  -webkit-text-fill-color: #eef2ff;

  font-weight: 900;
}

/* To the right */

.landing-hero-bubble-char:hover
+ .landing-hero-bubble-char {
  color: #c7d2fe;
  -webkit-text-fill-color: #c7d2fe;

  font-weight: 800;
}

.landing-hero-bubble-char:hover
+ .landing-hero-bubble-char
+ .landing-hero-bubble-char {
  color: #a5b4fc;
  -webkit-text-fill-color: #a5b4fc;

  font-weight: 700;
}

/* To the left */

.landing-hero-bubble-char:has(
  + .landing-hero-bubble-char:hover
) {
  color: #c7d2fe;
  -webkit-text-fill-color: #c7d2fe;

  font-weight: 800;
}

.landing-hero-bubble-char:has(
  + .landing-hero-bubble-char
  + .landing-hero-bubble-char:hover
) {
  color: #a5b4fc;
  -webkit-text-fill-color: #a5b4fc;

  font-weight: 700;
}

@media (
  min-width: 721px
) {
  .landing-hero-heading-line--secondary {
    white-space: nowrap;
  }
}

@media (
  hover: none
),
(
  pointer: coarse
) {
  .landing-hero-heading-line--secondary {
    pointer-events: none;
  }

  .landing-hero-bubble-char {
    transition: none;
  }
}

@media (
  prefers-reduced-motion: reduce
) {
  .landing-hero-bubble-char {
    transition: none;
  }
}

.landing-hero__lede {
  max-width: 560px;
  margin: 0 auto 40px;
  color: var(--landing-muted);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
}

.landing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 18px;
}


.landing-live-metric {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 1.5rem;
  margin: -2px auto 18px;
  color: var(--landing-muted);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.25rem;
}

.landing-live-metric__status {
  position: relative;
  display: inline-flex;
  width: 0.5rem;
  height: 0.5rem;
  flex: 0 0 auto;
}

.landing-live-metric__dot,
.landing-live-metric__ping {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: #22c55e;
}

.landing-live-metric__dot {
  animation: landing-live-metric-dot-pulse 1.8s ease-in-out infinite;
  box-shadow: 0 0 0 rgba(34, 197, 94, 0);
}

.landing-live-metric__ping {
  opacity: 0.28;
  animation: landing-live-metric-ping 1.8s ease-out infinite;
}

.landing-live-metric__value {
  display: inline-flex;
  align-items: baseline;
  gap: 0.01em;
  color: var(--landing-text);
  font-variant-numeric: tabular-nums;
  font-weight: 700;
}

.landing-live-metric__value[hidden] {
  display: none;
}

.landing-live-metric__digit {
  display: inline-block;
  min-width: 0.58em;
  transform-origin: 50% 70%;
}

.landing-live-metric__digit.is-entering {
  animation: landing-live-metric-digit 280ms ease-out both;
}

.landing-live-metric__separator {
  display: inline-block;
  opacity: 0.88;
}

.landing-live-metric__label {
  font-weight: 500;
}

@keyframes landing-live-metric-dot-pulse {
  0%,
  100% {
    background: #22c55e;
    box-shadow: 0 0 0 rgba(34, 197, 94, 0);
    transform: scale(1);
  }

  50% {
    background: #22c55e;
    box-shadow: 0 0 12px rgba(34, 197, 94, 0.58);
    transform: scale(1.18);
  }
}

@keyframes landing-live-metric-ping {
  0% {
    opacity: 0.32;
    transform: scale(1);
  }

  70%,
  100% {
    opacity: 0;
    transform: scale(2.1);
  }
}

@keyframes landing-live-metric-digit {
  0% {
    opacity: 0;
    transform: translateY(0.36em) rotateX(-42deg);
  }

  100% {
    opacity: 1;
    transform: translateY(0) rotateX(0deg);
  }
}


.hero-trust-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 60px;
}

.hero-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid var(--landing-border-teal);
  border-radius: 999px;
  background: rgba(13, 21, 37, 0.78);
  color: var(--landing-text);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 10px 26px rgba(3, 193, 176, 0.08);
}

.hero-trust-badge svg {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  fill: var(--landing-teal);
}

.landing-highway-card {
  padding: 32px 24px 20px;
  border: 1px solid var(--landing-border);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(10px);
}

.landing-integrations-card {
  width: min(100%, 720px);
  margin: 18px auto 0;
  padding: 20px 24px;
  border: 1px solid var(--landing-border);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(13, 21, 37, 0.72), rgba(10, 16, 32, 0.56));
  backdrop-filter: blur(14px);
}

.landing-integrations-card h2 {
  margin: 0 0 8px;
  color: var(--landing-text);
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 800;
  letter-spacing: -0.2px;
}

.landing-integrations-card p {
  max-width: 520px;
  margin: 0 auto;
  color: var(--landing-muted);
  font-size: 14px;
  line-height: 1.6;
}

.landing-integrations-card__badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 16px;
}

.landing-integrations-card__strava-badge {
  display: block;
  width: auto;
  height: auto;
  max-height: 28px;
  max-width: 180px;
  object-fit: contain;
  flex: 0 0 auto;
}

.landing-integrations-card__pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 999px;
  color: var(--landing-text);
  background: rgba(255, 255, 255, 0.045);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}

.landing-kicker {
  margin: 0 0 20px;
  color: var(--landing-muted);
  font: 400 10px/1 'JetBrains Mono', monospace;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.landing-highway {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
}

.landing-highway__svg {
  display: block;
  width: 100%;
  overflow: visible;
}

.landing-highway__connector {
  stroke: rgba(124, 92, 255, 0.2);
  stroke-width: 1;
  stroke-dasharray: 3 3;
}

.landing-route-legend {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
}

.landing-route-legend span {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--landing-muted);
  font-size: 11px;
}

.landing-route-legend i {
  display: inline-block;
  flex: 0 0 auto;
}

.legend-main {
  width: 24px;
  height: 2px;
  background: var(--landing-gradient);
}

.legend-service {
  width: 24px;
  height: 1px;
  background: rgba(124, 92, 255, 0.5);
  border-bottom: 1px dashed rgba(124, 92, 255, 0.5);
}

.legend-active {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--landing-teal);
  box-shadow: 0 0 8px var(--landing-teal);
}

.landing-stats {
  width: 100vw;
  margin-inline: calc(50% - 50vw);
  padding: 20px 0;
  overflow: hidden;
  border-top: 1px solid var(--landing-border);
  border-bottom: 1px solid var(--landing-border);
  background:
    radial-gradient(circle at 20% 50%, rgba(6, 193, 176, 0.12), transparent 28%),
    radial-gradient(circle at 80% 50%, rgba(124, 92, 255, 0.11), transparent 30%),
    rgba(255, 255, 255, 0.025);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04), inset 0 -1px 0 rgba(255,255,255,.03);
}

.landing-stats__viewport {
  width: 100%;
  overflow: hidden;
}

.landing-stats__track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: clamp(34px, 5vw, 78px);
  padding-inline: clamp(18px, 4vw, 56px);
  animation: landing-stats-marquee 34s linear infinite;
  will-change: transform;
}

.landing-stats:hover .landing-stats__track {
  animation-play-state: paused;
}

.landing-stats__item {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  min-width: max-content;
  white-space: nowrap;
}

.landing-stats p {
  margin: 0;
  font-family: 'Exo 2', system-ui, sans-serif;
  font-size: clamp(22px, 2.7vw, 34px);
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  word-break: keep-all;
  hyphens: none;
}

.landing-stats span {
  color: var(--landing-muted);
  font-size: clamp(12px, 1.2vw, 14px);
  line-height: 1.35;
}

@keyframes landing-stats-marquee {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(calc(-100% / 3), 0, 0); }
}

.landing-conversion-band {
  position: relative;
  z-index: 2;

  border-top:
    1px solid
    var(--landing-border);

  border-bottom:
    1px solid
    var(--landing-border);

  background:
    radial-gradient(
      circle at 22% 50%,
      rgba(6, 193, 176, 0.08),
      transparent 30%
    ),
    radial-gradient(
      circle at 78% 50%,
      rgba(124, 92, 255, 0.08),
      transparent 32%
    ),
    rgba(10, 16, 32, 0.72);
}

.landing-conversion-band__inner {
  width: min(100%, 1120px);
  margin: 0 auto;
  padding: 32px 24px 38px;
  text-align: center;
}

.landing-conversion-band
.landing-actions {
  margin: 0 0 18px;
}

.landing-conversion-band__proof {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;

  gap: 12px 20px;
}

.landing-conversion-band
.landing-live-metric {
  width: auto;
  margin: 0;
}

.landing-conversion-band
.hero-trust-badges {
  margin: 0;
}

.landing-product-showcase {
  padding: 72px 24px 32px;
}

.landing-product-showcase__inner {
  display: grid;
  gap: 32px;

  width: min(100%, 1000px);
  margin: 0 auto;
}

.landing-product-showcase
.landing-highway-card {
  width: 100%;
  margin: 0;
}

.landing-product-showcase
.landing-connected {
  width: min(100%, 720px);
  max-width: 720px;

  margin: 0 auto;
  padding: 0;
}

.landing-section {
  max-width: 1160px;
  margin: 0 auto;
  padding: 96px 24px;
}

.landing-section__head {
  margin-bottom: 64px;
  text-align: center;
}

.landing-section__head h2,
.landing-pricing h2,
.landing-final-cta h2 {
  margin: 16px 0;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.landing-section__head p {
  max-width: 500px;
  margin: 0 auto;
  color: var(--landing-muted);
  font-size: 16px;
  line-height: 1.7;
}

.landing-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
}

.landing-glass-card {
  padding: 28px;
  border: 1px solid var(--landing-border);
  border-radius: 16px;
  background: var(--landing-glass);
  backdrop-filter: blur(20px);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.landing-glass-card:hover {
  transform: translateY(-2px);
  border-color: var(--landing-border-teal);
  box-shadow: 0 12px 40px rgba(6, 193, 176, 0.12);
}

.landing-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(13, 21, 37, 0.86);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 12px 30px rgba(6, 193, 176, 0.08);
}

.landing-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.landing-icon--teal {
  color: var(--landing-teal);
  background: linear-gradient(135deg, rgba(6, 193, 176, 0.14), rgba(124, 92, 255, 0.08));
  border: 1px solid rgba(6, 193, 176, 0.24);
}

.landing-icon--purple {
  color: var(--landing-purple);
  background: linear-gradient(135deg, rgba(124, 92, 255, 0.15), rgba(6, 193, 176, 0.07));
  border: 1px solid rgba(124, 92, 255, 0.26);
}

.landing-glass-card h3 {
  margin: 0 0 10px;
  color: var(--landing-text);
  font-size: 17px;
  font-weight: 700;
}

.landing-glass-card p {
  margin: 0;
  color: var(--landing-muted);
  font-size: 14px;
  line-height: 1.65;
}

.landing-pricing {
  padding: 80px 24px;
  background: linear-gradient(180deg, var(--landing-bg) 0%, rgba(13, 21, 48, 0.4) 100%);
}

.landing-pricing__inner {
  max-width: 1000px;
  margin: 0 auto;
}

.landing-price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  grid-auto-rows: 1fr;
  gap: 16px;
  align-items: stretch;
}

.landing-price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  padding: 28px 24px;
  border: 1px solid var(--landing-border);
  border-radius: 20px;
  background: var(--landing-glass);
  backdrop-filter: blur(20px);
  transition:
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.landing-price-card--featured {
  border-color: var(--landing-teal);
  box-shadow: 0 0 60px rgba(6, 193, 176, 0.15);
  transform: none;
}

.landing-price-card--featured::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--landing-gradient-soft);
  z-index: 0;
}

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

.landing-price-card__badge {
  position: absolute;
  top: 16px;
  right: 16px;
}

.landing-price-card__name {
  margin: 0 0 12px;
  color: var(--landing-muted);
  font: 700 12px/1 'JetBrains Mono', monospace;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.landing-price-card--featured .landing-price-card__name {
  color: var(--landing-teal);
}

.landing-price-card h3 {
  margin: 0 0 6px;
  color: var(--landing-text);
  font-size: 42px;
  font-weight: 900;
}

.landing-price-card h3 span {
  margin-left: 4px;
  color: var(--landing-muted);
  font: 400 14px/1 'Plus Jakarta Sans', sans-serif;
}

.landing-price-card__rule {
  height: 1px;
  margin: 20px 0;
  background: var(--landing-border);
}

.landing-price-card ul {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 10px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.landing-price-card li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--landing-text);
  font-size: 14px;
}

.landing-price-card li span {
  color: var(--landing-teal);
  flex: 0 0 auto;
}

.landing-price-card .landing-button {
  width: 100%;
  margin-top: auto;
}

@media (hover: hover) and (pointer: fine) {
  .landing-price-card:hover {
    border-color: rgba(6, 193, 176, 0.4);
    box-shadow:
      0 24px 56px rgba(0, 0, 0, 0.3),
      0 0 36px rgba(6, 193, 176, 0.12);
    transform: translateY(-8px);
  }

  .landing-price-card--featured:hover {
    border-color: var(--landing-teal);
    box-shadow:
      0 24px 60px rgba(0, 0, 0, 0.32),
      0 0 70px rgba(6, 193, 176, 0.2);
  }
}

.landing-price-card:focus-within {
  border-color: rgba(6, 193, 176, 0.4);
  box-shadow:
    0 24px 56px rgba(0, 0, 0, 0.3),
    0 0 36px rgba(6, 193, 176, 0.12);
  transform: translateY(-8px);
}

@media (prefers-reduced-motion: reduce) {
  .landing-price-card {
    transition: none;
  }

  .landing-price-card:hover,
  .landing-price-card:focus-within {
    transform: none;
  }
}

.landing-final-cta {
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 24px;
  text-align: center;
}

.landing-final-cta {
  margin-block: 0;
}

.landing-final-cta h2 {
  margin-top: 0;
  font-size: clamp(26px, 4vw, 42px);
}

.landing-final-cta p {
  margin: 0 0 32px;
  color: var(--landing-muted);
  font-size: 16px;
  line-height: 1.7;
}

.landing-footer {
  max-width: 1180px;
  margin: 0 auto;
  padding: 32px 24px 44px;
  border-top: 1px solid var(--landing-border);
  text-align: center;
  color: var(--landing-muted);
}

.landing-footer__brand img {
  width: 138px;
  height: auto;
  opacity: 0.95;
}

.footer-links-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 18px 0 12px;
}

.footer-legal-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.landing-footer a {
  color: var(--landing-muted);
  text-decoration: none;
  font-weight: 700;
}

.landing-footer a:hover {
  color: var(--landing-text);
}

.footer-social-links {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.landing-footer a.footer-social-link {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  color: var(--landing-muted);
  opacity: 0.8;
  border-radius: 999px;
  text-decoration: none;
  transition: color 0.2s ease, background-color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

.landing-footer a.footer-social-link:hover,
.landing-footer a.footer-social-link:focus-visible {
  opacity: 1;
  color: var(--primary, #14c8bd);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
  outline: none;
}

.landing-footer a.footer-social-link:focus-visible {
  box-shadow: 0 0 0 3px rgba(23, 213, 199, 0.24);
}

.footer-social-link svg,
.footer-social-icon {
  width: 18px;
  height: 18px;
  display: block;
  fill: currentColor;
}

@media (max-width: 640px) {
  .footer-links-row {
    flex-direction: column;
    gap: 0.75rem;
  }

  .footer-legal-links {
    gap: 0.75rem;
  }
}

@keyframes landing-grid-drift {
  from { transform: translateY(0); }
  to { transform: translateY(60px); }
}

@media (max-width: 980px) {
  .landing-nav__links { display: none; }
}

@media (max-width: 680px) {
  .landing-nav__inner {
    height: auto;
    min-height: 68px;
    align-items: flex-start;
    padding-block: 12px;
  }

  .landing-nav__actions {
    flex-direction: column;
    align-items: flex-end;
  }

  .landing-brand__logo { width: 150px; }
  .landing-hero__inner { padding-inline: 12px; }
  .landing-button--large { width: 100%; padding-inline: 20px; }

.hero-trust-badges { margin-bottom: 44px; }
  .hero-trust-badge { justify-content: center; }
  .landing-highway-card { padding-inline: 12px; overflow-x: auto; }
  .landing-highway { min-width: 760px; }
  .landing-integrations-card { padding: 18px 14px; border-radius: 20px; }
  .landing-integrations-card__badges { gap: 10px; }
  .landing-integrations-card__strava-badge { max-height: 24px; max-width: 160px; }
  .landing-integrations-card__pill { max-width: 100%; white-space: normal; text-align: center; }
  .landing-route-legend { gap: 12px; }
  .landing-stats__track { gap: 28px; animation-duration: 28s; }
  .landing-stats__item { align-items: flex-start; flex-direction: column; gap: 5px; }
  .landing-section { padding: 64px 12px; }
  .landing-pricing { padding: 64px 12px; }
  .landing-price-card--featured { transform: none; }
}

/* App Store/TestFlight CTA — landing page standalone theme. */
.landing-actions .fp-app-store-button{margin:0}.landing-final-cta__actions{display:flex;align-items:center;justify-content:center;gap:14px;flex-wrap:wrap}.fp-app-store-button{display:inline-flex;align-items:center;gap:12px;min-height:56px;min-width:188px;padding:9px 16px;border-radius:16px;border:1px solid rgba(6,193,176,.42);background:linear-gradient(135deg,rgba(3,193,176,.96),rgba(2,158,145,.92));color:#041014!important;text-decoration:none!important;box-shadow:0 18px 44px rgba(3,193,176,.18),inset 0 1px 0 rgba(255,255,255,.22);transition:transform .18s ease,border-color .18s ease,box-shadow .18s ease,opacity .18s ease;line-height:1}.fp-app-store-button:hover,.fp-app-store-button:focus-visible{transform:translateY(-1px);border-color:rgba(63,226,213,.72);box-shadow:0 22px 58px rgba(3,193,176,.25),inset 0 1px 0 rgba(255,255,255,.25)}.fp-app-store-button__icon{width:26px;height:26px;flex:0 0 26px}.fp-app-store-button__copy{display:flex;flex-direction:column;align-items:flex-start;gap:2px;white-space:nowrap}.fp-app-store-button__small{font-size:11px;font-weight:700;letter-spacing:.02em;opacity:.78}.fp-app-store-button__strong{font-size:19px;font-weight:900;letter-spacing:-.03em}.fp-app-store-button--testflight{background:linear-gradient(135deg,rgba(6,193,176,.94),rgba(92,103,149,.92));color:#fff!important}.fp-app-store-button--disabled{cursor:not-allowed;background:rgba(230,236,245,.08);border-color:rgba(230,236,245,.18);color:rgba(230,236,245,.72)!important;box-shadow:none}.fp-app-store-button--disabled:hover,.fp-app-store-button--disabled:focus-visible{transform:none;box-shadow:none}.fp-app-store-button--small{min-height:46px;min-width:154px;padding:7px 12px;border-radius:14px;margin:0 auto 14px}.fp-app-store-button--small .fp-app-store-button__icon{width:21px;height:21px;flex-basis:21px}.fp-app-store-button--small .fp-app-store-button__small{font-size:9px}.fp-app-store-button--small .fp-app-store-button__strong{font-size:15px}@media(max-width:700px){.landing-actions,.landing-final-cta__actions{width:100%}.fp-app-store-button{width:100%;justify-content:center;max-width:320px}.fp-app-store-button--small{width:auto;max-width:260px}}

/* Liquid-metal secondary CTA treatment: dark outline remains distinct from primary teal fill. */
.landing-button--secondary{position:relative;overflow:hidden;isolation:isolate;background:linear-gradient(135deg,rgba(255,255,255,.055),rgba(255,255,255,.025));border-color:rgba(255,255,255,.14)}
.landing-button--secondary::before{content:"";position:absolute;inset:-45%;z-index:-1;background:linear-gradient(115deg,transparent 0%,rgba(255,255,255,.08) 28%,rgba(3,193,176,.22) 42%,rgba(255,255,255,.10) 52%,rgba(124,92,255,.12) 66%,transparent 82%);transform:translateX(-34%) rotate(8deg);opacity:.42;animation:fp-liquid-secondary-shimmer 7s ease-in-out infinite;pointer-events:none}
.landing-button--secondary::after{content:"";position:absolute;inset:1px;border-radius:inherit;z-index:-1;background:radial-gradient(circle at 18% 8%,rgba(255,255,255,.16),transparent 34%),linear-gradient(180deg,rgba(255,255,255,.045),transparent);opacity:.55;pointer-events:none}
.landing-button--secondary:hover{background:rgba(6,193,176,.075);border-color:rgba(3,193,176,.68);box-shadow:0 0 0 1px rgba(3,193,176,.16),0 14px 42px rgba(3,193,176,.18)}
.landing-button--secondary:hover::before{opacity:.72;animation-duration:3.4s}.landing-button--secondary:active::after{background:radial-gradient(circle at 50% 50%,rgba(3,193,176,.20),transparent 44%),linear-gradient(180deg,rgba(255,255,255,.06),transparent)}
@keyframes fp-liquid-secondary-shimmer{0%{transform:translateX(-38%) rotate(8deg)}50%{transform:translateX(18%) rotate(8deg)}100%{transform:translateX(44%) rotate(8deg)}}
@media (prefers-reduced-motion: reduce){.landing-button--secondary::before{animation:none;transform:none;opacity:.28}.landing-button--secondary{transition:none}}

.fp-integrations-trust-row {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  max-width: 100%;
  margin: 18px auto 0;
  padding: 8px 12px;
  color: var(--landing-muted);
  font-size: 13px;
  line-height: 1.4;
}

.fp-integrations-trust-row__badge {
  display: block;
  width: auto;
  max-width: 180px;
  height: auto;
  max-height: 36px;
  object-fit: contain;
  flex: 0 0 auto;
}

.fp-integrations-trust-row__copy {
  margin: 0;
}

@media (max-width: 640px) {
  .fp-integrations-trust-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 14px;
    font-size: 12px;
    text-align: center;
  }

  .fp-integrations-trust-row__badge {
    max-height: 32px;
    max-width: 160px;
  }
}

.landing-founder {
  max-width: 1160px;
  margin: 0 auto;
  padding: 96px 24px 40px;
}

.landing-founder__inner {
  display: grid;
  grid-template-columns: minmax(300px, 0.4fr) minmax(0, 0.6fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
  padding: clamp(24px, 4vw, 44px);
  overflow: hidden;
  border: 1px solid var(--landing-border);
  border-radius: 20px;
  background:
    radial-gradient(circle at 12% 12%, rgba(6, 193, 176, 0.09), transparent 34%),
    var(--landing-glass);
  backdrop-filter: blur(20px);
}

.landing-founder__media {
  min-height: 620px;
  overflow: hidden;
  border: 1px solid var(--landing-border);
  border-radius: 20px;
  background: var(--landing-card);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.26);
}

.landing-founder__image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center 15%;
}

.landing-founder__content h2 {
  margin: 16px 0 12px;
  color: var(--landing-text);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.12;
}

.landing-founder__intro {
  margin-bottom: 24px;
  color: var(--landing-muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.landing-founder__intro p {
  margin: 0;
}

.landing-founder__name {
  color: var(--landing-teal);
  font-family: 'Exo 2', system-ui, sans-serif;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: none;
}

.landing-founder__bio {
  display: grid;
  gap: 14px;
}

.landing-founder__bio p {
  margin: 0;
  color: var(--landing-muted);
  font-size: 14px;
  line-height: 1.75;
}

.landing-founder__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.landing-founder__badges li {
  padding: 7px 11px;
  border: 1px solid rgba(6, 193, 176, 0.2);
  border-radius: 999px;
  color: var(--landing-text);
  background: rgba(6, 193, 176, 0.08);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
}

.landing-founder__quote {
  margin: 28px 0 0;
  padding: 20px 0 0;
  border-top: 1px solid var(--landing-border);
}

.landing-founder__quote blockquote {
  margin: 0;
  color: var(--landing-text);
  font-family: 'Exo 2', system-ui, sans-serif;
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 600;
  line-height: 1.45;
}

.landing-founder__quote figcaption {
  margin-top: 10px;
  color: var(--landing-muted);
  font-size: 13px;
  font-weight: 700;
}

@media (max-width: 980px) {
  .landing-founder__inner {
    grid-template-columns: minmax(260px, 0.42fr) minmax(0, 0.58fr);
    gap: 28px;
  }

  .landing-founder__media {
    min-height: 560px;
  }
}

@media (max-width: 820px) {
  .landing-founder__inner {
    grid-template-columns: 1fr;
  }

  .landing-founder__media {
    height: 720px;
    min-height: 720px;
  }
}

@media (max-width: 680px) {
  .landing-founder {
    padding: 64px 12px 28px;
  }

  .landing-founder__inner {
    padding: 18px;
    border-radius: 20px;
  }

  .landing-founder__media {
    height: 600px;
    min-height: 600px;
  }

  .landing-founder__image {
    object-position: center 12%;
  }

  .landing-founder__bio p {
    font-size: 13.5px;
  }
}

@media (max-width: 480px) {
  .landing-founder__media {
    height: 560px;
    min-height: 560px;
  }
}

@media (max-width: 380px) {
  .landing-founder__media {
    height: 520px;
    min-height: 520px;
  }
}

/* 2026 homepage refresh: decorative hero wordmark, proof strip, compact product cards. */
.landing-shell { overflow-x: hidden; overflow-y: visible; }

.landing-hero-wordmark {
  position: relative;
  width: 100%;
  max-width: 860px;
  min-height: clamp(78px, 11vw, 132px);
  margin: 0 auto 16px;
  display: grid;
  place-items: center;
  justify-content: center;
  pointer-events: none;
  isolation: isolate;
}

.landing-hero-wordmark__svg-source {
  display: none;
}

.landing-hero-wordmark__canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.landing-hero-wordmark__canvas canvas {
  display: block;
  width: 100%;
  height: 100%;
  margin-inline: auto;
}

.landing-hero-wordmark__fallback {
  grid-area: 1 / 1;
  z-index: 0;
  font-family: 'Exo 2', system-ui, sans-serif;
  font-size: clamp(28px, 6.2vw, 78px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.08em;
  white-space: nowrap;
  color: #f7fbff;
  opacity: 0.82;
}

.landing-hero-wordmark.is-wordmark-ready .landing-hero-wordmark__fallback {
  opacity: 0;
}

.landing-hero-wordmark.is-static .landing-hero-wordmark__fallback {
  opacity: 0.82;
  background: linear-gradient(105deg, #ffffff 0%, #3CE4DE 48%, #765AFF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.landing-proof-strip {
  width: min(100%, 920px);
  margin: 0 auto 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  border: 1px solid var(--landing-border);
  border-radius: 18px;
  background: rgba(13, 21, 37, 0.64);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04), 0 18px 55px rgba(3,193,176,.08);
}

.landing-proof-strip span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--landing-text);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
}

.landing-proof-strip span:not(:last-child)::after {
  content: "·";
  color: var(--landing-teal);
  opacity: .75;
}

.landing-app-preview {
  width: min(100%, 940px);
  margin: 18px auto 0;
  display: grid;
  grid-template-columns: 1.1fr .9fr .9fr;
  gap: 14px;
  text-align: left;
}

.landing-phone-card {
  min-height: 190px;
  padding: 20px;
  border: 1px solid var(--landing-border);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(16, 26, 46, .92), rgba(10, 16, 32, .76));
  box-shadow: 0 24px 70px rgba(0,0,0,.22), inset 0 1px 0 rgba(255,255,255,.05);
}

.landing-phone-card--main { border-color: rgba(60, 228, 222, .28); }
.landing-phone-card__eyebrow { margin: 0 0 10px; color: var(--landing-teal); font: 800 11px/1 'JetBrains Mono', monospace; text-transform: uppercase; letter-spacing: .12em; }
.landing-phone-card h2 { margin: 0 0 18px; font-size: 22px; line-height: 1.15; }
.landing-phone-card p { margin: 0; color: var(--landing-muted); font-size: 14px; line-height: 1.6; }
.landing-phone-card__metric { display:flex; justify-content:space-between; gap: 14px; padding: 10px 0; border-top: 1px solid var(--landing-border); color: var(--landing-muted); font-size: 12px; }
.landing-phone-card__metric strong { color: var(--landing-text); text-align:right; }
.landing-phone-card__progress { height: 8px; margin-top: 18px; overflow:hidden; border-radius:999px; background: rgba(255,255,255,.08); }
.landing-phone-card__progress i { display:block; height:100%; border-radius:inherit; background: var(--landing-gradient); box-shadow: 0 0 22px rgba(60,228,222,.32); }
.landing-scan-rings { position:relative; width: 108px; height: 108px; margin: 12px auto 0; border-radius: 999px; background: radial-gradient(circle, rgba(60,228,222,.14), transparent 62%); }
.landing-scan-rings span { position:absolute; inset: 12px; border: 1px solid rgba(60,228,222,.38); border-radius: 999px; }
.landing-scan-rings span:nth-child(2) { inset: 28px; border-color: rgba(118,90,255,.48); }
.landing-scan-rings span:nth-child(3) { inset: 44px; background: var(--landing-teal); box-shadow: 0 0 20px rgba(60,228,222,.42); }

.landing-step-grid { display:grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.landing-step-card { padding: 24px; border: 1px solid var(--landing-border); border-radius: 18px; background: var(--landing-glass); backdrop-filter: blur(20px); }
.landing-step-card span { display:inline-flex; margin-bottom: 34px; color: var(--landing-teal); font: 800 12px/1 'JetBrains Mono', monospace; }
.landing-step-card h3, .landing-benefit-card h3 { margin: 0 0 10px; color: var(--landing-text); font-size: 18px; line-height: 1.25; }
.landing-step-card p { margin: 0; color: var(--landing-muted); font-size: 14px; line-height: 1.65; }
.landing-benefit-card { min-height: 190px; }
.landing-benefit-card::before { content:""; display:block; width: 34px; height: 3px; margin-bottom: 18px; border-radius: 999px; background: var(--landing-gradient); }

.landing-connected { width: min(100%, 720px); margin: 0 auto; padding: 28px 24px 72px; }
.landing-connected-tracking-glow {
  --connected-tracking-border-angle: 0deg;
  --connected-tracking-radius: 24px;

  --connected-tracking-comet: conic-gradient(
    from var(--connected-tracking-border-angle),
    transparent 0deg 220deg,
    rgba(45, 212, 191, 0) 228deg,
    rgba(45, 212, 191, 0.1) 244deg,
    rgba(34, 211, 238, 0.24) 262deg,
    rgba(99, 102, 241, 0.46) 280deg,
    rgba(124, 92, 255, 0.72) 296deg,
    rgba(192, 132, 252, 0.92) 308deg,
    rgba(248, 250, 252, 1) 316deg,
    rgba(192, 132, 252, 0.55) 322deg,
    rgba(124, 92, 255, 0) 334deg,
    transparent 334deg 360deg
  );

  position: relative;
  isolation: isolate;
  width: 100%;
  padding: 1px;
  border: 0;
  border-radius: var(--connected-tracking-radius);

  background-color: rgba(255, 255, 255, 0.07);
  background-image: var(--connected-tracking-comet);

  animation:
    landing-connected-tracking-border-spin
    7.5s
    linear
    infinite;
}
.landing-connected-tracking-glow::before {
  position: absolute;
  inset: -12px;
  z-index: -1;
  content: "";
  border-radius: calc(var(--connected-tracking-radius) + 10px);
  pointer-events: none;

  background-image: var(--connected-tracking-comet);

  filter: blur(16px);
  opacity: 0.24;
}
.landing-connected-tracking-glow__inner { position: relative; z-index: 1; min-height: 100%; overflow: hidden; padding: clamp(22px, 4vw, 30px); border-radius: calc(var(--connected-tracking-radius) - 1px); background: rgba(10, 16, 32, 0.96); box-shadow: 0 24px 80px rgba(0,0,0,.22); }
.landing-connected h2 { margin: 14px 0 10px; font-size: clamp(26px, 4vw, 34px); }
.landing-connected p { max-width: 100%; margin: 0; color: var(--landing-muted); font-size: 14px; line-height: 1.7; }

.landing-connected__badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;

  gap: 14px;
  margin-top: 18px;
}

.landing-connected__strava-badge {
  display: block;

  width: auto;
  height: auto;
  max-width: 180px;
  max-height: 28px;

  object-fit: contain;
}

.landing-connected__pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 32px;
  padding: 7px 12px;

  border:
    1px solid
    rgba(255, 255, 255, 0.11);

  border-radius: 999px;

  color: var(--landing-text);
  background:
    rgba(255, 255, 255, 0.045);

  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}

.landing-payment-trust { display:flex; flex-wrap:wrap; justify-content:center; gap: 10px; margin-top: 24px; }
.landing-payment-trust span { padding: 8px 12px; border: 1px solid var(--landing-border); border-radius: 999px; color: var(--landing-muted); background: rgba(255,255,255,.035); font-size: 12px; font-weight: 800; }

/* Compact founder card override. */
.landing-founder { max-width: 1000px; padding: 28px 24px 44px; }
.landing-founder__inner { grid-template-columns: auto minmax(0, 1fr); gap: 18px; align-items: center; padding: 18px; border-radius: 22px; background: linear-gradient(135deg, rgba(6,193,176,.06), rgba(124,92,255,.06)), var(--landing-glass); }
.landing-founder__media { width: 104px; height: 104px; min-height: 0; border-radius: 26px; box-shadow: 0 18px 46px rgba(0,0,0,.24); }
.landing-founder__image { min-height: 0; height: 100%; object-fit: cover; object-position: center 16%; }
.landing-founder__content h2 { margin: 10px 0 8px; font-size: clamp(22px, 3vw, 30px); line-height: 1.15; }
.landing-founder__content p { max-width: 720px; margin: 0; color: var(--landing-muted); font-size: 14px; line-height: 1.65; }

@keyframes landing-connected-tracking-border-spin {
  to { --connected-tracking-border-angle: 1turn; }
}

@keyframes fp-wordmark-settle {
  0% { opacity: 0; transform: translate3d(0, 28px, 90px) rotateX(42deg) scale(.94); filter: blur(10px) drop-shadow(0 0 0 rgba(60,228,222,0)); background-position: 0% 50%; }
  100% { opacity: .82; transform: translate3d(0, 0, 42px) rotateX(0deg) scale(1); filter: blur(0) drop-shadow(0 0 18px rgba(60,228,222,.28)); background-position: 100% 50%; }
}
@keyframes fp-wordmark-depth {
  0% { opacity: 0; transform: translate3d(0, 38px, 0) rotateX(72deg) scaleY(.32); }
  100% { opacity: .36; transform: translate3d(0, 20px, 0) rotateX(62deg) scaleY(.52); }
}
@keyframes fp-wordmark-glow { 0%,100% { filter: drop-shadow(0 0 16px rgba(60,228,222,.26)); } 50% { filter: drop-shadow(0 0 28px rgba(118,90,255,.34)); } }
@keyframes fp-wordmark-depth-glow { 0%,100% { opacity: .30; } 50% { opacity: .42; } }

@media (max-width: 680px) {
  .landing-connected-tracking-glow::before { inset: -8px; filter: blur(12px); opacity: 0.18; }
}

@media (prefers-reduced-motion: reduce) {
  .landing-connected-tracking-glow { animation: none; --connected-tracking-border-angle: 42deg; }
  .landing-connected-tracking-glow::before { opacity: 0.14; }
  .landing-grid, .landing-hero-wordmark__canvas, .landing-stats__track, .landing-live-metric__ping, .landing-live-metric__dot, .landing-live-metric__digit { animation: none !important; transition: none !important; }
  .landing-hero-wordmark__canvas { display: none; }
  .landing-hero-wordmark__fallback { opacity: .82; }
  .landing-stats { padding-inline: 16px; }
  .landing-stats__track { width: auto; flex-wrap: wrap; justify-content: center; gap: 18px 28px; padding-inline: 0; }
  .landing-stats__item:nth-child(n+5) { display: none; }
  .landing-live-metric__ping { opacity: 0; }
}

@media (max-width: 900px) {
  .landing-app-preview { grid-template-columns: 1fr; }
  .landing-step-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 680px) {
  .landing-hero-wordmark { min-height: 44px; margin-bottom: 12px; }
  .landing-hero-wordmark__fallback { font-size: clamp(25px, 10vw, 40px); letter-spacing: -.065em; }
  .landing-live-metric { margin-top: 0; margin-bottom: 16px; width: 100%; }
  .landing-proof-strip { justify-content: flex-start; border-radius: 16px; }
  .landing-proof-strip span { font-size: 11px; }
  .landing-step-grid { grid-template-columns: 1fr; }
  .landing-step-card span { margin-bottom: 18px; }
  .landing-connected { padding: 14px 12px 48px; }
  .landing-founder { padding: 16px 12px 36px; }
  .landing-founder__inner { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .landing-founder__media { width: 88px; height: 88px; border-radius: 22px; }
}

.landing-particle-ring {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: auto;
  opacity: 1;

  -webkit-mask-image: none;
  mask-image: none;
}

.landing-particle-ring::after {
  display: none;
  content: none;
}

.landing-particle-ring__canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: auto;
  touch-action: none;
  cursor: grab;
}

.landing-hero.is-particle-ring-dragging
.landing-particle-ring__canvas {
  cursor: grabbing;
}

.landing-hero.is-particle-ring-dragging {
  -webkit-user-select: none;
  user-select: none;
}

.landing-hero.is-particle-ring-dragging * {
  -webkit-user-select: none;
  user-select: none;
}

/*
 * Allow drag gestures to pass through non-interactive
 * hero copy to the canvas while retaining normal
 * interaction for CTAs and links.
 */
.landing-hero__inner {
  z-index: 2;
  pointer-events: none;
}

.landing-hero__inner a,
.landing-hero__inner button,
.landing-hero__inner input,
.landing-hero__inner select,
.landing-hero__inner textarea,
.landing-hero__inner label,
.landing-hero__inner [role="button"] {
  pointer-events: auto;
}

.landing-particle-ring__fallback {
  position: absolute;
  inset: 10% 4% 8% 36%;
  z-index: 0;
  border: 1px solid rgba(56, 189, 248, 0.24);
  border-radius: 50%;
  opacity: 0.7;
  transform:
    perspective(800px)
    rotateX(62deg)
    rotateZ(-14deg);

  background:
    radial-gradient(
      circle at 18% 50%,
      rgba(20, 184, 166, 0.34),
      transparent 28%
    ),
    radial-gradient(
      circle at 80% 50%,
      rgba(118, 90, 255, 0.36),
      transparent 32%
    );

  box-shadow:
    0 0 60px rgba(34, 211, 238, 0.1),
    0 0 110px rgba(118, 90, 255, 0.12);

  transition: opacity 300ms ease;
}

.landing-particle-ring.is-ready
.landing-particle-ring__fallback {
  opacity: 0;
}

.landing-particle-ring__hint {
  position: absolute;
  right: 5%;
  bottom: 8%;
  z-index: 4;
  padding: 5px 9px;
  border: 1px solid rgba(148, 163, 184, 0.15);
  border-radius: 999px;
  background: rgba(3, 10, 21, 0.5);
  color: rgba(203, 213, 225, 0.52);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  opacity: 0;
  pointer-events: none;
  transform: translateY(4px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
  backdrop-filter: blur(8px);
}

.landing-hero:hover
.landing-particle-ring__hint {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 721px) {
  .landing-hero
  .landing-particle-ring {
    inset: -3% 0 3%;
  }
}

@media (pointer: coarse) {
  .landing-particle-ring {
    pointer-events: none;
  }

  .landing-particle-ring__canvas {
    pointer-events: none;
    touch-action: pan-y;
    cursor: default;
  }

  .landing-hero__inner {
    pointer-events: auto;
  }

  .landing-particle-ring__hint {
    display: none;
  }
}

@media (max-width: 720px) {
  .landing-particle-ring {
    inset: 0;
    opacity: 0.78;
    pointer-events: none;

    -webkit-mask-image: none;
    mask-image: none;
  }

  .landing-particle-ring::after {
    display: none;
  }

  .landing-particle-ring__canvas {
    pointer-events: none;
    touch-action: pan-y;
    cursor: default;
  }

  .landing-hero__inner {
    pointer-events: auto;
  }

  .landing-particle-ring__hint {
    display: none;
  }
}

@media (max-width: 720px) {
  .landing-hero {
    height: auto;

    min-height: max(
      640px,
      calc(100svh - 68px)
    );

    align-items: stretch;
  }

  .landing-hero__inner {
    min-height: inherit;

    padding:
      68px
      20px
      48px;
  }

  .landing-hero__copy {
    transform: translateY(-2%);
  }

  .landing-hero
  .landing-particle-ring {
    inset: 0;
  }

  .landing-conversion-band__inner {
    padding:
      28px
      20px
      32px;
  }

  .landing-conversion-band
  .landing-actions {
    flex-direction: column;
    align-items: stretch;

    width: min(100%, 420px);
    margin:
      0 auto
      18px;
  }

  .landing-conversion-band
  .landing-button--large {
    width: 100%;
  }

  .landing-conversion-band__proof {
    flex-direction: column;
    gap: 12px;
  }

  .landing-conversion-band
  .hero-trust-badges {
    margin: 0;
  }

  .landing-product-showcase {
    padding:
      48px
      12px
      24px;
  }

  .landing-product-showcase__inner {
    gap: 24px;
  }

  .landing-product-showcase
  .landing-highway-card {
    overflow-x: auto;
  }

  .landing-product-showcase
  .landing-connected {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .landing-particle-ring {
    opacity: 0.9;
    pointer-events: none;
  }

  .landing-particle-ring__canvas {
    pointer-events: none;
    cursor: default;
  }

  .landing-hero__inner {
    pointer-events: auto;
  }

  .landing-particle-ring__hint {
    display: none;
  }
}


/* Keep the grid on the far right and fade it out before the particle ring. */
.landing-grid {
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    transparent 68%,
    rgba(0, 0, 0, 0.35) 76%,
    rgba(0, 0, 0, 0.78) 86%,
    #000 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    transparent 68%,
    rgba(0, 0, 0, 0.35) 76%,
    rgba(0, 0, 0, 0.78) 86%,
    #000 100%
  );
}

.landing-hero__inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  max-width: 1536px;
  padding: 64px clamp(24px, 5.5vw, 84px);
  text-align: left;
}

.landing-hero__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  width: 590px;
  max-width: 50%;
  transform: none;
}

.landing-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 16px 9px 14px;
  border: 1px solid #23304a;
  border-radius: 999px;
  background: #111a2d;
  color: #f6f8ff;
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.96px;
  line-height: 1;
  white-space: nowrap;
}

.landing-hero__eyebrow-dot {
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-radius: 50%;
  background: #19d3c5;
  box-shadow:
    0 0 0 5px rgba(25, 211, 197, 0.09),
    0 0 14px rgba(25, 211, 197, 0.9);
}

.landing-hero__copy h1 {
  width: 590px;
  max-width: 100%;
  margin: 0;
  color: #f6f8ff;
  font-family: 'Bricolage Grotesque', 'Exo 2', system-ui, sans-serif;
  font-size: clamp(46px, 4.2vw, 64px);
  font-variation-settings:
    "opsz" 14,
    "wdth" 100;
  font-weight: 800;
  letter-spacing: -1.92px;
  line-height: 0.95;
  text-shadow: none;
}

.landing-hero-heading-line {
  display: block;
}

.landing-hero-heading-line--primary {
  color: #f6f8ff;
  -webkit-text-fill-color: #f6f8ff;
}

.landing-hero-heading-accent {
  color: #19d3c5;
  -webkit-text-fill-color: #19d3c5;
}

.landing-hero-heading-line--secondary {
  color: #9ba8be;
  -webkit-text-fill-color: #9ba8be;
  font-weight: 800;
  white-space: normal;
  pointer-events: none;
}

.landing-hero__copy .landing-hero__lede {
  width: 540px;
  max-width: 100%;
  margin: 0;
  color: #9ba8be;
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.55;
  text-shadow: none;
}

.landing-hero__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.landing-hero__primary-cta {
  min-height: 48px;
  padding: 15px 24px;
  border-radius: 14px;
  box-shadow: none;
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
}

.landing-hero-app-store.fp-app-store-button {
  min-width: 0;
  min-height: 46px;
  margin: 0;
  padding: 13px 20px;
  gap: 9px;
  border: 1px solid #23304a;
  border-radius: 14px;
  background: #111a2d;
  color: #f6f8ff !important;
  box-shadow: none;
  font-family: 'Manrope', system-ui, sans-serif;
}

.landing-hero-app-store.fp-app-store-button::before {
  width: 11px;
  height: 11px;
  flex: 0 0 11px;
  border-radius: 50%;
  background: #f6f8ff;
  content: "";
}

.landing-hero-app-store .fp-app-store-button__icon {
  display: none;
}

.landing-hero-app-store .fp-app-store-button__copy {
  display: inline;
  white-space: nowrap;
}

.landing-hero-app-store .fp-app-store-button__small,
.landing-hero-app-store .fp-app-store-button__strong {
  display: inline;
  color: inherit;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
  opacity: 1;
}

.landing-hero-app-store .fp-app-store-button__small::after {
  content: " ";
}

.landing-hero-app-store.fp-app-store-button--disabled {
  cursor: not-allowed;
  border-color: rgba(230, 236, 245, 0.18);
  background: rgba(230, 236, 245, 0.08);
  color: rgba(230, 236, 245, 0.72) !important;
  box-shadow: none;
}

.landing-hero-app-store.fp-app-store-button--disabled::before {
  background: currentColor;
}

.landing-hero__micro-trust {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  font-family: 'Manrope', system-ui, sans-serif;
}

.landing-hero__micro-trust .landing-live-metric {
  justify-content: flex-start;
  width: auto;
  min-height: 0;
  margin: 0;
  color: #9ba8be;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
}

.landing-hero__micro-trust .landing-live-metric__status {
  width: 7px;
  height: 7px;
  flex-basis: 7px;
}

.landing-hero__micro-trust .landing-live-metric__value,
.landing-hero__micro-trust .landing-live-metric__label {
  font-weight: 600;
}

.landing-hero__micro-trust .landing-live-metric__label {
  text-transform: lowercase;
}

.landing-hero__how-link {
  color: #f6f8ff;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.landing-hero__trust-line {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
  margin: 0;
  color: #9ba8be;
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.11px;
  line-height: 1;
}

@media (max-width: 720px) {
  .landing-hero__inner {
    padding: 56px 20px 48px;
  }

  .landing-hero__copy {
    width: 100%;
    max-width: 100%;
  }

  .landing-hero__copy h1 {
    font-size: clamp(42px, 11.5vw, 54px);
  }

  .landing-hero__actions {
    align-items: stretch;
    width: 100%;
  }
}
