@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@500;600;700;800;900&family=DM+Sans:wght@400;500;600;700&display=swap");
:root {
  --bg: #07090d;
  --ink: #f8f8f5;
  --muted: #a8afb9;
  --line: rgba(255,255,255,.13);
  --red: #ed3037;
  --gold: #d9b874;
  --panel: #10141b;
  --display: "Barlow Condensed",Arial,sans-serif;
  --body: "DM Sans",Arial,sans-serif
}
* {
  box-sizing: border-box
}
html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  background: radial-gradient(circle at 83% 8%,rgba(237,48,55,.14),transparent 24%),var(--bg);
  color: var(--ink);
  font-family: var(--body);
  overflow-x: hidden
}
a {
  color: inherit;
  text-decoration: none
}
button {
  font: inherit
}
::selection {
  background: var(--red);
  color: #fff
}
.shell {
  width: min(100% - 48px,1420px);
  margin: auto
}
.site-header {
	position: sticky;
    top: 0;
    z-index: 30;
    width: 100%;
    border-bottom: 1px solid var(--line);
    background: rgba(7, 9, 13, .92);
    backdrop-filter: blur(18px);
	inset: 0 0 auto;
	backdrop-filter: blur(18px)
}
.nav {
  height: 76px;
  display: flex;
  align-items: center;
  gap: 32px
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-size: 26px;
  font-weight: 900;
  letter-spacing: .14em
}
.brand:hover {
  color: var(--red);
}
.nav-links{
  display: flex;
  gap: 30px;
  margin-left: auto;
  color: #c8cdd4;
  font-size: 16px;
  font-weight: 600
}
.nav-links a:hover {
  color: #fff
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: var(--red);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: .25s ease
}
.button:hover {
  transform: translateY(-3px);
  background: #ff3d45;
  box-shadow: 0 15px 35px rgba(237,48,55,.3)
}
.button-outline {
  border-color: var(--line);
  background: rgba(255,255,255,.03)
}
.button-outline:hover {
  background: rgba(255,255,255,.1);
  box-shadow: none
}
.menu {
  display: none
}
.hero {
  position: relative;
  min-height: 820px;
  display: flex;
  align-items: flex-end;
  padding: 160px 0 95px;
  isolation: isolate;
  overflow: hidden
}
.hero-image,.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2
}
.hero-image {
  background-image: var(--hero-desktop-image);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  filter: saturate(.78) contrast(1.05);
}
.hero-shade {
  z-index: -1;
  background: linear-gradient(90deg,#07090d 0%,rgba(7,9,13,.82) 37%,rgba(7,9,13,.16) 72%),linear-gradient(0deg,#07090d,transparent 55%)
}
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .15;
  background-image: linear-gradient(rgba(255,255,255,.15) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.15) 1px,transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg,#000,transparent 70%)
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #c6cbd2;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase
}
.eyebrow:before {
  width: 26px;
  height: 2px;
  background: var(--red);
  box-shadow: 0 0 15px var(--red)
}
h1,h2,h3,p {
  margin-top: 0
}
.hero h1,.display {
  margin: 20px 0;
  font-family: var(--display);
  font-weight: 900;
  line-height: .82;
  letter-spacing: -.045em;
  text-transform: uppercase
}
.hero h1 {
  max-width: 780px;
  font-size: clamp(60px,8vw,120px);
}
em {
  color: var(--red);
  font-style: normal
}
.hero-copy>p {
  width: 780px;
  max-width: 100%;
  color: #d0d5dc;
  font-size: 18px;
  line-height: 1.7
}
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0
}
.chips span {
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(0,0,0,.22);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .08em
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px
}
.ticker {
  overflow: hidden;
  border-block: 1px solid rgba(255,255,255,.2);
  background: linear-gradient(90deg,#941017,#ed3037 50%,#941017)
}
.ticker-track {
  width: max-content;
  display: flex;
  animation: ticker 30s linear infinite
}
.ticker-group {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 17px 32px 17px 0;
  font: 800 19px var(--display);
  letter-spacing: .1em
}
.ticker-group i {
  color: rgba(255,255,255,.56);
  font-style: normal;
  font-size: 11px
}
@keyframes ticker {
  to {
    transform: translateX(-50%)
  }
}
.section {
  padding: 100px 0
}
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px
}
.display {
  font-size: clamp(58px,7vw,112px)
}
.section-heading-copy {
  display: flex;
  flex-direction: column;
  max-width: 440px;
  gap: 16px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.section-heading-copy p {
  margin: 0;
}
.section-heading>p {
  max-width: 440px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7
}
.standard {
  padding-top: 105px
}
.standard-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 9vw;
  align-items: end
}
.standard-copy {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.standard-copy p {
  margin: 0;
}
.standard-copy b {
  display: block;
  color: #fff;
  font-size: 24px;
  line-height: 1.35;
  margin: 0;
}
.stats {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  margin-top: 70px;
  border-block: 1px solid var(--line)
}
.stat {
  padding: 25px;
  border-right: 1px solid var(--line)
}
.stat:last-child {
  border: 0
}
.stat strong {
  display: block;
  font: 900 48px var(--display)
}
.stat span {
  color: var(--muted);
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: .1em
}
.goal-section {
  padding-top: 70px
}
.goal-heading {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 8vw;
  align-items: end
}
.goal-heading p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7
}
.filters {
  display: flex;
  gap: 7px;
  margin-top: 26px;
  padding: 5px;
  width: max-content;
  border: 1px solid var(--line);
  border-radius: 99px
}
.filters button {
  padding: 10px 15px;
  border: 0;
  border-radius: 99px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase
}
.filters button.active {
  background: linear-gradient(135deg,#ef3740,#990911);
  color: #fff
}
.goals {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px;
  margin-top: 20px
}
.goal {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--panel);
  transition: .3s ease
}
.goal:hover {
  transform: translateY(-8px);
  border-color: rgba(237,48,55,.5);
  box-shadow: 0 28px 70px rgba(0,0,0,.35)
}
.goal-visual {
  height: 145px;
  background-image: linear-gradient(0deg,var(--panel),transparent 65%),url("goals.png");
  background-size: 245% auto;
  background-position: var(--pos) 52%;
  filter: saturate(.74)
}
.goal-content {
  padding: 3px 24px 24px
}
.goal-top {
  display: flex;
  justify-content: space-between;
  color: var(--red);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .15em
}
.goal.women .goal-top {
  color: var(--gold)
}
.goal h3 {
  margin: 18px 0 10px;
  font: 800 30px var(--display);
  letter-spacing: -.03em
}
.goal p {
  min-height: 67px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6
}
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px
}
.tags span {
  padding: 6px 8px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: #c8cdd4;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase
}
.inside {
  background: linear-gradient(145deg,#10151d,#080a0e)
}
.features {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 14px;
  margin-top: 55px
}
.feature {
  min-height: 290px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: linear-gradient(145deg,rgba(255,255,255,.05),rgba(255,255,255,.01));
  transition: .3s ease
}
.feature:hover {
  transform: translateY(-7px);
  border-color: rgba(237,48,55,.45)
}
.feature i {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin: 38px 0 18px;
  border-radius: 12px;
  background: rgba(237,48,55,.14);
  color: var(--red);
  font: 800 25px var(--display);
  font-style: normal
}
.feature small {
  color: var(--red);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .13em
}
.feature h3 {
  margin: 10px 0;
  font: 800 28px var(--display)
}
.feature p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65
}
.coach-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
  margin-top: 58px
}
.coach {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: linear-gradient(145deg,#151a22,#090b10);
  transition: .25s ease
}
.coach:hover {
  transform: translateY(-9px);
  border-color: var(--red);
}
.coach-photo {
  height: 345px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  filter: grayscale(.2) contrast(1.05);
}
.coach-copy {
  padding: 20px 24px
}
.coach-copy small {
  color: var(--red);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .13em
}
.coach-copy h3 {
  margin: 8px 0;
  font: 900 40px var(--display);
  letter-spacing: -.03em
}
.coach-copy p {
  color: var(--muted);
  font-size: 16px;
}
.coach-link {
  display: inline-block;
  margin-top: 18px;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: color .25s ease, transform .25s ease;
}

.coach:hover .coach-link {
  color: var(--red);
  transform: translateX(5px);
}
.membership {
  padding: 110px 0
}
.member-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #10141b;
  box-shadow: 0 45px 120px rgba(0,0,0,.3)
}
.member-copy {
  padding: 40px;
  background: radial-gradient(circle at 78% 18%,rgba(237,48,55,.21),transparent 31%),#171c25
}
.member-copy h2 {
  margin: 18px 0 24px;
  font: 900 clamp(59px,6vw,92px)/.83 var(--display);
  letter-spacing: -.05em
}
.member-copy p {
  max-width: 520px;
  color: #c2c8d0;
  line-height: 1.7
}
.price {
  display: flex;
  align-items: end;
  gap: 10px;
  margin-top: 28px;
}
.price strong {
  font: 900 clamp(42px, 3.5vw, 54px)/.8 var(--display);
}
.price span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: .1em;
}
.member-list {
  padding: 58px
}
.member-list ul {
  margin: 0 0 35px;
  padding: 0;
  list-style: none
}
.member-list li {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  column-gap: 2px;
  align-items: start;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  color: #c6cbd2;
  font-size: 16px;
}
.member-list li:before {
  content: "✓";
  margin-right: 0;
  color: var(--red);
  font-weight: 800
}
.full {
  width: 100%
}
.faq {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 8vw
}
.faq-list details {
  border-top: 1px solid var(--line)
}
.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 25px 0;
  cursor: pointer;
  font: 700 20px var(--display);
  letter-spacing: .02em
}
.faq-list summary::marker {
  display: none
}
.faq-list p {
  padding: 0 25px 23px 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7
}
.final {
  position: relative;
  min-height: 500px;
  display: grid;
  place-items: center;
  overflow: hidden;
  text-align: center
}
.final:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg,#07090d,transparent 50%,#07090d),url("hero.png") center/cover;
  filter: brightness(.5)
}
.final>* {
  position: relative
}
.final h2 {
  margin: 0 0 28px;
  font: 900 clamp(66px, 9vw, 130px)/.8 var(--display);
  letter-spacing: 0;
}
.final p {
  max-width: 720px;
  margin: 0 auto 30px;
  color: #d1d5da;
  line-height: 1.6;
}
.final > div {
  position: relative;
  padding: 70px 24px;
}
.footer {
  border-top: 1px solid var(--line);
  padding: 48px 0 28px
}
.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 30px
}
.footer p,.footer a {
  color: var(--muted);
  font-size: 12px
}
.footer-links {
  width: 100%;
  max-width: 650px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
}

.footer-links > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.footer-links b {
  font-size: 10px;
  letter-spacing: .12em
}
.footer-bottom {
  display: flex;
  justify-content: center;
  text-align: center;
  gap: 20px;
  margin-top: 42px;
  padding-top: 20px;
  border-top: 1px solid var(--line)
}
.footer-bottom p {
  width: 100%;
  margin: 0;
  text-align: center;
}
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: .65s cubic-bezier(.2,.8,.2,1)
}
.reveal.show {
  opacity: 1;
  transform: none
}
@media(max-width:1280px) {
  .nav-links {
    display: none
  }
  .menu {
    display: block;
    margin-left: auto;
    border: 0;
    background: none;
    color: white;
    font-size: 24px
  }
  .nav.open .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 22px 24px;
    display: flex;
    flex-direction: column;
    background: #0b0e13;
    border-bottom: 1px solid var(--line)
  }
}
@media(max-width:900px) {
  .live-card {
    display: none
  }
  .hero {
    min-height: 720px
  }
  .hero h1 {
    font-size: clamp(48px,13vw,72px);
  }
  .standard-grid,.goal-heading,.member-card,.faq {
    grid-template-columns: 1fr;
    gap: 35px
  }
  .member-card {
	  grid-template-columns: 1fr;
	  gap: 0;
	}
	.member-copy {
	  padding: 42px 28px;
	}

	.member-list {
  padding: 18px 28px 28px;
}
  .stats,.features {
    grid-template-columns: repeat(2,1fr)
  }
  .goals,.coach-grid {
    grid-template-columns: repeat(2,1fr)
  }
  .section-heading {
    display: block
  }
  .section-heading>p {
    margin-top: 25px
  }
  .footer-top,.footer-bottom {
    display: block
  }
  .footer-links {
    margin-top: 30px
  }
  .footer-bottom p {
    margin-top: 15px
  }
}
@media(max-width:560px) {
  .shell {
    width: calc(100% - 32px)
  }
  .nav {
    height: 68px
  }
  .nav-cta {
    display: none
  }
  .hero {
    min-height: 690px;
    padding: 130px 0 60px
  }
  .hero-image {
    background-image: var(--hero-mobile-image);
    background-position: center top;
  }
  .hero-shade {
    background: linear-gradient(0deg,#07090d,rgba(7,9,13,.38) 64%),linear-gradient(90deg,rgba(7,9,13,.82),transparent)
  }
  .hero-copy>p {
    font-size: 16px
  }
  .hero-actions {
    align-items: stretch;
    flex-direction: column
  }
  .hero-actions .button {
    width: 100%
  }
  .ticker-group {
    gap: 24px;
    font-size: 16px
  }
  .section {
    padding: 84px 0
  }
  .display {
    font-size: clamp(52px,15vw,78px)
  }
  .stats,.features,.goals,.coach-grid {
    grid-template-columns: 1fr
  }
  .stat {
    border-right: 0;
    border-bottom: 1px solid var(--line)
  }
  .campaign {
    min-height: 610px;
    margin-top: 38px
  }
  .campaign-copy {
    top: auto;
    bottom: 28px;
    width: calc(100% - 34px);
    padding: 24px
  }
  .campaign-label {
    display: none
  }
  .goal-visual {
    height: 165px;
    background-size: 210% auto
  }
  .coach {
    min-height: 470px
  }
  .faq-list summary {
    font-size: 18px
  }
  .footer-links {
    gap: 25px
  }
}
.coach-hero {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: end;
  padding: 130px 0 80px;
  isolation: isolate
}
.coach-hero:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg,#07090d 0%,rgba(7,9,13,.84) 43%,rgba(7,9,13,.12)),var(--coach-image) var(--coach-pos) center/cover;
  filter: contrast(1.05)
}
.coach-hero .coach-copy {
  max-width: 680px;
  padding: 0
}
.back {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em
}
.coach-hero h1 {
  margin: 22px 0 8px;
  font: 900 clamp(86px,12vw,170px)/.78 var(--display);
  letter-spacing: -.05em
}
.coach-role {
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .15em
}
.coach-intro {
  max-width: 560px;
  color: #d0d5dc;
  font-size: 19px;
  line-height: 1.6
}
.coach-page-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7vw
}
.coach-page-content p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75
}
.systems {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 16px;
  margin-top: 45px
}
.system {
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--panel);
  padding: 24px;
}

.system-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.system-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.system-content {
  padding: 28px;
}
.system small {
  color: var(--red);
  font-weight: 700
}
.system h3 {
  margin: 8px 0;
  font: 900 40px var(--display);
  letter-spacing: 0;
}
.system p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}
.legal-hero {
  padding: 180px 0 70px;
  border-bottom: 1px solid var(--line)
}
.legal-hero h1 {
  margin: 17px 0;
  font: 900 clamp(76px,10vw,140px)/.8 var(--display);
  letter-spacing: -.05em
}
.legal-hero p {
  max-width: 650px;
  color: var(--muted);
  line-height: 1.7
}
.legal {
  max-width: 850px
}
.legal section {
  padding: 36px 0;
  border-bottom: 1px solid var(--line)
}
.legal h2 {
  font: 800 35px var(--display)
}
.legal p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8
}
@media(max-width:900px) {
  .coach-page-content,.systems {
    grid-template-columns: 1fr
  }
  .coach-hero {
    min-height: 610px
  }
  .coach-hero: before {
    background: linear-gradient(0deg,#07090d,rgba(7,9,13,.26) 75%),var(--coach-image) var(--coach-pos) center/cover
  }
}
/* Title tracking fix: no negative letter spacing anywhere on headings. */
.hero h1, .display, .campaign-copy h3, .goal h3, .coach-copy h3, .member-copy h2, .final h2, .coach-hero h1, .legal-hero h1 {
  letter-spacing: 0 !important;
}
.hero h1, .display, .campaign-copy h3, .member-copy h2, .final h2, .coach-hero h1, .legal-hero h1 {
  line-height: .91;
}
.comparison-static {
  padding: 120px 0;
  background: radial-gradient(circle at 50% 45%,rgba(237,48,55,.12),transparent 34%),linear-gradient(145deg,#121821,#090c11)
}
.comparison-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 40px
}
.comparison-heading>p {
  max-width: 390px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7
}
.comparison-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 55px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px
}
.comparison-grid article {
  min-height: 440px;
  padding: 50px
}
.comparison-grid article>span {
  color: #aab0b9;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .14em
}
.comparison-grid h3 {
  margin: 22px 0 32px;
  font: 900 clamp(45px,4.6vw,72px)/.86 var(--display);
  letter-spacing: 0
}
.comparison-grid ul {
  margin: 0;
  padding: 0;
  list-style: none
}
.comparison-grid li {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  align-items: start;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  color: #b9c0c8;
  font-size: 16px;
}
.comparison-grid li:before {
  display: block;
  width: 22px;
  color: #8f97a1;
  content: "✓";
  font-weight: 800
}
.comparison-old {
  background: rgba(255,255,255,.025)
}
.comparison-borz {
  background: radial-gradient(circle at 75% 15%,rgba(237,48,55,.21),transparent 33%),#151a22
}
.comparison-borz>span {
  color: var(--red)!important
}
.comparison-borz li:before {
  content: "✓";
  color: var(--red)
}
.comparison-vs {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  background: linear-gradient(145deg,#f33c44,#92080e);
  box-shadow: 0 15px 45px rgba(0,0,0,.45);
  font: 900 25px var(--display);
  transform: translate(-50%,-50%)
}
@media(max-width:900px) {
  .comparison-heading {
    display: block
  }
  .comparison-heading>p {
    margin-top: 25px
  }
  .comparison-grid {
    grid-template-columns: 1fr
  }
  .comparison-grid article {
    min-height: auto;
    padding: 38px 28px
  }
  .comparison-vs {
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%)
  }
  .comparison-grid h3 {
    font-size: 55px
  }
}
/* Mobile comparison keeps the same framed two-column composition as desktop. */
@media (max-width: 760px) {
  .comparison-static {
    padding: 84px 0;
    background: radial-gradient(circle at 50% 52%, rgba(237,48,55,.17), transparent 40%), linear-gradient(145deg, #121821, #090c11);
  }
  .comparison-static .shell {
    width: calc(100% - 24px);
  }
  .comparison-heading {
    display: block;
    margin-bottom: 34px;
  }
  .comparison-heading .display {
    max-width: 100%;
    font-size: clamp(49px, 14.8vw, 68px);
    line-height: .92;
  }
  .comparison-heading > p {
    margin: 22px 0 0;
    font-size: 16px;
    line-height: 1.65;
  }
  .comparison-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    margin-top: 0;
    overflow: visible;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 15px;
    background: #0d1117;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.07), 0 28px 70px rgba(0,0,0,.38);
  }
  .comparison-grid article {
    min-width: 0;
    min-height: 430px;
    padding: 28px 14px 24px;
  }
  .comparison-grid article:first-of-type {
    border-radius: 14px 0 0 14px;
  }
  .comparison-grid article:last-of-type {
    border-left: 1px solid rgba(255,255,255,.16);
    border-radius: 0 14px 14px 0;
  }
  .comparison-old {
    background: linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.012)), #10141a;
  }
  .comparison-borz {
    background: radial-gradient(circle at 70% 10%, rgba(237,48,55,.25), transparent 35%), linear-gradient(145deg, rgba(237,48,55,.09), rgba(255,255,255,.025)), #171a21;
  }
  .comparison-grid article > span {
    display: block;
    min-height: 25px;
    font-size: 10px;
    line-height: 1.35;
    letter-spacing: .12em;
  }
  .comparison-grid h3 {
    min-height: 72px;
    margin: 14px 0 22px;
    font-size: clamp(27px, 8.3vw, 36px);
    line-height: .9;
    letter-spacing: 0;
  }
  .comparison-grid li {
    min-height: 50px;
    padding: 10px 0;
    font-size: 10px;
    line-height: 1.42;
  }
	.comparison-grid li:before {
	  width: 16px;
	}

	.comparison-grid li {
	  grid-template-columns: 16px minmax(0, 1fr);
	  column-gap: 4px;
	}
  .comparison-vs {
    top: 50%;
    left: 50%;
    width: 52px;
    height: 52px;
    border: 3px solid #0d1117;
    font-size: 18px;
    box-shadow: 0 0 0 1px rgba(255,255,255,.18), 0 14px 34px rgba(0,0,0,.55);
    transform: translate(-50%, -50%);
  }
  .price {
	  gap: 8px;
	  margin-top: 24px;
	}

	.price strong {
	  font-size: 42px;
	  line-height: .75;
	}

	.price span {
	  font-size: 11px;
	  line-height: 1.2;
	}
}
@media (max-width: 380px) {
  .comparison-grid article {
    min-height: 450px;
    padding-inline: 11px;
  }
  .comparison-grid h3 {
    font-size: 26px;
  }
  .comparison-grid li {
    font-size: 10px;
  }
}
/* Conversion emphasis for the BORZ comparison panel. */
.comparison-grid article {
  position: relative;
  display: flex;
  flex-direction: column;
}
.comparison-grid article ul {
  flex: 1;
}
.comparison-borz {
  z-index: 1;
  border: 1px solid rgba(255,66,74,.72);
  background: radial-gradient(circle at 70% 8%, rgba(255,55,64,.34), transparent 36%), linear-gradient(145deg, rgba(237,48,55,.16), rgba(255,255,255,.035)), #191b22;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.06), inset 0 0 70px rgba(237,48,55,.09), 0 0 55px rgba(237,48,55,.16);
}
.comparison-borz::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(120deg, transparent 25%, rgba(255,255,255,.06), transparent 70%);
  pointer-events: none;
}
.comparison-recommended {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 7px 10px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 999px;
  background: linear-gradient(135deg, #fb4048, #a3070e);
  box-shadow: 0 8px 24px rgba(237,48,55,.35);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .14em;
}
.comparison-borz > span {
  color: #ff4a51 !important;
  text-shadow: 0 0 18px rgba(237,48,55,.42);
}
.comparison-borz h3 {
  color: #fff;
  text-shadow: 0 8px 28px rgba(0,0,0,.35);
}
.comparison-action {
  width: 100%;
  min-height: 50px;
  margin-top: 30px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 7px;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: .1em;
  text-align: center;
  transition: transform .25s ease, border-color .25s ease, background .25s ease, box-shadow .25s ease;
}
.comparison-action:hover {
  transform: translateY(-3px);
}
.comparison-action-old {
  background: rgba(255,255,255,.045);
  color: #aeb4bd;
}
.comparison-action-old:hover {
  border-color: rgba(255,255,255,.38);
  background: rgba(255,255,255,.09);
  color: #fff;
}
.comparison-action-borz {
  border-color: rgba(255,255,255,.24);
  background: linear-gradient(135deg, #f43b43, #a1070e);
  box-shadow: 0 14px 35px rgba(237,48,55,.28);
  color: #fff;
}
.comparison-action-borz:hover {
  background: linear-gradient(135deg, #ff4b52, #c20a12);
  box-shadow: 0 18px 45px rgba(237,48,55,.4);
}
@media (max-width: 760px) {
  .comparison-recommended {
    top: 10px;
    right: 8px;
    padding: 4px;
    font-size: 7px;
    letter-spacing: .08em;
  }
  .comparison-borz {
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.06), inset 0 0 45px rgba(237,48,55,.1), 0 0 34px rgba(237,48,55,.2);
  }
  .comparison-grid article {
    height: auto;
    min-height: auto;
    padding: 28px 12px 20px;
  }
  .comparison-grid article ul {
    flex: none;
  }
  .comparison-action {
    display: flex !important;
    width: 100%;
    min-height: 44px;
    margin-top: 18px;
	padding-inline: 5px;
    padding: 8px 4px;
    visibility: visible !important;
    opacity: 1 !important;
    font-size: 10px;
    line-height: 1.2;
	letter-spacing: .05em;
  }
}
.footer-top {
  display: flex;
  justify-content: center;
  text-align: center;
}

.footer-top > div:first-child {
  display: none;
}

.footer-links {
  width: 100%;
  display: flex;
  justify-content: center;
}

.footer-links > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.footer-links b {
  margin-bottom: 5px;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 2px;
}

.footer-links a {
  font-size: 16px;
  font-weight: 700;
  color: var(--muted);
}
.footer-links a:hover {
    color: #fff;
  }
@media (max-width: 600px) {
  .footer {
    text-align: center;
	padding: 28px 0 20px;
  }

  .footer-top {
    justify-content: center;
  }
  
  .footer-links {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
	margin-top: 0;
  }

  .footer-links b {
    font-size: 16px;
  }

  .footer-links a {
    font-size: 16px;
  }

  .footer-bottom {
    text-align: center;
	margin-top: 28px;
    padding-top: 16px;
  }
  
  .footer-bottom p {
    margin-top: 0;
  }
}
@media (max-width: 760px) {
	html {
        scroll-padding-top: 68px;
    }
  .section {
    padding: 56px 0;
  }

  .membership {
    padding: 56px 0;
  }

  .comparison-static {
    padding: 56px 0;
  }
}
.coach-specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.coach-specialties span {
    padding: 6px 10px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.coach:hover .coach-specialties span {
    border-color: var(--red);
    color: var(--red);
}
.faq-list details p a {
    color: #fff;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
    transition: color .2s ease;
}

.faq-list details p a:hover {
    color: var(--red);
}
.faq-list summary span {
    transition: transform .2s ease;
}

.faq-list details[open] summary span {
    font-size: 0;
}

.faq-list details[open] summary span::after {
    content: "−";
    font-size: 20px;
}
.coach-social-section {
    margin-top: 28px;
}
.standard-copy a:not(.button) {
    color: #fff;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
    transition: color .2s ease;
}

.standard-copy a:not(.button):hover {
    color: var(--red);
}
.coach-social-section > strong {
    display: block;
    margin-bottom: 14px;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .1em;
}

.coach-socials {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    width: 100%;
    margin: 0;
    padding: 0;
}

.coach-social {
    position: relative;
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 7px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(255, 255, 255, .025);
    transition:
        border-color .25s ease,
        background .25s ease,
        box-shadow .25s ease;
}

.coach-social b {
    overflow: hidden;
    color: #fff;
    font-size: 16px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.coach-social i {
    position: absolute;
    top: 16px;
    right: 16px;
    color: var(--muted);
    font-style: normal;
}

.coach-social span {
    color: var(--red);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .06em;
}

.coach-social:hover {
    border-color: var(--red);
    background: rgba(255, 255, 255, .05);
    box-shadow: 0 10px 28px rgba(0, 0, 0, .18);
}

.coach-social:hover i {
    color: var(--red);
}

@media (max-width: 560px) {
    .coach-socials {
        grid-template-columns: 1fr;
    }
}
.tax-note {
    max-width: 310px;
    margin: 14px 0 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.5;
}