/* ============================================
   style.css — Trackback Component Styles
   ============================================ */

/* ---------- Layout ---------- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}
.container--wide {
  max-width: var(--container-wide);
}

/* ---------- Pages (SPA) ---------- */
/* Multi-page: no SPA page toggling needed */

/* ---------- Navigation ---------- */
.nav {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0 clamp(20px, 4vw, 48px);
  height: var(--nav-height);
  display: flex;
  align-items: center;
  background: rgba(5,5,5,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: background var(--dur-med) var(--ease-out),
              backdrop-filter var(--dur-med) var(--ease-out);
}
.nav.scrolled {
  background: rgba(5,5,5,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.nav__inner {
  max-width: var(--container-wide);
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Switzer', 'General Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
  z-index: 10;
}
.nav__logo svg {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 28px);
}
.nav__link {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  transition: color var(--dur-fast);
  position: relative;
}
.nav__link:hover,
.nav__link.active {
  color: #fff;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width var(--dur-med) var(--ease-out);
}
.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}
.nav__login {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  transition: color var(--dur-fast);
}
.nav__login:hover {
  color: #fff;
}
.nav__signup {
  font-size: 14px;
  font-weight: 600;
  background: #fff;
  color: #050505;
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  transition: transform var(--dur-fast) var(--ease-spring),
              box-shadow var(--dur-fast);
}
.nav__signup:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 20px rgba(255,255,255,0.15);
}
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  z-index: 10;
  padding: 8px;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: transform var(--dur-med) var(--ease-out),
              opacity var(--dur-fast);
}
.nav__hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__hamburger.open span:nth-child(2) {
  opacity: 0;
}
.nav__hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Nav actions (theme toggle + hamburger, always visible) */
.nav__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 10;
}

/* Mobile menu */
.nav__mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background: rgba(5,5,5,0.97);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur-med) var(--ease-out);
}
.nav__mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
}
.nav__mobile-link {
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  transition: color var(--dur-fast);
}
.nav__mobile-link:hover {
  color: #fff;
}

@media (max-width: 1024px) {
  .nav__links {
    display: none;
  }
  .nav__hamburger {
    display: flex;
  }
}

/* ---------- Hero (2-column, ALL pages) ---------- */
.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-height));
  display: flex;
  align-items: center;
  padding: 40px 0 60px;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.45) 50%, rgba(0,0,0,0.55) 100%);
  z-index: 1;
}
.hero__bg--overlay::after {
  background: rgba(0,0,0,0.6) !important;
}
.hero__content {
  position: relative;
  z-index: 2;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.hero__grid h1 {
  font-family: 'Switzer', 'General Sans', sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.hero__right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.hero__right p {
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.7;
  color: rgba(255,255,255,0.9);
  text-shadow: 0 1px 3px rgba(0,0,0,0.4);
}

@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: calc(var(--nav-height) + 32px) 0 48px;
  }
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .hero__grid h1 {
    font-size: clamp(28px, 8vw, 42px);
  }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  transition: transform var(--dur-fast) var(--ease-spring),
              box-shadow var(--dur-fast),
              background var(--dur-fast);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn--gradient {
  background: var(--gradient-primary);
  color: #fff;
}
.btn--gradient:hover {
  box-shadow: 0 8px 30px rgba(224, 25, 140, 0.35);
}
.btn--ghost {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.3);
  color: #fff;
}
.btn--ghost:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.05);
}
.btn--ghost-dark {
  background: transparent;
  border: 1.5px solid rgba(0,0,0,0.2);
  color: var(--text-dark);
}
.btn--ghost-dark:hover {
  border-color: var(--text-dark);
  background: rgba(0,0,0,0.04);
}
.btn--white {
  background: #fff;
  color: #050505;
}
.btn--white:hover {
  box-shadow: 0 8px 30px rgba(255,255,255,0.2);
}
/* Shimmer effect */
.btn--gradient::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.6s;
}
.btn--gradient:hover::after {
  left: 120%;
}

/* ---------- Sections ---------- */
.section {
  padding: var(--section-pad) 0;
}
.section--dark {
  background: var(--bg-dark);
  color: var(--text-white);
}
.section--dark-2 {
  background: var(--bg-dark-2);
  color: var(--text-white);
}
.section--light {
  background: var(--bg-light);
  color: var(--text-dark);
}
.section--white {
  background: var(--bg-white);
  color: var(--text-dark);
}
.section--sage {
  background: var(--bg-sage);
  color: var(--text-dark);
}
.section__header {
  margin-bottom: clamp(40px, 5vw, 64px);
}
.section__header--center {
  text-align: center;
}
.section-title {
  font-family: 'Switzer', 'General Sans', sans-serif;
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.section-title--sm {
  font-size: clamp(22px, 2.5vw, 32px);
}
.section-subtitle {
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.7;
  margin-top: 16px;
  max-width: 680px;
}
.section--light .section-subtitle,
.section--white .section-subtitle,
.section--sage .section-subtitle {
  color: var(--text-dark-muted);
}

/* ---------- Problem Cards (Home) ---------- */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.problem-card {
  background: var(--bg-dark-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 3vw, 40px);
}
.problem-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(224,25,140,0.15), rgba(245,166,35,0.15));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--pink);
}
.problem-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}
.problem-card p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-light);
}

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

/* ---------- Two-Column Content Blocks ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.two-col--reverse {
  /* Text left, image right — normal grid order */
}
.two-col__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}
.two-col__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}
.two-col__text h2 {
  font-family: 'Switzer', 'General Sans', sans-serif;
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}
.two-col__text p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 12px;
}
.section--light .two-col__text p,
.section--white .two-col__text p {
  color: var(--text-dark-muted);
}
.two-col__text .btn {
  margin-top: 12px;
}
.solution-bg {
  position: relative;
}
.solution-bg__bloom {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  pointer-events: none;
}

@media (max-width: 768px) {
  .two-col {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .two-col--reverse {
    direction: ltr;
  }
}

/* ---------- Rightlander Section ---------- */
.rightlander-section {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.rightlander-section h2 {
  font-size: clamp(24px, 3vw, 36px);
  margin-bottom: 20px;
}
.rightlander-section p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 24px;
}
.rightlander-logo {
  display: inline-block;
  opacity: 0.7;
}

/* ---------- Getting Started / Steps ---------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 40px 0;
}
.step-card {
  text-align: center;
}
.step-card__num {
  font-family: 'Switzer', sans-serif;
  font-size: 48px;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}
.step-card p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.6;
}

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

/* ---------- Tagline Band ---------- */
.tagline-band {
  background: var(--bg-dark-2);
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
  padding: clamp(40px, 5vw, 60px) 0;
  text-align: center;
}
.tagline-band p {
  font-family: 'Switzer', 'General Sans', sans-serif;
  font-size: clamp(20px, 2.5vw, 32px);
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  letter-spacing: -0.01em;
}

/* ---------- Product Features ---------- */
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 4vw, 56px);
}
.feature-item {
  display: flex;
  gap: 16px;
}
.feature-item__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(224,25,140,0.12), rgba(245,166,35,0.12));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pink);
  margin-top: 4px;
}
.feature-item h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-dark);
}
.feature-item p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-dark-muted);
}

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

/* ---------- Program Health: Risk Categories ---------- */
.risk-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.risk-card {
  background: var(--bg-sage);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 36px);
}
.risk-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.risk-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
}
.risk-card__count {
  font-family: 'Switzer', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--pink);
  background: rgba(224,25,140,0.1);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
}
.risk-card__signals {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.signal-tag {
  font-size: 13px;
  font-weight: 500;
  background: rgba(0,0,0,0.06);
  color: var(--text-dark);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
}

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

/* ---------- Critical Alerts ---------- */
.alerts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.alert-card {
  background: var(--bg-dark-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
}
.alert-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(224,25,140,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--pink);
}
.alert-card h3 {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

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

/* ---------- Edit Preferences Table ---------- */
.prefs-table {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
}
.prefs-table th,
.prefs-table td {
  padding: 14px 18px;
  text-align: left;
  font-size: 14px;
}
.prefs-table thead {
  background: rgba(0,0,0,0.04);
}
.prefs-table thead th {
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-dark-muted);
}
.prefs-table tbody tr {
  border-top: 1px solid var(--border-light);
}
.prefs-table td {
  font-weight: 500;
  color: var(--text-dark);
}
.pref-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid rgba(0,0,0,0.15);
  display: inline-block;
}
.pref-dot--active {
  border-color: var(--pink);
  background: var(--pink);
}

/* ---------- How It Works (horizontal steps) ---------- */
.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.how-step__num {
  font-family: 'Switzer', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--pink);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.how-step h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
}
.how-step p {
  font-size: 14px;
  line-height: 1.6;
}
.section--white .how-step p {
  color: var(--text-dark-muted);
}

@media (max-width: 768px) {
  .how-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 480px) {
  .how-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Weekly Health Email Mock ---------- */
.health-mock {
  background: var(--bg-dark-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 40px);
  margin-top: 40px;
}
.health-metrics {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}
.health-metric {
  text-align: center;
}
.health-metric__value {
  font-family: 'Switzer', sans-serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  color: #fff;
}
.health-metric__delta {
  font-size: 13px;
  font-weight: 600;
  margin-top: 4px;
}
.health-metric__delta--up {
  color: #4ade80;
}
.health-metric__delta--alert {
  color: var(--pink);
}
.health-metric__label {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}
.health-quote {
  font-style: italic;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-light);
  border-left: 3px solid var(--pink);
  padding-left: 20px;
  margin-top: 24px;
}

@media (max-width: 768px) {
  .health-metrics {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 480px) {
  .health-metrics {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ---------- Pricing ---------- */
.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
}
.pricing-toggle__label {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-light);
  transition: color var(--dur-fast);
}
.pricing-toggle__label.active {
  color: #fff;
  font-weight: 600;
}
.pricing-toggle__switch {
  width: 52px;
  height: 28px;
  background: rgba(255,255,255,0.15);
  border-radius: 14px;
  position: relative;
  cursor: pointer;
  transition: background var(--dur-fast);
}
.pricing-toggle__switch.active {
  background: var(--gradient-primary);
}
.pricing-toggle__switch::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 22px;
  height: 22px;
  background: #fff;
  border-radius: 50%;
  transition: transform var(--dur-med) var(--ease-spring);
}
.pricing-toggle__switch.active::after {
  transform: translateX(24px);
}

.pricing-table-wrap {
  overflow-x: auto;
}
.pricing-table {
  width: 100%;
  min-width: 700px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.pricing-table th,
.pricing-table td {
  padding: 16px 20px;
  text-align: center;
  vertical-align: top;
  font-size: 14px;
}
.pricing-table thead th {
  background: var(--bg-dark-card);
  border-bottom: 1px solid var(--border-dark);
  padding: 24px 20px;
}
.pricing-table thead th:first-child {
  text-align: left;
}
.pricing-plan-name {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}
.pricing-plan-emoji {
  font-size: 20px;
  display: block;
  margin-bottom: 6px;
}
.pricing-plan-badge {
  font-size: 12px;
  color: var(--text-light);
  font-weight: 400;
}
.pricing-plan-price {
  font-family: 'Switzer', sans-serif;
  font-size: 32px;
  font-weight: 700;
  margin: 8px 0 4px;
}
.pricing-plan-intro {
  font-size: 13px;
  color: var(--text-muted);
}
.pricing-plan-ongoing {
  font-size: 13px;
  color: var(--text-light);
}
.pricing-table tbody tr {
  border-top: 1px solid var(--border-dark);
}
.pricing-table tbody td {
  background: rgba(255,255,255,0.02);
}
.pricing-table tbody td:first-child {
  text-align: left;
  font-weight: 500;
}
.pricing-table .check {
  color: #4ade80;
}
.pricing-table .dash {
  color: var(--text-muted);
}

/* Timeline */
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 32px;
}
.timeline__item {
  background: var(--bg-dark-card);
  border: 1px solid var(--border-dark);
  padding: 24px;
  position: relative;
}
.timeline__item:first-child {
  border-radius: var(--radius-md) 0 0 var(--radius-md);
}
.timeline__item:last-child {
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.timeline__period {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--pink);
  margin-bottom: 8px;
}
.timeline__title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
}
.timeline__desc {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.55;
}

@media (max-width: 768px) {
  .timeline {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .timeline__item {
    border-radius: var(--radius-md) !important;
  }
}

/* ---------- About ---------- */
.about-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.about-two-col p {
  font-size: 16px;
  line-height: 1.75;
}
.section--light .about-two-col p {
  color: var(--text-dark-muted);
}

.stat-block {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
}
.stat-block__value {
  font-family: 'Switzer', sans-serif;
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.stat-block__label {
  font-size: 16px;
  max-width: 200px;
  line-height: 1.4;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 16px;
}
.logo-item {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  font-size: 13px;
  font-weight: 600;
  color: #333;
  text-align: center;
}

@media (max-width: 768px) {
  .about-two-col {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .logo-grid {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  }
}

/* ---------- FAQ Accordion ---------- */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--border-dark);
}
.faq-item__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  cursor: pointer;
  gap: 16px;
  width: 100%;
  text-align: left;
}
.faq-item__bar {
  width: 4px;
  height: 24px;
  border-radius: 2px;
  background: var(--gradient-primary);
  flex-shrink: 0;
  margin-right: 12px;
  opacity: 0;
  transition: opacity var(--dur-fast);
}
.faq-item.open .faq-item__bar {
  opacity: 1;
}
.faq-item__question {
  flex: 1;
  font-size: 17px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
}
.faq-item__chevron {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: var(--text-light);
  transition: transform var(--dur-med) var(--ease-out);
}
.faq-item.open .faq-item__chevron {
  transform: rotate(180deg);
}
.faq-item__answer {
  overflow: hidden;
  height: 0;
  transition: height 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-item__answer-inner {
  padding: 0 0 24px 16px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-light);
}

/* ---------- Contact Form ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(40px, 5vw, 80px);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  color: #fff;
  font-size: 15px;
  transition: border-color var(--dur-fast);
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--pink);
  outline: none;
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.contact-aside h3 {
  font-size: 18px;
  margin-bottom: 12px;
}
.contact-aside p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 16px;
}
.contact-aside a {
  color: var(--pink);
  text-decoration: underline;
  text-decoration-color: rgba(224,25,140,0.3);
  text-underline-offset: 3px;
  transition: text-decoration-color var(--dur-fast);
}
.contact-aside a:hover {
  text-decoration-color: var(--pink);
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* ---------- Footer ---------- */
.footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--border-dark);
  padding: clamp(60px, 8vw, 100px) 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: clamp(24px, 4vw, 48px);
}
.footer__brand p {
  font-size: 14px;
  color: var(--text-light);
  margin: 16px 0 24px;
  max-width: 280px;
  line-height: 1.6;
}
.footer__col h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  color: rgba(255,255,255,0.9);
}
.footer__col a {
  display: block;
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 10px;
  transition: color var(--dur-fast);
}
.footer__col a:hover {
  color: #fff;
}
.footer__subscribe {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}
.footer__subscribe input {
  flex: 1;
  padding: 10px 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: #fff;
}
.footer__subscribe button {
  background: var(--gradient-primary);
  color: #fff;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 14px;
  transition: transform var(--dur-fast) var(--ease-spring);
  white-space: nowrap;
}
.footer__subscribe button:hover {
  transform: scale(1.03);
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  margin-top: clamp(40px, 5vw, 60px);
  border-top: 1px solid var(--border-dark);
  font-size: 13px;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 12px;
}
.footer__bottom-links {
  display: flex;
  gap: 20px;
}
.footer__bottom-links a {
  color: var(--text-muted);
  transition: color var(--dur-fast);
}
.footer__bottom-links a:hover {
  color: #fff;
}

@media (max-width: 768px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}
@media (max-width: 480px) {
  .footer__grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Counter Animation ---------- */
.counter[data-target] {
  font-variant-numeric: tabular-nums;
}

/* ---------- Reveal Animations ---------- */
/* Content is ALWAYS visible. No opacity:0 anywhere. Animations are decorative only. */
.reveal {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- CTA Section ---------- */
.cta-section {
  text-align: center;
  padding: var(--section-pad) 0;
}
.cta-section h2 {
  font-family: 'Switzer', sans-serif;
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 700;
  margin-bottom: 24px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.2;
}
.cta-section p {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* ---------- 40+ Indicators Header ---------- */
.indicators-header {
  text-align: center;
  padding: var(--section-pad-sm) 0;
}
.indicators-header h2 {
  font-family: 'Switzer', sans-serif;
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 700;
  line-height: 1.2;
}

/* ---------- "View Pricing" CTA in Program Health ---------- */
.ph-cta {
  text-align: center;
  padding: var(--section-pad-sm) 0 var(--section-pad);
}

/* -- Cookie Consent Banner -------------------------------------------- */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 560px;
  padding: 16px 20px;
  background: rgba(20, 20, 20, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255,255,255,0.7);
  animation: cookieSlideUp 0.4s cubic-bezier(0.16,1,0.3,1);
}
@keyframes cookieSlideUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-banner p { margin: 0; flex: 1; }
.cookie-banner__actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.cookie-banner__btn {
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: opacity 0.15s ease;
}
.cookie-banner__btn:hover { opacity: 0.85; }
.cookie-banner__btn--decline {
  background: transparent;
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.15);
}
.cookie-banner__btn--accept {
  background: linear-gradient(90deg, #e0198c, #f5a623, #c8f000);
  color: #fff;
  font-weight: 600;
}
@media (max-width: 600px) {
  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    max-width: none;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .cookie-banner__actions { justify-content: flex-end; }
}

/* ---------- Form Enhancements ---------- */
.required { color: var(--pink); font-weight: 400; }
.form-input.error, .form-textarea.error,
input.error, textarea.error {
  border-color: #ef4444 !important;
  box-shadow: 0 0 0 2px rgba(239,68,68,0.15);
}
.form-success {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 20px;
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.2);
  border-radius: var(--radius-md);
  margin-top: 16px;
}
.form-success p {
  font-size: 15px;
  color: var(--text-white);
  line-height: 1.5;
  margin: 0;
}

/* ---------- CSS-Only Hamburger Menu ---------- */
.nav__menu-toggle {
  display: none; /* hidden checkbox */
  position: absolute;
}
.nav__hamburger-label {
  display: none; /* only shows on mobile */
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 102;
}
.nav__hamburger-label span {
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
[data-theme="light"] .nav__hamburger-label span { background: #1a1a1a; }

/* When checkbox is checked, show mobile menu */
/* Checkbox is inside nav__inner, mobile menu is sibling of nav__inner inside nav */
.nav:has(.nav__menu-toggle:checked) .nav__mobile-menu {
  opacity: 1;
  pointer-events: auto;
}
.nav__menu-toggle:checked + .nav__hamburger-label span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__menu-toggle:checked + .nav__hamburger-label span:nth-child(2) {
  opacity: 0;
}
.nav__menu-toggle:checked + .nav__hamburger-label span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 1024px) {
  .nav__hamburger-label { display: flex; }
}

/* ---------- Native FAQ (details/summary) ---------- */
details.faq-item {
  border-bottom: 1px solid var(--border-dark);
}
details.faq-item summary.faq-item__summary {
  display: flex;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
  list-style: none;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--font-display);
  color: var(--text-white);
  gap: 12px;
}
details.faq-item summary.faq-item__summary::-webkit-details-marker { display: none; }
details.faq-item summary.faq-item__summary::marker { display: none; content: ''; }

details.faq-item .faq-item__bar {
  width: 3px;
  height: 20px;
  background: transparent;
  border-radius: 2px;
  flex-shrink: 0;
  transition: background 0.2s ease;
}
details.faq-item[open] .faq-item__bar {
  background: var(--gradient-primary);
}

details.faq-item .faq-item__chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-left: auto;
  color: var(--text-muted);
  transition: transform 0.3s ease;
}
details.faq-item[open] .faq-item__chevron {
  transform: rotate(180deg);
}

details.faq-item .faq-item__answer {
  padding: 0 0 20px 15px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-light);
  height: auto;
  overflow: visible;
}

/* Light mode FAQ */
[data-theme="light"] details.faq-item { border-color: var(--border-light); }
[data-theme="light"] details.faq-item summary.faq-item__summary { color: var(--text-dark); }
[data-theme="light"] details.faq-item .faq-item__answer { color: var(--text-dark-muted); }

/* ============================================
   NEW COMPONENT STYLES (Critique Rebuild)
   ============================================ */

/* ---------- Hero rewrite ---------- */
.hero--product {
  background: #050505;
  min-height: auto;
  padding: clamp(48px, 7vw, 96px) 0 clamp(56px, 7vw, 96px);
  position: relative;
  overflow: hidden;
}
.hero--product::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 50% at 12% 10%, rgba(224,25,140,0.18), transparent 70%),
    radial-gradient(50% 50% at 95% 90%, rgba(200,240,0,0.10), transparent 70%),
    radial-gradient(45% 45% at 80% 5%, rgba(245,166,35,0.15), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hero--product .hero__content { z-index: 2; }
.hero--product .hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.hero-eyebrow {
  display: inline-block;
  font-family: 'Switzer', 'General Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  padding: 7px 14px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-pill);
  margin-bottom: 24px;
  background: rgba(255,255,255,0.03);
}
.hero-eyebrow .dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gradient-primary);
  margin-right: 8px;
  vertical-align: middle;
}

.hero--product h1 {
  font-family: 'Switzer', 'General Sans', sans-serif;
  font-size: clamp(34px, 4.8vw, 60px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: #fff;
  margin-bottom: 24px;
  text-shadow: none;
}
.hero--product h1 .accent {
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.hero-subs p {
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.65;
  color: rgba(255,255,255,0.78);
  margin-bottom: 14px;
  max-width: 560px;
  text-shadow: none;
}
.hero-subs p.tight { color: rgba(255,255,255,0.62); font-size: 14px; }

/* Domain email form */
.domain-form {
  display: flex;
  gap: 8px;
  margin-top: 24px;
  padding: 6px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-pill);
  max-width: 520px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.04);
  backdrop-filter: blur(10px);
}
.domain-form input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 12px 18px;
  font-size: 15px;
  color: #fff;
  font-family: inherit;
}
.domain-form input::placeholder { color: rgba(255,255,255,0.4); }
.domain-form input:focus { outline: none; }
.domain-form button {
  background: var(--gradient-primary);
  color: #fff;
  padding: 12px 22px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
  transition: transform var(--dur-fast) var(--ease-spring), box-shadow var(--dur-fast);
}
.domain-form button:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(224,25,140,0.4);
}
.form-micro {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.form-micro::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px rgba(34,197,94,0.6);
  display: inline-block;
}

/* ---------- Product dashboard mock ---------- */
.dash-wrap {
  position: relative;
  transform: rotate(-3deg);
  transform-origin: center;
  perspective: 1200px;
}
.dash-wrap::before {
  content: '';
  position: absolute;
  inset: -40px;
  background:
    radial-gradient(50% 40% at 30% 30%, rgba(224,25,140,0.25), transparent 70%),
    radial-gradient(50% 40% at 80% 90%, rgba(245,166,35,0.18), transparent 70%);
  filter: blur(40px);
  z-index: -1;
}
.dash {
  background: linear-gradient(180deg, rgba(20,20,22,0.92), rgba(13,13,15,0.95));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    0 30px 80px rgba(0,0,0,0.6),
    0 8px 20px rgba(0,0,0,0.4),
    inset 0 1px 0 rgba(255,255,255,0.05);
  backdrop-filter: blur(20px);
  font-family: 'Inter', 'General Sans', -apple-system, sans-serif;
  font-size: 13px;
}
.dash__chrome {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.dash__dots { display: flex; gap: 6px; }
.dash__dots span {
  width: 11px; height: 11px; border-radius: 50%;
  background: rgba(255,255,255,0.12);
}
.dash__dots span:nth-child(1) { background: #ff5f57; }
.dash__dots span:nth-child(2) { background: #febc2e; }
.dash__dots span:nth-child(3) { background: #28c840; }
.dash__url {
  flex: 1;
  text-align: center;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  background: rgba(0,0,0,0.3);
  padding: 5px 12px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.05);
}

.dash__header {
  padding: 18px 20px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.dash__title {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.01em;
}
.dash__title span {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  font-size: 12px;
}
.dash__timestamp {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
  gap: 6px;
}
.dash__timestamp::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 6px rgba(34,197,94,0.5);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.dash__kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.kpi {
  padding: 14px 16px;
  border-right: 1px solid rgba(255,255,255,0.05);
}
.kpi:last-child { border-right: none; }
.kpi__label {
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 6px;
}
.kpi__value {
  font-family: 'Switzer', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1;
}
.kpi__value--alert { color: #ef4444; }
.kpi__value--up { color: #22c55e; }
.kpi__value .unit { font-size: 11px; font-weight: 500; color: rgba(255,255,255,0.4); margin-left: 3px; }

.dash__table {
  padding: 6px 4px 10px;
}
.dash__row {
  display: grid;
  grid-template-columns: 1.4fr 2fr auto;
  align-items: center;
  gap: 14px;
  padding: 11px 16px;
  border-radius: 6px;
  transition: background 0.15s;
}
.dash__row:hover { background: rgba(255,255,255,0.02); }
.dash__row + .dash__row { border-top: 1px solid rgba(255,255,255,0.04); }
.dash__domain {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 12px;
  color: rgba(255,255,255,0.9);
  font-weight: 500;
}
.dash__scores {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
}
.score-bar {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.score-bar__label {
  font-size: 9px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.score-bar__track {
  height: 4px;
  background: rgba(255,255,255,0.06);
  border-radius: 2px;
  overflow: hidden;
}
.score-bar__fill {
  height: 100%;
  border-radius: 2px;
}
.fill--green { background: linear-gradient(90deg, #16a34a, #22c55e); }
.fill--amber { background: linear-gradient(90deg, #d97706, #f59e0b); }
.fill--red { background: linear-gradient(90deg, #dc2626, #ef4444); }

.badge {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 9px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}
.badge::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
}
.badge--red { background: rgba(239,68,68,0.12); color: #fca5a5; }
.badge--red::before { background: #ef4444; }
.badge--amber { background: rgba(245,158,11,0.12); color: #fcd34d; }
.badge--amber::before { background: #f59e0b; }
.badge--green { background: rgba(34,197,94,0.10); color: #86efac; }
.badge--green::before { background: #22c55e; }

@media (max-width: 900px) {
  .hero--product .hero__grid { grid-template-columns: 1fr; }
  .dash-wrap { transform: rotate(0); margin-top: 32px; }
  .dash__row { grid-template-columns: 1fr; gap: 8px; }
  .dash__kpis { grid-template-columns: repeat(2, 1fr); }
  .kpi:nth-child(2) { border-right: none; }
}

/* ---------- Proof bar ---------- */
.proof-bar {
  background: var(--bg-dark-2);
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
  padding: 36px 0;
}
.proof-bar__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.proof-logos {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}
.proof-logos__lead {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.4);
  margin-right: 4px;
}
.brand-pill {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.02em;
}
.brand-pill--rightlander {
  background: linear-gradient(135deg, rgba(224,25,140,0.15), rgba(245,166,35,0.10));
  border-color: rgba(224,25,140,0.3);
  color: #fff;
}

.proof-stat {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}
.proof-stat strong {
  color: #fff;
  font-family: 'Switzer', sans-serif;
}

.proof-quote {
  background: var(--bg-dark-card);
  border: 1px solid var(--border-dark);
  border-left: 3px solid var(--pink);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  margin-top: 32px;
  max-width: 820px;
}
.proof-quote p {
  font-size: 17px;
  font-style: italic;
  color: rgba(255,255,255,0.9);
  line-height: 1.55;
  margin-bottom: 10px;
}
.proof-quote cite {
  font-style: normal;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}

/* ---------- Blind Spots cards (with mocks) ---------- */
.blindspots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.bs-card {
  background: var(--bg-dark-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.bs-card h3 {
  font-size: 19px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.01em;
  line-height: 1.25;
}
.bs-card p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.6);
}

.bs-mock {
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-md);
  padding: 18px;
  min-height: 180px;
  font-family: 'Inter', 'General Sans', sans-serif;
  font-size: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Flow diagram */
.flow-node {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: rgba(255,255,255,0.8);
}
.flow-node__icon {
  width: 18px; height: 18px;
  background: var(--gradient-primary);
  border-radius: 4px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; color: #fff; font-weight: 700;
}
.flow-node--hidden { border-color: rgba(239,68,68,0.4); background: rgba(239,68,68,0.06); }
.flow-node--hidden .flow-node__icon { background: #ef4444; }
.flow-arrow {
  margin-left: 18px;
  color: rgba(255,255,255,0.3);
  font-size: 10px;
  line-height: 1;
}

/* Social card */
.social-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 12px;
}
.social-card__head {
  display: flex; gap: 8px; align-items: center; margin-bottom: 8px;
}
.social-card__avatar {
  width: 24px; height: 24px;
  background: linear-gradient(135deg, #e0198c, #f5a623);
  border-radius: 50%;
}
.social-card__handle { font-size: 11px; color: #fff; font-weight: 500; }
.social-card__time { font-size: 10px; color: rgba(255,255,255,0.4); }
.social-card__body { font-size: 12px; color: rgba(255,255,255,0.75); line-height: 1.5; }
.social-card__flag {
  margin-top: 10px;
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.3);
  border-radius: 6px;
  padding: 8px 10px;
  font-size: 11px;
  color: #fca5a5;
  display: flex; align-items: center; gap: 6px;
}
.social-card__flag::before {
  content: '⚠';
  font-size: 12px;
}

/* Timeline alert */
.alert-line {
  display: flex; gap: 10px; align-items: flex-start;
  padding: 10px;
  border-radius: 6px;
}
.alert-line + .alert-line { border-top: 1px solid rgba(255,255,255,0.05); }
.alert-line__time {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: rgba(255,255,255,0.4);
  padding-top: 1px;
  flex-shrink: 0;
}
.alert-line__body {
  font-size: 11px;
  color: rgba(255,255,255,0.85);
  line-height: 1.45;
}
.alert-line__body strong { color: #fff; }
.alert-line--warn { background: rgba(245,158,11,0.05); border-left: 2px solid #f59e0b; padding-left: 8px; }
.alert-line--alert { background: rgba(239,68,68,0.05); border-left: 2px solid #ef4444; padding-left: 8px; }

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

/* ---------- How It Works (3 cards) ---------- */
.howit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.howit-card {
  background: var(--bg-dark-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
}
.howit-card__num {
  font-family: 'Switzer', sans-serif;
  font-size: 96px;
  font-weight: 800;
  line-height: 0.85;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 16px;
  letter-spacing: -0.04em;
}
.howit-card h3 {
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.howit-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

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

/* ---------- Partner Score Card (mock) ---------- */
.score-card {
  background: linear-gradient(180deg, rgba(20,20,22,0.95), rgba(13,13,15,0.95));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 40px;
  max-width: 720px;
  margin: 0 auto;
  box-shadow:
    0 30px 80px rgba(0,0,0,0.5),
    inset 0 1px 0 rgba(255,255,255,0.05);
  position: relative;
}
.score-card__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.score-card__partner {
  font-family: 'JetBrains Mono', monospace;
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.01em;
}
.score-card__sub {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
}
.score-card__status {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  background: rgba(34,197,94,0.15);
  color: #4ade80;
  border: 1px solid rgba(34,197,94,0.3);
}

.score-rings {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}
.score-ring {
  text-align: center;
}
.score-ring__circle {
  width: 110px;
  height: 110px;
  margin: 0 auto 12px;
  position: relative;
}
.score-ring__circle svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
.score-ring__value {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Switzer', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}
.score-ring__label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  font-weight: 600;
}

.score-bullets {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.score-bullet {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
}
.score-bullet__icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(34,197,94,0.15);
  color: #4ade80;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}

.score-caption {
  text-align: center;
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  margin-top: 36px;
  line-height: 1.5;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 700px) {
  .score-card { padding: 24px; }
  .score-rings { grid-template-columns: 1fr; gap: 18px; }
  .score-card__top { flex-direction: column; }
}

/* ---------- 3-tier Pricing ---------- */
.pricing-anchor {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  margin-bottom: 12px;
  display: inline-block;
}
.pricing-anchor span {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: 'Switzer', sans-serif;
  font-weight: 700;
}

.pricing-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 24px;
}
.tier {
  background: var(--bg-dark-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  transition: transform var(--dur-med) var(--ease-out), border-color var(--dur-med);
}
.tier:hover { transform: translateY(-4px); border-color: rgba(255,255,255,0.18); }
.tier--featured {
  border: 1px solid rgba(224,25,140,0.4);
  background: linear-gradient(180deg, rgba(224,25,140,0.05), var(--bg-dark-card) 70%);
  box-shadow: 0 20px 60px rgba(224,25,140,0.15);
}
.tier--featured::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-primary);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
}
.tier__name {
  font-family: 'Switzer', sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
}
.tier__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.tier__price-amount {
  font-family: 'Switzer', sans-serif;
  font-size: 52px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1;
}
.tier__price-period {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
}
.tier__tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
  margin-top: -10px;
}
.tier__features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 20px;
}
.tier__features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
}
.tier__features li::before {
  content: '';
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='%2322c55e' d='M10 0a10 10 0 100 20 10 10 0 000-20zm5.3 7.3l-6 6a1 1 0 01-1.4 0l-3-3a1 1 0 011.4-1.4L8.6 11.2l5.3-5.3a1 1 0 011.4 1.4z'/%3E%3C/svg%3E");
  background-size: contain;
  flex-shrink: 0;
  margin-top: 2px;
}
.tier__cta {
  margin-top: auto;
  text-align: center;
  padding: 13px 20px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 14px;
  transition: transform var(--dur-fast) var(--ease-spring), box-shadow var(--dur-fast);
}
.tier__cta--ghost {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.25);
  color: #fff;
}
.tier__cta--ghost:hover { border-color: #fff; background: rgba(255,255,255,0.05); }
.tier__cta--solid {
  background: var(--gradient-primary);
  color: #fff;
}
.tier__cta--solid:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(224,25,140,0.35); }
.tier__cta--dark {
  background: #fff;
  color: #050505;
}
.tier__cta--dark:hover { box-shadow: 0 8px 24px rgba(255,255,255,0.15); }

.annual-note {
  text-align: center;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin-top: 24px;
}
.annual-note strong { color: #fff; }

@media (max-width: 900px) {
  .pricing-tiers { grid-template-columns: 1fr; }
}

/* ---------- "Is Trackback for you" qualifying block ---------- */
.qualify-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}
.qualify-card {
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.qualify-card--positive {
  background: linear-gradient(180deg, rgba(34,197,94,0.10), rgba(34,197,94,0.02));
  border: 1px solid rgba(34,197,94,0.25);
}
.qualify-card--alt {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
}
.qualify-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  font-weight: 700;
}
.qualify-card--positive .qualify-icon {
  background: rgba(34,197,94,0.2);
  color: #4ade80;
}
.qualify-card--alt .qualify-icon {
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.6);
}
.qualify-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.3;
}
.qualify-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.55;
}
.qualify-card a {
  color: var(--pink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

/* ---------- Dedicated Rightlander band ---------- */
.rl-band {
  background: linear-gradient(180deg, #060608, #0a0a0d);
  position: relative;
  overflow: hidden;
  padding: clamp(64px, 8vw, 120px) 0;
}
.rl-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(40% 60% at 15% 50%, rgba(224,25,140,0.12), transparent 70%),
    radial-gradient(40% 60% at 85% 50%, rgba(245,166,35,0.08), transparent 70%);
  pointer-events: none;
}
.rl-band__inner {
  position: relative;
  z-index: 2;
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
.rl-logo-big {
  display: inline-block;
  font-family: 'Switzer', sans-serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(90deg, #e0198c, #f5a623);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 24px;
}
.rl-logo-big .R {
  display: inline-block;
  vertical-align: middle;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--gradient-primary);
  margin-right: 12px;
  font-size: 26px;
  line-height: 44px;
  text-align: center;
  -webkit-text-fill-color: #fff;
  color: #fff;
  font-weight: 900;
}
.rl-band h2 {
  font-family: 'Switzer', sans-serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  line-height: 1.15;
}
.rl-band p {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  line-height: 1.65;
  max-width: 720px;
  margin: 0 auto 32px;
}
.rl-stat-row {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  padding: 18px 28px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-pill);
  flex-wrap: wrap;
  justify-content: center;
}
.rl-stat-row span { font-size: 14px; color: rgba(255,255,255,0.85); font-weight: 500; }
.rl-stat-row .dot { width: 4px; height: 4px; border-radius: 50%; background: rgba(255,255,255,0.3); }

/* ---------- Final CTA ---------- */
.final-cta {
  padding: clamp(56px, 8vw, 96px) 0;
  background: var(--bg-dark);
  text-align: center;
  border-top: 1px solid var(--border-dark);
}
.final-cta h2 {
  font-family: 'Switzer', sans-serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.2;
  color: #fff;
}
.final-cta .domain-form { margin-left: auto; margin-right: auto; }
.final-cta .form-micro { justify-content: center; }

/* ---------- Mid-page intro ---------- */
.midpage-hd {
  max-width: 820px;
  margin-bottom: 40px;
}
.midpage-hd h2 {
  font-family: 'Switzer', sans-serif;
  font-size: clamp(28px, 3.8vw, 52px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 18px;
}
.midpage-hd h2 .accent {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.midpage-hd p {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255,255,255,0.7);
  max-width: 680px;
}

/* ---------- Resources page boxes ---------- */
.resources-intro {
  max-width: 720px;
  margin-bottom: 40px;
}
.resources-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 64px;
}
.res-card {
  background: var(--bg-dark-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex; flex-direction: column; gap: 12px;
}
.res-card__type {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--pink);
  font-weight: 700;
}
.res-card h3 { font-size: 18px; color: #fff; line-height: 1.3; font-weight: 600; }
.res-card p { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.55; }
.res-card a {
  margin-top: auto;
  font-size: 13px;
  color: rgba(255,255,255,0.9);
  font-weight: 600;
  display: inline-flex; align-items: center; gap: 6px;
}
.res-card a:hover { color: var(--pink); }
@media (max-width: 900px) { .resources-grid { grid-template-columns: 1fr; } }


/* ---------- How It Works visual ---------- */
.howit-visual {
  max-width: 1080px;
  margin: 0 auto 56px;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(224, 25, 140, 0.18),
              0 6px 24px rgba(0, 0, 0, 0.4);
}
.howit-visual img {
  width: 100%;
  height: auto;
  display: block;
}
.howit-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: 16px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06);
}

.howit-cta {
  text-align: center;
  margin-top: 48px;
}
.howit-cta .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.howit-cta__note {
  margin-top: 16px;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
}
.howit-cta__note a {
  color: #f5a623;
  text-decoration: underline;
  text-decoration-color: rgba(245, 166, 35, 0.4);
  text-underline-offset: 3px;
}
.howit-cta__note a:hover { color: #c8f000; }

@media (max-width: 768px) {
  .howit-visual { margin-bottom: 36px; border-radius: 12px; }
}

/* ===========================================================
 * 40+ INDICATORS · 6 RISK CATEGORIES (program-health.html)
 * =========================================================== */
.indicators-section .container { max-width: 1180px; }

.prio-legend {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 28px auto 40px;
  padding: 14px 22px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  width: max-content;
  max-width: 100%;
}
.prio-legend__label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-right: 6px;
}

.prio-chip {
  display: inline-flex;
  align-items: center;
  padding: 4px 11px;
  border-radius: 999px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  white-space: nowrap;
  border: 1px solid transparent;
}
.chip--default {
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.7);
  border-color: rgba(255,255,255,0.1);
}
.chip--important {
  background: rgba(245, 166, 35, 0.14);
  color: #ffc879;
  border-color: rgba(245, 166, 35, 0.35);
}
.chip--alert {
  background: rgba(224, 25, 140, 0.16);
  color: #ff7eba;
  border-color: rgba(224, 25, 140, 0.4);
}
.chip--config {
  background: rgba(80, 140, 240, 0.14);
  color: #8eb5ff;
  border-color: rgba(80, 140, 240, 0.4);
}

.indicator-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
@media (max-width: 860px) {
  .indicator-grid { grid-template-columns: 1fr; }
}

.indicator-card {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.indicator-card[open] {
  background: rgba(255,255,255,0.04);
  border-color: rgba(245, 166, 35, 0.35);
}
.indicator-card__head {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  cursor: pointer;
  user-select: none;
}
.indicator-card__head::-webkit-details-marker { display: none; }
.indicator-card__title {
  font-family: 'Switzer', 'General Sans', sans-serif;
  font-weight: 600;
  font-size: 17px;
  color: #fff;
  flex: 1;
}
.indicator-card__count {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
}
.indicator-card__chev {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  transition: transform 0.2s ease;
  font-weight: 400;
  line-height: 1;
}
.indicator-card[open] .indicator-card__chev {
  transform: rotate(45deg);
  background: rgba(245, 166, 35, 0.15);
  border-color: rgba(245, 166, 35, 0.4);
  color: #ffc879;
}
.indicator-card__list {
  list-style: none;
  padding: 4px 22px 22px;
  margin: 0;
  display: grid;
  gap: 8px;
}
.signal-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.05);
}
.signal-row__name {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
}

/* ===========================================================
 * WEEKLY HEALTH CHECK · EMAIL MOCKUP
 * =========================================================== */
.weekly-section .container { max-width: 1080px; }

.email-mock {
  max-width: 920px;
  margin: 28px auto 0;
  background: #fafaf7;
  color: #1a1a1a;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 90px -30px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.05);
}
.email-mock__chrome {
  background: linear-gradient(180deg, #ecece6, #e3e3dc);
  padding: 14px 20px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.email-mock__dots {
  display: flex;
  gap: 6px;
  margin-bottom: 10px;
}
.email-mock__dots span {
  width: 11px; height: 11px;
  border-radius: 50%;
  background: rgba(0,0,0,0.18);
}
.email-mock__dots span:nth-child(1) { background: #ff5f57; }
.email-mock__dots span:nth-child(2) { background: #febc2e; }
.email-mock__dots span:nth-child(3) { background: #28c840; }
.email-mock__subject {
  font-family: 'Switzer', 'General Sans', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: #1a1a1a;
}
.email-mock__from {
  font-size: 12px;
  color: rgba(0,0,0,0.5);
  margin-top: 2px;
}
.email-mock__body { padding: 28px; }

.email-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
@media (max-width: 720px) { .email-tiles { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .email-tiles { grid-template-columns: 1fr; } }
.email-tile {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 10px;
  padding: 16px 18px;
}
.email-tile__label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.55);
  margin-bottom: 8px;
}
.email-tile__value {
  font-family: 'Switzer', 'General Sans', sans-serif;
  font-weight: 700;
  font-size: 26px;
  color: #1a1a1a;
  line-height: 1;
}
.email-tile__sub {
  margin-top: 6px;
  font-size: 12.5px;
  color: rgba(0,0,0,0.55);
}
.email-tile--alert {
  background: linear-gradient(135deg, rgba(224, 25, 140, 0.06), rgba(245, 166, 35, 0.04));
  border-color: rgba(224, 25, 140, 0.3);
}
.email-tile--alert .email-tile__value { color: #c81774; }
.email-tile--up {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.06), rgba(200, 240, 0, 0.05));
  border-color: rgba(34, 197, 94, 0.28);
}
.email-tile--up .email-tile__value { color: #1a8a44; }
.email-tile__arrow { color: #1a8a44; font-weight: 700; }

.email-narrative {
  margin-top: 22px;
  padding: 18px 20px;
  border-radius: 10px;
  background: #f3f3ee;
  border-left: 3px solid #f5a623;
  color: #2a2a2a;
  font-size: 15px;
  line-height: 1.55;
}

/* Critical Alerts subsection */
.critical-alerts {
  margin: 56px auto 0;
  max-width: 920px;
  padding: 28px 32px;
  border-radius: 16px;
  background: rgba(224, 25, 140, 0.06);
  border: 1px solid rgba(224, 25, 140, 0.22);
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.critical-alerts__head { flex: 1 1 320px; }
.critical-alerts__head h3 {
  font-family: 'Switzer', sans-serif;
  font-weight: 600;
  font-size: 19px;
  color: #fff;
  margin-bottom: 6px;
}
.critical-alerts__head p {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}
.critical-alerts__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.alert-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(224, 25, 140, 0.16);
  color: #ff9fc8;
  border: 1px solid rgba(224, 25, 140, 0.35);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
}
.alert-chip__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #e0198c;
  box-shadow: 0 0 8px rgba(224, 25, 140, 0.8);
  animation: alert-pulse 1.8s ease-in-out infinite;
}
@keyframes alert-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ===========================================================
 * PRICING · 90-DAY STRUCTURAL TIMELINE
 * =========================================================== */
.timeline-section { padding-top: 0; padding-bottom: clamp(72px, 8vw, 112px); }
.timeline-section .section__header { margin-bottom: 36px; }

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  position: relative;
}
.timeline-grid::before {
  content: "";
  position: absolute;
  top: 32px;
  left: 6%;
  right: 6%;
  height: 2px;
  background: linear-gradient(90deg, #e0198c, #f5a623 50%, #c8f000);
  opacity: 0.5;
  z-index: 0;
}
@media (max-width: 900px) {
  .timeline-grid { grid-template-columns: 1fr; gap: 14px; }
  .timeline-grid::before { display: none; }
}

.timeline-card {
  position: relative;
  z-index: 1;
  padding: 22px 22px 24px;
  border-radius: 14px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.1);
}
.timeline-card__phase {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(245, 166, 35, 0.4);
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.1em;
  color: #ffc879;
  margin-bottom: 14px;
}
.timeline-card h3 {
  font-family: 'Switzer', sans-serif;
  font-weight: 600;
  font-size: 17px;
  color: #fff;
  margin-bottom: 8px;
}
.timeline-card p {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255,255,255,0.65);
}

/* ===========================================================
 * PRODUCT PAGE EXPANSIONS
 * =========================================================== */
.prefs-mock {
  max-width: 920px;
  margin: 32px auto 0;
  background: #fafaf7;
  color: #1a1a1a;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
}
.prefs-mock__head {
  padding: 14px 22px;
  background: linear-gradient(180deg, #ecece6, #e3e3dc);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.prefs-mock__head h4 {
  font-family: 'Switzer', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: #1a1a1a;
  margin: 0;
}
.prefs-mock__head p {
  margin: 2px 0 0;
  font-size: 12px;
  color: rgba(0,0,0,0.55);
}
.prefs-mock table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
}
.prefs-mock th, .prefs-mock td {
  padding: 11px 14px;
  text-align: left;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.prefs-mock th {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.55);
  text-align: center;
  background: rgba(0,0,0,0.02);
}
.prefs-mock th:first-child { text-align: left; }
.prefs-mock td:not(:first-child) { text-align: center; }
.prefs-mock td input[type="radio"] {
  width: 16px;
  height: 16px;
  accent-color: #e0198c;
  cursor: pointer;
}
.prefs-mock tr:last-child td { border-bottom: none; }

.inside-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 40px;
}
@media (max-width: 1000px) { .inside-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .inside-grid { grid-template-columns: 1fr; } }
.inside-card {
  padding: 22px;
  border-radius: 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
}
.inside-card__icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(224, 25, 140, 0.16), rgba(245, 166, 35, 0.16));
  border: 1px solid rgba(245, 166, 35, 0.3);
  margin-bottom: 14px;
  color: #ffc879;
}
.inside-card h3 {
  font-family: 'Switzer', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #fff;
  margin-bottom: 8px;
}
.inside-card p {
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(255,255,255,0.65);
}

.integrations-strip {
  margin: 56px auto 0;
  max-width: 1100px;
  text-align: center;
}
.integrations-strip__lead {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 18px;
  line-height: 1.5;
}
.integrations-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.integration-chip {
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  font-family: 'Switzer', sans-serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.85);
  transition: border-color 0.2s ease, background 0.2s ease;
}
.integration-chip:hover {
  border-color: rgba(245, 166, 35, 0.5);
  background: rgba(245, 166, 35, 0.08);
}

/* ===========================================================
 * TRUST WALL (about.html, customers.html)
 * =========================================================== */
.trust-wall {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
  margin-top: 36px;
}
@media (max-width: 1100px) { .trust-wall { grid-template-columns: repeat(5, 1fr); } }
@media (max-width: 760px)  { .trust-wall { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 440px)  { .trust-wall { grid-template-columns: repeat(2, 1fr); } }

.trust-tile {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 18px 14px;
  min-height: 76px;
  border-radius: 10px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.08);
  font-family: 'Switzer', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.01em;
  color: rgba(255,255,255,0.85);
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease, color 0.2s ease;
}
.trust-tile:hover {
  border-color: rgba(245, 166, 35, 0.45);
  background: rgba(245, 166, 35, 0.06);
  color: #ffc879;
  transform: translateY(-1px);
}
.trust-caption {
  margin-top: 22px;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  font-style: italic;
}

/* ===========================================================
 * CUSTOMERS USE-CASE CARDS (replaces anonymous quote)
 * =========================================================== */
.usecase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 36px;
}
@media (max-width: 920px) { .usecase-grid { grid-template-columns: 1fr; } }
.usecase-card {
  padding: 26px 24px;
  border-radius: 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
}
.usecase-card__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, #e0198c, #f5a623);
  font-family: 'JetBrains Mono', monospace;
  font-weight: 600;
  color: #fff;
  font-size: 13px;
  margin-bottom: 14px;
}
.usecase-card h3 {
  font-family: 'Switzer', sans-serif;
  font-weight: 600;
  font-size: 17px;
  color: #fff;
  margin-bottom: 8px;
}
.usecase-card p {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255,255,255,0.65);
}

/* ===========================================================
 * LEGAL PAGES (privacy.html, terms.html)
 * =========================================================== */
.container--narrow { max-width: 760px; }
.legal-header { margin-bottom: 32px; padding-bottom: 24px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.legal-header h1 {
  font-family: 'Switzer', sans-serif;
  font-weight: 700;
  font-size: clamp(32px, 4vw, 44px);
  color: #fff;
  line-height: 1.1;
  margin: 10px 0 12px;
}
.legal-meta {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.02em;
}
.legal-prose { color: rgba(255,255,255,0.78); font-size: 15.5px; line-height: 1.65; }
.legal-prose h2 {
  font-family: 'Switzer', sans-serif;
  font-weight: 600;
  font-size: 20px;
  color: #fff;
  margin: 32px 0 12px;
}
.legal-prose p { margin: 0 0 14px; }
.legal-prose ul { margin: 0 0 18px 22px; padding: 0; }
.legal-prose li { margin: 0 0 8px; }
.legal-prose a {
  color: #ffc879;
  text-decoration: underline;
  text-decoration-color: rgba(245, 166, 35, 0.35);
  text-underline-offset: 3px;
}
.legal-prose a:hover { color: #c8f000; }

/* ===========================================================
 * MOBILE FIXES (critique items 1, 2, 3, 5)
 * =========================================================== */

/* Hero typography scale down on small screens */
@media (max-width: 600px) {
  .hero h1,
  .hero-title {
    font-size: clamp(2rem, 8vw, 3.2rem) !important;
    line-height: 1.05 !important;
  }
}

/* Hero domain form: stack input above button at ≤480px */
@media (max-width: 480px) {
  .domain-form {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 8px;
  }
  .domain-form input {
    width: 100%;
    border-radius: 12px;
  }
  .domain-form button {
    width: 100%;
    border-radius: 12px;
    padding: 14px 18px;
  }
}

/* Hero dashboard mock: kill rotation at <=768px, scale down + max 3 rows at <=600px */
@media (max-width: 768px) {
  .dash-wrap,
  .dash {
    transform: none !important;
  }
}
@media (max-width: 600px) {
  .dash-wrap { padding: 0; }
  .dash {
    transform: scale(0.92);
    transform-origin: top left;
  }
  .dash__row {
    padding: 8px 12px !important;
    max-height: 60px;
    overflow: hidden;
  }
  /* Show only first three rows */
  .dash__row:nth-of-type(n + 4) { display: none; }
  /* Reduce header padding */
  .dash__header { padding: 12px 14px; }
  .dash__kpis { gap: 1px; }
}

/* Proof bar — stack BUILT BY / USED BY blocks at <=640px */
@media (max-width: 640px) {
  .proof-logos {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
  }
  .proof-logos > span[style*="opacity"] { display: none; }
  .proof-bar__row { justify-content: center; }
}

/* Domain hero form already targeted above */
