:root {
  color-scheme: light;
  --ink: #17171f;
  --muted: #6c7280;
  --paper: #ffffff;
  --soft: #f7f8fc;
  --blue: #165dff;
  --blue-2: #003de6;
  --cyan: #43dcff;
  --lime: #d8ff19;
  --orange: #ff9f0a;
  --pink: #ff4f8b;
  --dark: #17181d;
  --dark-2: #24262d;
  --line: #e4e7ef;
  --radius: 8px;
  --shadow: 0 34px 90px rgba(23, 23, 31, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 96px;
}

body {
  min-height: 100vh;
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 12px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(20px);
}

.top-nav,
.brand,
.nav-links,
.hero-actions,
.ticker-track,
.download-actions,
.site-footer,
.footer-links {
  display: flex;
  align-items: center;
}

.top-nav {
  width: min(100%, 1180px);
  min-height: 58px;
  margin: 0 auto;
  padding: 0 18px;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 52px rgba(23, 23, 31, 0.1);
}

.brand {
  gap: 10px;
  font-weight: 900;
  text-decoration: none;
}

.brand img {
  border-radius: var(--radius);
}

.nav-links {
  gap: 26px;
  color: #303443;
  font-size: 0.9rem;
  font-weight: 700;
}

.nav-links a,
.nav-cta,
.button,
.footer-links a,
.store-badge {
  text-decoration: none;
}

.nav-links a:hover,
.footer-links a:hover {
  color: var(--blue);
}

.nav-cta {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-radius: 999px;
  color: #ffffff;
  background: var(--blue);
  font-size: 0.86rem;
  font-weight: 900;
}

.hero-shell {
  width: min(100% - 28px, 1220px);
  margin: 10px auto 0;
  overflow: hidden;
  border-radius: 22px;
  color: #ffffff;
  background:
    radial-gradient(circle at 12% 26%, rgba(67, 220, 255, 0.35), transparent 26%),
    radial-gradient(circle at 84% 22%, rgba(216, 255, 25, 0.28), transparent 26%),
    linear-gradient(135deg, #0d42ff 0%, #165dff 48%, #0042db 100%);
  box-shadow: 0 28px 80px rgba(22, 93, 255, 0.26);
}

.hero-grid {
  position: relative;
  min-height: 720px;
  padding: 76px 56px 0;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
  gap: 36px;
  align-items: center;
}

.hero-grid::before,
.hero-grid::after {
  content: "";
  position: absolute;
  pointer-events: none;
  opacity: 0.3;
}

.hero-grid::before {
  inset: 42px 44px auto auto;
  width: 280px;
  height: 220px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-left: 0;
}

.hero-grid::after {
  left: 52px;
  top: 140px;
  width: 1px;
  height: 210px;
  background: rgba(255, 255, 255, 0.56);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.18);
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 650px;
}

.eyebrow,
.section-label {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 0.86rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-copy .eyebrow {
  color: var(--lime);
}

h1,
h2,
h3,
p,
figure {
  margin: 0;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(3.8rem, 7.5vw, 6.8rem);
  line-height: 0.92;
}

h2 {
  font-size: clamp(2.6rem, 5vw, 5.2rem);
  line-height: 0.96;
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  line-height: 1.08;
}

.hero-copy p:not(.eyebrow),
.intro-copy p,
.feature-cards p,
.blue-copy p,
.exercise-copy p,
.watch-copy p,
.watch-card p,
.details-grid p,
.privacy-strip p,
.download-copy p,
.footer-brand p {
  color: var(--muted);
  line-height: 1.55;
}

.hero-copy p:not(.eyebrow) {
  max-width: 600px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.14rem;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 950;
}

.button-light {
  color: var(--blue);
  background: #ffffff;
}

.button-blue {
  color: #ffffff;
  background: var(--blue);
}

.button-ghost {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

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

.hero-phones {
  position: relative;
  z-index: 2;
  min-height: 620px;
}

.phone-frame {
  position: relative;
  overflow: hidden;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 38px;
  background: #0b0b0d;
  box-shadow: var(--shadow);
}

.phone-frame::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 50%;
  z-index: 2;
  width: 96px;
  height: 28px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #000000;
}

.phone-frame img {
  width: 100%;
  display: block;
  border-radius: 30px;
}

.phone-center {
  position: absolute;
  left: 50%;
  bottom: -40px;
  z-index: 4;
  width: 310px;
  transform: translateX(-50%);
}

.phone-left,
.phone-right {
  position: absolute;
  bottom: 16px;
  width: 270px;
}

.phone-left {
  left: 4%;
  z-index: 2;
  transform: rotate(-7deg);
}

.phone-right {
  right: 4%;
  z-index: 1;
  transform: rotate(7deg);
}

.ticker {
  overflow: hidden;
  padding: 28px 0 18px;
  background: #ffffff;
}

.ticker-track {
  width: max-content;
  min-width: 100%;
  gap: 20px;
  justify-content: center;
  color: #1f2637;
  font-weight: 850;
  white-space: nowrap;
}

.ticker-track span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.ticker-track span::before {
  content: "";
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: var(--blue);
  box-shadow: inset 0 0 0 7px #ffffff, 0 0 0 1px rgba(22, 93, 255, 0.2);
}

.intro-section,
.exercise-section,
.watch-section,
.privacy-strip,
.download-section {
  width: min(100% - 28px, 1220px);
  margin: 0 auto;
  display: grid;
  gap: 64px;
}

.intro-section {
  padding: 96px 0 110px;
  grid-template-columns: minmax(360px, 0.92fr) 1fr;
  align-items: center;
}

.phone-stack {
  position: relative;
  min-height: 650px;
}

.intro-phone-main {
  width: 340px;
  margin-left: 92px;
}

.intro-phone-small {
  position: absolute;
  left: 0;
  bottom: 12px;
  width: 240px;
  transform: rotate(-5deg);
}

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

.intro-copy p:not(.section-label),
.exercise-copy p,
.watch-copy p,
.download-copy p {
  margin-top: 22px;
  font-size: 1.08rem;
}

.intro-copy .button {
  margin-top: 28px;
}

.feature-overview {
  padding: 96px 22px 116px;
  text-align: center;
  background:
    radial-gradient(circle at 8% 12%, rgba(255, 159, 10, 0.14), transparent 26%),
    radial-gradient(circle at 92% 22%, rgba(22, 93, 255, 0.14), transparent 25%),
    #ffffff;
}

.centered {
  text-align: center;
}

.feature-overview h2 {
  max-width: 850px;
  margin: 0 auto;
}

.feature-cards {
  width: min(100%, 1120px);
  margin: 56px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature-cards article,
.details-grid article {
  min-height: 250px;
  padding: 28px;
  text-align: left;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 20px 70px rgba(23, 23, 31, 0.07);
}

.feature-icon {
  width: 54px;
  height: 54px;
  margin-bottom: 56px;
  display: inline-grid;
  place-items: center;
  border-radius: 18px;
  color: var(--blue);
  background: rgba(22, 93, 255, 0.1);
  font-weight: 950;
}

.feature-cards h3,
.details-grid h3 {
  margin-bottom: 12px;
}

.blue-band {
  position: relative;
  width: min(100% - 28px, 1220px);
  min-height: 430px;
  margin: 0 auto 100px;
  padding: 58px;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1fr);
  align-items: center;
  border-radius: var(--radius);
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(22, 93, 255, 0.95), rgba(0, 61, 230, 0.95)),
    var(--blue);
}

.blue-copy {
  max-width: 570px;
}

.blue-copy .section-label {
  color: var(--lime);
}

.blue-copy p {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.76);
}

.blue-copy .button {
  margin-top: 28px;
}

.blue-devices {
  position: relative;
  min-height: 380px;
}

.band-phone-a,
.band-phone-b {
  position: absolute;
  bottom: -96px;
}

.band-phone-a {
  left: 6%;
  width: 250px;
  transform: rotate(-8deg);
}

.band-phone-b {
  right: 2%;
  width: 285px;
  transform: rotate(8deg);
}

.exercise-section {
  padding: 26px 0 112px;
  grid-template-columns: 1fr minmax(300px, 420px);
  align-items: center;
}

.exercise-copy {
  max-width: 700px;
}

.exercise-phone {
  width: 360px;
  justify-self: center;
}

.watch-section {
  margin-top: 0;
  padding: 92px 58px;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  border-radius: 22px;
  color: #ffffff;
  background: #111318;
}

.watch-copy .section-label {
  color: var(--lime);
}

.watch-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.watch-gallery {
  display: grid;
  grid-template-columns: 1fr 240px 1fr;
  gap: 18px;
  align-items: center;
}

.watch-card {
  min-height: 260px;
  padding: 26px;
  display: grid;
  align-content: space-between;
  border-radius: var(--radius);
  background: #1d2028;
}

.watch-card p {
  color: rgba(255, 255, 255, 0.66);
}

.rings {
  position: relative;
  width: 112px;
  height: 112px;
}

.rings i {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  border: 12px solid transparent;
}

.rings i:nth-child(1) {
  border-top-color: var(--pink);
  border-right-color: var(--pink);
}

.rings i:nth-child(2) {
  inset: 19px;
  border-top-color: var(--lime);
  border-right-color: var(--lime);
}

.rings i:nth-child(3) {
  inset: 38px;
  border-top-color: var(--cyan);
  border-right-color: var(--cyan);
}

.watch-device {
  width: 240px;
  height: 292px;
  padding: 18px;
  border-radius: 58px;
  background: #030303;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
}

.watch-screen {
  height: 100%;
  padding: 26px 18px;
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  border-radius: 42px;
  background: #000000;
}

.watch-screen img {
  width: 62px;
  height: 62px;
  margin-bottom: 16px;
  border-radius: var(--radius);
}

.watch-screen span {
  color: var(--lime);
  font-weight: 950;
}

.watch-screen strong {
  margin-top: 8px;
  font-size: 1.5rem;
}

.watch-screen small {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.62);
  font-weight: 800;
}

.details-section {
  padding: 106px 22px;
  background: var(--soft);
}

.details-section h2 {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.details-grid {
  width: min(100%, 1120px);
  margin: 58px auto 0;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 18px;
}

.detail-large {
  grid-row: span 2;
}

.dark-detail {
  color: #ffffff;
  background: #111318 !important;
  border-color: #111318 !important;
}

.dark-detail img {
  width: min(100%, 280px);
  display: block;
  margin: 0 auto 26px;
  border-radius: 34px;
}

.dark-detail p {
  color: rgba(255, 255, 255, 0.68);
}

.privacy-strip {
  padding: 92px 0;
  grid-template-columns: 1fr 1fr;
  align-items: start;
}

.privacy-strip h2 {
  max-width: 620px;
}

.privacy-strip p {
  margin-top: 44px;
  font-size: 1.12rem;
}

.download-section {
  position: relative;
  min-height: 520px;
  margin-bottom: 0;
  padding: 64px 58px 0;
  overflow: hidden;
  grid-template-columns: minmax(0, 0.96fr) minmax(420px, 1fr);
  align-items: center;
  border-radius: var(--radius) var(--radius) 0 0;
  color: #ffffff;
  background:
    radial-gradient(circle at 84% 18%, rgba(216, 255, 25, 0.22), transparent 25%),
    linear-gradient(135deg, #165dff 0%, #0642de 100%);
}

.download-copy {
  max-width: 640px;
  padding-bottom: 64px;
}

.download-copy .section-label {
  color: var(--lime);
}

.download-copy p {
  color: rgba(255, 255, 255, 0.76);
}

.download-actions {
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.store-badge {
  min-width: 180px;
  min-height: 58px;
  padding: 8px 18px;
  display: grid;
  align-content: center;
  border-radius: var(--radius);
  color: #ffffff;
  background: #111318;
}

.store-badge span {
  font-size: 0.72rem;
}

.store-badge strong {
  font-size: 1.28rem;
  line-height: 1;
}

.download-devices {
  position: relative;
  min-height: 520px;
}

.download-phone-a,
.download-phone-b {
  position: absolute;
  bottom: -96px;
}

.download-phone-a {
  left: 0;
  width: 290px;
  transform: rotate(-7deg);
}

.download-phone-b {
  right: 6%;
  width: 250px;
  transform: rotate(9deg);
}

.site-footer {
  min-height: 250px;
  padding: 46px calc((100% - min(100% - 28px, 1220px)) / 2);
  align-items: start;
  justify-content: space-between;
  gap: 32px;
  color: rgba(255, 255, 255, 0.72);
  background: #1b1d23;
}

.dark-brand {
  color: #ffffff;
}

.footer-brand p {
  max-width: 330px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.58);
}

.footer-links {
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

.legal-page {
  padding: 72px 22px 96px;
  background: var(--soft);
}

.legal-content {
  width: min(100%, 880px);
  margin: 0 auto;
  padding: 42px;
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 20px 70px rgba(23, 23, 31, 0.08);
}

.legal-content h1 {
  font-size: clamp(3rem, 7vw, 5rem);
}

.legal-content h2 {
  margin-top: 34px;
  font-size: 1.5rem;
}

.legal-content p {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.56;
}

.legal-content a {
  color: var(--blue);
  font-weight: 800;
}

.legal-updated {
  margin-top: 18px;
}

@media (max-width: 1040px) {
  .nav-links {
    display: none;
  }

  .hero-grid,
  .intro-section,
  .blue-band,
  .exercise-section,
  .watch-section,
  .privacy-strip,
  .download-section {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    padding: 60px 28px 0;
    text-align: center;
  }

  .hero-copy,
  .hero-copy p:not(.eyebrow),
  .intro-copy,
  .exercise-copy,
  .watch-copy,
  .download-copy {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-phones {
    min-height: 600px;
  }

  .feature-cards,
  .details-grid {
    grid-template-columns: 1fr;
  }

  .detail-large {
    grid-row: auto;
  }

  .blue-band,
  .watch-section,
  .download-section {
    text-align: center;
  }

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

  .watch-device {
    justify-self: center;
  }

  .privacy-strip p {
    margin-top: 0;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding: 8px;
  }

  .top-nav {
    min-height: 52px;
    padding: 0 12px;
  }

  .top-nav .brand span {
    display: none;
  }

  .hero-shell,
  .intro-section,
  .exercise-section,
  .watch-section,
  .privacy-strip,
  .download-section,
  .blue-band {
    width: min(100% - 16px, 1220px);
  }

  .hero-grid {
    min-height: 640px;
    padding: 42px 18px 0;
  }

  .hero-grid::before,
  .hero-grid::after {
    display: none;
  }

  h1 {
    font-size: 3.3rem;
  }

  h2 {
    font-size: 2.65rem;
  }

  .hero-actions,
  .download-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button,
  .store-badge {
    width: 100%;
  }

  .hero-phones {
    min-height: 550px;
    margin-top: 26px;
  }

  .phone-center {
    top: 18px;
    bottom: auto;
    width: 235px;
  }

  .phone-left,
  .phone-right {
    display: none;
  }

  .ticker {
    padding-top: 20px;
  }

  .ticker-track {
    justify-content: flex-start;
    overflow-x: auto;
    padding: 0 16px;
  }

  .intro-section {
    padding: 70px 0;
  }

  .phone-stack {
    min-height: 470px;
  }

  .intro-phone-main {
    width: 270px;
    margin: 0 auto;
  }

  .intro-phone-small {
    width: 190px;
    left: 0;
  }

  .feature-overview,
  .details-section {
    padding: 70px 16px;
  }

  .feature-cards {
    margin-top: 34px;
  }

  .feature-cards article,
  .details-grid article,
  .watch-card {
    min-height: auto;
    padding: 22px;
  }

  .feature-icon {
    margin-bottom: 34px;
  }

  .blue-band,
  .watch-section,
  .download-section {
    padding: 44px 18px 0;
  }

  .blue-devices,
  .download-devices {
    min-height: 360px;
  }

  .band-phone-a,
  .download-phone-a {
    width: 210px;
    left: 2%;
  }

  .band-phone-b,
  .download-phone-b {
    width: 190px;
    right: 2%;
  }

  .exercise-section {
    padding: 20px 0 70px;
    text-align: center;
  }

  .exercise-phone {
    width: 280px;
  }

  .watch-section {
    padding-bottom: 44px;
  }

  .watch-device {
    width: 220px;
    height: 270px;
  }

  .privacy-strip {
    padding: 70px 0;
    text-align: center;
  }

  .download-section {
    min-height: 620px;
  }

  .download-copy {
    padding-bottom: 20px;
  }

  .site-footer {
    min-height: 260px;
    padding: 36px 16px;
    display: grid;
  }

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

  .legal-page {
    padding: 52px 16px 72px;
  }

  .legal-content {
    padding: 26px;
  }
}

/* V2 polish */

body {
  background:
    linear-gradient(180deg, #ffffff 0%, #f7f8fc 34%, #ffffff 68%);
}

.hero-v2 {
  margin-top: 8px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 0 1px, transparent 1px 100%) 0 0 / 86px 86px,
    linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0 1px, transparent 1px 100%) 0 0 / 86px 86px,
    radial-gradient(circle at 18% 24%, rgba(216, 255, 25, 0.3), transparent 24%),
    radial-gradient(circle at 84% 68%, rgba(67, 220, 255, 0.24), transparent 25%),
    linear-gradient(135deg, #1058ff 0%, #165dff 45%, #071d9f 100%);
}

.hero-v2 .hero-grid {
  min-height: 720px;
  padding-top: 62px;
}

.hero-v2 h1 {
  max-width: 720px;
  font-size: clamp(4rem, 7.3vw, 7.1rem);
}

.hero-v2 .hero-copy p:not(.eyebrow) {
  max-width: 620px;
}

.hero-badges,
.intro-metrics,
.equipment-list,
.privacy-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-badges {
  margin-top: 26px;
}

.hero-badges span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.82rem;
  font-weight: 900;
}

.hero-v2 .phone-center {
  width: 326px;
}

.hero-v2 .phone-left {
  width: 276px;
  left: 0;
  bottom: 24px;
  transform: rotate(-9deg);
}

.hero-v2 .phone-right {
  width: 270px;
  right: 0;
  bottom: 36px;
  transform: rotate(9deg);
}

.product-intro {
  width: min(100% - 28px, 1120px);
  margin: 0 auto;
  padding: 112px 0 90px;
  text-align: center;
}

.product-intro h2 {
  max-width: 980px;
  margin: 0 auto;
}

.product-intro > p:not(.section-label) {
  max-width: 780px;
  margin: 26px auto 0;
  color: var(--muted);
  font-size: 1.16rem;
  line-height: 1.62;
}

.intro-metrics {
  margin-top: 42px;
  justify-content: center;
}

.intro-metrics span {
  min-width: 190px;
  min-height: 82px;
  padding: 16px 18px;
  display: grid;
  align-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 18px 60px rgba(23, 23, 31, 0.06);
  color: #252a36;
  font-weight: 850;
}

.intro-metrics strong {
  display: block;
  color: var(--blue);
  font-size: 2rem;
  line-height: 1;
}

.feature-overview {
  background:
    linear-gradient(180deg, #ffffff 0%, #f5f7fb 100%);
}

.feature-overview h2 {
  max-width: 960px;
}

.feature-cards article {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  border-color: rgba(228, 231, 239, 0.86);
}

.feature-cards article::after {
  content: "";
  position: absolute;
  right: 28px;
  bottom: 28px;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background:
    linear-gradient(var(--paper), var(--paper)) padding-box,
    conic-gradient(from 20deg, var(--blue), var(--lime), var(--cyan), var(--blue)) border-box;
  border: 10px solid transparent;
  opacity: 0.74;
}

.workflow-section {
  padding: 112px 22px 124px;
  background: #f5f7fb;
}

.section-heading {
  width: min(100%, 1000px);
  margin: 0 auto 52px;
  text-align: center;
}

.workflow-grid {
  width: min(100%, 1220px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.workflow-card {
  min-height: 690px;
  padding: 34px;
  overflow: hidden;
  display: grid;
  align-content: space-between;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #ffffff;
  box-shadow: 0 22px 76px rgba(23, 23, 31, 0.08);
}

.workflow-card h3 {
  max-width: 620px;
  font-size: clamp(1.85rem, 2.6vw, 3rem);
}

.workflow-card p:not(.section-label),
.macro-panel,
.equipment-list span,
.privacy-points span {
  color: var(--muted);
  line-height: 1.55;
}

.workflow-card p:not(.section-label) {
  max-width: 560px;
  margin-top: 18px;
  font-size: 1.05rem;
}

.workout-card {
  color: #ffffff;
  background:
    linear-gradient(145deg, rgba(12, 33, 118, 0.12), transparent 48%),
    #111318;
  border-color: #111318;
}

.workout-card .section-label,
.diet-card .section-label {
  color: var(--lime);
}

.workout-card p:not(.section-label),
.diet-card p:not(.section-label) {
  color: rgba(255, 255, 255, 0.68);
}

.progress-card {
  color: var(--ink);
}

.diet-card {
  color: #ffffff;
  background:
    linear-gradient(145deg, #16245c 0%, #101217 74%);
  border-color: #101217;
}

.workflow-phone {
  width: min(94%, 290px);
  margin: 36px auto -96px;
}

.progress-card .workflow-phone {
  width: min(88%, 260px);
  margin-bottom: -84px;
}

.macro-panel {
  width: min(100%, 340px);
  margin: 34px auto 0;
  padding: 24px;
  border-radius: var(--radius);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.macro-panel span {
  color: var(--lime);
  font-weight: 950;
  text-transform: uppercase;
}

.macro-panel strong {
  display: block;
  margin-top: 8px;
  font-size: 2.6rem;
  line-height: 1;
}

.macro-rings {
  position: relative;
  width: 148px;
  height: 148px;
  margin: 26px auto;
  border-radius: 999px;
  background:
    conic-gradient(var(--lime) 0 76%, rgba(255, 255, 255, 0.14) 76% 100%);
}

.macro-rings i {
  position: absolute;
  border-radius: 999px;
}

.macro-rings i:nth-child(1) {
  inset: 22px;
  background: conic-gradient(var(--cyan) 0 68%, rgba(255, 255, 255, 0.12) 68% 100%);
}

.macro-rings i:nth-child(2) {
  inset: 44px;
  background: conic-gradient(var(--pink) 0 58%, rgba(255, 255, 255, 0.1) 58% 100%);
}

.macro-rings i:nth-child(3) {
  inset: 66px;
  background: #111318;
}

.macro-panel dl {
  margin: 0;
  display: grid;
  gap: 10px;
}

.macro-panel dl div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
}

.macro-panel dt,
.macro-panel dd {
  margin: 0;
}

.macro-panel dd {
  color: #ffffff;
  font-weight: 950;
}

.progress-band {
  margin-top: 0;
  margin-bottom: 92px;
}

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

.equipment-list span,
.privacy-points span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #ffffff;
  font-size: 0.88rem;
  font-weight: 850;
}

.watch-section {
  background:
    linear-gradient(145deg, #111318 0%, #1a1d28 64%, #0a0b0e 100%);
}

.watch-card h3,
.watch-screen strong {
  color: #ffffff;
}

.details-grid {
  grid-template-columns: 1.15fr 1fr 1fr;
}

.privacy-v2 {
  grid-template-columns: 0.9fr 0.78fr 0.72fr;
  align-items: center;
}

.privacy-v2 > p {
  margin-top: 0;
}

.privacy-points {
  align-content: start;
}

.privacy-points span {
  width: 100%;
  justify-content: center;
}

.download-v2 {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0 1px, transparent 1px 100%) 0 0 / 76px 76px,
    radial-gradient(circle at 82% 14%, rgba(216, 255, 25, 0.24), transparent 26%),
    linear-gradient(135deg, #165dff 0%, #003de6 58%, #071d9f 100%);
}

@media (max-width: 1040px) {
  .hero-v2 .hero-grid,
  .workflow-grid,
  .privacy-v2 {
    grid-template-columns: 1fr;
  }

  .hero-badges,
  .equipment-list,
  .privacy-points {
    justify-content: center;
  }

  .workflow-card {
    min-height: auto;
    text-align: center;
  }

  .workflow-card h3,
  .workflow-card p:not(.section-label) {
    margin-right: auto;
    margin-left: auto;
  }

  .workout-card {
    grid-row: auto;
  }

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

  .workflow-phone,
  .progress-card .workflow-phone {
    margin-bottom: -96px;
  }
}

@media (max-width: 720px) {
  .hero-v2 h1 {
    font-size: 3.55rem;
  }

  .hero-v2 .hero-grid {
    min-height: 0;
    padding-top: 44px;
  }

  .hero-badges {
    justify-content: center;
  }

  .hero-v2 .phone-center {
    top: 18px;
    width: 235px;
  }

  .product-intro {
    width: min(100% - 16px, 1120px);
    padding: 76px 0 64px;
  }

  .product-intro > p:not(.section-label) {
    font-size: 1rem;
  }

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

  .intro-metrics span {
    min-width: 0;
  }

  .workflow-section {
    padding: 74px 8px;
  }

  .ticker-track {
    width: 100%;
    min-width: 0;
  }

  .ticker-track span {
    flex: 0 0 auto;
  }

  .section-heading {
    margin-bottom: 32px;
  }

  .workflow-card {
    min-height: 0;
    padding: 24px 18px;
  }

  .workflow-card h3 {
    font-size: 2.35rem;
  }

  .workflow-phone,
  .progress-card .workflow-phone {
    width: min(100%, 250px);
    margin-top: 28px;
    margin-bottom: -72px;
  }

  .macro-panel {
    padding: 20px;
  }

  .macro-panel strong {
    font-size: 2.1rem;
  }

  .macro-rings {
    width: 124px;
    height: 124px;
  }

  .privacy-v2 {
    gap: 28px;
  }

  .privacy-points span {
    justify-content: flex-start;
  }
}

/* Premium polish */

:root {
  --ink: #111522;
  --muted: #667085;
  --paper: #ffffff;
  --soft: #f3f6fb;
  --blue: #1768ff;
  --blue-2: #0737d9;
  --cyan: #46d8ff;
  --lime: #caff00;
  --line: #dfe5f0;
  --shadow: 0 32px 90px rgba(17, 21, 34, 0.16);
  --premium-shadow: 0 28px 90px rgba(21, 49, 112, 0.16);
}

body {
  background:
    linear-gradient(180deg, #fbfcff 0%, #eef3fb 34%, #ffffff 68%, #f7f9fd 100%);
}

.site-header {
  padding: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.64));
  border-bottom: 1px solid rgba(223, 229, 240, 0.5);
}

.top-nav {
  min-height: 60px;
  padding: 0 20px;
  border-color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 62px rgba(17, 21, 34, 0.12);
}

.brand {
  color: #111522;
}

.brand img {
  box-shadow: 0 8px 24px rgba(23, 104, 255, 0.18);
}

.nav-links {
  color: #242b3a;
}

.nav-links a {
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: center;
  border-radius: 999px;
  background: var(--blue);
  transition: transform 160ms ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-cta,
.button-blue {
  background: linear-gradient(135deg, #2177ff 0%, #0d47ef 100%);
  box-shadow: 0 14px 34px rgba(23, 104, 255, 0.28);
}

.button,
.nav-cta,
.store-badge {
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.hero-premium {
  width: min(100% - 32px, 1240px);
  border-radius: 30px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 0 1px, transparent 1px 100%) 0 0 / 82px 82px,
    linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0 1px, transparent 1px 100%) 0 0 / 82px 82px,
    radial-gradient(circle at 16% 24%, rgba(202, 255, 0, 0.32), transparent 23%),
    radial-gradient(circle at 86% 18%, rgba(70, 216, 255, 0.24), transparent 28%),
    linear-gradient(135deg, #1768ff 0%, #0b4ef1 47%, #061d95 100%);
  box-shadow:
    0 36px 110px rgba(23, 104, 255, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.hero-premium .hero-grid {
  min-height: 680px;
  padding: 42px 58px 0;
  grid-template-columns: minmax(0, 0.88fr) minmax(540px, 1.12fr);
}

.hero-premium .hero-grid::before {
  width: 310px;
  height: 230px;
  opacity: 0.34;
}

.hero-premium h1 {
  max-width: 720px;
  font-size: clamp(3.8rem, 6.7vw, 6.45rem);
  letter-spacing: 0;
}

.hero-premium .hero-copy p:not(.eyebrow) {
  margin-top: 16px;
  font-size: 1.1rem;
}

.hero-badges {
  margin-top: 16px;
}

.hero-badges span {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(12px);
}

.hero-proof-row {
  max-width: 620px;
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.hero-proof-row span {
  min-height: 58px;
  padding: 11px 12px;
  display: grid;
  align-content: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.72);
  background: rgba(5, 22, 80, 0.2);
  backdrop-filter: blur(12px);
  font-size: 0.78rem;
  font-weight: 800;
}

.hero-proof-row strong {
  display: block;
  color: #ffffff;
  font-size: 0.96rem;
}

.hero-premium .hero-actions {
  margin-top: 18px;
}

.hero-premium .hero-phones {
  min-height: 590px;
}

.hero-premium .hero-phones::before {
  content: "";
  position: absolute;
  right: 5%;
  bottom: 8px;
  left: 6%;
  height: 120px;
  border-radius: 999px;
  background: rgba(3, 11, 44, 0.34);
  filter: blur(28px);
}

.hero-premium .phone-frame {
  border-color: rgba(255, 255, 255, 0.62);
  box-shadow:
    0 38px 96px rgba(0, 12, 64, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.hero-premium .phone-center {
  width: 315px;
  bottom: -18px;
}

.hero-premium .phone-left {
  width: 266px;
  left: 1%;
  bottom: 28px;
}

.hero-premium .phone-right {
  width: 260px;
  right: 1%;
  bottom: 40px;
}

.premium-ticker {
  padding: 22px 0 16px;
  border-bottom: 1px solid rgba(223, 229, 240, 0.72);
}

.premium-ticker .ticker-track {
  color: #2b3344;
}

.premium-intro {
  padding-top: 106px;
}

.premium-intro h2,
.premium-features h2,
.section-heading h2,
.premium-details h2 {
  text-wrap: balance;
}

.premium-intro > p:not(.section-label) {
  color: #5e6676;
}

.intro-metrics span {
  min-height: 92px;
  border-color: rgba(223, 229, 240, 0.9);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.72));
  box-shadow: var(--premium-shadow);
}

.premium-features {
  padding-top: 106px;
  background:
    radial-gradient(circle at 16% 6%, rgba(70, 216, 255, 0.12), transparent 24%),
    radial-gradient(circle at 88% 18%, rgba(202, 255, 0, 0.12), transparent 22%),
    linear-gradient(180deg, #ffffff 0%, #f4f7fc 100%);
}

.feature-cards article {
  min-height: 310px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.76));
  box-shadow: 0 24px 80px rgba(17, 21, 34, 0.08);
}

.feature-cards article:nth-child(1) {
  border-top: 4px solid var(--blue);
}

.feature-cards article:nth-child(2) {
  border-top: 4px solid var(--cyan);
}

.feature-cards article:nth-child(3) {
  border-top: 4px solid var(--lime);
}

.premium-workflow {
  padding-top: 104px;
  background:
    linear-gradient(180deg, #f4f7fc 0%, #eef3fb 100%);
}

.workflow-card {
  border-color: rgba(223, 229, 240, 0.94);
  box-shadow: 0 26px 82px rgba(17, 21, 34, 0.1);
}

.workout-card,
.diet-card {
  box-shadow: 0 30px 88px rgba(17, 21, 34, 0.16);
}

.workout-card {
  background:
    radial-gradient(circle at 14% 10%, rgba(70, 216, 255, 0.14), transparent 24%),
    linear-gradient(145deg, #171b25 0%, #0d1018 100%);
}

.diet-card {
  background:
    radial-gradient(circle at 82% 18%, rgba(202, 255, 0, 0.13), transparent 24%),
    linear-gradient(145deg, #18285d 0%, #0f1220 100%);
}

.workflow-phone {
  filter: drop-shadow(0 18px 34px rgba(3, 11, 44, 0.18));
}

.macro-panel {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.premium-progress-band {
  border-radius: 24px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 100%) 0 0 / 76px 76px,
    radial-gradient(circle at 78% 20%, rgba(202, 255, 0, 0.18), transparent 24%),
    linear-gradient(135deg, #0e5cff 0%, #0637cd 62%, #061d95 100%);
  box-shadow: 0 34px 96px rgba(23, 104, 255, 0.2);
}

.premium-exercise {
  padding-top: 42px;
}

.premium-exercise .exercise-copy {
  padding: 44px 0;
}

.equipment-list span,
.privacy-points span {
  border-color: rgba(223, 229, 240, 0.92);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 36px rgba(17, 21, 34, 0.06);
}

.premium-watch {
  border-radius: 28px;
  background:
    radial-gradient(circle at 70% 20%, rgba(70, 216, 255, 0.12), transparent 24%),
    radial-gradient(circle at 14% 78%, rgba(202, 255, 0, 0.1), transparent 24%),
    linear-gradient(145deg, #151a24 0%, #080a0f 100%);
  box-shadow: 0 34px 100px rgba(17, 21, 34, 0.22);
}

.watch-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.watch-device {
  background:
    linear-gradient(180deg, #111318 0%, #000000 100%);
}

.watch-screen {
  background:
    radial-gradient(circle at 50% 18%, rgba(202, 255, 0, 0.12), transparent 30%),
    #000000;
}

.premium-details {
  background:
    radial-gradient(circle at 18% 8%, rgba(23, 104, 255, 0.09), transparent 24%),
    linear-gradient(180deg, #f5f7fb 0%, #ffffff 100%);
}

.details-grid article {
  border-color: rgba(223, 229, 240, 0.94);
  background: rgba(255, 255, 255, 0.86);
}

.dark-detail {
  background:
    radial-gradient(circle at 80% 12%, rgba(70, 216, 255, 0.12), transparent 26%),
    #10131b !important;
}

.premium-privacy {
  width: min(100% - 32px, 1220px);
  margin-top: 8px;
  padding: 76px 58px;
  border: 1px solid rgba(223, 229, 240, 0.92);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(246, 249, 253, 0.88));
  box-shadow: 0 24px 80px rgba(17, 21, 34, 0.08);
}

.premium-download {
  border-radius: 24px 24px 0 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0 1px, transparent 1px 100%) 0 0 / 74px 74px,
    radial-gradient(circle at 84% 16%, rgba(202, 255, 0, 0.24), transparent 24%),
    radial-gradient(circle at 34% 78%, rgba(70, 216, 255, 0.16), transparent 28%),
    linear-gradient(135deg, #1768ff 0%, #0737d9 58%, #061d95 100%);
}

.store-badge {
  box-shadow: 0 18px 46px rgba(17, 21, 34, 0.22);
}

.legal-page {
  background:
    radial-gradient(circle at 14% 8%, rgba(23, 104, 255, 0.08), transparent 26%),
    linear-gradient(180deg, #f7f9fd 0%, #ffffff 100%);
}

.legal-content {
  border: 1px solid rgba(223, 229, 240, 0.92);
  box-shadow: 0 28px 90px rgba(17, 21, 34, 0.1);
}

@media (max-width: 1040px) {
  .hero-premium .hero-grid {
    grid-template-columns: 1fr;
    padding-top: 56px;
  }

  .hero-proof-row {
    margin-right: auto;
    margin-left: auto;
  }

  .premium-privacy {
    padding: 58px 32px;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding: 8px;
  }

  .top-nav {
    min-height: 54px;
  }

  .hero-premium {
    width: min(100% - 16px, 1240px);
    border-radius: 22px;
  }

  .hero-premium .hero-grid {
    padding: 38px 18px 0;
  }

  .hero-premium h1 {
    font-size: 3.35rem;
  }

  .hero-premium .hero-copy p:not(.eyebrow) {
    font-size: 1rem;
  }

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

  .hero-proof-row span {
    min-height: 48px;
  }

  .hero-premium .hero-phones {
    min-height: 530px;
  }

  .hero-premium .phone-center {
    width: 232px;
  }

  .premium-intro,
  .premium-features,
  .premium-workflow,
  .premium-details {
    padding-top: 72px;
  }

  .feature-cards article {
    min-height: auto;
  }

  .feature-cards article::after {
    content: none;
    display: none !important;
  }

  .premium-privacy {
    width: min(100% - 16px, 1220px);
    padding: 44px 18px;
  }

  .premium-download {
    border-radius: 18px 18px 0 0;
  }
}
