:root {
  --bg: #070908;
  --bg-2: #0c100e;
  --card: #111612;
  --card-2: #151b17;
  --line: #263029;
  --text: #f5f7f5;
  --muted: #a3aca6;
  --green: #a5eb5d;
  --green-2: #78c931;
  --danger: #ff554f;
  --radius: 28px;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
  --container: 1180px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family:
    Inter,
    ui-sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}
body.menu-open {
  overflow: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
button,
input,
select,
textarea {
  font: inherit;
}
.container {
  width: min(var(--container), calc(100% - 40px));
  margin: auto;
}
.section-pad {
  padding: 112px 0;
}
.section {
  position: relative;
}
.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1000;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}
.cursor-glow {
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(165, 235, 93, 0.08),
    transparent 68%
  );
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 0;
}
.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  width: min(1180px, calc(100% - 32px));
  height: 74px;
  padding: 0 14px 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(9, 12, 10, 0.76);
  backdrop-filter: blur(18px);
  border-radius: 22px;
  display: flex;
  align-items: center;
  gap: 28px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.25);
}
.brand {
  display: flex;
  align-items: center;
  margin-right: auto;
}
.brand img {
  width: 148px;
  height: auto;
}
.desktop-nav {
  display: flex;
  gap: 26px;
}
.nav-link {
  font-size: 14px;
  color: #c1c8c3;
  transition: 0.25s;
}
.nav-link:hover {
  color: var(--green);
}
.btn {
  min-height: 54px;
  border: 0;
  border-radius: 16px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 750;
  cursor: pointer;
  transition:
    transform 0.25s,
    background 0.25s,
    border-color 0.25s,
    box-shadow 0.25s;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn-primary {
  background: var(--green);
  color: #0b100c;
  box-shadow: 0 10px 35px rgba(165, 235, 93, 0.18);
}
.btn-primary:hover {
  background: #b8f879;
  box-shadow: 0 14px 45px rgba(165, 235, 93, 0.28);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.11);
  color: var(--text);
}
.btn-small {
  min-height: 46px;
  padding: 0 18px;
  border-radius: 14px;
  font-size: 14px;
}
.menu-toggle,
.mobile-menu {
  display: none;
}
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 150px;
  overflow: hidden;
}
.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 72% 35%,
      rgba(99, 146, 70, 0.12),
      transparent 35%
    ),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 30%);
  pointer-events: none;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.18;
  animation: floatOrb 9s ease-in-out infinite;
}
.orb-one {
  width: 360px;
  height: 360px;
  background: var(--green);
  right: 7%;
  top: 17%;
}
.orb-two {
  width: 240px;
  height: 240px;
  background: #4c7956;
  left: -8%;
  bottom: 6%;
  animation-delay: -3s;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.live-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(165, 235, 93, 0.1);
  animation: pulse 1.8s infinite;
}
.hero h1,
.inner-hero h1,
.host-hero h1,
.download-page h1 {
  font-size: clamp(54px, 6.4vw, 92px);
  line-height: 0.98;
  letter-spacing: -0.055em;
  margin: 24px 0;
}
.hero h1 span {
  color: var(--green);
}
.hero-copy > p {
  font-size: 19px;
  color: #b7c0ba;
  max-width: 620px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 34px 0 26px;
}
.play-circle {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  font-size: 11px;
}
.store-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: nowrap;
  align-items: stretch;
  margin-top: 24px;
}
.store-buttons.compact {
  margin-top: 18px;
  gap: 8px;
}
.store-buttons.compact .store-badge {
  min-width: 0;
  flex: 1 1 0;
  height: 52px;
  padding: 7px 10px;
  gap: 8px;
}
.store-buttons.compact .store-badge strong {
  font-size: 14px;
}
.store-buttons.compact .store-badge small {
  font-size: 8px;
}
.store-buttons.compact .play-mark {
  border-top-width: 10px;
  border-bottom-width: 10px;
  border-left-width: 17px;
}
.store-buttons.compact .apple-mark {
  width: 20px;
  height: 20px;
}
.store-badge {
  min-width: 0;
  flex: 1 1 0;
  max-width: 190px;
  height: 58px;
  border: 1px solid #303732;
  border-radius: 13px;
  background: #020303;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 14px;
  transition: 0.25s;
}
.store-badge:hover {
  border-color: var(--green);
  transform: translateY(-2px);
}
.store-badge small {
  display: block;
  font-size: 9px;
  letter-spacing: 0.08em;
  color: #b9c1bc;
  line-height: 1;
}
.store-badge strong {
  font-size: 18px;
  line-height: 1.2;
}
.play-mark {
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 21px solid var(--green);
  filter: drop-shadow(0 0 6px rgba(165, 235, 93, 0.2));
}
.apple-mark {
  width: 25px;
  height: 25px;
  border-radius: 55% 45% 50% 50%;
  background: #fff;
  color: #fff;
  position: relative;
  font-size: 0;
}
.apple-mark:before {
  content: "";
  position: absolute;
  width: 9px;
  height: 5px;
  border-radius: 8px 0 8px 0;
  background: #fff;
  right: 0;
  top: -5px;
  transform: rotate(-35deg);
}
.trust-row {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  color: #8f9992;
  font-size: 13px;
  margin-top: 28px;
}
.trust-row span::first-letter {
  color: var(--green);
}
.phone-stack {
  height: 690px;
  position: relative;
  max-width: 540px;
  margin: auto;
}
.phone {
  position: absolute;
  border-radius: 43px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.11);
  object-fit: cover;
  max-width: none;
  height: auto;
}
.phone-main {
  width: 360px;
  right: 0;
  top: 10px;
  z-index: 2;
  animation: phoneFloat 5s ease-in-out infinite;
}
.phone-back {
  width: 280px;
  left: 0;
  bottom: 5px;
  z-index: 1;
  opacity: 0.8;
  transform: rotate(-7deg);
  filter: saturate(0.75) brightness(0.72);
}
.floating-stat {
  position: absolute;
  z-index: 4;
  background: rgba(19, 24, 21, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 18px;
  padding: 13px 17px;
  display: flex;
  gap: 11px;
  align-items: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(12px);
  animation: statFloat 4s ease-in-out infinite;
}
.floating-stat strong {
  display: block;
  font-size: 18px;
}
.floating-stat small {
  display: block;
  color: #98a29b;
  font-size: 11px;
}
.stat-icon {
  width: 34px;
  height: 34px;
  border-radius: 11px;
  background: rgba(165, 235, 93, 0.12);
  display: grid;
  place-items: center;
  color: var(--green);
}
.stat-one {
  right: -35px;
  top: 180px;
}
.stat-two {
  left: 16px;
  bottom: 120px;
  animation-delay: -2s;
}
.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  font-size: 9px;
  letter-spacing: 0.22em;
  color: #6e766f;
  display: flex;
  align-items: center;
  gap: 10px;
}
.scroll-cue span {
  width: 50px;
  height: 1px;
  background: #333a35;
  position: relative;
}
.scroll-cue span:after {
  content: "";
  position: absolute;
  width: 14px;
  height: 1px;
  background: var(--green);
  animation: scrollLine 2s linear infinite;
}
.ticker {
  overflow: hidden;
  border-top: 1px solid #1d241f;
  border-bottom: 1px solid #1d241f;
  background: #0b0e0c;
  padding: 18px 0;
}
.ticker-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 26px;
  animation: ticker 24s linear infinite;
  color: #6f7972;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
}
.ticker-track i {
  color: var(--green);
  font-style: normal;
}
.section-head {
  max-width: 720px;
  margin-bottom: 50px;
}
.section-head.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.section-head h2,
.split-copy h2,
.company-card h2,
.newsletter-card h2,
.qr-download-card h2 {
  font-size: clamp(38px, 5vw, 66px);
  line-height: 1.03;
  letter-spacing: -0.045em;
  margin: 16px 0;
}
.section-head p,
.split-copy > p {
  color: var(--muted);
  font-size: 17px;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.feature-card {
  min-height: 285px;
  padding: 30px;
  border: 1px solid #202821;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.025),
    rgba(255, 255, 255, 0.009)
  );
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  transition: 0.35s;
  position: relative;
  overflow: hidden;
}
.feature-card:after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  background: radial-gradient(
    circle,
    rgba(165, 235, 93, 0.12),
    transparent 70%
  );
  right: -90px;
  bottom: -90px;
  transition: 0.35s;
}
.feature-card:hover {
  transform: translateY(-7px);
  border-color: #41503f;
  background: #121814;
}
.feature-card:hover:after {
  right: -35px;
  bottom: -35px;
}
.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 17px;
  background: #151d17;
  border: 1px solid #2c382f;
  display: grid;
  place-items: center;
  color: var(--green);
  font-size: 25px;
  margin-bottom: 32px;
}
.feature-card h3 {
  font-size: 22px;
  margin: 0 0 8px;
}
.feature-card p {
  color: #929c95;
  margin: 0 0 26px;
}
.feature-card a {
  margin-top: auto;
  color: #c8d0ca;
  font-size: 14px;
  font-weight: 700;
}
.feature-card a span {
  color: var(--green);
  margin-left: 7px;
}
.future-card {
  border-style: dashed;
}
.accent-section {
  background: linear-gradient(180deg, #080b09, #0d120e 50%, #080b09);
}
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.split-grid.reverse > .split-copy {
  order: 1;
}
.split-grid.reverse > .tracker-art {
  order: 2;
}
.media-frame {
  position: relative;
  max-width: 510px;
  margin: auto;
}
.media-frame img {
  border-radius: 48px;
  border: 1px solid #29332c;
  box-shadow: var(--shadow);
}
.media-frame:before {
  content: "";
  position: absolute;
  inset: 10% -10%;
  border: 1px solid rgba(165, 235, 93, 0.15);
  border-radius: 50%;
  z-index: -1;
  animation: spin 18s linear infinite;
}
.call-pill {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(11, 15, 12, 0.88);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 11px 17px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}
.pulse-ring {
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  margin-right: 9px;
  box-shadow: 0 0 0 0 rgba(165, 235, 93, 0.45);
  animation: pulseRing 1.8s infinite;
}
.benefit-list {
  display: grid;
  gap: 24px;
  margin: 34px 0;
}
.benefit-list > div {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: start;
}
.benefit-list span {
  width: 48px;
  height: 48px;
  border-radius: 15px;
  background: #151c17;
  display: grid;
  place-items: center;
  color: var(--green);
  font-weight: 800;
}
.benefit-list p {
  margin: 0;
  color: #929c95;
}
.benefit-list strong {
  display: block;
  color: #fff;
  font-size: 16px;
  margin-bottom: 4px;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.step-card {
  padding: 32px;
  border-top: 1px solid #313a34;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent);
  min-height: 235px;
}
.step-card > span {
  font-size: 13px;
  color: var(--green);
  font-weight: 800;
}
.step-card h3 {
  font-size: 24px;
  margin: 45px 0 8px;
}
.step-card p {
  color: #929b95;
  margin: 0;
}
.steps-section {
  overflow: hidden;
}
.steps-section:after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(165, 235, 93, 0.05);
  filter: blur(80px);
  right: -230px;
  top: 20%;
  z-index: -1;
}
.tracker-art img {
  filter: drop-shadow(0 28px 45px rgba(0, 0, 0, 0.45));
  animation: phoneFloat 6s ease-in-out infinite;
}
.metric-row {
  display: flex;
  gap: 40px;
  margin: 36px 0;
}
.metric-row strong {
  font-size: 32px;
  display: block;
}
.metric-row small {
  color: #89938c;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.product-card {
  border: 1px solid #202720;
  background: #0e130f;
  border-radius: 26px;
  overflow: hidden;
  transition: 0.35s;
}
.product-card:hover {
  transform: translateY(-7px);
  border-color: #3a493c;
}
.product-card img {
  height: 260px;
  width: 100%;
  object-fit: contain;
  background: radial-gradient(circle at 50% 35%, #1e2b20, #0a0d0b 70%);
}
.product-card > div {
  padding: 24px;
}
.product-card > div > span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--green);
  font-weight: 800;
}
.product-card h3 {
  font-size: 19px;
  margin: 8px 0 5px;
}
.product-card p {
  font-size: 13px;
  color: #89928c;
  margin: 0 0 20px;
}
.product-btn,
.blog-read {
  border: 0;
  background: none;
  padding: 0;
  color: #d8ded9;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
}
.product-btn:hover,
.blog-read:hover {
  color: var(--green);
}
.roadmap-section {
  background: #0a0e0b;
}
.roadmap-line {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  margin-top: 72px;
}
.roadmap-line:before {
  content: "";
  position: absolute;
  height: 1px;
  background: #2b342d;
  left: 12.5%;
  right: 12.5%;
  top: 15px;
}
.roadmap-item {
  text-align: center;
  position: relative;
  padding: 0 20px;
}
.roadmap-item i {
  display: block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #111712;
  border: 7px solid #202821;
  margin: 0 auto 22px;
  position: relative;
  z-index: 1;
}
.roadmap-item.active i {
  background: var(--green);
  box-shadow: 0 0 0 10px rgba(165, 235, 93, 0.08);
}
.roadmap-item span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--green);
}
.roadmap-item h3 {
  font-size: 17px;
  margin: 7px 0;
}
.coaches-section {
  background: linear-gradient(180deg, #070908, #0b100c);
}
.coach-panel {
  border: 1px solid #253028;
  border-radius: 34px;
  padding: 32px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: center;
  background: linear-gradient(120deg, #101711, #0c110d);
}
.coach-stack {
  display: flex;
}
.coach-stack img {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid #101711;
  margin-left: -18px;
}
.coach-stack img:first-child {
  margin-left: 0;
}
.coach-panel h3 {
  font-size: 24px;
  margin: 0 0 5px;
}
.coach-panel p {
  color: #8f9992;
  margin: 0;
}
.testimonial-slider {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 25px;
  max-width: 900px;
  margin: auto;
}
.testimonial-track {
  min-height: 300px;
  position: relative;
}
.testimonial {
  position: absolute;
  inset: 0;
  margin: 0;
  text-align: center;
  opacity: 0;
  transform: translateX(30px);
  transition: 0.45s;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.testimonial.active {
  opacity: 1;
  transform: translateX(0);
}
.stars {
  color: var(--green);
  letter-spacing: 0.2em;
}
.testimonial p {
  font-size: clamp(22px, 3.2vw, 38px);
  line-height: 1.35;
  letter-spacing: -0.025em;
}
.testimonial footer {
  color: #fff;
  font-weight: 750;
}
.testimonial footer span {
  color: #7f8982;
  font-weight: 400;
}
.slider-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid #2b342e;
  background: #0e130f;
  color: #fff;
  cursor: pointer;
}
.slider-arrow:hover {
  border-color: var(--green);
  color: var(--green);
}
.download-section {
  padding-top: 60px;
}
.download-card {
  position: relative;
  min-height: 500px;
  border-radius: 42px;
  background: linear-gradient(130deg, #172019, #0e140f);
  border: 1px solid #2b362d;
  padding: 64px;
  display: grid;
  grid-template-columns: 1fr 190px 280px;
  align-items: center;
  gap: 35px;
  overflow: hidden;
}
.download-card:before {
  content: "";
  position: absolute;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  background: rgba(165, 235, 93, 0.11);
  filter: blur(65px);
  right: 10%;
  bottom: -35%;
}
.download-card h2 {
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.045em;
  margin: 18px 0;
}
.download-card p {
  color: #a0aaa3;
  max-width: 590px;
}
.download-qr {
  position: relative;
  text-align: center;
  z-index: 1;
}
.download-qr img {
  border-radius: 22px;
}
.download-qr span {
  display: block;
  font-size: 12px;
  color: #8f9992;
  margin-top: 10px;
}
.download-phone {
  position: relative;
  align-self: end;
  width: 260px;
  transform: translateY(120px) rotate(4deg);
  border-radius: 36px;
  box-shadow: var(--shadow);
}
.site-footer {
  border-top: 1px solid #1d241f;
  background: #050706;
  padding: 78px 0 25px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 70px;
}
.footer-brand img {
  width: 176px;
}
.footer-brand p {
  color: #8e9891;
  max-width: 300px;
}
.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 25px;
}
.footer-links h3,
.footer-contact h3 {
  grid-column: 1/-1;
  font-size: 15px;
  margin: 0 0 15px;
}
.footer-links a,
.footer-contact > a {
  color: #929c95;
  font-size: 14px;
  display: block;
}
.footer-links a:hover,
.footer-contact > a:hover {
  color: var(--green);
}
.footer-contact p {
  color: #737c76;
  font-size: 13px;
  margin: 12px 0 16px;
}
.footer-social {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
.footer-social a {
  width: 38px;
  height: 38px;
  border: 1px solid #2a332d;
  border-radius: 12px;
  background: #0e130f;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #a3ada6;
  transition: 0.25s;
}
.footer-social a:hover {
  color: var(--green);
  border-color: var(--green);
  transform: translateY(-2px);
}
.footer-social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.footer-bottom {
  border-top: 1px solid #1b211d;
  margin-top: 55px;
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  color: #626a64;
  font-size: 12px;
}
.qr-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 90;
}
.qr-card {
  width: 220px;
  background: rgba(14, 19, 15, 0.94);
  backdrop-filter: blur(15px);
  border: 1px solid #2e3931;
  border-radius: 24px;
  padding: 14px;
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.45);
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 12px;
  align-items: center;
  transition: 0.3s;
}
.qr-card img {
  border-radius: 13px;
}
.qr-card strong {
  display: block;
  font-size: 13px;
}
.qr-card span {
  display: block;
  color: #849087;
  font-size: 10px;
  line-height: 1.35;
}
.qr-close {
  position: absolute;
  top: -9px;
  right: -9px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #202721;
  border: 1px solid #3b463d;
  color: #fff;
  cursor: pointer;
}
.qr-mini {
  display: none;
  width: 64px;
  height: 64px;
  border: 1px solid #39463c;
  background: #111712;
  border-radius: 20px;
  padding: 7px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.45);
}
.qr-mini img {
  border-radius: 9px;
}
.qr-float.minimized .qr-card {
  display: none;
}
.qr-float.minimized .qr-mini {
  display: block;
}
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.delay-1 {
  transition-delay: 0.12s;
}
.delay-2 {
  transition-delay: 0.24s;
}
/* Inner and policy pages */
.inner-hero,
.host-hero,
.download-page {
  padding-top: 180px;
  min-height: 720px;
  display: flex;
  align-items: center;
  background: radial-gradient(
    circle at 80% 35%,
    rgba(165, 235, 93, 0.08),
    transparent 30%
  );
}
.inner-hero.compact {
  min-height: 560px;
}
.inner-hero-grid,
.host-grid,
.download-page-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 80px;
  align-items: center;
}
.inner-hero p,
.host-hero p,
.download-page p {
  max-width: 650px;
  font-size: 18px;
  color: #a1aba4;
}
.about-visual {
  height: 600px;
  overflow: hidden;
  border-radius: 44px;
  border: 1px solid #27322a;
  transform: rotate(3deg);
}
.about-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.value-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
.value-grid article {
  padding: 25px;
  border: 1px solid #242c26;
  border-radius: 22px;
  background: #0e130f;
}
.value-grid span {
  color: var(--green);
  font-size: 12px;
}
.value-grid h3 {
  margin: 20px 0 5px;
}
.value-grid p {
  margin: 0;
  color: #8b958e;
  font-size: 14px;
}
.company-section {
  background: #0a0e0b;
}
.company-card {
  padding: 55px;
  border: 1px solid #283229;
  border-radius: 34px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 70px;
  align-items: center;
}
.company-card address {
  font-style: normal;
  color: #9ca69f;
  border-left: 1px solid #303a32;
  padding-left: 35px;
}
.policy-main {
  padding-top: 170px;
}
.policy-layout {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 80px;
  align-items: start;
}
.policy-aside {
  position: sticky;
  top: 120px;
}
.policy-aside h1 {
  font-size: 52px;
  line-height: 1.05;
  letter-spacing: -0.045em;
  margin: 18px 0;
}
.policy-aside > p {
  color: #929c95;
}
.policy-meta {
  display: inline-block;
  margin: 20px 0;
  padding: 8px 12px;
  border-radius: 10px;
  background: #101611;
  color: #8f9992;
  font-size: 12px;
}
.policy-aside nav {
  border-top: 1px solid #252d27;
  padding-top: 20px;
  display: grid;
}
.policy-aside nav a {
  padding: 8px 0;
  color: #78827b;
  font-size: 13px;
}
.policy-aside nav a:hover {
  color: var(--green);
}
.policy-content {
  max-width: 780px;
}
.policy-section {
  padding: 0 0 44px;
  margin-bottom: 44px;
  border-bottom: 1px solid #202720;
  scroll-margin-top: 130px;
}
.policy-section h2 {
  font-size: 28px;
  margin: 0 0 15px;
}
.policy-section p,
.policy-section li {
  color: #a0aaa3;
}
.policy-section a {
  color: var(--green);
}
.number-list {
  padding-left: 20px;
}
.number-list li {
  margin: 11px 0;
}
.deletion-form {
  display: grid;
  gap: 16px;
  margin-top: 28px;
  padding: 25px;
  border: 1px solid #28322a;
  border-radius: 24px;
  background: #0d120e;
}
.deletion-form label,
.host-form label {
  display: grid;
  gap: 8px;
  color: #cbd2cd;
  font-size: 13px;
}
.deletion-form input,
.deletion-form textarea,
.host-form input:not([type="checkbox"]),
.host-form select,
.host-form textarea,
.newsletter-form input {
  width: 100%;
  border: 1px solid #2a342d;
  background: #090d0a;
  color: #fff;
  border-radius: 14px;
  padding: 14px 15px;
  outline: none;
}
.deletion-form input:focus,
.deletion-form textarea:focus,
.host-form input:not([type="checkbox"]):focus,
.host-form select:focus,
.host-form textarea:focus,
.newsletter-form input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(165, 235, 93, 0.08);
}
textarea {
  min-height: 120px;
  resize: vertical;
}
.host-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 32px;
  color: #bec6c0;
}
.host-benefits span::first-letter {
  color: var(--green);
}
.coach-collage {
  display: flex;
  align-items: end;
  justify-content: center;
}
.coach-collage img {
  width: 31%;
  border-radius: 28px;
  border: 1px solid #2a352d;
  box-shadow: var(--shadow);
}
.coach-collage img:nth-child(2) {
  width: 38%;
  margin: 0 -20px;
  z-index: 2;
  transform: translateY(-35px);
}
.form-section {
  background: #0a0e0b;
}
.form-layout {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 80px;
}
.form-intro {
  position: sticky;
  top: 125px;
  align-self: start;
}
.form-intro h2 {
  font-size: 44px;
  line-height: 1.08;
  letter-spacing: -0.04em;
}
.form-intro p {
  color: #929c95;
}
.form-progress {
  display: flex;
  align-items: center;
  margin: 30px 0;
}
.form-progress span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #1a211c;
  color: #687168;
  font-size: 12px;
  font-weight: 800;
}
.form-progress span.active {
  background: var(--green);
  color: #071008;
}
.form-progress i {
  height: 1px;
  flex: 1;
  background: #2a332c;
}
.mini-note {
  padding: 20px;
  border: 1px solid #283229;
  border-radius: 18px;
  background: #101611;
}
.mini-note p {
  font-size: 13px;
  margin: 5px 0 0;
}
.host-form {
  background: #0e130f;
  border: 1px solid #273129;
  border-radius: 32px;
  padding: 36px;
  min-height: 640px;
}
.host-form fieldset {
  border: 0;
  padding: 0;
  margin: 0;
  display: none;
}
.host-form fieldset.active {
  display: block;
  animation: fadeIn 0.35s ease;
}
.host-form legend {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 28px;
}
.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.host-form > fieldset > label {
  margin-top: 18px;
}
.host-form select {
  appearance: none;
}
.step-actions {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-top: 30px;
}
.upload-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.upload-box {
  min-height: 180px;
  border: 1px dashed #3a463d;
  border-radius: 20px;
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  padding: 15px;
}
.upload-box:hover {
  border-color: var(--green);
  background: rgba(165, 235, 93, 0.03);
}
.upload-box span {
  font-size: 32px;
  color: var(--green);
}
.upload-box small {
  color: #747e77;
}
.upload-box input {
  display: none;
}
.check-row {
  grid-template-columns: auto 1fr !important;
  align-items: start !important;
  margin-top: 22px;
}
.check-row input {
  width: 18px;
  height: 18px;
  accent-color: var(--green);
}
.success-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: none;
  place-items: center;
  padding: 20px;
}
.success-modal.show {
  display: grid;
}
.success-modal > div {
  max-width: 480px;
  text-align: center;
  background: #111712;
  border: 1px solid #2c382f;
  border-radius: 30px;
  padding: 40px;
}
.success-check {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--green);
  color: #071008;
  font-size: 32px;
  font-weight: 900;
  margin: 0 auto 18px;
}
.blog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.blog-card {
  border: 1px solid #232c25;
  border-radius: 26px;
  overflow: hidden;
  background: #0d120e;
  display: grid;
  grid-template-columns: 220px 1fr;
  min-height: 290px;
}
.blog-art {
  position: relative;
  background: radial-gradient(circle at 50% 45%, #1f2d21, #0a0e0b 70%);
  display: grid;
  place-items: center;
}
.blog-art span {
  font-size: 70px;
  font-weight: 900;
  color: #26352a;
}
.blog-art i {
  position: absolute;
  width: 110px;
  height: 110px;
  border: 18px solid var(--green);
  border-radius: 50%;
  opacity: 0.8;
}
.blog-card > div:last-child {
  padding: 28px;
}
.blog-tag {
  font-size: 11px;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
}
.blog-card h2 {
  font-size: 23px;
  line-height: 1.2;
  margin: 12px 0;
}
.blog-card p {
  font-size: 14px;
  color: #909a93;
}
.blog-card footer {
  display: flex;
  justify-content: space-between;
  margin-top: 24px;
  color: #717a73;
  font-size: 12px;
}
.newsletter {
  padding-top: 30px;
}
.newsletter-card {
  border: 1px solid #2b362e;
  background: #111812;
  border-radius: 32px;
  padding: 44px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 45px;
}
.newsletter-form {
  display: flex;
  gap: 10px;
}
.newsletter-form input {
  min-width: 300px;
}
.download-devices {
  height: 650px;
  position: relative;
}
.download-devices img {
  position: absolute;
  width: 260px;
  border-radius: 33px;
  border: 1px solid #2a342c;
  box-shadow: var(--shadow);
}
.download-devices img:nth-child(1) {
  left: 0;
  top: 40px;
  transform: rotate(-7deg);
}
.download-devices img:nth-child(2) {
  left: 180px;
  top: 0;
  z-index: 2;
}
.download-devices img:nth-child(3) {
  right: 0;
  top: 65px;
  transform: rotate(7deg);
}
.launch-note {
  margin-top: 22px;
  color: #8c968f;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.qr-download-card {
  padding: 45px;
  border: 1px solid #28332a;
  border-radius: 32px;
  background: #0e140f;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 45px;
  align-items: center;
}
.qr-download-card img {
  border-radius: 24px;
}
.qr-download-card p {
  color: #929c95;
}
.faq-item {
  border-bottom: 1px solid #242c26;
}
.faq-q {
  width: 100%;
  padding: 22px 0;
  border: 0;
  background: none;
  color: #fff;
  text-align: left;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  color: #8f9992;
  transition: max-height 0.35s;
}
.faq-item.open .faq-a {
  max-height: 220px;
  padding-bottom: 20px;
}
@keyframes phoneFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-13px);
  }
}
@keyframes floatOrb {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(40px, -30px);
  }
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.45;
  }
}
@keyframes pulseRing {
  0% {
    box-shadow: 0 0 0 0 rgba(165, 235, 93, 0.4);
  }
  70% {
    box-shadow: 0 0 0 11px rgba(165, 235, 93, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(165, 235, 93, 0);
  }
}
@keyframes statFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
@keyframes scrollLine {
  0% {
    left: 0;
  }
  100% {
    left: 36px;
  }
}
@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@media (max-width: 1050px) {
  .desktop-nav {
    display: none;
  }
  .menu-toggle {
    display: grid;
    width: 45px;
    height: 45px;
    border-radius: 14px;
    border: 1px solid #2c352f;
    background: #111612;
    padding: 11px;
    gap: 4px;
    place-content: center;
  }
  .menu-toggle span {
    width: 20px;
    height: 2px;
    background: #fff;
    display: block;
  }
  .nav-cta {
    display: none;
  }
  .mobile-menu {
    display: flex;
    position: fixed;
    top: 88px;
    left: 0;
    right: 0;
    background: #0c110d;
    border: 1px solid #28322b;
    border-radius: 22px;
    padding: 22px;
    flex-direction: column;
    gap: 18px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: 0.3s;
  }
  .site-header.open .mobile-menu {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }
  .hero {
    min-height: auto;
    align-items: flex-start;
    overflow-x: hidden;
    overflow-y: visible;
    padding-top: 130px;
    padding-bottom: 48px;
  }
  .orb-one,
  .orb-two {
    display: none;
  }
  .media-frame:before {
    inset: 8% 0;
  }
  .hero-grid,
  .split-grid,
  .inner-hero-grid,
  .host-grid,
  .download-page-grid {
    grid-template-columns: 1fr;
  }
  .hero-grid {
    gap: 36px;
  }
  .hero-copy {
    text-align: center;
    position: relative;
    z-index: 2;
  }
  .hero-copy > p {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-actions,
  .store-buttons,
  .trust-row {
    justify-content: center;
  }
  .hero-visual {
    margin: 28px auto 0;
    position: relative;
    z-index: 1;
    overflow: visible;
    width: 100%;
    max-width: 380px;
  }
  .phone-stack {
    width: 100%;
    height: 520px;
    max-width: 360px;
    margin: 0 auto;
  }
  .phone-main {
    width: 250px;
    right: 0;
    top: 10px;
  }
  .phone-back {
    width: 190px;
    left: 0;
    bottom: 8px;
  }
  .stat-one {
    right: 0;
  }
  .stat-two {
    left: 0;
  }
  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }
  .product-grid {
    grid-template-columns: 1fr 1fr;
  }
  .split-grid.reverse > .split-copy,
  .split-grid.reverse > .tracker-art {
    order: initial;
  }
  .policy-layout,
  .form-layout {
    grid-template-columns: 1fr;
  }
  .policy-aside,
  .form-intro {
    position: relative;
    top: 0;
  }
  .policy-aside nav {
    grid-template-columns: 1fr 1fr;
  }
  .coach-panel {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .coach-stack {
    justify-content: center;
  }
  .download-card {
    grid-template-columns: 1fr 170px;
  }
  .download-phone {
    display: none;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1/-1;
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .download-devices {
    margin-top: 20px;
  }
  .company-card {
    grid-template-columns: 1fr;
  }
  .company-card address {
    border-left: 0;
    border-top: 1px solid #303a32;
    padding: 25px 0 0;
  }
  .policy-main {
    padding-top: 140px;
  }
}
@media (max-width: 700px) {
  .container {
    width: min(100% - 24px, 1180px);
  }
  .section-pad {
    padding: 82px 0;
  }
  .site-header {
    top: 10px;
    height: 64px;
    width: calc(100% - 20px);
    border-radius: 18px;
    padding-left: 16px;
  }
  .brand img {
    width: 125px;
  }
  .hero {
    padding-top: 100px;
    padding-bottom: 28px;
    min-height: auto;
    align-items: flex-start;
    overflow-x: hidden;
    overflow-y: visible;
  }
  .phone-stack {
    overflow: hidden;
  }
  .store-buttons {
    flex-wrap: wrap;
  }
  .section,
  .split-grid,
  .feature-grid,
  .download-section,
  .coach-panel,
  .site-footer {
    overflow-x: hidden;
  }
  .hero h1,
  .inner-hero h1,
  .host-hero h1,
  .download-page h1 {
    font-size: clamp(34px, 9vw, 44px);
  }
  .hero-copy > p {
    font-size: 16px;
  }
  .hero-actions {
    display: grid;
    margin: 24px 0 18px;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .store-buttons {
    justify-content: center;
  }
  .store-buttons .store-badge {
    max-width: none;
  }
  .hero-visual {
    width: 100%;
    max-width: 320px;
    margin: 20px auto 0;
    overflow: visible;
  }
  .phone-stack {
    width: 100%;
    height: 460px;
    max-width: 300px;
    margin: 0 auto;
  }
  .phone-main {
    width: 210px;
    right: 0;
    top: 8px;
  }
  .phone-back {
    width: 155px;
    left: 0;
    bottom: 6px;
  }
  .floating-stat {
    padding: 8px 10px;
  }
  .floating-stat strong {
    font-size: 14px;
  }
  .floating-stat small {
    font-size: 10px;
  }
  .stat-one {
    right: 0;
    top: 110px;
  }
  .stat-two {
    left: 0;
    bottom: 50px;
  }
  .scroll-cue {
    display: none;
  }
  .feature-grid,
  .steps-grid,
  .product-grid,
  .roadmap-line,
  .value-grid,
  .field-grid,
  .upload-grid {
    grid-template-columns: 1fr;
  }
  .section-head h2,
  .split-copy h2,
  .company-card h2,
  .newsletter-card h2,
  .qr-download-card h2 {
    font-size: 40px;
  }
  .roadmap-line:before {
    display: none;
  }
  .roadmap-item {
    text-align: left;
    display: grid;
    grid-template-columns: 42px 1fr;
    column-gap: 15px;
    margin-bottom: 18px;
  }
  .roadmap-item i {
    grid-row: 1/3;
    margin: 0;
  }
  .roadmap-item span,
  .roadmap-item h3 {
    text-align: left;
  }
  .metric-row {
    gap: 18px;
    justify-content: space-between;
  }
  .metric-row strong {
    font-size: 25px;
  }
  .coach-panel {
    padding: 24px;
  }
  .testimonial-slider {
    grid-template-columns: 1fr;
  }
  .slider-arrow {
    display: none;
  }
  .testimonial-track {
    min-height: 380px;
  }
  .download-card {
    grid-template-columns: 1fr;
    padding: 34px 24px;
  }
  .download-qr {
    display: none;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-brand {
    grid-column: auto;
  }
  .footer-bottom {
    display: grid;
    gap: 8px;
  }
  .footer-links {
    grid-template-columns: 1fr 1fr;
  }
  .qr-card {
    display: none;
  }
  .qr-mini {
    display: block;
  }
  .qr-float {
    right: 12px;
    bottom: 12px;
  }
  .inner-hero,
  .host-hero,
  .download-page {
    padding-top: 140px;
    min-height: auto;
  }
  .about-visual {
    height: 520px;
  }
  .policy-aside h1 {
    font-size: 43px;
  }
  .policy-aside nav {
    display: none;
  }
  .policy-section h2 {
    font-size: 24px;
  }
  .form-layout {
    gap: 35px;
  }
  .host-form {
    padding: 22px;
    min-height: auto;
  }
  .coach-collage {
    margin-top: 25px;
  }
  .host-benefits {
    grid-template-columns: 1fr;
  }
  .blog-card {
    grid-template-columns: 1fr;
  }
  .blog-art {
    height: 180px;
  }
  .newsletter-card {
    grid-template-columns: 1fr;
    padding: 30px;
  }
  .newsletter-form {
    display: grid;
  }
  .newsletter-form input {
    min-width: 0;
  }
  .download-devices {
    height: 480px;
  }
  .download-devices img {
    width: 190px;
  }
  .download-devices img:nth-child(2) {
    left: 50%;
    transform: translateX(-50%);
  }
  .download-devices img:nth-child(3) {
    right: 0;
  }
  .qr-download-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .qr-download-card img {
    max-width: 220px;
    margin: auto;
  }
  .company-card {
    padding: 30px;
  }
  .cursor-glow {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    animation: none !important;
    transition-duration: 0.01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 420px) {
  .hero-visual {
    max-width: 280px;
  }
  .phone-stack {
    height: 420px;
    max-width: 260px;
  }
  .phone-main {
    width: 185px;
  }
  .phone-back {
    width: 140px;
  }
  .floating-stat {
    transform: scale(0.9);
    transform-origin: center;
  }
  .hero h1 {
    font-size: 32px;
  }
  .trust-row {
    gap: 12px;
    justify-content: center;
  }
}
