:root {
  --bg: #071019;
  --panel: #0d1924;
  --panel-2: #101f2d;
  --text: #eef2f5;
  --muted: #aab8c4;
  --blue: #55a8e8;
  --red: #d83a31;
  --line: rgba(255,255,255,.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: linear-gradient(180deg, #050b11 0%, var(--bg) 45%, #08121b 100%);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

.hero {
  width: 100%;
  background: #050a0f;
  border-bottom: 1px solid var(--line);
}
.hero img {
  display: block;
  width: min(100%, 1200px);
  height: auto;
  margin: 0 auto;
}

main {
  width: min(1120px, calc(100% - 36px));
  margin: -38px auto 0;
  position: relative;
}

.brand-card {
  display: grid;
  grid-template-columns: 145px 1fr;
  gap: 28px;
  align-items: center;
  padding: 24px 28px;
  background: rgba(13,25,36,.97);
  border: 1px solid var(--line);
  border-top: 3px solid var(--red);
  border-radius: 10px;
  box-shadow: 0 24px 60px rgba(0,0,0,.38);
}

.monogram {
  width: 128px;
  height: 128px;
  display: grid;
  place-items: center;
  border: 2px solid var(--blue);
  border-radius: 50%;
  color: var(--text);
  font-size: 25px;
  font-weight: 800;
  letter-spacing: 2px;
  background: radial-gradient(circle at 35% 30%, #18364d, #071019 70%);
}

.eyebrow, .card-kicker {
  margin: 0 0 5px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2.5px;
}

h1 {
  margin: 0;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1;
  letter-spacing: 1px;
}

.tagline {
  margin: 10px 0 10px;
  color: #dce5eb;
  font-size: 21px;
  font-weight: 600;
}

.intro {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.pills span {
  padding: 6px 11px;
  border: 1px solid rgba(85,168,232,.35);
  border-radius: 999px;
  color: #c9e7fb;
  font-size: 12px;
  letter-spacing: .6px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 22px;
}
.card {
  min-height: 165px;
  padding: 22px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}
.card h2 {
  margin: 7px 0 12px;
  font-size: 22px;
  line-height: 1.2;
}
.card p { margin: 0; color: var(--muted); }

.statement {
  margin: 18px 0 34px;
  padding: 26px 32px;
  border-left: 4px solid var(--red);
  background: linear-gradient(90deg, rgba(16,31,45,.9), rgba(13,25,36,.45));
}
.statement p {
  margin: 0;
  color: #dfe7ed;
  font-family: Georgia, serif;
  font-size: clamp(21px, 3vw, 29px);
  line-height: 1.4;
}

footer {
  display: flex;
  justify-content: space-between;
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 0 0 30px;
  color: #718391;
  font-size: 12px;
  letter-spacing: .8px;
}

@media (max-width: 760px) {
  .hero img { width: 100%; height: auto; }
  main { margin-top: -20px; }
  .brand-card { grid-template-columns: 1fr; padding: 24px; }
  .monogram { width: 88px; height: 88px; font-size: 18px; }
  .grid { grid-template-columns: 1fr; }
  .statement { padding: 26px; }
  footer { flex-direction: column; gap: 5px; }
}
