:root {
  --bg: #071113;
  --bg-soft: #0e1d20;
  --surface: #112225;
  --surface-light: #173035;
  --text: #eef7f4;
  --muted: #a8bbb7;
  --line: rgba(255, 255, 255, 0.12);
  --accent: #42e8b4;
  --accent-strong: #19c995;
  --gold: #f3b94f;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(66, 232, 180, 0.18), transparent 30rem),
    linear-gradient(180deg, #071113 0%, #0b171a 46%, #071113 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.text-link {
  color: var(--accent);
  font-weight: 800;
}

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

img,
svg {
  max-width: 100%;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.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% - 2rem));
  margin: 0 auto;
  padding: 1rem 0;
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark,
.card-icon {
  display: inline-grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid rgba(66, 232, 180, 0.35);
  border-radius: 0.7rem;
  color: #03110d;
  background: linear-gradient(135deg, var(--accent), var(--gold));
  font-size: 0.82rem;
  font-weight: 900;
}

.nav-toggle {
  display: inline-grid;
  gap: 0.25rem;
  width: 2.6rem;
  height: 2.6rem;
  place-content: center;
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  color: var(--text);
  background: rgba(17, 34, 37, 0.82);
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 1.1rem;
  height: 2px;
  background: currentColor;
}

.site-nav {
  position: absolute;
  top: calc(100% + 0.35rem);
  right: 0;
  display: none;
  min-width: 13rem;
  padding: 0.65rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: rgba(10, 24, 27, 0.96);
  box-shadow: var(--shadow);
}

.site-nav.is-open {
  display: grid;
}

.site-nav a {
  padding: 0.65rem 0.75rem;
  border-radius: 0.65rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--text);
  background: rgba(255, 255, 255, 0.07);
}

.hero,
.page-hero,
.section,
.split-section,
.blog-band,
.form-section {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.hero {
  padding: 4rem 0 3rem;
}

.hero-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.1;
  letter-spacing: 0;
}

h1 {
  max-width: 14ch;
  font-size: clamp(2.55rem, 14vw, 4.65rem);
}

h2 {
  font-size: clamp(1.75rem, 8vw, 3rem);
}

h3 {
  font-size: 1.2rem;
}

.hero-subtitle,
.page-hero p,
.split-section > p,
.entry-card p {
  color: var(--muted);
}

.hero-subtitle {
  max-width: 43rem;
  margin: 1.25rem 0 0;
  font-size: 1.08rem;
}

.hero-actions,
.page-hero .button {
  margin-top: 1.7rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero-link {
  margin: 1rem 0 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.85rem;
  padding: 0.75rem 1rem;
  border: 1px solid transparent;
  border-radius: 0.8rem;
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.72;
  transform: none;
}

.button.primary {
  color: #03110d;
  background: linear-gradient(135deg, var(--accent), var(--gold));
}

.button.secondary {
  border-color: var(--line);
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.signal-panel {
  padding: 1.1rem;
  border: 1px solid rgba(66, 232, 180, 0.16);
  border-radius: 1.35rem;
  background:
    linear-gradient(135deg, rgba(66, 232, 180, 0.12), rgba(243, 185, 79, 0.06)),
    rgba(17, 34, 37, 0.78);
  box-shadow: var(--shadow);
}

.signal-header,
.signal-metrics div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.signal-header {
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-weight: 700;
}

.status-dot {
  color: var(--accent);
  font-size: 0.85rem;
}

.signal-metrics {
  display: grid;
  gap: 0.75rem;
  padding-top: 1rem;
}

.signal-metrics div {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: rgba(7, 17, 19, 0.55);
}

.signal-metrics span {
  color: var(--muted);
}

.signal-metrics strong {
  color: var(--text);
}

.section {
  padding: 2rem 0;
}

.section-heading {
  max-width: 38rem;
  margin-bottom: 1.25rem;
}

.section-heading p:not(.eyebrow) {
  margin: 0.75rem 0 0;
  color: var(--muted);
}

.last-reviewed {
  width: fit-content;
  padding: 0.35rem 0.65rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(17, 34, 37, 0.72);
  font-size: 0.9rem;
}

.card-grid {
  display: grid;
  gap: 1rem;
}

.pillar-grid {
  display: grid;
  gap: 1rem;
}

.entry-card {
  display: grid;
  gap: 0.85rem;
  min-height: 13rem;
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: 1.1rem;
  background: rgba(17, 34, 37, 0.78);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.entry-card:hover {
  transform: translateY(-3px);
  border-color: rgba(66, 232, 180, 0.42);
  background: rgba(23, 48, 53, 0.86);
}

.entry-card p {
  margin: 0;
}

.card-cta {
  align-self: end;
  color: var(--accent);
  font-weight: 800;
}

.split-section,
.blog-band,
.form-section {
  margin-top: 2rem;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 1.3rem;
  background: rgba(17, 34, 37, 0.72);
}

.split-section,
.blog-band {
  display: grid;
  gap: 1.25rem;
}

.split-section > p {
  margin: 0;
  font-size: 1.03rem;
}

.blog-band {
  align-items: center;
  margin-bottom: 3rem;
}

.blog-band h2 {
  font-size: clamp(1.55rem, 7vw, 2.4rem);
}

.blog-band p {
  max-width: 46rem;
  margin: 0.8rem 0 0;
  color: var(--muted);
}

.page-hero {
  padding: 5rem 0 2rem;
}

.page-hero.narrow {
  max-width: 760px;
}

.page-hero h1 {
  max-width: 12ch;
}

.page-hero p {
  max-width: 42rem;
  margin: 1.1rem 0 0;
  font-size: 1.08rem;
}

.form-section {
  max-width: 760px;
  margin-bottom: 5rem;
}

.wide-section {
  max-width: 1120px;
}

.watchlist-grid {
  display: grid;
  gap: 1rem;
}

.checklist-grid {
  display: grid;
  gap: 1rem;
}

.watchlist-card {
  display: grid;
  gap: 1rem;
  padding: 1.1rem;
  border: 1px solid var(--line);
  border-radius: 1.1rem;
  background: rgba(17, 34, 37, 0.78);
}

.checklist-card {
  display: grid;
  gap: 1rem;
  align-content: start;
  padding: 1.1rem;
  border: 1px solid var(--line);
  border-radius: 1.1rem;
  background: rgba(17, 34, 37, 0.78);
}

.card-note {
  margin: 0;
  color: var(--muted);
}

.watchlist-card-header {
  display: grid;
  gap: 0.75rem;
}

.watchlist-details {
  display: grid;
  gap: 0.85rem;
  margin: 0;
}

.watchlist-details div {
  display: grid;
  gap: 0.15rem;
}

.watchlist-details dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.watchlist-details dd {
  margin: 0;
  color: var(--text);
}

.status-label,
.risk-label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 1.85rem;
  padding: 0.3rem 0.65rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.2;
}

.status-watching {
  color: #bfffea;
  background: rgba(66, 232, 180, 0.1);
}

.status-active {
  color: #fff1c7;
  background: rgba(243, 185, 79, 0.12);
}

.status-research {
  color: #cde4ff;
  background: rgba(93, 168, 255, 0.12);
}

.status-caution {
  color: #ffd1d1;
  background: rgba(255, 116, 116, 0.12);
}

.status-closed {
  color: var(--muted);
  background: rgba(255, 255, 255, 0.08);
}

.risk-low {
  color: #bfffea;
  border-color: rgba(66, 232, 180, 0.26);
}

.risk-medium {
  color: #fff1c7;
  border-color: rgba(243, 185, 79, 0.3);
}

.risk-high {
  color: #ffd1d1;
  border-color: rgba(255, 116, 116, 0.3);
}

.criteria-list {
  grid-template-columns: 1fr;
}

.warning-list {
  padding: 0.9rem 1rem 0.9rem 2rem;
  border: 1px solid rgba(243, 185, 79, 0.2);
  border-radius: 0.9rem;
  background: rgba(243, 185, 79, 0.06);
}

.watchlist-message {
  margin: 0;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  color: var(--muted);
  background: rgba(17, 34, 37, 0.78);
}

.newsletter-form {
  display: grid;
  gap: 0.75rem;
}

.content-block {
  display: grid;
  gap: 0.9rem;
  margin-bottom: 1.5rem;
}

.content-block h2 {
  font-size: clamp(1.35rem, 6vw, 2rem);
}

.content-list {
  display: grid;
  gap: 0.65rem;
  margin: 0;
  padding-left: 1.2rem;
  color: var(--muted);
}

.content-list li::marker {
  color: var(--accent);
}

.trust-note,
.small-disclaimer {
  margin: 0;
  color: var(--muted);
}

.trust-note {
  padding: 0.9rem 1rem;
  border: 1px solid rgba(243, 185, 79, 0.24);
  border-radius: 0.9rem;
  background: rgba(243, 185, 79, 0.07);
}

.small-disclaimer {
  margin-top: 1rem;
  font-size: 0.92rem;
}

.newsletter-form label {
  color: var(--text);
  font-weight: 800;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-row {
  display: grid;
  gap: 0.75rem;
}

input[type="email"] {
  width: 100%;
  min-height: 3rem;
  padding: 0.8rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: 0.8rem;
  color: var(--text);
  background: rgba(7, 17, 19, 0.72);
  font: inherit;
}

input[type="email"]:focus {
  outline: 2px solid rgba(66, 232, 180, 0.55);
  outline-offset: 2px;
}

.form-message {
  min-height: 1.5rem;
  margin: 0;
  color: var(--gold);
}

.form-message.error {
  color: #ff9c9c;
}

.form-message.success {
  color: var(--accent);
}

.site-footer {
  display: grid;
  gap: 0.8rem;
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 2rem 0 2.4rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1rem;
}

.footer-links a:hover {
  color: var(--text);
}

.site-footer p {
  margin: 0;
}

@media (min-width: 720px) {
  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    align-items: center;
    min-width: 0;
    padding: 0.25rem;
    border-radius: 999px;
    background: rgba(17, 34, 37, 0.72);
    box-shadow: none;
  }

  .hero {
    padding: 6rem 0 4rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 0.8fr);
  }

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

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

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

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

  .watchlist-card-header {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
  }

  .criteria-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split-section,
  .blog-band {
    grid-template-columns: minmax(0, 1.1fr) minmax(16rem, 0.9fr);
    padding: 1.7rem;
  }

  .blog-band {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .form-row {
    grid-template-columns: minmax(0, 1fr) auto;
  }
}
