@charset "UTF-8";
/* Protocolo Aquiles — SCSS source (valid modern SCSS/CSS) */
:root {
  --bg: #070707;
  --surface: #0d0d0d;
  --surface-2: #111111;
  --text: #f4f4f4;
  --muted: #a9a9a9;
  --accent: #ff6a00;
  --accent-2: #ff9c39;
  --gold: #ffc78a;
  --red: #b92312;
  --line: rgba(255, 122, 0, 0.24);
  --line-soft: rgba(255, 255, 255, 0.09);
  --display: "Bebas Neue", "Arial Narrow", sans-serif;
  --body: "Inter", Arial, sans-serif;
  --container: 1180px;
  --header-height: 82px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
}

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

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

body.menu-open {
  overflow: hidden;
}

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

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

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

button, a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

p, h1, h2, h3 {
  margin-top: 0;
}

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

.skip-link {
  position: fixed;
  top: -80px;
  left: 20px;
  z-index: 1000;
  padding: 10px 16px;
  background: var(--accent);
  color: #fff;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 15px;
}

.ambient {
  position: fixed;
  z-index: -3;
  width: 44vw;
  height: 44vw;
  border-radius: 50%;
  opacity: 0.12;
  filter: blur(110px);
  pointer-events: none;
  animation: ambientMove 18s ease-in-out infinite alternate;
}

.ambient--one {
  top: -24vw;
  right: -10vw;
  background: var(--accent);
}

.ambient--two {
  bottom: -25vw;
  left: -18vw;
  background: var(--red);
  animation-delay: -7s;
}

.ember-field {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  overflow: hidden;
}

.ember {
  position: absolute;
  bottom: -20px;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 8px 2px rgba(255, 106, 0, 0.45);
  opacity: 0;
  animation: emberRise linear infinite;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  transition: background 0.35s, border-color 0.35s, backdrop-filter 0.35s;
}

.site-header.is-scrolled {
  background: rgba(7, 7, 7, 0.82);
  border-color: var(--line-soft);
  backdrop-filter: blur(16px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.brand img {
  width: 174px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(255, 106, 0, 0.11));
}

.brand__mark {
  width: 36px;
  height: 36px;
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 8px rgba(255, 106, 0, 0.25));
}

.brand span {
  display: grid;
  line-height: 1;
}

.brand strong {
  font: 27px/0.85 var(--display);
  letter-spacing: 0.09em;
}

.brand small {
  margin-top: 5px;
  color: var(--accent-2);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.42em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-left: auto;
}

.nav a {
  position: relative;
  color: #d1d1d1;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 1px;
  background: var(--accent);
  transition: right 0.3s var(--ease);
}

.nav a:hover, .nav a.is-active {
  color: #fff;
}

.nav a:hover::after, .nav a.is-active::after {
  right: 0;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 1px;
  margin: 5px 0;
  background: #fff;
  transition: transform 0.25s, opacity 0.25s;
}

.button {
  position: relative;
  isolation: isolate;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  overflow: hidden;
  padding: 0 27px;
  border: 1px solid var(--accent);
  border-radius: 4px;
  color: #fff;
  background: linear-gradient(135deg, #ff5800, #ff7a00);
  box-shadow: 0 12px 35px rgba(255, 93, 0, 0.18);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.3s var(--ease), box-shadow 0.3s, border-color 0.3s;
}

.button::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -2px auto -2px -45%;
  width: 35%;
  transform: skewX(-22deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  transition: left 0.65s var(--ease);
}

.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 45px rgba(255, 93, 0, 0.38), 0 0 24px rgba(255, 106, 0, 0.18);
}

.button:hover::before {
  left: 120%;
}

.button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button--small {
  min-height: 42px;
  padding-inline: 20px;
  font-size: 11px;
}

.button--outline {
  border-color: rgba(255, 122, 0, 0.55);
  background: rgba(7, 7, 7, 0.45);
  box-shadow: none;
  backdrop-filter: blur(8px);
}

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

.eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  margin-bottom: 18px;
  color: var(--accent-2);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.23em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 26px;
  height: 1px;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
}

.eyebrow--muted {
  justify-content: flex-start;
  color: #aaa;
}

.hero {
  position: relative;
  min-height: 780px;
  height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line-soft);
}

.hero::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 7, 7, 0.98) 0%, rgba(7, 7, 7, 0.88) 28%, rgba(7, 7, 7, 0.12) 65%, rgba(7, 7, 7, 0.18) 100%), linear-gradient(0deg, #070707 0%, transparent 20%);
  pointer-events: none;
}

.hero::after {
  content: "AQUILES";
  position: absolute;
  z-index: 2;
  left: 2%;
  bottom: -8%;
  color: rgba(255, 255, 255, 0.017);
  font: clamp(180px, 28vw, 440px)/1 var(--display);
  letter-spacing: 0.03em;
  pointer-events: none;
}

.hero__visual {
  position: absolute;
  inset: 0;
  background: #070707;
}

.hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 64% center;
  animation: heroZoom 11s var(--ease) both;
}

.hero__fade {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 75% 43%, transparent 0 18%, rgba(7, 7, 7, 0.1) 42%, rgba(7, 7, 7, 0.5) 85%);
}

.hero__inner {
  position: relative;
  z-index: 3;
  padding-top: var(--header-height);
}

.hero__content {
  width: min(650px, 58vw);
}

.hero .eyebrow {
  justify-content: flex-start;
}

.hero h1 {
  max-width: 640px;
  margin-bottom: 13px;
  font: clamp(62px, 6.1vw, 94px)/0.89 var(--display);
  letter-spacing: 0.012em;
  text-transform: uppercase;
  text-wrap: balance;
}

h1 em, h2 em {
  color: var(--accent);
  font-style: normal;
  text-shadow: 0 0 35px rgba(255, 106, 0, 0.2);
}

.hero__subtitle {
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero__text {
  max-width: 580px;
  margin-bottom: 30px;
  color: #bbb;
  font-size: 16px;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 35px;
}

.hero__chips {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.hero__chips span {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 12px;
  border: 1px solid var(--line-soft);
  border-radius: 2px;
  color: #c9c9c9;
  background: rgba(12, 12, 12, 0.48);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.03em;
  backdrop-filter: blur(6px);
}

.hero__chips b {
  color: var(--accent-2);
  font-size: 15px;
}

.hero__chips svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: var(--accent-2);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-animate {
  opacity: 0;
  transform: translateY(24px);
  animation: heroEnter 0.9s var(--ease) forwards;
}

.hero-animate--1 {
  animation-delay: 0.12s;
}

.hero-animate--2 {
  animation-delay: 0.24s;
}

.hero-animate--3 {
  animation-delay: 0.36s;
}

.hero-animate--4 {
  animation-delay: 0.46s;
}

.hero-animate--5 {
  animation-delay: 0.58s;
}

.hero-animate--6 {
  animation-delay: 0.68s;
}

.scroll-cue {
  position: absolute;
  z-index: 4;
  right: 4%;
  bottom: 35px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #777;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.scroll-cue span {
  position: relative;
  width: 1px;
  height: 45px;
  overflow: hidden;
  background: #333;
}

.scroll-cue span::after {
  content: "";
  position: absolute;
  inset: -100% 0 auto;
  height: 100%;
  background: var(--accent);
  animation: scrollLine 2s infinite;
}

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

.section--surface {
  background: linear-gradient(180deg, #0b0b0b, #0e0e0e);
  border-block: 1px solid var(--line-soft);
}

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

.section-heading--left {
  max-width: 590px;
  margin: 0 0 40px;
  text-align: left;
}

.section-heading--left .eyebrow {
  justify-content: flex-start;
}

.section-heading h2, .final-cta h2, .offer-card h2 {
  margin-bottom: 16px;
  font: clamp(45px, 5vw, 68px)/0.96 var(--display);
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

.section-heading > p:last-child, .final-cta__inner > p {
  color: var(--muted);
  line-height: 1.75;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.card {
  position: relative;
  overflow: hidden;
  min-height: 285px;
  padding: 32px 27px;
  border: 1px solid var(--line-soft);
  border-radius: 3px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.042), rgba(255, 255, 255, 0.012));
  transition: transform 0.4s var(--ease), border-color 0.4s, box-shadow 0.4s;
}

.card::after {
  content: "";
  position: absolute;
  inset: auto -20% -60% 10%;
  height: 65%;
  background: radial-gradient(circle, rgba(255, 106, 0, 0.1), transparent 68%);
  opacity: 0;
  transition: opacity 0.4s;
}

.card:hover {
  transform: translateY(-7px);
  border-color: rgba(255, 122, 0, 0.42);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28), inset 0 1px rgba(255, 255, 255, 0.03);
}

.card:hover::after {
  opacity: 1;
}

.card__number {
  position: absolute;
  top: 23px;
  right: 24px;
  color: #353535;
  font: 26px/1 var(--display);
}

.icon-box {
  position: relative;
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  border: 1px solid rgba(255, 122, 0, 0.22);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 28%, rgba(255, 176, 91, 0.13), rgba(255, 106, 0, 0.035) 48%, rgba(0, 0, 0, 0.08) 72%);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.06), 0 10px 28px rgba(0, 0, 0, 0.35), 0 0 24px rgba(255, 106, 0, 0.08);
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
}

.icon-box::after {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(255, 255, 255, 0.035);
  border-radius: inherit;
}

.icon-box svg {
  width: 44px;
  height: 44px;
  overflow: visible;
  filter: drop-shadow(0 7px 7px rgba(0, 0, 0, 0.48)) drop-shadow(0 0 7px rgba(255, 106, 0, 0.2));
  transition: transform 0.4s var(--ease);
}

.icon-box img {
  width: 46px;
  max-height: 46px;
  object-fit: contain;
  filter: drop-shadow(0 7px 7px rgba(0, 0, 0, 0.48)) drop-shadow(0 0 7px rgba(255, 106, 0, 0.2));
  transition: transform 0.4s var(--ease);
}

.benefit-card:hover .icon-box {
  transform: translateY(-4px) scale(1.04);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.08), 0 14px 34px rgba(0, 0, 0, 0.4), 0 0 28px rgba(255, 106, 0, 0.16);
}

.benefit-card:hover .icon-box svg {
  transform: scale(1.08);
}

.benefit-card:hover .icon-box img {
  transform: scale(1.08);
}

.card h3 {
  margin-bottom: 10px;
  font: 27px/1 var(--display);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.card p {
  margin: 0;
  color: #999;
  font-size: 13px;
  line-height: 1.65;
}

.content-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 9%;
}

.product-stage {
  position: sticky;
  top: 150px;
  min-height: 580px;
  display: grid;
  place-items: center;
  perspective: 1200px;
}

.product-stage::after {
  content: "";
  position: absolute;
  z-index: -2;
  width: 90%;
  height: 45%;
  border-radius: 50%;
  background: rgba(255, 74, 0, 0.14);
  filter: blur(65px);
}

.orbit {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(255, 122, 0, 0.14);
  border-radius: 50%;
}

.orbit--one {
  width: 430px;
  height: 430px;
}

.orbit--two {
  width: 330px;
  height: 330px;
  border-style: dashed;
  animation: orbit 40s linear infinite;
}

.ebook {
  position: relative;
  width: 280px;
  height: 390px;
  transform: rotateY(-14deg) rotateX(2deg);
  transform-style: preserve-3d;
  filter: drop-shadow(35px 45px 38px rgba(0, 0, 0, 0.5));
  animation: bookFloat 5s ease-in-out infinite;
}

.ebook__cover {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 34px 28px;
  border: 1px solid #8d3b0a;
  background: radial-gradient(circle at 70% 25%, rgba(255, 106, 0, 0.18), transparent 34%), linear-gradient(145deg, #181512, #080808 65%);
  box-shadow: inset 0 0 50px rgba(255, 106, 0, 0.08);
}

.ebook__cover::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 156, 57, 0.28);
  clip-path: polygon(0 0, 35% 0, 35% 1px, 65% 1px, 65% 0, 100% 0, 100% 100%, 65% 100%, 65% calc(100% - 1px), 35% calc(100% - 1px), 35% 100%, 0 100%);
}

.ebook__cover svg {
  position: absolute;
  top: 50px;
  left: 50%;
  width: 76px;
  height: 76px;
  transform: translateX(-50%);
  fill: none;
  stroke: var(--accent);
  stroke-width: 1;
  opacity: 0.8;
}

.ebook__cover > img {
  position: absolute;
  top: 44px;
  left: 50%;
  width: 78px;
  height: 78px;
  object-fit: contain;
  transform: translateX(-50%);
  filter: drop-shadow(0 8px 10px rgba(0, 0, 0, 0.45));
}

.ebook__cover small {
  margin-bottom: 9px;
  color: var(--gold);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.28em;
}

.ebook__cover strong {
  font: 41px/0.88 var(--display);
  letter-spacing: 0.04em;
}

.ebook__cover strong em {
  color: var(--accent);
  font-style: normal;
}

.ebook__cover > span {
  margin-top: 18px;
  color: #8c8c8c;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.ebook__spine {
  position: absolute;
  right: 99%;
  top: 8px;
  bottom: 8px;
  width: 27px;
  display: grid;
  place-items: center;
  border: 1px solid #5c2608;
  background: #0a0908;
  color: #834114;
  font: 10px var(--display);
  letter-spacing: 0.14em;
  writing-mode: vertical-rl;
  transform-origin: right;
  transform: rotateY(-75deg);
}

.product-stage__tag {
  position: absolute;
  right: 3%;
  bottom: 13%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  background: rgba(7, 7, 7, 0.8);
  backdrop-filter: blur(8px);
}

.product-stage__tag b {
  color: var(--accent);
  font: 31px/1 var(--display);
}

.product-stage__tag span {
  color: #aaa;
  font-size: 9px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.content-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.content-item {
  position: relative;
  display: grid;
  grid-template-columns: 72px 26px 1fr;
  align-items: center;
  gap: 12px;
  min-height: 138px;
  padding: 14px;
  border: 1px solid var(--line-soft);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012));
  transition: border-color 0.3s, background 0.3s, transform 0.3s, box-shadow 0.3s;
}

.content-item:hover {
  transform: translateY(-3px);
  border-color: var(--line);
  background: rgba(255, 106, 0, 0.035);
}

.content-item:hover {
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
}

.content-item > span {
  align-self: start;
  padding-top: 5px;
  color: var(--accent);
  font: 19px/1 var(--display);
}

.content-item h3 {
  margin-bottom: 5px;
  font: 20px/1.1 var(--display);
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.content-item p {
  margin: 0;
  color: #8f8f8f;
  font-size: 11px;
  line-height: 1.55;
}

.content-item--featured {
  grid-column: auto;
  min-height: 138px;
  border-color: var(--line);
}

.content-item--featured > b {
  position: absolute;
  top: 0;
  right: 0;
  padding: 5px 10px;
  color: #070707;
  background: var(--accent);
  font-size: 8px;
  letter-spacing: 0.12em;
}

.module-thumb {
  position: relative;
  width: 72px;
  height: 92px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 5px;
  background: radial-gradient(circle at 55% 30%, #29221c, #0b0b0b 68%);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.05), 0 8px 18px rgba(0, 0, 0, 0.42);
}

.module-thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(120deg, transparent 35%, rgba(255, 255, 255, 0.08) 48%, transparent 60%);
  transform: translateX(-130%);
  transition: transform 0.7s var(--ease);
  pointer-events: none;
}

.content-item:hover .module-thumb::before {
  transform: translateX(130%);
}

.module-thumb svg {
  width: 100%;
  height: 100%;
  transition: transform 0.45s var(--ease);
}

.module-thumb img {
  width: 70%;
  height: 70%;
  object-fit: contain;
  filter: drop-shadow(0 8px 8px rgba(0, 0, 0, 0.45));
  transition: transform 0.45s var(--ease);
}

.content-item:hover .module-thumb svg {
  transform: scale(1.045);
}

.content-item:hover .module-thumb img {
  transform: scale(1.07);
}

.module-thumb--book, .module-thumb--runner {
  border-color: rgba(255, 122, 0, 0.22);
}

.audience-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 10%;
}

.check-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 30px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 32px;
  color: #d1d1d1;
  font-size: 14px;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  color: var(--accent);
  background: rgba(255, 106, 0, 0.06);
  font-size: 10px;
  font-weight: 800;
}

.not-for {
  position: relative;
  padding: 42px;
  border: 1px solid rgba(185, 35, 18, 0.28);
  background: linear-gradient(135deg, rgba(185, 35, 18, 0.08), rgba(255, 255, 255, 0.018));
}

.not-for::before, .not-for::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  border-color: rgba(217, 51, 24, 0.5);
}

.not-for::before {
  top: -1px;
  left: -1px;
  border-top: 1px solid;
  border-left: 1px solid;
}

.not-for::after {
  right: -1px;
  bottom: -1px;
  border-right: 1px solid;
  border-bottom: 1px solid;
}

.not-for h3 {
  margin-bottom: 20px;
  font: 33px/1 var(--display);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.not-for ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0 0 24px;
  list-style: none;
}

.not-for li {
  position: relative;
  padding-left: 24px;
  color: #999;
  font-size: 13px;
}

.not-for li::before {
  content: "×";
  position: absolute;
  left: 0;
  color: #d44b36;
  font-weight: 700;
}

.not-for > p:last-child {
  margin: 0;
  padding-top: 20px;
  border-top: 1px solid var(--line-soft);
  color: #777;
  font-size: 11px;
}

.equipment {
  background: radial-gradient(circle at 50% 100%, rgba(255, 106, 0, 0.08), transparent 35%);
}

.equipment-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.equipment-card {
  position: relative;
  overflow: hidden;
  padding: 16px 16px 28px;
  border: 1px solid var(--line-soft);
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012));
  text-align: center;
  transition: border-color 0.35s, transform 0.35s var(--ease), box-shadow 0.35s;
}

.equipment-card::after {
  content: "";
  position: absolute;
  inset: auto 12% 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 106, 0, 0.5), transparent);
  opacity: 0;
  transition: opacity 0.35s;
}

.equipment-card:hover {
  transform: translateY(-6px);
  border-color: var(--line);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.equipment-card:hover::after {
  opacity: 1;
}

.equipment-visual {
  position: relative;
  height: 120px;
  display: grid;
  place-items: center;
  overflow: hidden;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.045);
  background: radial-gradient(ellipse at 50% 62%, rgba(255, 106, 0, 0.12), transparent 55%);
}

.equipment-visual::after {
  content: "";
  position: absolute;
  left: 20%;
  right: 20%;
  bottom: 20px;
  height: 10px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.65);
  filter: blur(7px);
}

.equipment-visual svg {
  position: relative;
  z-index: 1;
  width: 118px;
  height: 88px;
  margin: 0;
  overflow: visible;
  filter: drop-shadow(0 12px 8px rgba(0, 0, 0, 0.5));
  transition: transform 0.4s var(--ease), filter 0.4s;
}

.equipment-visual img {
  position: relative;
  z-index: 1;
  width: min(118px, 78%);
  height: 88px;
  max-height: 88px;
  object-fit: contain;
  filter: drop-shadow(0 12px 8px rgba(0, 0, 0, 0.5));
  transition: transform 0.4s var(--ease), filter 0.4s;
}

.equipment-card:hover .equipment-visual svg {
  transform: translateY(-4px) scale(1.045);
  filter: drop-shadow(0 16px 10px rgba(0, 0, 0, 0.55));
}

.equipment-card:hover .equipment-visual img {
  transform: translateY(-4px) scale(1.045);
  filter: drop-shadow(0 16px 10px rgba(0, 0, 0, 0.55));
}

.equipment-card h3 {
  position: relative;
  z-index: 2;
  margin-bottom: 5px;
  font: 24px/1 var(--display);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.equipment-card p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: #777;
  font-size: 11px;
}

.equipment__note {
  max-width: 750px;
  margin: 30px auto 0;
  padding: 16px 25px;
  border-left: 2px solid var(--accent);
  color: #999;
  background: rgba(255, 106, 0, 0.035);
  font-size: 12px;
  text-align: center;
}

.equipment__note span {
  margin-right: 10px;
  color: var(--accent-2);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.journey {
  border-block: 1px solid var(--line-soft);
  background: #0a0a0a;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 45px;
  left: 16%;
  right: 16%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), var(--line), transparent);
}

.phase {
  position: relative;
  z-index: 1;
  padding: 0 22px 30px;
  text-align: center;
}

.phase__marker {
  width: 90px;
  height: 90px;
  display: grid;
  place-items: center;
  align-content: center;
  margin: 0 auto 28px;
  border: 1px solid #292929;
  border-radius: 50%;
  background: #0a0a0a;
  box-shadow: 0 0 0 8px #0a0a0a;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.phase:hover .phase__marker, .phase--active .phase__marker {
  border-color: var(--accent);
  box-shadow: 0 0 0 8px #0a0a0a, 0 0 32px rgba(255, 106, 0, 0.14), inset 0 0 25px rgba(255, 106, 0, 0.07);
}

.phase__marker b {
  color: var(--accent);
  font: 30px/0.9 var(--display);
}

.phase__marker span {
  color: #6f6f6f;
  font-size: 8px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.phase small {
  color: var(--accent-2);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.phase h3 {
  margin: 8px 0 12px;
  font: 28px/1 var(--display);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.phase p {
  margin: 0;
  color: #888;
  font-size: 12px;
  line-height: 1.65;
}

.weekly {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 35px;
  padding: 19px 25px;
  border: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.018);
}

.weekly > span {
  color: var(--accent-2);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.weekly div {
  color: #9a9a9a;
  font-size: 11px;
}

.weekly b {
  margin-right: 3px;
  color: #fff;
  font: 22px var(--display);
}

.weekly i {
  width: 1px;
  height: 20px;
  background: #292929;
}

.offer {
  overflow: hidden;
  background: radial-gradient(circle at 50% 40%, rgba(255, 81, 0, 0.12), transparent 36%);
}

.offer-card {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  max-width: 970px;
  margin: auto;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, #101010, #090909);
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.4);
}

.offer-card__topline {
  position: absolute;
  top: -1px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  box-shadow: 0 0 14px var(--accent);
}

.offer-card__copy {
  padding: 58px 60px;
}

.offer-card__copy .eyebrow {
  justify-content: flex-start;
}

.offer-card h2 {
  font-size: clamp(42px, 4vw, 58px);
}

.offer-card__copy > p:not(.eyebrow) {
  max-width: 520px;
  color: #999;
  font-size: 13px;
}

.check-list--compact {
  gap: 10px;
  margin-top: 25px;
}

.check-list--compact li {
  font-size: 12px;
}

.price-box {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 50px 45px;
  border-left: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.018);
}

.price-box__badge {
  position: absolute;
  top: 0;
  right: 0;
  padding: 7px 12px;
  color: #090909;
  background: var(--gold);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.price-box > p {
  margin-bottom: 0;
  color: #888;
  font-size: 11px;
}

.price-box s {
  color: #b4b4b4;
}

.price {
  display: flex;
  align-items: center;
  margin: 2px 0 15px;
}

.price > small {
  align-self: flex-start;
  margin-top: 25px;
  color: var(--accent-2);
  font-size: 17px;
  font-weight: 700;
}

.price strong {
  color: #fff;
  font: 90px/0.9 var(--display);
  letter-spacing: -0.02em;
}

.price > span {
  color: #fff;
  font: 31px/0.75 var(--display);
}

.price em {
  color: #777;
  font: 8px var(--body);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.secure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 11px;
  color: #686868;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.secure svg {
  width: 12px;
  height: 12px;
  fill: none;
  stroke: #7f7f7f;
  stroke-width: 1.7;
}

.guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line-soft);
}

.guarantee b {
  color: var(--accent);
  font: 46px/0.8 var(--display);
}

.guarantee span {
  color: #777;
  font-size: 8px;
  line-height: 1.45;
}

.guarantee strong {
  color: #c7c7c7;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  align-items: start;
  gap: 9%;
}

.faq-layout .section-heading {
  position: sticky;
  top: 140px;
}

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

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

.faq-item h3 {
  margin: 0;
}

.faq-item button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 3px;
  border: 0;
  color: #ddd;
  background: transparent;
  font-size: 13px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  transition: color 0.25s;
}

.faq-item button:hover, .faq-item button[aria-expanded=true] {
  color: var(--accent-2);
}

.faq-item button i {
  position: relative;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.faq-item button i::before, .faq-item button i::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 1px;
  background: var(--accent);
  transform: translate(-50%, -50%);
  transition: transform 0.35s var(--ease);
}

.faq-item button i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item button[aria-expanded=true] i::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq-answer {
  display: grid;
  grid-template-rows: 1fr;
  transition: grid-template-rows 0.4s var(--ease), opacity 0.3s;
  opacity: 1;
}

.faq-answer.is-closed {
  grid-template-rows: 0fr;
  opacity: 0;
}

.faq-answer > div {
  overflow: hidden;
}

.faq-answer p {
  margin: 0;
  padding: 0 35px 24px 3px;
  color: #888;
  font-size: 12px;
  line-height: 1.7;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 125px 0 90px;
  border-top: 1px solid var(--line-soft);
  background: radial-gradient(circle at 50% 80%, rgba(255, 106, 0, 0.16), transparent 42%), #090909;
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image: linear-gradient(30deg, transparent 49.5%, rgba(255, 122, 0, 0.22) 50%, transparent 50.5%), linear-gradient(-30deg, transparent 49.5%, rgba(255, 122, 0, 0.16) 50%, transparent 50.5%);
  background-size: 80px 140px;
  mask-image: linear-gradient(90deg, transparent, #000, transparent);
}

.final-cta__ring {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 640px;
  height: 640px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 122, 0, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 45px rgba(255, 122, 0, 0.018), 0 0 0 90px rgba(255, 122, 0, 0.012);
}

.final-cta__inner {
  position: relative;
  text-align: center;
}

.final-cta__inner > p {
  max-width: 620px;
  margin: 0 auto 30px;
}

.final-cta .button {
  min-width: 270px;
}

.trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 45px;
  color: #777;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trust-bar span::before {
  content: "✓";
  margin-right: 7px;
  color: var(--accent);
}

.trust-bar i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #3d3d3d;
}

.footer {
  padding: 45px 0 25px;
  border-top: 1px solid var(--line-soft);
  background: #050505;
}

.footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 35px;
}

.footer .brand img {
  width: 188px;
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.footer nav a {
  color: #747474;
  font-size: 10px;
  font-weight: 600;
  transition: color 0.2s;
}

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

.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 22px;
  border-top: 1px solid #141414;
  color: #515151;
  font-size: 8px;
}

.footer__bottom p {
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}

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

@keyframes heroEnter {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes heroZoom {
  from {
    opacity: 0.45;
    transform: scale(1.06);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes scrollLine {
  0% {
    top: -100%;
  }
  60%, 100% {
    top: 100%;
  }
}
@keyframes ambientMove {
  to {
    transform: translate(7vw, 6vw) scale(1.15);
  }
}
@keyframes emberRise {
  0% {
    opacity: 0;
    transform: translate3d(0, 0, 0) scale(0.6);
  }
  15% {
    opacity: 0.55;
  }
  100% {
    opacity: 0;
    transform: translate3d(var(--drift), -105vh, 0) scale(1.2);
  }
}
@keyframes orbit {
  to {
    transform: rotate(360deg);
  }
}
@keyframes bookFloat {
  0%, 100% {
    transform: rotateY(-14deg) rotateX(2deg) translateY(0);
  }
  50% {
    transform: rotateY(-12deg) rotateX(1deg) translateY(-10px);
  }
}
@media (max-width: 1020px) {
  .nav {
    gap: 20px;
  }
  .benefit-grid, .equipment-grid {
    grid-template-columns: 1fr 1fr;
  }
  .content-layout {
    grid-template-columns: 0.75fr 1.25fr;
    gap: 5%;
  }
  .product-stage {
    min-height: 500px;
  }
  .orbit--one {
    width: 340px;
    height: 340px;
  }
  .orbit--two {
    width: 270px;
    height: 270px;
  }
  .ebook {
    width: 230px;
    height: 330px;
  }
  .ebook__cover strong {
    font-size: 34px;
  }
  .offer-card__copy {
    padding: 50px 42px;
  }
  .price-box {
    padding: 48px 32px;
  }
}
@media (max-width: 820px) {
  :root {
    --header-height: 70px;
  }
  .container {
    width: min(100% - 30px, var(--container));
  }
  .header__cta {
    display: none;
  }
  .menu-toggle {
    display: block;
    order: 3;
  }
  .menu-toggle[aria-expanded=true] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .menu-toggle[aria-expanded=true] span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle[aria-expanded=true] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
  .nav {
    position: fixed;
    inset: var(--header-height) 0 auto;
    display: grid;
    gap: 0;
    padding: 15px;
    border-bottom: 1px solid var(--line);
    background: rgba(7, 7, 7, 0.98);
    transform: translateY(-130%);
    opacity: 0;
    transition: transform 0.4s var(--ease), opacity 0.3s;
  }
  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
  }
  .nav a {
    padding: 14px 10px;
    border-bottom: 1px solid #161616;
  }
  .nav a::after {
    display: none;
  }
  .hero {
    min-height: 740px;
    height: auto;
    padding: 125px 0 90px;
    align-items: flex-end;
  }
  .hero::before {
    background: linear-gradient(0deg, #070707 4%, rgba(7, 7, 7, 0.91) 40%, rgba(7, 7, 7, 0.1) 72%, rgba(7, 7, 7, 0.25) 100%), linear-gradient(90deg, rgba(7, 7, 7, 0.45), transparent);
  }
  .hero__visual img {
    object-position: 67% top;
  }
  .hero__content {
    width: 100%;
    padding-top: 260px;
  }
  .hero h1 {
    font-size: clamp(55px, 13vw, 78px);
  }
  .scroll-cue {
    display: none;
  }
  .section {
    padding: 90px 0;
  }
  .content-layout, .audience-layout, .offer-card, .faq-layout {
    grid-template-columns: 1fr;
  }
  .product-stage {
    position: relative;
    top: 0;
    min-height: 520px;
    order: 2;
  }
  .content-layout > div:last-child {
    order: 1;
  }
  .audience-layout {
    gap: 50px;
  }
  .timeline {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .timeline::before {
    top: 0;
    bottom: 0;
    left: 45px;
    right: auto;
    width: 1px;
    height: auto;
    background: linear-gradient(transparent, var(--line), transparent);
  }
  .phase {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 25px;
    padding: 0 0 38px;
    text-align: left;
  }
  .phase__marker {
    margin: 0;
  }
  .weekly {
    flex-wrap: wrap;
  }
  .offer-card__copy {
    padding: 48px 35px 35px;
  }
  .price-box {
    border-top: 1px solid var(--line-soft);
    border-left: 0;
    text-align: center;
  }
  .price {
    justify-content: center;
  }
  .faq-layout {
    gap: 15px;
  }
  .faq-layout .section-heading {
    position: static;
  }
}
@media (max-width: 560px) {
  body {
    font-size: 15px;
  }
  .brand img {
    width: 148px;
  }
  .hero {
    min-height: 760px;
    padding-bottom: 65px;
  }
  .hero__content {
    padding-top: 260px;
  }
  .hero h1 {
    font-size: 54px;
  }
  .hero__subtitle {
    font-size: 10px;
  }
  .hero__text {
    font-size: 14px;
  }
  .hero__actions {
    display: grid;
  }
  .button {
    width: 100%;
  }
  .hero__chips span {
    flex: 1 1 calc(50% - 8px);
  }
  .section {
    padding: 75px 0;
  }
  .section-heading {
    margin-bottom: 40px;
  }
  .section-heading h2, .final-cta h2 {
    font-size: 44px;
  }
  .benefit-grid, .equipment-grid, .content-list {
    grid-template-columns: 1fr;
  }
  .card {
    min-height: 245px;
  }
  .content-item--featured {
    grid-column: auto;
  }
  .product-stage {
    min-height: 440px;
  }
  .orbit--one {
    width: 300px;
    height: 300px;
  }
  .orbit--two {
    width: 245px;
    height: 245px;
  }
  .ebook {
    width: 210px;
    height: 300px;
  }
  .ebook__cover {
    padding: 28px 24px;
  }
  .ebook__cover strong {
    font-size: 31px;
  }
  .ebook__cover svg {
    top: 35px;
  }
  .product-stage__tag {
    right: 0;
    bottom: 8%;
  }
  .not-for {
    padding: 32px 25px;
  }
  .equipment-grid {
    grid-template-columns: 1fr 1fr;
  }
  .equipment-card {
    padding: 12px 8px 24px;
  }
  .equipment-visual {
    height: 100px;
  }
  .equipment-visual svg, .equipment-visual img {
    width: 96px;
    height: 72px;
  }
  .equipment-card h3 {
    font-size: 20px;
  }
  .equipment__note span {
    display: block;
    margin: 0 0 5px;
  }
  .phase {
    grid-template-columns: 74px 1fr;
    gap: 18px;
  }
  .phase__marker {
    width: 74px;
    height: 74px;
  }
  .timeline::before {
    left: 37px;
  }
  .weekly {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    text-align: center;
  }
  .weekly > span {
    grid-column: 1/-1;
  }
  .weekly i {
    display: none;
  }
  .offer-card__copy {
    padding: 42px 25px 30px;
  }
  .offer-card h2 {
    font-size: 42px;
  }
  .price-box {
    padding: 45px 24px 35px;
  }
  .price strong {
    font-size: 82px;
  }
  .final-cta {
    padding: 90px 0 70px;
  }
  .trust-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .trust-bar i {
    display: none;
  }
  .footer__top, .footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }
  .footer nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
  .reveal, .hero-animate {
    opacity: 1;
    transform: none;
  }
  .ember-field {
    display: none;
  }
}
