:root {
  --indigo: #262396;
  --indigo-mid: #3b38c8;
  --indigo-light: #4e4add;
  --purple-cta: #4b47e5;
  --purple-cta-dark: #3a37c9;
  --dark-navy: #0a0820;
  --masthead-dark: #11091f;
  --dark-section: #1a1840;
  --dark-section-2: #2e2b6a;
  --white: #ffffff;
  --ink: #1a1633;
  --muted-1: #54506a;
  --muted-2: #6b6585;
  --muted-3: #8a85a0;
  --muted-4: #9a95ac;
  --border-light: #edeaf6;
  --border-soft: #e7e4f0;
  --bg-soft: #f7f6fc;
  --bg-soft-2: #f6f5fb;
  --risk-low: #15803d;
  --risk-low-bg: #eef6ee;
  --risk-low-border: #cfe7cf;
  --risk-medium: #b45309;
  --risk-medium-bg: #fcf3e3;
  --risk-medium-border: #efd9b0;
  --risk-high: #b91c1c;
  --risk-high-bg: #fbecec;
  --risk-high-border: #f1cfcf;
  --font-display: "Space Grotesk", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Hanken Grotesk", "Helvetica Neue", Arial, sans-serif;
  --font-accent: "Newsreader", Georgia, serif;
  --font-mono: "Space Mono", monospace;
}

* {
  box-sizing: border-box;
}

@keyframes ceaSpin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes ceaUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes ceaTwinkle {
  0%,
  100% {
    opacity: 0.25;
    transform: scale(0.82);
  }
  50% {
    opacity: 0.9;
    transform: scale(1.12);
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 22px;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
}

.accent {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 500;
}

.hidden {
  display: none !important;
}

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

/* Decorative motifs shared across dark sections */

.dotted-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.11) 1.2px, transparent 1.2px);
  background-size: 26px 26px;
  -webkit-mask-image: radial-gradient(125% 72% at 50% 2%, #000 36%, transparent 80%);
  mask-image: radial-gradient(125% 72% at 50% 2%, #000 36%, transparent 80%);
  pointer-events: none;
}

.sparkle {
  position: absolute;
  color: #fff;
  opacity: 0.5;
  pointer-events: none;
  animation-name: ceaTwinkle;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.17);
  color: #d5d1ff;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.14em;
  padding: 7px 15px;
  border-radius: 999px;
  margin-bottom: 26px;
}

.badge-pill-dark {
  background: rgba(124, 92, 255, 0.2);
  border: 1px solid rgba(124, 92, 255, 0.35);
  color: #c4b8ff;
  letter-spacing: 0.1em;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #7ce39b;
  box-shadow: 0 0 0 3px rgba(124, 227, 155, 0.25);
  flex: none;
}

/* Logo mark: pure CSS envelope (bordered rounded rect + triangle flap) */

.logo-mark {
  position: relative;
  width: 28px;
  height: 20px;
  border: 2.5px solid #fff;
  border-radius: 5px;
  flex: none;
}
.logo-mark::before {
  content: "";
  position: absolute;
  left: -2.5px;
  top: -2.5px;
  width: 0;
  height: 0;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-top: 10px solid #fff;
}
.logo-mark-footer {
  width: 24px;
  height: 17px;
  border-color: rgba(255, 255, 255, 0.8);
}
.logo-mark-footer::before {
  border-left-width: 12px;
  border-right-width: 12px;
  border-top-width: 9px;
  border-top-color: rgba(255, 255, 255, 0.8);
  left: -2px;
  top: -2px;
}

/* Hero */

.hero {
  position: relative;
  overflow: hidden;
  background: var(--indigo);
  background-image: radial-gradient(130% 110% at 50% -8%, var(--indigo-light) 0%, var(--indigo-mid) 44%, #232093 100%);
  padding-bottom: 64px;
}

.hero-container {
  position: relative;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0 12px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.wordmark {
  font-family: var(--font-display);
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.15em;
  font-size: 14.5px;
  margin: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 500;
  padding: 9px 13px;
  border-radius: 10px;
}

.nav-cta {
  cursor: pointer;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  padding: 9px 18px;
  border-radius: 10px;
  transition: background 0.15s;
}
.nav-cta:hover {
  background: rgba(255, 255, 255, 0.24);
}

.hero-content {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  padding: 52px 0 0;
}

.hero h1 {
  font-weight: 700;
  color: #fff;
  font-size: clamp(42px, 6.8vw, 72px);
  line-height: 1.0;
  letter-spacing: -0.025em;
  margin: 0 0 22px;
}
.hero h1 .accent {
  letter-spacing: 0.01em;
}

.subhead {
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(16px, 2.1vw, 19px);
  line-height: 1.58;
  max-width: 580px;
  margin: 0 auto 34px;
}

.check-form {
  background: #fff;
  border-radius: 18px;
  padding: 10px;
  display: flex;
  gap: 10px;
  max-width: 560px;
  margin: 0 auto;
  box-shadow: 0 28px 70px -20px rgba(14, 10, 52, 0.65);
  flex-wrap: wrap;
}

.check-form input[type="email"] {
  flex: 1 1 240px;
  min-width: 0;
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: 17px;
  color: var(--ink);
  padding: 14px 16px;
  background: transparent;
}

.check-form button {
  border: none;
  cursor: pointer;
  background: var(--purple-cta);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  padding: 14px 22px;
  border-radius: 12px;
  white-space: nowrap;
  transition: background 0.15s ease;
}
.check-form button:hover {
  background: var(--purple-cta-dark);
}
.check-form button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.microcopy {
  color: rgba(255, 255, 255, 0.52);
  font-size: 13.5px;
  margin: 14px 0 0;
  letter-spacing: 0.01em;
  text-align: center;
}

/* Trust band */

.trust-band {
  background: #fff;
  padding: 62px 22px;
  border-bottom: 1px solid var(--border-light);
}

.trust-label {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-4);
  font-weight: 500;
  margin: 0 0 22px;
  text-align: center;
}

.trust-pills {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.trust-pill {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  color: var(--muted-2);
  background: var(--bg-soft);
  border: 1px solid var(--border-soft);
  padding: 10px 18px;
  border-radius: 999px;
}

/* Generic section heading rhythm */

main section h2,
.report-contents h2 {
  font-weight: 700;
  font-size: clamp(26px, 4vw, 36px);
  text-align: center;
  margin: 0 0 46px;
  letter-spacing: -0.02em;
  line-height: 1.08;
}

main section {
  padding: 72px 0;
}

/* How it works */

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

.step-card {
  background: var(--bg-soft);
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  padding: 28px 24px;
}

.step-number {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--purple-cta);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 16px;
}

.step-card p {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--ink);
}

/* $5 report features (dark) */

.report-contents {
  position: relative;
  overflow: hidden;
  background: var(--dark-navy);
  background-image: radial-gradient(130% 90% at 70% -5%, #221755 0%, var(--dark-navy) 62%);
}
.report-contents .dotted-grid {
  -webkit-mask-image: radial-gradient(110% 70% at 50% 50%, #000 40%, transparent 80%);
  mask-image: radial-gradient(110% 70% at 50% 50%, #000 40%, transparent 80%);
}

.section-eyebrow-wrap {
  text-align: center;
  margin-bottom: 0;
}

.report-contents h2 {
  color: #fff;
  margin: 0 0 50px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 24px;
}

.feature-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16.5px;
  color: #fff;
  margin-bottom: 7px;
}

.feature-body {
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.62);
}

/* Why it matters */

.why-it-matters .container {
  max-width: 680px;
}

.prose {
  font-size: 17px;
  line-height: 1.65;
  color: var(--muted-1);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.prose p {
  margin: 0;
}

.methodology .container,
.worked-example .container {
  max-width: 680px;
}

/* Worked example */

.example-disclaimer {
  text-align: center;
  font-size: 13.5px;
  color: var(--muted-3);
  margin: -28px 0 36px;
}

.example-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.example-label {
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
  margin-bottom: 14px;
}

.example-stats {
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.example-stats li {
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted-1);
}

.example-stats-sub {
  color: var(--muted-3);
}

.example-verdict {
  display: inline-flex;
  font-weight: 700;
  font-size: 13px;
  padding: 6px 12px;
  border-radius: 999px;
}
.example-verdict-low {
  color: var(--risk-low);
  background: var(--risk-low-bg);
  border: 1px solid var(--risk-low-border);
}
.example-verdict-high {
  color: var(--risk-high);
  background: var(--risk-high-bg);
  border: 1px solid var(--risk-high-border);
}

/* FAQ */

.faq {
  background: var(--bg-soft-2);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.faq .container {
  max-width: 680px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 15px;
  overflow: hidden;
}

.faq-toggle {
  width: 100%;
  cursor: pointer;
  border: none;
  background: transparent;
  text-align: left;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--font-body);
}

.faq-question {
  font-weight: 600;
  font-size: 16px;
  color: var(--ink);
}

.faq-sign {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  color: var(--purple-cta);
  flex: none;
  line-height: 1;
}

.faq-answer {
  padding: 0 22px 22px;
}

.faq-answer p {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--muted-1);
}

/* Final CTA */

.final-cta {
  position: relative;
  overflow: hidden;
  background: var(--indigo);
  background-image: radial-gradient(130% 120% at 50% -5%, var(--indigo-light) 0%, var(--indigo-mid) 42%, #232093 100%);
  text-align: center;
}
.final-cta .dotted-grid {
  -webkit-mask-image: radial-gradient(120% 80% at 50% 50%, #000 36%, transparent 78%);
  mask-image: radial-gradient(120% 80% at 50% 50%, #000 36%, transparent 78%);
}

.final-cta .container {
  max-width: 640px;
  position: relative;
}

.final-cta h2 {
  color: #fff;
  font-size: clamp(30px, 4.8vw, 48px);
  margin: 0 0 18px;
  letter-spacing: -0.025em;
  line-height: 1.0;
}

.final-cta p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 17px;
  line-height: 1.6;
  margin: 0 0 34px;
}

.white-cta-button {
  cursor: pointer;
  border: none;
  background: #fff;
  color: var(--indigo);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  padding: 17px 36px;
  border-radius: 13px;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
  box-shadow: 0 16px 40px -14px rgba(10, 8, 40, 0.5);
}
.white-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 48px -14px rgba(10, 8, 40, 0.6);
}

/* Footer */

.site-footer {
  background: var(--dark-navy);
  color: rgba(255, 255, 255, 0.55);
}

.site-footer .container {
  max-width: 780px;
  padding: 44px 22px;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-bottom: 18px;
}

.footer-brand .wordmark {
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
}

.site-footer p {
  font-size: 13.5px;
  line-height: 1.65;
  max-width: 600px;
  margin: 0 auto 16px;
}

.site-footer a {
  color: #a09cff;
  text-decoration: none;
  font-weight: 600;
}

/* ===================================================================
   Results section (free result / locked card / unlocked report)
   =================================================================== */

.result-section {
  position: relative;
  overflow: hidden;
  background: var(--dark-section);
  background-image: radial-gradient(110% 80% at 50% 0%, var(--dark-section-2) 0%, var(--dark-section) 60%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.result-section .dotted-grid {
  -webkit-mask-image: radial-gradient(100% 60% at 50% 0%, #000 30%, transparent 72%);
  mask-image: radial-gradient(100% 60% at 50% 0%, #000 30%, transparent 72%);
}

.result-container {
  position: relative;
  max-width: 680px;
  padding: 42px 30px 56px;
}

.address-pill-row {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 20px;
}

.address-pill-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.address-pill {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 5px 13px;
  border-radius: 999px;
}

.loading-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 15px;
}

.spinner {
  width: 22px;
  height: 22px;
  border: 3px solid rgba(255, 255, 255, 0.15);
  border-top-color: #a09cff;
  border-radius: 50%;
  animation: ceaSpin 0.7s linear infinite;
  flex: none;
}
.spinner-small {
  width: 17px;
  height: 17px;
  border: 3px solid #d8d4fa;
  border-top-color: var(--purple-cta);
}

#free-result-wrap.hidden,
#free-result-wrap {
  animation: ceaUp 0.45s ease both;
}

.free-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 20px;
  padding: 26px 24px;
}

.free-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 22px;
}

.free-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(124, 227, 155, 0.15);
  border: 1px solid rgba(124, 227, 155, 0.28);
  color: #7ce39b;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 4px 11px;
  border-radius: 999px;
}

.free-card-total {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.42);
}

.free-card-headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(22px, 3.8vw, 28px);
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin-bottom: 8px;
}

.free-card-subtitle {
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 0;
}

@keyframes ceaPop {
  0% {
    transform: scale(0.7);
    opacity: 0;
  }
  70% {
    transform: scale(1.08);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.age-counter {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 18px;
}

.age-cell {
  background: rgba(8, 6, 30, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 22px 12px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  animation: ceaPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
.age-cell:nth-child(2) {
  animation-delay: 0.08s;
}
.age-cell:nth-child(3) {
  animation-delay: 0.16s;
}

.age-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(40px, 9vw, 60px);
  line-height: 1;
  color: #fff;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.01em;
  text-shadow: 0 0 28px rgba(124, 227, 155, 0.25);
}

.age-unit {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #7ce39b;
}

.age-caption {
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.5;
}

.age-domain-note {
  color: rgba(255, 255, 255, 0.4);
  font-size: 13px;
  margin-top: 8px;
}

.attribution {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  margin: 12px 4px 0;
}

.attribution a {
  color: #a09cff;
}

.free-card-error {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
}

/* Locked card -- checkmark + label + blurred-placeholder rows */

.locked-card {
  margin-top: 14px;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 56px -20px rgba(8, 6, 30, 0.6);
}

.locked-card-header {
  padding: 24px 24px 16px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.locked-card-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--ink);
  margin-bottom: 4px;
}

.locked-card-sub {
  font-size: 14px;
  color: var(--muted-2);
}

.dollar-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(75, 71, 229, 0.09);
  border: 1px solid rgba(75, 71, 229, 0.18);
  color: var(--purple-cta);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 5px 12px;
  border-radius: 999px;
}

.teaser-rows {
  padding: 0 24px;
}

.teaser-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 0;
  border-top: 1px solid #f0eef8;
}

.teaser-check {
  color: var(--purple-cta);
  font-size: 14px;
  flex: none;
}

.teaser-label {
  font-weight: 600;
  font-size: 14.5px;
  color: var(--ink);
  flex: 1;
}

.teaser-blur {
  height: 9px;
  width: 52px;
  border-radius: 5px;
  background: linear-gradient(90deg, #edeaf7, #e3def6, #edeaf7);
  filter: blur(2px);
  flex: none;
}

.locked-card-action {
  padding: 18px 24px 24px;
}

.verifying-payment {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px;
  background: #efedff;
  border-radius: 13px;
  color: var(--purple-cta);
  font-weight: 600;
  font-size: 14.5px;
}

.unlock-button {
  display: block;
  width: 100%;
  cursor: pointer;
  border: none;
  background: var(--purple-cta);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  padding: 15px;
  border-radius: 12px;
  box-shadow: 0 12px 28px -10px rgba(75, 71, 229, 0.55);
  transition: background 0.15s ease, transform 0.12s ease;
}
.unlock-button:hover {
  background: var(--purple-cta-dark);
  transform: translateY(-1px);
}
.unlock-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.unlock-microcopy {
  text-align: center;
  margin-top: 10px;
  color: var(--muted-4);
  font-size: 12.5px;
}

.error-text {
  color: var(--risk-high);
  font-size: 0.9rem;
  margin-top: 12px;
  text-align: center;
}

/* Unlocked report */

.unlocked-report {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: ceaUp 0.5s ease both;
}

#unlocked-report-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.verdict-banner {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 22px 24px;
}

.verdict-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.verdict-head-left {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.verdict-eyebrow {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 600;
}

.verdict-badge {
  align-self: flex-start;
}

.verdict-score {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1;
  display: flex;
  align-items: baseline;
}
.verdict-score-num {
  font-size: 44px;
}
.verdict-score-max {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.4);
  margin-left: 2px;
}
.verdict-low .verdict-score-num {
  color: #7ce39b;
}
.verdict-medium .verdict-score-num {
  color: #f0c060;
}
.verdict-high .verdict-score-num {
  color: #ff8f87;
}

.verdict-meter {
  position: relative;
  height: 8px;
  border-radius: 6px;
  background: linear-gradient(90deg, #dc2626 0%, #e0a21a 45%, #16a34a 100%);
  margin-bottom: 18px;
}
.verdict-meter-pointer {
  position: absolute;
  top: -4px;
  transform: translateX(-50%);
  width: 4px;
  height: 16px;
  border-radius: 2px;
  background: #fff;
  box-shadow: 0 0 0 2px rgba(8, 6, 30, 0.5);
}

.verdict-badge {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  padding: 4px 13px;
  border-radius: 999px;
}

.verdict-low .verdict-badge {
  color: var(--risk-low);
  background: var(--risk-low-bg);
  border: 1px solid var(--risk-low-border);
}
.verdict-medium .verdict-badge {
  color: var(--risk-medium);
  background: var(--risk-medium-bg);
  border: 1px solid var(--risk-medium-border);
}
.verdict-high .verdict-badge {
  color: var(--risk-high);
  background: var(--risk-high-bg);
  border: 1px solid var(--risk-high-border);
}

.verdict-reasons {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.verdict-reason {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
}

.reason-arrow {
  font-weight: 700;
  flex: none;
  margin-top: 1px;
}
.verdict-low .reason-arrow {
  color: var(--risk-low);
}
.verdict-medium .reason-arrow {
  color: var(--risk-medium);
}
.verdict-high .reason-arrow {
  color: var(--risk-high);
}

.stats-grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.info-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 20px;
}

.info-card-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: rgba(255, 255, 255, 0.42);
  font-weight: 600;
  margin-bottom: 8px;
}

.info-card-label-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 14px;
}

.info-card-credit {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.35);
}

.info-card-big {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 26px;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
}

.info-card-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.mail-setup-rows {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 10px;
}

.mail-setup-row {
  display: flex;
  justify-content: space-between;
  font-size: 13.5px;
}

.mail-setup-row span:first-child {
  color: rgba(255, 255, 255, 0.55);
}

.setup-ok {
  font-weight: 600;
  color: #7ce39b;
}
.setup-bad {
  font-weight: 600;
  color: #ff8f87;
}
.setup-neutral {
  font-weight: 600;
  color: #fff;
  text-align: right;
  max-width: 60%;
}

.risk-chips {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.risk-chip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 11px 13px;
  border-radius: 11px;
}

.risk-chip-ok {
  background: rgba(124, 227, 155, 0.1);
  border: 1px solid rgba(124, 227, 155, 0.22);
}
.risk-chip-bad {
  background: rgba(255, 143, 135, 0.12);
  border: 1px solid rgba(255, 143, 135, 0.3);
}

.risk-chip-label {
  font-weight: 600;
  font-size: 14px;
  color: #fff;
}

.risk-chip-value {
  font-weight: 600;
  font-size: 13px;
  white-space: nowrap;
}
.risk-chip-ok .risk-chip-value {
  color: #7ce39b;
}
.risk-chip-bad .risk-chip-value {
  color: #ff8f87;
}

.intel-table {
  display: flex;
  flex-direction: column;
}

.intel-row {
  display: grid;
  grid-template-columns: 1fr 1.4fr auto;
  align-items: start;
  gap: 12px;
  padding: 16px 2px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.intel-row:first-child {
  border-top: none;
  padding-top: 4px;
}

.intel-row-head {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.35);
  font-weight: 600;
  align-items: center;
  padding-top: 0;
  padding-bottom: 10px;
}

.intel-component {
  font-weight: 600;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.85);
}

.intel-value-wrap {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.intel-value {
  font-family: var(--font-mono);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  word-break: break-all;
}

.intel-explain {
  font-size: 12px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.42);
}

.risk-pill {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.04em;
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
}
.risk-pill-low {
  color: #7ce39b;
  background: rgba(124, 227, 155, 0.12);
  border: 1px solid rgba(124, 227, 155, 0.28);
}
.risk-pill-medium {
  color: #f0c060;
  background: rgba(240, 192, 96, 0.12);
  border: 1px solid rgba(240, 192, 96, 0.28);
}
.risk-pill-high {
  color: #ff8f87;
  background: rgba(255, 143, 135, 0.12);
  border: 1px solid rgba(255, 143, 135, 0.3);
}

.history-list {
  display: flex;
  flex-direction: column;
}

.history-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.history-row:first-child {
  border-top: none;
}

.history-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #a09cff;
  flex: none;
}

.history-main {
  flex: 1;
  min-width: 0;
}

.history-name {
  font-weight: 600;
  font-size: 14px;
  color: #fff;
}

.history-types {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
}

.history-year {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  flex: none;
}

.empty-state {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
}

.identity-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.identity-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7c5cff, var(--purple-cta));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  flex: none;
}

.identity-main {
  flex: 1;
  min-width: 0;
}

.identity-name {
  font-weight: 700;
  font-size: 15px;
  color: #fff;
}

.identity-headline {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 8px;
}

.identity-pills {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
}

.verified-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 500;
  color: #7ce39b;
  background: rgba(124, 227, 155, 0.1);
  border: 1px solid rgba(124, 227, 155, 0.25);
  padding: 4px 10px;
  border-radius: 999px;
}
.verified-pill a {
  color: inherit;
  text-decoration: none;
}

.download-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  padding: 4px 0 2px;
}

.download-pdf-button {
  cursor: pointer;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  padding: 12px 20px;
  border-radius: 11px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.15s ease;
}
.download-pdf-button:hover {
  background: rgba(255, 255, 255, 0.18);
}

.hibp-credit-dark {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
}
.hibp-credit-dark a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  font-weight: 600;
}

/* ===================================================================
   Print report -- hidden on screen, shown only via window.print().
   =================================================================== */

.print-report {
  display: none;
}

@media print {
  /* Hide every live page section, regardless of its tag/class, and show only
     the dedicated print document. Enumerating selectors is fragile -- the
     result section is a direct body child too, so hide-all + opt-in is safer. */
  body > * {
    display: none !important;
  }
  .print-report {
    display: block !important;
  }

  @page {
    size: letter;
    margin: 0;
  }
  html {
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
  html,
  body {
    margin: 0;
    padding: 0;
    background: #fff;
  }

  .print-hdr-space,
  .print-ftr-space {
    display: table-cell !important;
    height: 0.6in !important;
  }
  .print-running-hdr,
  .print-running-ftr {
    display: flex !important;
    justify-content: space-between;
    align-items: baseline;
    position: fixed !important;
    left: 0;
    right: 0;
    margin: 0 !important;
    font-size: 10px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--muted-4);
    font-family: var(--font-mono);
  }
  .print-running-hdr {
    top: 0;
    padding: 0.28in 0.7in 0 !important;
  }
  .print-running-ftr {
    bottom: 0;
    padding: 0 0.7in 0.28in !important;
  }

  .print-doc h1,
  .print-doc h2,
  .print-doc h3 {
    break-after: avoid;
  }
  .print-keep {
    break-inside: avoid;
  }
}

.print-doc {
  box-sizing: border-box;
  max-width: 8.5in;
  margin: 0 auto;
  background: #fff;
  padding: 0 0 96px;
  font-family: var(--font-body);
  color: var(--ink);
}

.print-doc-frame {
  width: 100%;
  border-collapse: collapse;
}
.print-doc-frame td {
  padding: 0;
}

.print-hdr-space,
.print-ftr-space,
.print-running-hdr,
.print-running-ftr {
  display: none;
}

.print-masthead {
  background: var(--masthead-dark);
  background-image: radial-gradient(120% 130% at 85% -20%, #2a1356 0%, var(--masthead-dark) 62%);
  color: #fff;
  padding: 30px 44px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.print-masthead .brand {
  gap: 11px;
}

.print-masthead-label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
}

.print-title-block {
  padding: 40px 44px 0;
}

.print-title-block h1 {
  font-weight: 700;
  font-size: 38px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
  color: var(--ink);
}

.print-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0 34px;
  font-size: 13.5px;
  color: var(--muted-1);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 14px 0;
}

.print-meta-row .meta-key {
  color: var(--muted-4);
}
.print-meta-row .meta-value {
  font-weight: 600;
  color: var(--ink);
}
.print-meta-row .meta-mono {
  font-family: var(--font-mono);
}

.print-verdict-box {
  margin: 30px 44px 0;
  border-radius: 18px;
  padding: 28px 30px;
}
.print-verdict-box.verdict-low {
  background: #f7fbf7;
  border: 1px solid #d7ead7;
}
.print-verdict-box.verdict-medium {
  background: #fcf9f0;
  border: 1px solid var(--risk-medium-border);
}
.print-verdict-box.verdict-high {
  background: #fdf4f4;
  border: 1px solid var(--risk-high-border);
}

.print-verdict-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}

.print-verdict-text {
  flex: 1;
  min-width: 240px;
}

.print-verdict-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.verdict-low .print-verdict-badge {
  background: var(--risk-low);
}
.verdict-medium .print-verdict-badge {
  background: var(--risk-medium);
}
.verdict-high .print-verdict-badge {
  background: var(--risk-high);
}

.print-verdict-summary {
  margin: 0;
  font-size: 16.5px;
  line-height: 1.55;
  color: var(--ink);
  font-weight: 500;
}

.print-score-wrap {
  text-align: center;
  flex: none;
}

.print-score-number {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 64px;
  line-height: 0.9;
}
.verdict-low .print-score-number {
  color: var(--risk-low);
}
.verdict-medium .print-score-number {
  color: var(--risk-medium);
}
.verdict-high .print-score-number {
  color: var(--risk-high);
}

.print-score-label {
  font-size: 12px;
  color: var(--muted-2);
  margin-top: 4px;
  letter-spacing: 0.03em;
}

.print-meter-wrap {
  margin-top: 24px;
}

.print-meter-track {
  position: relative;
  height: 9px;
  border-radius: 6px;
  background: linear-gradient(90deg, #dc2626 0%, #e0a21a 42%, #16a34a 100%);
}

.print-meter-pointer {
  position: absolute;
  top: -5px;
  transform: translateX(-50%);
  width: 3px;
  height: 19px;
  border-radius: 2px;
  background: var(--masthead-dark);
}

.print-meter-scale {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-size: 11px;
  color: var(--muted-4);
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
}

.print-findings-grid {
  padding: 26px 44px 0;
}

.print-findings-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-3);
  margin-bottom: 14px;
}

.print-tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.print-tile {
  border: 1px solid var(--border-light);
  border-radius: 13px;
  padding: 16px;
}

.print-tile-label {
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted-4);
  font-weight: 600;
  margin-bottom: 9px;
}

.print-tile-value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 25px;
  color: var(--ink);
  line-height: 1;
}

.print-tile-sub {
  font-size: 11.5px;
  color: var(--muted-3);
  margin-top: 5px;
}

.print-section {
  padding: 32px 44px 0;
}

.print-section-heading {
  font-weight: 700;
  font-size: 21px;
  margin: 0 0 6px;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 11px;
}

.print-section-heading .section-num {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--purple-cta);
}

.print-section-underline {
  height: 2px;
  background: var(--purple-cta);
  width: 32px;
  margin: 0 0 16px;
}

.print-prose {
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted-1);
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.print-prose p {
  margin: 0;
}

.print-table {
  border: 1px solid var(--border-light);
  border-radius: 13px;
  overflow: hidden;
}

.print-table-head {
  display: grid;
  background: var(--bg-soft);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted-4);
  font-weight: 600;
  padding: 10px 16px;
}

.print-table-row {
  display: grid;
  align-items: center;
  padding: 13px 16px;
  border-top: 1px solid #efedf7;
  font-size: 13.5px;
}

.print-history-table .print-table-head,
.print-history-table .print-table-row {
  grid-template-columns: 64px 1fr auto;
}

.print-table-row .history-year-mono {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 13px;
  color: var(--purple-cta);
}

.print-table-row .history-name {
  font-weight: 600;
  color: var(--ink);
}

.print-table-row .history-types-right {
  font-size: 12.5px;
  color: var(--muted-3);
  text-align: right;
}

.print-two-up {
  padding: 32px 44px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.print-info-card {
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 22px;
}

.print-info-card h3 {
  font-weight: 700;
  font-size: 16px;
  margin: 0 0 14px;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 9px;
}
.print-info-card h3 .section-num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--purple-cta);
}

.print-info-big {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 32px;
  color: var(--ink);
  line-height: 1;
}

.print-info-sub {
  font-size: 13px;
  color: var(--muted-3);
  margin-top: 5px;
}

.print-info-rows {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  font-size: 13.5px;
}

.print-info-row {
  display: flex;
  justify-content: space-between;
}
.print-info-row span:first-child {
  color: var(--muted-1);
}
.print-info-row .value-ok {
  font-weight: 600;
  color: var(--risk-low);
}
.print-info-row .value-bad {
  font-weight: 600;
  color: var(--risk-high);
}
.print-info-row .value-neutral {
  font-weight: 600;
  color: var(--ink);
}

.print-card-note {
  font-size: 12px;
  color: var(--muted-3);
  margin: 14px 0 0;
  line-height: 1.5;
}

.print-identity-card {
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 22px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.print-identity-avatar {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7c5cff, var(--purple-cta));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  flex: none;
}

.print-identity-name {
  font-weight: 700;
  font-size: 18px;
  color: var(--ink);
}

.print-identity-headline {
  font-size: 13.5px;
  color: var(--muted-3);
}

.print-identity-pills {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
}

.print-verified-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--risk-low);
  background: var(--risk-low-bg);
  border: 1px solid var(--risk-low-border);
  padding: 6px 12px;
  border-radius: 999px;
}

.print-breakdown-table .print-table-head,
.print-breakdown-table .print-table-row {
  grid-template-columns: 1.3fr 1.6fr 0.9fr;
}

.print-intel-table .print-table-head,
.print-intel-table .print-table-row {
  grid-template-columns: 1fr 1.6fr 0.8fr;
}

.print-intel-table .print-table-row {
  align-items: start;
  row-gap: 6px;
}

.print-intel-explain {
  grid-column: 1 / -1;
  font-size: 11.5px;
  line-height: 1.5;
  color: var(--muted-3);
}

.print-breakdown-table .print-table-row span:last-child {
  text-align: right;
  font-weight: 700;
}

.impact-positive {
  color: var(--risk-low);
}
.impact-negative {
  color: var(--risk-high);
}
.impact-neutral {
  color: var(--muted-3);
  font-weight: 600 !important;
}

.print-breakdown-composite {
  border-top: 2px solid var(--border-light);
  background: #f7fbf7;
  font-family: var(--font-display);
}

.print-disclaimer {
  padding: 30px 44px 0;
  border-top: 1px solid var(--border-light);
  margin-top: 18px;
  font-size: 11.5px;
  line-height: 1.6;
  color: var(--muted-4);
}
.print-disclaimer p {
  margin: 0 0 8px;
}
.print-disclaimer strong {
  color: var(--purple-cta);
}

@media (max-width: 860px) {
  .steps-grid,
  .features-grid,
  .stats-grid-2col,
  .example-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .nav-links a {
    display: none;
  }
}

@media (max-width: 480px) {
  .check-form {
    flex-direction: column;
  }

  /* flex-basis is an axis-relative length -- in column direction the 240px
     basis from the desktop row layout would otherwise apply to height, not
     width, stretching the input to ~240px tall. Reset both children to their
     natural size and let width:100% control sizing instead. */
  .check-form input[type="email"],
  .check-form button {
    flex: 0 0 auto;
    width: 100%;
  }
}
