/* Multi-page product presentation layer */

.desktop-nav a[aria-current="page"] {
  color: var(--white);
}

.desktop-nav a[aria-current="page"]::after {
  right: 0;
}

.mobile-menu a[aria-current="page"] {
  color: var(--lime);
}

.hero-home {
  min-height: 900px;
}

.hero-real-visual {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.hero-dashboard-card {
  position: absolute;
  right: -115px;
  top: 90px;
  width: 610px;
  padding: 9px;
  border-radius: 24px;
  background: #20231f;
  border: 1px solid rgba(255, 255, 255, 0.13);
  box-shadow: 0 45px 100px rgba(0, 0, 0, 0.5);
  transform: perspective(1200px) rotateY(-7deg) rotateX(2deg);
  overflow: hidden;
}

.hero-dashboard-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.1), transparent 22%);
}

.hero-dashboard-card img {
  width: 100%;
  border-radius: 16px;
}

.capture-label,
.capture-note {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #cdd1c7;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.capture-label {
  position: absolute;
  z-index: 2;
  top: 20px;
  left: 21px;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(10, 12, 10, 0.82);
  backdrop-filter: blur(12px);
}

.capture-label i,
.capture-note i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 5px rgba(198, 255, 29, 0.1);
}

.hero-real-visual .real-phone {
  left: 22px;
  bottom: 15px;
  width: 218px;
  height: 472px;
  transform: rotate(-3deg);
}

.hero-real-visual .floating-live {
  top: 56px;
  right: 28px;
}

.real-product {
  background: var(--paper);
  color: var(--ink);
}

.product-paths {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 18px;
}

.product-path {
  min-height: 660px;
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  background: #dfe3d7;
  border: 1px solid rgba(17, 19, 16, 0.1);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.product-path:hover {
  transform: translateY(-7px);
  box-shadow: 0 28px 70px rgba(17, 19, 16, 0.13);
}

.product-path-gyms {
  background: #151815;
  color: var(--white);
}

.path-copy {
  position: relative;
  z-index: 3;
  width: min(100%, 580px);
  padding: 42px;
}

.path-copy > span {
  display: block;
  margin-bottom: 34px;
  color: #6f746b;
  font-size: 10px;
  letter-spacing: 0.15em;
}

.product-path-gyms .path-copy > span {
  color: var(--muted);
}

.path-copy h3 {
  margin: 0;
  max-width: 560px;
  font-size: clamp(34px, 3.5vw, 54px);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.path-copy p {
  max-width: 490px;
  margin: 19px 0 24px;
  color: #686d64;
  line-height: 1.65;
}

.product-path-gyms .path-copy p {
  color: var(--muted);
}

.path-phones {
  position: absolute;
  inset: auto 0 -130px;
  height: 430px;
}

.path-phones img {
  position: absolute;
  width: 205px;
  border: 6px solid #20231f;
  border-radius: 34px;
  box-shadow: 0 25px 65px rgba(17, 19, 16, 0.28);
}

.path-phones img:first-child {
  left: 16%;
  top: 30px;
  transform: rotate(-5deg);
}

.path-phones img:last-child {
  right: 14%;
  top: 0;
  transform: rotate(5deg);
}

.path-dashboard {
  position: absolute;
  left: 42px;
  right: -160px;
  bottom: -35px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 20px;
  background: #2a2d29;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.path-dashboard img {
  border-radius: 13px;
}

.page-hero {
  min-height: 780px;
  padding: 160px 0 100px;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 15% 15%, rgba(198, 255, 29, 0.08), transparent 32%), var(--black);
}

.page-hero::before {
  content: attr(data-word);
  position: absolute;
  right: -0.05em;
  bottom: -0.24em;
  color: rgba(255, 255, 255, 0.018);
  font-weight: 700;
  font-size: min(40vw, 620px);
  line-height: 1;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  align-items: center;
  gap: 72px;
  min-height: 580px;
}

.page-hero-copy {
  position: relative;
  z-index: 5;
}

.page-hero-copy h1,
.contact-copy h1 {
  margin: 0;
  max-width: 790px;
  font-size: clamp(58px, 6vw, 88px);
  line-height: 0.98;
  letter-spacing: -0.055em;
  font-weight: 600;
}

.page-hero-copy > p:not(.eyebrow),
.contact-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.capture-note {
  margin-top: 34px;
}

.member-hero-devices {
  min-height: 610px;
  position: relative;
}

.device-shot {
  margin: 0;
  width: 270px;
  overflow: hidden;
  border: 7px solid #212420;
  border-radius: 46px;
  background: #171917;
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.48), 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.device-shot img {
  width: 100%;
  aspect-ratio: 440 / 956;
  object-fit: cover;
}

.member-hero-devices .device-shot {
  position: absolute;
  width: 292px;
}

.device-shot-back {
  top: 60px;
  left: 12px;
  transform: rotate(-7deg);
  opacity: 0.82;
}

.device-shot-front {
  top: 0;
  right: 10px;
  z-index: 2;
  transform: rotate(4deg);
}

.screen-gallery {
  background: var(--paper);
  color: var(--ink);
}

.mobile-screen-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  align-items: start;
}

.screen-card {
  margin: 0;
  padding: 20px 20px 18px;
  border-radius: 28px;
  background: #dfe3d7;
  border: 1px solid rgba(17, 19, 16, 0.1);
}

.screen-card:nth-child(even) {
  margin-top: 68px;
}

.screen-card .device-shot {
  width: 100%;
  border-width: 5px;
  border-radius: 34px;
  box-shadow: 0 18px 45px rgba(17, 19, 16, 0.2);
}

.screen-card figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 3px 2px;
}

.screen-card figcaption span {
  color: #7c8178;
  font-size: 11px;
}

.screen-card figcaption b {
  font-size: 15px;
}

.member-benefits {
  background: #131513;
}

.benefits-split {
  gap: 90px;
  align-items: start;
}

.benefits-split .check-list {
  margin-top: 0;
}

.page-hero-stack {
  display: grid;
  gap: 65px;
}

.page-hero-copy-wide {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  column-gap: 70px;
}

.page-hero-copy-wide .eyebrow,
.page-hero-copy-wide h1 {
  grid-column: 1;
}

.page-hero-copy-wide > p:not(.eyebrow),
.page-hero-copy-wide .hero-actions,
.page-hero-copy-wide .capture-note {
  grid-column: 2;
}

.page-hero-copy-wide > p:not(.eyebrow) {
  grid-row: 2;
  margin-top: 0;
}

.page-hero-copy-wide .hero-actions {
  align-self: end;
}

.page-hero-copy-wide .capture-note {
  margin-top: 20px;
}

.gym-page-hero {
  padding-bottom: 125px;
}

.gym-page-hero .page-hero-stack {
  gap: 35px;
}

.real-dashboard {
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  background: #20231f;
  border: 1px solid rgba(255, 255, 255, 0.13);
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.4);
}

.real-dashboard > img {
  width: 100%;
}

.hero-dashboard {
  max-width: 1180px;
  margin-inline: auto;
}

.hero-dashboard > img {
  border-radius: 0 0 18px 18px;
}

.dashboard-gallery {
  background: var(--paper);
  color: var(--ink);
}

.dashboard-screen-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.dashboard-screen-card {
  margin: 0;
  padding: 30px;
  border-radius: 30px;
  background: #dfe3d7;
  border: 1px solid rgba(17, 19, 16, 0.1);
}

.dashboard-screen-featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 0.33fr 0.67fr;
  align-items: center;
  gap: 36px;
  background: #151815;
  color: var(--white);
}

.dashboard-screen-card .real-dashboard {
  border-radius: 18px;
  box-shadow: 0 22px 60px rgba(17, 19, 16, 0.2);
}

.screen-card-copy > span {
  color: #777c73;
  font-size: 10px;
  letter-spacing: 0.15em;
}

.screen-card-copy h3 {
  margin: 22px 0 12px;
  font-size: clamp(30px, 3vw, 48px);
  line-height: 1;
  letter-spacing: -0.04em;
}

.screen-card-copy p {
  margin: 0 0 28px;
  color: #6d7268;
  line-height: 1.65;
}

.dashboard-screen-featured .screen-card-copy p {
  color: var(--muted);
}

.roles-section {
  background: #131513;
}

.role-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.role-cards article {
  min-height: 210px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 0.25s ease;
}

.role-cards article:hover {
  background: rgba(198, 255, 29, 0.05);
}

.role-cards article span {
  margin-bottom: auto;
  color: #767b72;
  font-size: 10px;
}

.role-cards article b {
  font-size: 25px;
}

.role-cards article small {
  margin-top: 8px;
  color: var(--muted);
}

.features-page-hero {
  min-height: 760px;
}

.feature-hero-map {
  min-height: 560px;
  display: grid;
  place-items: center;
}

.feature-orbit {
  width: 440px;
  height: 440px;
  position: relative;
  display: grid;
  place-items: center;
  border: 1px solid rgba(198, 255, 29, 0.25);
  border-radius: 50%;
  box-shadow: inset 0 0 90px rgba(198, 255, 29, 0.04);
}

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

.feature-orbit::before { inset: 70px; }
.feature-orbit::after { inset: 140px; }

.feature-orbit > img {
  z-index: 2;
  width: 82px;
  filter: drop-shadow(0 0 32px rgba(198, 255, 29, 0.25));
}

.orbit-item {
  position: absolute;
  z-index: 3;
  min-width: 130px;
  padding: 13px 15px;
  display: flex;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(29, 32, 29, 0.84);
  backdrop-filter: blur(14px);
  font-size: 12px;
}

.orbit-item svg { width: 18px; height: 18px; color: var(--lime); }
.orbit-one { top: 17px; left: 20px; }
.orbit-two { top: 44px; right: -35px; }
.orbit-three { bottom: 33px; left: -25px; }
.orbit-four { right: 5px; bottom: 12px; }

.feature-proof {
  background: #131513;
}

.proof-pair {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 90px;
  align-items: center;
}

.proof-pair .real-dashboard,
.proof-pair .device-shot {
  overflow: visible;
}

.proof-pair .real-dashboard > img,
.proof-pair .device-shot > img {
  overflow: hidden;
  border-radius: inherit;
}

.proof-pair figcaption {
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
  color: var(--muted);
  font-size: 11px;
}

.proof-pair figcaption b {
  color: var(--white);
  font-size: 14px;
}

.proof-connection {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  margin-top: 52px;
}

.proof-connection span {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--lime));
}

.proof-connection span:last-child {
  transform: rotate(180deg);
}

.proof-connection img { width: 48px; }

.compact-cta {
  background: var(--black);
}

.compact-cta-panel {
  min-height: 310px;
  padding: 56px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 35px;
  border-radius: 34px;
  color: var(--ink);
  background: var(--lime);
  position: relative;
  overflow: hidden;
}

.compact-cta-panel::after {
  content: "K";
  position: absolute;
  right: 17%;
  bottom: -0.36em;
  font-size: 330px;
  line-height: 1;
  color: rgba(17, 19, 16, 0.08);
  font-weight: 700;
}

.compact-cta-panel > * { position: relative; z-index: 2; }
.compact-cta-panel .kicker { color: rgba(17, 19, 16, 0.62); }
.compact-cta-panel h2 { max-width: 760px; margin: 20px 0 0; font-size: clamp(40px, 5vw, 66px); line-height: 1; letter-spacing: -0.045em; }
.compact-cta-panel .button { background: var(--ink); color: var(--white); flex: none; }

.contact-page {
  min-height: 100vh;
  padding: 160px 0 110px;
  background: radial-gradient(circle at 10% 10%, rgba(198, 255, 29, 0.08), transparent 34%), var(--black);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 80px;
  align-items: start;
}

.contact-copy {
  padding-top: 30px;
}

.contact-copy h1 {
  font-size: clamp(54px, 5vw, 78px);
}

.contact-points {
  margin-top: 38px;
  display: grid;
  gap: 16px;
}

.contact-points span {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #d9dcd3;
  font-size: 13px;
}

.contact-points svg {
  width: 20px;
  height: 20px;
  color: var(--lime);
}

.contact-preview {
  position: relative;
  height: 260px;
  margin-top: 60px;
}

.contact-preview img:first-child {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 88%;
  border: 5px solid #242724;
  border-radius: 18px;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.4);
}

.contact-preview img:last-child {
  position: absolute;
  right: 0;
  bottom: -30px;
  width: 110px;
  border: 4px solid #242724;
  border-radius: 18px;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.5);
}

.contact-form-card {
  padding: 46px;
  color: var(--ink);
  background: var(--paper);
  border-radius: 34px;
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.32);
}

.contact-form-card h2 {
  margin: 14px 0 12px;
  font-size: 42px;
  line-height: 1;
  letter-spacing: -0.04em;
}

.contact-form-card > p {
  margin: 0;
  color: #666b62;
  line-height: 1.6;
}

.contact-form {
  display: grid;
  gap: 17px;
  margin-top: 30px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: #464a43;
  font-size: 11px;
  font-weight: 600;
}

.contact-form input,
.contact-form select {
  width: 100%;
  height: 52px;
  padding: 0 15px;
  border: 1px solid rgba(17, 19, 16, 0.14);
  border-radius: 13px;
  outline: none;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.58);
}

.contact-form input:focus,
.contact-form select:focus {
  border-color: #7da500;
  box-shadow: 0 0 0 3px rgba(198, 255, 29, 0.35);
}

.contact-form .button {
  width: 100%;
  margin-top: 5px;
}

.contact-form > small {
  color: #777c73;
  line-height: 1.5;
  text-align: center;
}

html[dir="rtl"] .hero-dashboard-card { right: auto; left: -115px; transform: perspective(1200px) rotateY(7deg) rotateX(2deg); }
html[dir="rtl"] .hero-real-visual .real-phone { left: auto; right: 22px; }
html[dir="rtl"] .hero-real-visual .floating-live { right: auto; left: 28px; }
html[dir="rtl"] .capture-label { left: auto; right: 21px; }
html[dir="rtl"] .path-dashboard { left: -160px; right: 42px; }
html[dir="rtl"] .product-path:hover .text-link svg { transform: translateX(-4px); }

@media (max-width: 1120px) {
  .hero-dashboard-card { right: -40px; width: 540px; }
  .hero-real-visual .real-phone { width: 190px; height: 412px; }
  .page-hero-grid { gap: 35px; }
  .member-hero-devices .device-shot { width: 255px; }
  .product-paths { grid-template-columns: 1fr; }
  .product-path { min-height: 620px; }
  .page-hero-copy-wide { grid-template-columns: 1fr; }
  .page-hero-copy-wide > * { grid-column: 1 !important; }
  .page-hero-copy-wide > p:not(.eyebrow) { grid-row: auto; margin-top: 24px; }
  .contact-grid { gap: 42px; }
}

@media (max-width: 920px) {
  .hero-home { min-height: auto; }
  .hero-real-visual { min-height: 590px; }
  .hero-dashboard-card { width: min(92vw, 610px); right: -2%; top: 40px; }
  .hero-real-visual .real-phone { left: 7%; bottom: 5px; }
  .hero-real-visual .floating-live { top: 16px; }
  .page-hero { padding-top: 130px; }
  .page-hero-grid { grid-template-columns: 1fr; }
  .page-hero-copy h1 { font-size: clamp(52px, 9vw, 76px); }
  .member-hero-devices { width: min(100%, 650px); margin-inline: auto; }
  .mobile-screen-grid { grid-template-columns: repeat(2, 1fr); }
  .screen-card:nth-child(even) { margin-top: 40px; }
  .benefits-split { grid-template-columns: 1fr; gap: 55px; }
  .dashboard-screen-featured { display: block; }
  .dashboard-screen-featured .screen-card-copy { margin-bottom: 30px; }
  .role-cards { grid-template-columns: repeat(2, 1fr); }
  .proof-pair { grid-template-columns: 1fr 220px; gap: 35px; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-copy { max-width: 760px; }
  .contact-preview { display: none; }
}

@media (max-width: 680px) {
  .hero-real-visual { min-height: 500px; }
  .hero-dashboard-card { top: 30px; right: -28%; width: 125%; transform: none; }
  .hero-real-visual .real-phone { width: 164px; height: 355px; left: 0; bottom: 0; }
  .hero-real-visual .floating-live { right: 0; top: 8px; }
  .capture-label { display: none; }
  .product-path { min-height: 600px; }
  .path-copy { padding: 30px 26px; }
  .path-phones img { width: 165px; }
  .path-dashboard { left: 26px; right: -290px; bottom: 30px; }
  .page-hero { min-height: auto; padding: 125px 0 76px; }
  .page-hero-copy h1,
  .contact-copy h1 { font-size: 50px; }
  .member-hero-devices { min-height: 500px; }
  .member-hero-devices .device-shot { width: 210px; }
  .device-shot-back { left: -12px; }
  .device-shot-front { right: -8px; }
  .mobile-screen-grid { grid-template-columns: 1fr; gap: 22px; }
  .screen-card,
  .screen-card:nth-child(even) { margin-top: 0; padding: 18px; }
  .screen-card .device-shot { width: min(100%, 280px); margin-inline: auto; }
  .page-hero-stack { gap: 40px; }
  .hero-dashboard .browser-bar { padding-inline: 11px; }
  .dashboard-screen-list { grid-template-columns: 1fr; }
  .dashboard-screen-card,
  .dashboard-screen-featured { grid-column: auto; padding: 22px; }
  .role-cards { grid-template-columns: 1fr; }
  .feature-hero-map { min-height: 440px; }
  .feature-orbit { width: 315px; height: 315px; }
  .feature-orbit::before { inset: 50px; }
  .feature-orbit::after { inset: 104px; }
  .orbit-item { min-width: 110px; padding: 10px; font-size: 10px; }
  .orbit-one { left: -8px; }
  .orbit-two { right: -18px; }
  .orbit-three { left: -15px; }
  .proof-pair { grid-template-columns: 1fr; }
  .proof-pair .device-shot { width: 210px; margin-inline: auto; }
  .compact-cta-panel { padding: 34px 26px; min-height: 420px; flex-direction: column; align-items: flex-start; justify-content: flex-end; }
  .compact-cta-panel .button { width: 100%; }
  .contact-page { padding-top: 125px; }
  .contact-form-card { padding: 34px 22px; }
}
