:root {
  color-scheme: dark;
  --navy-950: #08111f;
  --navy-900: #0b1628;
  --navy-800: #10233d;
  --navy-700: #173454;
  --ink: #f7f5ef;
  --muted: #c9d0d8;
  --soft: #e8e1d1;
  --gold: #d6a84f;
  --gold-soft: #f0d59a;
  --line: rgba(240, 213, 154, 0.24);
  --panel: rgba(255, 255, 255, 0.055);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  font-family: Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(214, 168, 79, 0.18), transparent 34rem),
    radial-gradient(circle at 85% 15%, rgba(50, 89, 137, 0.28), transparent 30rem),
    linear-gradient(135deg, var(--navy-950) 0%, var(--navy-900) 52%, #050b14 100%);
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.62;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0;
  backdrop-filter: blur(18px);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.brand-mark__sigil {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--gold-soft);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 0 20px rgba(214, 168, 79, 0.1);
}

.brand-mark strong,
.brand-mark small {
  display: block;
}

.brand-mark strong {
  font-size: 0.98rem;
  letter-spacing: 0.03em;
}

.brand-mark small,
.site-nav a,
.eyebrow {
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.brand-mark small {
  color: var(--muted);
  font-size: 0.74rem;
}

.site-nav {
  display: flex;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.86rem;
}

.site-nav a {
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--gold-soft);
}

.section-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 84px 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  align-items: center;
  gap: clamp(2rem, 7vw, 5rem);
  min-height: calc(100vh - 80px);
  padding-top: 48px;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--gold-soft);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

h1 {
  max-width: 780px;
  font-size: clamp(4rem, 11vw, 8.6rem);
}

h2 {
  color: var(--soft);
  font-size: clamp(2rem, 4.8vw, 4.6rem);
}

p {
  color: var(--muted);
  font-size: 1.06rem;
}

.hero__lede {
  max-width: 760px;
  margin: 1.4rem 0 0;
  color: var(--ink);
  font-size: clamp(1.45rem, 3vw, 2.45rem);
  line-height: 1.18;
}

.hero__summary {
  max-width: 620px;
  margin: 1.2rem 0 0;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.75rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 700;
  text-decoration: none;
}

.button--primary {
  color: #14100a;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  border-color: transparent;
}

.button--ghost {
  color: var(--soft);
  background: rgba(255, 255, 255, 0.06);
}

.command-card {
  padding: 1.1rem;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035));
  box-shadow: var(--shadow);
}

.command-card__label {
  margin: 0 0 0.8rem;
  color: var(--gold-soft);
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.command-card__bubble {
  padding: 1rem;
  border-radius: 22px 22px 22px 4px;
  color: var(--navy-950);
  background: var(--soft);
  font-size: 1.08rem;
}

.command-card__result {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  margin-top: 1rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.18);
}

.command-card__result span {
  width: 10px;
  height: 10px;
  margin-top: 0.45rem;
  border-radius: 50%;
  background: var(--gold-soft);
  box-shadow: 0 0 0 6px rgba(214, 168, 79, 0.12);
}

.command-card__result p {
  margin: 0;
  font-size: 0.95rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.split > p {
  margin: 0;
  font-size: clamp(1.08rem, 2vw, 1.25rem);
}

.proof-panel {
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.section-heading {
  max-width: 800px;
  margin-bottom: 2rem;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.proof-grid li {
  min-height: 118px;
  padding: 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 22px;
  color: var(--soft);
  background: var(--panel);
  font-size: 1.05rem;
}

.feature {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: start;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.feature__badge {
  width: 128px;
  height: 128px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--gold-soft);
  background: rgba(214, 168, 79, 0.08);
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-align: center;
  text-transform: uppercase;
}

.feature p,
.contact p {
  max-width: 720px;
}

.contact {
  padding-bottom: 120px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.contact a {
  color: var(--gold-soft);
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

@media (max-width: 820px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    flex-wrap: wrap;
  }

  .hero,
  .split,
  .feature {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .proof-grid {
    grid-template-columns: 1fr;
  }

  .section-shell {
    padding: 58px 0;
  }

  .feature__badge {
    width: 104px;
    height: 104px;
  }
}
