@import url("https://fonts.googleapis.com/css2?family=Big+Shoulders+Display:wght@700;900&family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500;700&display=swap");

:root {
  --bg: #17181b;
  --bg-alt: #1f2126;
  --surface: #26282e;
  --surface-border: #34363d;
  --text: #f4f3ef;
  --text-muted: #a7a9b0;
  --accent: #f5821f;
  --accent-dark: #c9660f;
  --max-width: 1080px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

a {
  color: var(--accent);
}

h1, h2, h3 {
  font-family: "Big Shoulders Display", sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.05;
  margin: 0 0 0.4em;
}

.kicker {
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

/* Nav */
.site-nav {
  border-bottom: 1px solid var(--surface-border);
  background: rgba(23, 24, 27, 0.9);
  backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 10;
}

.site-nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
}

.brand img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: block;
}

.brand span {
  font-family: "Big Shoulders Display", sans-serif;
  font-weight: 900;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.site-nav nav {
  display: flex;
  gap: 28px;
  align-items: center;
}

.site-nav nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
}

.site-nav nav a:hover {
  color: var(--text);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--accent);
  color: #1a1200;
}

.btn-primary:hover {
  background: var(--accent-dark);
}

.btn-ghost {
  background: transparent;
  border-color: var(--surface-border);
  color: var(--text);
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* Hero */
.hero {
  padding: 88px 0 72px;
  text-align: center;
}

.hero h1 {
  font-size: clamp(40px, 7vw, 76px);
  margin: 18px 0 20px;
}

.hero h1 .accent {
  color: var(--accent);
}

.hero p.lead {
  max-width: 620px;
  margin: 0 auto 36px;
  color: var(--text-muted);
  font-size: 19px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-icon {
  width: 96px;
  height: 96px;
  border-radius: 22px;
  margin-bottom: 8px;
  box-shadow: 0 20px 60px -20px rgba(245, 130, 31, 0.5);
}

/* Sections */
section {
  padding: 64px 0;
}

section.alt {
  background: var(--bg-alt);
  border-top: 1px solid var(--surface-border);
  border-bottom: 1px solid var(--surface-border);
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.section-head h2 {
  font-size: clamp(28px, 4vw, 42px);
}

.section-head p {
  color: var(--text-muted);
  font-size: 17px;
}

/* Feature grid */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 860px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .grid {
    grid-template-columns: 1fr;
  }
}

.card {
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: 16px;
  padding: 28px;
}

.card .emoji {
  font-size: 28px;
  display: inline-block;
  margin-bottom: 14px;
}

.card h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.card p {
  color: var(--text-muted);
  font-size: 15px;
  margin: 0;
}

/* CTA band */
.cta-band {
  text-align: center;
}

.cta-band h2 {
  font-size: clamp(28px, 4vw, 44px);
}

.cta-band p {
  color: var(--text-muted);
  margin-bottom: 32px;
}

/* Footer */
footer {
  border-top: 1px solid var(--surface-border);
  padding: 40px 0;
}

footer .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

footer .foot-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

footer a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
}

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

footer .copy {
  color: var(--text-muted);
  font-size: 14px;
}

/* Legal pages */
.legal {
  padding: 56px 0 96px;
}

.legal .wrap {
  max-width: 760px;
}

.legal h1 {
  font-size: clamp(32px, 5vw, 48px);
  margin-bottom: 8px;
}

.legal .updated {
  color: var(--text-muted);
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
  margin-bottom: 40px;
  display: block;
}

.legal h2 {
  font-size: 22px;
  margin-top: 44px;
  text-transform: none;
  letter-spacing: 0;
}

.legal h3 {
  font-size: 17px;
  text-transform: none;
  letter-spacing: 0;
  margin-top: 24px;
}

.legal p,
.legal li {
  color: var(--text-muted);
  font-size: 16px;
}

.legal ul {
  padding-left: 22px;
}

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

.legal a {
  color: var(--accent);
}

.callout {
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-left: 3px solid var(--accent);
  border-radius: 8px;
  padding: 18px 20px;
  margin: 28px 0;
}

.callout p {
  margin: 0;
  color: var(--text);
  font-size: 15px;
}
