:root {
  --paper: #ffffff;
  --wash: #f3f7f4;
  --wash-deep: #eaf1ec;
  --ink: #080b09;
  --ink-soft: #121814;
  --body: #3f4b43;
  --body-strong: #263129;
  --green: #40ff77;
  --green-hover: #27eb60;
  --green-dark: #087236;
  --green-soft: #e9fff0;
  --line: #d8e2da;
  --line-dark: rgba(255, 255, 255, 0.17);
  --white: #ffffff;
  --muted: #4a574e;
  --amber: #9a5e08;
  --amber-soft: #fff6e4;
  --red: #963c45;
  --red-soft: #fff3f4;
  --container: 1180px;
  --radius: 22px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --shadow: 0 24px 70px rgba(8, 18, 11, 0.10);
  --shadow-soft: 0 12px 36px rgba(8, 18, 11, 0.07);
  --sticky-clearance: 96px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--sticky-clearance); }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  font-size: 18px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { cursor: pointer; }
h1, h2, h3, h4, p { margin: 0; }
[hidden] { display: none !important; }

.shell {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  left: 18px;
  top: -100px;
  z-index: 100;
  padding: 12px 16px;
  background: var(--green);
  color: var(--ink);
  font-weight: 900;
}
.skip-link:focus { top: 18px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}
.nav-shell {
  min-height: 80px;
  display: flex;
  align-items: center;
  gap: 26px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.brand img {
  width: 44px;
  height: 44px;
  border-radius: 10px;
}
.brand-copy {
  display: grid;
  line-height: 1.08;
}
.brand-name {
  font-size: 15px;
  font-weight: 950;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.brand-tag {
  margin-top: 5px;
  color: var(--body);
  font-size: 14px;
}
.nav-links {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links > a:not(.nav-cta) {
  color: var(--body-strong);
  font-size: 15px;
  font-weight: 800;
}
.nav-links > a:not(.nav-cta):hover,
.nav-links > a:not(.nav-cta):focus-visible {
  color: var(--green-dark);
}
.button {
  min-height: 56px;
  padding: 0 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--green);
  border-radius: 12px;
  background: var(--green);
  color: var(--ink);
  font-size: 17px;
  font-weight: 950;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: transform 0.16s ease, background 0.16s ease, border-color 0.16s ease;
}
.button:hover {
  border-color: var(--green-hover);
  background: var(--green-hover);
  transform: translateY(-2px);
}
.nav-cta {
  min-height: 48px;
  padding-inline: 20px;
  white-space: nowrap;
  font-size: 15px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--green-dark);
  font-size: 14px;
  font-weight: 950;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.eyebrow::before {
  width: 24px;
  height: 4px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--green);
  content: "";
}

.hero {
  padding: 90px 0 84px;
  background: var(--paper);
}
.hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
  align-items: center;
  gap: 70px;
}
.hero-copy h1 {
  max-width: 790px;
  margin-top: 20px;
  font-size: clamp(50px, 5.5vw, 72px);
  font-weight: 950;
  line-height: .98;
  letter-spacing: -.062em;
  text-wrap: balance;
}
.hero-copy h1 em {
  display: inline;
  background: linear-gradient(transparent 64%, var(--green) 64%);
  font-style: normal;
}
.lede {
  max-width: 730px;
  margin-top: 25px;
  color: var(--body-strong);
  font-size: clamp(20px, 2vw, 24px);
  line-height: 1.52;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 11px 22px;
  margin-top: 27px;
}
.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--body);
  font-size: 14px;
  font-weight: 750;
}
.hero-trust span::before {
  width: 20px;
  height: 20px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: var(--ink);
  content: "✓";
  font-size: 12px;
  font-weight: 950;
}

.search-panel {
  padding: 34px;
  border: 1px solid #242c26;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
}
.search-panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 23px;
  border-bottom: 1px solid var(--line-dark);
}
.panel-kicker,
.section-kicker,
.summary-kicker {
  display: block;
  margin-bottom: 7px;
  color: var(--green-dark);
  font-size: 14px;
  font-weight: 950;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.search-panel .panel-kicker { color: var(--green); }
.search-panel h2 {
  max-width: 390px;
  color: var(--white);
  font-size: 29px;
  font-weight: 950;
  line-height: 1.12;
  letter-spacing: -.035em;
}
.source-state {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-top: 3px;
  color: #c8d3ca;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}
.source-state i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(64, 255, 119, .14);
}
#xray-form { margin-top: 24px; }
.search-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  overflow: hidden;
  border: 2px solid var(--white);
  border-radius: 14px;
  background: var(--white);
}
.search-row:focus-within {
  outline: 4px solid rgba(64, 255, 119, .28);
  outline-offset: 3px;
}
.ticker-prefix {
  padding-left: 17px;
  color: var(--green-dark);
  font-family: var(--mono);
  font-size: 26px;
  font-weight: 900;
}
.search-row input {
  width: 100%;
  min-width: 0;
  padding: 16px 12px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-family: var(--mono);
  font-size: 23px;
  font-weight: 900;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.search-row input::placeholder { color: #9aa69d; }
.search-row button {
  align-self: stretch;
  padding: 0 21px;
  border: 0;
  background: var(--green);
  color: var(--ink);
  font-size: 15px;
  font-weight: 950;
  transition: background .16s ease;
}
.search-row button:hover,
.search-row button:focus-visible {
  background: var(--green-hover);
}
.input-help {
  margin-top: 11px;
  color: #b9c5bb;
  font-size: 14px;
  line-height: 1.45;
}
.field-error {
  min-height: 19px;
  margin-top: 4px;
  color: #ff9ea7;
  font-size: 14px;
  font-weight: 800;
}
.examples {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
}
.examples > span {
  margin-right: 3px;
  color: #aebbb1;
  font-size: 14px;
}
.examples button {
  padding: 7px 11px;
  border: 1px solid #3a453d;
  border-radius: 999px;
  background: var(--ink-soft);
  color: #e3e9e4;
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 850;
}
.examples button:hover,
.examples button:focus-visible {
  border-color: var(--green);
  color: var(--green);
}
.search-disclaimer {
  margin-top: 19px;
  padding-top: 17px;
  border-top: 1px solid var(--line-dark);
  color: #aebbb1;
  font-size: 14px;
  line-height: 1.5;
}

.check-strip {
  padding: 104px 0;
  border-block: 1px solid var(--line);
  background: var(--wash);
}
.section-intro {
  max-width: 820px;
  margin-bottom: 38px;
}
.section-intro--compact {
  max-width: none;
  display: grid;
  grid-template-columns: .6fr 1.4fr;
  align-items: end;
  gap: 54px;
}
.section-intro h2 {
  font-size: clamp(42px, 5vw, 62px);
  font-weight: 950;
  line-height: 1.04;
  letter-spacing: -.052em;
  text-wrap: balance;
}
.check-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.check-grid article {
  min-height: 158px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}
.check-number {
  display: block;
  margin-bottom: 26px;
  color: var(--green-dark);
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .08em;
}
.check-grid strong {
  display: block;
  font-size: 20px;
  font-weight: 950;
  line-height: 1.18;
}
.check-grid small {
  display: block;
  margin-top: 7px;
  color: var(--body);
  font-size: 14px;
  line-height: 1.5;
}

:focus-visible {
  outline: 3px solid var(--green-dark);
  outline-offset: 4px;
}
.search-panel :focus-visible { outline-color: var(--green); }
