@font-face {
  font-family: "Lufga";
  src: url("assets/fonts/Lufga-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Lufga";
  src: url("assets/fonts/Lufga-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Lufga";
  src: url("assets/fonts/Lufga-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Lufga";
  src: url("assets/fonts/Lufga-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --lime: #c6ff1d;
  --lime-soft: #deff7c;
  --ink: #111310;
  --black: #0b0d0b;
  --surface: #171917;
  --surface-2: #20231f;
  --surface-3: #292c28;
  --line: rgba(255, 255, 255, 0.11);
  --line-dark: rgba(15, 17, 14, 0.12);
  --white: #f7f8f2;
  --muted: #a9ada3;
  --paper: #eff1e9;
  --paper-2: #e4e7dc;
  --radius: 28px;
  --container: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  color: var(--white);
  background: var(--black);
  font-family: "Lufga", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open,
body.dialog-open {
  overflow: hidden;
}

button,
input,
select {
  font: inherit;
}

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

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

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

[hidden] {
  display: none !important;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.section {
  padding: 140px 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 200;
  left: 20px;
  top: -80px;
  color: var(--ink);
  background: var(--lime);
  padding: 12px 18px;
  border-radius: 0 0 12px 12px;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 0;
}

.site-header {
  position: fixed;
  z-index: 100;
  width: 100%;
  top: 0;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(11, 13, 11, 0.88);
  border-bottom-color: var(--line);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(calc(100% - 48px), 1340px);
  height: 88px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand img {
  display: block;
  width: 80px;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-left: auto;
  margin-right: 28px;
}

.desktop-nav a {
  color: #dfe1da;
  font-size: 14px;
  font-weight: 500;
  position: relative;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  background: var(--lime);
  transition: right 0.25s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  right: 0;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.language-switch {
  border: 0;
  background: transparent;
  color: #dfe1da;
  cursor: pointer;
  padding: 10px;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  gap: 5px;
}

.language-next {
  color: #777c73;
}

.button {
  border: 0;
  cursor: pointer;
  min-height: 54px;
  border-radius: 999px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.button svg,
.text-link svg {
  width: 18px;
  height: 18px;
  transition: transform 0.25s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button:hover svg,
.text-link:hover svg {
  transform: translateX(4px);
}

.button-lime {
  background: var(--lime);
  color: var(--ink);
  box-shadow: 0 0 0 0 rgba(198, 255, 29, 0);
}

.button-lime:hover {
  background: var(--lime-soft);
  box-shadow: 0 12px 35px rgba(198, 255, 29, 0.18);
}

.button-small {
  min-height: 44px;
  padding-inline: 19px;
  font-size: 13px;
}

.button-ghost {
  color: var(--white);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
}

.button-ghost:hover {
  border-color: rgba(255, 255, 255, 0.27);
  background: rgba(255, 255, 255, 0.07);
}

.play-icon {
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 8px;
  padding-left: 2px;
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: 900px;
  padding-top: 88px;
  background:
    radial-gradient(circle at 10% 15%, rgba(198, 255, 29, 0.07), transparent 30%),
    var(--black);
  overflow: hidden;
}

.hero::before {
  content: "K";
  position: absolute;
  left: -0.12em;
  top: 0.01em;
  font-size: clamp(500px, 55vw, 840px);
  line-height: 1;
  color: rgba(255, 255, 255, 0.018);
  font-weight: 700;
  pointer-events: none;
}

.hero-grid {
  min-height: 760px;
  display: grid;
  grid-template-columns: 0.93fr 1.07fr;
  align-items: center;
  gap: 58px;
  position: relative;
}

.hero-copy {
  position: relative;
  z-index: 3;
  padding: 50px 0 90px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #d6d9cf;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 10px;
  font-weight: 600;
  margin: 0 0 28px;
}

.pulse-dot,
.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 5px rgba(198, 255, 29, 0.1);
  flex: none;
}

.hero h1 {
  margin: 0;
  font-size: clamp(56px, 6.1vw, 92px);
  line-height: 0.95;
  letter-spacing: -0.055em;
  font-weight: 600;
  max-width: 770px;
}

.hero h1 span,
.hero h1 em {
  display: block;
}

.hero h1 em {
  color: var(--lime);
  font-style: normal;
}

.hero-lede {
  max-width: 570px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 58px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.hero-proof span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  color: #c2c6bd;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-proof svg {
  width: 17px;
  height: 17px;
  color: var(--lime);
}

.hero-visual {
  height: 710px;
  min-width: 0;
  position: relative;
  margin-top: 18px;
}

.hero-photo-wrap {
  position: absolute;
  right: 0;
  top: 6px;
  width: 80%;
  height: 670px;
  border-radius: 180px 24px 24px 24px;
  overflow: hidden;
  background: #292b28;
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 20%;
  filter: saturate(0.72) contrast(1.05);
}

.photo-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11, 13, 11, 0.45), transparent 40%),
    linear-gradient(0deg, rgba(11, 13, 11, 0.5), transparent 38%);
}

.vertical-caption {
  position: absolute;
  right: 18px;
  top: 120px;
  writing-mode: vertical-rl;
  text-transform: uppercase;
  font-size: 9px;
  letter-spacing: 0.17em;
  color: rgba(255, 255, 255, 0.58);
}

.phone {
  position: absolute;
  z-index: 3;
  overflow: hidden;
  background: #101210;
  border: 7px solid #1d201d;
  border-radius: 38px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phone-hardware {
  position: absolute;
  z-index: 2;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 66px;
  height: 19px;
  background: #080908;
  border-radius: 12px;
}

.phone-hardware span {
  position: absolute;
  right: 9px;
  top: 7px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #1c282e;
}

.phone-hero {
  width: 245px;
  height: 530px;
  left: 0;
  bottom: 8px;
  transform: rotate(-3deg);
}

.floating-card {
  position: absolute;
  z-index: 4;
  background: rgba(26, 29, 25, 0.83);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.3);
}

.floating-progress {
  right: 0;
  bottom: 45px;
  width: 190px;
  padding: 16px 18px;
}

.mini-label,
.floating-progress small {
  display: block;
  color: var(--muted);
  font-size: 10px;
}

.floating-progress strong {
  display: block;
  margin: 6px 0 8px;
  color: var(--white);
  font-size: 28px;
}

.progress-line {
  height: 5px;
  background: #41443f;
  border-radius: 8px;
  margin-bottom: 8px;
}

.progress-line i {
  display: block;
  width: 80%;
  height: 100%;
  background: var(--lime);
  border-radius: inherit;
}

.floating-live {
  right: 17%;
  top: 38px;
  padding: 13px 17px;
  display: flex;
  gap: 9px;
  align-items: center;
  font-size: 11px;
}

.live-dot {
  width: 6px;
  height: 6px;
  animation: breathe 2s infinite;
}

@keyframes breathe {
  50% { box-shadow: 0 0 0 8px rgba(198, 255, 29, 0); }
}

.marquee {
  position: absolute;
  z-index: 5;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  border-block: 1px solid rgba(11, 13, 11, 0.18);
  background: var(--lime);
  color: var(--ink);
}

.marquee-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 58px;
  padding-inline: 28px;
  animation: ticker 28s linear infinite;
}

.marquee span {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.marquee i {
  font-style: normal;
  font-size: 13px;
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

.platform-intro {
  background: var(--paper);
  color: var(--ink);
}

.section-heading {
  display: grid;
  grid-template-columns: 0.34fr 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 72px;
}

.section-heading > div {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 0.58fr);
  align-items: end;
  gap: 50px;
}

.kicker {
  margin: 8px 0 0;
  display: flex;
  align-items: center;
  gap: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 10px;
  color: #72776d;
  font-weight: 600;
}

.kicker > span:first-child {
  min-width: 28px;
  color: var(--ink);
}

.section-heading h2,
.story-copy h2,
.connection-copy h2,
.cta-copy h2 {
  margin: 0;
  font-size: clamp(44px, 5vw, 72px);
  line-height: 1.03;
  letter-spacing: -0.05em;
  font-weight: 600;
}

.section-heading p:not(.kicker),
.story-lede,
.connection-copy > p:not(.kicker),
.cta-copy > p:not(.eyebrow) {
  color: #666c62;
  line-height: 1.7;
  font-size: 16px;
  margin: 0;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.value-card {
  min-height: 430px;
  border-radius: var(--radius);
  background: #dde0d5;
  border: 1px solid rgba(17, 19, 16, 0.08);
  padding: 34px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.value-card-wide {
  grid-column: 1 / -1;
  min-height: 440px;
  background: var(--ink);
  color: var(--white);
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  padding: 54px;
}

.value-content {
  position: relative;
  z-index: 2;
  align-self: end;
}

.card-index {
  position: absolute;
  top: 30px;
  right: 32px;
  font-size: 10px;
  color: #7a7f75;
}

.value-card-wide .card-index {
  top: -260px;
  left: 0;
  right: auto;
  color: #747970;
}

.icon-tile {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-dark);
  border-radius: 14px;
  margin-bottom: 50px;
}

.value-card-wide .icon-tile {
  background: var(--lime);
  border-color: var(--lime);
  color: var(--ink);
  margin-bottom: 28px;
}

.icon-tile svg {
  width: 21px;
  height: 21px;
}

.value-card h3 {
  margin: 0;
  max-width: 540px;
  font-size: clamp(27px, 3vw, 42px);
  line-height: 1.08;
  letter-spacing: -0.04em;
  font-weight: 600;
}

.value-card p {
  margin: 18px 0 0;
  max-width: 520px;
  color: #666c62;
  font-size: 14px;
  line-height: 1.65;
}

.value-card-wide p {
  color: var(--muted);
}

.rings-graphic {
  position: absolute;
  width: 550px;
  height: 550px;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
}

.rings-graphic span {
  position: absolute;
  border: 1px solid rgba(198, 255, 29, 0.32);
  border-radius: 50%;
}

.rings-graphic span:nth-child(1) { width: 94%; height: 94%; }
.rings-graphic span:nth-child(2) { width: 68%; height: 68%; border-color: rgba(255, 255, 255, 0.15); }
.rings-graphic span:nth-child(3) { width: 43%; height: 43%; background: rgba(198, 255, 29, 0.04); }

.rings-graphic::before,
.rings-graphic::after {
  content: "";
  position: absolute;
  background: rgba(198, 255, 29, 0.16);
}

.rings-graphic::before { width: 100%; height: 1px; }
.rings-graphic::after { width: 1px; height: 100%; }

.rings-graphic img {
  width: 110px;
  position: relative;
  z-index: 2;
}

.value-card-photo {
  padding: 0;
  color: var(--white);
}

.value-card-photo > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.55) contrast(1.05);
}

.value-card-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(11, 13, 11, 0.92), rgba(11, 13, 11, 0.05) 75%);
}

.photo-card-content {
  position: relative;
  z-index: 2;
  padding: 34px;
}

.value-card-photo p {
  color: #c3c7be;
}

.member-story {
  background: var(--black);
}

.split-layout {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 100px;
  align-items: center;
}

.product-stage {
  min-height: 720px;
  position: relative;
  border-radius: 36px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    #171917;
  background-size: 36px 36px;
  overflow: hidden;
}

.stage-word {
  position: absolute;
  bottom: 10px;
  left: -18px;
  color: rgba(255, 255, 255, 0.03);
  font-weight: 700;
  font-size: 132px;
  letter-spacing: -0.08em;
}

.phone-back,
.phone-front {
  top: 110px;
  width: 245px;
  height: 560px;
}

.phone-back {
  left: 55px;
  transform: rotate(-8deg);
  opacity: 0.82;
}

.phone-front {
  right: 58px;
  top: 52px;
  transform: rotate(5deg);
}

.metric-chip {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px 15px;
  border: 1px solid var(--line);
  background: rgba(33, 36, 32, 0.84);
  backdrop-filter: blur(15px);
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.metric-chip svg {
  width: 26px;
  height: 26px;
  color: var(--lime);
}

.metric-chip span:not(.avatar-stack) {
  display: grid;
  gap: 3px;
}

.metric-chip b {
  font-size: 11px;
}

.metric-chip small {
  color: var(--muted);
  font-size: 9px;
}

.metric-top { top: 40px; left: 26px; }
.metric-bottom { bottom: 38px; right: 30px; }

.avatar-stack {
  display: flex;
  padding-left: 15px;
}

.avatar-stack i {
  width: 27px;
  height: 27px;
  margin-left: -9px;
  border-radius: 50%;
  border: 2px solid #2c2f2b;
  background: #87917f;
}

.avatar-stack i:nth-child(2) { background: #cbb5a7; }
.avatar-stack i:nth-child(3) { background: var(--lime); }

.story-copy .kicker,
.connection-copy .kicker {
  color: #7e847a;
  margin-bottom: 30px;
}

.story-copy .kicker > span:first-child,
.connection-copy .kicker > span:first-child {
  color: var(--lime);
}

.story-copy h2 {
  max-width: 650px;
}

.story-lede {
  color: var(--muted);
  margin-top: 26px;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 42px 0 32px;
}

.check-list li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.check-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.check-list > li > span {
  color: var(--lime);
  font-size: 10px;
  padding-top: 4px;
}

.check-list b {
  display: block;
  font-size: 15px;
  margin-bottom: 6px;
}

.check-list p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
  margin: 0;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--lime);
  font-weight: 600;
  font-size: 13px;
}

.gym-story {
  background: var(--paper-2);
  color: var(--ink);
}

.dashboard-frame {
  border: 1px solid rgba(17, 19, 16, 0.14);
  border-radius: 24px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 35px 90px rgba(43, 46, 40, 0.15);
  overflow: hidden;
}

.browser-bar {
  height: 47px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 15px;
  color: #70766c;
  font-size: 9px;
}

.browser-dots {
  display: flex;
  gap: 6px;
}

.browser-dots i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #b2b7ad;
}

.browser-address {
  background: #dfe2d8;
  border-radius: 7px;
  padding: 7px 62px;
}

.secure-pill {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 5px;
}

.secure-pill svg {
  width: 12px;
  height: 12px;
}

.dashboard-ui {
  min-height: 570px;
  display: grid;
  grid-template-columns: 184px 1fr;
  overflow: hidden;
  border-radius: 16px;
  background: #f4f5f0;
}

.dash-sidebar {
  background: #141614;
  color: #d5d8d0;
  padding: 25px 19px;
  display: flex;
  flex-direction: column;
}

.dash-sidebar > img {
  width: 54px;
  height: 46px;
  object-fit: contain;
  margin-bottom: 38px;
}

.dash-sidebar nav {
  display: grid;
  gap: 5px;
}

.dash-sidebar nav span {
  height: 39px;
  display: flex;
  align-items: center;
  gap: 11px;
  color: #8f958b;
  font-size: 10px;
  border-radius: 9px;
  padding: 0 11px;
}

.dash-sidebar nav span.active {
  color: #151715;
  background: var(--lime);
  font-weight: 600;
}

.dash-sidebar svg {
  width: 15px;
  height: 15px;
}

.dash-profile {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.dash-profile > i {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #30342f;
  color: var(--lime);
  font-style: normal;
  font-size: 8px;
}

.dash-profile span {
  display: grid;
  gap: 2px;
}

.dash-profile b { font-size: 8px; }
.dash-profile small { color: #72786e; font-size: 7px; }

.dash-main {
  padding: 26px 28px;
}

.dash-topbar,
.dash-actions,
.card-title,
.schedule-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dash-topbar small {
  color: #8a9086;
  font-size: 8px;
}

.dash-topbar h3 {
  margin: 4px 0 0;
  font-size: 19px;
}

.dash-actions {
  gap: 7px;
}

.dash-actions > span {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  border: 1px solid #dfe2d9;
  display: grid;
  place-items: center;
}

.dash-actions svg {
  width: 13px;
  height: 13px;
}

.dash-actions button {
  border: 0;
  background: var(--ink);
  color: var(--white);
  height: 31px;
  padding: 0 13px;
  border-radius: 9px;
  font-size: 8px;
}

.dash-kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 26px;
}

.dash-kpis > div,
.chart-card,
.schedule-card {
  border: 1px solid #e1e4dc;
  background: #fff;
  border-radius: 13px;
}

.dash-kpis > div {
  padding: 13px;
  position: relative;
  min-height: 112px;
  display: flex;
  flex-direction: column;
}

.kpi-icon {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  background: #eff0ec;
  margin-bottom: 10px;
}

.kpi-icon.lime {
  background: var(--lime);
}

.kpi-icon svg {
  width: 12px;
  height: 12px;
}

.dash-kpis small { color: #8b9087; font-size: 7px; }
.dash-kpis b { font-size: 17px; margin-top: 4px; }
.dash-kpis em { position: absolute; right: 10px; bottom: 12px; color: #6e7569; font-style: normal; font-size: 6px; }

.dash-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 10px;
  margin-top: 10px;
}

.chart-card,
.schedule-card {
  min-height: 275px;
  padding: 17px;
}

.card-title b { font-size: 10px; }
.card-title small { color: #888e84; font-size: 7px; }

.chart-area {
  height: 205px;
  position: relative;
  margin-top: 17px;
}

.chart-lines {
  position: absolute;
  inset: 0 0 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.chart-lines i {
  width: 100%;
  height: 1px;
  background: #eceee8;
}

.chart-area > svg {
  position: absolute;
  inset: 8px 0 25px;
  width: 100%;
  height: calc(100% - 33px);
  stroke-width: 2;
}

.chart-line { stroke: #171a16; fill: none; }
.chart-fill { fill: rgba(198, 255, 29, 0.38); stroke: none; }

.chart-labels {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
}

.chart-labels i {
  color: #9a9f97;
  font-style: normal;
  font-size: 6px;
}

.schedule-item {
  gap: 9px;
  justify-content: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid #eceee8;
}

.schedule-item:last-child { border-bottom: 0; }

.schedule-item .time {
  color: #7e847a;
  font-style: normal;
  font-size: 7px;
}

.schedule-item > span {
  display: grid;
  gap: 3px;
}

.schedule-item b { font-size: 8px; }
.schedule-item small { color: #91968d; font-size: 6px; }
.schedule-item em { margin-left: auto; width: 25px; height: 25px; border-radius: 50%; background: #eff1eb; display: grid; place-items: center; font-size: 6px; font-style: normal; }

.role-strip {
  margin-top: 45px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  color: #686e64;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.role-strip > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.role-strip i {
  border: 1px solid rgba(17, 19, 16, 0.14);
  border-radius: 99px;
  padding: 9px 13px;
  color: var(--ink);
  font-style: normal;
  letter-spacing: 0;
  text-transform: none;
}

.features {
  background: var(--paper);
  color: var(--ink);
  padding-top: 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line-dark);
}

.feature-item {
  min-height: 160px;
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 20px;
  align-items: start;
  padding: 30px 22px 28px 0;
  border-bottom: 1px solid var(--line-dark);
}

.feature-item:nth-child(odd) {
  border-right: 1px solid var(--line-dark);
  padding-right: 38px;
}

.feature-item:nth-child(even) {
  padding-left: 38px;
}

.feature-item > span {
  width: 48px;
  height: 48px;
  border-radius: 15px;
  background: #dfe2d7;
  display: grid;
  place-items: center;
  transition: background 0.3s, transform 0.3s;
}

.feature-item:hover > span {
  background: var(--lime);
  transform: rotate(-5deg);
}

.feature-item svg {
  width: 21px;
  height: 21px;
}

.feature-item h3 {
  margin: 3px 0 9px;
  font-size: 18px;
  font-weight: 600;
}

.feature-item p {
  margin: 0;
  color: #777c73;
  font-size: 12px;
  line-height: 1.55;
}

.feature-item > i {
  color: #959a91;
  font-style: normal;
  font-size: 9px;
}

.connection {
  background: var(--black);
  overflow: hidden;
}

.connection-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
  align-items: center;
}

.connection-copy > p:not(.kicker) {
  color: var(--muted);
  margin-top: 26px;
  max-width: 530px;
}

.security-note {
  margin-top: 42px;
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 18px;
  max-width: 480px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
}

.security-note > svg {
  width: 28px;
  height: 28px;
  color: var(--lime);
  flex: none;
}

.security-note > span {
  display: grid;
  gap: 5px;
}

.security-note b { font-size: 12px; }
.security-note small { color: var(--muted); font-size: 10px; line-height: 1.4; }

.connection-map {
  min-height: 540px;
  position: relative;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(198, 255, 29, 0.09);
}

.connection-map::before,
.connection-map::after {
  content: "";
  position: absolute;
  border: 1px dashed rgba(255, 255, 255, 0.09);
  border-radius: 50%;
}

.connection-map::before { width: 74%; height: 74%; }
.connection-map::after { width: 46%; height: 46%; }

.system-core {
  position: relative;
  z-index: 3;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #181b17;
  border: 1px solid rgba(198, 255, 29, 0.4);
  box-shadow: 0 0 80px rgba(198, 255, 29, 0.08);
}

.system-core img {
  width: 60px;
}

.system-core small {
  position: absolute;
  bottom: 19px;
  color: #858b80;
  font-size: 7px;
  letter-spacing: 0.12em;
}

.core-orbit {
  position: absolute;
  inset: -14px;
  border: 1px solid rgba(198, 255, 29, 0.2);
  border-radius: 50%;
  animation: orbitPulse 3s ease-in-out infinite;
}

@keyframes orbitPulse {
  50% { transform: scale(1.08); opacity: 0.5; }
}

.system-node {
  position: absolute;
  z-index: 3;
  width: 175px;
  min-height: 70px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--line);
  background: #181b17;
  border-radius: 18px;
  padding: 14px;
}

.system-node > svg {
  width: 28px;
  height: 28px;
  color: var(--lime);
}

.system-node span { display: grid; gap: 4px; }
.system-node b { font-size: 11px; }
.system-node small { color: var(--muted); font-size: 8px; }
.node-member { left: 0; top: 50%; transform: translateY(-50%); }
.node-gym { right: 0; top: 50%; transform: translateY(-50%); }

.connector {
  position: absolute;
  top: 50%;
  width: calc(50% - 158px);
  height: 1px;
  background: linear-gradient(90deg, rgba(198, 255, 29, 0.1), var(--lime));
}

.connector::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  top: -2.5px;
  background: var(--lime);
  animation: dataMove 2.8s linear infinite;
}

.connector-left { left: 175px; }
.connector-right { right: 175px; transform: rotate(180deg); }

@keyframes dataMove {
  from { left: 0; }
  to { left: 100%; }
}

.data-pill {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 99px;
  padding: 8px 11px;
  color: #979c94;
  font-size: 8px;
  background: #111310;
}

.data-pill i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--lime);
}

.data-one { left: 21%; top: 15%; }
.data-two { right: 20%; top: 18%; }
.data-three { left: 21%; bottom: 15%; }
.data-four { right: 21%; bottom: 18%; }

.final-cta {
  background: var(--black);
  padding-top: 20px;
}

.cta-panel {
  min-height: 640px;
  border-radius: 34px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 66px;
}

.cta-panel > img:first-child {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.55) contrast(1.06);
}

.cta-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(9, 11, 9, 0.95), rgba(9, 11, 9, 0.6) 52%, rgba(9, 11, 9, 0.15));
}

.cta-mark {
  position: absolute;
  width: 520px;
  right: -70px;
  top: -35px;
  opacity: 0.65;
  transform: rotate(-6deg);
}

.cta-copy {
  position: relative;
  z-index: 3;
  width: min(700px, 70%);
}

.cta-copy h2 {
  font-size: clamp(48px, 6vw, 82px);
}

.cta-copy > p:not(.eyebrow) {
  color: #b8bcb3;
  margin-top: 22px;
}

.cta-copy .button {
  margin-top: 34px;
}

.site-footer {
  background: var(--black);
  border-top: 1px solid var(--line);
  padding: 75px 0 30px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
}

.footer-brand img {
  display: block;
  width: 96px;
  height: auto;
}

.footer-brand p {
  color: var(--muted);
  font-size: 13px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.footer-links > div {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-links b {
  color: #747a70;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  margin-bottom: 10px;
}

.footer-links a,
.link-button {
  color: #ced2c8;
  font-size: 12px;
  transition: color 0.2s;
}

.footer-links a:hover,
.link-button:hover {
  color: var(--lime);
}

.link-button {
  border: 0;
  background: none;
  text-align: left;
  padding: 0;
  cursor: pointer;
}

.socials {
  display: flex;
  gap: 8px;
}

.socials a {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-weight: 600;
}

.footer-bottom {
  margin-top: 70px;
  padding-top: 25px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  color: #6f756b;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.demo-dialog {
  width: min(600px, calc(100% - 30px));
  max-height: calc(100vh - 32px);
  color: var(--white);
  background: #171a16;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  padding: 0;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
}

.demo-dialog::backdrop {
  background: rgba(5, 7, 5, 0.78);
  backdrop-filter: blur(8px);
}

.dialog-content {
  padding: 48px;
}

.dialog-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  color: var(--white);
  background: #272a26;
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  font-size: 22px;
}

.demo-dialog .kicker {
  color: var(--muted);
  margin-bottom: 18px;
}

.demo-dialog .kicker > span:first-child {
  color: var(--lime);
}

.demo-dialog h2 {
  font-size: 38px;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin: 0;
}

.demo-dialog .dialog-content > p:not(.kicker) {
  color: var(--muted);
  line-height: 1.55;
  margin: 15px 0 28px;
  font-size: 13px;
}

.demo-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.demo-form label {
  display: grid;
  gap: 7px;
  color: #c6cac1;
  font-size: 10px;
}

.demo-form label:nth-child(3),
.demo-form .button,
.demo-form > small {
  grid-column: 1 / -1;
}

.demo-form input,
.demo-form select {
  width: 100%;
  height: 48px;
  border-radius: 11px;
  border: 1px solid var(--line);
  background: #21241f;
  color: var(--white);
  padding: 0 14px;
  outline: none;
  font-size: 12px;
}

.demo-form input:focus,
.demo-form select:focus {
  border-color: var(--lime);
  box-shadow: 0 0 0 3px rgba(198, 255, 29, 0.08);
}

.demo-form .button {
  margin-top: 7px;
}

.demo-form > small {
  text-align: center;
  color: #6f756b;
  font-size: 8px;
}

.form-success {
  text-align: center;
  padding: 35px 0 15px;
}

.form-success > span {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
  font-size: 26px;
}

.form-success h3 {
  font-size: 28px;
  margin: 0 0 8px;
}

.form-success p {
  color: var(--muted);
  font-size: 12px;
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 0.7, 0, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

html[dir="rtl"] body {
  direction: rtl;
}

html[dir="rtl"] .desktop-nav {
  margin-left: 28px;
  margin-right: auto;
}

html[dir="rtl"] .button:hover svg,
html[dir="rtl"] .text-link:hover svg {
  transform: translateX(-4px);
}

html[dir="rtl"] .hero h1,
html[dir="rtl"] .section-heading h2,
html[dir="rtl"] .story-copy h2,
html[dir="rtl"] .connection-copy h2,
html[dir="rtl"] .cta-copy h2 {
  letter-spacing: -0.025em;
}

html[dir="rtl"] .section-heading,
html[dir="rtl"] .split-layout,
html[dir="rtl"] .connection-grid {
  direction: rtl;
}

@media (max-width: 1120px) {
  .hero-grid {
    gap: 20px;
  }

  .hero-visual {
    transform: scale(0.91);
    transform-origin: right center;
    width: 110%;
  }

  .split-layout {
    gap: 55px;
  }

  .phone-back { left: 20px; }
  .phone-front { right: 22px; }

  .dash-main { padding: 22px; }

  .connection-grid {
    gap: 35px;
  }

  .system-node { width: 150px; }
  .connector-left { left: 150px; }
  .connector-right { right: 150px; }
}

@media (max-width: 920px) {
  .desktop-nav,
  .nav-actions > .button-small {
    display: none;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: transparent;
    display: grid;
    place-content: center;
    gap: 6px;
  }

  .menu-toggle > span:not(.sr-only) {
    width: 16px;
    height: 1px;
    background: var(--white);
    transition: transform 0.25s;
  }

  .menu-toggle[aria-expanded="true"] > span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] > span:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }

  .mobile-menu {
    display: flex;
    position: fixed;
    inset: 87px 0 auto;
    min-height: calc(100vh - 87px);
    background: rgba(11, 13, 11, 0.98);
    padding: 45px 24px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: 0.25s ease;
  }

  .mobile-menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .mobile-menu > a {
    font-size: 30px;
    font-weight: 600;
    letter-spacing: -0.03em;
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
  }

  .mobile-menu .button {
    margin-top: 30px;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    padding-top: 55px;
    padding-bottom: 112px;
  }

  .hero-copy {
    padding-bottom: 0;
  }

  .hero-visual {
    width: 100%;
    height: 650px;
    transform: none;
    margin: 0;
  }

  .hero-photo-wrap {
    width: 77%;
    height: 610px;
  }

  .phone-hero {
    left: 8%;
  }

  .section {
    padding: 105px 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .section-heading > div {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 25px;
  }

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

  .rings-graphic {
    width: 430px;
    height: 430px;
    right: -30px;
    opacity: 0.55;
  }

  .value-content {
    max-width: 62%;
  }

  .split-layout,
  .connection-grid {
    grid-template-columns: 1fr;
  }

  .story-copy {
    order: -1;
  }

  .product-stage {
    max-width: 680px;
    width: 100%;
    margin-inline: auto;
  }

  .dashboard-ui {
    min-width: 980px;
  }

  .dashboard-frame {
    overflow-x: auto;
  }

  .role-strip {
    align-items: flex-start;
  }

  .connection-copy {
    max-width: 680px;
  }

  .connection-map {
    width: min(100%, 700px);
    margin-inline: auto;
  }

  .footer-top {
    grid-template-columns: 0.6fr 1.4fr;
    gap: 45px;
  }
}

@media (max-width: 680px) {
  .container,
  .nav-shell {
    width: min(calc(100% - 32px), var(--container));
  }

  .nav-shell {
    height: 76px;
  }

  .brand img {
    width: 68px;
  }

  .mobile-menu {
    top: 75px;
    min-height: calc(100vh - 75px);
  }

  .hero {
    padding-top: 76px;
  }

  .hero-grid {
    padding-top: 30px;
    gap: 30px;
  }

  .hero-copy {
    padding-top: 40px;
  }

  .hero h1 {
    font-size: clamp(48px, 15vw, 70px);
  }

  .hero-lede {
    font-size: 15px;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-proof {
    gap: 15px;
    margin-top: 38px;
  }

  .hero-proof span {
    font-size: 8px;
  }

  .hero-visual {
    height: 530px;
  }

  .hero-photo-wrap {
    width: 82%;
    height: 500px;
    border-radius: 120px 20px 20px 20px;
  }

  .phone-hero {
    width: 178px;
    height: 386px;
    left: 0;
    border-width: 5px;
    border-radius: 28px;
  }

  .floating-live {
    right: 5%;
    top: 22px;
  }

  .floating-progress {
    width: 150px;
    right: 1%;
    bottom: 24px;
  }

  .section {
    padding: 82px 0;
  }

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

  .section-heading h2,
  .story-copy h2,
  .connection-copy h2 {
    font-size: 43px;
  }

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

  .value-card,
  .value-card-wide {
    min-height: 390px;
    padding: 28px;
  }

  .value-card-wide {
    grid-column: auto;
  }

  .value-content {
    max-width: 100%;
  }

  .value-card-wide .value-content {
    padding-top: 180px;
  }

  .value-card-wide .card-index {
    top: 0;
  }

  .rings-graphic {
    width: 320px;
    height: 320px;
    right: -65px;
    top: 28%;
  }

  .product-stage {
    min-height: 560px;
  }

  .phone-back,
  .phone-front {
    width: 190px;
    height: 435px;
    border-width: 5px;
    border-radius: 29px;
  }

  .phone-back { left: 4px; top: 95px; }
  .phone-front { right: 5px; top: 45px; }
  .metric-top { top: 23px; left: 15px; }
  .metric-bottom { bottom: 19px; right: 12px; }
  .stage-word { font-size: 88px; }

  .gym-copy {
    margin-bottom: 45px;
  }

  .browser-address {
    padding: 7px 25px;
  }

  .secure-pill {
    display: none;
  }

  .role-strip {
    display: grid;
  }

  .role-strip > div {
    justify-content: flex-start;
  }

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

  .feature-item,
  .feature-item:nth-child(odd),
  .feature-item:nth-child(even) {
    border-right: 0;
    padding: 26px 0;
  }

  .connection-map {
    min-height: 500px;
    transform: scale(0.96);
  }

  .system-node {
    width: 140px;
  }

  .node-member {
    left: 50%;
    top: 22px;
    transform: translateX(-50%);
  }

  .node-gym {
    right: auto;
    left: 50%;
    top: auto;
    bottom: 22px;
    transform: translateX(-50%);
  }

  .connector {
    left: 50%;
    right: auto;
    top: auto;
    width: 1px;
    height: calc(50% - 105px);
    background: linear-gradient(0deg, rgba(198, 255, 29, 0.1), var(--lime));
  }

  .connector-left { top: 92px; }
  .connector-right { bottom: 92px; transform: rotate(180deg); }

  .connector::after {
    top: auto;
    left: -2.5px;
    animation-name: dataMoveVertical;
  }

  @keyframes dataMoveVertical {
    from { top: 0; }
    to { top: 100%; }
  }

  .data-one { left: 3%; top: 24%; }
  .data-two { right: 3%; top: 26%; }
  .data-three { left: 3%; bottom: 24%; }
  .data-four { right: 4%; bottom: 26%; }

  .cta-panel {
    min-height: 610px;
    padding: 35px 26px;
  }

  .cta-mark {
    width: 320px;
    top: 40px;
  }

  .cta-copy {
    width: 100%;
  }

  .cta-copy h2 {
    font-size: 46px;
  }

  .cta-copy .button {
    width: 100%;
  }

  .footer-top,
  .footer-links {
    grid-template-columns: 1fr;
  }

  .footer-links {
    gap: 38px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .dialog-content {
    padding: 40px 22px 26px;
  }

  .demo-dialog h2 {
    font-size: 32px;
  }

  .demo-form {
    grid-template-columns: 1fr;
  }

  .demo-form label,
  .demo-form label:nth-child(3),
  .demo-form .button,
  .demo-form > small {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
