@font-face {
  font-family: "NeueMachina";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/neue-machina-regular.woff2") format("woff2"),
    url("fonts/neue-machina-regular.woff") format("woff");
}

@font-face {
  font-family: "Arimo";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/arimo-regular.woff2") format("woff2"),
    url("fonts/arimo-regular.woff") format("woff");
}

@font-face {
  font-family: "Arimo";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("fonts/arimo-bold.woff2") format("woff2"),
    url("fonts/arimo-bold.woff") format("woff");
}

:root {
  --bg: #000;
  --bg-deep: #000;
  --panel: #0f0f0f;
  --panel-soft: #141414;
  --ink: #fff;
  --ink-soft: #e5e5e5;
  --accent: #fff;
  --accent-strong: #fff;
  --line: #333;
  --white: #fff;
  --shadow: rgba(0, 0, 0, 0.4);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Arimo", system-ui, sans-serif;
  background: var(--bg);
  min-height: 100vh;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  color: var(--ink-soft);
}

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

.page {
  background: var(--bg);
  margin: 24px auto 48px;
  max-width: 1120px;
  border-radius: 24px;
  box-shadow: 0 24px 60px var(--shadow);
  overflow: hidden;
  border: 1px solid var(--line);
}

.header {
  padding: 24px 36px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
}

.header::after {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 100%;
  background: radial-gradient(400px 220px at 90% 10%, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
  z-index: 1;
}

.brand img {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  border: 2px solid var(--line);
  background: var(--panel);
}

.brand span {
  font-family: "NeueMachina", sans-serif;
  font-size: 56px;
  letter-spacing: -1px;
}

.nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
  position: relative;
  z-index: 1;
}

.nav a {
  font-weight: 500;
  padding: 6px 10px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
}

.hero {
  padding: 30px 36px 36px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  align-items: center;
}

.hero h1 {
  margin: 0 0 14px;
  font-size: 42px;
  color: var(--accent-strong);
}

.main-title {
  font-family: "NeueMachina", sans-serif;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -2px;
}

.hero p {
  font-size: 18px;
  line-height: 1.6;
  margin: 0 0 18px;
  color: var(--ink-soft);
}

.hero .cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 14px;
  border: 2px solid var(--white);
  font-weight: 700;
  background: var(--white);
  color: #000;
}

.button.secondary {
  background: transparent;
  color: var(--white);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.section {
  padding: 30px 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.section h2 {
  margin: 6px 0 14px;
  font-size: 28px;
  color: var(--accent-strong);
  font-family: "NeueMachina", sans-serif;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -1px;
}

.section p {
  margin: 0 0 18px;
  color: var(--ink-soft);
  line-height: 1.6;
}

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

.card {
  background: var(--panel-soft);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  min-height: 160px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.4);
}

.card h3 {
  margin: 0 0 10px;
  font-size: 20px;
  color: var(--accent-strong);
  font-family: "NeueMachina", sans-serif;
  font-weight: 500;
  letter-spacing: -0.5px;
}

.list {
  margin: 0;
  padding: 0 0 0 18px;
  line-height: 1.6;
  color: var(--ink-soft);
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer {
  background: var(--panel);
  padding: 24px 36px 30px;
  border-top: 2px solid var(--line);
}

.footer p {
  margin: 0 0 10px;
  color: var(--ink-soft);
}

.footer .subtle {
  font-size: 13px;
  opacity: 0.7;
}

.split {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: start;
}

.notice {
  background: rgba(255, 255, 255, 0.08);
  border-left: 4px solid var(--accent);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 14px;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  animation: rise 0.9s ease forwards;
}

.reveal.delay-1 {
  animation-delay: 0.15s;
}

.reveal.delay-2 {
  animation-delay: 0.3s;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 720px) {
  .header {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero h1 {
    font-size: 34px;
  }

  .brand span {
    font-size: 44px;
  }
}
