/* Стилізація скролбару */
    html {
      scrollbar-width: thin;
      scrollbar-color: var(--accent) var(--bg);
    }

    ::-webkit-scrollbar {
      width: 10px; /* ширина скролбару */
    }

    ::-webkit-scrollbar-track {
      background: var(--bg); /* колір доріжки */
    }

    ::-webkit-scrollbar-thumb {
      background-color: var(--accent); /* колір повзунка */
      border-radius: 5px; /* заокруглення повзунка */
      border: 2.5px solid var(--bg); /* відступ навколо повзунка */
    }


    :root {
      --bg: #080a08;
      --bg-soft: #0e110e;
      --panel: #121612;
      --panel-light: #181d18;
      --accent: #b7ff2a;
      --accent-dark: #8fd400;
      --text: #f4f6f0;
      --muted: #a4aa9f;
      --line: #293028;
      --danger: #ff5b5b;
      --max-width: 1240px;
      --header-height: 76px;
      --display: Impact, "Oswald Variable", Haettenschweiler, "Arial Narrow Bold", sans-serif;
      --body: "Inter Variable", Inter, Arial, sans-serif;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
      scroll-padding-top: calc(var(--header-height) + 20px);
    }

    body {
      margin: 0;
      background: var(--bg);
      color: var(--text);
      font-family: var(--body);
      font-size: 16px;
      line-height: 1.55;
      overflow-x: hidden;
    }

    body.menu-open,
    body.modal-open {
      overflow: hidden;
    }

    ::selection {
      background: var(--accent);
      color: #050605;
    }

    img {
      display: block;
      max-width: 100%;
    }

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

    a:focus-visible,
    button:focus-visible,
    input:focus-visible,
    select:focus-visible,
    textarea:focus-visible {
      outline: 2px solid var(--accent);
      outline-offset: 3px;
    }

    button,
    input,
    select,
    textarea {
      font: inherit;
      font-family: var(--body);
    }

    .button,
    .wc-block-components-button,
    .woocommerce .button {
      font-family: var(--body);
    }

    button {
      margin: 0;
      padding: 0;
      border-radius: 0;
      color: inherit;
      line-height: 1;
      -webkit-appearance: none;
      appearance: none;
    }

    s {
      text-decoration-color: red;
      text-decoration-thickness: 2px;
    }

    .container {
      width: min(var(--max-width), calc(100% - 40px));
      margin-inline: auto;
    }

    .section {
      position: relative;
      padding: 112px 0;
    }

    .section--tight {
      padding: 72px 0;
    }

    .section-label {
      display: flex;
      align-items: center;
      gap: 12px;
      margin: 0 0 18px;
      color: var(--accent);
      font-size: 12px;
      font-weight: 800;
      letter-spacing: .16em;
      text-transform: uppercase;
    }

    .section-label::before {
      width: 42px;
      height: 2px;
      background: var(--accent);
      content: "";
    }

    .section-title {
      /* max-width: 900px; */
      margin: 0;
      margin-top: 24px;
      font-family: var(--display);
      font-size: clamp(42px, 6vw, 82px);
      font-weight: 900;
      letter-spacing: .01em;
      line-height: .96;
      text-transform: uppercase;
    }

    .section-title .accent {
      color: var(--accent);
    }

    .section-copy {
      /* max-width: 680px; */
      margin: 24px 0 0;
      color: var(--muted);
      font-size: clamp(17px, 2vw, 20px);
    }

    .section-head {
      display: flex;
      /* align-items: end;
      justify-content: space-between; */
      flex-direction: column;
      gap: 40px;
      margin-bottom: 52px;
    }

    .section-head .section-copy {
      /* max-width: 440px; */
      margin: 0;
    }

    .button {
      position: relative;
      display: inline-flex;
      min-height: 54px;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 0 24px;
      border: 1px solid var(--accent);
      border-radius: 0;
      background: transparent;
      color: var(--text);
      font-size: 13px;
      font-weight: 900;
      letter-spacing: .08em;
      line-height: 1;
      text-transform: uppercase;
      cursor: pointer;
      transition: background .2s ease, color .2s ease, box-shadow .2s ease, transform .2s ease;
    }

    .button::after,
    .direction-card-arrow::after {
      content: "";
      display: inline-block;
      width: 1em;
      height: 1em;
      background-color: currentColor;
      -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 18L18 6M18 6H10M18 6V14' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
      mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 18L18 6M18 6H10M18 6V14' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
      -webkit-mask-size: contain;
      mask-size: contain;
      -webkit-mask-repeat: no-repeat;
      mask-repeat: no-repeat;
      -webkit-mask-position: center;
      mask-position: center;
    }

    .button::after {
      font-size: 17px;
      transition: transform .2s ease;
    }

    .button:hover {
      background: var(--accent);
      color: #080a08;
      box-shadow: 0 0 28px rgba(183, 255, 42, .18);
      transform: translateY(-2px);
    }

    a.button:hover,
    a.button:focus,
    a.button:active {
      color: var(--text);
    }

    a.button--primary:hover,
    a.button--primary:focus,
    a.button--primary:active {
      color: #080a08;
    }

    a.button--dark:hover,
    a.button--dark:focus,
    a.button--dark:active {
      color: var(--text);
    }

    a.button.button--full.button--accent-hover:hover,
    a.button.button--full.button--accent-hover:focus,
    a.button.button--full.button--accent-hover:active {
      border-color: #b7ff2a;
      background: #b7ff2a !important;
      color: #080a08 !important;
    }

    a.button.button--full.button--accent-hover:hover::after,
    a.button.button--full.button--accent-hover:focus::after,
    a.button.button--full.button--accent-hover:active::after {
      color: #080a08 !important;
    }

    .button:hover::after {
      transform: translate(4px, -4px);
    }

    .button--primary {
      background: var(--accent);
      color: #080a08;
    }

    .button--primary:hover {
      background: #ccff63;
    }

    .button--dark {
      border-color: #080a08;
      background: #080a08;
      color: var(--text);
    }

    .button--dark:hover {
      border-color: #080a08;
      background: #1a1d18;
      color: var(--accent);
    }

    .button--small {
      min-height: 44px;
      padding: 0 18px;
      font-size: 11px;
    }

    .button--full {
      width: 100%;
    }

    .text-link {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      border: 0;
      background: none;
      color: var(--accent);
      font-size: 12px;
      font-weight: 900;
      letter-spacing: .08em;
      text-transform: uppercase;
      cursor: pointer;
    }

    .text-link::after {
      content: "";
      display: inline-block;
      width: 18px;
      height: 18px;
      background-color: currentColor;
      -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 12H20M20 12L14 6M20 12L14 18' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
      mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 12H20M20 12L14 6M20 12L14 18' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
      -webkit-mask-size: contain;
      mask-size: contain;
      -webkit-mask-repeat: no-repeat;
      mask-repeat: no-repeat;
      -webkit-mask-position: center;
      mask-position: center;
      transition: transform .2s ease;
    }

    .text-link:hover::after {
      transform: translateX(5px);
    }

    .site-header {
      position: fixed;
      z-index: 100;
      top: 0;
      right: 0;
      left: 0;
      height: var(--header-height);
      border-bottom: 1px solid transparent;
      background: rgba(8, 10, 8, .88);
      backdrop-filter: blur(16px);
      transition: border-color .2s ease, background .2s ease;
    }

    .site-header.is-scrolled {
      border-bottom-color: var(--line);
      background: rgba(8, 10, 8, .96);
    }

    .header-inner {
      display: flex;
      height: 100%;
      align-items: center;
      justify-content: space-between;
      gap: 28px;
    }

    .brand {
      display: inline-flex;
      flex: 0 0 auto;
      align-items: center;
      gap: 10px;
      font-family: var(--display);
      font-size: 24px;
      letter-spacing: .04em;
      line-height: 1;
    }

    .brand-mark {
      position: relative;
      width: 26px;
      height: 26px;
      border: 2px solid var(--accent);
      transform: skewX(-10deg);
    }

    .brand-mark::before,
    .brand-mark::after {
      position: absolute;
      background: var(--accent);
      content: "";
    }

    .brand-mark::before {
      top: 5px;
      bottom: 5px;
      left: 6px;
      width: 2px;
    }

    .brand-mark::after {
      top: 11px;
      right: 5px;
      left: 6px;
      height: 2px;
    }

    .brand span {
      color: var(--accent);
    }

    .brand-logo {
      display: block;
      width: 94px;
      height: 58px;
      object-fit: contain;
    }

    .desktop-nav {
      display: flex;
      flex: 1 1 auto;
      align-items: center;
      justify-content: center;
      gap: clamp(14px, 1.8vw, 28px);
    }

    .desktop-nav a {
      position: relative;
      color: #c7cbc3;
      font-size: 12px;
      font-weight: 800;
      letter-spacing: .04em;
      text-transform: uppercase;
      white-space: nowrap;
    }

    .desktop-nav a::after {
      position: absolute;
      right: 0;
      bottom: -8px;
      left: 0;
      height: 1px;
      background: var(--accent);
      content: "";
      transform: scaleX(0);
      transform-origin: right;
      transition: transform .2s ease;
    }

    .desktop-nav a:hover::after {
      transform: scaleX(1);
      transform-origin: left;
    }

    .desktop-nav a:hover,
    .desktop-nav a:focus-visible,
    .mobile-menu nav > a:hover,
    .mobile-menu nav > a:focus-visible,
    .footer-column a:hover,
    .footer-column a:focus-visible,
    .social-link:hover,
    .social-link:focus-visible {
      color: #b7ff2a;
    }

    .header-actions {
      display: flex;
      flex: 0 0 auto;
      align-items: center;
      gap: 12px;
    }

    .cart-button,
    .menu-button {
      position: relative;
      display: inline-grid;
      width: 44px;
      height: 44px;
      place-items: center;
      padding: 0;
      border: 1px solid var(--line);
      border-radius: 0;
      background: var(--panel);
      line-height: 1;
      cursor: pointer;
      transition: border-color .2s ease, color .2s ease;
    }

    .cart-button:hover,
    .menu-button:hover {
      border-color: var(--accent);
      color: var(--accent);
    }

    .cart-count {
      position: absolute;
      top: -7px;
      right: -7px;
      display: grid;
      min-width: 20px;
      height: 20px;
      place-items: center;
      padding: 0 5px;
      border: 2px solid var(--bg);
      border-radius: 99px;
      background: var(--accent);
      color: #080a08;
      font-size: 10px;
      font-weight: 900;
    }

    .menu-button {
      display: none;
    }

    .menu-button span,
    .menu-button::before,
    .menu-button::after {
      position: absolute;
      width: 20px;
      height: 2px;
      background: currentColor;
      content: "";
      transition: transform .2s ease, opacity .2s ease;
    }

    .menu-button::before {
      transform: translateY(-6px);
    }

    .menu-button::after {
      transform: translateY(6px);
    }

    .menu-button.is-open span {
      opacity: 0;
    }

    .menu-button.is-open::before {
      transform: rotate(45deg);
    }

    .menu-button.is-open::after {
      transform: rotate(-45deg);
    }

    .mobile-menu {
      position: fixed;
      z-index: 99;
      top: var(--header-height);
      right: 0;
      bottom: 0;
      left: 0;
      display: none;
      padding: 28px 20px 100px;
      background: rgba(8, 10, 8, .98);
      overflow-y: auto;
    }

    .mobile-menu.is-open {
      display: block;
    }

    .mobile-menu nav {
      display: grid;
      border-top: 1px solid var(--line);
    }

    .mobile-menu a {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 17px 0;
      border-bottom: 1px solid var(--line);
      font-family: var(--display);
      font-size: 28px;
      letter-spacing: .03em;
      text-transform: uppercase;
    }

    .mobile-menu a::after {
      content: "";
      display: inline-block;
      width: 18px;
      height: 18px;
      background-color: var(--accent);
      -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 18L18 6M18 6H10M18 6V14' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
      mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 18L18 6M18 6H10M18 6V14' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
      -webkit-mask-size: contain;
      mask-size: contain;
      -webkit-mask-repeat: no-repeat;
      mask-repeat: no-repeat;
      -webkit-mask-position: center;
      mask-position: center;
    }

    .mobile-menu .button {
      margin-top: 24px;
    }

    .hero {
      position: relative;
      min-height: 100vh;
      min-height: 100svh;
      padding: calc(var(--header-height) + 72px) 0 48px;
      background: #080a08;
      overflow: hidden;
    }

    .hero::before {
      position: absolute;
      top: 20%;
      left: -110px;
      width: 220px;
      height: 360px;
      border: 1px solid #1c221b;
      content: "";
      transform: rotate(18deg);
    }

    .hero::after {
      position: absolute;
      right: 42%;
      bottom: 0;
      width: 1px;
      height: 58%;
      background: #20251f;
      content: "";
      transform: rotate(12deg);
      transform-origin: bottom;
    }

    .hero-grid {
      position: relative;
      z-index: 2;
      display: grid;
      min-height: 650px;
      grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
      align-items: center;
      gap: 20px;
    }

    .hero-content {
      position: relative;
      z-index: 3;
      padding: 28px 0 40px;
    }

    .hero-kicker {
      display: flex;
      align-items: center;
      gap: 12px;
      margin: 0 0 22px;
      color: var(--accent);
      font-size: 12px;
      font-weight: 900;
      letter-spacing: .16em;
      text-transform: uppercase;
    }

    .hero-kicker::before {
      width: 50px;
      height: 2px;
      background: var(--accent);
      content: "";
    }

    .hero h1 {
      max-width: 800px;
      margin: 0;
      font-family: var(--display);
      font-size: clamp(58px, 7.5vw, 108px);
      font-weight: 900;
      letter-spacing: .005em;
      line-height: 1;
      text-transform: uppercase;
    }

    .hero h1 span {
      display: block;
      color: var(--accent);
      /* -webkit-text-stroke: 1px var(--accent); */
    }

    .hero h1 em {
      display: block;
      font-style: normal;
    }

    .hero-copy {
      max-width: 630px;
      margin: 28px 0 0;
      color: #c6cbc1;
      font-size: clamp(16px, 1.6vw, 20px);
    }

    .hero-copy__accent{
      display: inline;
      color: var(--accent);
      -webkit-text-stroke: 0;
    }

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

    .hero-proof {
      display: flex;
      flex-wrap: wrap;
      gap: 0;
      margin-top: 42px;
    }

    .hero-proof-item {
      min-width: 154px;
      padding: 4px 24px 4px 0;
      margin-right: 24px;
      border-right: 1px solid var(--line);
    }

    .hero-proof-item:last-child {
      margin-right: 0;
      border-right: 0;
    }

    .hero-proof strong {
      display: block;
      color: var(--accent);
      font-family: var(--display);
      font-size: 34px;
      letter-spacing: .02em;
      line-height: 1;
    }

    .hero-proof span {
      display: block;
      margin-top: 5px;
      color: var(--muted);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .05em;
      text-transform: uppercase;
    }

    .hero-visual {
      position: absolute;
      z-index: 1;
      top: 0;
      right: 0;
      bottom: 0;
      width: 48%;
      min-width: 520px;
      overflow: hidden;
    }

    /* .hero-visual::before {
      position: absolute;
      z-index: 2;
      top: 12%;
      right: 8%;
      width: 74%;
      height: 74%;
      border: 1px solid rgba(183, 255, 42, .42);
      content: "";
      transform: skewX(-7deg);
      box-shadow: 0 0 70px rgba(183, 255, 42, .09);
    } */

    .hero-visual::after {
      display: none;
      position: absolute;
      z-index: 3;
      right: 0;
      bottom: 0;
      width: 100%;
      height: 34%;
      background: rgba(8, 10, 8, .72);
      content: "";
    }

    .hero-visual img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: right center;
      /* filter: contrast(1.15) brightness(.72); */
      /* opacity: .92; */
      clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
    }

    .hero-word {
      position: absolute;
      z-index: 4;
      right: -6px;
      bottom: 34px;
      color: transparent;
      font-family: var(--display);
      font-size: clamp(84px, 11vw, 170px);
      letter-spacing: .02em;
      line-height: .8;
      -webkit-text-stroke: 1px rgba(183, 255, 42, .3);
      writing-mode: vertical-rl;
      opacity: .55;
    }

    .ticker {
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
      background: #fefefeff;
      color: #080a08;
      overflow: hidden;
    }

    .ticker-track {
      display: flex;
      width: max-content;
      animation: ticker 24s linear infinite;
    }

    .ticker-group {
      display: flex;
      min-width: 100vw;
      flex-shrink: 0;
    }

    .ticker-item {
      display: flex;
      flex-shrink: 0;
      align-items: center;
      gap: 22px;
      padding: 14px 22px;
      font-family: var(--display);
      font-size: 20px;
      letter-spacing: .05em;
      text-transform: uppercase;
      white-space: nowrap;
    }

    .ticker-item::after {
      content: "✦";
      font-family: var(--body);
      font-size: 15px;
    }

    @keyframes ticker {
      to {
        transform: translateX(-50%);
      }
    }

    .direction-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 22px;
    }

    .direction-card {
      position: relative;
      display: flex;
      min-height: 430px;
      flex-direction: column;
      border: 1px solid var(--line);
      background:
        radial-gradient(circle at 88% 8%, rgba(183, 255, 42, .12), transparent 28%),
        linear-gradient(145deg, #121612 0%, #0b0e0b 70%);
      overflow: hidden;
      isolation: isolate;
      transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
    }

    .direction-card::before {
      position: absolute;
      z-index: -1;
      right: -70px;
      bottom: -110px;
      width: 240px;
      height: 240px;
      border: 42px solid rgba(183, 255, 42, .06);
      content: "";
      transform: rotate(18deg);
      transition: border-color .25s ease, transform .25s ease;
    }

    .direction-card::after {
      position: absolute;
      top: 0;
      right: 0;
      left: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--accent), transparent 72%);
      content: "";
      transform: scaleX(.28);
      transform-origin: left;
      transition: transform .25s ease;
    }

    .direction-card:hover {
      border-color: rgba(183, 255, 42, .65);
      box-shadow: 0 18px 50px rgba(0, 0, 0, .24), 0 0 38px rgba(183, 255, 42, .07);
      transform: translateY(-6px);
    }

    .direction-card:hover::before {
      border-color: rgba(183, 255, 42, .12);
      transform: rotate(24deg) scale(1.08);
    }

    .direction-card:hover::after {
      transform: scaleX(1);
    }

    .direction-card-top {
      display: flex;
      min-height: 198px;
      align-items: flex-start;
      justify-content: space-between;
      gap: 24px;
      padding: 28px 30px 0;
    }

    .direction-card-top > * {
      position: relative;
      z-index: 1;
    }

    .direction-card-label {
      display: inline-flex;
      min-height: 30px;
      align-items: center;
      padding: 0 12px;
      border: 1px solid rgba(183, 255, 42, .3);
      color: var(--accent);
      font-size: 10px;
      font-weight: 900;
      letter-spacing: .13em;
      text-transform: uppercase;
    }

    .direction-card-icon {
      display: grid;
      width: 108px;
      height: 142px;
      flex: 0 0 108px;
      place-items: center;
      overflow: hidden;
      filter: drop-shadow(0 0 12px rgba(183, 255, 42, .22));
      transition: transform .25s ease;
    }

    .direction-card:hover .direction-card-icon {
      transform: translateY(-3px) scale(1.04);
    }

    .direction-card-icon img {
      display: block;
      width: auto;
      max-width: 100%;
      height: 138px;
      object-fit: contain;
      object-position: center top;
    }

    .direction-card-content {
      position: relative;
      z-index: 1;
      flex: 1;
      padding: 22px 30px 30px;
    }

    .direction-card h3 {
      margin: 0 0 24px;
      font-family: var(--display);
      font-size: clamp(38px, 4vw, 58px);
      letter-spacing: .02em;
      line-height: .95;
      text-transform: uppercase;
    }

    .direction-card ul {
      display: grid;
      margin: 0;
      padding: 0;
      gap: 11px;
      list-style: none;
    }

    .direction-card li {
      display: flex;
      align-items: center;
      gap: 10px;
      color: var(--muted);
      font-size: 15px;
      line-height: 1.35;
    }

    .direction-card li a {
      color: inherit;
      text-decoration: none;
      transition: color .2s ease;
    }

    .direction-card li a:hover,
    .direction-card li a:focus-visible {
      color: var(--accent);
    }

    .direction-card li::before {
      width: 7px;
      height: 7px;
      flex: 0 0 7px;
      background: var(--accent);
      box-shadow: 0 0 10px rgba(183, 255, 42, .45);
      content: "";
      transform: rotate(45deg);
    }

    .direction-card li.direction-card-plus::before {
      content: none;
    }

    .direction-card-plus i,
    .direction-card-plus svg {
      display: block;
      width: 7px;
      height: 7px;
      flex: 0 0 7px;
      color: var(--accent);
      stroke-width: 1.6;
      filter: drop-shadow(0 0 5px rgba(183, 255, 42, .45));
      transform: scale(2.55);
      transform-origin: center;
      overflow: visible;
    }

    .direction-card-plus svg * {
      stroke-width: 1.6;
    }

    .direction-card-button {
      z-index: 1;
      width: calc(100% - 60px);
      margin: 0 30px 30px;
      justify-content: space-between;
    }

    .premium-banner {
      position: relative;
      display: grid;
      margin-top: 18px;
      /* grid-template-columns: 1.25fr .75fr; */
      border: 1px solid var(--accent);
      background: var(--accent);
      color: #080a08;
      overflow: hidden;
    }

    .premium-banner::after {
      position: absolute;
      top: -120px;
      right: 18%;
      width: 180px;
      height: 420px;
      border: 28px solid rgba(8, 10, 8, .1);
      content: "";
      transform: rotate(22deg);
    }

    .premium-banner-content {
      position: relative;
      z-index: 2;
      padding: 52px;
    }

    .premium-banner .eyebrow {
      margin: 0 0 18px;
      font-size: 11px;
      font-weight: 900;
      letter-spacing: .16em;
      text-transform: uppercase;
    }

    .premium-banner h3 {
      /* max-width: 700px; */
      margin: 0;
      font-family: var(--display);
      font-size: clamp(42px, 6vw, 84px);
      letter-spacing: .01em;
      line-height: .9;
      text-transform: uppercase;
    }

    .premium-banner p {
      /* max-width: 720px; */
      margin: 22px 0 30px;
      font-size: 18px;
    }

    .premium-banner-meta {
      position: relative;
      z-index: 2;
      display: grid;
      justify-items: start;
      align-content: center;
      padding: 42px;
      border-left: 1px solid rgba(8, 10, 8, .24);
      background: rgba(8, 10, 8, .08);
    }

    .premium-banner-icon {
      width: 74px;
      height: 90px;
      margin-bottom: 22px;
      object-fit: contain;
      filter: brightness(.1);
    }

    .premium-banner-meta strong {
      font-family: var(--display);
      font-size: 50px;
      line-height: .9;
    }

    .premium-banner-meta span {
      max-width: 260px;
      margin-top: 10px;
      font-size: 13px;
      font-weight: 800;
      letter-spacing: .06em;
      text-transform: uppercase;
    }

    .shop-shortcuts {
      display: grid;
      margin-top: 22px;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 22px;
    }

    .shop-shortcut {
      position: relative;
      display: flex;
      min-height: 330px;
      flex-direction: column;
      align-items: stretch;
      gap: 24px;
      padding: 30px;
      border: 1px solid var(--line);
      background:
        linear-gradient(145deg, rgba(183, 255, 42, .045), transparent 48%),
        #0c0f0c;
      overflow: hidden;
      isolation: isolate;
      transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
    }

    .shop-shortcut[data-card-href="/"],
    .shop-shortcut[data-card-href="/supplements"] {
      grid-column: 1 / -1;
    }

    @media (min-width: 961px) {
      .shop-shortcut[data-card-href="/"],
      .shop-shortcut[data-card-href="/supplements"] {
        display: grid;
        min-height: 330px;
        grid-template-columns: minmax(0, .72fr) minmax(170px, .28fr);
        grid-template-areas:
          "label icon"
          "title icon"
          "copy icon"
          "button button";
        column-gap: clamp(36px, 6vw, 110px);
        row-gap: 22px;
        align-items: start;
      }

      .shop-shortcut[data-card-href="/"] .shop-shortcut-label,
      .shop-shortcut[data-card-href="/supplements"] .shop-shortcut-label {
        grid-area: label;
        margin-bottom: -8px;
      }

      .shop-shortcut[data-card-href="/"] .shop-shortcut-head,
      .shop-shortcut[data-card-href="/supplements"] .shop-shortcut-head {
        display: contents;
      }

      .shop-shortcut[data-card-href="/"] h3,
      .shop-shortcut[data-card-href="/supplements"] h3 {
        max-width: 760px;
        grid-area: title;
        font-size: clamp(44px, 4.7vw, 76px);
      }

      .shop-shortcut[data-card-href="/"] p,
      .shop-shortcut[data-card-href="/supplements"] p {
        max-width: 850px;
        grid-area: copy;
        font-size: 17px;
        line-height: 1.58;
      }

      .shop-shortcut[data-card-href="/"] .shortcut-symbol,
      .shop-shortcut[data-card-href="/supplements"] .shortcut-symbol {
        width: clamp(96px, 10vw, 150px);
        height: clamp(96px, 10vw, 150px);
        grid-area: icon;
        justify-self: center;
        align-self: center;
      }

      .shop-shortcut[data-card-href="/"] .shortcut-symbol svg {
        width: clamp(72px, 7vw, 112px);
        height: clamp(72px, 7vw, 112px);
      }

      .shop-shortcut[data-card-href="/"] > .button,
      .shop-shortcut[data-card-href="/supplements"] > .button {
        grid-area: button;
      }
    }

    .shop-shortcut::before {
      position: absolute;
      z-index: -1;
      right: -82px;
      bottom: -105px;
      width: 210px;
      height: 210px;
      border: 34px solid rgba(183, 255, 42, .045);
      content: "";
      transform: rotate(18deg);
      transition: border-color .25s ease, transform .25s ease;
    }

    .shop-shortcut::after {
      position: absolute;
      top: 0;
      right: 0;
      left: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--accent), transparent 72%);
      content: "";
      transform: scaleX(.2);
      transform-origin: left;
      transition: transform .25s ease;
    }

    .shop-shortcut:hover {
      border-color: rgba(183, 255, 42, .65);
      box-shadow: 0 18px 50px rgba(0, 0, 0, .2), 0 0 34px rgba(183, 255, 42, .06);
      transform: translateY(-5px);
    }

    .shop-shortcut:hover::before {
      border-color: rgba(183, 255, 42, .1);
      transform: rotate(24deg) scale(1.06);
    }

    .shop-shortcut:hover::after {
      transform: scaleX(1);
    }

    .shop-shortcut-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .shop-shortcut-label {
      display: block;
      margin-bottom: -12px;
      color: var(--accent);
      font-size: 10px;
      font-weight: 900;
      letter-spacing: .13em;
      text-transform: uppercase;
    }

    .shop-shortcut h3 {
      max-width: 360px;
      margin: 0;
      font-family: var(--display);
      font-size: clamp(32px, 3vw, 44px);
      letter-spacing: .01em;
      text-transform: uppercase;
      line-height: .98;
    }

    .shop-shortcut p {
      position: relative;
      z-index: 1;
      width: 100%;
      max-width: 560px;
      margin: 0;
      color: var(--muted);
      font-size: 15px;
      line-height: 1.6;
    }

    .shop-shortcut > .button {
      z-index: 1;
      width: 100%;
      margin-top: auto;
      justify-content: space-between;
    }

    [data-card-action] {
      cursor: pointer;
    }

    .shortcut-symbol {
      display: grid;
      width: 82px;
      height: 82px;
      flex: 0 0 82px;
      place-items: center;
      filter: drop-shadow(0 0 8px rgba(183, 255, 42, .2));
      transition: transform .25s ease;
    }

    .shop-shortcut:hover .shortcut-symbol {
      transform: translateY(-3px);
    }

    .shortcut-symbol img {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }

    .shortcut-symbol svg {
      width: 58px;
      height: 58px;
      color: var(--accent);
      stroke-width: 1.8;
    }

    .about {
      border-top: 1px solid var(--line);
      background: #0b0e0b;
      overflow: hidden;
    }

    .about-grid {
      display: grid;
      grid-template-columns: minmax(340px, .78fr) minmax(0, 1.22fr);
      gap: clamp(50px, 7vw, 100px);
      align-items: center;
    }

    .about-photo {
      position: relative;
      height: 650px;
      border: 1px solid var(--line);
    }

    .about-photo::before {
      position: absolute;
      z-index: 2;
      right: -18px;
      bottom: -18px;
      width: 55%;
      height: 46%;
      border-right: 2px solid var(--accent);
      border-bottom: 2px solid var(--accent);
      content: "";
    }

    .about-photo::after {
      position: absolute;
      z-index: 2;
      top: 30px;
      left: -18px;
      padding: 10px 14px;
      background: var(--accent);
      color: #080a08;
      content: "COACH • FITNESS • TRAINER";
      font-size: 10px;
      font-weight: 900;
      letter-spacing: .14em;
      transform: rotate(-90deg) translateX(-100%);
      transform-origin: left top;
    }

    .about-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: 48% 35%;
      /* filter: grayscale(1) contrast(1.12) brightness(.72); */
    }

    .about-copy .section-title {
      font-size: clamp(44px, 5.5vw, 76px);
    }

    .about-facts {
      display: grid;
      margin: 34px 0 0;
      padding: 0;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      border-top: 1px solid var(--line);
      border-left: 1px solid var(--line);
      list-style: none;
    }

    .about-facts li {
      display: flex;
      min-height: 150px;
      flex-direction: column;
      justify-content: space-between;
      gap: 24px;
      padding: 22px;
      border-right: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
      background: linear-gradient(145deg, rgba(183, 255, 42, .06), transparent 55%);
      color: #fff;
      font-size: 17px;
      font-weight: 700;
      line-height: 1.35;
      transition: border-color .2s ease, background .2s ease, transform .2s ease;
    }

    .about-facts li:hover {
      z-index: 1;
      border-color: var(--accent);
      background: rgba(183, 255, 42, .1);
      transform: translateY(-4px);
    }

    .about-fact-icon {
      display: grid;
      width: 46px;
      height: 46px;
      border: 1px solid rgba(183, 255, 42, .35);
      background: rgba(183, 255, 42, .08);
      color: var(--accent);
      place-items: center;
    }

    .about-fact-icon svg {
      width: 24px;
      height: 24px;
      stroke-width: 1.8;
    }

    .about-quote {
      position: relative;
      max-width: 680px;
      margin: 28px 0 0;
      padding: 28px 30px 28px 66px;
      border-left: 3px solid var(--accent);
      background: var(--panel);
    }

    .about-quote::before {
      position: absolute;
      top: 14px;
      left: 22px;
      color: var(--accent);
      content: "“";
      font-family: Georgia, serif;
      font-size: 62px;
      line-height: 1;
    }

    .about-quote p {
      margin: 0;
      color: #fff;
      font-size: 18px;
      font-weight: 600;
      line-height: 1.55;
    }

    .about-name,
    .about-tagline {
      display: block;
    }

    .about-tagline {
      max-width: 680px;
      margin-top: 14px;
      font-size: .5em;
      line-height: 1.08;
      font-weight: 400;
    }

    .about-copy > p:not(.section-label) {
      max-width: 650px;
      margin: 26px 0 0;
      color: var(--muted);
      font-size: 18px;
    }

    .credentials {
      display: grid;
      margin-top: 42px;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      border-top: 1px solid var(--line);
      border-left: 1px solid var(--line);
    }

    .credential {
      /* min-height: 128px; */
      padding: 22px;
      border-right: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }

    .credential strong {
      display: block;
      color: var(--accent);
      font-family: var(--display);
      font-size: 34px;
      line-height: 1;
    }

    .credential span {
      display: block;
      margin-top: 10px;
      color: #d1d5cd;
      font-size: 12px;
      font-weight: 800;
      letter-spacing: .05em;
      line-height: 1.35;
      text-transform: uppercase;
    }

    .program-tabs {
      display: flex;
      width: fit-content;
      margin-bottom: 30px;
      border: 1px solid var(--line);
    }

    .tab-button {
      min-width: 180px;
      min-height: 52px;
      padding: 0 22px;
      border: 0;
      border-right: 1px solid var(--line);
      background: transparent;
      color: var(--muted);
      font-size: 12px;
      font-weight: 900;
      letter-spacing: .08em;
      text-transform: uppercase;
      cursor: pointer;
    }

    .tab-button:last-child {
      border-right: 0;
    }

    .tab-button.is-active {
      background: var(--accent);
      color: #080a08;
    }

    .program-panel {
      display: none;
    }

    .program-panel.is-active {
      display: block;
    }

    .program-grid {
      display: grid;
      grid-template-columns: repeat(5, minmax(0, 1fr));
      /* border-top: 1px solid var(--line);
      border-left: 1px solid var(--line); */
    }

    .program-card {
      position: relative;
      display: flex;
      min-height: 460px;
      flex-direction: column;
      padding: 28px;
      border-right: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
      border-top: 1px solid var(--line);
      border-left: 1px solid var(--line);
      background: var(--panel);
      isolation: isolate;
      overflow: hidden;
      transition: background .2s ease;
    }

    .program-card:hover {
      background: var(--panel-light);
    }

    .program-card::before {
      position: absolute;
      top: -52px;
      right: -52px;
      width: 110px;
      height: 110px;
      border: 18px solid #252c24;
      content: "";
      transform: rotate(32deg);
      z-index: 0;
      pointer-events: none;
    }

    .program-card > * {
      position: relative;
      z-index: 1;
    }

    .program-number {
      color: var(--accent);
      font-family: var(--display);
      font-size: 16px;
      letter-spacing: .08em;
    }

    .program-card h3 {
      position: relative;
      margin: 54px 0 14px;
      font-family: var(--display);
      font-size: 34px;
      line-height: .98;
      text-transform: uppercase;
    }

    .program-card > p {
      margin: 0;
      color: var(--muted);
      font-size: 14px;
    }

    .program-list {
      margin: 24px 0 28px;
      padding: 22px 0;
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }

    .program-list-accordion summary {
      display: none;
    }

    .program-list-answer {
      display: block;
    }

    .program-list-answer p {
      color: var(--muted);
    }

    .program-list-answer ul {
      display: grid;
      gap: 9px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .program-list-answer li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      color: #d4d8d0;
      font-size: 13px;
      line-height: 1.5;
    }

    .program-list-answer li::before {
      content: none;
    }

    .program-list-icon {
      width: 15px;
      height: 15px;
      flex: 0 0 15px;
      margin-top: 2px;
      color: var(--accent);
      stroke-width: 3;
    }

    .program-list-answer li > span {
      display: inline;
      flex: 1 1 auto;
      min-width: 0;
    }

    .program-footer {
      display: flex;
      position: relative;
      width: 100%;
      flex-direction: column;
      align-items: stretch;
      gap: 14px;
      margin-top: auto;
    }

    .program-buy-button {
      width: 100%;
      min-height: 56px;
      justify-content: space-between;
      padding-inline: 18px;
    }

    .program-buy-button::after {
      display: none;
    }

    .program-buy-price {
      font-family: var(--display);
      font-size: 22px;
      line-height: 1;
      white-space: nowrap;
      margin-left: auto;
    }

    .program-cta {
      display: flex;
      justify-content: center;
      margin-top: 34px;
    }

    .program-kit {
      position: relative;
      border-top: 1px solid var(--line);
      background: #080a08;
      overflow: hidden;
    }

    .program-kit-head {
      margin-bottom: 42px;
    }

    .program-kit-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
    }

    .program-kit-item {
      position: relative;
      display: grid;
      min-height: 250px;
      align-content: space-between;
      padding: 30px;
      background: var(--panel);
      overflow: hidden;
      transition: background .2s ease, transform .2s ease;
    }

    .program-kit-item::before {
      position: absolute;
      top: -54px;
      right: -54px;
      width: 116px;
      height: 116px;
      border: 18px solid #252c24;
      content: "";
      opacity: .9;
      transform: rotate(28deg);
      transition: border-color .2s ease, transform .2s ease;
    }

    .program-kit-item:hover {
      background: var(--panel-light);
      transform: translateY(-3px);
    }

    .program-kit-item:hover::before {
      border-color: rgba(183, 255, 42, .38);
      transform: rotate(36deg) scale(1.04);
    }

    .program-kit-icon {
      position: relative;
      z-index: 1;
      display: grid;
      width: 64px;
      height: 64px;
      margin-bottom: 34px;
      place-items: center;
      color: var(--accent);
      filter: drop-shadow(0 0 10px rgba(183, 255, 42, .25));
    }

    .program-kit-icon i {
      display: block;
      width: 100%;
      height: 100%;
    }

    .program-kit-icon svg {
      width: 100%;
      height: 100%;
      fill: none;
      stroke: currentColor;
      stroke-linecap: round;
      stroke-linejoin: round;
      stroke-width: 2;
    }

    .program-kit-item h3 {
      position: relative;
      z-index: 1;
      margin: 0 0 12px;
      color: #f3f6ef;
      font-family: var(--display);
      font-size: clamp(28px, 2.7vw, 42px);
      font-weight: 400;
      letter-spacing: .02em;
      line-height: .92;
      text-transform: uppercase;
    }

    .program-kit-item p {
      position: relative;
      z-index: 1;
      max-width: 350px;
      margin: 0;
      color: #aeb6a9;
      font-size: 15px;
      line-height: 1.55;
    }

    .coaching {
      position: relative;
      min-height: 820px;
      display: flex;
      align-items: center;
      border-top: 1px solid #23301c;
      border-bottom: 1px solid #23301c;
      background: #070907 url("../images/bg_ind.webp") center 15%/cover no-repeat;
      overflow: hidden;
    }

    .coaching::before {
      position: absolute;
      inset: 0;
      background: rgba(6, 8, 6, .52);
      content: "";
    }

    .coaching::after {
      position: absolute;
      top: 0;
      right: 46%;
      bottom: 0;
      width: 1px;
      background: rgba(183, 255, 42, .24);
      content: "";
      transform: rotate(10deg);
    }

    .coaching-inner {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: 1.05fr .95fr;
      gap: 70px;
      align-items: center;
    }

    .coaching-copy {
      padding: 54px;
      border: 1px solid rgba(183, 255, 42, .5);
      background: rgba(8, 10, 8, .87);
      backdrop-filter: blur(10px);
      box-shadow: 0 0 60px rgba(183, 255, 42, .07);
    }

    .coaching-copy h2 {
      margin: 0;
      font-family: var(--display);
      font-size: clamp(50px, 6vw, 82px);
      line-height: .9;
      text-transform: uppercase;
    }

    .coaching-subtitle {
      margin: 8px 0 0;
      color: var(--accent);
      font-family: var(--display);
      font-size: clamp(42px, 5vw, 70px);
      line-height: .92;
      text-transform: uppercase;
    }

    .coaching-copy > p:not(.section-label):not(.coaching-subtitle) {
      margin: 24px 0 30px;
      color: #bdc4b8;
      font-size: 18px;
    }

    .coaching-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
    }

    .coaching-features {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      border-top: 1px solid rgba(183, 255, 42, .25);
      border-left: 1px solid rgba(183, 255, 42, .25);
      background: rgba(8, 10, 8, .72);
      backdrop-filter: blur(6px);
    }

    .coaching-feature {
      min-height: 150px;
      padding: 24px;
      border-right: 1px solid rgba(183, 255, 42, .25);
      border-bottom: 1px solid rgba(183, 255, 42, .25);
    }

    .coaching-feature strong {
      display: block;
      color: var(--accent);
      font-family: var(--display);
      font-size: 24px;
      line-height: 1;
      text-transform: uppercase;
    }

    .coaching-feature span {
      display: block;
      margin-top: 12px;
      color: #aab0a6;
      font-size: 13px;
    }

    .compare-note {
      grid-column: 1 / -1;
      padding: 22px 24px;
      border-right: 1px solid rgba(183, 255, 42, .25);
      border-bottom: 1px solid rgba(183, 255, 42, .25);
      color: var(--text);
      font-size: 15px;
      font-weight: 800;
      text-align: center;
    }

    .compare-note span {
      color: var(--accent);
    }

    .store {
      background: #0b0e0b;
    }

    .store-toolbar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      margin-bottom: 30px;
      padding: 18px;
      border: 1px solid var(--line);
      background: var(--panel);
    }

    .filters {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .filter-button {
      min-height: 38px;
      padding: 0 15px;
      border: 1px solid var(--line);
      background: transparent;
      color: var(--muted);
      font-size: 11px;
      font-weight: 800;
      letter-spacing: .05em;
      text-transform: uppercase;
      cursor: pointer;
    }

    .filter-button:hover,
    .filter-button.is-active {
      border-color: var(--accent);
      background: var(--accent);
      color: #080a08;
    }

    .store-note {
      color: var(--muted);
      font-size: 12px;
      white-space: nowrap;
    }

    .product-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 16px;
    }

    .product-card {
      display: flex;
      min-height: 500px;
      flex-direction: column;
      border: 1px solid var(--line);
      background: var(--panel);
      transition: border-color .2s ease, transform .2s ease;
    }

    .product-card.is-hidden {
      display: none;
    }

    .product-card:hover {
      border-color: #4b5c42;
      transform: translateY(-3px);
    }

    .product-visual {
      position: relative;
      display: grid;
      height: 260px;
      place-items: center;
      border-bottom: 1px solid var(--line);
      background: #0d100d;
      overflow: hidden;
    }

    .product-visual::before,
    .product-visual::after {
      display: none;
    }

    .product-visual .product-image {
      position: relative;
      z-index: 2;
      width: 100%;
      height: 100%;
      object-fit: contain;
      padding: 0;
    }

    .bottle {
      position: relative;
      z-index: 2;
      width: 104px;
      height: 154px;
      border: 2px solid #465040;
      border-radius: 13px 13px 24px 24px;
      background: #171c16;
      box-shadow: 18px 18px 0 #0a0c0a, 0 0 25px rgba(183, 255, 42, .06);
    }

    .bottle::before {
      position: absolute;
      top: -25px;
      left: 21px;
      width: 58px;
      height: 23px;
      border: 2px solid #465040;
      border-bottom: 0;
      background: #111510;
      content: "";
    }

    .bottle::after {
      position: absolute;
      top: 48px;
      right: 9px;
      left: 9px;
      height: 56px;
      border-top: 1px solid var(--accent);
      border-bottom: 1px solid var(--accent);
      background: #20271e;
      color: var(--accent);
      content: attr(data-label);
      font-family: var(--display);
      font-size: 22px;
      letter-spacing: .05em;
      line-height: 56px;
      text-align: center;
    }

    .bottle--bag {
      width: 122px;
      height: 150px;
      border-radius: 4px 4px 12px 12px;
      transform: skewX(-2deg);
    }

    .bottle--bag::before {
      top: 10px;
      left: 12px;
      width: 94px;
      height: 2px;
      border: 0;
      background: #596253;
    }

    .bottle--small {
      width: 84px;
      height: 132px;
      border-radius: 7px 7px 18px 18px;
    }

    .bottle--small::before {
      left: 16px;
      width: 48px;
    }

    .product-badge {
      position: absolute;
      z-index: 3;
      top: 14px;
      left: 14px;
      padding: 6px 9px;
      background: var(--accent);
      color: #080a08;
      font-size: 9px;
      font-weight: 900;
      letter-spacing: .1em;
      text-transform: uppercase;
    }

    .product-body {
      display: flex;
      flex: 1;
      flex-direction: column;
      padding: 24px;
    }

    .product-category {
      margin: 0 0 8px;
      color: var(--accent);
      font-size: 10px;
      font-weight: 900;
      letter-spacing: .12em;
      text-transform: uppercase;
    }

    .product-card h3 {
      margin: 0;
      font-family: var(--display);
      font-size: 28px;
      line-height: 1;
      text-transform: uppercase;
    }

    .product-description {
      margin: 14px 0 22px;
      color: var(--muted);
      font-size: 13px;
    }

    .product-bottom {
      display: grid;
      grid-template-columns: 1fr auto;
      grid-template-areas:
        "price cart"
        "details details";
      align-items: center;
      gap: 18px 12px;
      margin-top: auto;
    }

    .product-price {
      grid-area: price;
      font-family: var(--display);
      font-size: 28px;
      line-height: 1;
      white-space: nowrap;
    }

    .product-actions {
      display: contents;
    }

    .product-actions .text-link {
      grid-area: details;
      justify-self: start;
      padding: 0;
    }

    .product-actions .add-cart {
      grid-area: cart;
    }

    .add-cart {
      display: grid;
      width: 46px;
      height: 46px;
      place-items: center;
      border: 1px solid var(--accent);
      background: var(--accent);
      color: #080a08;
      cursor: pointer;
      transition: box-shadow .2s ease, transform .2s ease;
    }

    .add-cart:hover {
      box-shadow: 0 0 25px rgba(183, 255, 42, .2);
      transform: translateY(-2px);
    }

    .results {
      overflow: hidden;
    }

    .results-carousel {
      position: relative;
      overflow: visible;
      padding-bottom: 58px;
    }

    .results-carousel .results-grid {
      display: flex;
      align-items: flex-start;
      gap: 0;
    }

    .results-carousel .result-card {
      position: relative;
      display: block;
      height: auto;
      border: 1px solid var(--line);
      background: var(--panel);
      overflow: hidden;
      transition: border-color .2s ease, transform .2s ease;
    }

    .results-carousel .result-card:hover {
      border-color: var(--accent);
      transform: translateY(-4px);
    }

    .result-visual {
      position: relative;
      aspect-ratio: 1 / 1;
      background: #0c0f0c;
      overflow: hidden;
    }

    .result-visual::after {
      position: absolute;
      z-index: 1;
      top: 0;
      bottom: 0;
      left: 50%;
      width: 4px;
      background: var(--accent);
      box-shadow: 0 0 14px rgba(183, 255, 42, .35);
      content: "";
      pointer-events: none;
      transform: translateX(-50%);
    }

    .result-visual img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
    }

    .result-labels {
      position: absolute;
      z-index: 2;
      top: 20px;
      right: 20px;
      left: 20px;
      display: flex;
      justify-content: space-between;
      pointer-events: none;
    }

    .result-labels span {
      padding: 7px 10px;
      background: #080a08;
      color: #f4f6f0;
      font-size: 10px;
      font-weight: 900;
      letter-spacing: .08em;
      text-transform: uppercase;
    }

    .result-labels span:last-child {
      background: var(--accent);
      color: #080a08;
    }

    .results-carousel-controls {
      position: absolute;
      right: 0;
      bottom: 0;
      left: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 18px;
    }

    .results-carousel-button {
      display: inline-grid;
      width: 42px;
      height: 42px;
      place-items: center;
      border: 1px solid var(--line);
      background: #080a08;
      color: var(--text);
      cursor: pointer;
      transition: border-color .2s ease, background .2s ease, color .2s ease;
    }

    .results-carousel-button span {
      margin-top: -2px;
      font-size: 34px;
      line-height: 1;
    }

    .results-carousel-button:hover {
      border-color: var(--accent);
      background: var(--accent);
      color: #080a08;
    }

    .results-carousel-button.swiper-button-disabled {
      opacity: .35;
      cursor: default;
      pointer-events: none;
    }

    .results-carousel-pagination {
      position: static;
      display: flex;
      width: auto !important;
      align-items: center;
      gap: 8px;
    }

    .results-carousel-pagination .swiper-pagination-bullet {
      width: 8px;
      height: 8px;
      margin: 0 !important;
      border-radius: 999px;
      background: #4a5148;
      opacity: 1;
    }

    .results-carousel-pagination .swiper-pagination-bullet-active {
      width: 22px;
      background: var(--accent);
    }

    .results-carousel,
    .results-carousel .swiper-wrapper,
    .results-carousel .swiper-slide,
    .results-carousel .result-card,
    .results-carousel .result-visual,
    .results-carousel .result-visual img {
      width: 100%;
      max-width: 100%;
    }

    .results-carousel {
      overflow: hidden;
    }

    .results-carousel .swiper-wrapper {
      height: auto !important;
      align-items: flex-start;
    }

    .results-carousel .result-card {
      display: block;
      align-self: flex-start;
      height: auto;
      min-width: 0;
      min-height: 0;
      grid-template-columns: none;
    }

    @media (max-width: 720px) {
      .results-carousel {
        margin-right: 0;
        margin-left: 0;
        padding-bottom: 62px;
      }

      .results-carousel .swiper-wrapper {
        gap: 0;
      }

      .results-carousel .result-card {
        box-sizing: border-box;
      }

      .results-carousel .result-visual {
        height: auto;
        min-height: 0;
        aspect-ratio: 1 / 1;
      }
    }
    .disclaimer {
      margin: 22px 0 0;
      color: #6f766c;
      font-size: 11px;
    }

    .testimonials {
        /* border-top: 1px solid var(--line);
        border-bottom: 1px solid var(--line);
        background: #0b0e0b; */
    }

    .testimonial-grid--legacy {
      display: none;
    }

    .testimonial-wall {
      --wall-gap: 18px;
      --card-width: clamp(280px, 28vw, 380px);
      --testimonial-set-width: max(100vw, calc((var(--card-width) * 4) + (var(--wall-gap) * 4)));
      position: relative;
      display: flex;
      flex-direction: column;
      gap: var(--wall-gap);
      margin-top: 38px;
      padding: var(--wall-gap) 0;
      overflow: hidden;
      border: 1px solid var(--line);
      background:
        radial-gradient(circle at 18% 24%, rgba(186, 255, 62, .08), transparent 26%),
        linear-gradient(180deg, rgba(255, 255, 255, .03), rgba(255, 255, 255, 0));
      isolation: isolate;
      -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
      mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
    }

    .testimonial-wall::before,
    .testimonial-wall::after {
      position: absolute;
      z-index: 3;
      top: 0;
      bottom: 0;
      width: 120px;
      pointer-events: none;
      content: "";
    }

    .testimonial-wall::before {
      left: 0;
      background: linear-gradient(90deg, #0b0e0b, rgba(11, 14, 11, 0));
    }

    .testimonial-wall::after {
      right: 0;
      background: linear-gradient(270deg, #0b0e0b, rgba(11, 14, 11, 0));
    }

    .testimonial-column {
      position: relative;
      width: 100%;
      min-width: 0;
      overflow: hidden;
    }

    .testimonial-track {
      display: flex;
      width: calc(var(--testimonial-set-width) * 2);
      flex-direction: row;
      animation: testimonialWall var(--duration, 34s) linear infinite;
      animation-delay: var(--delay, 0s);
      will-change: transform;
    }

    .testimonial-set {
      display: flex;
      width: var(--testimonial-set-width);
      flex: 0 0 var(--testimonial-set-width);
      flex-direction: row;
      gap: var(--wall-gap);
      padding-right: var(--wall-gap);
    }

    .testimonial-column--1 {
      --duration: 38s;
      --delay: -4s;
    }

    .testimonial-column--2 {
      --duration: 44s;
      --delay: -13s;
    }

    .testimonial-column--2 .testimonial-track,
    .testimonial-column--4 .testimonial-track {
      animation-direction: reverse;
    }

    .testimonial-column--3 {
      --duration: 36s;
      --delay: -8s;
    }

    .testimonial-column--4 {
      --duration: 48s;
      --delay: -20s;
    }

    .testimonial-wall-card {
      flex: 0 0 var(--card-width);
      min-height: 220px;
      padding: clamp(20px, 2vw, 28px);
      border: 1px solid transparent;
      background: rgba(18, 23, 18, .92);
      box-shadow:
        inset 0 0 0 1px rgba(212, 255, 92, .2),
        0 22px 60px rgba(0, 0, 0, .24);
    }

    .testimonial-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
    }

    .client {
      display: flex;
      min-width: 0;
      align-items: center;
      gap: 12px;
    }

    .avatar {
      display: grid;
      width: 46px;
      height: 46px;
      flex: 0 0 46px;
      place-items: center;
      border: 1px solid var(--accent);
      background: #141914;
      color: var(--accent);
      font-family: var(--display);
      font-size: 20px;
    }

    .client strong {
      display: block;
      color: #f3f7ef;
      font-size: 14px;
      line-height: 1.2;
    }

    .client span {
      display: block;
      margin-top: 3px;
      color: var(--accent);
      font-size: 9px;
      font-weight: 900;
      letter-spacing: .1em;
      line-height: 1.1;
      text-transform: uppercase;
    }

    .stars {
      flex: 0 0 auto;
      color: var(--accent);
      font-size: 12px;
      letter-spacing: 2px;
    }

    .testimonial-wall-card blockquote {
      margin: 30px 0 0;
      color: #d5d9d1;
      font-size: clamp(15px, 1.25vw, 17px);
      line-height: 1.65;
    }

    .testimonial-wall-card blockquote::before {
      display: block;
      margin-bottom: 10px;
      color: var(--accent);
      content: "“";
      font-family: Georgia, serif;
      font-size: 48px;
      line-height: .5;
    }

    @keyframes testimonialWall {
      from {
        transform: translate3d(0, 0, 0);
      }

      to {
        transform: translate3d(calc(var(--testimonial-set-width) * -1), 0, 0);
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .testimonial-track {
        animation-play-state: paused;
      }
    }

    .faq-grid {
      display: grid;
      grid-template-columns: .7fr 1.3fr;
      gap: 70px;
      align-items: start;
    }

    .faq-intro {
      position: sticky;
      top: calc(var(--header-height) + 24px);
    }

    .faq-list {
      border-top: 1px solid var(--line);
    }

    .faq-item {
      border-bottom: 1px solid var(--line);
    }

    .faq-item summary {
      position: relative;
      padding: 24px 58px 24px 0;
      cursor: pointer;
      font-size: 17px;
      font-weight: 800;
      list-style: none;
    }

    .faq-item summary::-webkit-details-marker {
      display: none;
    }

    .faq-item summary::before,
    .faq-item summary::after {
      position: absolute;
      top: 50%;
      right: 8px;
      width: 20px;
      height: 2px;
      background: var(--accent);
      content: "";
      transition: transform .2s ease;
    }

    .faq-item summary::after {
      transform: rotate(90deg);
    }

    .faq-item[open] summary::after {
      transform: rotate(0);
    }

    .faq-answer {
      height: 0;
      overflow: hidden;
      opacity: 0;
      transition: height .32s ease, opacity .24s ease;
    }

    .faq-item[open] .faq-answer {
      opacity: 1;
    }

    .faq-answer p {
      max-width: 680px;
      margin: -4px 0 24px;
      color: var(--muted);
    }

    .final-cta {
      position: relative;
      padding: 112px 0;
      border-top: 1px solid var(--accent);
      background: var(--accent);
      color: #080a08;
      overflow: hidden;
    }

    .final-cta::before {
      position: absolute;
      top: -170px;
      right: 5%;
      width: 350px;
      height: 570px;
      border: 45px solid rgba(8, 10, 8, .09);
      content: "";
      transform: rotate(25deg);
    }

    .final-cta .container {
      position: relative;
      z-index: 2;
    }

    .final-cta h2 {
      max-width: 980px;
      margin: 0;
      font-family: var(--display);
      font-size: clamp(52px, 8vw, 112px);
      line-height: .86;
      text-transform: uppercase;
    }

    .final-cta-copy {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 50px;
      margin-top: 36px;
    }

    .final-cta-copy p {
      max-width: 650px;
      margin: 0;
      font-size: 20px;
      font-weight: 700;
    }

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

    .site-footer {
      padding: 64px 0 30px;
      background: #050705;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.2fr repeat(3, .6fr);
      gap: 50px;
    }

    .footer-brand p {
      max-width: 360px;
      margin: 20px 0 0;
      color: var(--muted);
      font-size: 14px;
    }

    .footer-column h3 {
      margin: 0 0 18px;
      color: var(--text);
      font-size: 11px;
      letter-spacing: .12em;
      text-transform: uppercase;
    }

    .footer-column a {
      display: block;
      margin: 10px 0;
      color: var(--muted);
      font-size: 13px;
    }

    .social-links {
      display: flex;
      gap: 10px;
      margin-top: 26px;
    }

    .social-link {
      display: grid;
      width: 42px;
      height: 42px;
      place-items: center;
      border: 1px solid var(--line);
      color: var(--accent);
      font-size: 12px;
      font-weight: 900;
      transition: border-color .2s ease, background .2s ease;
    }

    .social-link svg {
      width: 18px;
      height: 18px;
      fill: currentColor;
      display: block;
    }

    .social-link:hover {
      border-color: var(--accent);
      background: var(--panel);
    }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      gap: 24px;
      margin-top: 54px;
      padding-top: 24px;
      border-top: 1px solid var(--line);
      color: #737a70;
      font-size: 11px;
    }

    .mobile-sticky {
      position: fixed;
      z-index: 90;
      right: 12px;
      bottom: 12px;
      left: 12px;
      display: none;
    }

    .mobile-sticky .button {
      width: 100%;
      box-shadow: 0 8px 35px rgba(0, 0, 0, .5);
    }

    .drawer-backdrop,
    .modal-backdrop {
      position: fixed;
      z-index: 200;
      inset: 0;
      background: rgba(0, 0, 0, .76);
      opacity: 0;
      visibility: hidden;
      transition: opacity .2s ease, visibility .2s ease;
    }

    .drawer-backdrop.is-open,
    .modal-backdrop.is-open {
      opacity: 1;
      visibility: visible;
    }

    .cart-drawer {
      position: fixed;
      z-index: 210;
      top: 0;
      right: 0;
      bottom: 0;
      display: flex;
      width: min(440px, 100%);
      flex-direction: column;
      border-left: 1px solid var(--line);
      background: #0d100d;
      transform: translateX(100%);
      transition: transform .25s ease;
    }

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

    .drawer-header {
      display: flex;
      min-height: 76px;
      align-items: center;
      justify-content: space-between;
      padding: 0 24px;
      border-bottom: 1px solid var(--line);
    }

    .drawer-header h2 {
      margin: 0;
      font-family: var(--display);
      font-size: 30px;
      text-transform: uppercase;
    }

    .close-button {
      display: grid;
      width: 42px;
      height: 42px;
      place-items: center;
      padding: 0;
      border: 1px solid var(--line);
      border-radius: 0;
      background: transparent;
      color: var(--muted);
      font-size: 24px;
      line-height: 1;
      cursor: pointer;
    }

    .close-button:hover {
      border-color: var(--accent);
      color: var(--accent);
    }

    .cart-items {
      display: grid;
      flex: 1;
      align-content: start;
      gap: 1px;
      padding: 20px;
      background: var(--line);
      overflow-y: auto;
    }

    .cart-empty {
      padding: 56px 20px;
      background: #0d100d;
      color: var(--muted);
      text-align: center;
    }

    .cart-item {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 12px;
      padding: 18px;
      background: var(--panel);
    }

    .cart-item strong {
      display: block;
      font-size: 14px;
    }

    .cart-item span {
      color: var(--accent);
      font-family: var(--display);
      font-size: 20px;
    }

    .remove-item {
      display: inline-grid;
      width: 36px;
      height: 36px;
      align-self: center;
      place-items: center;
      padding: 0;
      border: 1px solid var(--line);
      border-radius: 0;
      background: #0d100d;
      color: #7c8378;
      line-height: 1;
      cursor: pointer;
      transition: border-color .2s ease, color .2s ease, background .2s ease;
    }

    .remove-item svg {
      width: 19px;
      height: 19px;
      fill: currentColor;
    }

    .remove-item:hover {
      border-color: var(--danger);
      background: rgba(255, 91, 91, .08);
    }

    .cart-footer {
      padding: 24px;
      border-top: 1px solid var(--line);
    }

    .cart-total {
      display: flex;
      align-items: end;
      justify-content: space-between;
      margin-bottom: 18px;
    }

    .cart-total span {
      color: var(--muted);
      font-size: 12px;
      font-weight: 800;
      letter-spacing: .08em;
      text-transform: uppercase;
    }

    .cart-total strong {
      font-family: var(--display);
      font-size: 32px;
    }

    .modal {
      position: fixed;
      z-index: 220;
      top: 50%;
      left: 50%;
      width: min(620px, calc(100% - 30px));
      max-height: calc(100vh - 30px);
      border: 1px solid var(--accent);
      background: #0e120e;
      opacity: 0;
      overflow-y: auto;
      visibility: hidden;
      transform: translate(-50%, -47%);
      transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
    }

    .modal.is-open {
      opacity: 1;
      visibility: visible;
      transform: translate(-50%, -50%);
    }

    .modal-head {
      display: flex;
      align-items: start;
      justify-content: space-between;
      gap: 24px;
      padding: 30px 30px 0;
    }

    .modal-head h2 {
      margin: 0;
      font-family: var(--display);
      font-size: 42px;
      line-height: .95;
      text-transform: uppercase;
    }

    .modal-copy {
      margin: 12px 30px 0;
      color: var(--muted);
      font-size: 14px;
    }

    .lead-form {
      display: grid;
      gap: 14px;
      padding: 28px 30px 30px;
    }

    .form-field {
      display: grid;
      gap: 7px;
    }

    .form-honeypot {
      position: absolute !important;
      left: -10000px !important;
      width: 1px !important;
      height: 1px !important;
      opacity: 0 !important;
      pointer-events: none !important;
    }

    .form-turnstile {
      width: 100%;
      min-height: 65px;
      overflow: hidden;
    }

    .form-field label {
      color: #cfd3cb;
      font-size: 11px;
      font-weight: 800;
      letter-spacing: .08em;
      text-transform: uppercase;
    }

    .form-field input,
    .form-field select,
    .form-field textarea {
      width: 100%;
      min-height: 52px;
      padding: 13px 15px;
      border: 1px solid var(--line);
      border-radius: 0;
      outline: none;
      background: #090c09;
      color: var(--text);
      transition: border-color .2s ease;
    }

    .form-field textarea {
      min-height: 94px;
      resize: vertical;
    }

    .form-field input:focus,
    .form-field select:focus,
    .form-field textarea:focus {
      border-color: var(--accent);
    }

    .form-note {
      margin: 2px 0 0;
      color: #747b71;
      font-size: 10px;
    }

    .toast {
      position: fixed;
      z-index: 300;
      right: 22px;
      bottom: 22px;
      max-width: 380px;
      padding: 18px 20px;
      border-left: 3px solid var(--accent);
      background: #171c16;
      color: var(--text);
      box-shadow: 0 14px 45px rgba(0, 0, 0, .45);
      opacity: 0;
      pointer-events: none;
      transform: translateY(20px);
      transition: opacity .2s ease, transform .2s ease;
    }

    .toast.is-visible {
      opacity: 1;
      transform: translateY(0);
    }

    #wc-guest-checkout-notice {
      display: none !important;
    }


    @media screen and (min-width: 1024px){
      .grid-4{
      grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    }
    }

    @media (max-width: 1180px) {
      .desktop-nav a:nth-child(n+6) {
        display: none;
      }

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

      .program-card {
        min-height: 420px;
      }

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

      .program-kit-item {
        min-height: 240px;
      }

      .footer-grid {
        grid-template-columns: 1.2fr repeat(3, .7fr);
        gap: 30px;
      }
    }

    @media (max-width: 960px) {
      :root {
        --header-height: 68px;
      }

      .desktop-nav,
      .header-actions > .button {
        display: none;
      }

      .menu-button {
        display: inline-grid;
      }

      .hero {
        display: flex;
        min-height: 100vh;
        min-height: 100svh;
        padding-top: calc(var(--header-height) + 44px);
      }

      .hero-grid {
        min-height: 0;
        flex: 1;
        grid-template-columns: 1fr;
        align-items: end;
      }

      .hero-content {
        padding-bottom: 15px;
      }

      .hero-visual {
        width: 62%;
        min-width: 460px;
        opacity: .62;
      }

      .hero::after {
        right: 56%;
      }

      .section-head {
        display: block;
      }

      .section-head .section-copy {
        margin-top: 20px;
      }

      .program-kit-head {
        margin-bottom: 34px;
      }

      .about-grid,
      .coaching-inner,
      .faq-grid {
        grid-template-columns: 1fr;
      }

      .about-photo {
        height: 540px;
      }

      .coaching {
        padding: 90px 0;
      }

      .coaching-inner {
        gap: 22px;
      }

      .faq-grid {
        gap: 34px;
      }

      .faq-intro {
        position: static;
      }

      .testimonial-wall {
        --card-width: clamp(280px, 38vw, 340px);
      }

      .results-grid,
      .testimonial-grid {
        grid-template-columns: 1fr;
      }

      .result-card {
        display: grid;
        min-height: auto;
        grid-template-columns: 1fr .7fr;
      }

      .result-visual {
        height: 380px;
      }

      .result-body {
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding-right: 82px;
      }

      .testimonial {
        min-height: 260px;
      }

      .final-cta-copy {
        display: block;
      }

      .final-actions {
        margin-top: 28px;
      }

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

    @media (max-width: 720px) {
      html,
      body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
        overflow-x: clip;
      }

      main,
      .site-header,
      .hero,
      .ticker,
      .section,
      .final-cta {
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
        overflow-x: clip;
      }

      .container {
        width: min(var(--max-width), calc(100vw - 28px));
        max-width: calc(100vw - 28px);
      }

      .section {
        padding: 78px 0;
      }

      .program-list {
        display: block;
        gap: 0;
        margin: 22px 0 24px;
        padding: 0;
        border-top: 1px solid var(--line);
        border-bottom: 0;
      }

      .program-list-accordion {
        display: block;
        border-bottom: 1px solid var(--line);
        color: var(--text);
        font-size: 13px;
      }

      .program-list-accordion summary {
        position: relative;
        display: block;
        padding: 17px 48px 17px 0;
        color: #eef2ea;
        cursor: pointer;
        font-size: 12px;
        font-weight: 900;
        letter-spacing: .08em;
        line-height: 1.25;
        list-style: none;
        text-transform: uppercase;
      }

      .program-list-accordion summary::-webkit-details-marker {
        display: none;
      }

      .program-list-accordion summary::before,
      .program-list-accordion summary::after {
        position: absolute;
        top: 50%;
        right: 8px;
        width: 18px;
        height: 2px;
        background: var(--accent);
        content: "";
        transition: transform .2s ease;
      }

      .program-list-accordion summary::after {
        transform: rotate(90deg);
      }

      .program-list-accordion[open] summary::after {
        transform: rotate(0);
      }

      .program-list-answer {
        display: block;
        height: 0;
        overflow: hidden;
        opacity: 0;
        transition: height .32s ease, opacity .24s ease;
      }

      .program-list-accordion[open] .program-list-answer {
        opacity: 1;
      }

      .program-list-answer ul {
        gap: 10px;
        padding: 0 30px 18px 0;
      }

      .section-title {
        font-size: clamp(40px, 12vw, 62px);
      }

      .header-inner {
        gap: 8px;
      }

      .brand {
        gap: 8px;
        font-size: 21px;
      }

      .brand-logo {
        width: 76px;
        height: 50px;
      }

      .brand-mark {
        width: 24px;
        height: 24px;
      }

      .header-actions {
        gap: 8px;
      }

      .hero {
        padding-bottom: 36px;
      }

      .hero-grid {
        min-height: 0;
      }

      .hero-visual {
        top: 0;
        bottom: 0;
        width: 100%;
        min-width: 0;
        height: 100%;
        opacity: .68;
      }

      .hero-visual img {
        object-position: right center;
        clip-path: none;
      }

      .hero-visual::before {
        top: 10%;
        right: 4%;
        width: 70%;
        height: 54%;
        z-index: 4;
      }

      .hero-visual::after {
        display: block;
        top: 0;
        bottom: 0;
        height: 100%;
        background:
          linear-gradient(180deg, rgba(8, 10, 8, .08) 0%, rgba(8, 10, 8, .2) 30%, rgba(8, 10, 8, .76) 62%, #080a08 100%),
          linear-gradient(90deg, rgba(8, 10, 8, .38) 0%, transparent 76%);
      }

      .hero-content {
        display: flex;
        width: 100%;
        min-height: 0;
        min-width: 0;
        flex-direction: column;
        justify-content: end;
      }

      .hero h1 {
        max-width: 100%;
        font-size: clamp(49px, 13vw, 60px);
        overflow-wrap: anywhere;
      }

      .hero-copy {
        width: 100%;
        max-width: 100%;
        font-size: 16px;
      }

      .hero-actions {
        display: grid;
      }

      .hero-actions .button {
        width: 100%;
      }

      .hero-proof {
        display: grid;
        min-width: 0;
        grid-template-columns: repeat(3, 1fr);
      }

      .hero-proof-item {
        min-width: 0;
        margin: 0;
        padding: 0 6px;
        text-align: center;
      }

      .hero-proof-item:first-child {
        padding-left: 0;
      }

      .hero-proof-item:last-child {
        padding-right: 0;
      }

      .hero-proof strong {
        font-size: 27px;
      }

      .hero-proof span {
        font-size: 8px;
        overflow-wrap: anywhere;
      }

      #directions .section-head {
        gap: 18px;
        margin-bottom: 34px;
      }

      #directions .section-copy {
        margin-top: 20px;
        font-size: 15px;
        line-height: 1.55;
      }

      .direction-grid,
      .shop-shortcuts {
        grid-template-columns: 1fr;
        gap: 14px;
      }

      .direction-card {
        min-height: 0;
      }

      .direction-card::before {
        right: -88px;
        bottom: -122px;
        width: 210px;
        height: 210px;
        border-width: 34px;
      }

      .direction-card-top {
        min-height: 0;
        align-items: flex-start;
        gap: 14px;
        padding: 20px 20px 10px 20px;
      }

      .direction-card-label {
        max-width: 190px;
        min-height: 28px;
        padding: 6px 9px;
        line-height: 1.3;
      }

      .direction-card-icon {
        width: 88px;
        height: 108px;
        flex-basis: 88px;
      }

      .direction-card-icon img {
        height: 104px;
      }

      .direction-card-content {
        padding: 8px 20px 24px;
      }

      .direction-card h3 {
        margin-bottom: 20px;
        font-size: clamp(36px, 12vw, 48px);
      }

      .direction-card li {
        font-size: 14px;
      }

      .direction-card-button {
        width: calc(100% - 40px);
        min-height: 58px;
        margin: 0 20px 20px;
        padding: 0 16px;
        font-size: 11px;
        text-align: left;
      }

      .premium-banner {
        margin-top: 14px;
        grid-template-columns: 1fr;
      }

      .premium-banner::after {
        top: -150px;
        right: -80px;
        width: 160px;
        height: 380px;
        border-width: 22px;
      }

      .premium-banner-content,
      .premium-banner-meta {
        padding: 28px 20px;
      }

      .premium-banner .eyebrow {
        margin-bottom: 14px;
      }

      .premium-banner h3 {
        font-size: clamp(32px, 9vw, 58px);
        line-height: .92;
      }

      .premium-banner p {
        margin: 18px 0 24px;
        font-size: 15px;
        line-height: 1.4;
      }

      .premium-banner .button {
        width: 100%;
        min-height: 58px;
        padding: 0 16px;
        font-size: 11px;
        text-align: left;
      }

      .premium-banner-meta {
        border-top: 1px solid rgba(8, 10, 8, .24);
        border-left: 0;
      }

      .shop-shortcuts {
        margin-top: 14px;
      }

      .shop-shortcut {
        min-height: 0;
        gap: 20px;
        padding: 22px 20px 20px;
      }

      .shop-shortcut::before {
        right: -88px;
        bottom: -112px;
        width: 190px;
        height: 190px;
        border-width: 30px;
      }

      .shop-shortcut-head {
        gap: 14px;
      }

    .shop-shortcut-label {
        margin-bottom: 10px;
        font-size: 9px;
      }

      .shop-shortcut h3 {
        font-size: clamp(30px, 10vw, 40px);
        overflow-wrap: anywhere;
      }

      .shop-shortcut p {
        font-size: 14px;
        line-height: 1.55;
      }

      .shortcut-symbol {
        width: 62px;
        height: 62px;
        flex-basis: 62px;
      }

      .shop-shortcut > .button {
        min-height: 58px;
        padding: 0 16px;
        font-size: 11px;
        text-align: left;
      }

      .about-grid {
        gap: 46px;
      }

      .about-photo {
        height: 470px;
      }

      .about-facts {
        grid-template-columns: 1fr;
      }

      .about-facts li {
        min-height: 0;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
      }

      .about-quote {
        padding: 26px 24px 26px 58px;
      }

      .credentials {
        grid-template-columns: 1fr;
      }

      .program-tabs {
        display: grid;
        width: 100%;
        grid-template-columns: 1fr 1fr;
      }

      .tab-button {
        min-width: 0;
        padding: 0 10px;
      }

      .program-grid,
      .product-grid {
        grid-template-columns: 1fr;
      }

      .program-card {
        min-height: 400px;
      }

      .program-kit {
        padding: 78px 0;
      }

      .program-kit-grid {
        grid-template-columns: 1fr;
      }

      .program-kit-item {
        min-height: 0;
        grid-template-columns: 58px minmax(0, 1fr);
        justify-items: start;
        column-gap: 18px;
        padding: 24px;
        text-align: left;
      }

      .program-kit-icon {
        width: 58px;
        height: 58px;
        margin: 0;
        grid-row: span 2;
      }

      .program-kit-item p {
        max-width: 420px;
        margin-left: 0;
      }

      .coaching {
        min-height: auto;
        background-position: 68% center;
      }

      .coaching-copy {
        padding: 28px;
      }

      .coaching-copy h2 {
        font-size: clamp(44px, 14vw, 66px);
      }

      .coaching-features {
        grid-template-columns: 1fr;
      }

      .store-toolbar {
        display: block;
      }

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

      .store-note {
        margin: 16px 0 0;
        white-space: normal;
      }

      .product-card {
        min-height: 460px;
      }

      .product-visual {
        height: auto;
        min-height: 0;
        overflow: visible;
      }

      .product-visual .product-image {
        height: auto;
        max-height: none;
        object-fit: contain;
      }

      .result-card {
        display: block;
      }

      .result-visual {
        height: 330px;
      }

      .result-body {
        padding: 26px 72px 26px 26px;
      }

      .result-index {
        right: 14px;
        font-size: 52px;
      }

      .testimonial-wall {
        --wall-gap: 14px;
        --card-width: min(82vw, 330px);
        --testimonial-set-width: calc((var(--card-width) * 4) + (var(--wall-gap) * 4));
        margin-top: 28px;
        padding: var(--wall-gap) 0;
      }

      .testimonial-column {
        width: 100%;
      }

      .testimonial-column--1 {
        --duration: 34s;
      }

      .testimonial-column--2 {
        --duration: 40s;
      }

      .testimonial-column--3 {
        --duration: 36s;
      }

      .testimonial-column--4 {
        --duration: 46s;
      }

      .testimonial-wall-card {
        padding: 20px;
      }

      .testimonial-top {
        align-items: flex-start;
      }

      .stars {
        font-size: 10px;
        letter-spacing: 1px;
      }

      .testimonial-wall-card blockquote {
        margin-top: 24px;
      }

      .testimonial {
        padding: 24px;
      }

      .final-cta {
        padding: 80px 0;
      }

      .final-cta h2 {
        font-size: clamp(50px, 16vw, 62px);
      }

      .final-cta-copy p {
        font-size: 17px;
      }

      .final-actions {
        display: grid;
      }

      .final-actions .button {
        width: 100%;
      }

      .footer-grid {
        grid-template-columns: 1fr;
      }

      .footer-bottom {
        display: block;
      }

      .footer-bottom span {
        display: block;
        margin-top: 8px;
      }

      .mobile-sticky {
        display: none;
        right: 10px;
        left: 10px;
        width: auto;
        max-width: calc(100vw - 20px);
      }

      .toast {
        right: 12px;
        bottom: 82px;
        left: 12px;
      }

      .modal-head {
        padding: 24px 20px 0;
      }

      .modal-head h2 {
        font-size: 34px;
      }

      .modal-copy {
        margin-inline: 20px;
      }

      .lead-form {
        padding: 24px 20px;
      }
    }

    @media (max-width: 420px) {
      .direction-card-label {
        max-width: 155px;
        font-size: 8px;
      }

      .direction-card-icon {
        width: 82px;
        height: 102px;
        flex-basis: 82px;
      }

      .direction-card-icon img {
        height: 98px;
      }

      .direction-card-button,
      .premium-banner .button,
      .shop-shortcut > .button {
        justify-content: space-between;
      }

      .shop-shortcut-head {
        align-items: center;
      }

      .shortcut-symbol {
        width: 54px;
        height: 54px;
        flex-basis: 54px;
      }
    }
    @media (min-width: 961px) {
      .program-grid,
      .program-grid.grid-4 {
        grid-template-columns: 1fr !important;
        gap: 18px;
      }

      .program-card {
        display: grid;
        align-items: center;
        min-height: 0;
        grid-template-columns: minmax(180px, .82fr) minmax(240px, 1.08fr) minmax(230px, .7fr);
        grid-template-areas:
          "number list footer"
          "title list footer"
          "copy list footer";
        /* align-items: start; */
        gap: 10px 28px;
        padding: 24px 28px;
      }

      .program-card::before {
        top: -64px;
        right: -34px;
        opacity: .55;
      }

      .program-number {
        grid-area: number;
      }

      .program-card h3 {
        grid-area: title;
        margin: 6px 0 0;
        font-size: clamp(32px, 3.4vw, 48px);
      }

      .program-card > p {
        grid-area: copy;
        max-width: 430px;
        font-size: 13px;
        line-height: 1.45;
      }

      .program-list {
        grid-area: list;
        align-self: stretch;
        margin: 0;
        padding: 0 0 0 22px;
        border-top: 0;
        border-bottom: 0;
        border-left: 1px solid var(--line);
        align-content: center;
      }

      .program-footer {
        grid-area: footer;
        align-self: stretch;
        justify-content: center;
        margin-top: 0;
        padding-left: 28px;
        border-left: 1px solid var(--line);
      }

      .program-buy-button {
        min-height: 76px;
        padding-inline: 22px 18px;
        box-shadow: 0 0 0 1px rgba(183, 255, 42, .08), 0 18px 34px rgba(0, 0, 0, .18);
      }

      .program-buy-button::before {
        position: absolute;
        top: 16px;
        bottom: 16px;
        left: -29px;
        width: 2px;
        background: var(--accent);
        content: "";
        box-shadow: 0 0 18px rgba(183, 255, 42, .32);
      }

      .program-buy-price {
        padding-left: 16px;
        border-left: 1px solid rgba(8, 10, 8, .24);
        font-size: clamp(24px, 2.2vw, 32px);
      }
    }
    @media (prefers-reduced-motion: reduce) {
      *,
      *::before,
      *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
      }

      [data-aos] {
        opacity: 1;
        transform: none;
      }
    }

    .wc-block-cart__submit-button,
    .wc-block-components-checkout-place-order-button {
        min-height: 5em !important;
      }

      .download-remaining,
      .download-expires{
      display: none !important;
}

    .woocommerce-thankyou-order-details{
      margin-left: 0 !important;
    }
    
    .wc-block-checkout-empty .wp-block-button{
      display: none !important;
    }

    .program-list-answer b {
                color: var(--accent);
              }

    .page-main .wc-block-components-radio-control-accordion-option {
      position: relative;
      margin: 0 0 8px;
      padding: 0px;
      border: 1px solid var(--line);
      border-radius: 0;
      background: #0d100d;
    }

    .page-main .wc-block-components-radio-control-accordion-option:not(.wc-block-components-radio-control-accordion-option--checked-option-highlighted) > .wc-block-components-radio-control__option {
      display: block !important;
    }

    .page-main .wc-block-components-radio-control-accordion-option:not(.wc-block-components-radio-control-accordion-option--checked-option-highlighted) .wc-block-components-radio-control__input {
      margin-top: 0 !important;
      transform: translateY(-50%) !important;
    }

    .page-main .wc-block-components-radio-control-accordion-option:not(.wc-block-components-radio-control-accordion-option--checked-option-highlighted) .wc-block-components-radio-control__option-layout {
      transform: translateY(3px);
    }

    .page-main .wc-block-components-radio-control-accordion-option .wc-block-components-radio-control__label-group,
    .page-main .wc-block-components-radio-control-accordion-option .wc-stripe-label-container {
      align-items: center !important;
    }

    .page-main .wc-block-components-checkbox {
      line-height: normal;
    }

    .page-main .wc-block-components-checkbox label {
      align-items: center;
      gap: 12px;
      line-height: 1.35;
    }

    .page-main .wc-block-components-checkbox .wc-block-components-checkbox__input[type=checkbox] {
      width: 28px;
      height: 28px;
      min-width: 28px;
      border: 1px solid var(--accent);
      border-radius: 4px;
      background: #090c09;
    }

    .page-main .wc-block-components-checkbox .wc-block-components-checkbox__input[type=checkbox]:checked {
      border-color: var(--accent);
      background: var(--accent);
    }

    .page-main .wc-block-components-checkbox .wc-block-components-checkbox__mark {
      top: 50%;
      left: 14px;
      width: 18px;
      height: 15px;
      margin: 0;
      fill: #050605;
      transform: translate(-50%, -50%);
    }

    #wc-stripe-hidden-style-input {
      width: 100% !important;
      min-height: 52px !important;
      padding: 13px 15px !important;
      border: 1px solid var(--line) !important;
      border-radius: 0 !important;
      outline: none !important;
      background: #090c09 !important;
      color: var(--text) !important;
      font-family: var(--body), Arial, sans-serif !important;
      font-size: 16px !important;
      font-weight: 400 !important;
      line-height: 24px !important;
      letter-spacing: 0 !important;
    }

    .wc-stripe-upe-element,
    .wc-stripe-upe-element .StripeElement,
    .wc-stripe-local-payment-container,
    .wc-stripe-local-payment-container .StripeElement,
    .payment_box .StripeElement,
    .RedirectText,
    .Text--redirect {
      line-height: 24px !important;
    }

    /* Supplements hero: an editorial product cover, distinct from the home page. */
    .supplements-hero {
      min-height: 0;
      padding: calc(var(--header-height) + 54px) 0 64px;
      background:
        linear-gradient(rgba(183, 255, 42, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(183, 255, 42, .035) 1px, transparent 1px),
        #080a08;
      background-size: 64px 64px;
    }

    .supplements-hero::before {
      top: auto;
      right: auto;
      bottom: 64px;
      left: 0;
      width: 38%;
      height: 1px;
      border: 0;
      background: rgba(183, 255, 42, .38);
      transform: none;
    }

    .supplements-hero::after {
      top: 0;
      right: 0;
      bottom: 0;
      width: 24%;
      height: auto;
      background: rgba(183, 255, 42, .035);
      transform: none;
    }

    .supplements-hero .hero-grid {
      min-height: 650px;
      grid-template-columns: minmax(0, 1.05fr) minmax(430px, .95fr);
      gap: clamp(50px, 7vw, 112px);
    }

    .supplements-hero .hero-content {
      padding: 42px 0;
    }

    .supplements-hero .hero-kicker {
      margin-bottom: 28px;
    }

    .supplements-hero h1 {
      max-width: 720px;
      font-size: clamp(58px, 6.4vw, 94px);
      line-height: .91;
    }

    .supplements-hero h1 em {
      color: #f3f6ef;
    }

    .supplements-hero h1 span {
      margin-top: 8px;
    }

    .supplements-hero .hero-copy {
      max-width: 590px;
      padding-left: 20px;
      border-left: 2px solid var(--accent);
    }

    .supplements-hero-stage {
      position: relative;
      z-index: 2;
      display: grid;
      min-height: 610px;
      grid-template-rows: auto 1fr auto;
      border: 1px solid rgba(183, 255, 42, .5);
      background:
        linear-gradient(145deg, rgba(183, 255, 42, .1), transparent 38%),
        #111610;
      box-shadow: 22px 22px 0 rgba(183, 255, 42, .09);
      overflow: hidden;
    }

    .supplements-hero-stage::before {
      position: absolute;
      top: 76px;
      right: -90px;
      width: 260px;
      height: 260px;
      border: 1px solid rgba(183, 255, 42, .22);
      content: "";
      transform: rotate(45deg);
    }

    .supplements-hero-stage-head,
    .supplements-hero-stage-foot {
      position: relative;
      z-index: 3;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      padding: 20px 24px;
    }

    .supplements-hero-stage-head {
      border-bottom: 1px solid rgba(183, 255, 42, .25);
    }

    .supplements-hero-stage-head span,
    .supplements-hero-stage-foot span {
      color: #cfd7ca;
      font-size: 10px;
      font-weight: 800;
      letter-spacing: .14em;
      text-transform: uppercase;
    }

    .supplements-hero-stage-head strong {
      color: var(--accent);
      font-family: var(--display);
      font-size: 30px;
      font-weight: 400;
      line-height: 1;
    }

    .supplements-hero-art {
      position: relative;
      min-height: 430px;
    }

    .supplements-hero-art img {
      position: absolute;
      object-fit: contain;
      filter: drop-shadow(0 24px 34px rgba(0, 0, 0, .38));
    }

    .supplements-hero-art-sport {
      bottom: -28px;
      left: 3%;
      width: 60%;
      height: 88%;
      transform: rotate(-5deg);
    }

    .supplements-hero-art-vit {
      right: -3%;
      bottom: 8px;
      width: 58%;
      height: 82%;
      transform: rotate(7deg);
    }

    .supplements-hero-stage-foot {
      justify-content: flex-start;
      border-top: 1px solid rgba(183, 255, 42, .25);
      background: var(--accent);
    }

    .supplements-hero-stage-foot span {
      color: #080a08;
    }

    .supplements-hero-stage-foot span + span::before {
      margin-right: 18px;
      content: "/";
    }

    @media (max-width: 1100px) {
      .supplements-hero .hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(370px, .82fr);
        gap: 42px;
      }

      .supplements-hero-stage {
        min-height: 560px;
      }
    }

    @media (max-width: 960px) {
      .supplements-hero {
        display: block;
        min-height: 0;
        padding: calc(var(--header-height) + 46px) 0 64px;
      }

      .supplements-hero .hero-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 52px;
      }

      .supplements-hero .hero-content {
        padding: 20px 0 0;
      }

      .supplements-hero-stage {
        width: min(100%, 660px);
        min-height: 580px;
      }
    }

    @media (max-width: 720px) {
      .supplements-hero {
        padding: calc(var(--header-height) + 30px) 0 42px;
        background-size: 38px 38px;
      }

      .supplements-hero h1 {
        font-size: clamp(46px, 13vw, 62px);
        overflow-wrap: normal;
      }

      .supplements-hero .hero-copy {
        padding-left: 16px;
      }

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

      .supplements-hero-stage {
        min-height: 470px;
        box-shadow: 10px 10px 0 rgba(183, 255, 42, .09);
      }

      .supplements-hero-art {
        min-height: 340px;
      }

      .supplements-hero-stage-head,
      .supplements-hero-stage-foot {
        padding: 16px;
      }

      .supplements-hero-stage-foot {
        flex-wrap: wrap;
        gap: 7px 12px;
      }

      .supplements-hero-stage-foot span + span::before {
        margin-right: 12px;
      }
    }
