/* =====================================
   RESET
===================================== */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

:root {
  --bg: #090a0c;
  --bg-soft: #0e1013;
  --card: #121418;
  --card-light: #181b20;

  --text: #f7f7f7;
  --muted: #a6abb4;

  --accent: #ff4d24;
  --accent-light: #ff7048;
  --success: #8eea72;

  --border: rgba(255, 255, 255, 0.1);

  --anton: "Anton", sans-serif;
  --inter: "Inter", sans-serif;
}


body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--inter);
  overflow-x: hidden;
  line-height: 1.6;
}


img {
  display: block;

  width: 100%;
  max-width: 100%;

  height: auto;

  object-fit: contain;
}


a {
  color: inherit;
  text-decoration: none;
}


button {
  font-family: inherit;
}


.container {
  width: min(1180px, calc(100% - 40px));
  margin: auto;
}


.section {
  position: relative;
  padding: 120px 0;
}


.eyebrow {
  display: inline-block;

  margin-bottom: 18px;

  color: var(--accent-light);

  font-size: 12px;
  font-weight: 800;

  letter-spacing: 3px;
}


/* =====================================
   SCROLL BAR
===================================== */

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;

  width: 100%;
  height: 3px;

  z-index: 9999;

  background: transparent;
}


.scroll-progress div {
  width: 0;
  height: 100%;

  background: linear-gradient(
    90deg,
    var(--accent),
    var(--accent-light)
  );

  box-shadow: 0 0 15px var(--accent);
}


/* =====================================
   NAVBAR
===================================== */

.navbar {
  position: fixed;
  top: 0;
  left: 0;

  width: 100%;

  z-index: 1000;

  transition: 0.35s;
}


.navbar.scrolled {
  background: rgba(9, 10, 12, 0.82);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  border-bottom: 1px solid var(--border);
}


.nav-inner {
  min-height: 78px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 30px;
}


.logo {
  font-family: var(--anton);

  font-size: 22px;
  letter-spacing: 0.5px;
}


.logo span {
  color: var(--accent);
}


.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}


.nav-menu a {
  color: #c6c8cc;

  font-size: 13px;
  font-weight: 600;

  transition: 0.2s;
}


.nav-menu a:hover {
  color: white;
}


.nav-cta {
  padding: 11px 18px;

  border: 1px solid rgba(255, 77, 36, 0.6);
  border-radius: 8px;

  color: var(--accent-light);

  font-size: 12px;
  font-weight: 800;

  transition: 0.25s;
}


.nav-cta:hover {
  background: var(--accent);
  color: white;

  box-shadow: 0 8px 35px rgba(255, 77, 36, 0.25);
}


/* =====================================
   HERO
===================================== */

.hero {
  position: relative;

  min-height: 100vh;

  display: flex;
  align-items: center;

  overflow: hidden;

  padding: 135px 0 90px;

  background:
    radial-gradient(
      circle at 75% 35%,
      rgba(255, 77, 36, 0.12),
      transparent 32%
    ),
    var(--bg);
}


.hero-grid-bg {
  position: absolute;
  inset: 0;

  opacity: 0.15;

  background-image:
    linear-gradient(
      rgba(255,255,255,0.07) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255,255,255,0.07) 1px,
      transparent 1px
    );

  background-size: 60px 60px;

  mask-image:
    linear-gradient(
      to bottom,
      black,
      transparent 85%
    );
}


.hero-glow {
  position: absolute;

  border-radius: 50%;

  pointer-events: none;

  filter: blur(100px);
}


.hero-glow-one {
  width: 420px;
  height: 420px;

  right: -120px;
  top: 20%;

  background: rgba(255, 77, 36, 0.14);
}


.hero-glow-two {
  width: 300px;
  height: 300px;

  left: -200px;
  bottom: 0;

  background: rgba(255, 112, 72, 0.08);
}


.hero-grid {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: 1.04fr 0.96fr;

  align-items: center;

  gap: 75px;
}


.mini-badge {
  display: inline-flex;
  align-items: center;

  padding: 8px 13px;

  border-radius: 50px;

  background: rgba(255, 77, 36, 0.08);

  border: 1px solid rgba(255, 77, 36, 0.3);

  color: var(--accent-light);

  font-size: 11px;
  font-weight: 800;

  letter-spacing: 1.4px;
}


.hero h1 {
  margin-top: 24px;

  font-family: var(--anton);

  font-size: clamp(58px, 7vw, 102px);

  line-height: 0.94;

  letter-spacing: -1px;
}


.hero h1 span {
  display: block;

  color: transparent;

  -webkit-text-stroke: 1px rgba(255,255,255,0.55);
}


.hero-description {
  max-width: 650px;

  margin-top: 28px;

  color: #c1c4ca;

  font-size: 18px;

  line-height: 1.75;
}


.hero-highlight {
  margin-top: 20px;

  padding-left: 15px;

  border-left: 2px solid var(--accent);

  color: white;

  font-size: 14px;
  font-weight: 700;
}


.hero-price {
  margin-top: 28px;

  display: flex;
  align-items: baseline;

  gap: 10px;
}


.hero-price span,
.hero-price small {
  color: var(--muted);

  font-size: 13px;
}


.hero-price strong {
  color: var(--accent-light);

  font-family: var(--anton);

  font-size: 37px;

  letter-spacing: 1px;
}


.hero-buttons {
  margin-top: 25px;

  display: flex;

  gap: 12px;

  flex-wrap: wrap;
}


.btn {
  min-height: 58px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 18px;

  position: relative;

  overflow: hidden;

  padding: 0 26px;

  border-radius: 10px;

  font-size: 13px;
  font-weight: 800;

  letter-spacing: 0.4px;

  transition: 0.25s;
}


.btn-primary {
  background:
    linear-gradient(
      135deg,
      var(--accent),
      var(--accent-light)
    );

  color: white;

  box-shadow:
    0 12px 35px rgba(255,77,36,0.22);
}


.btn-primary::before {
  content: "";

  position: absolute;

  top: -50%;
  left: -120%;

  width: 50px;
  height: 200%;

  transform: rotate(25deg);

  background: rgba(255,255,255,0.22);

  animation: buttonShine 5s infinite;
}


@keyframes buttonShine {
  0%,
  75% {
    left: -120%;
  }

  100% {
    left: 150%;
  }
}


.btn-primary:hover {
  transform: translateY(-3px);

  box-shadow:
    0 16px 45px rgba(255,77,36,0.32);
}


.btn-primary span {
  font-size: 20px;

  transition: 0.2s;
}


.btn-primary:hover span {
  transform: translateX(4px);
}


.btn-secondary {
  color: white;

  border: 1px solid var(--border);

  background: rgba(255,255,255,0.025);
}


.btn-secondary:hover {
  border-color: rgba(255,255,255,0.28);

  background: rgba(255,255,255,0.05);
}


.hero-points {
  margin-top: 25px;

  display: flex;
  flex-wrap: wrap;

  gap: 18px;

  color: #b7bbc2;

  font-size: 12px;
}


.hero-points span::first-letter {
  color: var(--success);
}


/* HERO VISUAL */

.hero-visual {
  position: relative;

  min-height: 610px;

  display: flex;
  align-items: center;
  justify-content: center;
}


.image-frame {
  position: relative;

  z-index: 2;

  width: min(100%, 520px);

  margin: 0 auto;

  border-radius: 24px;

  overflow: hidden;

  border: 1px solid rgba(255,255,255,0.16);

  background: #101216;

  box-shadow:
    0 30px 80px rgba(0,0,0,0.5),
    0 0 50px rgba(255,77,36,0.10);

  animation: heroFloat 6s ease-in-out infinite;
}


.image-frame img {
  display: block;

  width: 100%;

  height: auto;

  max-width: 100%;

  object-fit: contain;

  object-position: center;
}


@keyframes heroFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-9px);
  }
}


.big-number {
  position: absolute;

  right: -10px;
  top: 20px;

  color: rgba(255,255,255,0.03);

  font-family: var(--anton);

  font-size: 190px;

  line-height: 0.7;

  z-index: 0;
}


.big-number span {
  display: block;

  font-size: 50px;

  text-align: right;
}


.floating-card {
  position: absolute;

  z-index: 10;

  min-width: 140px;

  padding: 13px 16px;

  border: 1px solid rgba(255,255,255,0.14);

  border-radius: 12px;

  background: rgba(17,19,23,0.72);

  backdrop-filter: blur(15px);

  box-shadow:
    0 15px 35px rgba(0,0,0,0.35);

  animation: cardFloat 5s ease-in-out infinite;
}


.floating-card strong {
  display: block;

  color: white;

  font-family: var(--anton);

  font-size: 20px;

  letter-spacing: 0.8px;
}


.floating-card span {
  color: var(--muted);

  font-size: 10px;
}


.float-card-1 {
  left: -15px;
  top: 90px;
}


.float-card-2 {
  right: -5px;
  top: 260px;

  animation-delay: 1s;
}


.float-card-3 {
  left: 20px;
  bottom: 60px;

  animation-delay: 2s;
}


@keyframes cardFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-7px);
  }
}


.scroll-hint {
  position: absolute;

  left: 50%;
  bottom: 22px;

  transform: translateX(-50%);

  display: flex;
  align-items: center;

  gap: 10px;

  color: #666b74;

  font-size: 9px;
  letter-spacing: 4px;
}


.scroll-hint div {
  width: 40px;
  height: 1px;

  background: #555;
}


/* =====================================
   SECTION HEADING
===================================== */

.section-heading {
  max-width: 760px;

  margin-bottom: 55px;
}


.section-heading.centered {
  margin-left: auto;
  margin-right: auto;

  text-align: center;
}


.section-heading h2 {
  font-family: var(--anton);

  font-size: clamp(42px, 5vw, 72px);

  line-height: 1;

  letter-spacing: 0.2px;
}


.section-heading h2 span {
  color: var(--accent);
}


.section-heading p {
  max-width: 620px;

  margin-top: 20px;

  color: var(--muted);

  font-size: 15px;
}


/* =====================================
   PROBLEMS
===================================== */

.problem-section {
  background: var(--bg-soft);
}


.problem-grid {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 18px;
}


.problem-card {
  position: relative;

  min-height: 230px;

  overflow: hidden;

  padding: 34px;

  border-radius: 18px;

  border: 1px solid var(--border);

  background:
    linear-gradient(
      145deg,
      rgba(255,255,255,0.035),
      rgba(255,255,255,0.01)
    );

  transition: 0.3s;
}


.problem-card:hover {
  transform: translateY(-5px);

  border-color: rgba(255,77,36,0.4);

  box-shadow:
    0 20px 50px rgba(0,0,0,0.25);
}


.card-number {
  position: absolute;

  right: 20px;
  top: -20px;

  color: rgba(255,255,255,0.035);

  font-family: var(--anton);

  font-size: 120px;
}


.problem-card h3 {
  max-width: 320px;

  margin-top: 65px;

  font-family: var(--anton);

  font-size: 27px;
  letter-spacing: 0.5px;
}


.problem-card p {
  max-width: 460px;

  margin-top: 13px;

  color: var(--muted);

  font-size: 14px;
}


/* =====================================
   STATEMENT
===================================== */

.statement-section {
  padding: 130px 0;

  background:
    radial-gradient(
      circle at 30% 50%,
      rgba(255,77,36,0.09),
      transparent 35%
    );
}


.statement-wrap {
  text-align: center;
}


.statement-small {
  color: var(--accent-light);

  font-size: 11px;
  font-weight: 800;

  letter-spacing: 4px;
}


.statement-wrap h2 {
  margin-top: 25px;

  font-family: var(--anton);

  font-size: clamp(65px, 11vw, 145px);

  line-height: 0.82;
}


.statement-wrap h2 span {
  display: block;

  color: transparent;

  -webkit-text-stroke: 1px rgba(255,255,255,0.4);
}


.statement-line {
  width: 80px;
  height: 3px;

  margin: 35px auto;

  background: var(--accent);
}


.statement-wrap p {
  color: var(--muted);

  font-size: 16px;
}


/* =====================================
   PRODUCT
===================================== */

.product-section {
  background: var(--bg-soft);
}


.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;

  align-items: center;

  gap: 90px;
}


.product-visual {
  position: relative;

  width: 100%;

  min-height: 0;

  display: flex;
  align-items: center;
  justify-content: center;
}


.product-visual img {
  position: relative;

  z-index: 2;

  display: block;

  width: min(100%, 560px);

  height: auto;

  max-height: none;

  margin: auto;

  object-fit: contain;

  filter:
    drop-shadow(0 35px 40px rgba(0,0,0,0.45));
}


.product-glow {
  position: absolute;

  width: 360px;
  height: 360px;

  border-radius: 50%;

  background: rgba(255,77,36,0.16);

  filter: blur(100px);
}


.product-floating-badge {
  position: absolute;

  z-index: 3;

  right: 30px;
  bottom: 45px;

  padding: 12px 17px;

  border-radius: 10px;

  border: 1px solid rgba(255,77,36,0.4);

  background: rgba(10,11,13,0.78);

  backdrop-filter: blur(15px);

  color: var(--accent-light);

  font-family: var(--anton);

  font-size: 18px;

  line-height: 1.1;
}


.product-copy h2 {
  font-family: var(--anton);

  font-size: clamp(52px, 6vw, 83px);

  line-height: 0.95;
}


.product-copy h2 span {
  display: block;

  color: var(--accent);
}


.product-copy p {
  margin-top: 20px;

  color: var(--muted);
}


.product-copy .large-text {
  color: white;

  font-size: 19px;

  line-height: 1.65;
}


.feature-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);

  margin-top: 36px;

  border: 1px solid var(--border);

  border-radius: 14px;

  overflow: hidden;
}


.feature-mini-grid div {
  padding: 21px 16px;

  text-align: center;

  background: var(--card);
}


.feature-mini-grid div:not(:last-child) {
  border-right: 1px solid var(--border);
}


.feature-mini-grid strong {
  display: block;

  color: var(--accent-light);

  font-family: var(--anton);

  font-size: 27px;
}


.feature-mini-grid span {
  display: block;

  margin-top: 3px;

  color: var(--muted);

  font-size: 10px;
}


/* =====================================
   FEATURES
===================================== */

.dark-section {
  background: #07080a;
}


.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);

  gap: 17px;
}


.feature-card {
  position: relative;

  min-height: 250px;

  padding: 30px;

  border-radius: 17px;

  border: 1px solid var(--border);

  background: var(--card);

  overflow: hidden;

  transition: 0.3s;
}


.feature-card:hover {
  transform: translateY(-5px);

  border-color: rgba(255,77,36,0.35);
}


.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 44px;
  height: 44px;

  border-radius: 10px;

  background: rgba(255,77,36,0.1);

  color: var(--accent-light);

  font-family: var(--anton);

  font-size: 18px;
}


.feature-card h3 {
  margin-top: 50px;

  font-family: var(--anton);

  font-size: 23px;

  letter-spacing: 0.4px;
}


.feature-card p {
  margin-top: 12px;

  color: var(--muted);

  font-size: 13px;
}


/* =====================================
   TIMELINE
===================================== */

.timeline {
  position: relative;

  margin-top: 20px;

  display: grid;
  grid-template-columns: repeat(4, 1fr);

  gap: 28px;

  padding-top: 60px;
}


.timeline::before {
  content: "";

  position: absolute;

  top: 22px;
  left: 0;

  width: 100%;
  height: 2px;

  background: rgba(255,255,255,0.09);
}


.timeline-progress {
  position: absolute;

  top: 22px;
  left: 0;

  width: 100%;
  height: 2px;
}


.timeline-progress div {
  width: 0;
  height: 100%;

  background: var(--accent);

  box-shadow: 0 0 14px var(--accent);

  transition: width 1.5s ease;
}


.timeline-number {
  width: 55px;
  height: 55px;

  margin-bottom: 22px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: var(--accent);

  box-shadow:
    0 8px 30px rgba(255,77,36,0.25);

  font-family: var(--anton);

  font-size: 20px;
}


.timeline-item h3 {
  font-family: var(--anton);

  font-size: 23px;
}


.timeline-item p {
  margin-top: 10px;

  color: var(--muted);

  font-size: 13px;
}


/* =====================================
   WORKOUT PREVIEW
===================================== */

.workout-preview {
  background: var(--bg-soft);
}


.workout-dashboard {
  max-width: 900px;

  margin: auto;

  display: grid;
  grid-template-columns: 220px 1fr;

  overflow: hidden;

  border-radius: 20px;

  border: 1px solid var(--border);

  background: var(--card);

  box-shadow:
    0 30px 70px rgba(0,0,0,0.3);
}


.workout-day {
  min-height: 520px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  background:
    linear-gradient(
      145deg,
      var(--accent),
      #e93711
    );
}


.workout-day span {
  font-size: 14px;
  font-weight: 800;

  letter-spacing: 4px;
}


.workout-day strong {
  margin-top: 5px;

  font-family: var(--anton);

  font-size: 115px;

  line-height: 1;
}


.workout-day small {
  font-weight: 800;

  letter-spacing: 2px;
}


.exercise-list {
  padding: 35px;
}


.exercise-row {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 20px;

  padding: 19px 0;

  border-bottom: 1px solid var(--border);
}


.exercise-row strong {
  display: block;

  font-size: 14px;
}


.exercise-row span {
  color: var(--muted);

  font-size: 10px;
}


.exercise-row b {
  font-family: var(--anton);

  color: var(--accent-light);

  font-size: 23px;
}


.workout-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;

  gap: 12px;

  margin-top: 25px;
}


.workout-meta div {
  padding: 15px;

  border-radius: 10px;

  background: var(--card-light);
}


.workout-meta span {
  display: block;

  color: var(--muted);

  font-size: 9px;
  letter-spacing: 2px;
}


.workout-meta strong {
  display: block;

  margin-top: 3px;

  font-family: var(--anton);

  font-size: 21px;
}


.movement-preview {
  max-width: 900px;

  margin: 50px auto 0;

  display: grid;
  grid-template-columns: 1fr auto 1fr;

  align-items: center;

  gap: 25px;
}


.movement-card {
  position: relative;

  border-radius: 17px;

  overflow: hidden;

  border: 1px solid var(--border);

  background: var(--card);
}


.movement-card span {
  position: absolute;

  z-index: 2;

  left: 15px;
  top: 15px;

  padding: 7px 10px;

  border-radius: 6px;

  background: rgba(0,0,0,0.7);

  color: white;

  font-size: 9px;
  font-weight: 800;

  letter-spacing: 1px;
}


.movement-card img {
  width: 100%;
  height: 350px;

  object-fit: cover;
}


.movement-arrow {
  color: var(--accent);

  font-family: var(--anton);

  font-size: 45px;
}


/* =====================================
   WEEKS
===================================== */

.weeks-section {
  background: #07080a;
}


.weeks-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);

  gap: 14px;
}


.week-card {
  position: relative;

  min-height: 320px;

  padding: 30px 25px;

  border: 1px solid var(--border);

  border-radius: 16px;

  background:
    linear-gradient(
      to bottom,
      var(--card),
      rgba(18,20,24,0.35)
    );

  transition: 0.3s;
}


.week-card:hover {
  border-color: var(--accent);

  transform: translateY(-5px);
}


.week-card > span {
  color: var(--muted);

  font-size: 10px;
  font-weight: 800;

  letter-spacing: 3px;
}


.week-card > strong {
  display: block;

  margin-top: 15px;

  color: rgba(255,255,255,0.06);

  font-family: var(--anton);

  font-size: 100px;

  line-height: 0.9;
}


.week-card h3 {
  margin-top: 35px;

  color: var(--accent-light);

  font-family: var(--anton);

  font-size: 29px;
}


.week-card p {
  margin-top: 10px;

  color: var(--muted);

  font-size: 12px;
}


/* =====================================
   BENTO
===================================== */

.bento-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  grid-auto-rows: minmax(200px, auto);

  gap: 16px;
}


.bento-card {
  padding: 30px;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;

  border-radius: 18px;

  border: 1px solid var(--border);

  background:
    linear-gradient(
      145deg,
      var(--card-light),
      var(--card)
    );

  transition: 0.3s;
}


.bento-card:hover {
  border-color: rgba(255,77,36,0.45);
}


.bento-card > span {
  margin-bottom: auto;

  color: var(--accent-light);

  font-family: var(--anton);

  font-size: 18px;
}


.bento-card h3 {
  font-family: var(--anton);

  font-size: 29px;
}


.bento-card p {
  margin-top: 8px;

  color: var(--muted);

  font-size: 12px;
}


.bento-large {
  grid-row: span 2;
}


.bento-wide {
  grid-column: span 2;
}


/* =====================================
   AUDIENCE
===================================== */

.audience-section {
  background: var(--bg-soft);
}


.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);

  gap: 14px;
}


.audience-card {
  min-height: 270px;

  padding: 28px;

  border-radius: 16px;

  border: 1px solid var(--border);

  background: var(--card);

  transition: 0.3s;
}


.audience-card:hover {
  transform: translateY(-4px);

  border-color: rgba(255,77,36,0.35);
}


.audience-card span {
  color: rgba(255,255,255,0.08);

  font-family: var(--anton);

  font-size: 65px;
}


.audience-card h3 {
  margin-top: 45px;

  font-family: var(--anton);

  font-size: 25px;
}


.audience-card p {
  margin-top: 10px;

  color: var(--muted);

  font-size: 12px;
}


/* =====================================
   WHY 10K
===================================== */

.why-section {
  padding: 130px 0;

  background:
    radial-gradient(
      circle at 50% 50%,
      rgba(255,77,36,0.08),
      transparent 45%
    );
}


.why-card {
  position: relative;

  max-width: 900px;

  margin: auto;

  padding: 65px;

  border: 1px solid rgba(255,77,36,0.25);

  border-radius: 22px;

  background:
    linear-gradient(
      145deg,
      rgba(255,77,36,0.06),
      rgba(255,255,255,0.015)
    );

  overflow: hidden;
}


.quote-icon {
  position: absolute;

  right: 30px;
  top: -50px;

  color: rgba(255,255,255,0.035);

  font-family: Georgia, serif;

  font-size: 240px;
}


.why-card h2 {
  max-width: 700px;

  font-family: var(--anton);

  font-size: clamp(48px, 6vw, 80px);

  line-height: 0.98;
}


.why-card h2 span {
  color: var(--accent);
}


.why-card p {
  max-width: 670px;

  margin-top: 25px;

  color: #b9bdc4;

  font-size: 16px;

  line-height: 1.8;
}


/* =====================================
   PRICING
===================================== */

.pricing-section {
  overflow: hidden;

  background: #07080a;
}


.pricing-glow {
  position: absolute;

  width: 600px;
  height: 600px;

  left: 50%;
  top: 50%;

  transform: translate(-50%, -50%);

  border-radius: 50%;

  background: rgba(255,77,36,0.13);

  filter: blur(130px);
}


.pricing-card {
  position: relative;

  z-index: 2;

  max-width: 650px;

  margin: auto;

  padding: 55px;

  border-radius: 24px;

  border: 1px solid rgba(255,77,36,0.35);

  background: rgba(18,20,24,0.82);

  backdrop-filter: blur(20px);

  box-shadow:
    0 40px 100px rgba(0,0,0,0.5);

  text-align: center;
}


.pricing-label {
  color: var(--accent-light);

  font-size: 12px;
  font-weight: 800;

  letter-spacing: 3px;
}


.pricing-small {
  margin-top: 25px;

  color: var(--muted);

  font-size: 10px;

  letter-spacing: 3px;
}


.price {
  margin-top: 5px;

  display: flex;
  align-items: flex-start;
  justify-content: center;
}


.price small {
  margin-top: 19px;

  font-family: var(--anton);

  font-size: 27px;
}


.price strong {
  font-family: var(--anton);

  font-size: clamp(75px, 10vw, 120px);

  line-height: 1;

  color: var(--accent-light);
}


.price-info {
  color: var(--muted);

  font-size: 12px;
}


.pricing-features {
  margin: 35px 0;

  display: grid;
  grid-template-columns: 1fr 1fr;

  gap: 12px;

  text-align: left;
}


.pricing-features span {
  padding: 10px 12px;

  border-radius: 8px;

  background: rgba(255,255,255,0.03);

  color: #d1d3d7;

  font-size: 11px;
}


.price-button {
  width: 100%;
}


.secure-note {
  margin-top: 15px;

  color: #747982;

  font-size: 10px;
}


/* =====================================
   SHORT MESSAGE
===================================== */

.short-message {
  padding: 130px 0;

  text-align: center;
}


.short-message > div > p:first-child {
  color: var(--accent-light);

  font-size: 11px;
  font-weight: 800;

  letter-spacing: 4px;
}


.short-message h2 {
  margin-top: 20px;

  font-family: var(--anton);

  font-size: clamp(60px, 9vw, 120px);

  line-height: 0.9;
}


.short-message h2 span {
  display: block;

  color: transparent;

  -webkit-text-stroke:
    1px rgba(255,255,255,0.45);
}


.message-description {
  margin-top: 30px;

  color: var(--muted);
}


/* =====================================
   FAQ
===================================== */

.faq-section {
  background: var(--bg-soft);
}


.faq-container {
  max-width: 900px;
}


.faq-list {
  display: grid;

  gap: 10px;
}


.faq-item {
  overflow: hidden;

  border: 1px solid var(--border);

  border-radius: 12px;

  background: var(--card);
}


.faq-question {
  width: 100%;

  min-height: 70px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 20px;

  padding: 0 22px;

  border: none;

  background: transparent;

  color: white;

  cursor: pointer;

  text-align: left;

  font-size: 13px;
  font-weight: 700;
}


.faq-question span {
  color: var(--accent-light);

  font-size: 25px;

  transition: transform 0.25s;
}


.faq-answer {
  max-height: 0;

  overflow: hidden;

  transition:
    max-height 0.35s ease,
    padding 0.35s ease;
}


.faq-answer p {
  padding: 0 22px 22px;

  color: var(--muted);

  font-size: 13px;
}


.faq-item.active {
  border-color: rgba(255,77,36,0.35);
}


.faq-item.active .faq-question span {
  transform: rotate(45deg);
}


/* =====================================
   SAFETY
===================================== */

.safety-section {
  padding: 60px 0;

  background: #08090b;
}


.safety-box {
  padding: 25px 28px;

  border-left: 3px solid var(--accent);

  background: rgba(255,255,255,0.025);
}


.safety-box strong {
  color: white;

  font-size: 11px;

  letter-spacing: 2px;
}


.safety-box p {
  margin-top: 8px;

  color: #7f858e;

  font-size: 11px;
}


/* =====================================
   FINAL CTA
===================================== */

.final-cta {
  position: relative;

  overflow: hidden;

  padding: 120px 0 0;

  background:
    linear-gradient(
      to bottom,
      #08090b,
      #0d0f12
    );
}


.final-glow {
  position: absolute;

  right: 5%;
  bottom: -200px;

  width: 500px;
  height: 500px;

  border-radius: 50%;

  background: rgba(255,77,36,0.15);

  filter: blur(120px);
}


.final-grid {
  position: relative;

  display: grid;
  grid-template-columns: 1fr 0.8fr;

  align-items: end;

  gap: 70px;
}


.final-copy {
  padding-bottom: 100px;
}


.final-copy h2 {
  font-family: var(--anton);

  font-size: clamp(58px, 7vw, 100px);

  line-height: 0.9;
}


.final-copy h2 span {
  display: block;

  color: var(--accent);
}


.final-copy > p {
  margin-top: 23px;

  color: var(--muted);
}


.final-price {
  margin: 30px 0;

  display: flex;
  flex-direction: column;

  color: var(--muted);

  font-size: 11px;

  letter-spacing: 2px;
}


.final-price strong {
  color: white;

  font-family: var(--anton);

  font-size: 43px;

  letter-spacing: 0;
}


.final-image {
  width: 100%;

  display: flex;
  align-items: flex-end;
  justify-content: center;

  overflow: hidden;
}


.final-image img {
  display: block;

  width: min(100%, 520px);

  height: auto;

  max-width: 100%;
  max-height: none;

  margin: 0 auto;

  object-fit: contain;

  object-position: center bottom;
}


/* =====================================
   FOOTER
===================================== */

.footer {
  background: #050607;

  border-top: 1px solid var(--border);
}


.footer-inner {
  padding: 45px 0;

  display: flex;
  align-items: flex-start;
  justify-content: space-between;

  gap: 40px;
}


.footer p {
  margin-top: 10px;

  color: #666b73;

  font-size: 11px;
}


.footer-links {
  display: flex;

  gap: 20px;
}


.footer-links a {
  color: #888d95;

  font-size: 11px;
}


.footer-links a:hover {
  color: white;
}


.footer-bottom {
  padding: 18px 20px;

  border-top: 1px solid var(--border);

  color: #555a62;

  text-align: center;

  font-size: 10px;
}


/* =====================================
   MOBILE STICKY
===================================== */

.mobile-sticky {
  position: fixed;

  z-index: 900;

  left: 12px;
  right: 12px;
  bottom: 12px;

  display: none;
  align-items: center;
  justify-content: space-between;

  padding: 10px 10px 10px 16px;

  border: 1px solid rgba(255,255,255,0.13);

  border-radius: 14px;

  background: rgba(13,15,18,0.88);

  backdrop-filter: blur(20px);

  box-shadow:
    0 15px 50px rgba(0,0,0,0.5);

  opacity: 0;

  transform: translateY(30px);

  pointer-events: none;

  transition: 0.3s;
}


.mobile-sticky.show {
  opacity: 1;

  transform: translateY(0);

  pointer-events: auto;
}


.mobile-sticky small {
  display: block;

  color: #858b94;

  font-size: 8px;
}


.mobile-sticky strong {
  display: block;

  margin-top: 1px;

  font-family: var(--anton);

  font-size: 21px;
}


.mobile-sticky a {
  padding: 12px 22px;

  border-radius: 9px;

  background: var(--accent);

  color: white;

  font-size: 11px;
  font-weight: 800;
}


/* =====================================
   REVEAL ANIMATION
===================================== */

.reveal {
  opacity: 0;

  transform: translateY(28px);

  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
}


.reveal.visible {
  opacity: 1;

  transform: translateY(0);
}


/* =====================================
   TABLET
===================================== */

@media (max-width: 992px) {

  .nav-menu {
    display: none;
  }


  .hero-grid {
    grid-template-columns: 1fr;

    gap: 30px;
  }


  .hero-copy {
    text-align: center;
  }


  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }


  .hero-highlight {
    display: inline-block;
  }


  .hero-price,
  .hero-buttons,
  .hero-points {
    justify-content: center;
  }


  .hero-visual {
    min-height: 530px;
  }


  .image-frame {
    width: min(450px, 85%);
  }


  .product-grid {
    grid-template-columns: 1fr;

    gap: 45px;
  }


  .product-copy {
    text-align: center;
  }


  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }


  .timeline {
    grid-template-columns: repeat(2, 1fr);
  }


  .timeline::before,
  .timeline-progress {
    display: none;
  }


  .weeks-grid {
    grid-template-columns: repeat(2, 1fr);
  }


  .audience-grid {
    grid-template-columns: repeat(2, 1fr);
  }


  .final-grid {
    grid-template-columns: 1fr;

    text-align: center;
  }


  .final-copy {
    padding-bottom: 30px;
  }


  .final-image img {
    margin: auto;
  }

}


/* =====================================
   MOBILE
===================================== */

@media (max-width: 680px) {

  .container {
    width: min(100% - 36px, 1180px);
  }


  .section {
    padding: 80px 0;
  }


  .navbar {
    background: rgba(9,10,12,0.75);

    backdrop-filter: blur(16px);
  }


  .nav-inner {
    min-height: 64px;
  }


  .logo {
    font-size: 18px;
  }


  .nav-cta {
    padding: 9px 12px;

    font-size: 9px;
  }


  .hero {
    min-height: auto;

    padding: 115px 0 75px;
  }


  .hero h1 {
    font-size: clamp(54px, 16vw, 78px);
  }


  .hero-description {
    font-size: 15px;
  }


  .hero-price {
    flex-wrap: wrap;
  }


  .hero-buttons {
    flex-direction: column;
  }


  .btn {
    width: 100%;

    min-height: 55px;
  }


  .hero-points {
    font-size: 10px;

    gap: 10px;
  }


  .hero-visual {
    min-height: 470px;

    margin-top: 15px;
  }


  .image-frame {
    width: 90%;
  }


  .image-frame img {
    min-height: 430px;
  }


  .big-number {
    font-size: 135px;
  }


  .floating-card {
    min-width: 115px;

    padding: 10px 12px;
  }


  .floating-card strong {
    font-size: 16px;
  }


  .float-card-1 {
    left: 0;
  }


  .float-card-2 {
    right: 0;
  }


  .float-card-3 {
    left: 10px;
    bottom: 25px;
  }


  .scroll-hint {
    display: none;
  }


  .section-heading {
    margin-bottom: 35px;
  }


  .section-heading h2 {
    font-size: 43px;
  }


  .section-heading p {
    font-size: 13px;
  }


  .problem-grid {
    grid-template-columns: 1fr;
  }


  .problem-card {
    min-height: 210px;

    padding: 25px;
  }


  .statement-section {
    padding: 90px 0;
  }


  .statement-wrap h2 {
    font-size: 70px;
  }


  .product-visual {
    min-height: 380px;
  }


  .product-visual img {
    max-height: 370px;
  }


  .product-floating-badge {
    right: 5px;
    bottom: 10px;
  }


  .product-copy h2 {
    font-size: 57px;
  }


  .feature-mini-grid {
    grid-template-columns: 1fr;
  }


  .feature-mini-grid div:not(:last-child) {
    border-right: none;

    border-bottom: 1px solid var(--border);
  }


  .features-grid {
    grid-template-columns: 1fr;
  }


  .feature-card {
    min-height: 220px;
  }


  .timeline {
    grid-template-columns: 1fr;

    gap: 35px;

    padding-top: 0;
  }


  .timeline-item {
    display: grid;
    grid-template-columns: 55px 1fr;

    gap: 18px;
  }


  .timeline-number {
    margin: 0;
  }


  .workout-dashboard {
    grid-template-columns: 1fr;
  }


  .workout-day {
    min-height: 230px;
  }


  .workout-day strong {
    font-size: 90px;
  }


  .exercise-list {
    padding: 20px;
  }


  .movement-preview {
    grid-template-columns: 1fr;
  }


  .movement-arrow {
    transform: rotate(90deg);

    text-align: center;
  }


  .movement-card img {
    height: 330px;
  }


  .weeks-grid {
    grid-template-columns: 1fr 1fr;
  }


  .week-card {
    min-height: 270px;

    padding: 22px 18px;
  }


  .week-card > strong {
    font-size: 68px;
  }


  .week-card h3 {
    margin-top: 25px;

    font-size: 23px;
  }


  .bento-grid {
    grid-template-columns: 1fr;

    grid-auto-rows: auto;
  }


  .bento-card,
  .bento-large,
  .bento-wide {
    grid-column: auto;
    grid-row: auto;

    min-height: 200px;
  }


  .audience-grid {
    grid-template-columns: 1fr 1fr;
  }


  .audience-card {
    min-height: 220px;

    padding: 20px;
  }


  .audience-card span {
    font-size: 50px;
  }


  .audience-card h3 {
    margin-top: 25px;

    font-size: 20px;
  }


  .why-section {
    padding: 80px 0;
  }


  .why-card {
    padding: 35px 25px;
  }


  .why-card h2 {
    font-size: 46px;
  }


  .why-card p {
    font-size: 14px;
  }


  .pricing-card {
    padding: 40px 20px;
  }


  .price strong {
    font-size: 80px;
  }


  .pricing-features {
    grid-template-columns: 1fr;
  }


  .short-message {
    padding: 90px 0;
  }


  .short-message h2 {
    font-size: 64px;
  }


  .faq-question {
    min-height: 70px;

    padding: 0 17px;

    font-size: 12px;
  }


  .final-cta {
    padding-top: 85px;
  }


  .final-copy h2 {
    font-size: 60px;
  }


  .final-copy .btn {
    width: 100%;
  }


  .final-image img {
    max-height: 400px;
  }


  .footer-inner {
    flex-direction: column;
  }


  .footer-links {
    flex-direction: column;

    gap: 10px;
  }


  .mobile-sticky {
    display: flex;
  }

}


/* =====================================
   REDUCED MOTION
===================================== */

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;

    animation-iteration-count: 1 !important;

    scroll-behavior: auto !important;

    transition-duration: 0.01ms !important;
  }

}