:root {
  --bg: #0b0c0d;
  --paper: #e9e0cf;
  --muted: #a79f92;
  --line: #2b2d30;
  --accent: #d7ff57;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--paper);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 100% 4px;
  opacity: .16;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px clamp(20px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--paper);
  text-decoration: none;
  font-weight: 800;
  letter-spacing: -.03em;
}

.logo-box {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--paper);
  border: 1px solid rgba(215, 255, 87, .35);
  overflow: hidden;
}

.logo-box img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  display: block;
}

nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

nav a, main a {
  color: var(--accent);
  text-decoration: none;
}

main {
  padding: clamp(36px, 8vw, 120px) clamp(20px, 5vw, 72px);
}

.intro { max-width: 840px; }

.eyebrow {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 14px;
  margin-bottom: 22px;
}

h1 {
  max-width: 980px;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(48px, 10vw, 128px);
  line-height: .88;
  letter-spacing: -.08em;
  margin: 0 0 34px;
}

p {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.7;
}

.notice {
  color: var(--paper);
  border-left: 3px solid var(--accent);
  padding-left: 18px;
  margin-top: 36px;
}

.social-card {
  margin-top: 42px;
  padding: 18px 20px;
  display: inline-flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.03);
}

.social-card span { color: var(--muted); }
.social-card.compact { margin-top: 28px; }

.text-page { max-width: 880px; }
.text-page h1 { font-size: clamp(42px, 7vw, 78px); }

h2 {
  margin-top: 42px;
  color: var(--paper);
}

@media (max-width: 700px) {
  header { align-items: flex-start; flex-direction: column; }
  .brand { font-size: 15px; }
  nav { gap: 12px; }
}
.hero-logo {
  width: 180px;
  height: auto;
  display: block;
  margin: 0 auto 28px;
}
.hero {
  min-height: 78vh;
  display: flex;
  align-items: center;
}

.hero-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-logo {
  width: 180px;
  height: auto;
  display: block;
  margin: 0 auto 36px;
}

.hero .eyebrow {
  text-align: center;
}

.hero h1 {
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.hero p {
  text-align: center;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.social-card {
  margin-left: auto;
  margin-right: auto;
}