:root {
  color-scheme: dark;
  --bg: #0f1115;
  --panel: #15181e;
  --panel-raised: #191d24;
  --line: #2a3039;
  --line-soft: #20252d;
  --text: #f2efe7;
  --muted: #9aa1ab;
  --faint: #68717d;
  --amber: #e6aa43;
  --amber-light: #f2c46d;
  --amber-wash: rgba(230, 170, 67, .09);
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --sans: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 8px 12px;
  background: var(--amber);
  color: #17130d;
  font: 700 12px var(--mono);
  transform: translateY(-180%);
}

.skip-link:focus { transform: translateY(0); }

.page-grid {
  position: fixed;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}

.shell { width: min(1160px, calc(100% - 32px)); margin-inline: auto; }

.site-header {
  position: relative;
  z-index: 10;
  border-bottom: 1px solid var(--line-soft);
  background: rgba(15, 17, 21, .82);
  backdrop-filter: blur(16px);
}

.nav {
  display: flex;
  min-height: 68px;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
}

.wordmark {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  text-decoration: none;
}

.wordmark-mark {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid var(--amber);
  color: var(--amber-light);
  font: 700 13px var(--mono);
  transform: rotate(45deg);
}

.wordmark-mark span, .core-mark span { transform: rotate(-45deg); }

.nav-links { display: flex; gap: clamp(14px, 4vw, 34px); }

.nav-links a {
  color: var(--muted);
  font: 500 10px var(--mono);
  letter-spacing: .07em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color .2s ease;
}

.nav-links a:hover, .nav-links a:focus-visible { color: var(--amber-light); }

.hero {
  display: grid;
  gap: 58px;
  align-items: center;
  padding-block: 78px 86px;
}

.eyebrow {
  display: flex;
  gap: 9px;
  align-items: center;
  margin: 0 0 20px;
  color: var(--amber);
  font: 700 10px var(--mono);
  letter-spacing: .14em;
}

.eyebrow span { width: 18px; height: 1px; background: currentColor; }

h1, h2, h3, p { margin-top: 0; }

h1 {
  max-width: 820px;
  margin-bottom: 26px;
  font-size: clamp(43px, 11vw, 78px);
  font-weight: 600;
  letter-spacing: -.058em;
  line-height: 1.01;
}

.hero-sub {
  max-width: 720px;
  margin-bottom: 32px;
  color: #bbb9b3;
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.72;
}

.hero-actions, .offer-actions {
  display: flex;
  flex-direction: column;
  gap: 11px;
  align-items: stretch;
}

.button {
  display: inline-flex;
  min-height: 48px;
  gap: 16px;
  align-items: center;
  justify-content: center;
  padding: 0 17px;
  border: 1px solid var(--amber);
  border-radius: 6px;
  font: 700 11px var(--mono);
  letter-spacing: .035em;
  text-decoration: none;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--amber); color: #17130d; }
.button-primary:hover { background: var(--amber-light); }
.button-secondary { color: var(--amber-light); }
.button-secondary:hover { background: var(--amber-wash); }

.hero-instrument {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(255,255,255,.025), transparent 55%), var(--panel);
  box-shadow: 0 30px 80px rgba(0,0,0,.25);
}

.instrument-head, .audit-head, .audit-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 15px;
  border-bottom: 1px solid var(--line-soft);
  color: var(--faint);
  font: 9px var(--mono);
  letter-spacing: .09em;
}

.status { display: flex; gap: 7px; align-items: center; color: var(--amber-light); }
.status i { width: 5px; height: 5px; border-radius: 50%; background: var(--amber); box-shadow: 0 0 0 4px rgba(230,170,67,.1); }

.instrument-core {
  position: relative;
  display: grid;
  min-height: 300px;
  place-items: center;
  background: radial-gradient(circle, rgba(230,170,67,.08), transparent 54%);
}

.core-mark {
  display: grid;
  z-index: 2;
  width: 74px;
  height: 74px;
  place-items: center;
  border: 1px solid var(--amber);
  background: #121419;
  color: var(--amber-light);
  font: 500 32px var(--mono);
  transform: rotate(45deg);
  box-shadow: 0 0 45px rgba(230,170,67,.12);
}

.orbit { position: absolute; border: 1px solid #303640; border-radius: 50%; }
.orbit-one { width: 170px; height: 170px; }
.orbit-two { width: 245px; height: 245px; border-style: dashed; opacity: .55; }

.node { position: absolute; width: 8px; height: 8px; border: 1px solid var(--amber); border-radius: 50%; background: var(--panel); }
.node-one { top: 24%; left: 26%; }
.node-two { right: 20%; bottom: 30%; }
.node-three { bottom: 18%; left: 42%; }

.instrument-stats { display: grid; grid-template-columns: repeat(3, 1fr); margin: 0; border-top: 1px solid var(--line-soft); }
.instrument-stats div { min-width: 0; padding: 14px 10px; border-right: 1px solid var(--line-soft); }
.instrument-stats div:last-child { border-right: 0; }
.instrument-stats dt { margin-bottom: 4px; color: var(--faint); font: 8px var(--mono); letter-spacing: .08em; }
.instrument-stats dd { margin: 0; overflow: hidden; color: #d3d0c8; font: 10px var(--mono); text-overflow: ellipsis; white-space: nowrap; }

.problem-strip { border-block: 1px solid var(--line); background: rgba(21,24,30,.62); }
.problem-strip .shell { padding-block: 30px; }
.strip-index { display: block; margin-bottom: 12px; color: var(--amber); font: 9px var(--mono); letter-spacing: .12em; }
.problem-strip p { max-width: 1040px; margin: 0; color: #d9d5cc; font-size: clamp(18px, 3vw, 27px); font-weight: 500; letter-spacing: -.025em; line-height: 1.45; }

.section { padding-block: 92px; }

.section-heading { display: grid; gap: 18px; margin-bottom: 44px; }
.section-heading h2, .trust h2, .offer h2 { margin-bottom: 0; font-size: clamp(32px, 7vw, 55px); font-weight: 600; letter-spacing: -.045em; line-height: 1.08; }
.section-heading > p { max-width: 430px; margin: 0; color: var(--muted); }

.agent-list { border-top: 1px solid var(--line); }
.agent-card { display: grid; gap: 20px; padding-block: 29px; border-bottom: 1px solid var(--line); }
.agent-number { color: var(--amber); font: 10px var(--mono); letter-spacing: .1em; }
.agent-copy h3 { margin-bottom: 9px; font-size: 22px; letter-spacing: -.025em; }
.agent-copy p { max-width: 670px; margin: 0; color: var(--muted); }
.agent-card > a, .text-link { align-self: start; color: var(--amber-light); font: 600 10px var(--mono); letter-spacing: .05em; text-decoration: none; text-transform: uppercase; }
.agent-card > a:hover, .text-link:hover { text-decoration: underline; text-underline-offset: 5px; }

.trust { padding-block: 92px; border-block: 1px solid var(--line-soft); background: #121419; }
.trust-grid { display: grid; gap: 54px; align-items: center; }
.trust-copy h2 { max-width: 720px; }
.trust-stat { margin: 30px 0 0; padding-left: 14px; border-left: 2px solid var(--amber); color: var(--amber-light); font: 11px/1.7 var(--mono); }

.audit-panel { overflow: hidden; border: 1px solid var(--line); border-radius: 10px; background: var(--bg); box-shadow: 0 25px 70px rgba(0,0,0,.25); }
.audit-head span:last-child { color: var(--amber); }
.audit-panel ol { margin: 0; padding: 10px 15px; list-style: none; }
.audit-panel li { display: grid; grid-template-columns: 58px 1fr auto; gap: 10px; padding: 13px 0; border-bottom: 1px solid var(--line-soft); font: 9px var(--mono); }
.audit-panel li:last-child { border-bottom: 0; }
.audit-panel time { color: var(--faint); }
.audit-panel li span { overflow: hidden; color: #bbc0c8; text-overflow: ellipsis; white-space: nowrap; }
.audit-panel b { color: var(--muted); font-weight: 500; }
.audit-panel .pending b { color: var(--amber-light); }
.audit-foot { border-top: 1px solid var(--line-soft); border-bottom: 0; color: var(--amber); }

.offer { padding-block: 92px; }
.offer-card { position: relative; overflow: hidden; padding: 28px 22px; border: 1px solid rgba(230,170,67,.42); border-radius: 12px; background: linear-gradient(120deg, rgba(230,170,67,.11), rgba(21,24,30,.7) 58%); }
.offer-card::after { content: ""; position: absolute; top: -130px; right: -130px; width: 290px; height: 290px; border: 1px solid rgba(230,170,67,.13); border-radius: 50%; }
.offer-index { margin-bottom: 42px; color: var(--amber); font: 9px var(--mono); letter-spacing: .12em; }
.offer h2 { margin-bottom: 22px; }
.offer-card > p { position: relative; z-index: 1; max-width: 830px; margin-bottom: 31px; color: #c5c2ba; font-size: clamp(16px, 2.2vw, 19px); }
.offer-actions { position: relative; z-index: 1; }
.text-link { padding: 13px 4px; text-align: center; }

.footer { display: flex; gap: 20px; align-items: center; justify-content: space-between; padding-block: 28px 40px; border-top: 1px solid var(--line-soft); color: var(--faint); font: 9px/1.7 var(--mono); }
.footer p { margin: 0; }
.footer p a { color: var(--amber); text-decoration: none; }
.back-top { display: grid; width: 32px; height: 32px; flex: 0 0 auto; place-items: center; border: 1px solid var(--line); color: var(--amber-light); text-decoration: none; }

.js .reveal { opacity: 0; transform: translateY(20px); transition: opacity .65s ease, transform .65s ease; }
.js .reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (min-width: 560px) {
  .shell { width: min(1160px, calc(100% - 64px)); }
  .hero-actions, .offer-actions { flex-direction: row; align-items: center; }
  .button { justify-content: space-between; }
  .offer-card { padding: 42px; }
}

@media (min-width: 760px) {
  .site-header { position: sticky; top: 0; }
  .hero { grid-template-columns: minmax(0, 1.35fr) minmax(330px, .65fr); min-height: calc(100vh - 69px); padding-block: 84px; }
  .section-heading { grid-template-columns: 1fr 390px; align-items: end; }
  .agent-card { grid-template-columns: 56px minmax(0, 1fr) 130px; gap: 26px; align-items: start; padding-block: 34px; }
  .agent-card > a { justify-self: end; margin-top: 7px; }
  .trust-grid { grid-template-columns: minmax(0, 1.15fr) minmax(360px, .85fr); }
}

@media (max-width: 430px) {
  .wordmark { font-size: 10px; }
  .wordmark-mark { width: 25px; height: 25px; }
  .nav-links { gap: 11px; }
  .nav-links a { font-size: 8px; }
  .instrument-stats dd { font-size: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
