:root {
      --navy: #10233f;
      --blue: #1d5fc1;
      --blue-dark: #164b99;
      --blue-soft: #edf5ff;
      --gold: #d8a62a;
      --ink: #172033;
      --muted: #5e6879;
      --line: #dfe5ed;
      --surface: #ffffff;
      --background: #f6f8fb;
      --success: #17764a;
      --radius: 18px;
      --shadow: 0 18px 48px rgba(16, 35, 63, 0.10);
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      color: var(--ink);
      background: var(--background);
      font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
      line-height: 1.6;
    }

    a {
      color: inherit;
    }

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

    .site-header {
      background: rgba(255, 255, 255, 0.94);
      border-bottom: 1px solid var(--line);
    }

    .header-inner {
      min-height: 76px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      text-decoration: none;
    }

    .brand-mark {
      width: 42px;
      height: 42px;
      display: grid;
      place-items: center;
      color: white;
      background: var(--navy);
      border-radius: 12px;
      font-weight: 800;
      letter-spacing: -0.04em;
    }

    .brand-copy {
      display: grid;
      line-height: 1.15;
    }

    .brand-name {
      color: var(--navy);
      font-weight: 800;
      font-size: 1.02rem;
    }

    .brand-lab {
      color: var(--muted);
      font-size: 0.76rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .status {
      color: var(--success);
      background: #eaf8f1;
      border: 1px solid #c9ebda;
      border-radius: 999px;
      padding: 7px 12px;
      font-size: 0.82rem;
      font-weight: 700;
    }

    .hero {
      padding: 92px 0 76px;
      background:
        radial-gradient(circle at top right, #dbeaff 0, transparent 36%),
        linear-gradient(180deg, #ffffff 0%, #f6f8fb 100%);
    }

    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
      align-items: center;
      gap: 54px;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--blue-dark);
      background: var(--blue-soft);
      border: 1px solid #cfe1fb;
      border-radius: 999px;
      padding: 7px 12px;
      font-weight: 750;
      font-size: 0.83rem;
    }

    h1 {
      max-width: 760px;
      margin: 22px 0 20px;
      color: var(--navy);
      font-size: clamp(2.55rem, 6vw, 4.65rem);
      line-height: 1.02;
      letter-spacing: -0.055em;
    }

    .hero-copy {
      max-width: 710px;
      margin: 0;
      color: var(--muted);
      font-size: clamp(1.05rem, 2vw, 1.25rem);
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 30px;
    }

    .button {
      display: inline-flex;
      min-height: 48px;
      align-items: center;
      justify-content: center;
      padding: 0 20px;
      border-radius: 12px;
      text-decoration: none;
      font-weight: 800;
    }

    .button-primary {
      color: white;
      background: var(--blue);
      box-shadow: 0 10px 22px rgba(29, 95, 193, 0.22);
    }

    .button-primary:hover {
      background: var(--blue-dark);
    }

    .button-secondary {
      color: var(--navy);
      background: white;
      border: 1px solid var(--line);
    }

    .hero-note {
      margin: 18px 0 0;
      color: var(--muted);
      font-size: 0.88rem;
    }

    .audit-card {
      padding: 30px;
      background: var(--surface);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
    }

    .audit-card h2 {
      margin: 0 0 8px;
      color: var(--navy);
      font-size: 1.35rem;
    }

    .audit-card > p {
      margin: 0 0 22px;
      color: var(--muted);
    }

    .audit-list {
      display: grid;
      gap: 13px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .audit-list li {
      display: flex;
      align-items: flex-start;
      gap: 11px;
    }

    .check {
      flex: 0 0 auto;
      width: 24px;
      height: 24px;
      display: grid;
      place-items: center;
      color: white;
      background: var(--success);
      border-radius: 50%;
      font-size: 0.78rem;
      font-weight: 900;
    }

    .trust-strip {
      padding: 24px 0;
      background: var(--navy);
      color: white;
    }

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

    .trust-item {
      text-align: center;
    }

    .trust-item strong {
      display: block;
      font-size: 1rem;
    }

    .trust-item span {
      color: #c5d2e5;
      font-size: 0.86rem;
    }

    .section {
      padding: 82px 0;
    }

    .section-white {
      background: white;
    }

    .section-heading {
      max-width: 720px;
      margin: 0 auto 42px;
      text-align: center;
    }

    .section-heading h2 {
      margin: 0 0 13px;
      color: var(--navy);
      font-size: clamp(2rem, 4vw, 3rem);
      line-height: 1.1;
      letter-spacing: -0.035em;
    }

    .section-heading p {
      margin: 0;
      color: var(--muted);
      font-size: 1.05rem;
    }

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

    .card {
      padding: 27px;
      background: white;
      border: 1px solid var(--line);
      border-radius: var(--radius);
    }

    .card-number {
      width: 38px;
      height: 38px;
      display: grid;
      place-items: center;
      margin-bottom: 18px;
      color: white;
      background: var(--blue);
      border-radius: 11px;
      font-weight: 800;
    }

    .card h3 {
      margin: 0 0 9px;
      color: var(--navy);
      font-size: 1.15rem;
    }

    .card p {
      margin: 0;
      color: var(--muted);
    }

    .deliverable {
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 42px;
      align-items: center;
    }

    .deliverable-copy h2 {
      margin: 0 0 16px;
      color: var(--navy);
      font-size: clamp(2rem, 4vw, 3rem);
      line-height: 1.12;
      letter-spacing: -0.04em;
    }

    .deliverable-copy p {
      color: var(--muted);
      font-size: 1.05rem;
    }

    .report {
      padding: 30px;
      background: var(--navy);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      color: white;
    }

    .report-label {
      color: #9fb7d7;
      font-size: 0.78rem;
      font-weight: 800;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .report h3 {
      margin: 8px 0 22px;
      font-size: 1.45rem;
    }

    .report-row {
      display: flex;
      justify-content: space-between;
      gap: 20px;
      padding: 13px 0;
      border-top: 1px solid rgba(255, 255, 255, 0.14);
    }

    .report-row span {
      color: #c5d2e5;
    }

    .pilot-panel {
      padding: 44px;
      color: white;
      background:
        linear-gradient(135deg, rgba(29, 95, 193, 0.98), rgba(16, 35, 63, 0.98));
      border-radius: 24px;
      box-shadow: var(--shadow);
      text-align: center;
    }

    .pilot-panel h2 {
      margin: 0 0 12px;
      font-size: clamp(2rem, 4vw, 3rem);
      line-height: 1.1;
      letter-spacing: -0.04em;
    }

    .pilot-panel p {
      max-width: 690px;
      margin: 0 auto;
      color: #dce8f8;
      font-size: 1.05rem;
    }

    .preview-notice {
      display: inline-block;
      margin-top: 24px;
      padding: 10px 15px;
      color: var(--navy);
      background: white;
      border-radius: 10px;
      font-weight: 800;
    }

    .faq {
      max-width: 850px;
      margin: 0 auto;
      display: grid;
      gap: 14px;
    }

    details {
      padding: 20px 22px;
      background: white;
      border: 1px solid var(--line);
      border-radius: 14px;
    }

    summary {
      cursor: pointer;
      color: var(--navy);
      font-weight: 800;
    }

    details p {
      margin: 12px 0 0;
      color: var(--muted);
    }

    footer {
      padding: 34px 0;
      color: var(--muted);
      background: white;
      border-top: 1px solid var(--line);
      font-size: 0.86rem;
    }

    .footer-inner {
      display: flex;
      justify-content: space-between;
      gap: 28px;
      flex-wrap: wrap;
    }

    @media (max-width: 850px) {
      .hero {
        padding-top: 64px;
      }

      .hero-grid,
      .deliverable {
        grid-template-columns: 1fr;
      }

      .trust-grid,
      .cards {
        grid-template-columns: 1fr 1fr;
      }

      .audit-card {
        max-width: 620px;
      }
    }

    @media (max-width: 560px) {
      .container {
        width: min(100% - 28px, 1120px);
      }

      .header-inner {
        min-height: 68px;
      }

      .status {
        display: none;
      }

      .trust-grid,
      .cards {
        grid-template-columns: 1fr;
      }

      .trust-item {
        padding: 6px 0;
      }

      .section {
        padding: 62px 0;
      }

      .pilot-panel {
        padding: 32px 22px;
      }

      .button {
        width: 100%;
      }
    }


/* ReadyCheck Labs legal pages */

.preview-notice {
  text-decoration: none;
}

.pilot-privacy {
  margin: 14px auto 0;
  color: #dce8f8;
  font-size: 0.9rem;
}

.pilot-privacy a {
  color: #ffffff;
  font-weight: 750;
}

.legal-page {
  min-height: 70vh;
  padding: 72px 0;
}

.legal-card {
  max-width: 850px;
  margin: 0 auto;
  padding: 42px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.legal-card h1 {
  margin: 8px 0 4px;
  color: var(--navy);
  font-size: clamp(2.35rem, 5vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.legal-card h2 {
  margin: 34px 0 8px;
  color: var(--navy);
  font-size: 1.3rem;
}

.legal-card p {
  color: var(--muted);
}

.legal-card a {
  color: var(--blue-dark);
  font-weight: 700;
}

.legal-eyebrow {
  margin: 0;
  color: var(--blue-dark);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.legal-updated {
  margin-top: 0;
  font-size: 0.9rem;
}

.legal-back {
  margin-top: 38px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

@media (max-width: 560px) {
  .legal-page {
    padding: 42px 0;
  }

  .legal-card {
    padding: 28px 22px;
  }
}
