@font-face {
  font-family: "Cormorant Garamond";
  src: url("/assets/fonts/cormorant-400.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("/assets/fonts/cormorant-600.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("/assets/fonts/manrope-400.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("/assets/fonts/manrope-500.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("/assets/fonts/manrope-700.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --bg: #080705;
  --bg-soft: #0d0b08;
  --panel: #12100d;
  --panel-light: #18140f;
  --cream: #f3ecdf;
  --muted: rgba(243, 236, 223, 0.62);
  --faint: rgba(243, 236, 223, 0.36);
  --gold: #d2ad66;
  --gold-light: #e8cc8c;
  --line: rgba(220, 190, 132, 0.18);
  --line-light: rgba(243, 236, 223, 0.11);
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Manrope", Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --content: min(1320px, calc(100vw - 64px));
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  background: var(--bg);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 78% 6%, rgba(210, 173, 102, 0.09), transparent 30rem),
    var(--bg);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, #000 0, transparent 60rem);
  content: "";
}

::selection {
  background: var(--gold);
  color: #16110b;
}

img,
video {
  max-width: 100%;
}

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

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  transform: translateY(-150%);
  border-radius: 8px;
  background: var(--cream);
  color: var(--bg);
}

.skip-link:focus {
  transform: translateY(0);
}

.page-noise {
  position: fixed;
  z-index: 100;
  inset: 0;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E");
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: var(--content);
  margin: 0 auto;
  padding: 22px 0;
  border-bottom: 1px solid rgba(243, 236, 223, 0.08);
  background: rgba(8, 7, 5, 0.68);
  backdrop-filter: blur(18px);
  transition: transform 250ms ease, background 250ms ease, padding 250ms ease;
}

.site-header::before {
  position: absolute;
  z-index: -1;
  top: 0;
  right: calc((100vw - var(--content)) / -2);
  bottom: 0;
  left: calc((100vw - var(--content)) / -2);
  background: inherit;
  content: "";
}

.site-header.is-scrolled {
  padding-block: 15px;
  background: rgba(8, 7, 5, 0.9);
}

.site-header.is-hidden {
  transform: translateY(-110%);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 13px;
  width: fit-content;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.brand img {
  display: block;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(210, 173, 102, 0.5);
  border-radius: 50%;
  object-fit: cover;
  object-position: 50% 35%;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 36px;
  color: var(--muted);
  font-size: 13px;
}

.header-nav a,
.footer-links a {
  transition: color 180ms ease;
}

.header-nav a:hover,
.footer-links a:hover {
  color: var(--gold-light);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 18px;
  padding: 11px 16px 11px 19px;
  border: 1px solid rgba(210, 173, 102, 0.36);
  border-radius: 999px;
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 700;
  transition: background 180ms ease, color 180ms ease;
}

.header-cta:hover {
  background: var(--gold);
  color: #17120c;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(420px, 0.86fr);
  gap: clamp(56px, 7vw, 112px);
  align-items: center;
  width: var(--content);
  min-height: calc(100svh - 89px);
  margin: 0 auto;
  padding: 80px 0 98px;
}

.hero-glow {
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: 4%;
  width: 38rem;
  height: 26rem;
  border-radius: 50%;
  background: rgba(210, 173, 102, 0.075);
  filter: blur(90px);
}

.eyebrow {
  margin: 0 0 24px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero h1,
.section-intro h2,
.mentor-copy h2,
.price-copy h2,
.final-cta h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.045em;
}

.hero h1 {
  max-width: 850px;
  font-size: clamp(58px, 6.7vw, 104px);
  line-height: 0.88;
}

h1 em,
h2 em {
  color: var(--gold-light);
  font-weight: 400;
}

.hero-lead {
  max-width: 710px;
  margin: 34px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.55vw, 21px);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  min-height: 58px;
  padding: 15px 19px 15px 25px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button > span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--gold);
  box-shadow: 0 14px 45px rgba(210, 173, 102, 0.14);
  color: #17120c;
}

.button-primary:hover {
  background: var(--gold-light);
}

.button-secondary {
  border-color: rgba(210, 173, 102, 0.4);
  color: var(--gold-light);
}

.button-secondary:hover {
  border-color: var(--gold-light);
  background: rgba(210, 173, 102, 0.08);
}

.button-full {
  width: 100%;
}

.text-link,
.split-link {
  color: var(--muted);
  font-size: 13px;
  text-decoration: underline;
  text-decoration-color: rgba(210, 173, 102, 0.45);
  text-underline-offset: 5px;
  transition: color 180ms ease;
}

.text-link:hover,
.split-link:hover {
  color: var(--gold-light);
}

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

.hero-proof > div {
  display: flex;
  min-width: 145px;
  flex-direction: column;
  gap: 4px;
  padding-right: 28px;
}

.hero-proof > div + div {
  padding-left: 28px;
  border-left: 1px solid var(--line);
}

.hero-proof strong {
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
}

.hero-proof span {
  color: var(--faint);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-terminal {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border: 1px solid rgba(210, 173, 102, 0.23);
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.035), transparent 40%),
    rgba(18, 15, 12, 0.92);
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.34), inset 0 1px rgba(255, 255, 255, 0.04);
}

.hero-terminal::after {
  position: absolute;
  right: -8rem;
  bottom: -9rem;
  width: 22rem;
  height: 22rem;
  border-radius: 50%;
  background: rgba(210, 173, 102, 0.13);
  filter: blur(70px);
  content: "";
}

.terminal-topline {
  display: flex;
  justify-content: space-between;
  margin-bottom: 36px;
  color: var(--faint);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 11px;
}

.live-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.live-label::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(210, 173, 102, 0.08);
  content: "";
}

.terminal-steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.terminal-steps li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 62px;
  padding: 15px;
  border-top: 1px solid rgba(243, 236, 223, 0.075);
  color: rgba(243, 236, 223, 0.45);
  font-size: 13px;
}

.terminal-steps li > span {
  color: var(--faint);
  font-size: 10px;
}

.terminal-steps .active {
  margin-top: 7px;
  border: 1px solid rgba(210, 173, 102, 0.34);
  border-radius: 14px;
  background: rgba(210, 173, 102, 0.07);
  color: var(--gold-light);
}

.terminal-result {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  padding: 34px 15px 12px;
}

.terminal-result small {
  margin-bottom: 9px;
  color: var(--faint);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.terminal-result strong {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
}

.terminal-result p {
  max-width: 340px;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.ticker {
  overflow: hidden;
  width: 100%;
  padding: 19px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.ticker > div {
  display: flex;
  justify-content: center;
  gap: 22px;
  min-width: max-content;
  padding: 0 24px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ticker i {
  color: var(--gold);
  font-style: normal;
}

.section.author-section {
  padding-top: 120px;
}

.author-panel {
  display: grid;
  grid-template-columns: minmax(390px, 0.82fr) minmax(0, 1.18fr);
  min-height: 620px;
  overflow: hidden;
  border: 1px solid rgba(210, 173, 102, 0.24);
  border-radius: 34px;
  background:
    radial-gradient(circle at 100% 0, rgba(210, 173, 102, 0.12), transparent 30rem),
    rgba(18, 15, 12, 0.88);
  box-shadow: 0 35px 110px rgba(0, 0, 0, 0.24);
}

.author-portrait {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: #18140f;
}

.author-portrait::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(8, 7, 5, 0.74), transparent 42%),
    linear-gradient(90deg, transparent 75%, rgba(18, 15, 12, 0.4));
  pointer-events: none;
  content: "";
}

.author-portrait > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.82) sepia(0.1) contrast(1.04);
}

.author-age {
  position: absolute;
  z-index: 1;
  right: 24px;
  bottom: 34px;
  color: rgba(232, 204, 140, 0.21);
  font-family: var(--serif);
  font-size: 170px;
  font-weight: 400;
  line-height: 0.68;
  letter-spacing: -0.08em;
}

.author-caption {
  position: absolute;
  z-index: 2;
  bottom: 30px;
  left: 30px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(8, 7, 5, 0.66);
  backdrop-filter: blur(14px);
}

.author-caption span {
  font-family: var(--serif);
  font-size: 20px;
}

.author-caption small {
  color: var(--muted);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.author-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(46px, 6.3vw, 90px);
}

.author-copy h2 {
  max-width: 780px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(50px, 5.2vw, 78px);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: -0.045em;
}

.author-copy h2 em {
  color: var(--gold-light);
  font-weight: 400;
}

.author-copy > p:not(.eyebrow) {
  max-width: 720px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.72;
}

.author-copy > p + p {
  margin-top: 14px !important;
}

.author-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 37px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.author-facts > div {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 5px;
  padding-right: 18px;
}

.author-facts > div + div {
  padding-left: 20px;
  border-left: 1px solid var(--line);
}

.author-facts strong {
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 400;
  line-height: 1;
}

.author-facts span {
  color: var(--faint);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.section {
  width: var(--content);
  margin: 0 auto;
  padding: 150px 0 20px;
}

.section-intro {
  max-width: 880px;
}

.section-intro h2,
.mentor-copy h2,
.price-copy h2,
.final-cta h2 {
  font-size: clamp(48px, 5.5vw, 82px);
  line-height: 0.96;
}

.section-intro > p:last-child:not(.eyebrow),
.section-intro-split > p {
  max-width: 680px;
  margin: 27px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.section-intro-split {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 0.62fr);
  gap: clamp(50px, 9vw, 150px);
  align-items: end;
  max-width: none;
}

.section-intro-split > p {
  margin: 0 0 8px;
}

.main-video-frame {
  position: relative;
  overflow: hidden;
  margin-top: 60px;
  padding: 14px;
  border: 1px solid rgba(210, 173, 102, 0.24);
  border-radius: 32px;
  background: linear-gradient(145deg, rgba(210, 173, 102, 0.08), rgba(255, 255, 255, 0.015));
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.32);
}

.main-video-frame::before,
.main-video-frame::after {
  position: absolute;
  z-index: 2;
  width: 72px;
  height: 72px;
  border-color: rgba(232, 204, 140, 0.5);
  pointer-events: none;
  content: "";
}

.main-video-frame::before {
  top: 6px;
  left: 6px;
  border-top: 1px solid;
  border-left: 1px solid;
  border-radius: 25px 0 0;
}

.main-video-frame::after {
  right: 6px;
  bottom: 6px;
  border-right: 1px solid;
  border-bottom: 1px solid;
  border-radius: 0 0 25px;
}

.main-video-frame video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 21px;
  background: #000;
}

.video-label {
  position: absolute;
  z-index: 3;
  top: 34px;
  left: 34px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(8, 7, 5, 0.72);
  backdrop-filter: blur(12px);
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.video-label span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 64px;
}

.offer-card {
  position: relative;
  display: flex;
  min-height: 290px;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(18, 15, 12, 0.78);
}

.offer-card::after {
  position: absolute;
  top: -5rem;
  right: -5rem;
  width: 12rem;
  height: 12rem;
  border: 1px solid rgba(210, 173, 102, 0.12);
  border-radius: 50%;
  content: "";
}

.offer-card-wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 2fr;
  min-height: 245px;
  align-items: end;
}

.offer-card-accent {
  background:
    radial-gradient(circle at 100% 0, rgba(210, 173, 102, 0.16), transparent 45%),
    var(--panel-light);
}

.card-number {
  position: absolute;
  top: 29px;
  left: 34px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 18px;
}

.offer-card h3 {
  position: relative;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(34px, 3vw, 48px);
  font-weight: 400;
  letter-spacing: -0.025em;
}

.offer-card p {
  position: relative;
  max-width: 640px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.video-cases {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 64px;
}

.case-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 27px;
  background: rgba(18, 15, 12, 0.82);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.2);
}

.case-card-wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
}

.case-video {
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #020202;
}

.case-video video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.case-body {
  display: flex;
  min-height: 260px;
  flex-direction: column;
  padding: 28px 30px 32px;
}

.case-card-wide .case-body {
  min-height: auto;
  justify-content: center;
}

.case-body > p {
  margin: 0 0 22px;
  color: var(--faint);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.case-body h3 {
  margin: 0;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: clamp(46px, 5vw, 72px);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.035em;
}

.case-body strong {
  margin-top: 12px;
  font-size: 15px;
  font-weight: 500;
}

.case-body > span {
  margin-top: auto;
  padding-top: 28px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.feedback-grid {
  columns: 3 300px;
  column-gap: 16px;
  margin-top: 64px;
}

.feedback-card {
  display: inline-block;
  width: 100%;
  overflow: hidden;
  margin: 0 0 16px;
  break-inside: avoid;
  border: 1px solid var(--line);
  border-radius: 21px;
  background: rgba(18, 15, 12, 0.82);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.feedback-card:hover {
  transform: translateY(-3px);
  border-color: rgba(210, 173, 102, 0.45);
  background: rgba(25, 21, 16, 0.92);
}

.feedback-card img {
  display: block;
  width: calc(100% - 24px);
  height: auto;
  margin: 0 12px;
  border-radius: 13px;
  background: #111;
}

.feedback-meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 17px 18px 14px;
  color: var(--faint);
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.feedback-card h3 {
  margin: 20px 20px 0;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
}

.feedback-card p {
  margin: 12px 20px 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.post-link {
  display: block;
  margin: 24px 20px 20px;
  color: var(--gold);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.feedback-more {
  display: flex;
  justify-content: center;
  margin-top: 42px;
}

.mentor-panel {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: 600px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 34px;
  background:
    radial-gradient(circle at 83% 50%, rgba(210, 173, 102, 0.12), transparent 35%),
    rgba(18, 15, 12, 0.88);
}

.mentor-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(42px, 6vw, 86px);
}

.mentor-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.mentor-copy blockquote {
  max-width: 620px;
  margin: 36px 0 0;
  padding: 21px 0 0 26px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--gold);
  color: rgba(243, 236, 223, 0.78);
  font-family: var(--serif);
  font-size: 23px;
  line-height: 1.3;
}

.mentor-visual {
  position: relative;
  display: grid;
  min-height: 520px;
  place-items: center;
  overflow: hidden;
}

.mentor-visual img {
  position: relative;
  z-index: 2;
  width: 250px;
  height: 250px;
  border: 1px solid rgba(232, 204, 140, 0.52);
  border-radius: 50%;
  object-fit: cover;
  object-position: 50% 35%;
  filter: sepia(0.16) contrast(1.05);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.38);
}

.orbit {
  position: absolute;
  border: 1px solid rgba(210, 173, 102, 0.19);
  border-radius: 50%;
}

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

.orbit-two {
  width: 570px;
  height: 570px;
  border-style: dashed;
  opacity: 0.55;
}

.mentor-monogram {
  position: absolute;
  z-index: 1;
  color: rgba(210, 173, 102, 0.06);
  font-family: var(--serif);
  font-size: 250px;
}

.price-card {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(50px, 7vw, 110px);
  overflow: hidden;
  padding: clamp(40px, 6vw, 82px);
  border: 1px solid rgba(210, 173, 102, 0.28);
  border-radius: 34px;
  background:
    radial-gradient(circle at 100% 0, rgba(210, 173, 102, 0.15), transparent 30rem),
    linear-gradient(140deg, rgba(255, 255, 255, 0.025), transparent 45%),
    var(--panel);
}

.price-copy > p:not(.eyebrow) {
  max-width: 640px;
  margin: 27px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.price-copy ul {
  display: grid;
  gap: 0;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.price-copy li {
  position: relative;
  padding: 13px 0 13px 25px;
  border-top: 1px solid var(--line-light);
  color: rgba(243, 236, 223, 0.78);
  font-size: 13px;
}

.price-copy li::before {
  position: absolute;
  top: 19px;
  left: 3px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

.price-box {
  display: flex;
  flex-direction: column;
  align-self: center;
  padding: clamp(30px, 4vw, 52px);
  border: 1px solid var(--line);
  border-radius: 25px;
  background: rgba(8, 7, 5, 0.5);
}

.price-box > small {
  color: var(--faint);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.price-box > strong {
  margin-top: 17px;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: clamp(56px, 6vw, 82px);
  font-weight: 400;
  line-height: 0.88;
  letter-spacing: -0.045em;
}

.price-box > span {
  margin: 11px 0 30px;
  color: var(--muted);
  font-size: 12px;
}

.split-link {
  align-self: center;
  margin-top: 20px;
}

.price-note {
  margin: 28px 0 0;
  color: var(--faint);
  font-size: 9px;
  line-height: 1.55;
  text-align: center;
}

.final-cta {
  display: flex;
  width: var(--content);
  min-height: 620px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 130px auto 80px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: radial-gradient(circle at 50% 50%, rgba(210, 173, 102, 0.1), transparent 23rem);
  text-align: center;
}

.final-cta h2 {
  font-size: clamp(58px, 7vw, 104px);
}

.final-cta .button {
  margin-top: 43px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: var(--content);
  margin: 0 auto;
  padding: 30px 0 44px;
}

.site-footer .brand img {
  width: 40px;
  height: 40px;
}

.footer-links {
  display: flex;
  gap: 26px;
  color: var(--muted);
  font-size: 11px;
}

.site-footer > p {
  justify-self: end;
  margin: 0;
  color: var(--faint);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mobile-cta {
  display: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1100px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 100px;
  }

  .hero-copy {
    max-width: 920px;
  }

  .hero-terminal {
    width: min(700px, 100%);
  }

  .author-panel {
    grid-template-columns: minmax(360px, 0.9fr) 1.1fr;
  }

  .author-copy {
    padding: 50px;
  }

  .case-card-wide {
    display: block;
  }

  .case-card-wide .case-body {
    min-height: 260px;
  }

  .mentor-panel,
  .price-card {
    grid-template-columns: 1fr;
  }

  .mentor-visual {
    min-height: 520px;
  }

  .price-box {
    width: min(580px, 100%);
  }

}

@media (max-width: 820px) {
  :root {
    --content: min(100% - 36px, 1320px);
  }

  .site-header {
    grid-template-columns: 1fr auto;
    padding: 16px 0;
  }

  .header-nav {
    display: none;
  }

  .header-cta {
    font-size: 11px;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 54px;
    padding: 70px 0 70px;
  }

  .hero h1 {
    font-size: clamp(49px, 14vw, 78px);
  }

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

  .hero-proof > div {
    min-width: 0;
    padding-right: 14px;
  }

  .hero-proof > div + div {
    padding-left: 14px;
  }

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

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

  .section.author-section {
    padding-top: 80px;
  }

  .author-panel {
    grid-template-columns: 1fr;
  }

  .author-portrait {
    min-height: 0;
    aspect-ratio: 1 / 1;
  }

  .author-copy {
    padding: 48px 38px;
  }

  .section {
    padding-top: 110px;
  }

  .section-intro-split {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .section-intro-split > p {
    margin: 0;
  }

  .main-video-frame {
    margin-top: 42px;
    padding: 7px;
    border-radius: 20px;
  }

  .main-video-frame video {
    border-radius: 14px;
  }

  .video-label {
    top: 20px;
    left: 20px;
    font-size: 8px;
  }

  .offer-grid,
  .video-cases {
    grid-template-columns: 1fr;
  }

  .offer-card-wide,
  .case-card-wide {
    grid-column: auto;
  }

  .offer-card-wide {
    display: flex;
  }

  .feedback-grid {
    columns: 2 260px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-bottom: 105px;
  }

  .footer-links {
    flex-wrap: wrap;
  }

  .site-footer > p {
    justify-self: start;
  }

  .mobile-cta {
    position: fixed;
    z-index: 70;
    right: 12px;
    bottom: 12px;
    left: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 54px;
    padding: 13px 18px 13px 22px;
    border-radius: 999px;
    background: var(--gold);
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.4);
    color: #17120c;
    font-size: 13px;
    font-weight: 700;
  }
}

@media (max-width: 560px) {
  :root {
    --content: calc(100% - 28px);
  }

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

  .brand img {
    width: 38px;
    height: 38px;
  }

  .header-cta {
    gap: 9px;
    padding: 10px 12px 10px 15px;
  }

  .hero {
    padding-top: 58px;
  }

  .eyebrow {
    margin-bottom: 18px;
    font-size: 9px;
  }

  .hero h1 {
    font-size: clamp(46px, 15.5vw, 66px);
    line-height: 0.92;
  }

  .hero-lead {
    margin-top: 25px;
    font-size: 15px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 19px;
  }

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

  .text-link {
    align-self: center;
  }

  .hero-proof {
    margin-top: 40px;
  }

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

  .hero-proof span {
    letter-spacing: 0;
    text-transform: none;
  }

  .hero-terminal {
    padding: 19px;
    border-radius: 23px;
  }

  .terminal-topline {
    margin-bottom: 25px;
    font-size: 9px;
  }

  .terminal-steps li {
    min-height: 53px;
    padding: 12px;
    font-size: 11px;
  }

  .ticker > div {
    justify-content: flex-start;
  }

  .section {
    padding-top: 90px;
  }

  .section.author-section {
    padding-top: 65px;
  }

  .author-panel {
    border-radius: 23px;
  }

  .author-caption {
    bottom: 18px;
    left: 18px;
    padding: 10px 12px;
  }

  .author-caption span {
    font-size: 17px;
  }

  .author-age {
    right: 18px;
    bottom: 24px;
    font-size: 115px;
  }

  .author-copy {
    padding: 34px 24px 38px;
  }

  .author-copy h2 {
    font-size: clamp(42px, 12.8vw, 58px);
  }

  .author-copy > p:not(.eyebrow) {
    margin-top: 22px;
    font-size: 13px;
  }

  .author-facts {
    margin-top: 30px;
    padding-top: 22px;
  }

  .author-facts > div {
    padding-right: 8px;
  }

  .author-facts > div + div {
    padding-left: 10px;
  }

  .author-facts strong {
    font-size: 25px;
  }

  .author-facts span {
    font-size: 7px;
    letter-spacing: 0;
    text-transform: none;
  }

  .section-intro h2,
  .mentor-copy h2,
  .price-copy h2,
  .final-cta h2 {
    font-size: clamp(43px, 13.5vw, 62px);
  }

  .section-intro > p:last-child:not(.eyebrow),
  .section-intro-split > p {
    font-size: 14px;
  }

  .video-label {
    display: none;
  }

  .main-video-frame::before,
  .main-video-frame::after {
    display: none;
  }

  .offer-grid,
  .video-cases {
    margin-top: 42px;
  }

  .offer-card {
    min-height: 250px;
    padding: 26px;
    border-radius: 21px;
  }

  .card-number {
    top: 23px;
    left: 26px;
  }

  .case-card {
    border-radius: 21px;
  }

  .case-body {
    min-height: 235px;
    padding: 24px;
  }

  .case-card-wide .case-body {
    min-height: 235px;
  }

  .feedback-grid {
    columns: 1;
    margin-top: 42px;
  }

  .mentor-panel {
    border-radius: 23px;
  }

  .mentor-copy {
    padding: 33px 26px 20px;
  }

  .mentor-copy blockquote {
    padding-left: 18px;
    font-size: 20px;
  }

  .mentor-visual {
    min-height: 390px;
  }

  .mentor-visual img {
    width: 190px;
    height: 190px;
  }

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

  .orbit-two {
    width: 410px;
    height: 410px;
  }

  .price-card {
    gap: 40px;
    padding: 32px 22px;
    border-radius: 23px;
  }

  .price-box {
    padding: 28px 20px;
  }

  .price-box > strong {
    font-size: 56px;
  }

  .final-cta {
    min-height: 540px;
    margin-top: 90px;
  }
}
