:root {
  color-scheme: dark;
  --paper: #10100f;
  --ink: #f1eee7;
  --muted: #aaa69d;
  --line: rgba(255, 255, 255, 0.12);
  --pink: #e54473;
  --green: #35b975;
  --cyan: #29a8c4;
  --violet: #795bb5;
}

* { box-sizing: border-box; }

html { background: var(--paper); }

body {
  margin: 0;
  color: var(--ink);
  background-color: var(--paper);
  background-image:
    repeating-linear-gradient(4deg, rgba(255,255,255,.018) 0 2px, transparent 2px 9px),
    repeating-linear-gradient(91deg, rgba(255,255,255,.012) 0 1px, transparent 1px 13px);
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Maru Gothic ProN", "Yu Gothic", sans-serif;
  letter-spacing: 0;
  min-height: 100vh;
}

a { color: inherit; }

.shell { width: min(880px, calc(100% - 40px)); margin: 0 auto; }

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  border-bottom: 1px solid var(--line);
}

.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; font-weight: 700; }
.brand img { width: 32px; height: 32px; border-radius: 7px; }
nav { display: flex; gap: 22px; }
nav a { color: var(--muted); font-size: 14px; text-decoration: none; }
nav a:hover { color: var(--ink); }

.hero {
  min-height: min(680px, calc(100vh - 72px));
  display: grid;
  place-content: center;
  position: relative;
  overflow: hidden;
  padding: 96px 0 120px;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  height: 4px;
  width: 72%;
  left: -10%;
  top: 59%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--pink), #ed9d26, var(--green), var(--cyan), var(--violet));
  transform: rotate(-12deg);
  box-shadow: 0 2px rgba(255,255,255,.08), 140px -70px 0 -1px var(--cyan), 420px 92px 0 -1px var(--pink);
}

.hero::after { width: 54%; left: 43%; top: 35%; transform: rotate(29deg); opacity: .72; }

.hero-copy { position: relative; z-index: 1; text-align: center; }
.hero-icon { width: 92px; height: 92px; border-radius: 20px; margin-bottom: 30px; }
h1 { margin: 0; font-size: clamp(48px, 11vw, 88px); line-height: 1.05; font-weight: 800; }
.lead { margin: 24px auto 0; color: #d8d4cc; font-size: clamp(19px, 3vw, 25px); line-height: 1.8; }
.availability { margin-top: 28px; color: var(--muted); font-size: 14px; }

.band { border-top: 1px solid var(--line); padding: 88px 0; }
.band h2 { margin: 0 0 22px; font-size: clamp(28px, 5vw, 42px); }
.band p { color: #ccc8c0; font-size: 17px; line-height: 2; max-width: 680px; }
.facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 46px; background: var(--line); border: 1px solid var(--line); }
.fact { background: var(--paper); padding: 26px; }
.fact strong { display: block; margin-bottom: 8px; }
.fact span { color: var(--muted); font-size: 14px; line-height: 1.7; }

.document { padding: 72px 0 110px; }
.document .eyebrow { color: var(--green); font-size: 13px; font-weight: 700; }
.document h1 { margin-top: 12px; font-size: clamp(36px, 7vw, 58px); }
.updated { color: var(--muted); margin: 16px 0 54px; }
.document section { padding: 30px 0; border-top: 1px solid var(--line); }
.document h2 { font-size: 21px; margin: 0 0 12px; }
.document p, .document li { color: #c9c5bd; line-height: 1.9; }
.document ul { padding-left: 1.3em; }
.contact { border: 1px solid var(--line); padding: 22px; margin-top: 14px; }
.contact a { color: #76d7c0; }

footer { border-top: 1px solid var(--line); padding: 32px 0 50px; color: var(--muted); font-size: 13px; }
.footer-inner { display: flex; justify-content: space-between; gap: 20px; }
.footer-links { display: flex; gap: 18px; }

@media (max-width: 640px) {
  .shell { width: min(100% - 28px, 880px); }
  header { min-height: 64px; }
  nav { gap: 14px; }
  nav a { font-size: 12px; }
  .hero { min-height: calc(100svh - 64px); padding: 72px 0 96px; }
  .facts { grid-template-columns: 1fr; }
  .band { padding: 64px 0; }
  .footer-inner { flex-direction: column; }
}

