:root {
  --bg: #0b1220;
  --bg-2: #111c30;
  --panel: rgba(17, 28, 48, 0.8);
  --panel-2: rgba(255,255,255,0.05);
  --line: rgba(255,255,255,0.1);
  --text: #edf3ff;
  --muted: #9fb0c7;
  --blue: #5cb3ff;
  --cyan: #4de1d6;
  --violet: #8f8dff;
  --green: #78dca0;
  --shadow: 0 24px 80px rgba(0,0,0,0.35);
  --radius: 24px;
  --max: 1180px;
}
* { 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);
  background:
    radial-gradient(circle at top left, rgba(92,179,255,0.16), transparent 30%),
    radial-gradient(circle at top right, rgba(143,141,255,0.16), transparent 26%),
    linear-gradient(180deg, #09111d 0%, #0f1728 45%, #0a1220 100%);
  line-height: 1.65;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
h1,h2,h3,h4 { margin: 0 0 1rem; line-height: 1.05; }
h1,h2 { font-family: Space Grotesk, Inter, sans-serif; letter-spacing: -0.04em; }
h1 { font-size: clamp(3rem, 8vw, 5.8rem); }
h2 { font-size: clamp(2rem, 5vw, 3.5rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.7rem); }
p { margin: 0 0 1rem; color: var(--muted); }
.container { width: min(var(--max), calc(100% - 2rem)); margin: 0 auto; }
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(7, 12, 22, 0.7);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.brand-mark { font-size: 0.8rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--cyan); font-weight: 700; }
.brand-name { font-size: 1.15rem; font-weight: 800; }
.brand { display: flex; flex-direction: column; gap: 0.1rem; }
.nav { display: flex; gap: 1.2rem; align-items: center; flex-wrap: wrap; }
.nav a { color: var(--muted); font-weight: 600; }
.nav a:hover { color: var(--text); }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.95rem 1.35rem; border-radius: 999px; font-weight: 700; border: 1px solid transparent; transition: 180ms ease;
}
.btn-primary { background: linear-gradient(135deg, var(--blue), var(--violet)); color: white; box-shadow: var(--shadow); }
.btn-secondary { border-color: rgba(255,255,255,0.15); color: var(--text); background: rgba(255,255,255,0.02); }
.btn:hover { transform: translateY(-2px); }
.hero { padding: 4.5rem 0 3rem; }
.hero-grid { display: grid; grid-template-columns: 1.08fr 0.92fr; gap: 2rem; align-items: center; }
.eyebrow {
  display: inline-flex; padding: 0.45rem 0.85rem; border-radius: 999px; background: rgba(77,225,214,0.12);
  color: var(--cyan); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.14em; font-weight: 700; margin-bottom: 1.2rem;
}
.lead { font-size: 1.14rem; color: #c8d5e7; max-width: 62ch; }
.hero-actions, .badge-row { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-top: 1.4rem; }
.badge {
  padding: 0.55rem 0.8rem; border-radius: 999px; background: rgba(255,255,255,0.05); color: var(--text); font-size: 0.92rem; border: 1px solid rgba(255,255,255,0.08);
}
.panel {
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.08); border-radius: 28px; box-shadow: var(--shadow);
}
.hero-photo-wrap { padding: 1rem; position: relative; }
.hero-photo { border-radius: 22px; width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.floating {
  position: absolute; right: -1rem; bottom: 2rem; max-width: 240px; padding: 1rem;
  background: rgba(9,18,32,0.9); border-radius: 18px; border: 1px solid rgba(255,255,255,0.1); box-shadow: var(--shadow);
}
.floating strong { display: block; color: white; margin-bottom: 0.35rem; }
.section { padding: 4rem 0; }
.section.alt { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,0.02); }
.section-head { max-width: 760px; margin-bottom: 2rem; }
.scope-section { padding-top: 0.5rem; }
.proof-strip {
  padding: 1.6rem;
  display: grid;
  gap: 1.5rem;
}
.proof-strip h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 0;
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.proof-grid article {
  padding: 1rem 1.05rem;
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}
.proof-grid strong {
  display: block;
  color: #f5f8ff;
  margin-bottom: 0.35rem;
}
.proof-grid span {
  color: #c8d5e7;
}
.grid-2, .grid-3, .cards { display: grid; gap: 1.3rem; }
.grid-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.grid-3, .cards { grid-template-columns: repeat(3, minmax(0,1fr)); }
.card {
  padding: 1.45rem; border-radius: var(--radius); background: var(--panel); border: 1px solid rgba(255,255,255,0.08); box-shadow: var(--shadow);
}
.kicker { color: var(--cyan); font-size: 0.8rem; font-weight: 800; letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 0.55rem; }
.timeline { display: grid; gap: 1rem; }
.role { position: relative; padding-left: 1.3rem; }
.role::before {
  content: ''; position: absolute; left: 0; top: 0.7rem; width: 8px; height: 8px; border-radius: 50%; background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 0 0 6px rgba(92,179,255,0.12);
}
.role-head { margin-bottom: 0.85rem; }
.role-head h3 { margin-bottom: 0.35rem; font-size: clamp(1.2rem, 1.8vw, 1.5rem); color: #f5f8ff; }
.role .meta { color: #d7e3f5; font-weight: 700; margin-bottom: 0.2rem; }
.role-submeta { color: var(--cyan); font-size: 0.92rem; font-weight: 700; letter-spacing: 0.01em; }
.skill-grid { display: flex; flex-wrap: wrap; gap: 0.7rem; }
.skill { padding: 0.62rem 0.85rem; border-radius: 12px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); color: #dce8f8; }
.split { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 2rem; align-items: start; }
.quote {
  font-size: 1.05rem; color: #d6e3f4; padding: 1.5rem; border-left: 4px solid var(--cyan); background: rgba(255,255,255,0.04); border-radius: 18px;
}
.cta-band {
  padding: 2rem; border-radius: 30px; background: linear-gradient(135deg, #10223d, #172b4f 55%, #10354b);
  border: 1px solid rgba(255,255,255,0.08); box-shadow: var(--shadow);
}
.cta-points {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
  color: #d7e3f5;
}
.cta-points li { margin: 0.45rem 0; }
.footer { padding: 2rem 0 3rem; border-top: 1px solid var(--line); color: var(--muted); }
.footer-grid { display: grid; grid-template-columns: 1fr auto; gap: 1rem; align-items: center; }
.notice { border-left: 4px solid var(--green); padding: 1rem 1.1rem; border-radius: 14px; background: rgba(120,220,160,0.08); }
:focus-visible { outline: 3px solid rgba(92,179,255,0.55); outline-offset: 3px; }
@media (max-width: 960px) {
  .header-inner {
    min-height: auto;
    padding: 0.95rem 0;
    flex-direction: column;
    align-items: flex-start;
  }
  .nav {
    width: 100%;
    gap: 0.65rem;
  }
  .hero-grid, .grid-2, .grid-3, .cards, .split, .footer-grid, .proof-grid { grid-template-columns: 1fr; }
  .floating { position: static; margin-top: 1rem; max-width: none; }
}
@media (max-width: 640px) {
  .nav a {
    width: calc(50% - 0.35rem);
    text-align: center;
    padding: 0.72rem 0.9rem;
    border-radius: 14px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
  }
  .nav a.btn {
    width: 100%;
  }
  .btn { width: 100%; }
  .hero-actions { flex-direction: column; }
}
