* {
  box-sizing: border-box;
}

:root {
  --bg: #070707;
  --panel: #121212;
  --panel-2: #191919;
  --line: #2a2a2a;
  --text: #f6f6f6;
  --muted: #b8b8b8;
  --accent: #ff6b00;
  --accent-2: #f7b733;
  --green: #92f27c;
  --radius: 24px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 0%, rgba(255, 107, 0, 0.22), transparent 28%),
    radial-gradient(circle at 90% 20%, rgba(247, 183, 51, 0.10), transparent 24%),
    var(--bg);
}

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 18px clamp(18px, 6vw, 84px);
  background: rgba(7, 7, 7, 0.84);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 950;
  letter-spacing: -0.03em;
}

.brand-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #101010;
  font-weight: 950;
}

.desktop-nav {
  display: flex;
  gap: 28px;
  color: var(--muted);
  font-size: 15px;
}

.desktop-nav a:hover {
  color: var(--accent);
}

.cart-button {
  border: 1px solid var(--line);
  background: #101010;
  color: var(--text);
  border-radius: 999px;
  padding: 10px 14px;
  cursor: pointer;
  font-weight: 800;
}

.cart-button span {
  display: inline-grid;
  place-items: center;
  min-width: 24px;
  height: 24px;
  margin-left: 6px;
  border-radius: 999px;
  background: var(--accent);
  color: #101010;
  font-weight: 950;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(310px, 0.7fr);
  gap: 42px;
  align-items: center;
  min-height: 84vh;
  padding: clamp(64px, 9vw, 126px) clamp(18px, 6vw, 84px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  font-weight: 950;
}

.hero h1,
.section-title h2,
.lead-section h2,
.contact h2 {
  margin: 0;
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.hero h1 {
  max-width: 900px;
  font-size: clamp(44px, 8vw, 94px);
}

.hero-copy > p:not(.eyebrow),
.lead-section p,
.contact p {
  max-width: 680px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  border: 0;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 950;
  cursor: pointer;
}

.button.primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #101010;
}

.button.secondary {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--text);
}

.proof-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.proof-strip span {
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
}

.hero-card,
.plan-card,
.product-card,
.steps-grid article,
.contact-form,
.email-form,
.cart-drawer {
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

.hero-card {
  padding: 32px;
}

.hero-card h2 {
  font-size: 36px;
  margin: 0 0 12px;
  letter-spacing: -0.04em;
}

.hero-card p {
  color: var(--muted);
  line-height: 1.65;
}

.kit-price {
  color: var(--green);
  font-size: 46px;
  font-weight: 950;
  margin: 20px 0;
}

.section,
.lead-section,
.contact {
  padding: 78px clamp(18px, 6vw, 84px);
}

.intro {
  padding-top: 40px;
}

.section-title {
  margin-bottom: 34px;
}

.section-title h2,
.lead-section h2,
.contact h2 {
  max-width: 820px;
  font-size: clamp(34px, 5vw, 62px);
}

.steps-grid,
.plans-grid,
.equipment-grid {
  display: grid;
  gap: 18px;
}

.steps-grid {
  grid-template-columns: repeat(3, 1fr);
}

.steps-grid article {
  padding: 26px;
}

.steps-grid span {
  color: var(--accent);
  font-weight: 950;
}

.steps-grid p,
.plan-card p,
.plan-card li,
.product-info p,
.footer p,
.cart-note {
  color: var(--muted);
  line-height: 1.65;
}

.plans-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.plan-card {
  display: grid;
  gap: 22px;
  padding: 26px;
}

.plan-top {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.tag {
  display: inline-block;
  margin: 0 0 12px;
  color: #111 !important;
  background: var(--green);
  border-radius: 999px;
  padding: 7px 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 11px;
  font-weight: 950;
}

.plan-card h3,
.product-card h3,
.steps-grid h3 {
  margin: 0 0 10px;
  font-size: 24px;
  letter-spacing: -0.035em;
}

.workout-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 22px;
}

.recommended {
  padding: 18px;
  border: 1px solid rgba(255, 107, 0, 0.35);
  border-radius: 18px;
  background: rgba(255, 107, 0, 0.08);
}

.recommended h4 {
  margin: 0 0 12px;
}

.mini-product {
  display: block;
  width: 100%;
  margin-top: 10px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #0e0e0e;
  color: var(--text);
  padding: 12px 14px;
  text-align: left;
  cursor: pointer;
  font-weight: 800;
}

.mini-product:hover,
.add-to-cart:hover {
  transform: translateY(-1px);
}

.equipment-section {
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.equipment-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-card {
  overflow: hidden;
}

.product-card.highlight {
  border-color: rgba(146, 242, 124, 0.45);
}

.visual {
  min-height: 180px;
  position: relative;
  background:
    radial-gradient(circle at 65% 25%, rgba(255, 107, 0, 0.22), transparent 35%),
    linear-gradient(135deg, #202020, #111);
}

.visual::before,
.visual::after {
  content: "";
  position: absolute;
}

.bands::before {
  width: 140px;
  height: 140px;
  left: 18%;
  top: 22%;
  border: 16px solid var(--accent);
  border-radius: 50%;
}
.bands::after {
  width: 105px;
  height: 105px;
  right: 18%;
  top: 31%;
  border: 14px solid #fff;
  border-radius: 50%;
}

.rope::before {
  width: 180px;
  height: 110px;
  left: 15%;
  top: 20%;
  border: 8px solid var(--accent);
  border-radius: 50%;
}
.rope::after {
  width: 76px;
  height: 16px;
  right: 16%;
  bottom: 25%;
  border-radius: 999px;
  background: #fff;
  transform: rotate(-22deg);
}

.roller::before {
  width: 118px;
  height: 118px;
  left: 20%;
  top: 21%;
  border: 23px solid var(--accent);
  border-radius: 50%;
}
.roller::after {
  width: 150px;
  height: 14px;
  right: 15%;
  top: 50%;
  border-radius: 999px;
  background: #fff;
  transform: rotate(8deg);
}

.grip::before {
  width: 110px;
  height: 110px;
  left: 30%;
  top: 24%;
  border: 15px solid var(--accent);
  border-radius: 30px;
  transform: rotate(-15deg);
}
.grip::after {
  width: 88px;
  height: 18px;
  right: 20%;
  bottom: 33%;
  border-radius: 999px;
  background: #fff;
  transform: rotate(20deg);
}

.pushup::before {
  width: 160px;
  height: 16px;
  left: 18%;
  bottom: 38%;
  border-radius: 999px;
  background: var(--accent);
}
.pushup::after {
  width: 86px;
  height: 70px;
  right: 22%;
  top: 34%;
  border: 14px solid #fff;
  border-top: 0;
  border-radius: 0 0 34px 34px;
}

.kit::before {
  width: 120px;
  height: 120px;
  left: 16%;
  top: 20%;
  border: 18px solid var(--green);
  border-radius: 50%;
}
.kit::after {
  width: 150px;
  height: 16px;
  right: 14%;
  top: 50%;
  border-radius: 999px;
  background: var(--accent);
  transform: rotate(-18deg);
}

.product-info {
  padding: 22px;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 18px;
}

.product-footer strong {
  font-size: 22px;
}

.add-to-cart {
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: #111;
  padding: 10px 16px;
  cursor: pointer;
  font-weight: 950;
}

.lead-section {
  display: grid;
  grid-template-columns: 1fr minmax(310px, 520px);
  gap: 36px;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(146, 242, 124, 0.10), transparent),
    #0b0b0b;
}

.email-form {
  display: grid;
  gap: 12px;
  padding: 24px;
}

.email-form input,
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #0c0c0c;
  color: var(--text);
  padding: 14px;
}

.contact {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 520px);
  gap: 40px;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 24px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
}

.contact-form textarea {
  min-height: 130px;
  resize: vertical;
}

.form-message {
  min-height: 22px;
  margin: 0;
  color: var(--green);
  font-weight: 900;
}

.cart-drawer {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 50;
  width: min(430px, 100%);
  height: 100dvh;
  padding: 24px;
  border-radius: 0;
  transform: translateX(105%);
  transition: 0.25s ease;
  display: flex;
  flex-direction: column;
}

.cart-drawer.open {
  transform: translateX(0);
}

.cart-header,
.cart-item,
.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.cart-header button {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #191919;
  color: var(--text);
  cursor: pointer;
  font-size: 26px;
}

.cart-items {
  display: grid;
  gap: 12px;
  margin: 20px 0;
  overflow: auto;
}

.cart-item {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px;
  background: #151515;
}

.cart-item small {
  color: var(--muted);
}

.remove-item {
  border: 0;
  border-radius: 999px;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  cursor: pointer;
}

.cart-total {
  margin-top: auto;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  font-size: 20px;
}

.checkout-button {
  width: 100%;
}

.cart-note {
  font-size: 13px;
}

.overlay {
  position: fixed;
  inset: 0;
  z-index: 45;
  background: rgba(0, 0, 0, 0.64);
  opacity: 0;
  pointer-events: none;
  transition: 0.25s ease;
}

.overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 32px clamp(18px, 6vw, 84px);
  background: #050505;
  border-top: 1px solid var(--line);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--muted);
}

@media (max-width: 1050px) {
  .hero,
  .lead-section,
  .contact {
    grid-template-columns: 1fr;
  }

  .equipment-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 780px) {
  .desktop-nav {
    display: none;
  }

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

  .hero {
    padding-top: 52px;
  }

  .steps-grid,
  .plans-grid,
  .equipment-grid {
    grid-template-columns: 1fr;
  }

  .footer {
    display: block;
  }

  .footer-links {
    margin-top: 18px;
  }
}


.hidden {
  display: none;
}

.legal-page {
  min-height: 70vh;
  padding: 78px clamp(18px, 6vw, 84px);
}

.legal-page h1 {
  margin: 0;
  line-height: 0.98;
  letter-spacing: -0.065em;
  max-width: 820px;
  font-size: clamp(34px, 5vw, 62px);
}

.legal-card {
  max-width: 900px;
  margin-top: 30px;
  padding: 28px;
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

.legal-card p,
.legal-card li {
  color: var(--muted);
  line-height: 1.65;
}

.legal-card a {
  color: var(--green);
  text-decoration: underline;
}

.back-link {
  display: inline-block;
  margin-top: 28px;
  color: var(--accent);
  font-weight: 900;
}

.section-subtitle { max-width: 760px; color: var(--muted); line-height: 1.65; }
