:root {
  --bg: #060216;
  --surface: #1d0b35;
  --card: #25113f;
  --primary: #8000ff;
  --secondary: #e30b5e;
  --text: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.68);
  --border: rgba(255, 255, 255, 0.12);
  --success: #35e58b;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background: radial-gradient(60% 50% at 15% 0%, rgba(128, 0, 255, 0.32), transparent 60%),
    radial-gradient(55% 45% at 90% 15%, rgba(227, 11, 94, 0.24), transparent 60%),
    radial-gradient(50% 40% at 20% 100%, rgba(128, 0, 255, 0.18), transparent 60%),
    var(--bg);
}

h1, h2, h3, .brand span,
.hero h1, .cta-band h2, .section-head h2 {
  font-family: "Arial Black", "Arial Bold", Arial, "Helvetica Neue", Helvetica, sans-serif;
  text-wrap: balance;
}

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

a {
  color: inherit;
}

.wrap {
  width: 100%;
  margin: 0 auto;
  padding: 0 48px;
}

@media (max-width: 600px) {
  .wrap {
    padding: 0 20px;
  }
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(6, 2, 22, 0.4);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1280px;
  margin: 0 auto;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 900;
  font-size: 20px;
  letter-spacing: -0.3px;
}

.brand img {
  width: 36px;
  height: 36px;
  border-radius: 10px;
}

.brand .brand-wordmark {
  width: auto;
  height: 34px;
  border-radius: 0;
}

@media (max-width: 400px) {
  .brand .brand-wordmark {
    height: 26px;
  }

  .site-header .header-actions .btn {
    padding: 10px 16px;
    font-size: 13px;
  }
}

.brand-name-connect {
  background: linear-gradient(120deg, #c9a6ff, #8000ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-name-me {
  background: linear-gradient(120deg, #ff8fd1, #e30b5e);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 700;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  transition: color 0.15s ease;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 22px;
  font-weight: 800;
  font-size: 14px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--primary);
  background-image: linear-gradient(120deg, rgba(128, 0, 255, 0.24), rgba(227, 11, 94, 0.24));
  color: #ffffff;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 0 0 1px var(--border);
  color: var(--text);
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 16px 0 10px;
}

.hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 56px;
  max-width: 1280px;
  margin: 0 auto;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  flex: 1 1 480px;
}

/* Phone mockup */
.hero-phone {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-right: 80px;
}

.phone-mockup {
  position: relative;
  width: 228px;
  aspect-ratio: 9 / 19.5;
  border-radius: 33px;
  border: 9px solid #0b0518;
  background: #000;
  overflow: hidden;
  box-shadow: 0 34px 60px -18px rgba(0, 0, 0, 0.65), 0 0 0 1px rgba(255, 255, 255, 0.08),
    0 0 52px rgba(128, 0, 255, 0.25);
  animation: phone-float 6s ease-in-out infinite;
}

.phone-mockup img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 81px;
  height: 19px;
  background: #0b0518;
  border-radius: 0 0 14px 14px;
  z-index: 2;
}

@keyframes phone-float {
  0%, 100% {
    transform: translateY(0) rotate(-2.5deg);
  }
  50% {
    transform: translateY(-10px) rotate(0deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .phone-mockup {
    animation: none;
  }
}

.store-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 16px;
}

.store-badge-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.store-badge-link {
  display: block;
  line-height: 0;
  width: 187px;
  height: 59px;
  border-radius: 8px;
  border: 1.75px solid rgba(255, 255, 255, 0.73);
  background: #000;
  overflow: hidden;
  transition: transform 0.15s ease, filter 0.15s ease;
}

.store-badge-link:hover {
  transform: translateY(-2px);
  filter: brightness(1.15);
}

.store-badge-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.coming-soon-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  padding: 5px 14px;
  border-radius: 999px;
  background: linear-gradient(120deg, rgba(128, 0, 255, 0.24), rgba(227, 11, 94, 0.24));
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #f2e9ff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .hero-inner {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .hero-content {
    max-width: 620px;
  }

  .hero-phone {
    margin-right: 0;
  }

  .hero-ctas,
  .store-badges {
    justify-content: center;
  }

  .eyebrow-text {
    margin-bottom: 10px;
  }

  .hero h1 {
    margin-bottom: 10px;
  }

  .hero p.lead {
    font-size: 12px;
    margin: 0 auto 10px;
  }

  .hero-note {
    margin: 0;
  }
}

.eyebrow-text {
  display: inline-block;
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.hero h1 {
  font-size: clamp(40px, 6.6vw, 64px);
  line-height: 1.06;
  font-weight: 900;
  letter-spacing: -1px;
  margin: 0 0 20px;
}

.hero h1 .accent {
  background: linear-gradient(120deg, #c9a6ff, #ff8fd1, var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p.lead {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 0 34px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}

.hero-ctas--mobile {
  display: none;
}

@media (max-width: 900px) {
  .hero-ctas--desktop {
    display: none;
  }

  .hero-ctas--mobile {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 0;
  }
}

.hero-note {
  font-size: 13px;
  color: var(--text-muted);
}

/* Sections */
section {
  padding: 88px 0;
}

.section-head {
  max-width: 620px;
  margin: 0 0 52px;
}

.section-kicker {
  color: #cfa6ff;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-head h2 {
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 900;
  letter-spacing: -0.6px;
  margin: 0 0 14px;
}

.section-head p {
  color: var(--text-muted);
  font-size: 16px;
  margin: 0;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* Feature slides */
html {
  scroll-snap-type: y proximity;
}

.feature-slides {
  display: flex;
  flex-direction: column;
}

.feature-slide {
  min-height: 100vh;
  display: flex;
  align-items: center;
  scroll-snap-align: start;
}

.feature-slide-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 72px;
  max-width: 1080px;
  margin: 0 auto;
  padding-top: 64px;
  padding-bottom: 64px;
}

.feature-slide-inner--reverse {
  flex-direction: row-reverse;
}

.feature-slide-text {
  max-width: 520px;
  flex: 1 1 440px;
}

.feature-slide-visual {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
}

.feature-slide-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: rgba(128, 0, 255, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: #cfa6ff;
}

.feature-slide-icon svg {
  width: 28px;
  height: 28px;
}

.feature-slide-icon-group {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}

.feature-slide-icon-group .feature-slide-icon {
  margin-bottom: 0;
}

.feature-slide-icon-plus {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-muted);
}

.feature-slide h3 {
  font-size: clamp(28px, 3.6vw, 40px);
  font-weight: 800;
  letter-spacing: -0.6px;
  margin: 0 0 18px;
}

.feature-slide h3 .accent {
  background: linear-gradient(120deg, rgba(128, 0, 255, 0.24), rgba(227, 11, 94, 0.24));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.feature-slide-lead {
  color: var(--text-muted);
  font-size: 17px;
  margin: 0 0 28px;
}

.feature-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.feature-points li {
  position: relative;
  padding-left: 26px;
  color: var(--text-muted);
  font-size: 14.5px;
}

.feature-points li strong {
  color: var(--text);
  font-weight: 800;
}

.feature-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(120deg, rgba(128, 0, 255, 0.24), rgba(227, 11, 94, 0.24));
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-snap-type: none;
  }
}

/* Feature mock devices */
.feature-mock {
  position: relative;
  width: 260px;
  aspect-ratio: 9 / 19.5;
  border-radius: 34px;
  border: 9px solid #0b0518;
  background: linear-gradient(165deg, #1d0b35, #0b0417);
  overflow: hidden;
  box-shadow: 0 34px 60px -18px rgba(0, 0, 0, 0.65), 0 0 0 1px rgba(255, 255, 255, 0.08),
    0 0 52px rgba(128, 0, 255, 0.25);
  transform: rotate(6deg);
  transition: transform 0.35s ease;
}

.feature-slide-inner--reverse .feature-mock {
  transform: rotate(-6deg);
}

.feature-slide-visual:hover .feature-mock {
  transform: rotate(0deg) scale(1.03);
}

@keyframes mock-reveal {
  0% {
    opacity: 0;
    transform: translateY(24px) scale(0.9) rotate(0deg);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1) rotate(6deg);
  }
}

@keyframes mock-reveal-reverse {
  0% {
    opacity: 0;
    transform: translateY(24px) scale(0.9) rotate(0deg);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1) rotate(-6deg);
  }
}

.feature-mock.mock-animate {
  animation: mock-reveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.feature-slide-inner--reverse .feature-mock.mock-animate {
  animation-name: mock-reveal-reverse;
}

@media (prefers-reduced-motion: reduce) {
  .feature-mock.mock-animate {
    animation: none;
  }
}

.cupcake-slide {
  position: relative;
  overflow: hidden;
}

.cupcake-glow {
  position: absolute;
  top: -50px;
  left: -70px;
  width: 360px;
  height: 360px;
  color: rgba(255, 255, 255, 0.05);
  transform: rotate(-10deg);
  pointer-events: none;
  z-index: 0;
}

.cupcake-glow svg {
  width: 100%;
  height: 100%;
}

.cupcake-slide .feature-slide-inner {
  position: relative;
  z-index: 1;
}

.mock-purchase {
  position: relative;
  z-index: 1;
}

.mock-balance {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  padding: 3px 9px;
  border-radius: 999px;
  font-variant-numeric: tabular-nums;
}

.mock-close {
  color: rgba(255, 255, 255, 0.6);
}

.mock-purchase-list {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px 12px 0;
}

.mock-purchase-item {
  position: relative;
  display: flex;
  align-items: center;
  padding: 9px 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 12px;
  font-weight: 700;
}

.mock-purchase-item.featured {
  background: rgba(128, 0, 255, 0.22);
  border-color: rgba(128, 0, 255, 0.5);
}

.mock-purchase-badge {
  position: absolute;
  top: -8px;
  left: 12px;
  background: var(--secondary);
  color: #fff;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 999px;
}

@media (max-width: 900px) {
  .feature-mock,
  .feature-slide-inner--reverse .feature-mock {
    transform: none;
  }

  .cupcake-glow {
    width: 240px;
    height: 240px;
  }
}

.mock-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 18px;
  background: #0b0518;
  border-radius: 0 0 13px 13px;
  z-index: 3;
}

.mock-topbar {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 14px 0;
  font-size: 11px;
  font-weight: 800;
}

.mock-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--secondary);
  color: #fff;
  padding: 3px 8px;
  border-radius: 5px;
  letter-spacing: 0.5px;
}

.mock-live-badge .dot {
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: #fff;
}

.mock-viewers {
  color: rgba(255, 255, 255, 0.85);
  background: rgba(0, 0, 0, 0.35);
  padding: 3px 8px;
  border-radius: 999px;
}

.mock-stage {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(70% 60% at 50% 40%, rgba(128, 0, 255, 0.35), transparent 65%);
}

.mock-avatar-ring {
  width: 96px;
  height: 96px;
  border-radius: 999px;
  padding: 4px;
  background: conic-gradient(from 90deg, var(--primary), var(--secondary), var(--primary));
}

.mock-avatar-ring.small {
  width: 52px;
  height: 52px;
}

.mock-avatar {
  width: 100%;
  height: 100%;
  border-radius: 999px;
  overflow: hidden;
  background: linear-gradient(160deg, #4a2e78, #2a1550);
}

.mock-avatar.alt {
  background: linear-gradient(160deg, #7a2c58, #401a34);
}

.mock-avatar svg {
  display: block;
  width: 100%;
  height: 100%;
}

.mock-chat {
  position: absolute;
  left: 12px;
  bottom: 72px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-width: 160px;
}

.mock-chat-bubble {
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  font-size: 10px;
  padding: 6px 10px;
  border-radius: 10px;
  width: fit-content;
}

.mock-gift-row {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 16px;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.mock-gift {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.mock-rate {
  background: rgba(128, 0, 255, 0.28);
  border: 1px solid rgba(128, 0, 255, 0.5);
  color: #f2e9ff;
  padding: 3px 8px;
  border-radius: 999px;
  font-variant-numeric: tabular-nums;
}

.mock-timer {
  color: rgba(255, 255, 255, 0.85);
  font-variant-numeric: tabular-nums;
}

.mock-split {
  position: absolute;
  inset: 60px 0 64px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.mock-tile {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  background: radial-gradient(80% 80% at 50% 40%, rgba(227, 11, 94, 0.22), rgba(29, 11, 53, 0.9));
}

.mock-tile:first-child {
  background: radial-gradient(80% 80% at 50% 40%, rgba(128, 0, 255, 0.3), rgba(29, 11, 53, 0.9));
}

.mock-tile-name {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
}

.mock-controls {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 16px;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 14px;
}

.mock-ctrl {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.mock-ctrl.end {
  background: var(--secondary);
  border-color: transparent;
}

.mock-cam {
  position: absolute;
  inset: 0 0 50%;
  background: linear-gradient(165deg, #241143, #0b0417);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mock-cam-pulse {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  border: 2px solid rgba(128, 0, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: mock-pulse 2.4s ease-out infinite;
}

.mock-cam-avatar {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  overflow: hidden;
  background: linear-gradient(160deg, #4a2e78, #2a1550);
}

.mock-cam-avatar svg {
  display: block;
  width: 100%;
  height: 100%;
}

@keyframes mock-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(128, 0, 255, 0.35);
  }
  70% {
    box-shadow: 0 0 0 22px rgba(128, 0, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(128, 0, 255, 0);
  }
}

.mock-searching {
  position: absolute;
  top: calc(50% + 14px);
  left: 0;
  right: 0;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
}

.mock-searching-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--success);
  margin-right: 6px;
}

.mock-tap-button {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 44px;
  padding: 13px 0;
  border-radius: 999px;
  text-align: center;
  font-weight: 800;
  font-size: 13px;
  color: #fff;
  background: linear-gradient(120deg, rgba(128, 0, 255, 0.24), rgba(227, 11, 94, 0.24));
}

.mock-free-chip {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 16px;
  text-align: center;
  font-size: 10px;
  font-weight: 700;
  color: var(--success);
}

@media (max-width: 900px) {
  .feature-slide-inner,
  .feature-slide-inner--reverse {
    flex-direction: column;
    text-align: center;
  }

  .feature-slide-text {
    max-width: 480px;
  }

  .feature-slide-icon {
    margin-left: auto;
    margin-right: auto;
  }

  .feature-slide-icon-group {
    justify-content: center;
  }

  .feature-points li {
    text-align: left;
  }

  .feature-slide {
    min-height: auto;
    padding: 24px 0;
  }
}

/* How it works */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  counter-reset: step;
}

.step {
  position: relative;
  padding-left: 4px;
}

.step-number {
  position: relative;
  z-index: 1;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: linear-gradient(120deg, rgba(128, 0, 255, 0.24), rgba(227, 11, 94, 0.24));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 17px;
  margin-bottom: 18px;
  box-shadow: 0 8px 20px rgba(128, 0, 255, 0.3);
}

.step h3 {
  font-size: 16px;
  font-weight: 800;
  margin: 0 0 8px;
}

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

@media (min-width: 901px) {
  .steps {
    grid-template-columns: repeat(4, 1fr);
  }

  .step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 22px;
    left: calc(50% + 22px);
    right: calc(-50% + 22px);
    height: 2px;
    background: linear-gradient(90deg, rgba(128, 0, 255, 0.45), rgba(227, 11, 94, 0.08));
  }
}

/* Roles / creators band */
.band {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.ledger {
  max-width: 560px;
  margin: 0 auto 40px;
  padding: 6px 26px 20px;
  border-radius: 16px;
  background: var(--card);
  border: 1px solid var(--border);
}

.ledger-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 1px dashed var(--border);
}

.ledger-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px dashed var(--border);
  font-size: 14.5px;
}

.ledger-row:last-of-type {
  border-bottom: none;
}

.ledger-row.featured .ledger-value {
  color: var(--success);
}

.ledger-value {
  font-family: "Arial Black", "Arial Bold", Arial, "Helvetica Neue", Helvetica, sans-serif;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  color: #cfa6ff;
}

.ledger-foot {
  margin-top: 8px;
  font-size: 12.5px;
  color: var(--text-muted);
  text-align: center;
}

.role-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
}

.role-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px;
}

.role-card h3 {
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 800;
}

.role-card p {
  margin: 0;
  font-size: 13px;
  color: var(--text-muted);
}

/* Trust / safety */
#safety {
  position: relative;
  overflow: hidden;
}

.safety-glow {
  position: absolute;
  top: -60px;
  right: -80px;
  width: 420px;
  height: 420px;
  color: rgba(53, 229, 139, 0.06);
  transform: rotate(12deg);
  pointer-events: none;
  z-index: 0;
}

.safety-glow svg {
  width: 100%;
  height: 100%;
}

.safety-stat {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  max-width: 720px;
  margin: 0 auto 48px;
  padding: 20px 24px;
  border-radius: 16px;
  background: rgba(53, 229, 139, 0.08);
  border: 1px solid rgba(53, 229, 139, 0.3);
}

.safety-stat svg {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  color: var(--success);
}

.safety-stat p {
  margin: 0;
  font-size: 14.5px;
  color: var(--text-muted);
}

.safety-stat p strong {
  color: var(--success);
}

.safety-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}

.safety-item {
  display: flex;
  gap: 14px;
  padding: 22px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
}

.safety-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(53, 229, 139, 0.14);
  color: var(--success);
  display: flex;
  align-items: center;
  justify-content: center;
}

.safety-icon svg {
  width: 20px;
  height: 20px;
}

.safety-item h3 {
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 800;
}

.safety-item p {
  margin: 0;
  font-size: 13px;
  color: var(--text-muted);
}

/* Final CTA */
.cta-band {
  text-align: center;
  padding: 100px 0;
}

.cta-band h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 900;
  letter-spacing: -0.6px;
  margin: 0 0 16px;
}

.cta-band p {
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto 32px;
  font-size: 16px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

/* Footer */
footer {
  border-top: 1px solid var(--border);
  padding: 56px 0 32px;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer-brand {
  max-width: 320px;
}

.footer-brand .brand {
  margin-bottom: 14px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 13.5px;
  margin: 0;
}

.footer-cols {
  display: flex;
  gap: 56px;
  flex-wrap: wrap;
}

.footer-col h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  margin: 0 0 14px;
}

.footer-col a {
  display: block;
  text-decoration: none;
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
  opacity: 0.9;
}

.footer-col a:hover {
  opacity: 1;
  color: #cfa6ff;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 12.5px;
  color: var(--text-muted);
}

/* Legal pages */
.legal-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 64px 0 100px;
}

.legal-content h1 {
  font-size: 34px;
  font-weight: 900;
  margin-bottom: 6px;
  letter-spacing: -0.6px;
}

.legal-updated {
  color: var(--text-muted);
  font-size: 13px;
  margin-bottom: 28px;
}

.legal-content h2 {
  font-size: 19px;
  font-weight: 800;
  margin: 34px 0 10px;
}

.legal-content p {
  color: var(--text-muted);
  font-size: 15px;
  margin: 0 0 14px;
}

.legal-banner {
  margin: 6px 0 28px;
  font-size: 12px;
  font-style: italic;
  color: var(--text-muted);
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 24px;
}

.back-link:hover {
  color: var(--text);
}

@media (max-width: 720px) {
  .nav-links {
    display: none;
  }

  .site-header .wrap {
    justify-content: center;
  }

  .header-actions {
    display: none;
  }

  .footer-top {
    flex-direction: column;
  }

  .footer-cols {
    gap: 32px;
  }

  .cta-band {
    padding: 64px 0;
  }

  section {
    padding: 56px 0;
  }
}

/* Waitlist modal */
.waitlist-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.waitlist-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.waitlist-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 2, 22, 0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.waitlist-dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 420px;
  padding: 32px 28px;
  border-radius: 20px;
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.6);
  transform: translateY(10px) scale(0.98);
  transition: transform 0.2s ease;
}

.waitlist-modal.is-open .waitlist-dialog {
  transform: translateY(0) scale(1);
}

.waitlist-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
}

.waitlist-close:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.14);
}

.waitlist-dialog h3 {
  font-size: 22px;
  font-weight: 800;
  margin: 0 0 8px;
}

.waitlist-dialog p {
  color: var(--text-muted);
  font-size: 14px;
  margin: 0 0 22px;
}

.waitlist-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.waitlist-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.waitlist-input {
  padding: 13px 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 14px;
  font-family: inherit;
}

.waitlist-input:focus {
  outline: none;
  border-color: var(--primary);
}

.waitlist-submit {
  width: 100%;
}

.waitlist-success h3 {
  font-size: 22px;
  font-weight: 800;
  margin: 0 0 8px;
}

.waitlist-success p {
  color: var(--text-muted);
  font-size: 14px;
  margin: 0;
}
