:root {
  color-scheme: dark;
  --bg: #090b0a;
  --surface: #111411;
  --surface-high: #181d18;
  --text: #f4f6ef;
  --muted: #aeb7aa;
  --line: rgba(255, 255, 255, 0.12);
  --lime: #ccff00;
  --gold: #f6c453;
  --danger: #ffb4ab;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 10% 0%, rgba(204, 255, 0, 0.13), transparent 32rem),
    linear-gradient(180deg, #090b0a 0%, #0d100d 100%);
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.6;
}

a {
  color: var(--lime);
  text-underline-offset: 0.18em;
}

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

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-weight: 800;
  letter-spacing: 0;
  text-decoration: none;
}

.brand img {
  width: 40px;
  height: 40px;
  border-radius: 12px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.95rem;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
  gap: 48px;
  align-items: center;
  padding: 56px 0 72px;
}

.eyebrow {
  color: var(--lime);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  max-width: 720px;
  margin-top: 14px;
  font-size: clamp(3rem, 8vw, 6.5rem);
}

h2 {
  margin-top: 48px;
  font-size: clamp(1.65rem, 4vw, 2.5rem);
}

h3 {
  margin-top: 28px;
  font-size: 1.15rem;
}

p {
  margin: 14px 0 0;
  color: var(--muted);
}

.lead {
  max-width: 640px;
  font-size: 1.14rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 18px;
  background: var(--surface-high);
  color: var(--text);
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  border-color: var(--lime);
  background: var(--lime);
  color: #050604;
}

.phone-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(17, 20, 17, 0.78);
  padding: 22px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
}

.metric {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
}

.metric:last-child {
  border-bottom: 0;
}

.metric strong {
  color: var(--text);
}

.sections {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding-bottom: 80px;
}

.section-card {
  min-height: 180px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(17, 20, 17, 0.7);
  padding: 22px;
}

.legal {
  max-width: 820px;
  padding: 48px 0 80px;
}

.legal h1 {
  font-size: clamp(2.4rem, 6vw, 4.75rem);
}

.legal ul,
.legal ol {
  margin: 14px 0 0;
  padding-left: 22px;
  color: var(--muted);
}

.legal li + li {
  margin-top: 8px;
}

.note {
  border-left: 3px solid var(--lime);
  margin-top: 24px;
  padding: 16px 18px;
  background: rgba(204, 255, 0, 0.08);
  color: var(--text);
}

.footer {
  border-top: 1px solid var(--line);
  padding: 28px 0 40px;
  color: var(--muted);
  font-size: 0.92rem;
}

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

  .hero,
  .sections {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 28px;
  }
}
