:root {
  --ink: #ffffff;
  --muted: rgba(255, 255, 255, 0.72);
  --dim: rgba(255, 255, 255, 0.52);
  --line: rgba(255, 255, 255, 0.14);
  --panel: rgba(255, 255, 255, 0.07);
  --orange: #c24f1a;
  --orange-dark: #9f3f15;
  --night: #08090a;
  --radius: 8px;
  --font-body: "Outfit", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-heading: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;
  --hero-brightness: 0.96;
  --hero-left-fade: 0.42;
  --hero-left-mid: 0.28;
  --hero-right-fade: 0.02;
  --hero-bottom-fade: 0.2;
  --scroll-blackout: 0;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  width: 100%;
  overflow-x: hidden;
}

body {
  min-height: 100%;
  margin: 0;
  width: 100%;
  overflow-x: hidden;
  background: var(--night);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.5;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

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

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

.teaser {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding: 22px;
}

.hero-bg,
.shade {
  position: fixed;
  inset: 0;
}

.hero-bg {
  width: 100%;
  height: 100%;
  background-color: var(--night);
  background-image: url("images/hero space 2.png");
  background-position: right center;
  background-size: cover;
  background-repeat: no-repeat;
  filter: saturate(1.02) contrast(1.02) brightness(var(--hero-brightness));
  transition: filter 180ms ease-out;
}

.shade {
  background:
    linear-gradient(rgba(8, 9, 10, var(--scroll-blackout)), rgba(8, 9, 10, var(--scroll-blackout))),
    linear-gradient(90deg, rgba(8, 9, 10, var(--hero-left-fade)) 0%, rgba(8, 9, 10, var(--hero-left-mid)) 28%, rgba(8, 9, 10, 0.08) 58%, rgba(8, 9, 10, var(--hero-right-fade)) 100%),
    linear-gradient(0deg, rgba(8, 9, 10, var(--hero-bottom-fade)) 0%, rgba(8, 9, 10, 0.08) 34%, rgba(8, 9, 10, 0.04) 100%);
  transition: background 180ms ease-out;
}

.hero,
.proof,
.content-section,
footer {
  position: relative;
  z-index: 1;
  width: min(1160px, 100%);
  margin: 0 auto;
}

.topbar {
  position: relative;
  width: min(1160px, 100%);
  margin: 0 auto;
  min-height: 56px;
  padding-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  z-index: 1000;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  width: 59px;
  height: 24px;
  min-width: 59px;
  max-width: 59px;
  min-height: 24px;
  max-height: 24px;
  line-height: 0;
}

.brand img {
  width: 100%;
  height: 100%;
  min-width: 100%;
  max-width: 100%;
  min-height: 100%;
  max-height: 100%;
  object-fit: contain;
}

.topnav {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
}

.topnav a {
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
  transition: color 160ms ease;
}

.topnav a:hover,
.topnav a.active {
  color: #fff;
}

.mobile-menu {
  position: relative;
  display: none;
  margin-left: auto;
  z-index: 1001;
  overflow: visible;
}

.mobile-menu-toggle {
  position: relative;
  z-index: 1004;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  gap: 4px;
  padding: 11px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  appearance: none;
  backdrop-filter: none;
  overflow: visible;
}

.mobile-menu-toggle::before,
.mobile-menu-toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 28px;
  height: 3px;
  border-radius: 999px;
  background: var(--orange);
  opacity: 0;
  transform: translate(-50%, -50%) rotate(0deg);
  transition: opacity 160ms ease, transform 220ms ease;
}

.mobile-menu.is-open .mobile-menu-toggle::before {
  opacity: 1;
  transform: translate(-50%, -50%) rotate(45deg);
}

.mobile-menu.is-open .mobile-menu-toggle::after {
  opacity: 1;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.mobile-menu-toggle span {
  width: 18px;
  height: 2px;
  display: block;
  border-radius: 999px;
  background: var(--orange);
  transform-origin: center;
  will-change: transform, opacity;
  transition: transform 220ms ease, opacity 180ms ease;
}

.mobile-menu.is-open .mobile-menu-toggle span:nth-child(1) {
  opacity: 0;
  transform: scaleX(0.4);
}

.mobile-menu.is-open .mobile-menu-toggle span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0.4);
}

.mobile-menu.is-open .mobile-menu-toggle span:nth-child(3) {
  opacity: 0;
  transform: scaleX(0.4);
}

.mobile-menu nav {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  left: auto;
  z-index: 1003;
  display: grid;
  gap: 14px;
  min-width: 174px;
  padding: 10px 0 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-14px) scale(0.96);
  transform-origin: top right;
  backdrop-filter: none;
  transition:
    opacity 180ms ease,
    transform 260ms cubic-bezier(0.2, 0.9, 0.2, 1);
}

.mobile-menu.is-open nav {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.mobile-menu nav a {
  display: block;
  padding: 2px 0;
  color: rgba(255, 255, 255, 0.8);
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 800;
  text-align: right;
  opacity: 0;
  transform: translateY(-8px);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.92), 0 0 2px rgba(0, 0, 0, 0.9);
  transition: color 160ms ease, opacity 220ms ease, transform 260ms ease;
}

.mobile-menu.is-open nav a {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu.is-open nav a:nth-child(1) {
  transition-delay: 70ms;
}

.mobile-menu.is-open nav a:nth-child(2) {
  transition-delay: 115ms;
}

.mobile-menu.is-open nav a:nth-child(3) {
  transition-delay: 160ms;
}

.mobile-menu.is-open nav a:nth-child(4) {
  transition-delay: 205ms;
}

.mobile-menu nav a.active,
.mobile-menu nav a:hover {
  background: transparent;
  color: #fff;
}

.mini-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.mini-cta {
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(22px) saturate(150%);
  font-size: 13px;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.mini-cta:hover {
  transform: translateY(-1px);
  border-color: rgba(245, 99, 0, 0.5);
  background: rgba(245, 99, 0, 0.16);
  box-shadow: 0 10px 24px rgba(245, 99, 0, 0.16);
}

.hero {
  min-height: calc(100vh - 170px);
  display: flex;
  align-items: center;
  padding: 22px 0 36px;
}

.copy {
  max-width: 520px;
  padding: clamp(18px, 3vw, 34px) 0;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--orange);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

h1 {
  max-width: 560px;
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(42px, 5.2vw, 66px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: 0;
}

h1 span {
  display: block;
}

.mobile-headline {
  display: none;
}

.accent-number {
  display: inline;
  color: var(--orange);
}

.orange-word {
  color: var(--orange);
}

.keep-together {
  white-space: nowrap;
}

.lede {
  max-width: 500px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 23px);
}

.actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 54px;
  margin-bottom: 32px;
}

.button {
  min-height: 0;
  padding: 16px 24px;
  transition: transform 160ms ease, background 160ms ease;
}

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

.primary {
  background: var(--orange);
  color: #fff;
}

.hero-cta {
  margin-top: 8px;
  margin-bottom: 8px;
}

.app-store-badge-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.app-store-badge-link:hover {
  transform: translateY(-1px);
}

.app-store-badge-image {
  display: block;
  width: auto;
  height: 54px;
}

.regional-app-badge-hero {
  margin-top: 8px;
  margin-bottom: 8px;
}

.regional-app-badge-footer .app-store-badge-image {
  height: 44px;
}

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

.secondary-cta {
  border: 1px solid rgba(245, 99, 0, 0.42);
  background: rgba(245, 99, 0, 0.1);
  color: #fff;
}

.secondary-cta:hover {
  background: rgba(245, 99, 0, 0.18);
}

.actions p {
  max-width: 310px;
  margin: 0;
  color: var(--dim);
  font-size: 14px;
}

.social-proof {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(22px) saturate(150%);
}

.social-proof p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 0 rgba(245, 99, 0, 0.55);
  animation: proofPulse 2s ease-out infinite;
}

.product {
  position: relative;
  min-height: 640px;
  display: grid;
  place-items: center;
}

.hero-render-card {
  position: relative;
  width: min(100%, 520px);
  min-height: 640px;
  padding: 18px 18px 62px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(245, 99, 0, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(20, 21, 24, 0.5), rgba(8, 9, 10, 0.14));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07), 0 32px 72px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px) saturate(130%);
  overflow: hidden;
}

.hero-render {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 34px 72px rgba(0, 0, 0, 0.42);
}

.render-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(18px);
  opacity: 0.7;
}

.render-orb-one {
  top: 68px;
  right: 22px;
  width: 110px;
  height: 110px;
  background: rgba(245, 99, 0, 0.18);
}

.render-orb-two {
  bottom: 76px;
  left: 6px;
  width: 150px;
  height: 150px;
  background: rgba(255, 255, 255, 0.08);
}

.render-caption {
  position: absolute;
  right: 26px;
  bottom: 20px;
  z-index: 3;
  display: grid;
  justify-items: end;
  gap: 4px;
  text-align: right;
}

.render-caption span {
  color: rgba(255, 255, 255, 0.48);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.render-caption strong {
  color: rgba(255, 255, 255, 0.94);
  font-family: var(--font-heading);
  font-size: 19px;
  line-height: 1.02;
}

.proof {
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 360px));
  justify-content: center;
  gap: 10px;
  padding-bottom: 24px;
}

.proof article {
  position: relative;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at top left, rgba(245, 99, 0, 0.14), transparent 32%),
    linear-gradient(180deg, rgba(17, 18, 20, 0.88), rgba(8, 9, 10, 0.74)),
    var(--panel);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 24px 54px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(28px) saturate(160%);
  opacity: 0;
  transform: translateY(18px);
  animation: cardReveal 720ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.proof article:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 99, 0, 0.42);
  background:
    radial-gradient(circle at top left, rgba(245, 99, 0, 0.2), transparent 32%),
    linear-gradient(180deg, rgba(20, 21, 24, 0.92), rgba(9, 10, 12, 0.78)),
    rgba(255, 255, 255, 0.06);
}

.card-copy {
  position: relative;
  z-index: 1;
}

.proof span {
  display: block;
  margin-bottom: 18px;
  color: var(--orange);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
}

.proof strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 22px;
  line-height: 1.08;
}

.proof p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.card-visual {
  position: relative;
  margin: 18px -22px -22px;
  padding: 18px 22px 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(0, 0, 0, 0.02));
}

.metric-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 6px;
  padding: 0 22px;
}

.metric-row span {
  margin: 0;
  color: rgba(255, 255, 255, 0.44);
  font-size: 11px;
}

.metric-row strong {
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--font-mono);
  font-size: 12px;
  line-height: 1;
}

.card-graphic {
  width: 100%;
  height: 120px;
  opacity: 1;
  display: block;
}

.graph-shell {
  position: relative;
  overflow: hidden;
  min-height: 272px;
  border-radius: 20px;
  background: #121212;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.ramp-canvas {
  display: block;
  height: auto;
  width: 100%;
  aspect-ratio: 420 / 300;
}

.graph-label {
  position: absolute;
  right: 16px;
  font-family: var(--font-heading);
  font-weight: 800;
  letter-spacing: -0.03em;
  z-index: 1;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.28);
  opacity: 1;
  transform: translateY(0);
}

.watt-label {
  top: 61.4%;
  color: rgba(255, 255, 255, 0.98);
  font-size: clamp(17px, 1.8vw, 22px);
}

.percent-label {
  top: 69%;
  color: #ff4d4d;
  font-size: clamp(15px, 1.5vw, 19px);
}

.watch-panel {
  display: grid;
  grid-template-columns: minmax(130px, 158px) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

.watch-face {
  position: relative;
  aspect-ratio: 1 / 1.18;
  border-radius: 36px;
  background:
    radial-gradient(circle at top, rgba(245, 99, 0, 0.12), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 42%),
    linear-gradient(180deg, #0a0a0b, #111214 58%, #17191c 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08), 0 18px 32px rgba(0, 0, 0, 0.32);
  overflow: hidden;
}

.watch-glow {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: transparent;
}

.watch-ui {
  position: absolute;
  inset: 16px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
}

.watch-heartline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 2px;
  padding-top: 2px;
}

.watch-heart-icon {
  display: inline-flex;
  width: 11px;
  height: 11px;
  color: var(--orange);
  animation: heartBeat 1.05s ease-in-out infinite;
}

.watch-heart-icon svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.watch-heart-state {
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.watch-stage,
.watch-unit,
.watch-copy span,
.math-card span {
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.watch-ui strong {
  color: #fff;
  font-family: var(--font-heading);
  font-size: 54px;
  line-height: 0.9;
  letter-spacing: -0.05em;
}

.watch-progress {
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.watch-progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #9f3f15, #c24f1a);
}

.watch-copy {
  display: grid;
  gap: 12px;
}

.watch-copy div,
.math-card {
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px) saturate(150%);
}

.watch-copy div {
  padding: 11px 14px;
}

.watch-copy strong,
.math-card strong {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.96);
  font-family: var(--font-heading);
  font-size: 20px;
  line-height: 1.02;
}

.watch-copy strong {
  margin-top: 0;
  font-size: 17px;
  line-height: 1.08;
}

.math-stack {
  display: grid;
  gap: 12px;
}

.math-card {
  min-height: 0;
}

.math-card.featured {
  background: linear-gradient(180deg, rgba(245, 99, 0, 0.14), rgba(255, 255, 255, 0.04));
}

.math-card.featured strong {
  font-size: 40px;
  letter-spacing: -0.05em;
}

.math-card p {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

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

.card-graphic .trace {
  fill: none;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  animation: traceDraw 5000ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 360ms;
}

@keyframes cardReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heartBeat {
  0%,
  100% {
    transform: scale(1);
    filter: drop-shadow(0 0 0 rgba(245, 99, 0, 0.22));
  }

  18% {
    transform: scale(1.14);
    filter: drop-shadow(0 0 6px rgba(245, 99, 0, 0.18));
  }

  36% {
    transform: scale(0.96);
  }

  52% {
    transform: scale(1.08);
  }
}


@keyframes traceDraw {
  to {
    stroke-dashoffset: 0;
  }
}

.proof-cta {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  margin: 36px auto 0;
  padding: 0;
  text-align: center;
}

.proof-cta p {
  max-width: 880px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.45;
}

.proof-cta .button {
  min-width: 230px;
}

.method-link {
  color: rgba(255, 255, 255, 0.74);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 800;
  transition: color 160ms ease;
}

.method-link:hover {
  color: #fff;
}

.secondary-action-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 280px));
  justify-content: center;
  gap: 12px;
  width: 100%;
}

.secondary-card-link {
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.03);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(22px) saturate(150%);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.secondary-card-link span {
  margin: 0;
  color: var(--orange);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.secondary-card-link strong {
  color: rgba(255, 255, 255, 0.96);
  font-family: var(--font-heading);
  font-size: 17px;
  line-height: 1.08;
}

.secondary-card-link em {
  color: rgba(255, 255, 255, 0.68);
  font-style: normal;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
}

.secondary-card-link:hover,
.secondary-card-link:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(245, 99, 0, 0.34);
  background:
    linear-gradient(180deg, rgba(245, 99, 0, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.04);
}

.content-section {
  margin-top: 72px;
}

.section-head {
  max-width: 760px;
  margin-bottom: 24px;
}

.section-head h2,
.final-cta h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 58px);
  line-height: 1.02;
  letter-spacing: 0;
}

.section-body {
  max-width: 840px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.5;
}

.zones {
  text-align: center;
}

.zones .section-head,
.zones .section-body {
  margin-left: auto;
  margin-right: auto;
}

.zones .final-actions {
  margin-top: 42px;
}

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

.founder-card {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.035)),
    var(--panel);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14), 0 18px 44px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(28px) saturate(160%);
}

.founder-photo {
  width: 92px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(245, 99, 0, 0.38);
  border-radius: 50%;
  background:
    linear-gradient(145deg, rgba(245, 99, 0, 0.42), rgba(245, 99, 0, 0.08)),
    rgba(255, 255, 255, 0.06);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 800;
}

.founder-card h3 {
  margin: 0 0 8px;
  font-family: var(--font-heading);
  font-size: 24px;
  line-height: 1.1;
}

.founder-card p,
.faq-list p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.faq-list {
  display: grid;
  gap: 8px;
}

.faq-list details {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(245, 99, 0, 0.08), transparent 34%),
    rgba(255, 255, 255, 0.045);
  box-shadow: none;
  backdrop-filter: none;
}

.faq-list details[open] {
  border-color: rgba(245, 99, 0, 0.26);
  background:
    linear-gradient(135deg, rgba(245, 99, 0, 0.12), transparent 38%),
    rgba(255, 255, 255, 0.06);
}

.faq-list summary {
  position: relative;
  cursor: pointer;
  padding: 20px 54px 20px 22px;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.18;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 22px;
  color: var(--orange);
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
  transform: translateY(-52%);
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  max-width: 880px;
  padding: 0 22px 22px;
}

@media (min-width: 901px) {
  .faq .section-head {
    max-width: 980px;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }

  .faq .section-head h2 {
    white-space: nowrap;
  }

  .faq-list {
    max-width: 920px;
    margin-right: auto;
    margin-left: auto;
  }
}

.compatibility-copy {
  max-width: 920px;
  padding: 0 22px 24px;
}

.faq-list .compatibility-copy p {
  max-width: none;
  padding: 0;
}

.app-screens-intro {
  display: grid;
  justify-items: center;
  max-width: 760px;
  margin: 76px auto 0;
  text-align: center;
}

.app-screens-intro h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(30px, 3.8vw, 52px);
  line-height: 1.04;
  letter-spacing: 0;
}

.app-screens-intro p:not(.eyebrow) {
  max-width: 680px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(17px, 1.8vw, 21px);
  line-height: 1.5;
}

.compatibility-copy h3 {
  margin: 24px 0 10px;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 18px;
  line-height: 1.12;
}

.compatibility-copy ul {
  display: grid;
  gap: 7px;
  margin: 0 0 16px;
  padding-left: 20px;
  color: var(--muted);
  font-size: 16px;
}

.compatibility-copy li::marker {
  color: var(--orange);
}

.faq-product-carousel {
  display: grid;
  justify-items: center;
  gap: 20px;
  width: min(100%, 1120px);
  margin: 42px auto 0;
  padding: 0;
}

.mobile-carousel-cta {
  display: none;
  justify-items: center;
  margin: 28px auto 0;
}

.carousel-frame {
  position: relative;
  width: 100%;
  height: clamp(420px, 58vw, 680px);
  overflow: visible;
}

.carousel-track {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 22px;
}

.carousel-slide {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(34vw, 330px);
  height: min(72vw, 660px);
  display: block;
  object-fit: contain;
  border-radius: 22px;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.82);
  transition: opacity 360ms ease, transform 360ms ease, filter 360ms ease, box-shadow 360ms ease;
}


.faq-product-carousel:not(.is-ready) .carousel-slide {
  transition: none;
}

.carousel-slide.active {
  z-index: 3;
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  filter: none;
}

.carousel-slide.previous,
.carousel-slide.next {
  z-index: 2;
  opacity: 0.42;
  filter: saturate(0.75) brightness(0.62);
}

.carousel-slide.previous {
  transform: translate(-128%, -50%) scale(0.72);
}

.carousel-slide.next {
  transform: translate(28%, -50%) scale(0.72);
}

.carousel-control {
  position: absolute;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  width: 48px;
  height: 48px;
  padding: 0 0 3px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  font-size: 0;
  cursor: pointer;
  transform: translateY(-50%);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px) saturate(150%);
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.carousel-control::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border-top: 3px solid currentColor;
  border-left: 3px solid currentColor;
}

.carousel-control.previous::before {
  transform: translateX(2px) rotate(-45deg);
}

.carousel-control.next::before {
  transform: translateX(-2px) rotate(135deg);
}

.carousel-control:hover,
.carousel-control:focus-visible {
  border-color: rgba(245, 99, 0, 0.7);
  background: rgba(245, 99, 0, 0.88);
  transform: translateY(-50%) scale(1.04);
}

.carousel-control.previous {
  left: max(16px, 10%);
}

.carousel-control.next {
  right: max(16px, 10%);
}

.carousel-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}

.carousel-dots button {
  width: 18px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease, width 180ms ease;
}

.carousel-dots button.active {
  width: 34px;
  background: var(--orange);
}

.carousel-dots button:hover,
.carousel-dots button:focus-visible {
  background: rgba(255, 255, 255, 0.72);
  transform: scale(1.12);
}

.final-cta {
  display: grid;
  justify-items: center;
  gap: 20px;
  padding: 54px 22px 32px;
  text-align: center;
}

.final-cta h2 {
  max-width: 780px;
}

.final-cta .section-body {
  max-width: 820px;
  text-align: center;
}

.final-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.methodology-page {
  overflow: visible;
}

.method-hero {
  max-width: 920px;
  padding-top: 92px;
}

.method-hero h1 {
  max-width: 900px;
}

.method-hero p:not(.eyebrow) {
  max-width: 700px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 23px);
}

.method-callout {
  padding: 28px;
  border: 1px solid rgba(245, 99, 0, 0.28);
  border-radius: var(--radius);
  background: rgba(245, 99, 0, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 18px 44px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(28px) saturate(160%);
}

.method-callout p {
  max-width: 900px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(18px, 2vw, 23px);
}

.method-callout strong {
  color: #fff;
}

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

.method-card,
.decision-list article {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.035)),
    var(--panel);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14), 0 18px 44px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(28px) saturate(160%);
}

.method-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 440px;
  padding: 24px;
}

.method-card span,
.decision-list span {
  color: var(--orange);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.method-card h3,
.decision-list h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 26px;
  line-height: 1.08;
}

.method-card p,
.decision-list p,
.rationale p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.equation-card code {
  display: block;
  padding: 16px;
  overflow-wrap: anywhere;
  border: 1px solid rgba(245, 99, 0, 0.3);
  border-radius: var(--radius);
  background: rgba(245, 99, 0, 0.1);
  color: #fff;
  font-family: var(--font-mono);
  font-size: clamp(12px, 1.15vw, 14px);
  line-height: 1.45;
  white-space: normal;
}

.rationale {
  margin-top: auto;
  min-height: 168px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.rationale strong {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
}

.decision-list {
  display: grid;
  gap: 10px;
}

.decision-list article {
  display: grid;
  grid-template-columns: 170px minmax(0, 0.8fr) minmax(0, 1.4fr);
  gap: 24px;
  align-items: baseline;
  padding: 24px;
}

.method-final {
  display: grid;
  justify-items: center;
  gap: 22px;
  padding: 54px 22px 32px;
  text-align: center;
}

.method-final h2 {
  max-width: 820px;
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(34px, 5vw, 68px);
  line-height: 1.02;
}

.story-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: center;
}

.story-intro figure {
  margin: 0;
}

.story-intro img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.26);
}

.story-intro div {
  display: grid;
  gap: 18px;
}

.story-intro p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.5;
}

.story-list article {
  grid-template-columns: 90px minmax(0, 0.8fr) minmax(0, 1.6fr);
}

.story-callout {
  max-width: 920px;
}

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

.story-article {
  max-width: 820px;
  padding-top: 92px;
}

.story-article header {
  margin-bottom: 56px;
}

.story-article h1 {
  max-width: 780px;
}

.story-article h2 {
  margin: 46px 0 14px;
  font-family: var(--font-heading);
  font-size: clamp(27px, 3vw, 42px);
  line-height: 1.08;
}

.story-article p {
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(18px, 1.7vw, 21px);
  line-height: 1.65;
}

.story-article a {
  color: var(--orange);
  text-decoration-color: rgba(245, 99, 0, 0.45);
  text-underline-offset: 0.16em;
  transition: color 180ms ease, text-decoration-color 180ms ease;
}

.story-article a:visited {
  color: var(--orange);
}

.story-article a:hover,
.story-article a:focus-visible {
  color: #fff;
  text-decoration-color: currentColor;
}

.story-article h3 {
  margin: 32px 0 12px;
  color: #fff;
  font-family: var(--font-heading);
  font-size: clamp(21px, 2.2vw, 28px);
  line-height: 1.15;
}

.story-article header p {
  margin-bottom: 18px;
}

.story-article .story-dek {
  max-width: 720px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.35;
}

.story-article blockquote {
  margin: 28px 0;
  padding: 22px 24px;
  border-left: 3px solid var(--orange);
  background: rgba(245, 99, 0, 0.1);
}

.story-article blockquote p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-heading);
  font-weight: 700;
}

.story-photo-spread {
  max-width: 680px;
  margin: 22px auto 26px;
}

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

.story-photo-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
}

.story-photo-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1.08;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.03) brightness(0.9);
}

.story-photo-jason {
  object-position: center 24%;
}

.story-signoff {
  margin-top: 34px;
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 800;
}

.story-article ul {
  margin: 0 0 24px;
  padding-left: 24px;
  color: rgba(255, 255, 255, 0.78);
}

.story-article li {
  margin: 0 0 10px;
  font-size: clamp(18px, 1.7vw, 21px);
  line-height: 1.65;
}

.setup-progress {
  position: fixed;
  top: 50%;
  right: 28px;
  z-index: 10;
  display: grid;
  gap: 16px;
  transform: translateY(-50%);
}

.setup-progress a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.2);
  transition: color 180ms ease;
}

.setup-progress-number,
.setup-progress-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.setup-progress-bar {
  width: 24px;
  height: 2px;
  background: currentColor;
  transition: width 180ms ease, background 180ms ease;
}

.setup-progress a.active,
.setup-progress a:hover {
  color: var(--orange);
}

.setup-progress a.active .setup-progress-bar,
.setup-progress a:hover .setup-progress-bar {
  width: 48px;
}

.setup-progress-label {
  opacity: 0;
  transition: opacity 180ms ease;
}

.setup-progress a.active .setup-progress-label,
.setup-progress a:hover .setup-progress-label {
  opacity: 1;
}

.setup-hero,
.setup-step-section,
.setup-finish {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(380px, 0.9fr);
  gap: 80px;
  align-items: center;
}

.setup-hero {
  position: relative;
  grid-template-columns: 1fr;
  gap: 0;
  padding-top: 120px;
  padding-bottom: 110px;
}

.setup-step-section {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.setup-finish::before {
  content: "";
  position: absolute;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 99, 0, 0.08) 0%, transparent 65%);
  pointer-events: none;
}

.setup-step-section > *,
.setup-finish > * {
  position: relative;
  z-index: 1;
}

.setup-step-section.reverse {
  grid-template-columns: minmax(380px, 0.9fr) minmax(0, 0.95fr);
}

.setup-step-section.reverse .setup-step-copy {
  order: 2;
}

.setup-step-section.reverse .setup-step-visual {
  order: 1;
}

.setup-light {
  color: var(--orange);
  font-weight: 300;
}

.setup-hero-copy h1,
.setup-finish h2,
.setup-step-copy h2 {
  max-width: none;
}

.setup-hero-copy {
  width: min(820px, 100%);
}

.setup-hero-copy h1 {
  font-size: clamp(72px, 9vw, 156px);
  max-width: 820px;
  line-height: 0.9;
  letter-spacing: -0.045em;
}

.setup-hero-line {
  display: block;
  margin: 0;
}

.setup-hero-line-mark {
  margin-left: -0.065em;
}

.setup-wordmark {
  display: inline-block;
  line-height: inherit;
  white-space: nowrap;
}

.setup-wordmark-go {
  display: inline;
  color: var(--orange);
  font-weight: 800;
  line-height: inherit;
  vertical-align: baseline;
}

.setup-wordmark-vo2 {
  display: inline;
  color: #fff;
  font-weight: 300;
  line-height: inherit;
  vertical-align: baseline;
}

.setup-hero-copy .story-dek {
  max-width: 760px;
  color: #888;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.6;
}

.setup-hero-meta,
.setup-finish-meta {
  display: flex;
  gap: 56px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.setup-hero-meta div,
.setup-finish-meta div {
  padding: 0;
  border: 0;
  background: transparent;
}

.setup-hero-meta span,
.setup-finish-meta span {
  display: block;
  margin-bottom: 6px;
  color: #555;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.setup-hero-meta span {
  color: var(--orange);
}

.setup-finish-meta span {
  color: var(--orange);
}

.setup-hero-meta strong,
.setup-finish-meta strong {
  display: block;
  color: #ddd;
  font-family: var(--font-heading);
  font-size: 19px;
  line-height: 1.15;
}

.setup-step-copy {
  max-width: 580px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.setup-step-number {
  margin-bottom: -16px;
  color: transparent;
  font-family: var(--font-heading);
  font-size: clamp(110px, 11vw, 160px);
  font-weight: 800;
  line-height: 0.85;
  letter-spacing: -0.04em;
  -webkit-text-stroke: 1px var(--orange);
  user-select: none;
}

.setup-step-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  color: var(--orange);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.setup-step-tag::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--orange);
}

.setup-step-copy h2 {
  font-size: clamp(44px, 5vw, 72px);
  line-height: 0.96;
  letter-spacing: -0.03em;
}

.setup-body {
  margin: 0;
  color: #888;
  font-size: 18px;
  line-height: 1.65;
}

.setup-body strong,
.setup-check p strong {
  color: #fff;
  font-weight: 600;
}

.setup-checks {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}

.setup-check {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.setup-check span {
  width: 5px;
  height: 5px;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: none;
  flex-shrink: 0;
}

.setup-check p {
  margin: 0;
  color: #bbb;
  font-size: 14px;
}

.setup-step-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.setup-logo {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  font-family: var(--font-heading);
  line-height: 1;
}

.setup-logo span {
  color: var(--orange);
  font-weight: 800;
}

.setup-logo b {
  color: #fff;
  font-weight: 400;
}

.setup-phone {
  position: relative;
  width: 340px;
  height: 700px;
  padding: 56px 18px 18px;
  border: 11px solid #1c1c1c;
  border-radius: 50px;
  background:
    repeating-linear-gradient(135deg, transparent, transparent 2px, rgba(255, 255, 255, 0.018) 2px, rgba(255, 255, 255, 0.018) 4px),
    repeating-linear-gradient(45deg, transparent, transparent 2px, rgba(255, 255, 255, 0.018) 2px, rgba(255, 255, 255, 0.018) 4px),
    #0f0f0f;
  box-shadow:
    0 80px 140px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(245, 99, 0, 0.06),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.setup-phone::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  width: 120px;
  height: 30px;
  border-radius: 20px;
  background: #0a0a0a;
  transform: translateX(-50%);
  z-index: 1;
}

.setup-phone.pair-mode,
.setup-phone.launch-mode {
  height: auto;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.setup-phone.pair-mode::before,
.setup-phone.launch-mode::before {
  content: none;
}

.setup-phone-top,
.setup-watch-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.setup-phone-title,
.setup-watch-time {
  color: var(--orange);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.setup-phone-logo-mini {
  font-size: 13px;
}

.setup-home-stack,
.setup-device-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.setup-home-brand {
  display: grid;
  justify-items: center;
  gap: 14px;
  padding: 36px 0 24px;
}

.setup-home-logo {
  font-size: 54px;
}

.setup-home-brand p {
  margin: 0;
  color: #555;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.setup-phone-card,
.setup-device-row {
  padding: 13px 14px;
  border: 1px solid #252525;
  border-radius: 14px;
  background: #181818;
}

.setup-device-row.live {
  border-color: rgba(245, 99, 0, 0.45);
  background: linear-gradient(135deg, rgba(245, 99, 0, 0.05), transparent), #181818;
}

.setup-device-row.waiting {
  opacity: 0.55;
  border-style: dashed;
}

.setup-field-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.setup-field-row + .setup-field-row {
  margin-top: 12px;
}

.setup-field-label {
  color: #777;
  font-size: 12px;
}

.setup-field-value {
  color: #efefef;
  font-size: 13px;
  font-weight: 600;
}

.setup-placeholder {
  color: #666;
}

.setup-status-live {
  color: var(--orange);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.setup-device-row {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
}

.setup-device-icon {
  position: relative;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(245, 99, 0, 0.35);
  border-radius: 10px;
  background: rgba(245, 99, 0, 0.1);
}

.setup-device-icon.power::before,
.setup-device-icon.watch::before {
  content: "";
  position: absolute;
}

.setup-device-icon.power::before {
  top: 8px;
  left: 10px;
  width: 14px;
  height: 14px;
  border-right: 3px solid var(--orange);
  border-bottom: 3px solid var(--orange);
  transform: rotate(-45deg);
}

.setup-device-icon.watch {
  border-color: #333;
  background: rgba(255, 255, 255, 0.04);
}

.setup-device-icon.watch::before {
  top: 6px;
  left: 10px;
  width: 12px;
  height: 18px;
  border: 2px solid #666;
  border-radius: 5px;
}

.setup-device-copy strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 18px;
}

.setup-device-copy p,
.setup-equation,
.setup-watch-status,
.setup-stream-pill p {
  margin: 8px 0 0;
  color: #888;
  font-size: 14px;
  line-height: 1.45;
}

.setup-device-state {
  color: #ddd;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
}

.setup-device-row.waiting .setup-device-state {
  color: #555;
}

.setup-phone-screenshot {
  display: block;
  width: 100%;
  margin: 0;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 54px;
  background: linear-gradient(180deg, rgba(16, 17, 19, 0.92), rgba(7, 8, 10, 0.82));
  box-shadow:
    0 40px 90px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(255, 255, 255, 0.04);
  object-fit: cover;
}

.setup-phone-screenshot-plain {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.setup-equation span {
  color: var(--orange);
}

.setup-equation em {
  color: #666;
  font-style: normal;
}

.setup-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  margin-top: 20px;
  padding: 0 20px;
  border-radius: 100px;
  background: var(--orange);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.setup-button.ghost {
  background: rgba(255, 255, 255, 0.04);
}

.setup-watch-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.setup-watch {
  width: 250px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 54px;
  background: linear-gradient(180deg, rgba(16, 17, 19, 0.92), rgba(7, 8, 10, 0.82));
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.36);
}

.setup-watch-screen {
  min-height: 300px;
  display: grid;
  place-items: center;
  padding: 18px;
  border-radius: 42px;
  background: #000;
}

.setup-watch-app-screen {
  width: 100%;
  min-height: 220px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 12px;
}

.setup-watch-brand {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  line-height: 1;
}

.setup-watch-brand-go {
  color: #fff;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
}

.setup-watch-brand-vo2 {
  color: rgba(255, 255, 255, 0.62);
  font-family: var(--font-body);
  font-size: 19px;
  font-weight: 300;
}

.setup-watch-message {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  line-height: 1.3;
}

.setup-watch-button {
  min-width: 100px;
  padding: 10px 18px;
  border-radius: 100px;
  background: #f4f4f4;
  color: #111;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}

.setup-stream-pill {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 10px 20px;
  border: 1px solid rgba(245, 99, 0, 0.3);
  border-radius: 100px;
  background: rgba(245, 99, 0, 0.06);
}

.setup-stream-pill p {
  margin: 0;
  color: var(--orange);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  white-space: nowrap;
}

.setup-stream-dots {
  display: inline-flex;
  gap: 5px;
}

.setup-stream-dots span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--orange);
  opacity: 0.3;
  animation: setupPulse 1.4s ease-in-out infinite;
}

.setup-stream-dots span:nth-child(2) {
  animation-delay: 0.15s;
}

.setup-stream-dots span:nth-child(3) {
  animation-delay: 0.3s;
}

.setup-stream-dots span:nth-child(4) {
  animation-delay: 0.45s;
}

.setup-finish {
  position: relative;
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
  min-height: 85vh;
  gap: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.setup-finish::before {
  top: 50%;
  left: 50%;
  width: 1100px;
  height: 1100px;
  transform: translate(-50%, -50%);
}

.setup-finish h2 {
  font-size: clamp(56px, 7vw, 130px);
  line-height: 0.92;
  letter-spacing: -0.04em;
}

.setup-finish-body {
  max-width: 680px;
  margin: 0;
  color: #888;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.6;
}

.setup-end-rule {
  width: 80px;
  height: 2px;
  background: var(--orange);
}

.setup-end-handle {
  margin: 0;
  color: #555;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.setup-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.6, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.6, 0.2, 1);
}

.setup-reveal.is-visible {
  opacity: 1;
  transform: none;
}

.setup-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: #555;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.setup-scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, var(--orange), transparent);
}

@keyframes setupPulse {
  0%, 60%, 100% {
    opacity: 0.25;
    transform: scale(1);
  }

  30% {
    opacity: 1;
    transform: scale(1.3);
  }
}

@keyframes proofPulse {
  70% {
    box-shadow: 0 0 0 10px rgba(245, 99, 0, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(245, 99, 0, 0);
  }
}

footer {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px 24px;
  flex-wrap: wrap;
  padding: 8px 0 0;
  color: var(--dim);
  font-size: 13px;
}

footer p {
  margin: 0;
}

.footer-credit {
  display: inline-block;
}

footer a {
  color: var(--ink);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-left: auto;
}

.footer-links a {
  transition: color 180ms ease, opacity 180ms ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--orange);
  opacity: 1;
}

@media (hover: none), (pointer: coarse) {
  .hero-bg,
  .shade {
    top: 0;
    right: 0;
    bottom: auto;
    left: 0;
    height: 100vh;
    height: 100lvh;
  }
}

@media (max-width: 900px) {
  .teaser {
    padding: 16px;
  }

  .topnav {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .mobile-menu nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: max-content;
    min-width: 174px;
    max-width: calc(100vw - 40px);
    padding: 10px 0 0;
    grid-template-columns: 1fr;
    gap: 14px;
    transform-origin: top right;
  }

  .mobile-menu nav a {
    display: block;
    min-height: 0;
    padding: 2px 0;
    font-size: 16px;
    text-align: right;
    white-space: nowrap;
  }

  .shade {
    background:
      linear-gradient(0deg, rgba(8, 9, 10, calc(var(--hero-bottom-fade) + 0.14)) 0%, rgba(8, 9, 10, 0.18) 48%, rgba(8, 9, 10, 0.08) 100%),
      linear-gradient(90deg, rgba(8, 9, 10, calc(var(--hero-left-fade) + 0.18)), rgba(8, 9, 10, calc(var(--hero-left-mid) + 0.1)));
  }

  .hero {
    min-height: auto;
    padding: 40px 0 0;
  }

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

  .watch-panel {
    grid-template-columns: 1fr;
  }

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

  .story-intro {
    grid-template-columns: 1fr;
  }

  .method-card {
    min-height: 0;
  }

  .rationale {
    min-height: 0;
  }

  .decision-list article {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .proof-cta {
    align-items: center;
  }

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

  .story-photo-spread {
    max-width: 620px;
    margin: 20px auto 24px;
  }

  .story-photo-card img {
    aspect-ratio: 1 / 1.02;
  }
}

@media (max-width: 560px) {
  .story-photo-grid {
    gap: 10px;
  }

  .story-photo-spread {
    max-width: none;
    margin: 18px 0 22px;
  }

  .story-photo-card img {
    aspect-ratio: 1 / 1.1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mobile-menu-toggle span,
  .mobile-menu nav,
  .mobile-menu nav a {
    transition: none;
  }
}

@media (max-width: 560px) {
  .home-page .hero-bg {
    background-image: url("images/black-leather-texture-background-2026-03-24-15-22-25-utc.jpg");
    background-position: center center;
  }

  .topbar {
    min-height: 48px;
    padding-bottom: 16px;
  }

  .mobile-carousel-cta {
    display: grid;
    width: 100%;
    margin-top: 24px;
  }

  .mobile-carousel-cta .button {
    width: min(100%, 280px);
    justify-content: center;
  }

  .faq-product-carousel {
    display: none;
  }

  .carousel-frame {
    height: 430px;
  }

  .carousel-slide {
    width: 210px;
    height: 454px;
    border-radius: 18px;
  }

  .carousel-slide.previous {
    transform: translate(-116%, -50%) scale(0.62);
  }

  .carousel-slide.next {
    transform: translate(16%, -50%) scale(0.62);
  }

  .carousel-control {
    width: 34px;
    height: 34px;
    padding: 0;
  }

  .carousel-control::before {
    width: 9px;
    height: 9px;
    border-top-width: 2px;
    border-left-width: 2px;
  }

  .carousel-control.previous::before {
    transform: translateX(1px) rotate(-45deg);
  }

  .carousel-control.next::before {
    transform: translateX(-1px) rotate(135deg);
  }

  .carousel-control.previous {
    left: 8px;
  }

  .carousel-control.next {
    right: 8px;
  }

  .mini-cta {
    min-height: 38px;
    padding: 0 12px;
    font-size: 12px;
  }

  .hero {
    min-height: 0;
    align-items: flex-start;
    padding: 38px 0 18px;
  }

  .copy {
    max-width: none;
    width: 100%;
    text-align: center;
  }

  .eyebrow {
    margin-bottom: 14px;
  }

  .hero .eyebrow {
    display: none;
  }

  h1 {
    max-width: min(410px, calc(100vw - 32px));
    margin: 0 auto;
    font-size: clamp(26px, 7.2vw, 32px);
    line-height: 1.12;
  }

  .desktop-headline {
    display: none;
  }

  .mobile-headline {
    display: block;
  }

  .mobile-headline > span {
    display: block;
  }

  .mobile-headline .accent-number {
    display: inline;
  }

  h1 span + span {
    margin-top: 0;
  }

  .lede {
    max-width: 360px;
    margin-right: auto;
    margin-left: auto;
    font-size: 18px;
  }

  .actions {
    align-items: center;
    flex-direction: column;
    max-width: 360px;
    margin-top: 28px;
    margin-bottom: 0;
    margin-right: auto;
    margin-left: auto;
    gap: 12px;
  }

  .hero .button {
    width: auto;
    min-width: 220px;
  }

  .regional-app-badge-hero .app-store-badge-image {
    height: 48px;
  }

  .social-proof {
    width: 100%;
    justify-content: center;
  }

  .actions p {
    max-width: 320px;
    margin: 0;
    text-align: center;
    font-size: 13px;
    line-height: 1.35;
  }

  .content-section {
    margin-top: 56px;
  }

  .setup-progress {
    display: none;
  }

  .setup-hero,
  .setup-step-section,
  .setup-step-section.reverse,
  .setup-finish {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .setup-hero {
    padding-top: 36px;
  }

  .setup-hero-copy {
    width: 100%;
    max-width: none;
    margin: 0;
    text-align: left;
  }

  .setup-hero-copy h1 {
    font-size: clamp(42px, 12vw, 52px);
    max-width: none;
    line-height: 0.94;
    letter-spacing: -0.045em;
    margin: 0;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .setup-wordmark {
    display: inline-block;
    white-space: nowrap;
    text-align: inherit;
  }

  .setup-hero-copy .story-dek {
    max-width: none;
    margin: 18px 0 0;
    font-size: 16px;
    line-height: 1.45;
  }

  .setup-hero-meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px 12px;
    align-items: start;
    margin-top: 24px;
    text-align: left;
  }

  .setup-hero-meta strong {
    font-size: 16px;
  }

  .setup-step-copy {
    width: 100%;
    max-width: none;
    margin: 0;
  }

  .setup-step-section.reverse .setup-step-copy,
  .setup-step-section.reverse .setup-step-visual {
    order: initial;
  }

  .setup-step-number {
    font-size: 110px;
  }

  .setup-phone {
    min-height: 0;
    width: min(100%, 340px);
    height: 640px;
    padding: 56px 20px 20px;
    margin-right: auto;
    margin-left: auto;
  }

  .setup-watch {
    width: min(100%, 250px);
    margin-right: auto;
    margin-left: auto;
  }

  .setup-watch-screen {
    min-height: 0;
    aspect-ratio: 1 / 1;
    padding: 16px;
  }

  .setup-watch-app-screen {
    min-height: 0;
  }

  .setup-phone-screenshot {
    padding: 10px;
    border-radius: 42px;
  }

  .setup-phone-screenshot-plain {
    padding: 0;
    border-radius: 0;
  }

  .setup-step-visual,
  .setup-watch-group {
    width: 100%;
    max-width: 100%;
  }

  .setup-watch-group {
    max-width: 250px;
    margin-right: auto;
    margin-left: auto;
  }

  .setup-stream-pill {
    width: auto;
    max-width: 250px;
    align-self: center;
    justify-content: center;
    flex-wrap: nowrap;
    padding: 10px 14px;
  }

  .setup-stream-pill p {
    font-size: 9px;
    white-space: nowrap;
    text-align: center;
  }

  .setup-hero-meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px 12px;
    align-items: start;
  }

  .setup-finish-meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px 12px;
    align-items: start;
  }

  .setup-finish-meta span {
    font-size: 10px;
    letter-spacing: 0.18em;
  }

  .setup-finish-meta strong {
    font-size: 14px;
    line-height: 1.2;
  }

  .setup-hero-meta span {
    font-size: 10px;
    letter-spacing: 0.18em;
  }

  .setup-hero-meta strong {
    font-size: 14px;
    line-height: 1.2;
  }

  .setup-stage-card.primary,
  .setup-stage-card.secondary {
    max-width: none;
    margin: 0 0 14px;
  }

  .setup-device-row {
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .setup-device-state {
    grid-column: 2;
  }

  .setup-finish {
    width: 100%;
    text-align: left;
    justify-items: start;
  }

  .setup-finish::before {
    content: none;
  }

  .setup-scroll-hint {
    display: none;
  }

  .proof {
    gap: 8px;
    margin-top: 0;
    padding-bottom: 10px;
  }

  .proof article {
    min-height: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 54px;
    align-items: center;
    column-gap: 12px;
    padding: 14px 16px;
    background:
      radial-gradient(circle at right, rgba(245, 99, 0, 0.14), transparent 34%),
      linear-gradient(180deg, rgba(17, 18, 20, 0.76), rgba(8, 9, 10, 0.58)),
      var(--panel);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 14px 32px rgba(0, 0, 0, 0.18);
  }

  .card-copy {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    column-gap: 12px;
    align-items: baseline;
  }

  .proof span {
    margin: 0;
    font-size: 11px;
  }

  .proof strong {
    font-size: 18px;
    line-height: 1.12;
  }

  .proof p {
    grid-column: 2;
    margin-top: 6px;
    font-size: 14px;
    line-height: 1.35;
  }

  .proof .card-visual {
    position: relative;
    display: block;
    width: 64px;
    height: 64px;
    margin: 0;
    padding: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015)),
      rgba(255, 255, 255, 0.025);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.06),
      0 0 0 1px rgba(0, 0, 0, 0.12);
  }

  .proof .card-visual > * {
    display: none;
  }

  .proof .card-visual::before,
  .proof .card-visual::after {
    content: "";
    position: absolute;
  }

  .proof .card-visual.watts::before {
    inset: 0;
    display: grid;
    place-items: center;
    color: var(--orange);
    content: "MAP";
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 800;
    line-height: 1;
    text-align: center;
    letter-spacing: -0.06em;
    transform: translateY(1px);
  }

  .proof .card-visual.watts::after {
    content: none;
  }

  .proof .card-visual.heart::before {
    inset: 0;
    display: grid;
    place-items: center;
    color: var(--orange);
    content: "HR";
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 800;
    line-height: 1;
    text-align: center;
    letter-spacing: -0.06em;
    transform: translateY(1px);
  }

  .proof .card-visual.heart::after {
    content: none;
  }

  .proof .card-visual.vo2::before {
    inset: 0;
    background: url("images/Icons/Vo2.png") center / auto 20px no-repeat;
  }

  .proof .card-visual.vo2::after {
    content: none;
  }

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

  .founder-photo {
    width: 76px;
  }

  .faq-list {
    gap: 8px;
  }

  .faq-list details {
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 8px;
    background:
      linear-gradient(135deg, rgba(245, 99, 0, 0.08), transparent 34%),
      rgba(255, 255, 255, 0.045);
    box-shadow: none;
    backdrop-filter: none;
  }

  .faq-list details[open] {
    border-color: rgba(245, 99, 0, 0.26);
    background:
      linear-gradient(135deg, rgba(245, 99, 0, 0.12), transparent 38%),
      rgba(255, 255, 255, 0.06);
  }

  .faq-list summary {
    position: relative;
    padding: 15px 40px 15px 16px;
    font-size: 17px;
    line-height: 1.18;
  }

  .faq-list summary::after {
    right: 16px;
    font-size: 20px;
  }

  .faq-list p {
    padding: 0 16px 16px;
    font-size: 14px;
    line-height: 1.42;
  }

  .compatibility-copy {
    padding: 0 16px 18px;
  }

  .compatibility-copy h3 {
    margin: 18px 0 8px;
    font-size: 16px;
  }

  .compatibility-copy ul {
    gap: 5px;
    margin-bottom: 12px;
    padding-left: 18px;
    font-size: 14px;
  }

  .final-actions {
    width: 100%;
  }

  .secondary-action-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    max-width: 320px;
    margin: 0 auto;
  }

  .secondary-card-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 12px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
    text-align: center;
  }

  .secondary-card-link span {
    display: none;
  }

  .secondary-card-link strong {
    font-size: 13px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.92);
  }

  .secondary-card-link em {
    display: none;
  }

  .secondary-card-link:hover,
  .secondary-card-link:focus-visible {
    transform: none;
    border-color: rgba(245, 99, 0, 0.24);
    background: rgba(255, 255, 255, 0.07);
  }

  footer {
    flex-direction: column;
    align-items: center;
    padding-bottom: 4px;
  }

  .footer-links {
    margin-left: 0;
    justify-content: center;
  }
}
