:root {
  --ink: #eef7fa;
  --muted: #a6aaad;
  --muted-strong: #d0d2d3;
  --gold: #f9b404;
  --gold-bright: #ffc52e;
  --cyan: #31bfdc;
  --cyan-bright: #5bd6ee;
  --cyan-dark: #168ca5;
  --red: #ff4b55;
  --night: #131313;
  --night-2: #191a1b;
  --panel: #1c1d1e;
  --panel-2: #222425;
  --line: rgba(226, 232, 234, 0.14);
  --line-strong: rgba(49, 191, 220, 0.34);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
  --radius: 24px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--night);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  color: var(--night);
  background: var(--gold);
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

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

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: 78px;
  display: flex;
  align-items: center;
  background: rgba(19, 19, 19, 0.72);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: background 180ms ease, border-color 180ms ease;
}

.site-header.scrolled {
  background: rgba(19, 19, 19, 0.96);
  border-color: var(--line);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex: none;
}

.brand-mark {
  width: 41px;
  height: 41px;
  display: block;
  border-radius: 50%;
}

.brand-type {
  font-size: 18px;
  font-weight: 850;
  letter-spacing: 0.08em;
}

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

.desktop-nav a {
  position: relative;
  color: var(--muted-strong);
  font-size: 14px;
  font-weight: 650;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  inset: auto 0 -7px;
  height: 1px;
  background: var(--cyan);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

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

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 780;
  line-height: 1.2;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

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

.button:focus-visible,
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--cyan-bright);
  outline-offset: 4px;
}

.button svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.button .icon-cutout {
  fill: var(--night);
}

.button-small {
  min-height: 40px;
  padding: 10px 15px;
  color: var(--night);
  background: var(--gold);
  box-shadow: 4px 4px 0 var(--cyan-dark);
}

.button-small svg {
  width: 15px;
  height: 15px;
}

.button-primary {
  color: var(--night);
  background: var(--gold);
  box-shadow: 5px 5px 0 var(--cyan-dark), 0 10px 36px rgba(249, 180, 4, 0.16);
}

.button-primary:hover {
  background: var(--gold-bright);
  box-shadow: 7px 7px 0 var(--cyan), 0 14px 42px rgba(249, 180, 4, 0.24);
}

.button-ghost {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.025);
  border-color: var(--line-strong);
}

.button-ghost:hover {
  background: rgba(51, 197, 232, 0.06);
  border-color: var(--cyan);
}

.menu-button,
.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  min-height: 860px;
  padding: 154px 0 0;
  overflow: hidden;
  isolation: isolate;
  background-image:
    linear-gradient(90deg, rgba(19, 19, 19, 0.2), rgba(19, 19, 19, 0.52)),
    url("assets/drjohn-chalkboard.webp");
  background-position: center top;
  background-size: cover;
}

.hero-grid {
  position: absolute;
  z-index: -3;
  inset: 0;
  opacity: 0.07;
  background-image:
    linear-gradient(rgba(100, 190, 212, 0.085) 1px, transparent 1px),
    linear-gradient(90deg, rgba(100, 190, 212, 0.085) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 92%);
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    radial-gradient(circle at 50% 25%, transparent 0 1px, rgba(19, 19, 19, 0.18) 60%),
    linear-gradient(to bottom, transparent 65%, var(--night));
}

.hero-glow {
  position: absolute;
  z-index: -2;
  border-radius: 50%;
  filter: blur(6px);
  pointer-events: none;
}

.hero-glow-one {
  width: 520px;
  height: 520px;
  top: 70px;
  right: -120px;
  background: radial-gradient(circle, rgba(49, 191, 220, 0.13), transparent 68%);
}

.hero-glow-two {
  width: 380px;
  height: 380px;
  left: -180px;
  bottom: 30px;
  background: radial-gradient(circle, rgba(249, 180, 4, 0.11), transparent 70%);
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
  align-items: center;
  gap: 60px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 22px;
  color: var(--cyan);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.17em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 27px;
  height: 1px;
  background: currentColor;
}

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

h1,
h2 {
  font-weight: 820;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

h1 {
  max-width: 760px;
  margin-bottom: 36px;
  font-size: clamp(54px, 6.1vw, 88px);
}

h1 em,
h2 em {
  color: var(--gold);
  font-family: inherit;
  font-style: normal;
  font-weight: 820;
  letter-spacing: -0.055em;
}

.hero h1 em,
.final-cta h2 em {
  display: inline-block;
  padding: 0.02em 0.16em 0.08em;
  color: #102a37;
  background: var(--gold);
  box-shadow: 9px 9px 0 var(--cyan-dark);
}

.hero h1 {
  display: grid;
  justify-items: start;
  gap: clamp(14px, 1.5vw, 22px);
  line-height: 0.86;
}

.hero h1 > span {
  display: block;
}

.hero h1 em {
  margin-left: clamp(18px, 4vw, 60px);
}

.final-cta h2 em {
  margin-top: 0.12em;
}

.hero-lede {
  max-width: 620px;
  margin-bottom: 34px;
  color: var(--muted-strong);
  font-size: clamp(18px, 1.65vw, 21px);
  line-height: 1.65;
}

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

.hero-signoff {
  margin: 24px 0 0;
  color: #81969e;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-signoff strong {
  color: var(--gold);
  font-weight: 700;
}

.hero-signoff a {
  margin-left: 8px;
  color: var(--cyan);
  white-space: nowrap;
}

.hero-signoff a:hover {
  color: var(--cyan-bright);
}

.hero-visual {
  position: relative;
  min-height: 540px;
  display: grid;
  place-items: center;
}

.orbit-stage {
  position: absolute;
  width: 470px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}

.atom-orbits {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.atom-orbit-line {
  fill: none;
  stroke: rgba(91, 214, 238, 0.34);
  stroke-width: 1.5;
  vector-effect: non-scaling-stroke;
}

.atom-ring-two .atom-orbit-line {
  stroke-opacity: 0.72;
}

.atom-ring-three .atom-orbit-line {
  stroke-opacity: 0.5;
}

.atom-electron {
  fill: var(--gold-bright);
  stroke: var(--night);
  stroke-width: 3.5;
  vector-effect: non-scaling-stroke;
  transform-box: fill-box;
  transform-origin: center;
  filter: drop-shadow(0 0 8px rgba(249, 180, 4, 0.78));
  animation: electronPulse 4.8s ease-in-out infinite;
}

.atom-ring-two .atom-electron {
  animation-delay: -1.6s;
}

.atom-ring-three .atom-electron {
  animation-delay: -3.2s;
}

.core {
  position: relative;
  z-index: 3;
  width: 130px;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(249, 180, 4, 0.64);
  border-radius: 50%;
  background: #212529;
  box-shadow: 0 0 70px rgba(49, 191, 220, 0.2), 7px 7px 0 rgba(49, 191, 220, 0.32);
}

.core::before {
  content: "";
  position: absolute;
  inset: 9px;
  border: 1px dashed rgba(89, 218, 246, 0.24);
  border-radius: inherit;
}

.core img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 50%;
}

@keyframes electronPulse {
  0%, 100% { opacity: 0.7; transform: scale(0.9); }
  50% { opacity: 1; transform: scale(1.12); }
}

.method-card {
  position: absolute;
  z-index: 5;
  right: -12px;
  bottom: 4px;
  width: min(330px, 85%);
  padding: 19px;
  border: 1px solid rgba(249, 180, 4, 0.5);
  border-radius: 14px;
  background: rgba(19, 19, 19, 0.91);
  box-shadow: 7px 7px 0 rgba(49, 191, 220, 0.28), var(--shadow);
  backdrop-filter: blur(18px);
  transform: rotate(-1.2deg);
}

.method-label {
  margin-bottom: 12px;
  color: var(--gold);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.17em;
}

.method-card ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.method-card li {
  display: grid;
  grid-template-columns: 31px 1fr 26px;
  align-items: center;
  min-height: 46px;
  padding: 0 10px;
  color: #879aa1;
  border-top: 1px solid var(--line);
  font-size: 12px;
}

.method-card li span {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 9px;
}

.method-card li strong {
  font-weight: 620;
}

.method-card li i {
  font-family: Georgia, serif;
  font-size: 17px;
  font-style: normal;
  text-align: center;
}

.method-card li.active {
  color: var(--ink);
  background: rgba(249, 180, 4, 0.1);
}

.method-card li.active i {
  color: var(--gold);
}

.proof-strip {
  position: relative;
  z-index: 4;
  min-height: 105px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  margin-top: 82px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-strip p {
  margin: 0;
  color: #80949c;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.proof-strip p + p {
  border-left: 1px solid var(--line);
}

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

.section-heading {
  max-width: 730px;
  margin-bottom: 60px;
}

.section-heading h2,
.about-copy h2,
.community-copy h2,
.final-cta h2 {
  margin-bottom: 27px;
  font-size: clamp(44px, 5vw, 70px);
}

.section-heading > p:last-child,
.community-copy > p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.watch-section {
  background: linear-gradient(to bottom, var(--night), #18191a 42%, var(--night));
}

.video-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(290px, 0.55fr);
  margin-bottom: 28px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  min-height: 100%;
  background: #020708;
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 7px;
  padding: clamp(28px, 6vw, 64px);
  background:
    linear-gradient(90deg, rgba(10, 10, 10, 0.32), rgba(10, 10, 10, 0.08)),
    url("assets/og-dr-john.png") center / cover;
}

.video-fallback-play {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  margin-bottom: 10px;
  padding-left: 4px;
  color: var(--night);
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 5px 5px 0 var(--cyan-dark), 0 12px 40px rgba(0, 0, 0, 0.42);
  font-size: 21px;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.video-fallback:hover .video-fallback-play {
  box-shadow: 7px 7px 0 var(--cyan), 0 16px 45px rgba(0, 0, 0, 0.46);
  transform: translateY(-2px);
}

.video-fallback strong,
.video-fallback small {
  padding: 5px 9px;
  color: #102a37;
  background: var(--gold);
  box-shadow: 4px 4px 0 var(--cyan-dark);
}

.video-fallback strong {
  font-size: clamp(17px, 2vw, 24px);
}

.video-fallback small {
  font-size: 11px;
  font-weight: 700;
}

.video-side {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px;
  border-left: 1px solid var(--line);
}

.video-kicker {
  color: var(--cyan);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.15em;
}

.video-side h3 {
  margin-bottom: 18px;
  font-size: clamp(25px, 2.2vw, 33px);
  line-height: 1.16;
  letter-spacing: -0.025em;
}

.video-side > p:not(.video-kicker) {
  color: var(--muted);
  font-size: 15px;
}

.text-link {
  width: fit-content;
  margin-top: 12px;
  color: var(--cyan);
  font-size: 14px;
  font-weight: 750;
}

.text-link span {
  display: inline-block;
  margin-left: 6px;
  transition: transform 160ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.topic-grid,
.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.topic-card,
.support-card {
  position: relative;
  min-height: 335px;
  padding: 31px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(28, 29, 30, 0.72);
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.topic-card:hover,
.support-card:hover {
  border-color: rgba(51, 197, 232, 0.42);
  background: rgba(34, 36, 37, 0.9);
  transform: translateY(-4px);
}

.topic-number {
  position: absolute;
  top: 25px;
  right: 27px;
  color: #547079;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
}

.topic-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 36px;
  color: var(--cyan);
  border: 1px solid rgba(51, 197, 232, 0.34);
  border-radius: 50%;
  background: rgba(51, 197, 232, 0.06);
  font-family: Georgia, serif;
  font-size: 24px;
}

.topic-card h3,
.support-card h3 {
  margin-bottom: 13px;
  font-size: 23px;
  letter-spacing: -0.025em;
}

.topic-card > p,
.support-card > p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.topic-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 28px;
}

.topic-tags span {
  padding: 5px 9px;
  color: #8198a1;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-section {
  overflow: hidden;
}

.about-section::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  left: -260px;
  top: 120px;
  border: 1px solid rgba(51, 197, 232, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(51, 197, 232, 0.018), 0 0 0 140px rgba(51, 197, 232, 0.012);
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
  gap: clamp(64px, 7vw, 96px);
}

.about-visual {
  position: relative;
  align-self: start;
  margin-top: 39px;
}

.portrait-frame {
  position: relative;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 1;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(249, 180, 4, 0.42);
  border-radius: 28px;
  background: var(--panel);
  box-shadow: 10px 10px 0 rgba(49, 191, 220, 0.26), var(--shadow);
}

.portrait-frame::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 18px;
  border-top: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
  border-radius: 13px 0 0;
  pointer-events: none;
}

.portrait-photo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.about-copy h2 {
  max-width: 720px;
}

.about-copy > p:not(.eyebrow) {
  max-width: 710px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.78;
}

.about-copy .about-lede {
  color: var(--muted-strong) !important;
  font-size: 20px !important;
}

.about-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 36px;
  padding-top: 27px;
  border-top: 1px solid var(--line);
}

.about-facts strong,
.about-facts span {
  display: block;
}

.about-facts strong {
  color: var(--gold);
  font-family: inherit;
  font-size: 20px;
  font-weight: 500;
}

.about-facts span {
  color: #7f939a;
  font-size: 12px;
}

.community-section {
  padding-top: 40px;
}

.community-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  gap: 70px;
  padding: clamp(42px, 7vw, 78px);
  border: 1px solid rgba(249, 180, 4, 0.32);
  border-radius: 28px;
  background:
    linear-gradient(110deg, rgba(19, 19, 19, 0.88), rgba(19, 19, 19, 0.7)),
    url("assets/drjohn-chalkboard.webp") center / cover;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.community-panel::after {
  content: "φ";
  position: absolute;
  right: -10px;
  bottom: -130px;
  color: rgba(249, 180, 4, 0.05);
  font-family: Georgia, serif;
  font-size: 420px;
  line-height: 1;
}

.community-copy,
.community-rules {
  position: relative;
  z-index: 2;
}

.discord-button {
  margin-top: 18px;
}

.community-rules {
  align-self: center;
  border-top: 1px solid var(--line-strong);
}

.community-rules > div {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 15px;
  padding: 21px 0;
  border-bottom: 1px solid var(--line-strong);
}

.community-rules span {
  padding-top: 3px;
  color: var(--gold);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
}

.community-rules p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.community-rules strong {
  display: block;
  margin-bottom: 3px;
  color: var(--ink);
  font-size: 15px;
}

.support-section {
  background: linear-gradient(to bottom, var(--night), #18191a 55%, var(--night));
}

.centered {
  margin-inline: auto;
  text-align: center;
}

.centered .eyebrow {
  justify-content: center;
}

.centered > p:last-child {
  margin-inline: auto;
}

.support-card {
  min-height: 390px;
  display: flex;
  flex-direction: column;
}

.primary-support {
  border-color: rgba(51, 197, 232, 0.5);
  background: linear-gradient(145deg, rgba(51, 197, 232, 0.11), rgba(13, 29, 36, 0.83) 52%);
}

.support-topline {
  min-height: 21px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  color: var(--cyan);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.11em;
}

.support-topline i {
  padding: 4px 7px;
  color: var(--night);
  border-radius: 999px;
  background: var(--cyan);
  font-size: 8px;
  font-style: normal;
}

.support-symbol {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin: 30px 0 24px;
  color: var(--cyan);
  border: 1px solid rgba(51, 197, 232, 0.32);
  border-radius: 50%;
  background: rgba(51, 197, 232, 0.06);
  font-size: 19px;
}

.support-card .button {
  width: 100%;
  margin-top: auto;
}

.support-note {
  margin: 24px 0 0;
  color: #6f838a;
  font-size: 12px;
  text-align: center;
}

.contact-section {
  padding-top: 110px;
  background:
    radial-gradient(circle at 16% 38%, rgba(49, 191, 220, 0.08), transparent 32%),
    var(--night);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(430px, 1.12fr);
  align-items: start;
  gap: clamp(55px, 8vw, 110px);
}

.contact-copy {
  position: sticky;
  top: 125px;
}

.contact-copy h2 {
  margin-bottom: 26px;
  font-size: clamp(44px, 5vw, 68px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.contact-copy > p:not(.eyebrow) {
  max-width: 520px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.contact-direct {
  display: grid;
  gap: 3px;
  margin-top: 38px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.contact-direct > span {
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-direct a {
  width: fit-content;
  color: var(--gold);
  font-size: 20px;
  font-weight: 760;
}

.contact-direct a span {
  display: inline-block;
  color: var(--cyan);
  transition: transform 160ms ease;
}

.contact-direct a:hover span {
  transform: translate(2px, -2px);
}

.contact-form {
  position: relative;
  display: grid;
  gap: 20px;
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid var(--line-strong);
  border-radius: 24px;
  background: rgba(28, 29, 30, 0.78);
  box-shadow: 9px 9px 0 rgba(249, 180, 4, 0.12), var(--shadow);
  overflow: hidden;
}

.contact-form::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--gold) 0 62%, var(--cyan) 62%);
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form label > span {
  color: var(--muted-strong);
  font-size: 12px;
  font-weight: 720;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 11px;
  background: rgba(10, 10, 10, 0.48);
  outline: none;
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.contact-form input,
.contact-form select {
  min-height: 50px;
  padding: 11px 14px;
}

.contact-form textarea {
  min-height: 150px;
  padding: 13px 14px;
  line-height: 1.55;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  background: rgba(10, 10, 10, 0.7);
  box-shadow: 0 0 0 3px rgba(49, 191, 220, 0.13);
}

.contact-form select {
  color-scheme: dark;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.form-trap {
  position: absolute !important;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.contact-submit {
  width: fit-content;
  min-width: 170px;
  margin-top: 2px;
  cursor: pointer;
}

.contact-submit:disabled {
  cursor: wait;
  opacity: 0.72;
}

.form-status {
  min-height: 18px;
  margin: -5px 0 0;
  color: var(--muted-strong);
  font-size: 11px;
  line-height: 1.5;
}

.form-status:empty {
  display: none;
}

.form-status a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-note {
  margin: -7px 0 0;
  color: #718087;
  font-size: 10px;
}

.support-conversion {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(430px, 1.14fr);
  border: 1px solid rgba(249, 180, 4, 0.34);
  border-radius: 28px;
  background:
    radial-gradient(circle at 0 0, rgba(249, 180, 4, 0.09), transparent 40%),
    linear-gradient(135deg, #202020, #151515);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.support-case {
  padding: clamp(34px, 5vw, 60px);
  border-right: 1px solid var(--line-strong);
}

.support-case-label {
  margin-bottom: 20px;
  color: var(--gold);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.16em;
}

.support-case h3 {
  max-width: 480px;
  margin-bottom: 19px;
  font-size: clamp(28px, 3.1vw, 43px);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.support-case > p:not(.support-case-label, .support-ethos) {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.support-case ul {
  display: grid;
  gap: 0;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.support-case li {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 13px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}

.support-case li > span {
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  margin-top: 3px;
  color: var(--night);
  border-radius: 50%;
  background: var(--gold);
  font-size: 12px;
  font-weight: 850;
}

.support-case li p {
  margin: 0;
  color: #879ba3;
  font-size: 13px;
  line-height: 1.55;
}

.support-case li strong {
  display: block;
  margin-bottom: 2px;
  color: var(--ink);
  font-size: 14px;
}

.support-case .support-ethos {
  margin: 25px 0 0;
  color: #71878f;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  letter-spacing: 0.045em;
  line-height: 1.65;
  text-transform: uppercase;
}

.checkout-card {
  align-self: center;
  margin: 18px;
  padding: clamp(28px, 4.3vw, 46px);
  border: 1px solid var(--line-strong);
  border-radius: 20px;
  background: rgba(14, 14, 14, 0.84);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.22);
}

.checkout-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.checkout-head p {
  margin-bottom: 5px;
  color: var(--gold);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.13em;
}

.checkout-head h3 {
  margin: 0;
  font-size: clamp(26px, 2.7vw, 36px);
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.paypal-wordmark {
  flex: none;
  color: #169bd7;
  font-size: 19px;
  font-weight: 850;
  font-style: italic;
  letter-spacing: -0.07em;
}

.paypal-wordmark span {
  color: #27346a;
}

.recurring-callout {
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding: 14px 16px;
  border: 1px solid rgba(249, 180, 4, 0.25);
  border-radius: 12px;
  background: rgba(249, 180, 4, 0.065);
}

.recurring-callout > span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--gold);
  border: 1px solid rgba(249, 180, 4, 0.34);
  border-radius: 50%;
  font-size: 18px;
}

.recurring-callout p {
  margin: 0;
  color: #8fa3aa;
  font-size: 11px;
  line-height: 1.5;
}

.recurring-callout strong {
  display: block;
  color: var(--ink);
  font-size: 12px;
}

.amount-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.amount-grid form {
  min-width: 0;
}

.amount-option {
  position: relative;
  width: 100%;
  min-height: 92px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 17px 18px;
  color: var(--ink);
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.022);
  cursor: pointer;
  text-align: left;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.amount-option:hover {
  z-index: 2;
  border-color: var(--cyan);
  background: rgba(51, 197, 232, 0.08);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}

.amount-option strong {
  font-size: 25px;
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.amount-option span {
  margin-top: 4px;
  color: #82969e;
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.amount-option i {
  position: absolute;
  top: 8px;
  right: 8px;
  padding: 3px 6px;
  color: var(--night);
  border-radius: 999px;
  background: var(--gold);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 7px;
  font-weight: 850;
  font-style: normal;
  letter-spacing: 0.1em;
}

.featured-amount {
  border-color: rgba(249, 180, 4, 0.66);
  background: rgba(249, 180, 4, 0.075);
}

.custom-support-form {
  margin-top: 10px;
}

.button-paypal {
  width: 100%;
  min-height: 54px;
  color: var(--night);
  background: #ffc439;
  box-shadow: 0 10px 30px rgba(255, 196, 57, 0.12);
}

.button-paypal:hover {
  background: #ffcf62;
  box-shadow: 0 14px 35px rgba(255, 196, 57, 0.2);
}

.checkout-note {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 7px;
  margin: 15px 0 0;
  color: #657a82;
  font-size: 9px;
  line-height: 1.45;
  text-align: center;
}

.checkout-note svg {
  width: 13px;
  height: 13px;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.support-secondary {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 14px;
}

.support-secondary > div {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 15px;
  min-height: 100px;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(13, 29, 36, 0.52);
}

.secondary-icon {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  color: var(--cyan);
  border: 1px solid rgba(51, 197, 232, 0.28);
  border-radius: 50%;
  font-size: 14px;
}

.support-secondary p {
  margin: 0;
  color: #82969e;
  font-size: 12px;
  line-height: 1.5;
}

.support-secondary strong {
  display: block;
  color: var(--ink);
  font-size: 13px;
}

.support-secondary a {
  color: var(--cyan);
  font-size: 11px;
  font-weight: 750;
  white-space: nowrap;
}

.support-secondary a:hover {
  color: var(--cyan-bright);
}

.support-dock {
  position: fixed;
  z-index: 80;
  right: 22px;
  bottom: 22px;
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 11px 16px;
  color: var(--night);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 4px 4px 0 var(--cyan-dark), 0 14px 40px rgba(0, 0, 0, 0.4);
  font-size: 12px;
  transition: transform 160ms ease, background 160ms ease;
}

.support-dock:hover {
  background: var(--gold-bright);
  transform: translateY(-2px);
}

.support-dock.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
}

.support-dock > span {
  font-size: 14px;
}

.final-cta {
  padding-top: 90px;
  text-align: center;
  background:
    linear-gradient(180deg, var(--night), rgba(19, 19, 19, 0.7) 28%, rgba(19, 19, 19, 0.82)),
    url("assets/drjohn-chalkboard.webp") center / cover;
}

.final-cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.final-mark {
  width: 82px;
  height: 82px;
  margin-bottom: 32px;
  display: block;
  border-radius: 50%;
  box-shadow: 6px 6px 0 var(--cyan-dark);
}

.final-cta .eyebrow {
  justify-content: center;
}

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

.final-cta .hero-actions {
  justify-content: center;
}

.site-footer {
  padding: 70px 0 30px;
  border-top: 1px solid var(--line);
  background: #0f0f0f;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  padding-bottom: 55px;
}

.footer-main > div:first-child > p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.footer-links > div {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-links strong {
  margin-bottom: 5px;
  color: var(--ink);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links a {
  width: fit-content;
  color: var(--muted);
  font-size: 13px;
}

.footer-links a:hover {
  color: var(--cyan);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 27px;
  color: #61737a;
  border-top: 1px solid var(--line);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 9px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-bottom p {
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 620ms ease, transform 620ms ease;
}

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

.topic-card:nth-child(2),
.support-card:nth-child(2) {
  transition-delay: 80ms;
}

.topic-card:nth-child(3),
.support-card:nth-child(3) {
  transition-delay: 160ms;
}

@media (max-width: 980px) {
  .desktop-nav {
    gap: 22px;
  }

  .hero {
    min-height: auto;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 25px;
  }

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

  .hero-visual {
    min-height: 500px;
  }

  .orbit-stage {
    width: 500px;
  }

  .method-card {
    right: 8%;
  }

  .proof-strip {
    margin-top: 45px;
  }

  .video-shell {
    grid-template-columns: 1fr;
  }

  .video-side {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .topic-grid,
  .support-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .topic-card:last-child,
  .support-card:last-child {
    grid-column: 1 / -1;
  }

  .about-layout {
    grid-template-columns: minmax(300px, 0.86fr) minmax(0, 1.14fr);
    gap: 50px;
  }

  .community-panel {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .support-conversion {
    grid-template-columns: 1fr;
  }

  .support-case {
    border-right: 0;
    border-bottom: 1px solid var(--line-strong);
  }

  .support-secondary {
    grid-template-columns: 1fr;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-copy {
    position: static;
    max-width: 720px;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .site-header {
    height: 68px;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-button {
    width: 44px;
    height: 44px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    color: var(--ink);
    border: 1px solid var(--line);
    border-radius: 9px;
    background: transparent;
  }

  .menu-button span:not(.sr-only) {
    width: 19px;
    height: 1px;
    background: currentColor;
    transition: transform 180ms ease;
  }

  .menu-button[aria-expanded="true"] span:nth-child(2) {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-4px) rotate(-45deg);
  }

  .mobile-nav {
    position: fixed;
    inset: 68px 0 0;
    display: flex;
    flex-direction: column;
    padding: 30px 24px;
    background: rgba(19, 19, 19, 0.985);
    transform: translateX(100%);
    transition: transform 220ms ease;
  }

  .mobile-nav.open {
    transform: translateX(0);
  }

  .mobile-nav a {
    padding: 15px 4px;
    color: var(--muted-strong);
    border-bottom: 1px solid var(--line);
    font-size: 20px;
    font-weight: 720;
  }

  .hero {
    padding-top: 118px;
  }

  h1 {
    font-size: clamp(48px, 13vw, 66px);
  }

  .hero h1 {
    gap: 13px;
  }

  .hero h1 em {
    margin-left: 18px;
  }

  .hero-lede {
    font-size: 17px;
  }

  .hero-actions {
    flex-direction: column;
  }

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

  .hero-visual {
    min-height: 430px;
    margin-top: 10px;
  }

  .orbit-stage {
    width: 370px;
    transform: scale(0.78);
  }

  .method-card {
    right: 0;
    bottom: 10px;
    width: min(310px, 92%);
  }

  .proof-strip {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 32px;
    padding: 15px 0;
  }

  .proof-strip p {
    min-height: 48px;
    display: grid;
    place-items: center;
    padding: 0 10px;
  }

  .proof-strip p:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .proof-strip p:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .section {
    padding: 94px 0;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .section-heading h2,
  .about-copy h2,
  .community-copy h2 {
    font-size: clamp(40px, 11vw, 54px);
  }

  .section-heading > p:last-child,
  .community-copy > p:not(.eyebrow) {
    font-size: 16px;
  }

  .video-shell {
    border-radius: 17px;
  }

  .video-side {
    padding: 29px 25px;
  }

  .topic-grid,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .topic-card:last-child,
  .support-card:last-child {
    grid-column: auto;
  }

  .topic-card,
  .support-card {
    min-height: auto;
    padding: 27px;
  }

  .topic-card {
    min-height: 310px;
  }

  .support-card {
    min-height: 380px;
  }

  .support-conversion {
    border-radius: 21px;
  }

  .support-case {
    padding: 32px 25px;
  }

  .checkout-card {
    margin: 10px;
    padding: 27px 16px 22px;
    border-radius: 15px;
  }

  .checkout-head {
    align-items: center;
  }

  .amount-option {
    min-height: 88px;
    padding: 15px;
  }

  .support-secondary > div {
    grid-template-columns: 40px 1fr;
  }

  .support-secondary a {
    grid-column: 2;
  }

  .support-dock {
    right: 14px;
    bottom: 14px;
    left: 14px;
    justify-content: center;
    min-height: 52px;
    font-size: 13px;
  }

  .site-footer {
    padding-bottom: 94px;
  }

  .about-layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .about-visual {
    order: 2;
    width: min(92%, 420px);
    margin: 0 auto;
  }

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

  .community-section {
    padding-top: 20px;
  }

  .community-panel {
    width: min(calc(100% - 22px), var(--container));
    padding: 38px 26px;
    border-radius: 21px;
  }

  .centered {
    text-align: left;
  }

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

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

  .contact-copy h2 {
    font-size: clamp(40px, 11vw, 54px);
  }

  .contact-form {
    padding: 29px 20px;
    border-radius: 18px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-submit {
    width: 100%;
  }

  .final-cta {
    padding-top: 70px;
  }

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

  .footer-main {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 390px) {
  .brand-type {
    font-size: 16px;
  }

  .hero {
    padding-top: 105px;
  }

  h1 {
    font-size: 45px;
  }

  .method-card {
    width: 96%;
  }

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

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

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