@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@500;700&family=Manrope:wght@400;600;700;800&display=swap");

:root {
  --bg: #060503;
  --panel: rgba(18, 14, 8, 0.72);
  --panel-2: rgba(30, 24, 14, 0.66);
  --line: rgba(215, 176, 94, 0.2);
  --line-strong: rgba(215, 176, 94, 0.45);
  --gold: #d8ad5f;
  --gold-2: #f3daa0;
  --cream: #f1e8d4;
  --muted: rgba(241, 232, 212, 0.66);
  --quiet: rgba(241, 232, 212, 0.42);
  --green: #65d19a;
  --red: #e47b70;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.46);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background:
    radial-gradient(circle at 15% 15%, rgba(216, 173, 95, 0.14), transparent 34rem),
    radial-gradient(circle at 86% 18%, rgba(101, 209, 154, 0.08), transparent 28rem),
    linear-gradient(135deg, #030302 0%, #080604 42%, #0d0904 100%);
  color: var(--cream);
  font-family: "Manrope", sans-serif;
}

body {
  overflow-x: hidden;
}

a {
  color: inherit;
}

.page-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: #090604;
  font-family: "Cinzel", serif;
  font-weight: 700;
  box-shadow: 0 12px 34px rgba(216, 173, 95, 0.24);
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  font-family: "Cinzel", serif;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 13px;
}

.brand-copy span {
  color: var(--quiet);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

.nav-links a,
.pill-link {
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  padding: 10px 14px;
  text-decoration: none;
  text-transform: uppercase;
  transition: border-color 180ms ease, color 180ms ease, background 180ms ease, transform 180ms ease;
}

.nav-links a:hover,
.pill-link:hover {
  background: rgba(216, 173, 95, 0.08);
  border-color: var(--line-strong);
  color: var(--gold-2);
  transform: translateY(-1px);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 28px;
  align-items: stretch;
  padding: 44px 0 18px;
}

.hero-card,
.panel,
.matrix,
.cta-band {
  background:
    linear-gradient(145deg, rgba(216, 173, 95, 0.08), transparent 35%),
    var(--panel);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.hero-card {
  padding: clamp(30px, 5vw, 58px);
  min-height: 470px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  position: relative;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: auto -18% -45% 20%;
  height: 320px;
  background: radial-gradient(circle, rgba(216, 173, 95, 0.2), transparent 64%);
  pointer-events: none;
}

.eyebrow {
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: "Cinzel", serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.05;
  margin: 0;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(2.1rem, 6vw, 5.35rem);
  max-width: 820px;
  margin: 18px 0 22px;
}

h2 {
  font-size: clamp(1.45rem, 3vw, 2.35rem);
}

h3 {
  font-size: 1rem;
}

.lead {
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.16rem);
  line-height: 1.8;
  max-width: 760px;
}

.hero-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 13px 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--cream);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button.primary {
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  border-color: transparent;
  color: #080604;
  box-shadow: 0 16px 42px rgba(216, 173, 95, 0.22);
}

.button:hover {
  transform: translateY(-2px);
  border-color: var(--line-strong);
  background: rgba(216, 173, 95, 0.08);
}

.button.primary:hover {
  background: linear-gradient(135deg, #fff1bf, var(--gold));
}

.signal-card {
  position: relative;
  padding: 26px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(216, 173, 95, 0.13), transparent 46%),
    rgba(8, 6, 4, 0.66);
  border: 1px solid var(--line);
  overflow: hidden;
}

.signal-title {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 20px;
}

.signal-title span {
  color: var(--quiet);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.dial {
  position: relative;
  display: grid;
  place-items: center;
  width: min(100%, 330px);
  aspect-ratio: 1;
  margin: 18px auto 24px;
  border: 1px solid rgba(216, 173, 95, 0.2);
  border-radius: 50%;
  background:
    conic-gradient(from 215deg, rgba(216, 173, 95, 0.08), rgba(216, 173, 95, 0.38), rgba(101, 209, 154, 0.24), rgba(216, 173, 95, 0.08)),
    radial-gradient(circle, rgba(216, 173, 95, 0.12), rgba(0, 0, 0, 0.2) 58%);
}

.dial::before {
  content: "";
  position: absolute;
  inset: 13%;
  border-radius: inherit;
  border: 1px solid rgba(243, 218, 160, 0.28);
  background: rgba(6, 5, 3, 0.72);
}

.dial strong {
  position: relative;
  font-family: "Cinzel", serif;
  font-size: clamp(2.4rem, 7vw, 4.7rem);
  letter-spacing: 0.22em;
}

.signal-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.signal-list li,
.decision-list li {
  border: 1px solid rgba(216, 173, 95, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.025);
  color: var(--muted);
  padding: 14px 16px;
  line-height: 1.55;
}

.section {
  padding: 38px 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 20px;
}

.section-head p {
  color: var(--quiet);
  line-height: 1.7;
  max-width: 620px;
  margin: 0;
}

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

.panel {
  padding: 24px;
}

.panel p {
  color: var(--muted);
  line-height: 1.72;
}

.panel .small {
  color: var(--quiet);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0;
}

.tag {
  border: 1px solid rgba(216, 173, 95, 0.18);
  border-radius: 999px;
  color: var(--gold-2);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 8px 10px;
  text-transform: uppercase;
}

.matrix {
  overflow: hidden;
}

.matrix-row {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1.1fr;
  min-height: 82px;
}

.matrix-row + .matrix-row {
  border-top: 1px solid rgba(216, 173, 95, 0.14);
}

.matrix-row > div {
  padding: 18px 20px;
  border-left: 1px solid rgba(216, 173, 95, 0.12);
}

.matrix-row > div:first-child {
  border-left: 0;
}

.matrix-head {
  background: rgba(216, 173, 95, 0.08);
  color: var(--gold-2);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

.decision-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.decision-list strong {
  display: block;
  color: var(--cream);
  margin-bottom: 6px;
}

.cta-band {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  padding: clamp(24px, 4vw, 38px);
  margin: 36px 0 54px;
}

.cta-band p {
  color: var(--muted);
  line-height: 1.65;
  margin: 10px 0 0;
  max-width: 760px;
}

.fine-print {
  color: var(--quiet);
  font-size: 12px;
  line-height: 1.7;
  margin: 18px 0 0;
}

footer {
  border-top: 1px solid rgba(216, 173, 95, 0.14);
  color: var(--quiet);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 0 34px;
  font-size: 12px;
}

@media (max-width: 900px) {
  .top-nav,
  .section-head,
  .cta-band,
  footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero,
  .grid-3,
  .decision-list {
    grid-template-columns: 1fr;
  }

  .hero-card {
    min-height: auto;
  }

  .matrix {
    display: grid;
    gap: 12px;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .matrix-row {
    grid-template-columns: 1fr;
    border: 1px solid rgba(216, 173, 95, 0.16);
    border-radius: 20px;
    background: var(--panel);
    overflow: hidden;
  }

  .matrix-row + .matrix-row {
    border-top: 1px solid rgba(216, 173, 95, 0.16);
  }

  .matrix-row > div {
    border-left: 0;
    border-top: 1px solid rgba(216, 173, 95, 0.12);
  }

  .matrix-row > div:first-child {
    border-top: 0;
  }
}

@media (max-width: 560px) {
  .page-shell {
    width: min(100% - 22px, 1180px);
  }

  .nav-links {
    width: 100%;
    justify-content: stretch;
  }

  .nav-links a,
  .button,
  .pill-link {
    flex: 1 1 auto;
    text-align: center;
  }

  .hero {
    padding-top: 18px;
  }

  .hero-card,
  .signal-card,
  .panel,
  .cta-band {
    border-radius: 20px;
    padding: 22px;
  }

  h1 {
    letter-spacing: 0.04em;
  }
}
