/* VeriSense — premium, trust-first landing. Static only. No frameworks. */

:root {
  --primary: #2563EB;
  --primary-light: #E6EEFF;
  --primary-hover: #1D4ED8;
  --teal: #14B8A6;
  --teal-light: #E6FAF8;
  --teal-dark: #0D9488;
  --slate-bg: #F1F5F9;
  --slate: #64748B;
  --text: #1A1D26;
  --text-muted: #6B7082;
  --text-tertiary: #9CA0B0;
  --border: #ECEEF4;
  --bg: #FFFFFF;
  --bg-subtle: #ECF6FA;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 2px 8px rgba(0, 0, 0, 0.06);
  --max-width: 1160px;
  --section-gap: 96px;
  --section-gap-mobile: 72px;
  --radius: 14px;
  --radius-btn: 12px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: linear-gradient(180deg, #e6f4f9 0%, #dceefa 45%, #edf6fa 100%);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  padding: 0.75rem 1rem;
  background: var(--primary);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  z-index: 100;
  border-radius: 0 0 var(--radius) 0;
}
.skip-link:focus {
  top: 0;
  outline: 2px solid var(--primary-light);
  outline-offset: 2px;
}

/* Header — sticky, shadow on scroll via JS */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.2s ease;
}
.site-header.scrolled {
  box-shadow: var(--shadow-md);
}
.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.logo img {
  display: block;
  height: 60px;
  width: auto;
}
.nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.5rem;
}
.nav a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
}
.nav a:hover {
  color: var(--primary);
}
.nav a:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
  border-radius: 4px;
}
.cta-nav {
  flex-shrink: 0;
}

/* Language switcher */
.lang-switcher-wrap {
  position: relative;
  flex-shrink: 0;
}
.lang-switcher-btn {
  padding: 0 0.75rem;
  height: 2.25rem;
  font-family: var(--font);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  cursor: pointer;
  appearance: none;
}
.lang-switcher-btn:hover {
  background: var(--border);
}

/* Ensure language selector is always visible (desktop + mobile) */
#vs-lang {
  display: inline-block !important;
  min-width: 140px;
  height: 2.25rem;
  z-index: 60;
}

.lang-switcher-list {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  margin: 0.25rem 0 0;
  padding: 0.5rem 0;
  list-style: none;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 4px 12px rgba(17, 24, 39, 0.12);
  max-height: 70vh;
  overflow-y: auto;
  min-width: 180px;
  z-index: 60;
}
.lang-switcher-list.is-open {
  display: block;
}
.lang-switcher-list a {
  display: block;
  padding: 0.5rem 1rem;
  color: var(--text);
  text-decoration: none;
  font-size: 0.9rem;
}
.lang-switcher-list a:hover {
  background: var(--bg-subtle);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 2.25rem;
  padding: 0 1.25rem;
  font-family: var(--font);
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-btn);
  border: none;
  cursor: pointer;
  transition: all 0.15s ease;
}
.btn:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}
.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover:not(:disabled) {
  background: var(--primary-hover);
}
.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-secondary:hover:not(:disabled) {
  background: var(--bg-subtle);
}

/* Main */
main {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem 4rem;
}

/* Hero — left: H1, subhead, 2 CTAs; right: one visible image carousel (fade only, no indicators) */
.hero {
  padding: 2rem 2rem 1.5rem;
  background: linear-gradient(165deg, rgba(37, 99, 235, 0.1) 0%, rgba(37, 99, 235, 0.04) 60%, transparent 100%);
  border-radius: 0 0 var(--radius) var(--radius);
  display: grid;
  gap: 2.5rem;
  align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .hero {
    grid-template-columns: 2fr 3fr;
    gap: 2rem;
  }
}
.hero__content {
  text-align: center;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (min-width: 900px) {
  .hero__content {
    text-align: left;
  }
}
.hero h1 {
  font-size: clamp(1.25rem, 3.5vw, 1.75rem);
  font-weight: 700;
  color: var(--text);
  margin: 0 0 0.75rem;
  line-height: 1.3;
  letter-spacing: -0.02em;
}
.hero-heading-stacked {
  display: flex;
  flex-direction: column;
}
.hero-heading-stacked span {
  display: block;
}
.hero-action {
  color: var(--primary);
  font-weight: 800;
  font-style: italic;
}
.hero__subhead {
  font-size: 0.8438rem;
  line-height: 1.5;
  color: var(--text-muted);
  max-width: 42ch;
  margin: 0 0 0.5rem;
}
@media (min-width: 900px) {
  .hero__subhead {
    margin-left: 0;
    margin-right: 0;
  }
}
.hero__subhead--secondary {
  font-size: 0.8438rem;
  font-weight: 400;
  color: var(--text-muted);
  margin: 0 0 0.5rem;
  line-height: 1.5;
}
.hero__subhead--secondary:last-of-type {
  margin-bottom: 1rem;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 0.75rem;
}
.hero__cta .btn {
  min-width: 220px;
  text-align: center;
}
@media (min-width: 900px) {
  .hero__cta {
    justify-content: flex-start;
  }
}

/* Video link in hero */
.hero__video-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary);
  text-decoration: none;
  margin: 0.25rem 0 0;
  transition: color 0.15s ease;
  cursor: pointer;
}
.hero__video-link:hover {
  color: var(--primary-hover);
}
.hero__video-play {
  flex-shrink: 0;
}

/* Video modal */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-modal[hidden] {
  display: none;
}
.video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}
.video-modal__content {
  position: relative;
  width: 90%;
  max-width: 800px;
  border-radius: var(--radius);
  overflow: hidden;
  background: #000;
}
.video-modal__close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  z-index: 10;
  width: 2rem;
  height: 2rem;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: #1a1d26;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-modal__close:hover {
  background: #fff;
}
.video-modal__player {
  display: block;
  width: 100%;
  max-height: 80vh;
}

.hero__signals {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  margin: 0 0 0.5rem;
  justify-content: center;
}
@media (min-width: 900px) {
  .hero__signals {
    justify-content: flex-start;
  }
}
.hero__signals-number {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}
.hero__signals-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
}
.hero__note {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin: 0;
}

/* Hero carousel — calm behavior: one image visible, fade only, no layout shift */
.hero__media {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.hero-carousel-wrap {
  width: 100%;
  max-width: 720px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.hero-carousel {
  position: relative;
  width: 100%;
  overflow: visible;
  margin-top: -40px;
}
.hero-carousel__img {
  display: block;
  width: 140%;
  height: auto;
  margin-left: -20%;
  opacity: 0;
  transition: opacity 1.2s ease;
  pointer-events: none;
}
.hero-carousel__img:not(.is-active) {
  position: absolute;
  top: 0;
  left: 0;
}
.hero-carousel__img.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

/* Hero text carousel — rotates with image, center-aligned */
.hero-text-carousel {
  width: 100%;
  text-align: center;
}
.hero-text-carousel__slide {
  display: none;
}
.hero-text-carousel__slide.is-active {
  display: block;
}
.hero-text-carousel__heading {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 0.25rem;
  line-height: 1.3;
}
.hero-text-carousel__sentence {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.45;
}
@media (min-width: 900px) {
  .hero-text-carousel__heading {
    font-size: 1.125rem;
    margin: 0 0 0.375rem;
  }
  .hero-text-carousel__sentence {
    font-size: 0.9375rem;
    line-height: 1.5;
  }
}

/* Hero carousel navigation — dots + counter */
.hero-carousel-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.hero-carousel-nav__dots {
  display: flex;
  align-items: center;
  gap: 6px;
}
.hero-carousel-nav__dot {
  width: 28px;
  height: 4px;
  border-radius: 2px;
  background: var(--border);
  border: none;
  padding: 0;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease;
}
.hero-carousel-nav__dot:hover {
  background: var(--slate);
}
.hero-carousel-nav__dot:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}
.hero-carousel-nav__dot::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: var(--primary);
  border-radius: 2px;
}
.hero-carousel-nav__dot.is-active {
  background: var(--primary-light);
}
.hero-carousel-nav__dot.is-active::after {
  width: 100%;
  animation: dot-fill var(--carousel-interval, 5600ms) linear forwards;
}
.hero-carousel-nav__dot.is-done {
  background: var(--primary);
}
.hero-carousel-nav__dot.is-done::after {
  display: none;
}
@keyframes dot-fill {
  from { width: 0; }
  to   { width: 100%; }
}
.hero-carousel-nav__counter {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  margin-left: 0.375rem;
  min-width: 3ch;
  text-align: right;
  font-variant-numeric: tabular-nums;
}

/* Trust bar */
.trust-bar {
  max-width: var(--max-width);
  margin: 0.75rem auto 0;
  padding: 0.75rem 1.5rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.trust-bar ul {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem 2rem;
}
.trust-bar li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--text);
  line-height: 1.5;
}
.trust-icon {
  flex-shrink: 0;
  color: var(--primary);
  margin-top: 0.1rem;
  width: 32px;
  height: 32px;
}
.trust-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.trust-text strong {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text);
}
.trust-text span {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Sections */
.section {
  padding: var(--section-gap-mobile) 0;
}
@media (min-width: 640px) {
  .section {
    padding: var(--section-gap) 0;
  }
}
.section h2 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 2.5rem;
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.section h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 0.5rem;
  line-height: 1.35;
}
.section p {
  color: var(--text-muted);
  margin: 0 0 1rem;
  line-height: 1.6;
}
.section ul:not(.price-list) {
  padding-left: 1.25rem;
  margin: 0 0 1rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.section li {
  margin-bottom: 0.5rem;
}

/* Product tiles */
.product-tiles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.75rem;
  margin-bottom: 2.5rem;
}
.tile {
  padding: 1.75rem 1.75rem 1.5rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  background: var(--bg);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.2s ease;
}
.tile:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.tile--premium {
  border-left: 3px solid rgba(37, 99, 235, 0.25);
}
.tile h3 {
  font-weight: 700;
  margin-bottom: 0.375rem;
}
.tile-tag {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--teal-dark);
  margin: 0 0 0.75rem;
  letter-spacing: 0.04em;
}
.tile--premium .tile-tag {
  color: var(--primary);
}
.tile-copy {
  font-size: 0.9375rem;
  line-height: 1.65;
  margin-bottom: 1.25rem;
  max-width: 38ch;
}
.tile ul {
  font-size: 0.9375rem;
  line-height: 1.65;
  margin-bottom: 0;
}
.tile li {
  margin-bottom: 0.625rem;
}
.tile li:last-child {
  margin-bottom: 0;
}
.tile ul {
  list-style: none;
  padding-left: 1rem;
}
.tile li {
  position: relative;
  padding-left: 0;
}
.tile li::before {
  content: "•";
  color: var(--teal);
  font-weight: 700;
  position: absolute;
  left: -1rem;
}

/* "What you get" chips */
.what-you-get-wrap {
  max-width: var(--max-width);
}
.what-you-get-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.3rem 0.625rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  background: rgba(236, 246, 250, 0.7);
  border: 1px solid var(--border);
  border-radius: 999px;
}
.chip::before {
  content: "•";
  color: var(--teal);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
}

/* How it works */
.steps {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}
.steps li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  margin-bottom: 0.75rem;
  border-left: 3px solid var(--teal);
  background: var(--bg-subtle);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 1rem;
  color: var(--text);
  line-height: 1.55;
}
.steps li strong {
  color: var(--text);
}
.disclaimer {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin: 0;
}

/* Pricing — compact so both cards fit in one viewport */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-bottom: 1rem;
}
.pricing-col {
  display: flex;
  flex-direction: column;
  padding: 1.25rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
  box-shadow: var(--shadow-sm);
}
.pricing-col-family {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.1);
}
.pricing-col h3 {
  margin-bottom: 0.125rem;
  font-size: 1.125rem;
}
.pricing-seats {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-muted);
  margin: 0 0 0.5rem;
}
.plan-list {
  list-style: none;
  padding: 0;
  margin: 0 0 0.75rem;
}
.plan-option {
  padding: 0.375rem 0;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr minmax(20ch, auto);
  align-items: baseline;
  gap: 0.125rem 0.5rem;
}
.plan-option:last-child {
  border-bottom: none;
}
.plan-option .plan-name {
  font-weight: 600;
  color: var(--text);
  font-size: 0.875rem;
  grid-column: 1;
}
.plan-option .plan-price {
  font-size: 0.8125rem;
  color: var(--text-muted);
  grid-column: 2;
}
.plan-option .plan-per-person {
  font-size: 0.6875rem;
  color: var(--text-muted);
  grid-column: 1 / -1;
}
.plan-option .plan-total {
  font-size: 0.75rem;
  color: var(--text-muted);
  grid-column: 1;
}
.plan-option .plan-discount {
  font-size: 0.6875rem;
  color: var(--text-muted);
  grid-column: 2;
}
.plan-badge {
  display: inline-block;
  margin-left: 0.375rem;
  padding: 0.1rem 0.375rem;
  font-size: 0.625rem;
  font-weight: 600;
  background: var(--teal-light);
  color: var(--teal-dark);
  border-radius: 4px;
}
.per-person {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin: 0 0 0.75rem;
}
.per-person.muted {
  color: var(--text-muted);
}
.pricing-col .btn {
  width: 100%;
  margin-top: auto;
  font-size: 0.9375rem;
}
.pricing-tier-label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-muted);
  margin: 0 0 1.25rem;
}
.pricing-note {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin: 0;
}

/* Family section */
.family-section ul {
  max-width: 52ch;
}

/* Our approach section */
.approach-section {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media (max-width: 640px) {
  .approach-section {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }
}
.approach__card {
  background: var(--bg);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
  padding: 3rem 3rem 2.5rem;
  width: 100%;
}
@media (max-width: 640px) {
  .approach__card {
    padding: 2rem 1.5rem 1.75rem;
  }
}
.approach__heading {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text);
  margin: 0 0 0.75rem;
  line-height: 1.35;
  letter-spacing: -0.015em;
}
.approach__intro {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0 0 2rem;
}
.approach__preamble {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-muted);
  margin: 0 0 1.25rem;
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.approach__principles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin: 0 0 2.5rem;
}
@media (max-width: 640px) {
  .approach__principles {
    grid-template-columns: 1fr;
  }
}
.approach__principle {
  padding: 1.25rem 1.25rem 1.25rem 1.5rem;
  border-left: 3px solid var(--teal);
  background: var(--bg-subtle);
  border-radius: 0 12px 12px 0;
}
.approach__principle strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.375rem;
  line-height: 1.4;
}
.approach__principle p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.65;
}
.approach__closing {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text);
  margin: 0 0 0.75rem;
}
.approach__emergency {
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--text-tertiary);
  margin: 0;
}

/* FAQ — details/summary */
.faq-list {
  margin: 0;
  padding: 0;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  padding: 1rem 0;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-question::-webkit-details-marker {
  display: none;
}
.faq-question::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--primary);
  flex-shrink: 0;
}
.faq-item[open] .faq-question::after {
  content: "−";
}
.faq-question:hover {
  color: var(--primary);
}
.faq-question:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}
.faq-answer {
  margin: 0 0 1rem;
  padding: 1rem 1.25rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
  background: var(--bg);
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}
.faq-answer p {
  margin: 0 0 0.25rem;
}
.faq-answer ul {
  list-style: none;
  padding-left: 1rem;
  margin: 0.25rem 0;
}
.faq-answer li {
  position: relative;
  padding-left: 0;
  margin-bottom: 0.25rem;
}
.faq-answer li::before {
  content: "•";
  color: var(--teal);
  font-weight: 700;
  position: absolute;
  left: -1rem;
}

/* ── Veri-Pulse section ── */
.vp-section {
  padding-top: 4rem;
  padding-bottom: 4rem;
  overflow: hidden;
}
.vp-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 2rem;
}
.vp-header h2 {
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0 0 0.25rem;
}
.vp-subtitle {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}
.vp-share-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.7rem;
  font-family: var(--font);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--primary);
  background: transparent;
  border: 1.5px solid var(--primary);
  border-radius: var(--radius-btn);
  cursor: pointer;
  transition: all 0.15s ease;
  flex-shrink: 0;
  margin-top: 0.25rem;
}
.vp-share-btn:hover {
  background: var(--primary);
  color: #fff;
}
.vp-share-btn svg { flex-shrink: 0; }

/* Two-column grid */
.vp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  max-width: 100%;
}
@media (max-width: 768px) {
  .vp-grid {
    grid-template-columns: 1fr;
    gap: 0.875rem;
    margin-bottom: 1rem;
  }
  .vp-section { padding-top: 2rem; padding-bottom: 2rem; }
  .vp-header { flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1rem; }
  .vp-header h2 { font-size: 1.15rem; }
  .vp-subtitle { font-size: 0.8125rem; line-height: 1.4; }
  .vp-share-btn { padding: 0.3rem 0.6rem; font-size: 0.7rem; }
  .vp-today__card { padding: 1rem 1.125rem; border-radius: 14px; }
  .vp-today__top { margin-bottom: 0.5rem; }
  .vp-today__badge { font-size: 0.6875rem; padding: 0.2rem 0.5rem 0.2rem 0.375rem; }
  .vp-today__date { font-size: 0.75rem; }
  .vp-today__count { flex-wrap: wrap; gap: 0.125rem 0.4rem; margin: 0.25rem 0 0.5rem; }
  .vp-today__number { font-size: 1.5rem; }
  .vp-today__label { font-size: 0.75rem; }
  .vp-today__summary { font-size: 0.8125rem; line-height: 1.55; }
  .vp-today__notable { font-size: 0.75rem; margin-top: 0.5rem; }
  .vp-history-card { padding: 0.875rem 1rem; border-radius: 14px; }
  .vp-section-label { font-size: 0.8125rem; margin-bottom: 0.5rem; }
  .vp-history { height: 90px; }
  .vp-col-history { gap: 0.75rem; }
  .vp-links-row { gap: 0.5rem; }
  .vp-sources-wrap, .vp-reading-wrap { padding: 0.875rem 1rem; border-radius: 14px; }
  .vp-source-group__label { font-size: 0.6875rem; }
  .vp-source-link { padding: 0.3rem 0.5rem; font-size: 0.8125rem; border-radius: 6px; }
  .vp-source-link__meta { font-size: 0.625rem; }
  .vp-footer-note { font-size: 0.7rem; margin-top: 0.25rem; }
}

/* Left column — today card */
.vp-col-today {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.vp-today__card {
  flex: 1;
  padding: 1.5rem 1.75rem;
  border-radius: 16px;
  border: 1px solid #BFDBFE;
  background: linear-gradient(145deg, #EFF4FF 0%, #EBF2FF 50%, #F5F8FF 100%);
  display: flex;
  flex-direction: column;
  transition: background 0.3s ease, border-color 0.3s ease;
  overflow: hidden;
}
.vp-today__card[data-color="AMBER"] {
  background: linear-gradient(145deg, #FFF8EB 0%, #FFF3D6 50%, #FFFBF0 100%);
  border-color: #FBBF24;
}
.vp-today__card[data-color="RED"] {
  background: linear-gradient(145deg, #FFF1F1 0%, #FFE4E4 50%, #FFF5F5 100%);
  border-color: #F87171;
}
.vp-today__card[data-color="GREY"] {
  background: linear-gradient(145deg, #F8FAFC 0%, #F1F5F9 50%, #FAFBFC 100%);
  border-color: #E2E8F0;
}
.vp-today__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}
.vp-today__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
}
.vp-today__badge::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
}
.vp-today__card[data-color="AMBER"] .vp-today__badge { background: #D97706; }
.vp-today__card[data-color="RED"] .vp-today__badge { background: #DC2626; }
.vp-today__card[data-color="GREY"] .vp-today__badge { background: #94A3B8; }
.vp-today__date {
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-weight: 500;
}
.vp-today__count {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.vp-today__number {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--text);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.vp-today__label {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 500;
}
.vp-today__summary {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text);
  flex: 1;
  overflow-wrap: break-word;
  word-break: break-word;
}
.vp-today__notable {
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--text-tertiary);
  font-style: italic;
  margin: 0.75rem 0 0;
  overflow-wrap: break-word;
  word-break: break-word;
}

/* Right column — history + links */
.vp-col-history {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.vp-history-card {
  background: var(--bg);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  padding: 1.25rem 1.5rem;
  overflow: hidden;
}
.vp-section-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 0.75rem;
}
.vp-history {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 100px;
}
.vp-history__bar {
  flex: 1;
  min-width: 0;
  border-radius: 2px 2px 0 0;
  background: var(--primary);
  transition: height 0.3s ease, opacity 0.15s ease;
  position: relative;
  cursor: default;
  opacity: 0.7;
}
.vp-history__bar:hover { opacity: 1; }
.vp-history__bar[data-color="AMBER"] { background: #D97706; }
.vp-history__bar[data-color="RED"] { background: #DC2626; }
.vp-history__bar[data-color="GREY"] { background: #CBD5E1; }
.vp-history__bar:hover::after {
  content: attr(data-tip);
  position: absolute;
  bottom: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.6875rem;
  white-space: nowrap;
  background: var(--text);
  color: #fff;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  pointer-events: none;
  z-index: 10;
}

/* Sources & reading */
.vp-links-row {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.vp-sources-wrap,
.vp-reading-wrap {
  background: var(--bg);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  padding: 1rem 1.25rem;
  overflow: hidden;
}
.vp-sources,
.vp-reading {
  max-height: 200px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}
.vp-sources::-webkit-scrollbar,
.vp-reading::-webkit-scrollbar {
  width: 4px;
}
.vp-sources::-webkit-scrollbar-thumb,
.vp-reading::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 2px;
}
.vp-sources.is-collapsed,
.vp-reading.is-collapsed {
  max-height: 200px;
}
.vp-toggle-btn {
  display: none;
  width: 100%;
  padding: 0.375rem 0;
  margin-top: 0.5rem;
  font-family: var(--font);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--primary);
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: center;
}
.vp-toggle-btn.is-visible {
  display: block;
}
.vp-source-group {
  margin-bottom: 0.5rem;
}
.vp-source-group:last-child { margin-bottom: 0; }
.vp-source-group__label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 0.375rem;
}
.vp-source-link {
  display: block;
  padding: 0.4rem 0.625rem;
  margin-bottom: 0.25rem;
  font-size: 0.8125rem;
  color: var(--primary);
  text-decoration: none;
  background: var(--bg-subtle);
  border-radius: 8px;
  line-height: 1.4;
  transition: background 0.15s ease;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.vp-source-link:last-child { margin-bottom: 0; }
.vp-source-link:hover { background: var(--primary-light); }
.vp-source-link__meta {
  font-size: 0.6875rem;
  color: var(--text-tertiary);
}

.vp-count-badge {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--bg-subtle);
  padding: 0.1rem 0.4rem;
  border-radius: 999px;
  margin-left: 0.25rem;
  vertical-align: middle;
}

.vp-footer-note {
  font-size: 0.8125rem;
  color: var(--text-tertiary);
  margin: 0;
  line-height: 1.5;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 2rem 1.5rem;
  background: var(--bg);
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
}
.copyright {
  margin: 0 0 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
}
.footer-nav {
  margin-bottom: 0;
}
.footer-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.875rem;
  margin: 0 0.75rem;
}
.footer-nav a:hover {
  color: var(--primary);
}
.footer-nav a:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
  border-radius: 2px;
}

/* Mobile — iPhone SE friendly */
@media (max-width: 430px) {
  .header-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }
  .nav ul {
    justify-content: flex-start;
  }
  .cta-nav {
    text-align: center;
  }
  .hero {
    padding: 3rem 0 2rem;
  }
  .trust-bar ul {
    grid-template-columns: 1fr;
  }
  .hero__cta {
    flex-direction: column;
  }
  .hero__cta .btn {
    width: 100%;
  }
  .vp-section { padding-top: 1.5rem; padding-bottom: 1.5rem; }
  .vp-grid { gap: 0.75rem; }
  .vp-header { margin-bottom: 0.75rem; }
  .vp-header h2 { font-size: 1.05rem; }
  .vp-subtitle { font-size: 0.75rem; }
  .vp-today__card { padding: 0.875rem 1rem; border-radius: 12px; }
  .vp-today__count { margin: 0.125rem 0 0.375rem; }
  .vp-today__number { font-size: 1.35rem; }
  .vp-today__label { font-size: 0.6875rem; }
  .vp-today__summary { font-size: 0.75rem; line-height: 1.5; }
  .vp-today__notable { font-size: 0.6875rem; }
  .vp-history-card { padding: 0.75rem 0.875rem; border-radius: 12px; }
  .vp-history { height: 72px; }
  .vp-section-label { font-size: 0.75rem; margin-bottom: 0.375rem; }
  .vp-sources-wrap, .vp-reading-wrap { padding: 0.75rem 0.875rem; border-radius: 12px; }
  .vp-source-link { font-size: 0.75rem; }
  .vp-footer-note { font-size: 0.6875rem; }
}
