:root {
  --bg: #0f0b17;
  --panel: #181124;
  --panel-2: #211630;
  --text: #f7f2ff;
  --muted: #c6b8d8;
  --purple: #a970ff;
  --purple-2: #d3b4ff;
  --line: rgba(255,255,255,.12);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; background: var(--bg); color: var(--text); line-height: 1.65; }
a { color: var(--purple-2); text-decoration: none; }
a:hover { text-decoration: underline; }
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.narrow { max-width: 760px; }
.site-header { position: sticky; top: 0; z-index: 10; background: rgba(15,11,23,.9); backdrop-filter: blur(14px); border-bottom: 1px solid var(--line); }
.nav { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { color: #fff; font-weight: 800; letter-spacing: -.02em; font-size: 1.1rem; }
.brand span { color: var(--purple); }
nav { display: flex; gap: 24px; }
nav a { color: var(--muted); font-size: .95rem; }
.hero { padding: 110px 0 90px; background: radial-gradient(circle at 80% 10%, rgba(169,112,255,.20), transparent 34%); }
.hero-grid { display: grid; grid-template-columns: 1.5fr .8fr; gap: 64px; align-items: center; }
.eyebrow { color: var(--purple); font-weight: 750; text-transform: uppercase; letter-spacing: .12em; font-size: .78rem; }
h1 { font-size: clamp(2.7rem, 6vw, 5.3rem); line-height: 1.02; letter-spacing: -.055em; margin: 14px 0 24px; max-width: 900px; }
h2 { font-size: clamp(2rem, 4vw, 3rem); line-height: 1.12; letter-spacing: -.035em; margin: 10px 0 20px; }
h3 { font-size: 1.25rem; margin-top: 0; }
.lead { color: var(--muted); font-size: 1.18rem; max-width: 720px; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.button { display: inline-block; padding: 12px 18px; border-radius: 10px; font-weight: 750; }
.button:hover { text-decoration: none; transform: translateY(-1px); }
.primary { background: var(--purple); color: #120b1d; }
.secondary { border: 1px solid var(--line); color: var(--text); }
.card, .service-card { border: 1px solid var(--line); background: linear-gradient(145deg, var(--panel-2), var(--panel)); border-radius: 18px; padding: 28px; }
.card-kicker { color: var(--purple-2); font-weight: 700; }
.card p, .service-card p, .muted p, .contact p { color: var(--muted); }
.section { padding: 88px 0; }
.muted { background: var(--bg); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 36px; }
.contact { text-align: left; }
.contact-intro { max-width: 650px; margin-bottom: 32px; }
.contact-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; max-width: 980px; align-items: start; }
.contact-card { border: 1px solid var(--line); background: linear-gradient(145deg, var(--panel-2), var(--panel)); border-radius: 18px; padding: 28px; }
.contact-card h3 { margin-bottom: 14px; }
.contact-link { display: grid; grid-template-columns: 42px minmax(0, 1fr); align-items: center; gap: 14px; padding: 16px 0; border-top: 1px solid var(--line); }
.contact-link:first-of-type { border-top: 0; }
.contact-link:hover { text-decoration: none; }
.contact-icon { width: 40px; height: 40px; border: 1px solid var(--line); border-radius: 12px; display: grid; place-items: center; color: var(--purple-2); background: rgba(255,255,255,.025); flex: 0 0 auto; }
.contact-icon svg { width: 21px; height: 21px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.contact-link:nth-of-type(2) .contact-icon svg,
.contact-link:nth-of-type(3) .contact-icon svg { fill: currentColor; stroke: none; }
.x-icon { font-size: 1.45rem; font-weight: 800; line-height: 1; }
.contact-copy { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.contact-label { color: var(--muted); font-size: .82rem; }
.contact-copy strong { color: var(--purple-2); font-size: 1rem; overflow-wrap: anywhere; }
.contact-link:hover .contact-icon { border-color: rgba(211,180,255,.42); background: rgba(169,112,255,.08); }
.contact-link:hover .contact-copy strong { color: var(--text); }
footer { border-top: 1px solid var(--line); padding: 28px 0; color: var(--muted); font-size: .9rem; }
.footer-row { display: flex; justify-content: space-between; gap: 20px; }
.footer-row div { display: flex; gap: 18px; }
.legal { padding: 70px 0 100px; }
.legal h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
.legal h2 { font-size: 1.45rem; margin-top: 38px; }
.legal p, .legal li { color: var(--muted); }
.legal strong { color: var(--text); }
@media (max-width: 800px) {
  .hero-grid, .cards, .contact-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 72px; }
  nav { gap: 12px; }
  nav a:nth-child(1), nav a:nth-child(2) { display: none; }
  .footer-row { flex-direction: column; }
}
