:root {
  --brand: #7e22ce;
  --brand-dark: #581c87;
  --ink: #111827;
  --muted: #667085;
  --paper: #f7f7fb;
  --surface: #ffffff;
  --line: rgba(17, 24, 39, 0.12);
  --teal: #14b8a6;
  --amber: #f59e0b;
  --focus: #0f766e;
  --route-color: #7e22ce;
  --route-duration: 60s;
  --route-gap-length: 50000;
  --route-opacity: 0.18;
  --route-path-length: 4679;
  --route-path-length-negative: -4679;
  --route-start-delay: 0.7s;
  --route-stroke-width: 2.4;
  color-scheme: light;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-feature-settings: "kern";
  background: var(--paper);
  color: var(--ink);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  position: relative;
  margin: 0;
  min-height: 100svh;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 85% 4%, rgba(126, 34, 206, 0.16), transparent 32rem),
    linear-gradient(180deg, #fbfbff 0%, #f4f5fa 48%, #f4f5fa 100%);
}

main {
  position: relative;
  z-index: 1;
  min-height: calc(100svh - 112px);
}

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

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 20;
  padding: 0.7rem 1rem;
  transform: translateY(-160%);
  border-radius: 999px;
  background: var(--ink);
  color: #ffffff;
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(18px);
}

.route-background {
  position: fixed;
  top: 76px;
  right: 0;
  bottom: auto;
  left: 0;
  z-index: 0;
  width: 100vw;
  height: calc(100svh - 112px);
  overflow: visible;
  pointer-events: none;
}

.route-background__path {
  fill: none;
  stroke: var(--route-color);
  stroke-width: var(--route-stroke-width);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: var(--route-path-length) var(--route-gap-length);
  stroke-dashoffset: var(--route-path-length);
  opacity: var(--route-opacity);
  filter: drop-shadow(0 14px 22px rgba(126, 34, 206, 0.12));
  vector-effect: non-scaling-stroke;
}

.route-background__path.is-route-ready {
  animation: route-draw var(--route-duration) linear var(--route-start-delay) infinite;
}

@keyframes route-draw {
  0% {
    stroke-dashoffset: var(--route-path-length);
  }

  50% {
    stroke-dashoffset: 0;
  }

  100% {
    stroke-dashoffset: var(--route-path-length-negative);
  }
}

@keyframes route-draw-reduced {
  to {
    stroke-dashoffset: 0;
  }
}

.nav-shell,
.hero {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 1.5rem;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 2.4rem;
  height: 2.4rem;
  place-items: center;
  border-radius: 0.8rem;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.15), transparent 46%),
    linear-gradient(135deg, var(--brand), var(--brand-dark));
  box-shadow: 0 18px 40px rgba(126, 34, 206, 0.25);
}

.brand-mark img {
  width: 1.42rem;
  height: 1.42rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: #475467;
  font-size: 0.92rem;
  font-weight: 700;
}

.nav-links a {
  border-radius: 999px;
  padding: 0.62rem 0.82rem;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  background: rgba(126, 34, 206, 0.1);
  color: var(--brand-dark);
}

.section-band {
  position: relative;
  z-index: 1;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 4.8rem);
  min-height: calc(100svh - 112px);
  padding: 5.5rem 0 4.5rem;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--brand-dark);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: clamp(4.6rem, 13vw, 8.4rem);
  line-height: 0.86;
  letter-spacing: 0;
}

.tagline {
  margin: 1.35rem 0 0;
  font-size: clamp(1.55rem, 3.2vw, 2.5rem);
  font-weight: 780;
  line-height: 1.08;
}

.lede {
  max-width: 39rem;
  margin: 1.2rem 0 0;
  color: #475467;
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.72;
}

.principle-copy {
  max-width: 39rem;
  margin: 1rem 0 0;
  color: var(--ink);
  font-size: clamp(1rem, 1.25vw, 1.12rem);
  line-height: 1.58;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.2rem;
}

.hero-badges span {
  border: 1px solid rgba(126, 34, 206, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  padding: 0.62rem 0.82rem;
  color: var(--brand-dark);
  font-size: 0.88rem;
  font-weight: 820;
  box-shadow: 0 12px 32px rgba(17, 24, 39, 0.06);
}

.phone-stage {
  position: relative;
  min-height: 560px;
  perspective: 1300px;
}

.coming-soon-badge {
  position: absolute;
  top: 3.1rem;
  left: 50%;
  z-index: 5;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  background: var(--brand-dark);
  padding: 0.78rem 1.15rem;
  color: rgb(255, 255, 255);
  box-shadow: 0 18px 44px rgba(17, 24, 39, 0.14);
  font-size: 0.92rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  line-height: 1;
  pointer-events: none;
  transform: translateX(-50%);
  text-transform: uppercase;
}

.phone {
  position: absolute;
  width: min(44vw, 235px);
  min-width: 178px;
  aspect-ratio: 0.49;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 2.25rem;
  background: #0c0f17;
  padding: 0.78rem;
  box-shadow: 0 36px 90px rgba(17, 24, 39, 0.26);
}

.phone::before {
  content: "";
  position: absolute;
  top: 0.58rem;
  left: 50%;
  width: 5rem;
  height: 0.55rem;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #05070d;
  z-index: 2;
}

.phone-main {
  right: 25%;
  top: 1.4rem;
  width: min(45vw, 270px);
  transform: rotateY(-8deg) rotateZ(-2deg);
  z-index: 3;
}

.phone-left {
  left: 0;
  top: 7.8rem;
  transform: rotateY(18deg) rotateZ(-8deg) scale(0.9);
  z-index: 2;
}

.phone-right {
  right: 0;
  top: 8.8rem;
  transform: rotateY(-18deg) rotateZ(8deg) scale(0.88);
  z-index: 1;
}

.phone-screen {
  height: 100%;
  overflow: hidden;
  border-radius: 1.62rem;
  background: #f7f8fc;
  color: var(--ink);
}

.phone-screen {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: 2.4rem 1rem 1rem;
}

.phone-screen-image {
  display: block;
  padding: 0;
}

.phone-screen-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.screen-label {
  color: #6b7280;
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.phone-screen strong {
  font-size: 1.08rem;
  line-height: 1.12;
}

.hero-stat span {
  font-size: 3.3rem;
  font-weight: 850;
}

.hero-stat small {
  margin-left: 0.25rem;
  color: #667085;
  font-weight: 800;
}

.map-preview {
  min-height: 128px;
  border-radius: 1.1rem;
  background:
    linear-gradient(110deg, transparent 44%, rgba(20, 184, 166, 0.92) 45% 48%, transparent 49%),
    linear-gradient(160deg, transparent 30%, rgba(126, 34, 206, 0.78) 31% 33%, transparent 34%),
    #e7f0ee;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.55rem;
}

.stat-grid span,
.metric-row,
.workout-step {
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 0.82rem;
  background: #ffffff;
  padding: 0.65rem;
}

.stat-grid b,
.stat-grid span {
  display: block;
  color: #667085;
  font-size: 0.7rem;
  font-weight: 760;
}

.stat-grid b {
  color: var(--ink);
  font-size: 0.92rem;
}

.score-ring {
  display: grid;
  width: 8.6rem;
  height: 8.6rem;
  place-items: center;
  align-self: center;
  flex: 0 0 auto;
  aspect-ratio: 1;
  border-radius: 50%;
  background: conic-gradient(var(--brand) 0 82%, #e6e8ef 82% 100%);
}

.score-ring span {
  display: grid;
  width: 6.2rem;
  height: 6.2rem;
  place-items: center;
  flex: 0 0 auto;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #ffffff;
  font-size: 2.1rem;
  font-weight: 850;
}

.metric-row,
.workout-step {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  font-size: 0.78rem;
}

.spark-line {
  min-height: 64px;
  border-radius: 1rem;
  background:
    linear-gradient(145deg, transparent 48%, rgba(20, 184, 166, 0.8) 49% 52%, transparent 53%),
    repeating-linear-gradient(90deg, rgba(17, 24, 39, 0.05) 0 1px, transparent 1px 24px), #ffffff;
}

.workout-step.active {
  border-color: rgba(126, 34, 206, 0.22);
  background: rgba(126, 34, 206, 0.09);
}

.workout-preview p {
  margin: auto 0 0;
  color: #667085;
  font-size: 0.75rem;
  line-height: 1.45;
}

.policy-hero h1 {
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.policy-hero p,
.policy-card p,
.policy-card li {
  color: var(--muted);
  line-height: 1.65;
}

.policy-card {
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 60px rgba(17, 24, 39, 0.06);
}

.policy-card h2 {
  margin: 1rem 0 0.55rem;
  font-size: 1.35rem;
  line-height: 1.25;
}

.policy-card h3 {
  margin: 1.25rem 0 0.45rem;
  font-size: 1.08rem;
  line-height: 1.35;
}

.policy-main {
  width: min(880px, calc(100% - 40px));
  margin: 0 auto;
  padding: 5rem 0 6rem;
}

.policy-hero {
  margin-bottom: 2rem;
}

.policy-card {
  padding: clamp(1.2rem, 3vw, 2rem);
}

.policy-card h2 {
  margin-top: 1.7rem;
}

.policy-card h2:first-of-type {
  margin-top: 0;
}

.review-banner {
  margin: 0 0 1.4rem;
  border: 1px solid rgba(245, 158, 11, 0.34);
  border-radius: 0.5rem;
  background: rgba(245, 158, 11, 0.1);
  padding: 0.85rem 1rem;
  color: #7c2d12 !important;
  font-weight: 750;
}

.site-footer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  min-height: 36px;
  border-top: 1px solid rgba(17, 24, 39, 0.08);
  background: rgba(255, 255, 255, 0.86);
  color: #667085;
  font-size: 0.78rem;
  font-weight: 760;
}

.site-footer span + span {
  border-left: 1px solid var(--line);
  padding-left: 0.8rem;
}

@media (prefers-reduced-motion: no-preference) {
  .phone-main {
    animation: drift-main 8s ease-in-out infinite;
  }

  .phone-left,
  .phone-right {
    animation: drift-side 9s ease-in-out infinite;
  }

  @keyframes drift-main {
    0%,
    100% {
      translate: 0 0;
    }
    50% {
      translate: 0 -10px;
    }
  }

  @keyframes drift-side {
    0%,
    100% {
      translate: 0 0;
    }
    50% {
      translate: 0 8px;
    }
  }
}

@media (prefers-reduced-motion: reduce) {
  .route-background {
    display: none;
  }
}

@media (min-width: 961px) and (max-height: 820px) {
  main {
    min-height: calc(100svh - 104px);
  }

  .nav-shell {
    min-height: 68px;
  }

  .route-background {
    top: 68px;
    height: calc(100svh - 104px);
  }

  .hero {
    min-height: calc(100svh - 104px);
    padding: 2rem 0;
  }

  h1 {
    font-size: clamp(4.1rem, 10vw, 7.1rem);
  }

  .tagline {
    margin-top: 1rem;
  }

  .lede {
    margin-top: 0.9rem;
    line-height: 1.58;
  }

  .principle-copy {
    margin-top: 0.75rem;
    line-height: 1.46;
  }

  .phone-stage {
    min-height: 500px;
  }

  .coming-soon-badge {
    top: 1.8rem;
  }

  .phone {
    width: min(36vw, 205px);
  }

  .phone-main {
    width: min(39vw, 238px);
  }

  .phone-left {
    top: 6.2rem;
  }

  .phone-right {
    top: 6.9rem;
  }
}

@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 4.2rem;
  }

  .phone-stage {
    min-height: 520px;
  }

  .coming-soon-badge {
    top: 2rem;
  }

  .phone-main {
    right: 30%;
  }
}

@media (max-width: 720px) {
  .nav-shell,
  .hero,
  .policy-main {
    width: min(100% - 28px, 1180px);
  }

  .nav-shell {
    min-height: 68px;
  }

  .route-background {
    display: none;
  }

  main,
  .hero {
    min-height: calc(100svh - 104px);
  }

  .nav-links {
    gap: 0;
    font-size: 0.82rem;
  }

  .nav-links a {
    padding: 0.52rem 0.55rem;
  }

  .hero {
    padding: 3rem 0 3rem;
  }

  h1 {
    font-size: clamp(4rem, 22vw, 6.2rem);
  }

  .phone-stage {
    min-height: 455px;
    margin-inline: -0.4rem;
  }

  .coming-soon-badge {
    top: 0.35rem;
    font-size: 0.82rem;
    padding: 0.66rem 0.95rem;
  }

  .phone {
    width: 178px;
    min-width: 0;
    border-radius: 1.75rem;
    padding: 0.55rem;
  }

  .phone-screen {
    border-radius: 1.28rem;
    padding: 2.1rem 0.72rem 0.72rem;
  }

  .phone-screen-image {
    padding: 0;
  }

  .phone-main {
    right: calc(50% - 88px);
    top: 0;
    width: 200px;
  }

  .phone-left {
    left: 0;
    top: 5.8rem;
  }

  .phone-right {
    right: 0;
    top: 6.4rem;
  }

  .hero-stat span {
    font-size: 2.45rem;
  }

  .map-preview {
    min-height: 92px;
  }

  .score-ring {
    width: 6.7rem;
    height: 6.7rem;
  }

  .score-ring span {
    width: 4.8rem;
    height: 4.8rem;
    font-size: 1.6rem;
  }
}

@media (max-width: 430px) {
  .phone-stage {
    min-height: 420px;
  }

  .phone-main {
    width: 185px;
    right: calc(50% - 92px);
  }

  .phone-left,
  .phone-right {
    width: 155px;
  }

  .phone-left {
    left: -0.9rem;
  }

  .phone-right {
    right: -0.9rem;
  }
}
