:root {
  --bg: #070909;
  --panel: #0b0e0d;
  --line: rgba(255, 255, 255, 0.085);
  --muted: #939b96;
  --text: #f1f4f1;
  --acid: #b7ff5b;
  --acid-soft: #dcffae;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, "Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

button, a { font: inherit; }

button { color: inherit; }

.grid-field {
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 48px 48px;
}

.gate-ripples {
  position: fixed;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 1;
  mix-blend-mode: screen;
}

.ambient {
  position: fixed;
  z-index: -1;
  width: 42vw;
  height: 42vw;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(120px);
  opacity: .08;
}

.ambient-one { top: -20vw; left: -12vw; background: #aaff39; }
.ambient-two { top: 30vh; right: -30vw; background: #5cffd7; }

.site-header {
  position: relative;
  z-index: 10;
  max-width: 1440px;
  height: 90px;
  margin: 0 auto;
  padding: 0 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--text);
  text-decoration: none;
  font-size: 15px;
  font-weight: 780;
  letter-spacing: .18em;
}

.brand-mark {
  width: 26px;
  height: 29px;
  display: grid;
  place-items: center;
  background: var(--text);
  clip-path: polygon(50% 0, 100% 26%, 100% 74%, 50% 100%, 0 74%, 0 26%);
}

.brand-mark i {
  width: 16px;
  height: 19px;
  display: block;
  background: var(--bg);
  clip-path: polygon(50% 0, 100% 28%, 100% 42%, 50% 18%, 22% 34%, 22% 66%, 50% 82%, 75% 68%, 75% 58%, 48% 58%, 48% 44%, 100% 44%, 100% 74%, 50% 100%, 0 74%, 0 28%);
}

.header-cta {
  padding: 10px 15px;
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 7px;
  background: rgba(14,17,16,.72);
  color: #d9deda;
  font-size: 13px;
  font-weight: 650;
  cursor: pointer;
  backdrop-filter: blur(12px);
  transition: border-color .2s, color .2s, background .2s;
}

.header-cta:hover { border-color: rgba(183,255,91,.45); color: white; background: rgba(25,31,26,.9); }

.hero {
  min-height: min(940px, calc(100vh - 90px));
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(78px, 11vh, 124px) 4vw 90px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 25px;
  color: #c8ceca;
  font-size: 13px;
  font-weight: 680;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 12px var(--acid);
  animation: breathe 2s ease-in-out infinite;
}

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

.hero h1 {
  max-width: 960px;
  margin-bottom: 28px;
  font-size: clamp(48px, 6.7vw, 94px);
  line-height: .96;
  letter-spacing: -.065em;
  font-weight: 560;
}

.hero h1 span {
  display: block;
  color: transparent;
  background: linear-gradient(100deg, #f1f4f1 5%, #aeb5b0 48%, #f7fff0 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero h1 .focus-line {
  color: #d6dbd7;
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  -webkit-text-fill-color: #d6dbd7;
}

.hero h1 .focus-line em {
  color: var(--acid);
  -webkit-text-fill-color: var(--acid);
  font-style: italic;
  font-weight: inherit;
}

.hero-copy {
  max-width: 600px;
  margin-bottom: 34px;
  color: #9ba39e;
  font-size: clamp(17px, 1.65vw, 21px);
  line-height: 1.6;
  letter-spacing: -.015em;
}

.hero-actions {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 10px;
}

.button {
  min-height: 54px;
  padding: 0 20px;
  border-radius: 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-size: 15px;
  font-weight: 730;
  letter-spacing: -.01em;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

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

.button-primary {
  border: 1px solid var(--acid-soft);
  background: var(--acid);
  color: #10140c;
  box-shadow: 0 0 0 1px rgba(183,255,91,.1), 0 14px 42px rgba(138,220,43,.15);
}

.button-primary:hover { box-shadow: 0 0 0 4px rgba(183,255,91,.12), 0 16px 50px rgba(138,220,43,.24); }

.button-price {
  padding-left: 17px;
  border-left: 1px solid rgba(16,20,12,.24);
  font-variant-numeric: tabular-nums;
}

.button-secondary {
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(14,17,16,.68);
  color: #d5dad6;
  backdrop-filter: blur(12px);
}

.button-secondary:hover { border-color: rgba(255,255,255,.3); }

.founding-note {
  margin: 25px 0 0;
  display: flex;
  align-items: center;
  color: #747b77;
  font-size: 14px;
}

.founder-stack { display: flex; margin-right: 9px; }

.founder-stack i {
  width: 24px;
  height: 24px;
  margin-left: -5px;
  border: 2px solid var(--bg);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #1b201d;
  color: #aab1ac;
  font-size: 7px;
  font-style: normal;
}

.founder-stack i:first-child { margin-left: 0; }

.section-kicker {
  margin-bottom: 13px;
  color: var(--acid);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: .22em;
}

.closing h2 {
  margin-bottom: 0;
  font-size: clamp(35px, 4vw, 58px);
  line-height: 1;
  letter-spacing: -.05em;
  font-weight: 560;
}

.rank-intro {
  width: min(1320px, 100%);
  margin: clamp(58px, 8vh, 84px) auto 14px;
  padding: 0 3px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
}

.rank-intro p {
  margin: 0;
  color: #eef2ef;
  font-size: clamp(16px, 1.6vw, 22px);
  font-weight: 620;
  letter-spacing: -.025em;
}

.rank-intro span {
  color: #666e69;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .12em;
  white-space: nowrap;
}

.rank-intro b { margin-left: 6px; color: var(--acid); font-weight: 500; }

.rank-carousel {
  position: relative;
  width: min(1320px, 100%);
  margin: 0 auto;
}

.rank-carousel::before,
.rank-carousel::after {
  content: "";
  position: absolute;
  z-index: 3;
  top: 1px;
  bottom: 1px;
  width: clamp(58px, 8vw, 112px);
  pointer-events: none;
}

.rank-carousel::before {
  left: 1px;
  border-radius: 9px 0 0 9px;
  background: linear-gradient(90deg, #070909 4%, rgba(7,9,9,.82) 35%, transparent 100%);
}

.rank-carousel::after {
  right: 1px;
  border-radius: 0 9px 9px 0;
  background: linear-gradient(270deg, #070909 4%, rgba(7,9,9,.82) 35%, transparent 100%);
}

.rank-rail {
  width: 100%;
  margin: 0;
  padding: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
  background: rgba(7,9,9,.74);
  box-shadow: 0 24px 70px rgba(0,0,0,.38);
  text-align: left;
  backdrop-filter: blur(14px);
}

.rank-track {
  width: max-content;
  display: flex;
  gap: 10px;
  will-change: transform;
  animation: rank-marquee 34s linear infinite;
}

.rank-card {
  position: relative;
  flex: 0 0 150px;
  min-width: 150px;
  height: 182px;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(var(--rank-rgb),.22);
  border-radius: 8px;
  background:
    linear-gradient(to bottom, rgba(var(--rank-rgb),.92) -28%, rgba(var(--rank-rgb),.34) 36%, rgba(var(--rank-rgb),.1) 72%, rgba(7,9,9,.96) 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12);
  transition: transform .35s cubic-bezier(.2,.75,.2,1), border-color .35s ease;
}

.rank-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at 50% 36%, rgba(var(--rank-rgb),.42), transparent 56%);
}

.rank-card:hover {
  z-index: 2;
  transform: translateY(-4px);
  border-color: rgba(var(--rank-rgb),.65);
}

.rank-number {
  position: absolute;
  top: 10px;
  right: 11px;
  color: rgba(255,255,255,.45);
  font-size: 10px;
  letter-spacing: .14em;
}

.rank-art {
  position: absolute;
  inset: 2px 5px 31px;
  display: grid;
  place-items: center;
}

.rank-art img {
  width: 104px;
  height: 104px;
  object-fit: contain;
  filter: drop-shadow(0 12px 16px rgba(0,0,0,.55)) drop-shadow(0 0 10px rgba(var(--rank-rgb),.22));
  transform: translateY(6px) scale(.9);
  transition: transform .5s cubic-bezier(.16,1,.3,1), filter .4s ease;
}

.rank-card:hover .rank-art img {
  transform: translateY(2px) scale(.98);
  filter: drop-shadow(0 15px 18px rgba(0,0,0,.5)) drop-shadow(0 0 17px rgba(var(--rank-rgb),.4));
}

.rank-card h3 {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 13px;
  margin: 0;
  color: var(--rank);
  font-size: 14px;
  font-weight: 790;
  letter-spacing: -.01em;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0 0 13px rgba(var(--rank-rgb),.4);
}

.rank-transcendent .rank-art img { width: 112px; height: 112px; }

.closing {
  width: min(940px, calc(100% - 48px));
  margin: 20px auto 130px;
  padding: clamp(70px, 10vw, 120px) 30px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  text-align: center;
  background: linear-gradient(145deg, rgba(183,255,91,.05), transparent 45%), #090c0a;
}

.closing::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at 50% 45%, #000, transparent 75%);
}

.closing > * { position: relative; z-index: 1; }
.closing h2 { max-width: 710px; margin: 0 auto 18px; }
.closing > p:not(.section-kicker) { margin-bottom: 30px; color: var(--muted); font-size: 17px; }

footer {
  width: min(1320px, calc(100% - 48px));
  min-height: 100px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: #606762;
  font-size: 12px;
}

.brand-small { transform: scale(.84); transform-origin: left; }
.phase-label { text-transform: uppercase; letter-spacing: .12em; }

.access-modal {
  width: min(460px, calc(100% - 32px));
  max-height: calc(100dvh - 32px);
  overflow: auto;
  padding: 30px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 12px;
  background:
    linear-gradient(145deg, rgba(183,255,91,.055), transparent 42%),
    #0b0e0d;
  color: var(--text);
  box-shadow: 0 34px 100px rgba(0,0,0,.68), inset 0 1px 0 rgba(255,255,255,.05);
}

.access-modal::backdrop {
  background: rgba(2,4,3,.78);
  backdrop-filter: blur(8px);
}

.access-modal[open] { animation: modal-in .28s cubic-bezier(.2,.75,.2,1) both; }

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 30px;
  height: 30px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #707873;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: color .2s, background .2s;
}

.modal-close:hover { color: white; background: rgba(255,255,255,.06); }

.modal-brand {
  margin-bottom: 26px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--acid);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: .18em;
}

.modal-brand .brand-mark { width: 22px; height: 24px; background: var(--acid); }
.modal-brand .brand-mark i { width: 14px; height: 16px; }

.access-modal h2 {
  max-width: 350px;
  margin-bottom: 22px;
  font-size: clamp(31px, 5vw, 43px);
  line-height: .98;
  letter-spacing: -.05em;
  font-weight: 570;
}

.access-benefits {
  margin: 0 0 27px;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
  display: grid;
  gap: 13px;
  list-style: none;
}

.access-benefits li {
  display: grid;
  grid-template-columns: 18px auto;
  color: #a1aaa4;
  font-size: 14px;
  line-height: 1.3;
}

.access-benefits li > span { color: var(--acid); font-size: 10px; padding-top: 2px; }
.access-benefits li > .benefit-copy { color: #a1aaa4; font-size: 14px; padding-top: 0; }
.access-benefits strong { display: inline; color: #eef2ef; font-weight: 650; }

.access-price {
  margin-bottom: 17px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.access-price > span { color: #89918c; font-size: 13px; }
.access-price strong { font-size: 26px; line-height: 1; letter-spacing: -.04em; }
.access-price small { color: #89918c; font-size: 11px; letter-spacing: .1em; }

.modal-checkout { width: 100%; text-decoration: none; }

.secure-note {
  margin: 12px 0 0;
  color: #89918c;
  font-size: 13px;
  text-align: center;
}

.secure-note span { margin-right: 5px; }

.waitlist-modal { width: min(500px, calc(100% - 32px)); }

.waitlist-modal .modal-brand { margin-bottom: 22px; }

.waitlist-modal h2 {
  max-width: 390px;
  margin-bottom: 26px;
}

.beehiiv-form-shell {
  min-height: 84px;
  margin: 0 -4px;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
  display: grid;
  align-items: center;
}

.beehiiv-form-shell iframe {
  width: 100% !important;
  max-width: 100% !important;
  border: 0 !important;
}

.phase-toast {
  position: fixed;
  z-index: 50;
  left: 50%;
  bottom: 22px;
  padding: 12px 16px;
  border: 1px solid rgba(183,255,91,.25);
  border-radius: 7px;
  background: rgba(12,16,13,.92);
  color: #dce4dd;
  font-size: 12px;
  backdrop-filter: blur(16px);
  transform: translate(-50%, 24px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s, transform .25s;
}

.phase-toast.is-visible { opacity: 1; transform: translate(-50%, 0); }

.reveal { animation: rise-in .85s both cubic-bezier(.2,.7,.2,1); }
.reveal-delay-one { animation-delay: .08s; }
.reveal-delay-two { animation-delay: .16s; }
.reveal-delay-three { animation-delay: .24s; }

@keyframes rise-in {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes breathe {
  50% { opacity: .45; box-shadow: 0 0 4px var(--acid); }
}

@keyframes rank-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 5px)); }
}

@keyframes modal-in {
  from { opacity: 0; transform: translateY(14px) scale(.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Keep the complete rank rail inside the first laptop viewport. */
@media (min-width: 901px) {
  .site-header { height: 72px; }

  .hero {
    min-height: calc(100svh - 72px);
    padding: clamp(20px, 4vh, 44px) 4vw 38px;
  }

  .eyebrow { margin-bottom: 16px; }

  .hero h1 {
    max-width: 860px;
    margin-bottom: 18px;
    font-size: clamp(48px, 5.25vw, 76px);
  }

  .hero-copy {
    max-width: 570px;
    margin-bottom: 22px;
    font-size: clamp(17px, 1.4vw, 19px);
    line-height: 1.45;
  }

  .button { min-height: 50px; }
  .founding-note { margin-top: 16px; }

  .rank-intro {
    margin-top: clamp(24px, 4vh, 38px);
    margin-bottom: 10px;
  }

  .rank-rail { padding: 10px; }

  .rank-card {
    flex-basis: 142px;
    min-width: 142px;
    height: 164px;
  }

  .rank-art { inset: 0 5px 28px; }

  .rank-art img {
    width: 94px;
    height: 94px;
  }

  .rank-transcendent .rank-art img {
    width: 102px;
    height: 102px;
  }

  .rank-card h3 { bottom: 11px; }
}

@media (max-width: 900px) {
  .hero { padding-inline: 24px; }
  .rank-card { flex-basis: 146px; }
}

@media (max-width: 600px) {
  .site-header { height: 76px; padding: 0 20px; }
  .header-cta { padding: 9px 11px; }
  .header-cta span { display: none; }
  .hero { min-height: calc(100svh - 76px); padding: 78px 20px 88px; }
  .hero h1 { font-size: clamp(43px, 13.5vw, 68px); }
  .hero-copy { font-size: 17px; }
  .hero-actions {
    width: min(100%, 310px);
    margin-inline: auto;
    flex-direction: column;
  }
  .hero-actions .button { width: 100%; }
  .rank-intro { margin-top: 58px; }
  .rank-intro span { display: none; }
  .rank-carousel { width: calc(100% + 40px); margin-left: -20px; }
  .rank-rail { border-radius: 0; padding-inline: 20px; }
  .rank-carousel::before, .rank-carousel::after { border-radius: 0; }
  .rank-card { flex: 0 0 146px; }
  .closing { width: calc(100% - 28px); padding-inline: 20px; }
  .access-modal { padding: 25px 22px; }
  footer { padding: 28px 0; flex-direction: column; text-align: center; }
  .brand-small { transform-origin: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .rank-rail { overflow-x: auto; scrollbar-width: none; }
  .rank-track { animation: none !important; }
}
