:root {
  --home-navy: #050b18;
  --home-navy-2: #091426;
  --home-ink: #0b1324;
  --home-blue: #3e7bff;
  --home-blue-strong: #185de8;
  --home-blue-soft: #e9f0ff;
  --home-white: #ffffff;
  --home-silver: #b9c0ca;
  --home-line: #dce3ee;
  --home-muted: #5f6b7c;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--home-navy);
}

body.home-blue {
  margin: 0;
  overflow-x: clip;
  background: var(--home-navy);
  color: var(--home-white);
  font-family: Vazirmatn, Arial, sans-serif;
}

body.home-blue a {
  color: inherit;
  text-decoration: none;
}

body.home-blue button,
body.home-blue a {
  -webkit-tap-highlight-color: transparent;
}

body.home-blue :focus-visible {
  outline: 3px solid rgba(62, 123, 255, 0.5);
  outline-offset: 3px;
}

.home-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(5, 11, 24, 0.7);
  color: #fff;
  backdrop-filter: blur(18px);
  transition: background 220ms ease, border-color 220ms ease, color 220ms ease;
}

.home-header.is-solid {
  border-color: rgba(9, 20, 38, 0.12);
  background: rgba(255, 255, 255, 0.94);
  color: var(--home-ink);
}

.home-header-inner {
  width: min(1180px, calc(100% - 48px));
  min-height: 72px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto minmax(220px, 1fr);
  align-items: center;
  gap: 28px;
}

.home-brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 11px;
  font-weight: 900;
  direction: ltr;
  white-space: nowrap;
}

.home-header nav {
  --home-nav-x: 0px;
  --home-nav-width: 0px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  min-width: 0;
}

.home-header nav::after {
  content: '';
  position: absolute;
  right: auto;
  bottom: 0;
  left: 0;
  width: var(--home-nav-width);
  height: 2px;
  border-radius: 2px;
  background: var(--home-blue);
  box-shadow: 0 0 16px rgba(62, 123, 255, .68);
  opacity: 0;
  transform: translate3d(var(--home-nav-x), 0, 0);
  transform-origin: left center;
  transition: width 220ms cubic-bezier(.23,1,.32,1), transform 240ms cubic-bezier(.23,1,.32,1), opacity 160ms ease;
  pointer-events: none;
}

.home-header nav[data-glide-ready="true"]::after { opacity: 1; }

.home-header nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  transition: color 160ms ease;
  border-bottom: 0 !important;
  padding-bottom: 0 !important;
}

.home-header nav a:hover,
.home-header nav a.text-primary {
  color: #fff;
}

.home-header nav a.text-primary {
  box-shadow: none;
}

.home-header.is-solid nav a {
  color: #536074;
}

.home-header.is-solid nav a:hover,
.home-header.is-solid nav a.text-primary {
  color: var(--home-blue-strong);
}

.home-header-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: end;
  gap: 10px;
}

.home-header-actions > a,
.home-header-actions > button {
  min-height: 44px;
  min-width: 144px;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  box-shadow: 0 10px 28px rgba(15, 72, 190, 0.25);
}

.home-header-actions .material-symbols-outlined {
  width: 18px;
  height: 18px;
  overflow: hidden;
  font-size: 18px;
}

.home-header-actions a:first-child {
  border-color: var(--home-blue);
  background: var(--home-blue);
}

.home-header.is-solid .home-header-actions > a,
.home-header.is-solid .home-header-actions > button {
  border-color: #ccd7e8;
  background: #fff;
  color: var(--home-ink);
}

.home-header.is-solid .home-header-actions a:first-child {
  border-color: var(--home-blue);
  background: var(--home-blue);
  color: #fff;
}

.hero-walkthrough {
  position: relative;
  height: 650vh;
  background: var(--home-navy);
}

.hero-pin {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: var(--home-navy);
}

.hero-poster,
.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.hero-poster {
  object-fit: cover;
  object-position: center 40%;
  opacity: 1;
  transition: opacity 160ms linear;
}

.hero-canvas {
  opacity: 0;
  transition: opacity 240ms ease;
}

.hero-walkthrough.is-canvas-ready .hero-poster {
  opacity: 0;
}

.hero-walkthrough.is-canvas-ready .hero-canvas {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(5, 11, 24, 0.15), rgba(5, 11, 24, 0.55) 62%, rgba(5, 11, 24, 0.88)),
    linear-gradient(180deg, rgba(5, 11, 24, 0.54), transparent 34%, rgba(5, 11, 24, 0.62));
  box-shadow: inset 0 0 16vw rgba(0, 0, 0, 0.42);
}

.hero-copy {
  position: absolute;
  inset: 0;
  width: min(1320px, calc(100% - 48px));
  margin-inline: auto;
  padding-top: clamp(130px, 18vh, 190px);
  display: flex;
  justify-content: flex-start;
  pointer-events: none;
  will-change: opacity, transform;
}

.hero-copy-inner {
  width: min(580px, 52vw);
  pointer-events: auto;
}

.hero-kicker {
  margin: 0 0 18px;
  color: #8db0ff;
  font-size: 12px;
  font-weight: 800;
}

.hero-copy h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(42px, 6vw, 82px);
  font-weight: 950;
  line-height: 1.08;
  letter-spacing: 0;
}

.hero-copy h1 span {
  color: #7fa6ff;
}

.hero-copy p {
  max-width: 520px;
  margin: 24px 0 0;
  color: rgba(238, 244, 255, 0.78);
  font-size: clamp(15px, 1.4vw, 19px);
  line-height: 2;
}

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

.home-blue .home-button {
  min-height: 50px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 7px;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.home-blue .home-button:hover {
  transform: translateY(-2px);
}

.home-blue .home-button.primary {
  border-color: var(--home-blue);
  background: var(--home-blue);
}

.home-blue .home-button.secondary {
  background: rgba(5, 11, 24, 0.52);
  backdrop-filter: blur(10px);
}

.scroll-cue {
  position: absolute;
  right: 0;
  bottom: 5vh;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 700;
  pointer-events: none;
}

.scroll-cue-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(var(--home-blue), transparent);
}

.inside-message {
  position: absolute;
  right: 24px;
  bottom: 10vh;
  left: 24px;
  color: #fff;
  font-size: clamp(19px, 2.2vw, 30px);
  font-weight: 900;
  text-align: center;
  opacity: 0;
  pointer-events: none;
}

.hero-loading {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: grid;
  place-items: center;
  background: var(--home-navy);
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 700;
}

.hero-loading[hidden] {
  display: none;
}

.coach-universe {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 42%, rgba(62, 123, 255, 0.18), transparent 36%),
    var(--home-navy);
  color: #fff;
  isolation: isolate;
}

.coach-universe::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.55;
  background-image:
    radial-gradient(circle at 12% 18%, rgba(255,255,255,.34) 0 1px, transparent 1.5px),
    radial-gradient(circle at 84% 31%, rgba(93,143,255,.46) 0 1px, transparent 1.5px),
    radial-gradient(circle at 34% 76%, rgba(255,255,255,.26) 0 1px, transparent 1.5px),
    radial-gradient(circle at 71% 83%, rgba(93,143,255,.38) 0 1px, transparent 1.5px);
  background-size: 190px 180px, 230px 210px, 260px 220px, 310px 280px;
  animation: home-stars 28s linear infinite;
}

.coach-universe::after {
  content: '';
  position: absolute;
  z-index: 0;
  inset: 12% 8% 5%;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 48%, rgba(42, 104, 255, .26) 0, rgba(42, 104, 255, .1) 31%, transparent 66%),
    linear-gradient(112deg, transparent 18%, rgba(44, 105, 255, .08) 43%, transparent 64%);
  filter: blur(34px);
  transform: translate3d(0, 0, 0) scale(1.04);
  animation: coach-light-breathe 6s cubic-bezier(.77,0,.175,1) infinite alternate;
}

@keyframes coach-light-breathe {
  to { opacity: .72; transform: translate3d(0, -1.5%, 0) scale(1.1); }
}

@keyframes home-stars {
  to { background-position: 190px 180px, -230px 210px, 260px -220px, -310px -280px; }
}

.coach-heading {
  position: absolute;
  top: clamp(88px, 10vh, 116px);
  right: max(24px, calc((100vw - 1320px) / 2));
  z-index: 5;
  width: min(520px, calc(100% - 48px));
}

.coach-heading p {
  margin: 0 0 12px;
  color: #8db0ff;
  font-size: 12px;
  font-weight: 800;
}

.coach-heading h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.16;
  font-weight: 950;
}

.coach-scene {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  perspective: 1250px;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}

.coach-scene::before,
.coach-scene::after {
  content: '';
  position: absolute;
  pointer-events: none;
}

.coach-scene::before {
  inset: 21% 9% 12%;
  background:
    linear-gradient(76deg, transparent 20%, rgba(75, 132, 255, .07) 45%, transparent 61%),
    linear-gradient(104deg, transparent 28%, rgba(31, 89, 225, .08) 50%, transparent 72%);
  filter: blur(16px);
  animation: coach-beams 9s cubic-bezier(.77,0,.175,1) infinite alternate;
}

.coach-scene::after {
  right: 13%;
  bottom: 8%;
  left: 13%;
  height: 17%;
  border-radius: 50%;
  background: rgba(26, 81, 211, .14);
  filter: blur(42px);
  transform: perspective(520px) rotateX(68deg) scaleX(.72);
}

@keyframes coach-beams {
  to { opacity: .62; transform: translate3d(2.5%, -1%, 0) scaleX(1.06); }
}

.coach-scene:active {
  cursor: grabbing;
}

.coach-scene.is-dragging {
  cursor: grabbing;
}

.coach-scene.is-dragging .ring-coach-card {
  pointer-events: none;
}

.coach-ring {
  position: absolute;
  top: 52%;
  left: 50%;
  width: 1px;
  height: 1px;
  transform-style: preserve-3d;
  will-change: transform;
  z-index: 1;
}

.ring-coach-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 220px;
  height: 310px;
  margin: -155px 0 0 -110px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 8px;
  background: #101a2b;
  color: #fff;
  box-shadow: 0 24px 70px rgba(0,0,0,.5);
  transform-style: preserve-3d;
  transition: border-color 260ms ease, box-shadow 260ms ease;
  will-change: transform, opacity, filter;
}

.ring-coach-card.is-active {
  border-color: rgba(111, 158, 255, 0.86);
  box-shadow: 0 0 0 1px rgba(62, 123, 255, .45), 0 0 52px rgba(35, 96, 235, .18), 0 32px 90px rgba(0,0,0,.68);
}

.ring-coach-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  -webkit-user-drag: none;
  user-select: none;
  transform: scale(1.03);
  transition: transform 500ms cubic-bezier(.2,.8,.2,1), filter 350ms ease;
}

.ring-coach-card img.is-placeholder {
  filter: hue-rotate(145deg) saturate(.88) contrast(1.06);
}

.ring-coach-card.is-active img {
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.1) translate3d(calc(var(--card-parallax-x, 0) * 7px), calc(var(--card-parallax-y, 0) * 5px), 0);
}

.ring-coach-card.is-active img.is-placeholder {
  filter: hue-rotate(145deg) saturate(.96) contrast(1.08);
}

.ring-coach-card::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 3;
  border: 1px solid transparent;
  border-radius: inherit;
  pointer-events: none;
  transition: border-color 220ms ease, box-shadow 220ms ease;
}

.ring-coach-card.is-active::after {
  border-color: rgba(93, 143, 255, .72);
  box-shadow: inset 0 0 32px rgba(62, 123, 255, .13), 0 0 42px rgba(62, 123, 255, .18);
}

.ring-card-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5,11,24,.97) 4%, rgba(5,11,24,.62) 38%, transparent 72%);
}

.ring-card-copy {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 18px;
  text-align: right;
}

.ring-card-copy strong {
  display: block;
  margin-bottom: 5px;
  font-size: 18px;
}

.ring-card-copy span {
  display: block;
  min-height: 36px;
  color: #93b2ff;
  font-size: 11px;
  line-height: 1.7;
}

.ring-card-copy small {
  color: rgba(255,255,255,.58);
  font-size: 10px;
}

.coach-panel {
  position: absolute;
  top: 50%;
  left: max(24px, calc((100vw - 1320px) / 2));
  z-index: 6;
  width: min(276px, calc(100% - 48px));
  padding: 18px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  background: rgba(7, 16, 31, .74);
  box-shadow: 0 30px 90px rgba(0,0,0,.42);
  backdrop-filter: blur(18px);
  transform: translateY(-16%);
}

.coach-panel > * { will-change: transform, opacity, filter; }

.coach-panel-index {
  color: #85aaff;
  font-size: 11px;
  font-weight: 800;
}

.coach-panel h3 {
  margin: 5px 0 2px;
  font-size: 22px;
}

.coach-panel h3 a {
  display: inline-flex;
  align-items: center;
  color: #fff;
  transition: color 180ms ease;
}

.coach-panel h3 a::after {
  content: '↗';
  margin-right: 7px;
  color: #85aaff;
  font-size: 13px;
  transform: translate3d(0, 0, 0);
  transition: transform 180ms cubic-bezier(.23,1,.32,1);
}

@media (hover: hover) and (pointer: fine) {
  .coach-panel h3 a:hover { color: #a9c1ff; }
  .coach-panel h3 a:hover::after { transform: translate3d(-3px, -3px, 0); }
}

.coach-panel-role {
  min-height: 22px;
  margin: 0 0 12px;
  color: var(--home-silver);
  font-size: 13px;
}

.coach-panel-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 12px;
}

.coach-panel-stats strong,
.coach-panel-stats span {
  display: block;
  text-align: center;
}

.coach-panel-stats strong {
  color: #fff;
  font-size: 15px;
}

.coach-panel-stats span {
  margin-top: 4px;
  color: rgba(255,255,255,.45);
  font-size: 9px;
}

.coach-panel-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
}

.coach-panel-actions a {
  min-height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 6px;
  font-size: 11px;
  font-weight: 900;
}

.coach-panel-actions a:first-child {
  border-color: var(--home-blue);
  background: var(--home-blue);
}

.coach-dots {
  position: absolute;
  bottom: 5vh;
  left: 50%;
  z-index: 6;
  display: flex;
  gap: 8px;
  direction: ltr;
  transform: translateX(-50%);
}

.coach-dots button {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.26);
  cursor: pointer;
  transition: width 220ms ease, background 220ms ease;
}

.coach-dots button.is-active {
  width: 30px;
  background: var(--home-blue);
}

.coach-empty {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 8;
  width: min(460px, calc(100% - 48px));
  padding: 30px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 8px;
  background: rgba(7,16,31,.88);
  text-align: center;
  transform: translate(-50%, -50%);
}

.coach-empty h3 { margin: 0 0 10px; }
.coach-empty p { color: var(--home-silver); line-height: 1.9; }

.light-section {
  position: relative;
  overflow: hidden;
  padding: 112px 24px;
  background: var(--home-navy);
  color: #fff;
}

.light-section.soft {
  background: var(--home-navy-2);
}

.light-section::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: .34;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 16% 28%, rgba(255,255,255,.28) 0 1px, transparent 1.5px),
    radial-gradient(circle at 77% 14%, rgba(93,143,255,.5) 0 1px, transparent 1.5px),
    radial-gradient(circle at 62% 78%, rgba(255,255,255,.22) 0 1px, transparent 1.5px);
  background-size: 240px 220px, 310px 270px, 370px 330px;
  animation: home-stars 34s linear infinite;
}

.section-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  margin-inline: auto;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}

.section-heading h2 {
  margin: 0 0 16px;
  color: #fff;
  font-size: clamp(31px, 4vw, 50px);
  line-height: 1.25;
  font-weight: 950;
}

.section-heading p {
  margin: 0;
  color: var(--home-muted, #aebbd0);
  font-size: 15px;
  line-height: 2;
}

.workflow-line {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  position: relative;
}

.workflow-line::before {
  content: '';
  position: absolute;
  top: 25px;
  right: 10%;
  left: 10%;
  height: 1px;
  background: rgba(141, 176, 255, .28);
}

.workflow-item {
  position: relative;
  z-index: 1;
  padding: 0 18px;
  text-align: center;
}

.workflow-number {
  width: 50px;
  height: 50px;
  margin: 0 auto 24px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(141, 176, 255, .44);
  border-radius: 50%;
  background: var(--home-surface, #0e1a2f);
  color: #8db0ff;
  font-weight: 900;
}

.workflow-item:first-child .workflow-number {
  border-color: var(--home-blue);
  background: var(--home-blue);
  color: #fff;
}

.workflow-item h3 {
  margin: 0 0 8px;
  font-size: 15px;
}

.workflow-item p {
  margin: 0;
  color: #aebbd0;
  font-size: 12px;
  line-height: 1.9;
}

.portal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid rgba(141, 176, 255, .2);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(9, 20, 38, .72);
  backdrop-filter: blur(14px);
}

.portal {
  min-height: 330px;
  padding: 44px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
}

.portal + .portal {
  border-right: 1px solid rgba(141, 176, 255, .2);
}

.portal.dark {
  background: rgba(14, 31, 59, .84);
  color: #fff;
}

.portal-label {
  color: var(--home-blue-strong);
  font-size: 12px;
  font-weight: 900;
}

.portal.dark .portal-label {
  color: #8db0ff;
}

.portal h2 {
  margin: 12px 0 10px;
  font-size: clamp(25px, 3vw, 36px);
}

.portal p {
  max-width: 480px;
  margin: 0 0 24px;
  color: #aebbd0;
  font-size: 13px;
  line-height: 2;
}

.portal.dark p {
  color: var(--home-silver);
}

.portal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.portal-actions a {
  min-height: 44px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(141, 176, 255, .38);
  border-radius: 6px;
  color: #b8ccff;
  font-size: 12px;
  font-weight: 900;
}

.portal-actions a:first-child {
  border-color: var(--home-blue);
  background: var(--home-blue);
  color: #fff;
}

.tools-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(141, 176, 255, .2);
  border-bottom: 1px solid rgba(141, 176, 255, .2);
}

.tool-item {
  padding: 36px 32px;
}

.tool-item + .tool-item {
  border-right: 1px solid rgba(141, 176, 255, .2);
}

.tool-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 26px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: rgba(62, 123, 255, .14);
  color: #8db0ff;
}

.tool-item h3 {
  margin: 0 0 10px;
  font-size: 18px;
}

.tool-item p {
  min-height: 78px;
  margin: 0 0 18px;
  color: #aebbd0;
  font-size: 12px;
  line-height: 2;
}

.tool-item a {
  color: #8db0ff;
  font-size: 12px;
  font-weight: 900;
}

.tool-item .tool-cta {
  width: fit-content;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 13px;
  border: 1px solid rgba(141, 176, 255, .34);
  border-radius: 6px;
  text-decoration: none;
}

.tool-item .tool-cta .material-symbols-outlined { font-size: 17px; }

.faq-list {
  width: min(820px, 100%);
  margin-inline: auto;
  border-top: 1px solid rgba(141, 176, 255, .2);
}

.faq-item {
  border-bottom: 1px solid rgba(141, 176, 255, .2);
}

.faq-item button {
  width: 100%;
  min-height: 76px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 0;
  background: transparent;
  color: #fff;
  font: inherit;
  font-size: 15px;
  font-weight: 800;
  text-align: right;
  cursor: pointer;
}

.faq-item button span:last-child {
  color: var(--home-blue-strong);
  font-size: 22px;
}

.faq-item p {
  margin: 0;
  padding: 0 0 24px;
  color: #aebbd0;
  font-size: 13px;
  line-height: 2;
}

.home-footer {
  padding: 64px 24px 30px;
  background: var(--home-navy);
  color: #fff;
}

.home-footer-inner {
  width: min(1180px, 100%);
  margin-inline: auto;
}

.home-footer-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.home-footer h2 {
  margin: 0 0 10px;
  font-size: 28px;
}

.home-footer p {
  margin: 0;
  color: var(--home-silver);
  font-size: 12px;
}

.home-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  color: var(--home-silver);
  font-size: 12px;
}

.home-footer-copy {
  padding-top: 24px;
  color: rgba(255,255,255,.42);
  font-size: 11px;
}

@media (max-width: 1023px) {
  .home-header-inner {
    width: min(100% - 28px, 900px);
    grid-template-columns: 1fr auto;
  }

  .home-header nav {
    display: none;
  }

  .hero-copy-inner {
    width: min(620px, 82vw);
  }

  .coach-heading {
    top: 90px;
  }

  .coach-panel {
    top: auto;
    right: 24px;
    left: auto;
    bottom: 7vh;
    width: min(300px, calc(100% - 48px));
    transform: none;
  }

  .workflow-line {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .workflow-line::before {
    display: none;
  }

  .workflow-item {
    display: grid;
    grid-template-columns: 50px 1fr;
    column-gap: 18px;
    text-align: right;
  }

  .workflow-number {
    grid-row: span 2;
    margin: 0;
  }
}

@media (max-width: 760px) {
  .hero-poster {
    object-position: center 48%;
    transition: none;
  }

  .home-header-inner {
    min-height: 64px;
  }

  .home-brand span:last-child {
    display: none;
  }

  .home-header-actions > a,
  .home-header-actions > button {
    padding: 0 12px;
    font-size: 13px;
  }

  .hero-walkthrough {
    height: 480vh;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(5,11,24,.62), rgba(5,11,24,.14) 42%, rgba(5,11,24,.86)),
      linear-gradient(90deg, rgba(5,11,24,.15), rgba(5,11,24,.58));
  }

  .hero-copy {
    width: calc(100% - 32px);
    padding-top: 112px;
  }

  .hero-copy-inner {
    width: 100%;
  }

  .hero-copy h1 {
    max-width: 360px;
    font-size: clamp(38px, 12vw, 56px);
  }

  .hero-copy p {
    max-width: 360px;
    font-size: 15px;
  }

  .home-button {
    min-height: 46px;
    padding: 0 16px;
    font-size: 13px;
  }

  .coach-universe {
    min-height: 900px;
  }

  .coach-heading {
    top: 82px;
    right: 20px;
    width: calc(100% - 40px);
  }

  .coach-heading h2 {
    max-width: 330px;
    font-size: 32px;
  }

  .coach-ring {
    top: 47%;
    width: 100%;
    height: 100%;
  }

  .ring-coach-card {
    width: 150px;
    height: 218px;
    margin: -109px 0 0 -75px;
  }

  .ring-card-copy {
    padding: 12px;
  }

  .ring-card-copy strong {
    font-size: 14px;
  }

  .coach-panel {
    right: 20px;
    left: auto;
    bottom: 70px;
    width: calc(100% - 40px);
    padding: 18px;
  }

  .coach-panel h3 {
    font-size: 22px;
  }

  .coach-panel > p {
    font-size: 13px;
    line-height: 1.8;
  }

  .coach-dots {
    bottom: 28px;
    left: 50%;
  }

  .light-section {
    padding: 82px 20px;
  }

  .section-heading {
    margin-bottom: 38px;
    text-align: right;
  }

  .section-heading h2 {
    font-size: 31px;
  }

  .portal-grid,
  .tools-list {
    grid-template-columns: 1fr;
  }

  .portal {
    min-height: 300px;
    padding: 30px 24px;
  }

  .portal + .portal,
  .tool-item + .tool-item {
    border-top: 1px solid var(--home-line);
    border-right: 0;
  }

  .tools-list {
    border: 1px solid var(--home-line);
  }

  .tool-item p {
    min-height: 0;
  }

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

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

@media (min-width: 768px) {
  .coach-universe { min-height: max(900px, 100vh); }

  .coach-heading {
    top: clamp(112px, 13vh, 142px);
    right: auto;
    left: 50%;
    width: min(920px, calc(100% - 48px));
    text-align: center;
    transform: translateX(-50%);
  }

  .coach-heading h2 {
    margin: 0;
    font-size: clamp(50px, 5.3vw, 82px);
    line-height: 1.08;
    text-wrap: balance;
    animation: coach-title-reveal 850ms cubic-bezier(.16,1,.3,1) both;
  }

  .coach-heading h2 span::after {
    content: '';
    width: 10px;
    height: 10px;
    margin-inline: 13px 5px;
    display: inline-block;
    border-radius: 50%;
    background: var(--home-blue);
    box-shadow: 0 0 24px rgba(62, 123, 255, .9);
    vertical-align: middle;
  }

  .coach-heading-stroke {
    width: 0;
    height: 3px;
    margin: 23px auto 0;
    display: block;
    border-radius: 3px;
    background: var(--home-blue);
    box-shadow: 0 0 22px rgba(62, 123, 255, .8);
    animation: coach-stroke-grow 800ms 380ms cubic-bezier(.16,1,.3,1) forwards;
  }

  .coach-ring { top: 57%; left: 58%; }

  .ring-coach-card {
    width: clamp(310px, 21vw, 360px);
    height: clamp(445px, 31vw, 520px);
    margin-top: calc(clamp(445px, 31vw, 520px) / -2);
    margin-left: calc(clamp(310px, 21vw, 360px) / -2);
    border-radius: 8px;
  }

  .ring-card-copy { padding: 24px; }
  .ring-card-copy strong { font-size: 27px; }
  .ring-card-copy span { font-size: 13px; }
  .ring-card-copy small { font-size: 11px; }

  .coach-panel {
    top: 54%;
    right: auto;
    bottom: auto;
    left: clamp(40px, 6vw, 112px);
    width: min(332px, 25vw);
    padding: 23px;
    transform: translateY(-42%);
  }

  .coach-panel h3 { margin: 8px 0 4px; font-size: 27px; line-height: 1.25; }
  .coach-panel-role { min-height: 23px; margin-bottom: 17px; font-size: 13px; }
  .coach-panel-stats { margin-bottom: 18px; padding-block: 15px; border-block: 1px solid rgba(255,255,255,.13); }
  .coach-panel-stats div + div { border-right: 1px solid rgba(255,255,255,.13); }
  .coach-panel-stats strong { font-size: 18px; }
  .coach-panel-actions a { min-height: 44px; padding-inline: 10px; font-size: 11px; }

  .coach-controls {
    position: absolute;
    z-index: 14;
    bottom: 42px;
    left: 50%;
    display: flex;
    align-items: center;
    gap: 18px;
    direction: ltr;
    transform: translateX(-50%);
  }

  .coach-controls[hidden] { display: none; }
  .coach-controls > button {
    width: 44px;
    height: 44px;
    padding: 0;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 50%;
    background: rgba(8,17,32,.72);
    color: #fff;
    cursor: pointer;
  }

  .coach-dots {
    position: static;
    display: flex;
    align-items: center;
    gap: 7px;
    transform: none;
  }
}

@media (min-width: 768px) and (max-width: 1100px) {
  .coach-ring { left: 62%; }
  .coach-panel { left: 28px; width: 300px; }
}

@keyframes coach-title-reveal {
  from { opacity: 0; transform: translateY(30px); clip-path: inset(0 0 100%); }
  to { opacity: 1; transform: translateY(0); clip-path: inset(0); }
}

@keyframes coach-stroke-grow { to { width: 150px; } }

/* =========================================================================
   Home USP & Subscription Bento Showcase Section
   ========================================================================= */
.home-usp-section {
  padding: 100px 0;
  background: radial-gradient(circle at 50% 0%, rgba(56, 189, 248, 0.08), transparent 70%), #050b18;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.home-usp-inner {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

.home-usp-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 50px;
}

.home-usp-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  border-radius: 99px;
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.3);
  color: #38bdf8;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 16px;
}

.home-usp-title {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 950;
  letter-spacing: -0.5px;
  margin: 0 0 14px;
  color: #fff;
  line-height: 1.3;
}

.home-usp-sub {
  color: #94a3b8;
  font-size: 14.5px;
  line-height: 1.7;
  margin: 0;
}

.home-usp-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}

.home-usp-card {
  background: rgba(11, 20, 38, 0.85);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 24px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.home-usp-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.home-usp-card.col-7 { grid-column: span 7; }
.home-usp-card.col-5 { grid-column: span 5; }
.home-usp-card.col-12 { grid-column: span 12; }

@media (max-width: 900px) {
  .home-usp-card.col-7, .home-usp-card.col-5 { grid-column: span 12; }
}

.home-usp-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.home-usp-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 22px;
  flex-shrink: 0;
}

.icon-food-glow { background: rgba(16, 185, 129, 0.15); color: #34d399; border: 1px solid rgba(16, 185, 129, 0.3); }
.icon-gym-glow { background: rgba(56, 189, 248, 0.15); color: #38bdf8; border: 1px solid rgba(56, 189, 248, 0.3); }
.icon-coach-glow { background: rgba(251, 191, 36, 0.15); color: #fbbf24; border: 1px solid rgba(251, 191, 36, 0.3); }

.home-usp-card h3 {
  font-size: 18px;
  font-weight: 900;
  margin: 0;
  color: #fff;
}

.home-usp-card p {
  font-size: 13px;
  color: #94a3b8;
  line-height: 1.7;
  margin: 0 0 20px;
}

.home-usp-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.home-usp-badge {
  font-size: 11px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 5px 12px;
  border-radius: 8px;
  color: #cbd5e1;
}

.home-sub-banner-card {
  background: linear-gradient(135deg, rgba(6, 40, 30, 0.85) 0%, rgba(11, 20, 38, 0.95) 100%);
  border: 1.5px solid #10b981;
  box-shadow: 0 10px 40px rgba(16, 185, 129, 0.15);
}

.home-sub-banner-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.home-sub-cta-btn {
  background: linear-gradient(135deg, #10b981, #059669);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  padding: 14px 28px;
  border-radius: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.4);
  transition: all 0.25s ease;
  white-space: nowrap;
}

.home-sub-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(16, 185, 129, 0.6);
}
