:root {
  --bg: #070915;
  --bg-2: #0c1024;
  --panel: rgba(255,255,255,.08);
  --panel-strong: rgba(255,255,255,.13);
  --text: #fbfdff;
  --muted: #c6cee0;
  --line: rgba(255,255,255,.16);
  --cyan: #22d3ee;
  --blue: #60a5fa;
  --violet: #a78bfa;
  --pink: #f472b6;
  --orange: #fb923c;
  --lime: #a3e635;
  --radius: 28px;
  --shadow: 0 30px 90px rgba(0,0,0,.38);
}
* { 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;
  color: var(--text);
  line-height: 1.6;
  background:
    radial-gradient(circle at 12% 8%, rgba(34,211,238,.34), transparent 28%),
    radial-gradient(circle at 86% 12%, rgba(244,114,182,.30), transparent 26%),
    radial-gradient(circle at 52% 54%, rgba(167,139,250,.22), transparent 34%),
    radial-gradient(circle at 14% 92%, rgba(251,146,60,.20), transparent 28%),
    linear-gradient(145deg, var(--bg), var(--bg-2) 46%, #12091f);
  min-height: 100vh;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.8), transparent 78%);
}
a { color: inherit; text-decoration: none; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(18px, 5vw, 72px);
  backdrop-filter: blur(20px);
  background: rgba(7,9,21,.72);
  border-bottom: 1px solid var(--line);
}
.brand { display: inline-flex; gap: 10px; align-items: center; font-weight: 900; letter-spacing: -.035em; }
.brand-mark {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border-radius: 12px;
  color: #07111f;
  background: linear-gradient(135deg, var(--cyan), var(--pink) 48%, var(--orange));
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  box-shadow: 0 0 34px rgba(34,211,238,.32);
}
.main-nav { display: flex; align-items: center; gap: 22px; color: var(--muted); font-size: 15px; }
.main-nav a:hover { color: var(--text); }
.nav-cta {
  padding: 9px 14px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  color: var(--text) !important;
  background: linear-gradient(135deg, rgba(34,211,238,.16), rgba(244,114,182,.16));
}
.nav-toggle { display: none; }
.section-pad { padding: 90px clamp(18px, 5vw, 72px); }
.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, .86fr);
  align-items: center;
  gap: 48px;
  min-height: 690px;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  right: clamp(20px, 8vw, 120px);
  top: 115px;
  width: 280px;
  height: 280px;
  border-radius: 40% 60% 54% 46%;
  background: linear-gradient(135deg, rgba(34,211,238,.48), rgba(167,139,250,.42), rgba(244,114,182,.42));
  filter: blur(4px);
  opacity: .32;
  z-index: -1;
}
.eyebrow {
  display: inline-flex;
  width: fit-content;
  color: #06111f;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 12px;
  font-weight: 900;
  margin: 0 0 16px;
  padding: 7px 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--cyan), var(--lime));
}
h1, h2, h3 { line-height: 1.05; letter-spacing: -.057em; margin: 0; }
h1 { font-size: clamp(44px, 7vw, 92px); max-width: 1000px; }
h1, h2 {
  background: linear-gradient(120deg, #fff 0%, #dff7ff 28%, #f8d7ff 56%, #ffe0c2 86%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
h3 { font-size: 24px; margin-bottom: 14px; }
p { color: var(--muted); }
.lead { font-size: clamp(19px, 2.1vw, 25px); max-width: 760px; margin: 28px 0 0; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 900;
  border: 1px solid var(--line);
  transition: transform .18s ease, box-shadow .18s ease;
}
.button:hover { transform: translateY(-2px); }
.primary {
  background: linear-gradient(135deg, var(--cyan), var(--blue) 36%, var(--pink) 74%, var(--orange));
  color: #06111f;
  border: 0;
  box-shadow: 0 18px 42px rgba(96,165,250,.30), 0 0 42px rgba(244,114,182,.18);
}
.ghost { color: var(--text); background: rgba(255,255,255,.06); }
.hero-card {
  position: relative;
  border: 1px solid rgba(255,255,255,.20);
  background: linear-gradient(180deg, rgba(255,255,255,.14), rgba(255,255,255,.055));
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transform: rotate(1deg);
}
.hero-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, rgba(34,211,238,.35), transparent 33%, rgba(244,114,182,.34), transparent 70%, rgba(251,146,60,.28));
  pointer-events: none;
}
.terminal-bar { position: relative; display: flex; gap: 8px; padding: 16px; border-bottom: 1px solid var(--line); background: rgba(255,255,255,.055); }
.terminal-bar span { width: 12px; height: 12px; border-radius: 50%; background: var(--cyan); box-shadow: 20px 0 0 var(--pink), 40px 0 0 var(--orange); }
.terminal-bar span:nth-child(2), .terminal-bar span:nth-child(3) { display: none; }
pre { position: relative; margin: 0; padding: 30px; overflow: auto; }
code { color: #e7ffb8; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 15px; }
.section-heading { display: flex; justify-content: space-between; gap: 30px; align-items: end; margin-bottom: 34px; }
.grid { display: grid; gap: 22px; }
.three { grid-template-columns: repeat(3, 1fr); }
.tile, .profile-card, .contact-form {
  border: 1px solid rgba(255,255,255,.18);
  background: linear-gradient(180deg, rgba(255,255,255,.105), rgba(255,255,255,.045));
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: 0 18px 50px rgba(0,0,0,.16);
}
.tile { position: relative; overflow: hidden; }
.tile::after {
  content: "";
  position: absolute;
  inset: auto -20% -45% 25%;
  height: 150px;
  background: radial-gradient(circle, rgba(34,211,238,.30), transparent 68%);
}
.tile.featured { background: linear-gradient(135deg, rgba(34,211,238,.22), rgba(167,139,250,.19) 45%, rgba(244,114,182,.17)); }
.tile:nth-child(3)::after { background: radial-gradient(circle, rgba(251,146,60,.26), transparent 68%); }
.split { display: grid; grid-template-columns: .9fr 1.1fr; gap: 54px; align-items: start; }
.dark-panel {
  margin: 0 clamp(18px, 5vw, 72px);
  padding-left: clamp(24px, 5vw, 58px);
  padding-right: clamp(24px, 5vw, 58px);
  border-radius: 36px;
  background:
    radial-gradient(circle at 16% 18%, rgba(34,211,238,.24), transparent 32%),
    radial-gradient(circle at 88% 92%, rgba(244,114,182,.23), transparent 32%),
    linear-gradient(135deg, rgba(16,24,39,.82), rgba(24,16,42,.86));
  border: 1px solid rgba(255,255,255,.20);
  box-shadow: var(--shadow);
}
.check-list { display: grid; gap: 18px; }
.check-list p {
  margin: 0;
  padding: 18px 18px 18px 22px;
  border-left: 4px solid transparent;
  border-image: linear-gradient(to bottom, var(--cyan), var(--pink), var(--orange)) 1;
  background: rgba(255,255,255,.055);
  border-radius: 0 18px 18px 0;
}
.stack-cloud { display: flex; flex-wrap: wrap; gap: 12px; }
.stack-cloud span {
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: linear-gradient(135deg, rgba(34,211,238,.14), rgba(167,139,250,.14), rgba(244,114,182,.12));
  color: var(--text);
  box-shadow: 0 12px 30px rgba(0,0,0,.10);
}
.stack-cloud span:nth-child(3n+2) { background: linear-gradient(135deg, rgba(244,114,182,.16), rgba(251,146,60,.14)); }
.stack-cloud span:nth-child(3n+3) { background: linear-gradient(135deg, rgba(163,230,53,.14), rgba(34,211,238,.14)); }
.profile { display: grid; grid-template-columns: minmax(280px, 820px); justify-content: center; }
.profile-card { background: linear-gradient(135deg, rgba(255,255,255,.11), rgba(34,211,238,.08), rgba(244,114,182,.08)); }
.contact { display: grid; grid-template-columns: .9fr 1.1fr; gap: 48px; align-items: start; }
.contact-form { display: grid; gap: 16px; background: linear-gradient(160deg, rgba(255,255,255,.12), rgba(96,165,250,.07), rgba(251,146,60,.06)); }
label { display: grid; gap: 8px; color: var(--text); font-weight: 800; }
input, textarea { width: 100%; border: 1px solid rgba(255,255,255,.18); border-radius: 16px; background: rgba(0,0,0,.26); color: var(--text); padding: 13px 14px; font: inherit; }
input:focus, textarea:focus { outline: 2px solid rgba(34,211,238,.55); border-color: transparent; }
textarea { resize: vertical; }
.site-footer { display: flex; flex-wrap: wrap; gap: 18px; justify-content: center; padding: 34px 18px; border-top: 1px solid var(--line); color: var(--muted); background: rgba(7,9,21,.35); }
@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; background: transparent; color: var(--text); border: 1px solid var(--line); border-radius: 999px; padding: 9px 14px; }
  .main-nav { display: none; position: absolute; inset: 68px 18px auto; flex-direction: column; align-items: stretch; padding: 18px; border: 1px solid var(--line); border-radius: 20px; background: #0b1020; }
  .menu-open .main-nav { display: flex; }
  .hero, .three, .split, .contact { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero::after { display: none; }
  .section-heading { display: block; }
}

.legal-page {
  max-width: 900px;
  margin: 0 auto;
}
.legal-page h1 { margin-bottom: 34px; }
.legal-page h2 {
  margin-top: 34px;
  margin-bottom: 12px;
  font-size: clamp(24px, 3vw, 34px);
}
.legal-page a:not(.button) {
  color: var(--cyan);
  text-decoration: underline;
  text-underline-offset: 4px;
}
