:root {
  --bg: #08090c;
  --bg-soft: #11131a;
  --bg-card: rgba(255, 255, 255, 0.06);
  --text: #f4f4f5;
  --muted: #a6a8b2;
  --muted-2: #777b89;
  --line: rgba(255, 255, 255, 0.12);
  --accent: #f7c948;
  --accent-soft: rgba(247, 201, 72, 0.12);
  --white: #ffffff;
  --radius: 24px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  --max-width: 1160px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(247, 201, 72, 0.14), transparent 34%),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.08), transparent 28%),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  width: min(100% - 40px, var(--max-width));
  margin: 0 auto;
}

.nav {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: min(calc(100% - 40px), var(--max-width));
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(8, 9, 12, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.22);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #090909;
  background: linear-gradient(135deg, #ffe57a, var(--accent));
  font-weight: 900;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  color: var(--muted);
}

.nav-links a {
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-cta {
  padding: 10px 16px;
  border-radius: 999px;
  color: #111;
  background: var(--accent);
  font-weight: 700;
}

.mobile-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--white);
  font-size: 24px;
  cursor: pointer;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 8px 12px;
  margin-bottom: 24px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
  font-size: 13px;
  font-weight: 600;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 24px rgba(247, 201, 72, 0.9);
}

.gradient-text {
  background: linear-gradient(135deg, #ffffff, #d6d7dc 45%, #f7c948);
  -webkit-background-clip: text;
  color: transparent;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--accent);
  color: #111;
  box-shadow: 0 18px 40px rgba(247, 201, 72, 0.18);
}

.button-secondary {
  border: 1px solid var(--line);
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
}

.button-secondary:hover {
  border-color: rgba(255, 255, 255, 0.28);
}

.footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  padding: 36px 0 54px;
  color: var(--muted-2);
  font-size: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-center {
  text-align: center;
}

.footer-right {
  text-align: right;
}

.footer a {
  transition: color 0.2s ease;
}

.footer a:hover {
  color: var(--white);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 720px) {
  .page {
    width: min(100% - 28px, var(--max-width));
  }

  .nav {
    width: min(calc(100% - 28px), var(--max-width));
    align-items: flex-start;
    border-radius: 24px;
  }

  .mobile-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(8, 9, 12, 0.96);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 13px 14px;
  }

  .nav-cta {
    text-align: center;
    margin-top: 8px;
  }

  .footer {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .footer-center,
  .footer-right {
    text-align: left;
  }
}
