:root {
  --ght-cornflower: #7189ff;
  --ght-charcoal: #394053;
  --ght-uranian: #a0ddff;
  --ght-gray: #808080;
  --ght-black: #091d20;
  --ght-white: #ffffff;

  --bg: var(--ght-black);
  --surface: #1a2438;
  --surface-2: var(--ght-charcoal);
  --text: var(--ght-white);
  --muted: #a8b0c4;
  --accent: var(--ght-cornflower);
  --accent-2: var(--ght-uranian);
  --success: #5fd4a4;
  --warn: #e8b84a;
  --danger: #f07171;
  --border: rgba(160, 221, 255, 0.14);
  --radius: 14px;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background:
    radial-gradient(900px 480px at 8% -5%, rgba(113, 137, 255, 0.22), transparent 58%),
    radial-gradient(700px 420px at 92% 0%, rgba(160, 221, 255, 0.12), transparent 55%),
    linear-gradient(180deg, #0c1e22 0%, var(--bg) 40%);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: var(--ght-uranian);
  text-decoration: none;
}

a:hover {
  color: var(--ght-white);
  text-decoration: underline;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(9, 29, 32, 0.82);
  border-bottom: 1px solid var(--border);
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  flex-wrap: nowrap;
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex: 1 1 auto;
  min-width: 0;
  max-width: min(540px, 62vw);
  color: var(--text);
}

.logo:hover {
  text-decoration: none;
  color: var(--text);
}

.brand-mark {
  gap: 0.75rem;
}

.brand-mark img {
  width: 2.75rem;
  height: 2.75rem;
  flex-shrink: 0;
}

.brand-copy {
  min-width: 0;
}

.brand-title {
  display: block;
  font-family: "Space Grotesk", Inter, system-ui, sans-serif;
  font-size: clamp(0.9rem, 1.25vw, 1.08rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

@media (min-width: 901px) {
  .brand-title {
    white-space: nowrap;
  }
}

.nav {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  flex-wrap: nowrap;
  flex-shrink: 0;
  margin-left: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(0.65rem, 1.4vw, 1.25rem);
  flex-wrap: nowrap;
}

.nav a:not(.btn) {
  color: var(--muted);
  font-size: clamp(0.84rem, 1.1vw, 0.95rem);
  white-space: nowrap;
}

.nav .nav-cta {
  padding: 0.7rem 1.05rem;
  font-size: 0.88rem;
  white-space: nowrap;
}

@media (max-width: 1100px) {
  .logo {
    max-width: min(460px, 56vw);
  }

  .nav-links {
    gap: 0.65rem;
  }

  .nav .nav-cta {
    padding: 0.62rem 0.9rem;
    font-size: 0.84rem;
  }
}

@media (max-width: 900px) {
  .site-header-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .logo {
    max-width: 100%;
  }

  .nav {
    width: 100%;
    justify-content: space-between;
    gap: 0.75rem;
  }
}

@media (max-width: 640px) {
  .nav {
    flex-wrap: wrap;
  }

  .nav-links {
    flex-wrap: wrap;
    row-gap: 0.35rem;
  }

  .nav .nav-cta {
    width: 100%;
    justify-content: center;
  }
}

.nav a:not(.btn):hover {
  color: var(--ght-uranian);
  text-decoration: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  padding: 0.85rem 1.25rem;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: filter 0.15s ease, transform 0.15s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #4d61d4 0%, var(--ght-cornflower) 52%, #5b6fe8 100%);
  color: var(--ght-white);
  text-shadow: 0 1px 2px rgba(9, 29, 32, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 8px 24px rgba(113, 137, 255, 0.35);
}

.btn-primary:hover {
  filter: brightness(1.08);
  color: var(--ght-white);
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-secondary {
  background: rgba(57, 64, 83, 0.45);
  border-color: rgba(160, 221, 255, 0.25);
  color: var(--ght-white);
}

.btn-secondary:hover {
  background: rgba(113, 137, 255, 0.12);
  text-decoration: none;
  color: var(--ght-white);
}

.hero {
  padding: 4.5rem 0 2.5rem;
}

.hero-content {
  max-width: 720px;
}

.hero-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.hero-note {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.eyebrow {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(113, 137, 255, 0.18);
  border: 1px solid rgba(160, 221, 255, 0.22);
  color: var(--ght-uranian);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
  background: linear-gradient(135deg, var(--ght-white) 20%, var(--ght-uranian) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead {
  font-size: 1.125rem;
  color: var(--muted);
  max-width: 58ch;
}

.card {
  background: linear-gradient(165deg, rgba(57, 64, 83, 0.55) 0%, rgba(9, 29, 32, 0.85) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.sample-report-layout {
  display: grid;
  grid-template-columns: minmax(220px, 280px) 1fr;
  gap: 1.5rem;
  padding: 1.5rem;
}

@media (max-width: 800px) {
  .sample-report-layout {
    grid-template-columns: 1fr;
  }
}

.sample-report-summary {
  border-right: 1px solid var(--border);
  padding-right: 1.5rem;
}

@media (max-width: 800px) {
  .sample-report-summary {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding-right: 0;
    padding-bottom: 1.25rem;
  }
}

.sample-meta {
  color: var(--muted);
  margin: 0 0 1rem;
  font-size: 0.92rem;
}

.sample-stats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.sample-stats strong {
  color: var(--ght-uranian);
}

.item-note {
  color: var(--muted);
  font-size: 0.9rem;
}

.cta-card {
  padding: 2rem;
  text-align: center;
  background: linear-gradient(165deg, rgba(113, 137, 255, 0.14) 0%, rgba(9, 29, 32, 0.95) 100%);
}

.score-ring {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: conic-gradient(var(--ght-cornflower) 0 62%, rgba(128, 128, 128, 0.25) 62% 100%);
  margin-bottom: 1rem;
  box-shadow: 0 0 0 4px rgba(113, 137, 255, 0.12);
}

.score-ring span {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--surface);
  font-weight: 700;
  color: var(--ght-uranian);
}

.section {
  padding: 3.5rem 0;
}

.section h2 {
  font-size: 1.8rem;
  margin: 0 0 0.75rem;
  color: var(--ght-white);
}

.section-intro {
  color: var(--muted);
  max-width: 70ch;
  margin-bottom: 1.75rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

@media (max-width: 800px) {
  .steps {
    grid-template-columns: 1fr;
  }
}

.step {
  padding: 1.25rem;
}

.step-num {
  color: var(--ght-cornflower);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.action-list {
  display: grid;
  gap: 0.75rem;
}

.action-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  background: rgba(113, 137, 255, 0.05);
  border: 1px solid rgba(160, 221, 255, 0.1);
}

.badge {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  white-space: nowrap;
}

.badge-critical {
  background: rgba(240, 113, 113, 0.18);
  color: var(--danger);
}

.badge-high {
  background: rgba(232, 184, 74, 0.18);
  color: var(--warn);
}

.badge-warn {
  background: rgba(232, 184, 74, 0.14);
  color: var(--warn);
}

.badge-ok {
  background: rgba(95, 212, 164, 0.2);
  color: var(--success);
}

.legal-page {
  padding: 3rem 0 4rem;
}

.legal-page h1 {
  font-size: 2.2rem;
  background: none;
  color: var(--ght-white);
  -webkit-text-fill-color: var(--ght-white);
}

.legal-page h2 {
  margin-top: 2rem;
  font-size: 1.25rem;
  color: var(--ght-uranian);
}

.legal-page p,
.legal-page li {
  color: var(--muted);
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 2rem 0 3rem;
  color: var(--muted);
  font-size: 0.92rem;
  background: rgba(9, 29, 32, 0.5);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-grid strong {
  color: var(--ght-white);
}

.site-disclaimer {
  margin: 0.75rem 0 0;
  font-size: 0.8rem;
  color: var(--ght-gray);
  line-height: 1.45;
  white-space: nowrap;
}

@media (max-width: 720px) {
  .site-disclaimer {
    white-space: normal;
  }
}
