:root {
  --ink: #0a0f1e;
  --slate: #4a5565;
  --slate-2: #6b7280;
  --line: #e5e7eb;
  --bg: #ffffff;
  --soft: #f7f8f9;
  --accent: #7c6cf5;
  --maxw: 1080px;
}
*,*::before,*::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Manrope', system-ui, sans-serif; color: var(--ink); background: var(--bg); -webkit-font-smoothing: antialiased; line-height: 1.6; }
a { color: inherit; text-decoration: none; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }

.nav { border-bottom: 1px solid var(--line); position: sticky; top: 0; background: rgba(255,255,255,0.92); backdrop-filter: blur(10px); z-index: 10; }
.nav-in { max-width: var(--maxw); margin: 0 auto; padding: 0 32px; height: 68px; display: flex; align-items: center; justify-content: space-between; }
.lockup { display: flex; align-items: center; gap: 10px; }
.lockup .mono { width: 26px; height: 26px; color: var(--ink); }
.lockup .wm { font-weight: 800; font-size: 18px; letter-spacing: -0.02em; }
.nav-cta { font-size: 14px; font-weight: 600; padding: 9px 18px; border: 1px solid var(--line); border-radius: 8px; }
.nav-cta:hover { border-color: var(--ink); }

.eyebrow { font-family: ui-monospace, 'SF Mono', Menlo, monospace; font-size: 12px; font-weight: 600; color: var(--accent); margin-bottom: 18px; }
h1 { font-size: clamp(34px, 5vw, 54px); font-weight: 800; letter-spacing: -0.03em; line-height: 1.04; }
h2 { font-size: clamp(26px, 3.2vw, 36px); font-weight: 800; letter-spacing: -0.02em; line-height: 1.12; }
.lead { font-size: 19px; color: var(--slate); line-height: 1.6; margin-top: 20px; max-width: 620px; }

.btn { display: inline-flex; align-items: center; gap: 9px; font-weight: 700; font-size: 15px; padding: 14px 26px; border-radius: 8px; background: var(--ink); color: #fff; transition: background 0.18s; }
.btn:hover { background: #1b2236; }

.hero { padding: 80px 0 64px; }
.hero .btn { margin-top: 34px; }

section { padding: 64px 0; border-top: 1px solid var(--line); }
section h2 + p { margin-top: 16px; color: var(--slate); font-size: 17px; max-width: 680px; }
.prose p { font-size: 17px; color: var(--slate); margin-top: 16px; max-width: 700px; }
.prose b { color: var(--ink); }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.card { border: 1px solid var(--line); border-radius: 12px; padding: 26px; }
.card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.card p { font-size: 14.5px; color: var(--slate); }

.cta-band { background: radial-gradient(ellipse 70% 90% at 50% -10%, rgba(124,108,245,0.18), transparent 58%), #0c0c0f; color: #fff; text-align: center; border: none; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #a9b2c2; margin: 14px auto 28px; max-width: 480px; font-size: 17px; }
.cta-band .btn { background: #fff; color: var(--ink); }
.cta-band .btn:hover { background: #eef0f2; }

footer { background: #0c0c0f; color: #8a93a6; padding: 48px 0; }
.foot-in { max-width: var(--maxw); margin: 0 auto; padding: 0 32px; display: flex; gap: 40px; flex-wrap: wrap; justify-content: space-between; }
footer a { color: #8a93a6; font-size: 14px; display: block; margin-bottom: 9px; }
footer a:hover { color: #fff; }
footer .wm { color: #fff; font-weight: 800; font-size: 16px; margin-bottom: 12px; }
.foot-col h5 { color: #fff; font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 14px; }

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