/* ═══════════════════════════════════════════════════════════
   PRISM — Shared Stylesheet  · useprism.health
   Solved Development Labs · 2026
   ═══════════════════════════════════════════════════════════ */

@import url("https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=DM+Sans:wght@300;400;500;600&display=swap");

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  --dark: #0b1120;
  --navy: #111827;
  --slate: #1e293b;
  --teal: #0d9488;
  --teal-lt: #14b8a6;
  --teal-dim: #0d948822;
  --mist: #f0fdfa;
  --fog: #e2e8f0;
  --body: #94a3b8;
  --white: #ffffff;
  --radius: 12px;
}

/* ── RESET ──────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}

/* ── BASE ───────────────────────────────────────────────── */
body {
  background: var(--dark);
  color: var(--white);
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

/* ── NAV ────────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  background: rgba(11, 17, 32, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo img.prism-logo {
  width: 30px;
  height: 30px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
}

.nav-logo .wordmark {
  font-family: "DM Serif Display", serif;
  font-size: 22px;
  color: var(--white);
  letter-spacing: -0.5px;
}

.nav-logo .by-solved {
  font-size: 12px;
  font-weight: 500;
  color: var(--teal);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-cta {
  background: var(--teal);
  color: var(--white);
  border: none;
  padding: 10px 22px;
  border-radius: 6px;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.15s;
  text-decoration: none;
}
.nav-cta:hover {
  background: var(--teal-lt);
  transform: translateY(-1px);
}

.nav-back {
  font-size: 14px;
  font-weight: 400;
  color: var(--body);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}
.nav-back:hover {
  color: var(--white);
}

@media (max-width: 768px) {
  nav {
    padding: 16px 20px;
  }
}

@media (max-width: 640px) {
  nav {
    display: none;
  }
}
/* ── HERO ───────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(13, 148, 136, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

.prism-graphic {
  position: absolute;
  top: 8%;
  right: -60px;
  width: 420px;
  opacity: 0.12;
  pointer-events: none;
}
@media (max-width: 768px) {
  .prism-graphic {
    display: none;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(13, 148, 136, 0.12);
  border: 1px solid rgba(13, 148, 136, 0.3);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 500;
  color: var(--teal-lt);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 32px;
  animation: fadeUp 0.8s ease both;
  position: relative;
  z-index: 1;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--teal-lt);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.4);
  }
}

.hero h1 {
  font-family: "DM Serif Display", serif;
  font-size: clamp(42px, 7vw, 80px);
  line-height: 1.08;
  letter-spacing: -2px;
  color: var(--white);
  max-width: 820px;
  animation: fadeUp 0.8s 0.1s ease both;
  position: relative;
  z-index: 1;
}

.hero h1 em {
  font-style: italic;
  color: var(--teal-lt);
}

.hero-sub {
  margin-top: 24px;
  font-size: clamp(16px, 2.5vw, 20px);
  font-weight: 300;
  color: var(--body);
  max-width: 580px;
  line-height: 1.7;
  animation: fadeUp 0.8s 0.2s ease both;
  position: relative;
  z-index: 1;
}

.hero-actions {
  margin-top: 40px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeUp 0.8s 0.3s ease both;
  position: relative;
  z-index: 1;
}

.hero-proof {
  margin-top: 64px;
  animation: fadeUp 0.8s 0.4s ease both;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.proof-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
}

.proof-stat {
  font-family: "DM Serif Display", serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  font-style: italic;
}

/* ── BUTTONS ────────────────────────────────────────────── */
.btn-primary {
  background: var(--teal);
  color: var(--white);
  border: none;
  padding: 16px 32px;
  border-radius: 8px;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-primary:hover {
  background: var(--teal-lt);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(13, 148, 136, 0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--body);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 16px 28px;
  border-radius: 8px;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}
.btn-secondary:hover {
  border-color: var(--teal);
  color: var(--white);
}

/* ── DIVIDER ────────────────────────────────────────────── */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(13, 148, 136, 0.3), transparent);
  margin: 0 48px;
  position: relative;
  z-index: 1;
}

/* ── SECTIONS ───────────────────────────────────────────── */
section {
  position: relative;
  z-index: 1;
  padding: 100px 24px;
  max-width: 1160px;
  margin: 0 auto;
}

.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}

.section-h2 {
  font-family: "DM Serif Display", serif;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.1;
  letter-spacing: -1px;
  color: var(--white);
  max-width: 680px;
}

.section-h2 em {
  font-style: italic;
  color: var(--teal-lt);
}

.section-body {
  margin-top: 16px;
  font-size: 18px;
  font-weight: 300;
  color: var(--body);
  max-width: 560px;
  line-height: 1.75;
}

/* ── PROBLEM ────────────────────────────────────────────── */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-top: 64px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.problem-card {
  background: var(--navy);
  padding: 40px 36px;
  transition: background 0.2s;
}
.problem-card:hover {
  background: var(--slate);
}

.problem-icon {
  font-size: 28px;
  margin-bottom: 16px;
  display: block;
}

.problem-card h3 {
  font-family: "DM Serif Display", serif;
  font-size: 20px;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.2;
}

.problem-card p {
  font-size: 15px;
  color: var(--body);
  line-height: 1.65;
  font-weight: 300;
}

.ranzcr-callout {
  margin-top: 48px;
  background: rgba(13, 148, 136, 0.08);
  border: 1px solid rgba(13, 148, 136, 0.2);
  border-radius: var(--radius);
  padding: 28px 36px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.ranzcr-icon {
  width: 40px;
  height: 40px;
  background: rgba(13, 148, 136, 0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
}

.ranzcr-callout blockquote {
  font-family: "DM Serif Display", serif;
  font-size: 17px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
}

.ranzcr-callout cite {
  display: block;
  margin-top: 10px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  font-style: normal;
}

/* ── HOW IT WORKS ───────────────────────────────────────── */
.how-section {
  background: var(--navy);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.how-section > div {
  max-width: 1160px;
  margin: 0 auto;
  padding: 100px 24px;
}

.steps-grid {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  position: relative;
}
@media (max-width: 768px) {
  .steps-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.step {
  position: relative;
}

.step-num {
  width: 40px;
  height: 40px;
  background: var(--teal-dim);
  border: 1px solid rgba(13, 148, 136, 0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "DM Serif Display", serif;
  font-size: 16px;
  color: var(--teal-lt);
  margin-bottom: 20px;
}

.step h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.3;
}

.step p {
  font-size: 15px;
  font-weight: 300;
  color: var(--body);
  line-height: 1.65;
}

.step-badge {
  display: inline-block;
  margin-top: 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--teal-dim);
  padding: 4px 10px;
  border-radius: 4px;
}

/* ── FEATURES ───────────────────────────────────────────── */
.features-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 80px;
}
@media (max-width: 768px) {
  .features-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: all 0.2s;
  cursor: default;
}
.feature-item:hover {
  background: rgba(13, 148, 136, 0.06);
  border-color: rgba(13, 148, 136, 0.15);
}

.feature-check {
  width: 22px;
  height: 22px;
  background: var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 11px;
}

.feature-item h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}

.feature-item p {
  font-size: 14px;
  font-weight: 300;
  color: var(--body);
  line-height: 1.6;
}

/* ── MOCK SCREEN ────────────────────────────────────────── */
.mock-screen {
  background: var(--slate);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.5);
  position: relative;
}

.mock-bar {
  background: rgba(0, 0, 0, 0.3);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mock-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}

.mock-url {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  padding: 4px 12px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
  margin-left: 8px;
}

.mock-body {
  padding: 24px;
}

.mock-search {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(13, 148, 136, 0.3);
  border-radius: 8px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.mock-search-icon {
  color: var(--teal);
  font-size: 14px;
}
.mock-search-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}
.mock-search-badge {
  margin-left: auto;
  background: var(--teal);
  color: white;
  font-size: 10px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
}

.mock-result {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  padding: 14px 16px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: border-color 0.2s;
}
.mock-result:hover {
  border-color: rgba(13, 148, 136, 0.3);
}

.mock-result-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
}

.mock-result-info {
  flex: 1;
}

.mock-result-date {
  font-size: 10px;
  color: var(--teal-lt);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.mock-result-title {
  font-size: 13px;
  color: var(--white);
  margin-top: 2px;
}

.mock-result-provider {
  font-size: 11px;
  color: var(--body);
  margin-top: 1px;
}

.mock-result-link {
  font-size: 11px;
  color: var(--teal);
  text-decoration: none;
  font-weight: 500;
}

.mock-providers {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.mock-provider-chip {
  background: rgba(13, 148, 136, 0.1);
  border: 1px solid rgba(13, 148, 136, 0.2);
  border-radius: 100px;
  padding: 4px 10px;
  font-size: 11px;
  color: var(--teal-lt);
  display: flex;
  align-items: center;
  gap: 5px;
}

.chip-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--teal);
}

@keyframes scan {
  0% {
    top: 0%;
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    top: 100%;
    opacity: 0;
  }
}

.mock-scan-line {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(13, 148, 136, 0.5), transparent);
  animation: scan 3s linear infinite;
  pointer-events: none;
}

/* ── ROADMAP ────────────────────────────────────────────── */
.roadmap-section {
  background: linear-gradient(180deg, var(--dark) 0%, var(--navy) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.roadmap-section > div {
  max-width: 1160px;
  margin: 0 auto;
  padding: 100px 24px;
}

.roadmap-grid {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
}
@media (max-width: 768px) {
  .roadmap-grid {
    grid-template-columns: 1fr;
  }
}

.roadmap-item {
  background: var(--navy);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  transition: background 0.2s;
}
.roadmap-item:hover {
  background: var(--slate);
}

.roadmap-item.active {
  background: rgba(13, 148, 136, 0.08);
}

.roadmap-item.active::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--teal);
}

.roadmap-phase {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.phase-now {
  color: var(--teal-lt);
}
.phase-next {
  color: #60a5fa;
}
.phase-later {
  color: #a78bfa;
}

.roadmap-item h3 {
  font-family: "DM Serif Display", serif;
  font-size: 22px;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.2;
}

.roadmap-item p {
  font-size: 14px;
  font-weight: 300;
  color: var(--body);
  line-height: 1.65;
}

.roadmap-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 12px;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 100px;
}

.tag-now {
  background: rgba(13, 148, 136, 0.12);
  color: var(--teal-lt);
  border: 1px solid rgba(13, 148, 136, 0.25);
}
.tag-next {
  background: rgba(96, 165, 250, 0.1);
  color: #93c5fd;
  border: 1px solid rgba(96, 165, 250, 0.2);
}
.tag-later {
  background: rgba(167, 139, 250, 0.1);
  color: #c4b5fd;
  border: 1px solid rgba(167, 139, 250, 0.2);
}

/* ── CTA ────────────────────────────────────────────────── */
.cta-section {
  text-align: center;
  padding: 120px 24px;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  bottom: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(13, 148, 136, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section h2 {
  font-family: "DM Serif Display", serif;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: var(--white);
  max-width: 680px;
  margin: 0 auto 24px;
}

.cta-section p {
  font-size: 18px;
  font-weight: 300;
  color: var(--body);
  max-width: 480px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

/* ── SIGNUP FORM ────────────────────────────────────────── */
.signup-form {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 480px;
  margin: 0 auto;
}

.signup-form input {
  flex: 1;
  min-width: 220px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 14px 18px;
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  color: var(--white);
  outline: none;
  transition: border-color 0.2s;
}
.signup-form input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.signup-form input:focus {
  border-color: var(--teal);
}

.signup-form button {
  background: var(--teal);
  color: var(--white);
  border: none;
  padding: 14px 28px;
  border-radius: 8px;
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.signup-form button:hover {
  background: var(--teal-lt);
  transform: translateY(-1px);
  box-shadow: 0 8px 30px rgba(13, 148, 136, 0.4);
}

.form-note {
  margin-top: 14px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.25);
}

/* ── FOOTER ─────────────────────────────────────────────── */
footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 40px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  max-width: 1160px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

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

.footer-brand img.sdl-logo {
  width: 22px;
  height: 22px;
  border-radius: 5px;
  object-fit: cover;
  opacity: 0.55;
}

.footer-brand-text {
  font-family: "DM Serif Display", serif;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.4);
}
.footer-brand-text span {
  color: var(--teal);
}

.footer-links {
  display: flex;
  gap: 24px;
}
.footer-links a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.25);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: rgba(255, 255, 255, 0.5);
}

.footer-note {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.2);
}

/* ── ANIMATIONS ─────────────────────────────────────────── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-in {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── PRIVACY PAGE ───────────────────────────────────────── */
.page-header {
  position: relative;
  z-index: 1;
  padding: 160px 24px 80px;
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
  animation: fadeUp 0.8s ease both;
}

.page-header::after {
  content: "";
  position: absolute;
  top: 0;
  left: -200px;
  width: 700px;
  height: 400px;
  background: radial-gradient(ellipse at center, rgba(13, 148, 136, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.page-header h1 {
  font-family: "DM Serif Display", serif;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: var(--white);
  margin-bottom: 20px;
}
.page-header h1 em {
  font-style: italic;
  color: var(--teal-lt);
}

.page-meta {
  font-size: 14px;
  color: var(--body);
  font-weight: 300;
}
.page-meta strong {
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
}

.policy-wrap {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px 120px;
}

.policy-summary {
  background: rgba(13, 148, 136, 0.06);
  border: 1px solid rgba(13, 148, 136, 0.15);
  border-radius: var(--radius);
  padding: 36px 40px;
  margin-bottom: 60px;
}

.policy-summary h2 {
  font-family: "DM Serif Display", serif;
  font-size: 22px;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.summary-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 600px) {
  .summary-grid {
    grid-template-columns: 1fr;
  }
  nav {
    padding: 16px 20px;
  }
  .policy-summary {
    padding: 24px;
  }
}

.summary-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.summary-icon {
  font-size: 16px;
  margin-top: 1px;
  flex-shrink: 0;
}

.summary-item p {
  font-size: 14px;
  color: var(--body);
  line-height: 1.5;
  font-weight: 300;
}
.summary-item p strong {
  display: block;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
  margin-bottom: 3px;
  font-size: 13px;
}

.policy-section {
  margin-bottom: 52px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.policy-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.policy-section h2 {
  font-family: "DM Serif Display", serif;
  font-size: 26px;
  color: var(--white);
  letter-spacing: -0.5px;
  margin-bottom: 20px;
  line-height: 1.2;
}

.policy-section h3 {
  font-size: 15px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 28px;
  margin-bottom: 10px;
}

.policy-section p {
  font-size: 15px;
  font-weight: 300;
  color: var(--body);
  line-height: 1.8;
  margin-bottom: 16px;
}
.policy-section p:last-child {
  margin-bottom: 0;
}

.policy-section ul {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}

.policy-section ul li {
  font-size: 15px;
  font-weight: 300;
  color: var(--body);
  line-height: 1.7;
  padding: 6px 0 6px 24px;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.policy-section ul li:last-child {
  border-bottom: none;
}

.policy-section ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 6px;
  height: 6px;
  background: var(--teal);
  border-radius: 50%;
}

.callout {
  background: rgba(13, 148, 136, 0.06);
  border-left: 3px solid var(--teal);
  border-radius: 0 8px 8px 0;
  padding: 20px 24px;
  margin: 24px 0;
}
.callout p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 0 !important;
  line-height: 1.7;
}
.callout p strong {
  color: var(--teal-lt);
  font-weight: 500;
}

.warning-box {
  background: rgba(96, 165, 250, 0.06);
  border: 1px solid rgba(96, 165, 250, 0.15);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 24px 0;
}
.warning-box p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0 !important;
}

.contact-card {
  background: var(--navy);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 32px 36px;
  margin-top: 24px;
}
.contact-card p {
  font-size: 15px;
  color: var(--body);
  line-height: 1.7;
}
.contact-card a {
  color: var(--teal-lt);
  text-decoration: none;
  font-weight: 500;
}
.contact-card a:hover {
  text-decoration: underline;
}

/* ── PROOF STAT BLOCK ───────────────────────────────────── */
.proof-stat-block {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(13, 148, 136, 0.07);
  border: 1px solid rgba(13, 148, 136, 0.18);
  border-radius: 12px;
  padding: 16px 28px;
  max-width: 680px;
}

.proof-number {
  font-family: "DM Serif Display", serif;
  font-size: 42px;
  line-height: 1;
  color: var(--teal-lt);
  letter-spacing: -2px;
  flex-shrink: 0;
}

.proof-text-wrap {
  text-align: left;
}

.proof-claim {
  font-size: 15px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

.proof-source {
  margin-top: 4px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal);
}

/* ── MOCK RESULT ACTIONS ────────────────────────────────── */
.mock-result {
  cursor: pointer;
}

.mock-result-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.mock-report-btn {
  font-size: 13px;
  opacity: 0.4;
  transition: opacity 0.15s;
  cursor: pointer;
  padding: 2px 4px;
  border-radius: 4px;
}
.mock-result:hover .mock-report-btn {
  opacity: 1;
}

/* ── REPORT MODAL ───────────────────────────────────────── */
.report-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(6px);
  z-index: 200;
  align-items: center;
  justify-content: center;
}
.report-modal-overlay.open {
  display: flex;
}

.report-modal {
  background: var(--navy);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  width: min(540px, 92vw);
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
  animation: modalIn 0.2s ease both;
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: scale(0.96) translateY(8px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.report-modal-header {
  padding: 24px 28px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}

.report-modal-title {
  font-family: "DM Serif Display", serif;
  font-size: 20px;
  color: var(--white);
  line-height: 1.2;
}

.report-modal-meta {
  margin-top: 6px;
  font-size: 12px;
  color: var(--teal-lt);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.report-modal-close {
  background: rgba(255, 255, 255, 0.06);
  border: none;
  color: var(--body);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.15s;
}
.report-modal-close:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.report-modal-body {
  padding: 24px 28px;
}

.report-field {
  margin-bottom: 20px;
}

.report-field-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 6px;
}

.report-field-value {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
}

.report-field-value.report-text {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  padding: 14px 16px;
  font-size: 13px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  line-height: 1.8;
}

.report-modal-footer {
  padding: 16px 28px 24px;
  display: flex;
  gap: 10px;
}

.report-btn-open {
  flex: 1;
  background: var(--teal);
  color: var(--white);
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.report-btn-open:hover {
  background: var(--teal-lt);
}

.report-btn-close {
  background: rgba(255, 255, 255, 0.06);
  color: var(--body);
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.2s;
}
.report-btn-close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}
