:root {
  --bg: #05070a;
  --panel: #0d1117;
  --panel2: #111927;
  --text: #f3f6fb;
  --muted: #c6ced9;
  --blue: #5f8dbd;
  --line: rgba(255,255,255,.16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
}

a { color: inherit; }
.hero {
  min-height: 90vh;
  background:
    linear-gradient(90deg, rgba(5,7,10,.95), rgba(5,7,10,.76), rgba(5,7,10,.92)),
    radial-gradient(circle at 70% 20%, rgba(95,141,189,.28), transparent 30%),
    #05070a;
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px clamp(18px, 5vw, 70px);
}

.brand { display: flex; align-items: center; gap: 14px; }
.brand span { display: block; color: var(--blue); font-style: italic; }
.brand-logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.78);
  background: #05070a;
}

.nav-cta, .button {
  text-decoration: none;
  border: 1px solid var(--blue);
  padding: 12px 18px;
  border-radius: 4px;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: .08em;
}

.hero-content {
  max-width: 860px;
  padding: 95px clamp(18px, 5vw, 70px) 120px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--muted);
  font-weight: 800;
}

.blue { color: var(--blue); }

h1 {
  font-size: clamp(46px, 9vw, 108px);
  line-height: .92;
  margin: 12px 0 22px;
  text-transform: uppercase;
}

h2 {
  font-size: clamp(30px, 5vw, 56px);
  line-height: 1;
  margin: 0 0 16px;
  text-transform: uppercase;
}

h3 { text-transform: uppercase; font-size: 24px; margin: 0 0 12px; }
.lead { color: var(--muted); font-size: 21px; max-width: 720px; }

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }
.primary { background: var(--blue); color: #07101a; }
.secondary { background: transparent; color: var(--text); }
.big { display: inline-block; margin-top: 20px; }

.section {
  padding: 70px clamp(18px, 5vw, 70px);
  border-bottom: 1px solid var(--line);
}

.intro {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 34px;
  align-items: center;
}

.feature-grid, .why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.feature-grid div, .why-grid div {
  border: 1px solid var(--line);
  padding: 20px;
  background: linear-gradient(135deg, var(--panel), #080a0e);
  text-transform: uppercase;
  font-weight: 800;
}

.cards {
  display: grid;
  gap: 20px;
  margin-top: 28px;
}

.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.card {
  position: relative;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--panel), #06080c);
  padding: 28px;
  min-height: 280px;
  box-shadow: 0 18px 50px rgba(0,0,0,.22);
}

.card.featured { border-color: var(--blue); box-shadow: 0 0 0 1px rgba(95,141,189,.35), 0 22px 70px rgba(95,141,189,.12); }

.badge {
  position: absolute;
  top: -14px;
  left: 28px;
  background: var(--blue);
  color: #07101a;
  padding: 6px 12px;
  text-transform: uppercase;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: .1em;
}

.price {
  color: var(--blue);
  font-size: 44px;
  font-weight: 900;
  margin: 10px 0 12px;
}

.price span { font-size: 18px; color: var(--muted); }
.tag, .sub { color: var(--muted); text-transform: uppercase; letter-spacing: .06em; }
li { margin-bottom: 8px; color: var(--muted); }

.contact {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 30px;
  align-items: start;
  background: linear-gradient(135deg, #09111c, #05070a);
}

.contact-card {
  border: 1px solid var(--line);
  background: var(--panel);
  padding: 28px;
}

.profile {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.profile h3 { margin-bottom: 8px; }
.profile p { margin-top: 0; color: var(--muted); }
.profile .eyebrow { margin-bottom: 6px; font-size: 12px; }

.headshot {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: 50% 28%;
  border: 1px solid var(--line);
  background: #05070a;
  margin-bottom: 20px;
}

footer {
  padding: 28px clamp(18px, 5vw, 70px);
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .1em;
}

@media (max-width: 850px) {
  .intro, .contact, .three { grid-template-columns: 1fr; }
  .nav { align-items: flex-start; gap: 18px; flex-direction: column; }
  footer { flex-direction: column; }
}

@media (max-width: 520px) {
  .headshot { width: 100%; }
}
