:root {
  color-scheme: dark;
  --void: #050507;
  --midnight-deep: #0a0a0e;
  --midnight-base: #0e0e14;
  --midnight-elevated: #141419;
  --silver-shadow: #2a2a32;
  --silver-dim: #48485a;
  --silver-muted: #7a7a8c;
  --silver-base: #a8a8b8;
  --silver-bright: #d0d0dc;
  --silver-white: #eaeaf0;
  --platinum: #f4f4f8;
  --profit: #7ec699;
  --line: rgba(208, 208, 220, 0.12);
  --line-soft: rgba(208, 208, 220, 0.07);
  --display: "Cormorant Garamond", Georgia, serif;
  --body: "Manrope", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "JetBrains Mono", "SFMono-Regular", Consolas, monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(ellipse 900px 700px at 76% 14%, rgba(208, 208, 220, 0.045), transparent 60%),
    radial-gradient(ellipse 700px 520px at 12% 68%, rgba(168, 168, 184, 0.026), transparent 66%),
    var(--void);
  color: var(--silver-bright);
  font: 400 16px/1.6 var(--body);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 1100px 900px at 50% 30%, #000 25%, transparent 80%);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 36px;
  padding: 18px clamp(22px, 4vw, 64px);
  border-bottom: 1px solid transparent;
  background: rgba(5, 5, 7, 0.72);
  backdrop-filter: blur(16px);
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.brand img {
  width: 34px;
  height: 34px;
  border-radius: 22%;
}

.brand span {
  color: var(--silver-white);
  font-size: 17px;
  font-weight: 800;
}

.brand small {
  margin-left: 2px;
  padding: 3px 7px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--silver-muted);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(22px, 3.8vw, 44px);
  color: var(--silver-base);
  font-size: 14px;
}

.nav a {
  transition: color 160ms ease;
}

.nav a:hover {
  color: var(--platinum);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid rgba(244, 244, 248, 0.2);
  border-radius: 8px;
  background: var(--platinum);
  color: var(--void);
  font-weight: 800;
  transition: transform 160ms ease, box-shadow 220ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
  background: var(--silver-white);
  box-shadow: 0 0 0 4px rgba(208, 208, 220, 0.12);
}

.button.secondary {
  background: transparent;
  color: var(--silver-bright);
  border-color: var(--silver-shadow);
  box-shadow: none;
}

.button.secondary:hover {
  background: rgba(255, 255, 255, 0.025);
}

.button-small {
  min-height: 40px;
  padding-inline: 16px;
}

.ticker-tape {
  position: relative;
  height: 36px;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: rgba(5, 5, 7, 0.74);
}

.ticker-tape div {
  display: flex;
  align-items: center;
  gap: 36px;
  width: max-content;
  height: 100%;
  padding-left: 24px;
  animation: tapeScroll 46s linear infinite;
}

.ticker-tape span {
  color: var(--silver-base);
  font-family: var(--mono);
  font-size: 11px;
  white-space: nowrap;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(500px, 1.08fr) minmax(420px, 0.92fr);
  gap: clamp(34px, 5vw, 66px);
  align-items: center;
  max-width: 1320px;
  min-height: min(820px, calc(100svh - 100px));
  margin: 0 auto;
  padding: clamp(70px, 8vw, 118px) clamp(24px, 4vw, 54px) clamp(78px, 8vw, 126px);
}

.brand-banner {
  position: absolute;
  top: 36px;
  right: -160px;
  width: min(950px, 72vw);
  opacity: 0.12;
  pointer-events: none;
  mix-blend-mode: screen;
}

.hero-copy,
.discord-stage {
  position: relative;
}

.kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 28px;
  color: var(--silver-bright);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.kicker span {
  width: 28px;
  height: 1px;
  background: var(--silver-bright);
  opacity: 0.6;
}

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

h1 {
  margin: 0;
  color: var(--silver-white);
  font-size: clamp(76px, 7.7vw, 108px);
  font-weight: 800;
  line-height: 0.96;
}

h1 em,
.closer h2 em {
  font-family: var(--display);
  font-weight: 500;
}

.hero-lede {
  max-width: 620px;
  margin: 28px 0 0;
  color: var(--silver-base);
  font-size: clamp(17px, 1.7vw, 20px);
}

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

.seat-line {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 30px 0 0;
  color: var(--silver-muted);
  font-size: 13px;
}

.seat-line i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--silver-bright);
  animation: pulse 1.7s ease-in-out infinite;
}

.discord-stage {
  filter: drop-shadow(0 55px 90px rgba(0, 0, 0, 0.48));
}

.discord-stage::before {
  content: "";
  position: absolute;
  inset: -42px;
  z-index: -1;
  opacity: 0.7;
  background: radial-gradient(circle at 50% 48%, rgba(208, 208, 220, 0.16), transparent 62%);
  filter: blur(46px);
}

.discord-shell {
  overflow: hidden;
  border-radius: 6px;
  background: #313338;
  box-shadow: inset 0 0 0 1px rgba(208, 208, 220, 0.06);
  padding: 22px 24px;
}

.channel-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: #a3a6aa;
  font-family: var(--mono);
  font-size: 11px;
}

.channel-head strong {
  color: #dbdee1;
  font-family: var(--body);
  font-size: 14px;
}

.channel-head em {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-style: normal;
}

.channel-head em::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--silver-bright);
}

.message-stack {
  display: grid;
  gap: 14px;
}

.discord-alert {
  padding: 14px 18px;
  border-left: 4px solid var(--silver-bright);
  border-radius: 4px;
  background: #2b2d31;
  color: #dbdee1;
}

.discord-alert.close {
  box-shadow: 0 0 0 1px rgba(126, 198, 153, 0.18), 0 0 48px rgba(126, 198, 153, 0.12);
}

.discord-alert header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: #a3a6aa;
  font-size: 12px;
}

.discord-alert header img {
  width: 22px;
  height: 22px;
  border-radius: 4px;
}

.discord-alert header strong {
  color: #dbdee1;
}

.discord-alert time {
  margin-left: auto;
  font-family: var(--mono);
  font-size: 11px;
}

.alert-main {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
}

.alert-main h2 {
  margin: 0;
  color: #f2f3f5;
  font-size: 15px;
  font-weight: 700;
}

.alert-main p {
  margin: 4px 0 0;
  color: #b5bac1;
  font-family: var(--mono);
  font-size: 12px;
}

.alert-main b {
  color: var(--silver-white);
  font-family: var(--mono);
  font-size: 28px;
  line-height: 1;
}

.close .alert-main b {
  color: var(--profit);
}

.discord-alert hr {
  height: 1px;
  margin: 12px 0 10px;
  border: 0;
  background: #1f2023;
}

.discord-alert dl {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin: 0;
  color: #a3a6aa;
  font-family: var(--mono);
  font-size: 11px;
}

.discord-alert dt,
.discord-alert dd {
  display: inline;
  margin: 0;
}

.discord-alert dd {
  margin-left: 5px;
  color: #dbdee1;
  font-weight: 600;
}

.track-record,
.channels,
.apply,
.closer {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(76px, 10vw, 132px) 32px;
}

.scene-label {
  margin-bottom: 40px;
}

.scene-label.center {
  text-align: center;
}

.scene-label span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--silver-bright);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.scene-label h2,
.closer h2 {
  margin: 0;
  color: var(--silver-white);
  font-size: clamp(38px, 5vw, 60px);
  font-weight: 800;
  line-height: 1.05;
}

.proof-panel,
.channel-grid article,
.steps article {
  border: 1px solid var(--line);
  border-radius: 4px;
  background: linear-gradient(180deg, var(--midnight-elevated), var(--midnight-base));
}

.proof-panel {
  padding: clamp(28px, 4vw, 44px);
  box-shadow: 0 30px 80px -30px rgba(0, 0, 0, 0.6);
}

.proof-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 32px;
}

.proof-head h3 {
  margin: 0;
  color: var(--silver-white);
  font-size: 24px;
}

.proof-head a {
  color: var(--silver-bright);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

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

.metrics article span {
  display: block;
  margin-bottom: 10px;
  color: var(--silver-muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.metrics article strong {
  display: block;
  color: var(--silver-white);
  font-family: var(--display);
  font-size: clamp(40px, 5vw, 58px);
  font-weight: 500;
  line-height: 1;
}

.metrics article p,
.proof-note,
.channels p,
.steps p,
.closer p,
.site-footer p {
  color: var(--silver-base);
}

.metrics article p {
  margin: 10px 0 0;
  font-size: 13px;
}

.curve-card {
  height: 260px;
  margin-top: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--midnight-base);
  padding: 24px 22px 8px;
}

.curve-card svg {
  width: 100%;
  height: 100%;
}

.curve-grid {
  fill: none;
  stroke: rgba(208, 208, 220, 0.08);
}

.curve-area {
  fill: rgba(208, 208, 220, 0.13);
}

.curve-line {
  fill: none;
  stroke: var(--silver-bright);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
}

.proof-note {
  margin: 18px 0 0;
  font-size: 12px;
}

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

.channel-grid article {
  padding: clamp(28px, 4vw, 42px);
  border-top-color: var(--silver-shadow);
}

.channel-grid article.featured {
  border-top-color: var(--platinum);
  box-shadow: 0 30px 90px -34px rgba(208, 208, 220, 0.2);
}

.channel-name {
  margin: 0 0 16px;
  color: var(--silver-bright);
  font-size: 14px;
  font-weight: 800;
}

.channel-grid h3,
.steps h3 {
  margin: 0 0 12px;
  color: var(--silver-white);
  font-size: 26px;
}

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

.channel-grid li {
  color: var(--silver-base);
  font-size: 14px;
}

.channel-grid li::before {
  content: "+";
  margin-right: 10px;
  color: var(--silver-bright);
  font-weight: 800;
}

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

.steps article {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  padding: 32px 30px;
}

.steps article > span {
  position: absolute;
  top: -28px;
  right: -8px;
  color: rgba(208, 208, 220, 0.045);
  font-family: var(--display);
  font-size: 140px;
  line-height: 1;
}

.steps h3,
.steps p {
  position: relative;
}

.closer {
  max-width: 1100px;
  text-align: center;
}

.closer p {
  max-width: 760px;
  margin: 24px auto 36px;
  font-size: 18px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 44px 32px 56px;
  border-top: 1px solid var(--line);
}

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

.site-footer p {
  max-width: 680px;
  margin: 0;
  font-size: 12px;
  text-align: right;
}

@keyframes tapeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(208, 208, 220, 0.45); }
  50% { opacity: 0.55; box-shadow: 0 0 0 8px rgba(208, 208, 220, 0); }
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav {
    display: none;
  }

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

  .hero {
    min-height: auto;
  }
}

@media (max-width: 760px) {
  .site-header,
  .hero,
  .metrics,
  .channel-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 56px;
  }

  h1 {
    font-size: clamp(66px, 19vw, 106px);
  }

  .discord-stage {
    display: none;
  }

  .proof-head,
  .site-footer {
    display: grid;
  }

  .proof-head a {
    white-space: normal;
  }

  .curve-card {
    height: 190px;
  }

  .site-footer p {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }
}
