:root {
  --ink: #f3f4f6;
  --muted: #9ca3af;
  --line: #2a2a2e;
  --paper: #0b0b0c;
  --panel: #141416;
  --accent: #e11d48;
  --accent-dark: #be123c;
  --accent-light: #fb7185;
  --charcoal: #18181b;
  --shadow: 0 24px 60px rgba(0, 0, 0, .45);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 20% 20%, rgba(225, 29, 72, .12) 0%, transparent 35%),
    radial-gradient(circle at 80% 80%, rgba(225, 29, 72, .08) 0%, transparent 30%);
  pointer-events: none;
}

a { color: inherit; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  background: rgba(11, 11, 12, .85);
  border-bottom: 1px solid rgba(42, 42, 46, .9);
  backdrop-filter: blur(18px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 0;
  font-size: 1.1rem;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: #fff;
  background: var(--accent);
  border-radius: 8px;
  font-weight: 800;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}
.site-nav a,
.site-footer nav a {
  padding: 10px 12px;
  color: var(--muted);
  font-size: .94rem;
  font-weight: 650;
  text-decoration: none;
  border-radius: 8px;
}
.site-nav a:hover,
.site-nav a[aria-current="page"],
.site-footer nav a:hover {
  color: var(--accent-light);
  background: rgba(225, 29, 72, .12);
}
.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--accent);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(360px, 1.08fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: calc(100vh - 76px);
  padding: clamp(42px, 7vw, 88px) clamp(18px, 4vw, 56px) 34px;
  overflow: hidden;
}
.hero-copy { max-width: 660px; }
.eyebrow {
  margin: 0 0 14px;
  color: var(--accent-light);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
h1, h2, h3 { letter-spacing: 0; line-height: 1.08; }
.hero h1 {
  margin: 0;
  max-width: 12ch;
  font-size: clamp(3rem, 8vw, 6.8rem);
  font-weight: 800;
}
.hero-lede {
  max-width: 660px;
  margin: 24px 0 28px;
  color: var(--muted);
  font-size: clamp(1.02rem, 2vw, 1.24rem);
}

.hero h1 span {
  color: var(--accent);
}
.launch-form {
  max-width: 560px;
  padding: 8px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.launch-form label {
  display: block;
  padding: 10px 12px 6px;
  color: var(--accent-light);
  font-size: .86rem;
  font-weight: 700;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}
input,
button {
  min-height: 50px;
  border-radius: 8px;
  font: inherit;
}
input {
  width: 100%;
  border: 1px solid transparent;
  padding: 0 14px;
  background: #1f1f22;
  color: var(--ink);
}
input:focus {
  outline: 3px solid rgba(225, 29, 72, .18);
  border-color: var(--accent);
  background: #141416;
}
button {
  border: 0;
  padding: 0 18px;
  color: #fff;
  background: var(--accent);
  font-weight: 800;
  cursor: pointer;
}
button:hover { background: var(--accent-dark); }
.form-status {
  min-height: 22px;
  margin: 7px 12px 2px;
  color: var(--accent-light);
  font-size: .88rem;
  font-weight: 700;
}
.hero-media {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(225, 29, 72, .25) 0%, rgba(11, 11, 12, .45) 100%);
  pointer-events: none;
  border-radius: 8px;
}
.hero-media img {
  display: block;
  width: min(760px, 100%);
  margin-left: auto;
  border-radius: 8px;
  filter: saturate(.85) contrast(1.05);
}

.launch-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding: 0 clamp(18px, 4vw, 56px) clamp(56px, 7vw, 92px);
  background: var(--line);
}
.launch-grid article {
  min-height: 230px;
  padding: clamp(24px, 4vw, 38px);
  background: var(--panel);
  transition: background .2s ease;
}
.launch-grid article:hover {
  background: #1a1a1c;
}
.icon {
  color: var(--accent);
  font-weight: 800;
}
.launch-grid h2,
.seller-band h2 {
  margin: 14px 0 12px;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
}
.launch-grid p,
.seller-band p {
  margin: 0;
  color: var(--muted);
}
.seller-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(34px, 6vw, 64px) clamp(18px, 4vw, 56px);
  background: var(--charcoal);
  color: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.seller-band .eyebrow,
.seller-band p { color: var(--accent-light); }
.seller-band h2 {
  max-width: 880px;
  color: #fff;
}
.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 18px;
  color: #fff;
  background: var(--accent);
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}
.text-link:hover { background: var(--accent-dark); }

.legal-shell {
  max-width: 1060px;
  margin: 0 auto;
  padding: clamp(36px, 7vw, 82px) clamp(18px, 4vw, 42px);
}
.legal-hero {
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
.legal-hero h1 {
  margin: 0;
  font-size: clamp(2.4rem, 6vw, 5rem);
}
.legal-hero p {
  max-width: 780px;
  color: var(--muted);
  font-size: 1.08rem;
}
.legal-content {
  padding-top: 18px;
  color: var(--ink);
}
.legal-content h2 {
  margin: 34px 0 12px;
  font-size: clamp(1.45rem, 3vw, 2.2rem);
}
.legal-content h3 {
  margin: 26px 0 10px;
  font-size: 1.08rem;
}
.legal-content p,
.legal-content li {
  color: var(--muted);
}
.legal-content ul,
.legal-content ol {
  padding-left: 24px;
}
.table-scroll {
  overflow-x: auto;
  margin: 24px 0;
  border: 1px solid var(--line);
  border-radius: 8px;
}
table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  background: var(--panel);
}
th, td {
  padding: 14px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}
th {
  color: var(--accent-light);
  background: #1a1a1c;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 32px clamp(18px, 4vw, 56px);
  color: #d5d5d5;
  background: #050505;
}
.site-footer p {
  margin: 8px 0 0;
  max-width: 460px;
  color: #9ca3af;
}
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 4px;
}
.site-footer nav a:hover { background: rgba(255, 255, 255, .08); }

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .site-nav {
    position: absolute;
    inset: 74px 18px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    background: rgba(20, 20, 22, .98);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }
  .site-nav.is-open { display: flex; }
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero h1 { max-width: 11ch; }
  .hero-media img {
    width: 100%;
    margin: 0;
  }
  .launch-grid { grid-template-columns: 1fr; }
  .seller-band,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
  .site-footer nav { justify-content: flex-start; }
}

@media (max-width: 560px) {
  .site-header { padding-inline: 14px; }
  .hero { padding-top: 32px; }
  .hero h1 { font-size: 2.85rem; }
  .form-row { grid-template-columns: 1fr; }
  button { width: 100%; }
  .legal-shell { padding-top: 34px; }
}
