:root {
  color-scheme: dark;
  --bg: #03040a;
  --panel: rgba(13, 13, 25, 0.82);
  --panel-strong: rgba(18, 17, 32, 0.95);
  --line: rgba(187, 138, 255, 0.2);
  --line-strong: rgba(187, 138, 255, 0.35);
  --text: #f5f1ff;
  --muted: #b7b0c8;
  --purple: #8b42ff;
  --purple-hot: #b66cff;
  --green: #68ee9d;
  --yellow: #ffc637;
  --shadow-purple: 0 0 40px rgba(137, 67, 255, 0.5);
  --shadow-green: 0 0 36px rgba(87, 236, 146, 0.26);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 55% 14%, rgba(94, 24, 175, 0.18), transparent 32rem),
    radial-gradient(circle at 92% 34%, rgba(49, 180, 112, 0.09), transparent 30rem),
    linear-gradient(180deg, #02030a 0%, #05050c 42%, #03030a 100%);
  color: var(--text);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

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

button {
  font: inherit;
}

.site-shell {
  width: min(100%, 1320px);
  margin: 0 auto;
  padding: 0 56px 76px;
  overflow: hidden;
}

.topbar {
  position: relative;
  min-height: 112px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 24px;
}

.brand strong {
  color: var(--purple-hot);
}

.brand-mark {
  position: relative;
  width: 94px;
  height: 48px;
  display: grid;
  place-items: center;
  filter: drop-shadow(0 10px 18px rgba(132, 75, 255, 0.34));
}

.brand-mark::before {
  content: "C";
  position: absolute;
  left: 0;
  top: -3px;
  font-size: 57px;
  line-height: 1;
  font-weight: 1000;
  color: white;
}

.brand-mark span {
  position: absolute;
  left: 48px;
  width: 42px;
  height: 9px;
  border-radius: 99px;
  background: linear-gradient(90deg, #ffffff, var(--purple));
  transform: skewX(-28deg);
}

.brand-mark span:nth-child(1) {
  top: 5px;
}

.brand-mark span:nth-child(2) {
  top: 20px;
}

.brand-mark span:nth-child(3) {
  top: 35px;
}

.nav-links {
  display: flex;
  gap: 28px;
  color: var(--muted);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
}

.nav-links a:hover {
  color: white;
}

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

.menu-button span {
  display: block;
  height: 4px;
  margin: 6px 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #ffffff, var(--purple-hot));
  transition: transform 180ms ease, opacity 180ms ease;
}

.topbar.is-open .menu-button span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

.topbar.is-open .menu-button span:nth-child(2) {
  opacity: 0;
}

.topbar.is-open .menu-button span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

.hero-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: 34px;
  padding: 74px 0 52px;
}

.hero-copy {
  position: relative;
  z-index: 3;
  padding-top: 2px;
}

.eyebrow {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(17, 15, 31, 0.7);
  box-shadow: inset 0 0 24px rgba(150, 89, 255, 0.09);
  color: white;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 14px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--purple-hot);
  box-shadow: 0 0 18px var(--purple-hot);
}

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

.hero-copy h1 {
  margin: 34px 0 26px;
  font-size: clamp(48px, 6vw, 78px);
  line-height: 0.98;
  letter-spacing: 0;
  font-weight: 1000;
  text-wrap: balance;
}

.hero-copy h1 span,
.section-heading h2 span {
  color: var(--purple-hot);
  text-shadow: 0 0 30px rgba(139, 66, 255, 0.5);
}

.hero-copy p {
  max-width: 590px;
  color: var(--muted);
  font-size: 24px;
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 42px;
  margin: 44px 0 44px;
}

.primary-button,
.simulate-button {
  border: 0;
  color: white;
  font-weight: 900;
  font-size: 18px;
  border-radius: 22px;
  background: linear-gradient(135deg, #6d2cff 0%, #964fff 52%, #6f25ff 100%);
  box-shadow: 0 18px 45px rgba(117, 49, 255, 0.45), inset 0 1px rgba(255, 255, 255, 0.28);
  cursor: pointer;
}

.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-width: 310px;
  min-height: 86px;
  padding: 0 38px;
}

.secondary-link {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  color: white;
  font-size: 18px;
  font-weight: 900;
}

.secondary-link span {
  color: #c9a5ff;
  font-size: 30px;
  line-height: 0;
}

.creator-trust {
  display: flex;
  align-items: center;
  gap: 24px;
}

.avatar-stack {
  display: flex;
}

.avatar-stack span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-right: -11px;
  border: 3px solid #1b1825;
  border-radius: 50%;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0)),
    linear-gradient(135deg, #ded5ca, #352a42 58%, #0d1017);
  color: #05050a;
  font-size: 12px;
  font-weight: 1000;
}

.stars {
  color: #ffd45b;
  letter-spacing: 4px;
  font-size: 20px;
  line-height: 1;
}

.creator-trust p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.hero-visual {
  position: relative;
  min-height: 650px;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 48px 10px 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 54px 54px;
  border-radius: 34px;
  mask-image: radial-gradient(circle at center, black 0 46%, transparent 76%);
}

.visual-orbit {
  position: absolute;
  left: 50%;
  top: 50%;
  border: 1px solid rgba(182, 108, 255, 0.32);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotateX(64deg) rotateZ(-12deg);
  box-shadow: inset 0 0 34px rgba(139, 66, 255, 0.18), 0 0 36px rgba(139, 66, 255, 0.2);
}

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

.orbit-two {
  width: 490px;
  height: 310px;
  border-color: rgba(104, 238, 157, 0.26);
  transform: translate(-50%, -50%) rotateX(64deg) rotateZ(18deg);
}

.engine-board {
  position: absolute;
  left: 50%;
  top: 54%;
  width: 520px;
  height: 480px;
  padding: 22px;
  border: 1px solid rgba(201, 165, 255, 0.24);
  border-radius: 32px;
  background:
    radial-gradient(circle at 50% 44%, rgba(139, 66, 255, 0.34), transparent 13rem),
    linear-gradient(145deg, rgba(27, 25, 45, 0.9), rgba(5, 6, 13, 0.82));
  box-shadow: 0 42px 90px rgba(0, 0, 0, 0.55), 0 0 80px rgba(139, 66, 255, 0.22), inset 0 1px rgba(255, 255, 255, 0.1);
  transform: translate(-50%, -50%) rotateX(5deg) rotateZ(-1deg);
  overflow: hidden;
}

.engine-board::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 0 38%, rgba(255, 255, 255, 0.09) 48%, transparent 58%),
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.08), transparent 10rem);
  pointer-events: none;
}

.board-topline {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.board-topline span:first-child {
  margin-left: 86px;
}

.board-topline span:last-child {
  margin-right: 118px;
}

.flow-map {
  position: absolute;
  inset: 12px;
  width: calc(100% - 24px);
  height: calc(100% - 24px);
  z-index: 1;
}

.flow-map path {
  fill: none;
  stroke: url(#flowPurple);
  stroke-width: 2;
  stroke-linecap: round;
  opacity: 0.55;
  filter: drop-shadow(0 0 9px rgba(182, 108, 255, 0.8));
}

.flow-map .pulse-path {
  stroke-width: 4;
  stroke-dasharray: 18 18;
  opacity: 0.9;
  animation: flowDash 3.4s linear infinite;
}

.engine-core {
  position: absolute;
  left: 50%;
  top: 49%;
  z-index: 3;
  width: 196px;
  height: 196px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(201, 165, 255, 0.42);
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.14), transparent 33%),
    radial-gradient(circle at center, rgba(139, 66, 255, 0.65), rgba(9, 8, 18, 0.86) 68%);
  box-shadow: 0 0 48px rgba(139, 66, 255, 0.55), inset 0 0 42px rgba(255, 255, 255, 0.08);
  transform: translate(-50%, -50%);
}

.engine-core strong {
  position: relative;
  z-index: 2;
  color: white;
  font-size: 24px;
  line-height: 1.05;
  text-align: center;
  text-transform: uppercase;
}

.core-ring {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
}

.core-ring:nth-child(1) {
  inset: 17px;
}

.core-ring:nth-child(2) {
  inset: 38px;
  border-color: rgba(104, 238, 157, 0.28);
}

.core-ring:nth-child(3) {
  inset: -18px;
  border-color: rgba(182, 108, 255, 0.2);
}

.flow-node {
  position: absolute;
  z-index: 3;
  min-width: 118px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(7, 7, 14, 0.78);
  color: white;
  font-size: 13px;
  font-weight: 900;
  backdrop-filter: blur(14px);
}

.flow-node span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--purple-hot);
  box-shadow: 0 0 16px var(--purple-hot);
}

.node-a { left: 30px; top: 103px; }
.node-b { right: 30px; top: 112px; }
.node-c { left: 36px; bottom: 108px; }
.node-d { right: 42px; bottom: 104px; }

.node-d span,
.node-c span {
  background: var(--green);
  box-shadow: 0 0 16px var(--green);
}

.signal-card {
  position: absolute;
  z-index: 6;
  width: 238px;
  padding: 18px 20px;
  border: 1px solid rgba(201, 165, 255, 0.24);
  border-radius: 20px;
  background:
    linear-gradient(145deg, rgba(20, 18, 34, 0.9), rgba(8, 8, 16, 0.72));
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.42), inset 0 1px rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.signal-card::after {
  content: "";
  position: absolute;
  inset: auto 20px -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(182, 108, 255, 0.8), transparent);
}

.card-kicker {
  display: block;
  margin-bottom: 10px;
  color: var(--purple-hot);
  font-size: 11px;
  font-weight: 1000;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.signal-card strong {
  display: block;
  color: white;
  font-size: 19px;
  line-height: 1.1;
}

.signal-card small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.card-comments {
  left: 10px;
  top: 96px;
}

.card-discord {
  right: 0;
  top: 170px;
  border-color: rgba(104, 238, 157, 0.22);
}

.card-discord .card-kicker,
.card-drop .card-kicker {
  color: var(--green);
}

.card-drop {
  left: 52px;
  bottom: 82px;
  width: 270px;
  border-color: rgba(104, 238, 157, 0.22);
}

.asset-preview {
  position: absolute;
  left: 50%;
  bottom: 25px;
  z-index: 4;
  width: calc(100% - 66px);
  padding: 16px;
  border: 1px solid rgba(104, 238, 157, 0.22);
  border-radius: 18px;
  background: rgba(4, 8, 10, 0.72);
  transform: translateX(-50%);
}

.asset-badge {
  display: inline-block;
  margin-bottom: 9px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(104, 238, 157, 0.12);
  color: var(--green);
  font-size: 10px;
  font-weight: 1000;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.asset-preview strong {
  display: block;
  margin-bottom: 12px;
  font-size: 18px;
}

.asset-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
}

.asset-row span {
  min-height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-align: center;
}

.hero-tag {
  position: absolute;
  z-index: 6;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 0 22px;
  border-radius: 17px;
  border: 1px solid var(--line-strong);
  background: rgba(14, 13, 24, 0.78);
  backdrop-filter: blur(15px);
  color: white;
  font-size: 13px;
  font-weight: 1000;
  text-transform: uppercase;
}

.hero-tag span {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 9px;
}

.tag-eyes {
  left: 94px;
  top: 34px;
  box-shadow: var(--shadow-purple);
}

.tag-eyes span {
  color: white;
  background: rgba(139, 66, 255, 0.28);
}

.tag-brand {
  right: 28px;
  top: 70px;
  border-color: rgba(104, 238, 157, 0.24);
  box-shadow: var(--shadow-green);
}

.tag-brand span,
.tag-cash span {
  color: var(--green);
  background: rgba(89, 238, 152, 0.12);
}

.tag-cash {
  right: 18px;
  bottom: 72px;
  border-color: rgba(104, 238, 157, 0.28);
  box-shadow: var(--shadow-green);
}

.signal-line {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(168, 63, 255, 0.8), transparent);
  transform-origin: left center;
  z-index: 1;
}

.line-one {
  width: 420px;
  left: 130px;
  top: 152px;
  transform: rotate(56deg);
}

.line-two {
  width: 360px;
  right: 80px;
  top: 160px;
  transform: rotate(130deg);
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 56px;
  border: 1px solid var(--line-strong);
  border-radius: 28px;
  background: rgba(13, 12, 23, 0.74);
  overflow: hidden;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.04);
}

.stats-strip div {
  min-height: 150px;
  display: grid;
  grid-template-columns: 64px 1fr;
  align-content: center;
  gap: 0 22px;
  padding: 30px 62px;
}

.stats-strip div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-icon,
.mini-icon {
  display: grid;
  place-items: center;
  color: #c996ff;
  background: rgba(140, 66, 255, 0.15);
}

.stat-icon {
  grid-row: span 2;
  width: 64px;
  height: 64px;
  border-radius: 16px;
  font-size: 28px;
}

.stat-icon.green,
.green {
  color: var(--green);
}

.stats-strip p {
  margin: 0;
  color: white;
  font-size: 16px;
}

.stats-strip strong {
  margin-top: 8px;
  font-size: 34px;
}

.simulation-panel {
  position: relative;
  padding: 40px 38px 56px;
  border: 1px solid var(--line-strong);
  border-radius: 28px;
  background:
    radial-gradient(circle at 71% 48%, rgba(88, 237, 151, 0.16), transparent 18rem),
    radial-gradient(circle at 34% 48%, rgba(139, 66, 255, 0.16), transparent 20rem),
    rgba(8, 8, 17, 0.84);
  overflow: hidden;
}

.panel-head,
.metric-label,
.timeline,
.trusted-row div {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.panel-head h2 {
  margin-bottom: 26px;
  font-size: 31px;
  line-height: 1.1;
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.live-pill span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 18px var(--green);
}

.simulate-button {
  width: 100%;
  min-height: 82px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 42px;
}

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

.metric-card {
  min-height: 220px;
  padding: 34px 36px;
  border: 1px solid var(--line-strong);
  border-radius: 20px;
  background:
    linear-gradient(145deg, rgba(28, 20, 51, 0.88), rgba(7, 7, 15, 0.58)),
    rgba(9, 8, 18, 0.78);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.06);
}

.revenue-card {
  border-color: rgba(104, 238, 157, 0.3);
  background:
    linear-gradient(145deg, rgba(17, 46, 31, 0.88), rgba(7, 7, 15, 0.58)),
    rgba(8, 13, 13, 0.84);
}

.metric-label {
  margin-bottom: 26px;
  color: white;
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
}

.mini-icon {
  width: 44px;
  height: 44px;
  border-radius: 13px;
}

.metric-card strong {
  display: block;
  margin-bottom: 26px;
  color: #dec6ff;
  font-size: 54px;
  line-height: 1;
  letter-spacing: 0;
}

.metric-card small {
  font-size: 23px;
  color: white;
  font-weight: 500;
}

.revenue-card strong {
  color: var(--green);
}

.progress-track {
  width: 100%;
  height: 12px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.progress-track span {
  display: block;
  width: 66%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #c17aff, var(--purple));
  box-shadow: 0 0 24px rgba(178, 104, 255, 0.7);
  transition: width 700ms ease;
}

.revenue-card .progress-track span {
  width: 53%;
  background: linear-gradient(90deg, var(--green), #9cffc4);
  box-shadow: 0 0 24px rgba(104, 238, 157, 0.7);
}

.growth-stage {
  position: relative;
  height: 310px;
  margin-top: -42px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

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

.chart-grid {
  stroke: rgba(255, 255, 255, 0.06);
  stroke-width: 1;
}

.chart-fill {
  fill: url(#chartGradient);
}

.purple-line,
.green-line {
  fill: none;
  stroke-width: 4;
  filter: drop-shadow(0 0 10px currentColor);
}

.purple-line {
  color: #a65cff;
  stroke: currentColor;
}

.green-line {
  color: #68ee9d;
  stroke: currentColor;
}

.chart-dot {
  fill: white;
  stroke: var(--purple);
  stroke-width: 6;
  filter: drop-shadow(0 0 12px var(--purple-hot));
}

.culture-stream {
  position: absolute;
  left: 36px;
  right: 36px;
  top: 92px;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.stream-chip {
  min-height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(201, 165, 255, 0.19);
  border-radius: 16px;
  background: rgba(8, 8, 18, 0.7);
  color: #ded1ff;
  font-size: 13px;
  font-weight: 1000;
  text-transform: uppercase;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.07);
}

.launch-rail {
  position: absolute;
  left: 66px;
  right: 66px;
  bottom: 68px;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border: 1px solid rgba(104, 238, 157, 0.2);
  border-radius: 18px;
  background: rgba(5, 9, 12, 0.74);
  overflow: hidden;
}

.launch-rail span {
  min-height: 50px;
  display: grid;
  place-items: center;
  color: var(--muted);
  font-size: 12px;
  font-weight: 1000;
  text-transform: uppercase;
}

.launch-rail span + span {
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.launch-rail span:last-child {
  color: var(--green);
  background: rgba(104, 238, 157, 0.09);
}

.timeline {
  position: relative;
  z-index: 2;
  padding: 0 70px 34px;
  color: var(--muted);
  text-align: center;
}

.timeline div {
  width: 25%;
}

.timeline strong {
  display: block;
  margin-bottom: 7px;
  color: white;
  font-size: 14px;
  text-transform: uppercase;
}

.timeline span {
  font-size: 14px;
}

.trusted-row {
  padding-top: 6px;
  text-align: center;
}

.trusted-row p {
  color: var(--muted);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.trusted-row div {
  gap: 26px;
}

.trusted-row span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 24px;
  font-weight: 1000;
  line-height: 0.9;
  text-align: center;
  text-transform: uppercase;
}

.section-heading {
  width: min(760px, 100%);
  margin: 72px auto 38px;
  text-align: center;
}

.section-heading h2 {
  margin-bottom: 16px;
  font-size: 42px;
  line-height: 1.08;
}

.section-heading p {
  color: var(--muted);
  font-size: 21px;
  line-height: 1.4;
}

.identity-grid,
.process-grid {
  display: grid;
  gap: 30px;
}

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

.identity-grid article,
.process-grid article {
  border: 1px solid var(--line-strong);
  border-radius: 22px;
  background:
    radial-gradient(circle at 28% 0%, rgba(139, 66, 255, 0.16), transparent 12rem),
    rgba(9, 9, 18, 0.76);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.05);
}

.identity-grid article {
  min-height: 220px;
  padding: 36px;
}

.identity-grid span {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 24px;
  border-radius: 16px;
  background: rgba(139, 66, 255, 0.15);
  font-size: 24px;
}

.identity-grid h3,
.process-grid h3 {
  margin-bottom: 14px;
  font-size: 23px;
}

.identity-grid p,
.process-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.5;
}

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

.process-grid article {
  min-height: 284px;
  padding: 32px 36px 36px;
}

.step-row {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 34px;
}

.step-number {
  display: grid;
  place-items: center;
  width: 62px;
  height: 58px;
  border-radius: 17px;
  background: rgba(139, 66, 255, 0.24);
  color: white;
  font-weight: 1000;
  font-size: 20px;
}

.step-icon {
  color: #cf9dff;
  font-size: 48px;
  line-height: 1;
}

.is-running .purple-line,
.is-running .green-line {
  stroke-dasharray: 900;
  animation: draw 1.1s ease both;
}

.is-running .stream-chip,
.is-running .launch-rail span {
  animation: pop 560ms ease both;
}

.is-running .stream-chip:nth-child(2),
.is-running .launch-rail span:nth-child(2) {
  animation-delay: 90ms;
}

.is-running .stream-chip:nth-child(3),
.is-running .launch-rail span:nth-child(3) {
  animation-delay: 160ms;
}

.is-running .stream-chip:nth-child(4),
.is-running .launch-rail span:nth-child(4) {
  animation-delay: 230ms;
}

.is-running .launch-rail span:nth-child(5) {
  animation-delay: 300ms;
}

@keyframes draw {
  from {
    stroke-dashoffset: 900;
  }
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes flowDash {
  to {
    stroke-dashoffset: -72;
  }
}

@keyframes pop {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@media (min-width: 761px) {
  .asset-row {
    display: grid;
  }

  .launch-rail {
    display: grid;
  }

  .engine-board {
    height: 480px;
  }

  .asset-preview strong {
    margin-bottom: 12px;
  }
}

@media (max-width: 1100px) {
  .site-shell {
    padding: 0 28px 60px;
  }

  .hero-section {
    grid-template-columns: 1fr;
    padding-top: 56px;
  }

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

  .engine-board {
    top: 57%;
    width: 500px;
  }

  .signal-card {
    width: 218px;
  }

  .stats-strip div {
    padding: 26px 28px;
  }

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

  .trusted-row div {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 760px) {
  .site-shell {
    padding: 0 16px 44px;
  }

  .topbar {
    min-height: 78px;
  }

  .brand {
    gap: 10px;
    font-size: 14px;
    letter-spacing: 1.6px;
  }

  .brand-mark {
    width: 62px;
    height: 34px;
  }

  .brand-mark::before {
    font-size: 40px;
  }

  .brand-mark span {
    left: 32px;
    width: 28px;
    height: 6px;
  }

  .brand-mark span:nth-child(1) { top: 4px; }
  .brand-mark span:nth-child(2) { top: 15px; }
  .brand-mark span:nth-child(3) { top: 26px; }

  .nav-links {
    display: none;
  }

  .topbar.is-open .nav-links {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% - 1px);
    z-index: 20;
    display: grid;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line-strong);
    border-radius: 0 0 18px 18px;
    background: rgba(6, 6, 14, 0.96);
    box-shadow: 0 26px 54px rgba(0, 0, 0, 0.45), var(--shadow-purple);
    backdrop-filter: blur(16px);
  }

  .topbar.is-open .nav-links a {
    min-height: 50px;
    display: flex;
    align-items: center;
    padding: 0 14px;
    border-radius: 12px;
    color: white;
  }

  .topbar.is-open .nav-links a + a {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
  }

  .menu-button {
    display: block;
  }

  .hero-section {
    gap: 8px;
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .eyebrow {
    min-height: 44px;
    max-width: 100%;
    padding: 0 14px;
    font-size: 11px;
    line-height: 1.2;
  }

  .hero-copy h1 {
    margin: 28px 0 20px;
    font-size: clamp(38px, 11.7vw, 52px);
    line-height: 1.02;
  }

  .hero-copy p {
    font-size: 17px;
    line-height: 1.5;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 16px;
    margin: 28px 0 30px;
  }

  .primary-button {
    min-width: 0;
    width: 100%;
    min-height: 66px;
    border-radius: 18px;
  }

  .secondary-link {
    justify-content: center;
    min-height: 46px;
  }

  .creator-trust {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .stars {
    font-size: 18px;
  }

  .hero-visual {
    min-height: 760px;
    margin-top: 18px;
  }

  .hero-visual::before {
    inset: 0 -10px;
    border-radius: 24px;
    mask-image: linear-gradient(to bottom, black 0 88%, transparent 100%);
  }

  .engine-board {
    top: 522px;
    width: min(520px, calc(100vw - 18px));
    height: 360px;
    border-radius: 26px;
    transform: translate(-50%, -50%) scale(0.74);
  }

  .visual-orbit {
    top: 500px;
    opacity: 0.65;
    transform: translate(-50%, -50%) scale(0.62) rotateX(64deg) rotateZ(-12deg);
  }

  .orbit-two {
    transform: translate(-50%, -50%) scale(0.62) rotateX(64deg) rotateZ(18deg);
  }

  .signal-card {
    width: calc(50% - 8px);
    padding: 14px;
    border-radius: 16px;
  }

  .signal-card strong {
    font-size: 14px;
  }

  .signal-card small {
    font-size: 11px;
  }

  .card-comments {
    left: 0;
    top: 0;
  }

  .card-discord {
    right: 0;
    top: 0;
  }

  .card-drop {
    left: 0;
    top: 124px;
    bottom: auto;
    width: 100%;
  }

  .hero-tag {
    min-height: 42px;
    padding: 0 13px;
    border-radius: 12px;
    font-size: 9px;
  }

  .tag-eyes {
    left: 0;
    top: 232px;
  }

  .tag-brand {
    right: 0;
    top: 232px;
  }

  .tag-cash {
    left: 50%;
    right: auto;
    top: 284px;
    bottom: auto;
    transform: translateX(-50%);
    white-space: nowrap;
  }

  .board-topline {
    font-size: 9px;
  }

  .board-topline span:first-child {
    margin-left: 50px;
  }

  .board-topline span:last-child {
    margin-right: 64px;
  }

  .engine-core {
    width: 142px;
    height: 142px;
    top: 43%;
  }

  .engine-core strong {
    font-size: 17px;
  }

  .flow-node {
    min-width: 104px;
    padding: 10px 12px;
    font-size: 12px;
  }

  .asset-preview {
    bottom: 18px;
    width: calc(100% - 40px);
    padding: 13px;
  }

  .asset-row {
    display: none;
  }

  .asset-preview strong {
    margin-bottom: 0;
    font-size: 15px;
  }

  .stats-strip,
  .metric-grid,
  .identity-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .stats-strip div + div {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .stats-strip {
    margin-bottom: 34px;
    border-radius: 22px;
  }

  .stats-strip div {
    min-height: 118px;
    grid-template-columns: 54px 1fr;
    gap: 0 16px;
    padding: 22px;
  }

  .stat-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    font-size: 23px;
  }

  .stats-strip strong {
    font-size: 30px;
  }

  .simulation-panel {
    padding: 24px 14px 34px;
    border-radius: 22px;
  }

  .panel-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .panel-head h2 {
    font-size: 25px;
  }

  .simulate-button {
    min-height: 66px;
    margin-bottom: 26px;
    border-radius: 18px;
    font-size: 16px;
  }

  .metric-card {
    min-height: 164px;
    padding: 24px 22px;
    border-radius: 18px;
  }

  .metric-card strong {
    font-size: clamp(36px, 12vw, 43px);
  }

  .growth-stage {
    height: 250px;
    margin-top: 4px;
    overflow: hidden;
  }

  .culture-stream {
    left: 10px;
    right: 10px;
    top: 66px;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .stream-chip {
    min-height: 45px;
    font-size: 11px;
  }

  .launch-rail {
    display: none;
  }

  .timeline {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 22px 8px;
    text-align: left;
  }

  .timeline div {
    width: auto;
  }

  .trusted-row span {
    font-size: 16px;
  }

  .section-heading {
    margin-top: 46px;
  }

  .section-heading h2 {
    font-size: 30px;
  }

  .section-heading p {
    font-size: 17px;
  }

  .identity-grid article,
  .process-grid article {
    padding: 26px 24px;
    border-radius: 18px;
  }
}

@media (max-width: 430px) {
  .site-shell {
    padding-inline: 14px;
  }

  .brand {
    font-size: 12px;
    letter-spacing: 1.1px;
  }

  .brand-mark {
    transform: scale(0.9);
    transform-origin: left center;
  }

  .hero-copy h1 {
    font-size: clamp(34px, 9.4vw, 37px);
  }

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

  .signal-card {
    width: 100%;
  }

  .card-discord {
    top: 108px;
  }

  .card-drop {
    top: 216px;
  }

  .tag-eyes {
    top: 328px;
  }

  .tag-brand {
    top: 378px;
  }

  .tag-cash {
    top: 428px;
  }

  .engine-board {
    top: 586px;
    height: 350px;
    transform: translate(-50%, -50%) scale(0.64);
  }

  .engine-core {
    top: 42%;
  }

  .visual-orbit {
    top: 580px;
    transform: translate(-50%, -50%) scale(0.52) rotateX(64deg) rotateZ(-12deg);
  }

  .orbit-two {
    transform: translate(-50%, -50%) scale(0.52) rotateX(64deg) rotateZ(18deg);
  }

  .metric-label {
    gap: 12px;
    font-size: 13px;
  }

  .mini-icon {
    width: 38px;
    height: 38px;
  }
}
