:root {
  /* Steel / black / white */
  --bg0: #050505;
  --bg1: #0b0b0c;
  --bg2: #121214;
  --ink: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.70);
  --panel: rgba(255, 255, 255, 0.06);
  --panel-2: rgba(255, 255, 255, 0.11);
  --border: rgba(255, 255, 255, 0.16);
  --shine: rgba(255, 255, 255, 0.55);
  --shadow: 0 18px 70px rgba(0, 0, 0, 0.62);
  --radius: 18px;
  --max: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji",
    "Segoe UI Emoji";
  color: var(--ink);
  background:
    radial-gradient(850px 520px at 15% 5%, rgba(255, 255, 255, 0.10), transparent 60%),
    radial-gradient(850px 520px at 90% 10%, rgba(255, 255, 255, 0.06), transparent 60%),
    radial-gradient(900px 520px at 50% 115%, rgba(255, 255, 255, 0.06), transparent 55%),
    linear-gradient(180deg, var(--bg0) 0%, var(--bg1) 50%, var(--bg2) 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

.nowrap {
  white-space: nowrap;
}

.container {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(12px);
  background: rgba(5, 5, 5, 0.72);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.brand-mark {
  width: 36px;
  height: 36px;
  display: inline-grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.06));
  border: 1px solid var(--border);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.brand-sigil {
  width: 22px;
  height: 22px;
  display: block;
  fill: rgba(255, 255, 255, 0.92);
}

.brand-text {
  white-space: nowrap;
  display: inline-flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-sub {
  display: block;
  margin-top: 2px;
  font-size: 11px;
  font-weight: 650;
  color: rgba(255, 255, 255, 0.62);
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav a {
  padding: 8px 10px;
  border-radius: 10px;
  color: var(--muted);
}

.nav a:hover {
  background: var(--panel);
  color: var(--ink);
}

.hero {
  padding: 58px 0 26px;
  position: relative;
  overflow: clip;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 24px;
  align-items: start;
  position: relative;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.tag {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 999px;
  padding: 8px 10px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.kicker {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.64);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 12px;
}

.hero-copy h1 {
  margin: 0 0 10px;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.04;
  letter-spacing: -0.02em;
}

.accent {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.95));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
  max-width: 60ch;
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 10px 0 14px;
}

.btn {
  appearance: none;
  border: 1px solid var(--border);
  background: var(--panel);
  color: var(--ink);
  padding: 10px 14px;
  border-radius: 12px;
  font-weight: 600;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  cursor: pointer;
  transition: transform 120ms ease, background 120ms ease, box-shadow 120ms ease;
}

.btn:hover {
  background: var(--panel-2);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.btn.primary {
  border-color: rgba(255, 255, 255, 0.28);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.06));
}

.hero-art {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.035);
  border-radius: var(--radius);
  padding: 14px;
  box-shadow: var(--shadow);
  position: relative;
}

.hero-art::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: calc(var(--radius) + 2px);
  background: radial-gradient(220px 120px at 20% 0%, rgba(255, 255, 255, 0.16), transparent 70%),
    radial-gradient(220px 120px at 80% 15%, rgba(255, 255, 255, 0.10), transparent 70%);
  pointer-events: none;
}

.silhouette {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
}

.silhouette--secondary {
  margin-top: 14px;
  opacity: 0.92;
}

.silhouette-frame {
  fill: rgba(255, 255, 255, 0.02);
  stroke: rgba(255, 255, 255, 0.14);
  stroke-width: 2;
}

.silhouette-line {
  fill: none;
  stroke: rgba(255, 255, 255, 0.86);
  stroke-width: 4.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.silhouette-fill {
  fill: rgba(0, 0, 0, 0.62);
  stroke: rgba(255, 255, 255, 0.82);
  stroke-width: 4.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.6));
}

.silhouette-line.thin {
  stroke-width: 3.2;
  opacity: 0.8;
}

.silhouette-line.faint {
  opacity: 0.35;
  stroke-width: 3;
}

.art-caption {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  position: relative;
}

.micro {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}

.micro-strong {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.78);
}

.section {
  padding: 34px 0;
}

.section h2 {
  margin: 0 0 14px;
  font-size: 24px;
  letter-spacing: -0.01em;
}

.section-muted {
  background: rgba(255, 255, 255, 0.03);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-lead {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 80ch;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.card {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.055);
  border-radius: var(--radius);
  padding: 16px;
}

.card h3 {
  margin: 0 0 8px;
  font-size: 16px;
}

.card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.step {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.045);
  border-radius: var(--radius);
  padding: 16px;
}

.step-num {
  font-weight: 800;
  letter-spacing: 0.18em;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.62);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.step h3 {
  margin: 0 0 8px;
  font-size: 16px;
}

.step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

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

.bullet {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  padding: 14px 14px;
  color: rgba(255, 255, 255, 0.80);
  line-height: 1.55;
}

.contact-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.cta-panel {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow);
}

.cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

a[aria-disabled="true"] {
  pointer-events: none;
  opacity: 0.6;
}

.fineprint {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  line-height: 1.5;
}

.site-footer {
  padding: 26px 0 50px;
}

.footer-inner {
  border-top: 1px solid var(--border);
  padding-top: 18px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

@media (prefers-reduced-motion: reduce) {
  .btn {
    transition: none;
  }
}

@media (max-width: 880px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .grid {
    grid-template-columns: 1fr;
  }
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .bullets {
    grid-template-columns: 1fr;
  }
}


