:root {
  --bg: #090909;
  --bg-2: #111111;
  --card: #141414;
  --line: #252525;
  --text: #f5f5f5;
  --muted: #a8a8a8;
  --dim: #7a7a7a;
  --cyan: #66e0e5;
  --ink: #090909;
  --max: 1120px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--cyan); text-decoration: none; }
a:hover { text-decoration: underline; }

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

nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(9, 9, 9, 0.86);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-family: Outfit, sans-serif;
  font-weight: 700;
  font-size: 18px;
  text-decoration: none;
}
.brand img { width: 36px; height: 36px; border-radius: 9px; }
.nav-links { display: flex; gap: 22px; align-items: center; }
.nav-links a { color: var(--muted); font-size: 14px; font-weight: 600; text-decoration: none; }
.nav-links a:hover { color: var(--text); }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--cyan);
  color: var(--ink);
  font-family: Outfit, sans-serif;
  font-weight: 700;
  border-radius: 999px;
  padding: 12px 22px;
  text-decoration: none;
  border: 0;
}
.btn:hover { filter: brightness(1.06); text-decoration: none; }
.btn-ghost {
  background: transparent;
  color: var(--cyan);
  border: 1px solid rgba(102, 224, 229, 0.35);
}

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

.frame-band {
  margin: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.frame-band.dark { background: var(--bg); }
.frame-band.cyan { background: var(--cyan); }
.frame {
  width: min(100%, 480px);
  height: auto;
  display: block;
}
.frame-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 8px 0 40px;
}

h1, h2 {
  font-family: Outfit, sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 0.95;
  letter-spacing: -0.03em;
}
h2 em {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 700;
  display: block;
}
.sub {
  margin-top: 14px;
  color: var(--muted);
  font-size: 17px;
  max-width: 38ch;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
}
.card h3 {
  font-family: Outfit, sans-serif;
  font-size: 18px;
  margin-bottom: 8px;
}
.card p { color: var(--muted); font-size: 14px; }

.legal {
  padding: 72px 0 96px;
  max-width: 760px;
}
.legal h1 {
  color: var(--text);
  font-size: 42px;
  margin-bottom: 12px;
}
.legal .meta { color: var(--dim); margin-bottom: 32px; font-size: 14px; }
.legal h2 { font-size: 22px; margin: 28px 0 10px; }
.legal p, .legal li { color: var(--muted); margin-bottom: 12px; }
.legal ul { padding-left: 20px; }

footer {
  border-top: 1px solid var(--line);
  padding: 28px 0 40px;
  color: var(--dim);
  font-size: 13px;
}
.foot {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.foot nav { position: static; background: none; border: 0; display: flex; gap: 16px; }
.note { font-size: 12px; color: var(--dim); margin-top: 16px; max-width: 70ch; }

@media (max-width: 860px) {
  .grid-3 { grid-template-columns: 1fr; }
  .frame { width: 100%; }
  .nav-links a:not(.btn) { display: none; }
}
