:root {
  --bg: #0c0d0a;
  --bg-2: #12140f;
  --panel: rgba(255, 255, 255, 0.07);
  --panel-strong: rgba(0, 0, 0, 0.38);
  --line: rgba(255, 255, 255, 0.12);
  --text: #fffaf0;
  --muted: rgba(255, 250, 240, 0.68);
  --green: #44f59a;
  --saffron: #e5a93d;
  --clay: #d76d4a;
  --aqua: #7ed6c4;
  --maroon: #3b140d;
  --shadow: 0 24px 90px rgba(0, 0, 0, 0.45);
  color-scheme: dark;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(ellipse at 12% 24%, rgba(68, 245, 154, 0.16), transparent 32rem),
    radial-gradient(ellipse at 86% 12%, rgba(229, 169, 61, 0.2), transparent 30rem),
    linear-gradient(135deg, #09110d 0%, #30110e 52%, var(--bg) 100%);
  color: var(--text);
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, #000, transparent 78%);
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 22px;
  justify-content: space-between;
  padding: 18px clamp(18px, 4vw, 56px);
  background: rgba(12, 13, 10, 0.76);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: 0.01em;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  background: conic-gradient(from 120deg, var(--green), var(--saffron), var(--clay), var(--green));
  border-radius: 50%;
  box-shadow: 0 0 24px rgba(229, 169, 61, 0.22);
}

.brand-mark-icon {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  background: var(--bg-2);
  border-radius: 50%;
  color: var(--text);
  font-size: 11px;
  font-weight: 900;
}

.top-nav {
  display: flex;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.top-nav a:hover {
  color: var(--text);
}

.nav-cta,
.store-button {
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.nav-cta {
  padding: 10px 16px;
  background: rgba(229, 169, 61, 0.16);
  border: 1px solid rgba(229, 169, 61, 0.32);
  border-radius: 999px;
  color: #ffe6b0;
  font-size: 14px;
  font-weight: 800;
}

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

.section-shell {
  width: min(1120px, calc(100% - 36px));
  margin-inline: auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
  gap: clamp(28px, 6vw, 78px);
  align-items: center;
  min-height: calc(100svh - 78px);
  padding-block: 54px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--saffron);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(44px, 8vw, 88px);
  font-weight: 950;
  line-height: 0.94;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(30px, 4.4vw, 52px);
  font-weight: 920;
  line-height: 1;
}

h3 {
  margin-bottom: 8px;
  font-size: 20px;
}

p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-subtitle {
  max-width: 620px;
  margin-bottom: 28px;
  font-size: clamp(16px, 2vw, 20px);
}

.store-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.store-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 190px;
  padding: 13px 16px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid transparent;
  border-radius: 14px;
  color: #10110e;
  font-weight: 900;
  box-shadow: var(--shadow);
}

.store-button small {
  display: block;
  color: rgba(16, 17, 14, 0.66);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.1;
}

.store-icon {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  background: #10110e;
  border-radius: 10px;
  color: #fff;
  font-size: 11px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-proof span {
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  perspective: 1200px;
  transform-style: preserve-3d;
}

.energy-orbit {
  position: absolute;
  width: 390px;
  height: 390px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  pointer-events: none;
  transform: rotateX(68deg) rotateZ(-18deg);
}

.energy-orbit::before {
  position: absolute;
  top: 48px;
  left: 50%;
  width: 14px;
  height: 14px;
  content: "";
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 28px rgba(68, 245, 154, 0.9);
}

.orbit-b {
  width: 480px;
  height: 480px;
  border-color: rgba(229, 169, 61, 0.14);
  transform: rotateX(66deg) rotateZ(28deg) translateZ(-50px);
}

.orbit-b::before {
  top: 88px;
  background: var(--saffron);
  box-shadow: 0 0 28px rgba(229, 169, 61, 0.86);
}

.phone-frame {
  position: relative;
  width: min(100%, 360px);
  padding: 12px;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 36px;
  box-shadow: var(--shadow);
  transform: rotateY(-13deg) rotateX(6deg) translateZ(24px);
  transform-style: preserve-3d;
  transition: transform 260ms ease;
}

.phone-frame::before {
  position: absolute;
  inset: 18px -12px -20px 28px;
  z-index: -1;
  content: "";
  background: rgba(0, 0, 0, 0.34);
  border-radius: 36px;
  filter: blur(10px);
  transform: translateZ(-48px);
}

.phone-screen {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  padding: 22px;
  background:
    radial-gradient(circle at 82% 18%, rgba(229, 169, 61, 0.2), transparent 16rem),
    radial-gradient(circle at 18% 36%, rgba(68, 245, 154, 0.14), transparent 15rem),
    #10110e;
  border-radius: 28px;
}

.hero-visual:hover .phone-frame {
  transform: rotateY(-7deg) rotateX(3deg) translateY(-6px) translateZ(34px);
}

.phone-top,
.mode-card,
.activity-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.phone-top {
  color: var(--muted);
  font-size: 14px;
  font-weight: 900;
}

.phone-top button {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  background: rgba(229, 169, 61, 0.18);
  border: 1px solid rgba(229, 169, 61, 0.34);
  border-radius: 50%;
}

.rings-logo {
  position: relative;
  display: grid;
  width: 210px;
  height: 210px;
  place-items: center;
  margin: 52px auto 34px;
}

.ring {
  position: absolute;
  border-radius: 50%;
}

.ring-a {
  inset: 0;
  background: conic-gradient(var(--green) 0 34%, transparent 34% 46%, var(--saffron) 46% 82%, transparent 82%);
  mask: radial-gradient(circle, transparent 61%, #000 62%, #000 68%, transparent 69%);
}

.ring-b {
  inset: 34px;
  background: conic-gradient(var(--aqua) 0 42%, transparent 42% 54%, var(--clay) 54% 88%, transparent 88%);
  mask: radial-gradient(circle, transparent 58%, #000 59%, #000 69%, transparent 70%);
  opacity: 0.86;
}

.ring-center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 132px;
  height: 132px;
  background: rgba(18, 20, 15, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  box-shadow: 0 0 42px rgba(229, 169, 61, 0.22);
}

.dumbbell-icon,
.yoga-icon,
.mini-icon,
.feature-icon {
  position: relative;
  display: inline-block;
  flex: 0 0 auto;
}

.dumbbell-icon {
  width: 38px;
  height: 18px;
}

.dumbbell-icon::before,
.dumbbell-icon::after {
  position: absolute;
  top: 2px;
  width: 8px;
  height: 14px;
  content: "";
  background: var(--green);
  border-radius: 3px;
  box-shadow: 0 0 12px rgba(68, 245, 154, 0.6);
}

.dumbbell-icon::before {
  left: 0;
}

.dumbbell-icon::after {
  right: 0;
}

.dumbbell-icon {
  background: linear-gradient(var(--green), var(--green)) center / 32px 5px no-repeat;
}

.yoga-icon {
  width: 36px;
  height: 36px;
  border: 4px solid var(--saffron);
  border-top-color: transparent;
  border-radius: 50%;
  box-shadow: 0 0 14px rgba(229, 169, 61, 0.5);
}

.yoga-icon::before {
  position: absolute;
  top: -7px;
  left: 11px;
  width: 10px;
  height: 10px;
  content: "";
  background: var(--saffron);
  border-radius: 50%;
}

.mode-card {
  gap: 12px;
  justify-content: flex-start;
  padding: 15px;
  margin-top: 12px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.mode-card strong,
.mode-card small {
  display: block;
}

.mode-card small {
  margin-top: 3px;
  color: var(--muted);
}

.mini-icon,
.feature-icon {
  width: 34px;
  height: 34px;
  border-radius: 12px;
}

.mini-icon.workout,
.feature-icon.workout {
  background: rgba(68, 245, 154, 0.16);
  border: 1px solid rgba(68, 245, 154, 0.34);
}

.mini-icon.yoga,
.feature-icon.yoga {
  background: rgba(229, 169, 61, 0.16);
  border: 1px solid rgba(229, 169, 61, 0.34);
}

.feature-icon.health {
  background: rgba(126, 214, 196, 0.15);
  border: 1px solid rgba(126, 214, 196, 0.34);
}

.feature-icon.coins {
  background: rgba(215, 109, 74, 0.15);
  border: 1px solid rgba(215, 109, 74, 0.34);
}

.activity-strip {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  gap: 8px;
  padding: 14px;
  background: rgba(0, 0, 0, 0.34);
  border: 1px solid var(--line);
  border-radius: 20px;
}

.activity-strip div {
  flex: 1;
  text-align: center;
}

.activity-strip strong,
.activity-strip small {
  display: block;
}

.activity-strip small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
}

.feature-band,
.screens-section,
.privacy-band {
  padding-block: 82px;
  background: rgba(0, 0, 0, 0.2);
  border-block: 1px solid rgba(255, 255, 255, 0.08);
}

.screens-section {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(0, 0, 0, 0)),
    rgba(8, 12, 10, 0.42);
  border-block: 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 28px;
}

.feature-grid,
.support-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.feature-card,
.support-card,
.mode-comparison {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.feature-card {
  min-height: 230px;
  padding: 22px;
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.16);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.feature-card p {
  margin-bottom: 0;
  font-size: 14px;
}

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

.feature-card:hover {
  background: rgba(255, 255, 255, 0.095);
  border-color: rgba(255, 255, 255, 0.22);
  transform: translateY(-5px);
}

.screen-stage {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  perspective: 1400px;
}

.screen-card {
  display: grid;
  gap: 20px;
  align-content: start;
  min-height: 690px;
  padding: 18px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
    var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transform: rotateY(7deg) rotateX(4deg);
  transform-style: preserve-3d;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.screen-card:nth-child(2) {
  transform: translateY(34px) translateZ(38px);
}

.screen-card:nth-child(3) {
  transform: rotateY(-7deg) rotateX(4deg);
}

.screen-card:hover,
.screen-card.is-raised {
  border-color: rgba(68, 245, 154, 0.34);
  box-shadow:
    0 40px 110px rgba(0, 0, 0, 0.44),
    0 0 42px rgba(68, 245, 154, 0.12);
}

.screen-card:hover {
  transform: translateY(-10px) translateZ(50px);
}

.screen-phone {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  padding: 18px;
  background:
    radial-gradient(circle at 76% 15%, rgba(255, 255, 255, 0.18), transparent 8rem),
    #10110e;
  border: 10px solid #050605;
  border-radius: 32px;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    0 24px 50px rgba(0, 0, 0, 0.34);
}

.workout-screen {
  background:
    radial-gradient(circle at 22% 28%, rgba(68, 245, 154, 0.26), transparent 11rem),
    linear-gradient(150deg, #0c1812, #171713);
}

.yoga-screen {
  background:
    radial-gradient(circle at 70% 23%, rgba(229, 169, 61, 0.28), transparent 11rem),
    linear-gradient(150deg, #17120d, #111611);
}

.rewards-screen {
  background:
    radial-gradient(circle at 56% 20%, rgba(215, 109, 74, 0.3), transparent 12rem),
    linear-gradient(150deg, #14100f, #111712);
}

.screen-status,
.metric-panel,
.reward-list span {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.screen-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px;
  border-radius: 18px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.screen-status strong {
  color: var(--green);
}

.pulse-meter {
  position: relative;
  display: grid;
  width: 190px;
  height: 190px;
  place-items: center;
  margin: 44px auto 30px;
}

.pulse-meter span {
  position: absolute;
  inset: calc(var(--i, 0) * 24px);
  border: 1px solid rgba(68, 245, 154, 0.48);
  border-radius: 50%;
  box-shadow: 0 0 30px rgba(68, 245, 154, 0.1);
}

.pulse-meter span:nth-child(2) {
  --i: 1;
}

.pulse-meter span:nth-child(3) {
  --i: 2;
  background: rgba(68, 245, 154, 0.24);
}

.metric-panel {
  padding: 16px;
  border-radius: 22px;
}

.metric-panel strong,
.metric-panel span {
  display: block;
}

.metric-panel strong {
  color: var(--text);
  font-size: 30px;
  line-height: 1;
}

.metric-panel span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.screen-bars {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.screen-bars span {
  height: 12px;
  width: var(--bar);
  background: linear-gradient(90deg, var(--green), var(--aqua));
  border-radius: 999px;
}

.pose-orb {
  display: grid;
  width: 170px;
  height: 170px;
  place-items: center;
  margin: 48px auto 30px;
  background:
    radial-gradient(circle, rgba(229, 169, 61, 0.18), transparent 60%),
    rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(229, 169, 61, 0.28);
  border-radius: 50%;
}

.breath-lines {
  display: grid;
  gap: 12px;
  margin-bottom: 18px;
}

.breath-lines span {
  height: 10px;
  background: rgba(229, 169, 61, 0.24);
  border-radius: 999px;
}

.breath-lines span:nth-child(2) {
  width: 76%;
}

.breath-lines span:nth-child(3) {
  width: 54%;
}

.coin-stack {
  position: relative;
  width: 176px;
  height: 176px;
  margin: 48px auto 26px;
}

.coin-stack span {
  position: absolute;
  width: 104px;
  height: 104px;
  background: linear-gradient(145deg, #ffe4a0, var(--saffron) 58%, #9f5a1f);
  border: 8px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  box-shadow: 0 20px 32px rgba(0, 0, 0, 0.28);
}

.coin-stack span:nth-child(1) {
  top: 8px;
  left: 14px;
}

.coin-stack span:nth-child(2) {
  top: 34px;
  right: 8px;
}

.coin-stack span:nth-child(3) {
  bottom: 6px;
  left: 42px;
}

.reward-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.reward-list span {
  padding: 11px 12px;
  border-radius: 14px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.screen-copy {
  transform: translateZ(28px);
}

.screen-kicker {
  display: block;
  margin-bottom: 8px;
  color: var(--saffron);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.screen-copy p {
  margin-bottom: 0;
  font-size: 14px;
}

.split-section,
.privacy-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(24px, 6vw, 72px);
  align-items: center;
  padding-block: 82px;
}

.mode-comparison {
  padding: 10px;
}

.comparison-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 12px;
  padding: 18px;
  border-radius: 14px;
}

.comparison-row + .comparison-row {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.comparison-row span {
  color: var(--saffron);
  font-weight: 900;
}

.comparison-row strong {
  line-height: 1.5;
}

.privacy-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.privacy-list li {
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.5;
}

.support-section,
.terms-section {
  padding-block: 78px;
}

.support-grid {
  grid-template-columns: repeat(3, 1fr);
}

.support-card {
  padding: 20px;
}

.support-card span,
.support-card strong {
  display: block;
}

.support-card span {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.support-card strong {
  color: var(--text);
}

.terms-section {
  max-width: 860px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 4vw, 56px);
  color: var(--muted);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer p {
  margin: 0;
  font-size: 14px;
}

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

  .hero,
  .split-section,
  .privacy-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 38px;
  }

  .hero-visual {
    order: -1;
  }

  .phone-screen {
    min-height: 580px;
  }

  .feature-grid,
  .support-grid,
  .screen-stage {
    grid-template-columns: repeat(2, 1fr);
  }

  .screen-card,
  .screen-card:nth-child(2),
  .screen-card:nth-child(3) {
    min-height: auto;
    transform: none;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding-inline: 16px;
  }

  .nav-cta {
    display: none;
  }

  .section-shell {
    width: min(100% - 28px, 1120px);
  }

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

  .feature-grid,
  .support-grid,
  .screen-stage {
    grid-template-columns: 1fr;
  }

  .feature-band,
  .privacy-band,
  .screens-section,
  .split-section,
  .support-section,
  .terms-section {
    padding-block: 56px;
  }

  .screen-phone {
    min-height: 390px;
  }

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

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .rings-logo {
    animation: lift 5s ease-in-out infinite;
  }

  .energy-orbit {
    animation: orbit 12s linear infinite;
  }

  .orbit-b {
    animation-duration: 16s;
    animation-direction: reverse;
  }

  .ring-a {
    animation: spin 18s linear infinite;
  }

  .ring-b {
    animation: spin 22s linear infinite reverse;
  }
}

@media (prefers-reduced-motion: reduce) {
  .phone-frame,
  .screen-card,
  .feature-card {
    transition: none;
  }
}

@keyframes spin {
  to {
    transform: rotate(1turn);
  }
}

@keyframes lift {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes orbit {
  to {
    transform: rotateX(68deg) rotateZ(342deg);
  }
}
