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

:root {
  color-scheme: light;
  --ink: #0b1320;
  --muted: #657181;
  --line: #d7dde6;
  --surface: #ffffff;
  --soft: #f4f7f9;
  --page: #f2f5f8;
  --accent: #21d66b;
  --accent-dark: #129451;
  --blue: #1e293b;
  --navy: #0b1320;
  --slate: #1e293b;
  --steel: #a7b0bc;
  --gold: #a7b0bc;
  --warn-bg: #fff8e9;
  --warn-line: #f0d49c;
  --warn-ink: #8a5b12;
  --shadow: 0 18px 55px rgba(17, 24, 39, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at 18% 0%, rgba(33, 214, 107, 0.08), transparent 28rem),
    linear-gradient(180deg, #07101d 0, #101b2a 450px, var(--page) 451px),
    var(--page);
  color: var(--ink);
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  width: min(1180px, calc(100% - 32px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: rgba(11, 19, 32, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(167, 176, 188, 0.16);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  text-decoration: none;
}

.brand span:last-child {
  display: grid;
  gap: 2px;
}

.brand strong {
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: 17px;
  font-style: italic;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.brand strong em {
  color: var(--accent);
  font-style: italic;
}

.brand small {
  color: var(--steel);
  font-size: 12px;
  letter-spacing: 0.6px;
}

.brand-mark {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #172235, #07101d);
  border: 1px solid rgba(167, 176, 188, 0.22);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.28);
  color: transparent;
  overflow: hidden;
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  width: 23px;
  height: 29px;
  border: 3px solid #fff;
  border-radius: 5px;
  transform: rotate(-10deg);
  opacity: 0.9;
}

.brand-mark::before {
  left: 10px;
  top: 8px;
}

.brand-mark::after {
  left: 15px;
  top: 6px;
  opacity: 0.7;
}

.brand-mark .signal-dot,
.brand-mark span {
  position: absolute;
  z-index: 2;
  width: 9px;
  height: 9px;
  border-radius: 999px;
    background: var(--accent);
  box-shadow:
    0 0 0 8px rgba(33, 214, 107, 0.15),
    0 0 0 15px rgba(33, 214, 107, 0.1),
    0 0 18px rgba(33, 214, 107, 0.55);
}

nav {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
}

nav a {
  color: #d7dde6;
  text-decoration: none;
  font-weight: 700;
  padding: 9px 10px;
  border-radius: 6px;
}

nav a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

main {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 34px;
  display: grid;
  gap: 18px;
}

.hero,
.tool-section,
.data-section,
.how-it-works,
.guides,
.waitlist,
.legal-page,
.guide-page,
.guide-index {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 30px;
  box-shadow: var(--shadow);
}

.hero {
  min-height: 520px;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.88fr);
  gap: 30px;
  align-items: center;
}

.hero,
.market-panel {
  background:
    linear-gradient(145deg, rgba(11, 19, 32, 0.96), rgba(30, 41, 59, 0.94));
  color: #fff;
  border-color: rgba(167, 176, 188, 0.22);
}

.hero p,
.market-panel p {
  color: var(--steel);
}

.hero .lede {
  color: #d7dde6;
}

.hero h1,
.section-heading h2,
.waitlist h2,
.legal-page h1,
.guide-page h1,
.guide-index h1 {
  margin: 0;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 800px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.96;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-style: italic;
  text-transform: uppercase;
}

.lede {
  max-width: 760px;
  font-size: 19px;
}

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

.eyebrow {
  margin: 0;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-copy,
.section-heading,
.guide-page,
.guide-index {
  display: grid;
  gap: 14px;
}

.hero-actions,
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.market-panel {
  border: 1px solid rgba(167, 176, 188, 0.28);
  padding: 18px;
  display: grid;
  gap: 14px;
}

.panel-topline,
.mock-card,
.signal-list div,
.trust-strip div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.panel-topline span,
.signal-list span,
.guide span,
.card-year,
.trust-strip span {
  color: var(--steel);
  font-size: 13px;
}

.mock-card {
  min-height: 170px;
  align-items: flex-end;
  background:
    radial-gradient(circle at 50% 45%, rgba(33, 214, 107, 0.28), transparent 5rem),
    linear-gradient(135deg, rgba(11, 19, 32, 0.98), rgba(30, 41, 59, 0.94)),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.18) 0 2px, transparent 2px 10px);
  color: #fff;
  border-radius: 8px;
  padding: 18px;
}

.mock-card strong {
  display: block;
  max-width: 280px;
  font-size: 24px;
  line-height: 1.15;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-style: italic;
  text-transform: uppercase;
}

.mock-card .card-year {
  color: rgba(255,255,255,0.82);
}

.badge {
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.28);
  color: #fff;
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.signal-list {
  display: grid;
  gap: 10px;
}

.signal-list div {
  border: 1px solid rgba(167, 176, 188, 0.22);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 12px;
}

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

.trust-strip div {
  align-items: flex-start;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
}

.disclosure {
  background: #edf7f5;
  border: 1px solid #b7d8d1;
  color: #113e2b;
  border-radius: 8px;
  padding: 14px;
  line-height: 1.5;
}

.notice {
  background: var(--warn-bg);
  border: 1px solid var(--warn-line);
  color: var(--warn-ink);
  border-radius: 8px;
  padding: 14px;
  line-height: 1.5;
}

.tool-section {
  display: grid;
  gap: 20px;
}

.data-section {
  display: grid;
  gap: 18px;
}

.split-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.section-heading h2,
.waitlist h2 {
  font-size: clamp(28px, 3vw, 38px);
}

.text-link {
  color: var(--accent-dark);
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.text-link:hover {
  text-decoration: underline;
}

.finder {
  display: grid;
  gap: 14px;
  padding: 18px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

label {
  display: grid;
  gap: 7px;
  font-weight: 700;
  color: var(--ink);
}

input,
select {
  width: 100%;
  min-height: 46px;
  border: 1px solid #bfc8d4;
  border-radius: 6px;
  padding: 11px 12px;
  font: inherit;
  background: #fff;
  color: var(--ink);
}

.search-label input {
  min-height: 54px;
  font-size: 17px;
}

.search-score {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 12px;
  display: grid;
  gap: 4px;
}

.search-score strong {
  font-size: 15px;
}

.search-score span {
  color: var(--muted);
  font-size: 13px;
}

.search-score.good {
  border-color: rgba(33, 214, 107, 0.55);
  background: #effbf4;
}

.search-score.ok {
  border-color: #d9c58a;
  background: #fff9e9;
}

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

button,
.button {
  appearance: none;
  border: 0;
  border-radius: 6px;
  padding: 12px 16px;
  background: var(--accent);
  color: #06110b;
  font-weight: 800;
  font-size: 15px;
  text-decoration: none;
  cursor: pointer;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

button:hover,
.button:hover {
  background: #18b85b;
}

.secondary {
  background: #ffffff;
  color: var(--navy);
  border: 1px solid rgba(167, 176, 188, 0.38);
}

.secondary:hover {
  background: #eef2f6;
}

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

.results-shell {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 16px;
  display: grid;
  gap: 16px;
  box-shadow: 0 16px 42px rgba(17, 24, 39, 0.08);
}

.results-shell[hidden] {
  display: none;
}

.results-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 14px;
}

.results-toolbar h3,
.research-links h4 {
  margin: 0;
}

.sort-control {
  min-width: 210px;
}

.listing-results {
  display: grid;
  gap: 10px;
}

.listing-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px;
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 12px;
  align-items: center;
  color: var(--ink);
  text-decoration: none;
}

.listing-card:hover {
  border-color: #9fb3c8;
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.07);
}

.listing-card img,
.listing-thumb {
  width: 74px;
  height: 74px;
  border-radius: 6px;
  object-fit: cover;
  background: var(--navy);
}

.listing-thumb {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-weight: 900;
}

.listing-card div {
  display: grid;
  gap: 5px;
}

.listing-card span {
  color: var(--accent-dark);
  font-weight: 800;
}

.listing-card small {
  color: var(--muted);
}

.loading-card {
  border: 1px dashed #bfc8d4;
  border-radius: 8px;
  padding: 14px;
  background: var(--soft);
  display: grid;
  gap: 6px;
}

.research-links {
  display: grid;
  gap: 12px;
}

.result,
.step-grid article,
.guide {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  display: grid;
  gap: 9px;
  background: #fff;
  text-decoration: none;
}

.result strong,
.guide strong,
.step-grid strong {
  font-size: 18px;
  line-height: 1.25;
}

.data-output {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 16px;
  display: grid;
  gap: 12px;
}

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

.stat {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  display: grid;
  gap: 4px;
  background: var(--soft);
}

.stat span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.stat strong {
  font-size: 22px;
}

.mini-list {
  display: grid;
  gap: 8px;
}

.mini-list a {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px;
  display: grid;
  gap: 4px;
  text-decoration: none;
}

.mini-list a:hover {
  border-color: #9fb3c8;
}

.release-search {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  padding: 16px;
  display: grid;
  gap: 12px;
}

.alert-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  padding: 18px;
  display: grid;
  gap: 14px;
}

textarea {
  width: 100%;
  border: 1px solid #bfc8d4;
  border-radius: 6px;
  padding: 11px 12px;
  font: inherit;
  background: #fff;
  color: var(--ink);
  resize: vertical;
}

.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 600;
  color: var(--muted);
}

.consent-row input {
  width: 18px;
  min-height: 18px;
  margin-top: 2px;
}

.source-grid,
.checklist-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.checklist-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.check-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  display: grid;
  gap: 8px;
  background: #fff;
}

.check-card strong {
  font-size: 18px;
}

.comparison-table {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  display: grid;
}

.comparison-row {
  display: grid;
  grid-template-columns: 0.7fr 1.35fr 1.35fr;
  gap: 12px;
  padding: 12px;
  border-top: 1px solid var(--line);
  background: #fff;
}

.comparison-row:first-child {
  border-top: 0;
}

.comparison-head {
  background: var(--soft);
}

.comparison-row span {
  color: var(--muted);
  line-height: 1.55;
}

.step-grid,
.guide-grid,
.article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.step-number {
  color: var(--gold);
  font-weight: 900;
  font-size: 13px;
}

.guide:hover {
  border-color: #9fb3c8;
  box-shadow: 0 12px 34px rgba(17, 24, 39, 0.08);
}

.waitlist {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--muted);
  font-size: 14px;
}

footer a {
  color: var(--muted);
}

.legal-page,
.guide-page,
.guide-index {
  max-width: 900px;
}

.guide-index {
  max-width: none;
}

.guide-page h1,
.guide-index h1 {
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.05;
}

.guide-page h2,
.legal-page h2 {
  margin: 10px 0 0;
  letter-spacing: 0;
  font-size: 24px;
}

.guide-page ul,
.guide-page ol,
.legal-page ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.65;
}

.guide-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.guide-meta span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.callout {
  border-left: 4px solid var(--accent);
  background: #eef8f6;
  padding: 14px;
  color: #174d45;
  border-radius: 6px;
}

@media (max-width: 860px) {
  .site-header {
    width: min(100% - 20px, 1180px);
    min-height: auto;
    padding: 14px 0;
    display: grid;
  }

  nav {
    overflow-x: auto;
    padding-bottom: 2px;
  }

  main,
  footer {
    width: min(100% - 20px, 1180px);
  }

  .hero,
  .grid,
  .trust-strip,
  .results,
  .results-toolbar,
  .stat-grid,
  .source-grid,
  .checklist-grid,
  .comparison-row,
  .step-grid,
  .guide-grid,
  .article-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero,
  .tool-section,
  .data-section,
  .how-it-works,
  .guides,
  .waitlist,
  .legal-page,
  .guide-page,
  .guide-index {
    padding: 20px;
  }

  .split-heading,
  .waitlist {
    align-items: stretch;
    display: grid;
  }

  button,
  .button {
    width: 100%;
  }

  .listing-card {
    grid-template-columns: 58px 1fr;
  }

  .listing-card img,
  .listing-thumb {
    width: 58px;
    height: 58px;
  }
}
