:root {
  --bg: #0a0a0f;
  --surface: #111118;
  --elevated: #1a1a24;
  --text: #f0eff8;
  --secondary: #9895a8;
  --muted: #5a5770;
  --teal: #2dd4bf;
  --teal-2: #29d7c3;
  --coral: #f97066;
  --purple: #a78bfa;
  --line: rgba(240, 239, 248, 0.1);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  --radius: 18px;
  --max: 1120px;
  --sans: "Plus Jakarta Sans", "Segoe UI", system-ui, sans-serif;
  --serif: Newsreader, "Iowan Old Style", Georgia, serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
}

body {
  min-height: 100vh;
  background-image:
    radial-gradient(1200px 500px at 10% -10%, rgba(45, 212, 191, 0.08), transparent 55%),
    radial-gradient(900px 420px at 90% 8%, rgba(167, 139, 250, 0.08), transparent 50%);
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--teal);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--teal-2);
}

:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
}

.skip {
  position: absolute;
  left: 12px;
  top: -40px;
  background: var(--elevated);
  color: var(--text);
  padding: 0.5rem 0.8rem;
  z-index: 20;
}

.skip:focus {
  top: 12px;
}

.wrap {
  width: min(var(--max), calc(100% - 2rem));
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--teal);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 600;
}

.eyebrow::before {
  content: "";
  width: 1.4rem;
  height: 1px;
  background: var(--teal);
}

.lede {
  color: var(--secondary);
  font-size: 1.05rem;
  max-width: 42rem;
}

h1,
h2,
h3 {
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0 0 0.85rem;
}

h1 {
  font-size: clamp(2.1rem, 6vw, 4.4rem);
  max-width: 14ch;
}

h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
}

h3 {
  font-size: 1.15rem;
}

p {
  margin: 0 0 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(16px);
  background: rgba(10, 10, 15, 0.84);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: inherit;
  text-decoration: none;
  min-width: 0;
}

.brand-mark {
  display: block;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
}

.brand-copy {
  display: grid;
  gap: 0.05rem;
  line-height: 1.1;
}

.brand-word {
  font-weight: 700;
  letter-spacing: -0.03em;
  font-size: 1.05rem;
  color: var(--text);
}

.brand-dot {
  color: var(--teal);
  padding: 0 0.12em;
}

.brand-sub {
  color: var(--muted);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
}

.nav-toggle {
  display: none;
}

.nav-toggle-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  border-radius: 999px;
  padding: 0.45rem 0.85rem;
  font-size: 0.85rem;
  cursor: pointer;
}

.site-nav {
  display: none;
  flex-direction: column;
  gap: 0.35rem;
  position: absolute;
  inset: 72px 1rem auto;
  background: var(--elevated);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0.85rem;
  box-shadow: var(--shadow);
  font-size: 0.92rem;
}

.site-nav a {
  color: var(--text);
  text-decoration: none;
  padding: 0.45rem 0.55rem;
  border-radius: 8px;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(45, 212, 191, 0.1);
  color: var(--teal);
}

.nav-toggle:checked ~ .site-nav {
  display: flex;
}

.hero {
  padding: 3rem 0 2.5rem;
}

.hero-panel {
  display: grid;
  gap: 1.5rem;
}

.hero-copy p {
  max-width: 40rem;
  color: var(--secondary);
}

.hero-support {
  max-width: 36rem;
  margin: 0 0 1.15rem;
  color: var(--text);
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.35;
  border-left: 3px solid var(--teal);
  padding-left: 0.85rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.4rem 0 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.75rem 1.15rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
}

.btn-primary {
  background: var(--teal);
  color: #06221e;
}

.btn-primary:hover {
  background: var(--teal-2);
  color: #06221e;
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line);
}

.btn-ghost:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.signature {
  display: grid;
  gap: 0.35rem;
  color: var(--secondary);
  font-size: 0.95rem;
}

.signature strong {
  color: var(--text);
  font-weight: 600;
}

.proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.pill {
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--secondary);
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
  font-size: 0.82rem;
}

.quote-band {
  margin: 0.5rem 0 2rem;
  padding: 1.5rem 0;
  border-block: 1px solid var(--line);
}

.record-band {
  margin: 0 0 1.5rem;
  padding: 2.4rem 0;
  background:
    linear-gradient(180deg, rgba(45, 212, 191, 0.1), transparent 58%),
    var(--elevated);
  border-block: 1px solid rgba(45, 212, 191, 0.28);
}

.record-band h2 {
  max-width: 22ch;
  color: var(--text);
}

.record-band .lede {
  color: var(--secondary);
}

blockquote {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.35;
  max-width: 22ch;
  font-style: italic;
  color: var(--text);
}

blockquote cite {
  display: block;
  margin-top: 0.8rem;
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple);
}

.audience {
  padding: 0.5rem 0 2.5rem;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

.chip {
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--text);
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
  font-size: 0.86rem;
}

section {
  padding: 2.6rem 0;
}

.section-kicker {
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.65rem;
}

.grid-2,
.grid-3,
.steps,
.parties {
  display: grid;
  gap: 1rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem 1.2rem 1.05rem;
}

.card p:last-child,
.card ul:last-child {
  margin-bottom: 0;
}

.card.featured {
  border-color: rgba(45, 212, 191, 0.35);
  background:
    linear-gradient(180deg, rgba(45, 212, 191, 0.08), transparent 42%),
    var(--elevated);
}

.num {
  color: var(--teal);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.4rem;
}

.steps .card h3,
.parties .card h3 {
  margin-bottom: 0.4rem;
}

.split {
  display: grid;
  gap: 1.25rem;
}

.muted {
  color: var(--secondary);
}

.fine {
  color: var(--muted);
  font-size: 0.88rem;
}

.economics {
  display: grid;
  gap: 1rem;
}

.fee-label {
  color: var(--purple);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}

.why-list {
  display: grid;
  gap: 0.85rem;
}

.why-list article h3 {
  color: var(--teal);
  font-size: 0.95rem;
  letter-spacing: 0;
}

.signup {
  padding-bottom: 3.5rem;
}

.signup-grid {
  display: grid;
  gap: 1.4rem;
}

form {
  display: grid;
  gap: 0.9rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  padding: 1.15rem;
}

form[hidden] {
  display: none;
}

label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.86rem;
  font-weight: 600;
}

label span.req {
  color: var(--coral);
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--text);
  font: inherit;
  padding: 0.65rem 0.8rem;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.hp {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  min-height: 1.2rem;
  font-size: 0.92rem;
}

.form-status.error {
  color: var(--coral);
}

.form-status.ok {
  color: var(--teal);
}

.confirm {
  display: none;
  background: var(--elevated);
  border: 1px solid rgba(45, 212, 191, 0.35);
  border-radius: var(--radius);
  padding: 1.3rem;
}

.confirm.show {
  display: block;
}

.confirm h3 {
  color: var(--teal);
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 2rem 0 2.4rem;
  background: #07070b;
}

.footer-grid {
  display: grid;
  gap: 1.2rem;
}

.footer-brand {
  display: inline-block;
}

.footer-brand img {
  display: block;
  height: 72px;
  width: auto;
  max-width: min(420px, 100%);
  object-fit: contain;
  object-position: left center;
}

.footer-vibe {
  font-family: var(--serif);
  font-style: italic;
  color: var(--secondary);
  max-width: 34rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.1rem;
}

.footer-links a {
  color: var(--text);
  text-decoration: none;
}

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

.disclaimer {
  color: var(--muted);
  font-size: 0.82rem;
  max-width: 52rem;
  margin-top: 0.4rem;
}

@media (min-width: 880px) {
  .hero-panel,
  .split,
  .grid-2,
  .economics,
  .signup-grid,
  .footer-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }

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

  .header-inner {
    position: relative;
  }

  .nav-toggle-label {
    display: none;
  }

  .site-nav,
  .nav-toggle:checked ~ .site-nav {
    display: flex;
    position: static;
    flex-direction: row;
    align-items: center;
    gap: 0.2rem 0.85rem;
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0;
    inset: auto;
  }

  form {
    padding: 1.4rem;
  }
}

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

  .hero {
    padding-top: 4.5rem;
  }
}

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