:root {
    --cream: #F5F1E8;
    --cream-soft: #FAF7EE;
    --navy: #0E1E2E;
    --navy-soft: #142838;
    --yellow: #FFC93C;
    --yellow-soft: #FFD867;
    --red: #E04832;
    --green: #4FB67A;
    --coral: #E07843;
    --muted: rgba(14, 30, 46, 0.62);
    --muted-soft: rgba(14, 30, 46, 0.42);
    --line: rgba(14, 30, 46, 0.12);
    --white: #FFFFFF;
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--cream);
    color: var(--navy);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
  }

  .italic-serif {
    font-family: 'Fraunces', Georgia, serif;
    font-style: italic;
    font-weight: 400;
  }

  /* Header */
  .nav {
    max-width: 1240px;
    margin: 0 auto;
    padding: 24px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .logo { font-weight: 800; font-size: 11px; letter-spacing: 0.04em; line-height: 1.1; }
  .logo span { display: block; }
  .nav-cta {
    background: var(--navy);
    color: var(--cream);
    padding: 12px 22px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  .nav-cta::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--red);
    border-radius: 50%;
  }

  /* Hero */
  .hero {
    max-width: 1040px;
    margin: 0 auto;
    padding: 48px 32px 40px;
  }
  .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 28px;
  }
  .eyebrow::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--red);
    border-radius: 50%;
  }
  h1 {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: clamp(44px, 6.5vw, 92px);
    line-height: 1.15;
    letter-spacing: -0.025em;
    margin-bottom: 24px;
  }
  h1 .italic-serif { font-weight: 400; letter-spacing: -0.01em; }
  h1 .highlight {
    background: linear-gradient(180deg, transparent 0%, transparent 22%, var(--yellow) 22%, var(--yellow) 88%, transparent 88%);
    padding: 0 0.15em;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
  }
  .hero-sub {
    font-size: 19px;
    color: var(--muted);
    max-width: 680px;
    margin-bottom: 36px;
    line-height: 1.5;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding: 28px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  @media (max-width: 720px) {
    .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 24px 20px; }
  }
  .stat .num {
    font-family: 'Manrope', sans-serif;
    font-size: 32px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.02em;
  }
  .stat .num .italic-serif { font-weight: 400; }
  .stat .label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 8px;
  }

  /* Stack */
  .stack {
    max-width: 1040px;
    margin: 32px auto;
    padding: 0 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .sys-card {
    background: var(--white);
    border-radius: 28px;
    border: 1px solid var(--line);
    padding: 48px 52px;
  }
  @media (max-width: 720px) {
    .sys-card { padding: 36px 28px; }
  }

  .sys-head {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 24px;
    align-items: flex-start;
    margin-bottom: 24px;
  }
  @media (max-width: 720px) {
    .sys-head { grid-template-columns: 1fr; gap: 12px; }
  }
  .sys-num {
    font-family: 'Fraunces', Georgia, serif;
    font-style: italic;
    font-weight: 400;
    font-size: 92px;
    line-height: 0.85;
    color: var(--navy);
    letter-spacing: -0.02em;
  }
  @media (max-width: 720px) {
    .sys-num { font-size: 64px; }
  }
  .sys-meta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-end;
    padding-top: 12px;
  }
  @media (max-width: 720px) {
    .sys-meta { align-items: flex-start; padding-top: 0; flex-direction: row; flex-wrap: wrap; }
  }
  .sys-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--cream);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--navy);
    white-space: nowrap;
  }
  .sys-tag::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--red);
  }
  .sys-tag.t-sales::before { background: var(--yellow); }
  .sys-tag.t-client::before { background: var(--green); }
  .sys-tag.t-revive::before { background: var(--coral); }
  .sys-tag.t-owner::before { background: var(--navy); }

  .sys-difficulty {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
  }
  .dot-row { display: inline-flex; gap: 3px; }
  .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(14, 30, 46, 0.18);
  }
  .dot.on { background: var(--navy); }

  .sys-body { padding-left: 0; }

  .sys-title {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.05;
    margin-bottom: 14px;
  }
  .sys-title .italic-serif { font-weight: 400; }

  .sys-desc {
    font-size: 17px;
    color: var(--muted);
    line-height: 1.55;
    margin-bottom: 36px;
    max-width: 720px;
  }

  /* Flow */
  .flow-section {
    margin-bottom: 32px;
  }
  .flow-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 16px;
  }
  .flow {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
    align-items: stretch;
  }
  @media (max-width: 880px) {
    .flow { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  }
  @media (max-width: 480px) {
    .flow { grid-template-columns: 1fr; }
  }

  .flow-step {
    background: var(--cream);
    border-radius: 14px;
    padding: 16px 14px 18px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  .flow-step .step-num {
    font-family: 'Fraunces', Georgia, serif;
    font-style: italic;
    font-size: 13px;
    color: var(--muted-soft);
    line-height: 1;
    margin-bottom: 4px;
  }
  .flow-step .step-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -0.01em;
    line-height: 1.2;
  }
  .flow-step .step-desc {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.4;
  }

  /* Replaces / Returns */
  .impact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 28px;
  }
  @media (max-width: 720px) {
    .impact { grid-template-columns: 1fr; }
  }
  .impact-block {
    background: var(--cream);
    border-radius: 16px;
    padding: 20px 22px;
  }
  .impact-block.dark {
    background: var(--navy);
    color: var(--cream);
  }
  .impact-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 10px;
  }
  .impact-block.dark .impact-label { color: var(--yellow); }
  .impact-text {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.5;
    color: var(--navy);
  }
  .impact-block.dark .impact-text { color: var(--cream); }
  .impact-text strong { font-weight: 800; }

  /* Stats row */
  .sys-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
  }
  @media (max-width: 540px) {
    .sys-stats { grid-template-columns: 1fr; gap: 12px; }
  }
  .result-stat .v {
    font-family: 'Manrope', sans-serif;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--navy);
    font-variant-numeric: tabular-nums;
  }
  .result-stat .v .italic-serif { font-weight: 400; }
  .result-stat .l {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 4px;
  }

  /* CTA banner */
  .cta-banner {
    background: var(--navy);
    color: var(--cream);
    border-radius: 28px;
    padding: 56px;
    margin-top: 8px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 32px;
    align-items: center;
  }
  @media (max-width: 720px) {
    .cta-banner { grid-template-columns: 1fr; padding: 36px 28px; }
  }
  .cta-banner .eyebrow-yellow {
    color: var(--yellow);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 14px;
  }
  .cta-banner h3 {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.05;
    margin-bottom: 12px;
  }
  .cta-banner h3 .italic-serif { color: var(--yellow); font-weight: 400; }
  .cta-banner p { color: rgba(245, 241, 232, 0.7); font-size: 16px; max-width: 520px; line-height: 1.55; }
  .cta-banner .btn-yellow {
    background: var(--yellow);
    color: var(--navy);
    padding: 20px 30px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
  }
  .cta-banner .btn-yellow .arrow {
    background: var(--navy);
    color: var(--yellow);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 800;
  }

  /* Capture */
  .capture-wrap {
    max-width: 1040px;
    margin: 24px auto 64px;
    padding: 0 32px;
  }
  .capture {
    background: var(--yellow);
    border-radius: 28px;
    padding: 56px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
  }
  @media (max-width: 720px) {
    .capture { grid-template-columns: 1fr; padding: 36px 28px; gap: 32px; }
  }
  .capture h2 {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(32px, 4.5vw, 52px);
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1;
    margin-bottom: 18px;
  }
  .capture h2 .italic-serif { font-weight: 400; }
  .capture p {
    font-size: 16px;
    color: var(--navy);
    line-height: 1.55;
    max-width: 440px;
  }
  form { display: flex; flex-direction: column; gap: 12px; }
  input[type="text"], input[type="email"] {
    background: var(--cream-soft);
    border: 1.5px solid transparent;
    border-radius: 12px;
    padding: 16px 18px;
    font-family: inherit;
    font-size: 16px;
    color: var(--navy);
    width: 100%;
  }
  input:focus { outline: none; background: var(--white); border-color: var(--navy); }
  .submit {
    background: var(--navy);
    color: var(--cream);
    border: none;
    padding: 18px 24px;
    border-radius: 100px;
    font-family: inherit;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
  }
  .submit-arrow {
    background: var(--yellow);
    color: var(--navy);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
  }
  .form-fineprint { font-size: 12px; color: rgba(14, 30, 46, 0.7); }
  .success { display: none; }
  .success.active { display: block; }
  .success h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
  }
  .success h3 .italic-serif { font-weight: 400; }

  footer {
    border-top: 1px solid var(--line);
    padding: 32px;
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 13px;
    color: var(--muted);
  }
  footer a { color: var(--navy); text-decoration: none; font-weight: 600; }

  /* ───── Book Operations Audit CTA ───── */
  .capture-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 18px;
  }
  .capture-eyebrow::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--red);
    border-radius: 50%;
  }
  .scarcity {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: var(--navy);
    margin-top: 18px;
    background: rgba(14, 30, 46, 0.08);
    padding: 8px 16px;
    border-radius: 100px;
  }
  .scarcity::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--red);
    border-radius: 50%;
  }
  .cta-button {
    background: var(--navy);
    color: var(--cream);
    border: none;
    padding: 22px 32px;
    border-radius: 100px;
    font-family: inherit;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    transition: transform 0.15s ease;
    white-space: nowrap;
    justify-self: end;
    align-self: center;
  }
  .cta-button:hover { transform: translateY(-1px); }
  .cta-button .cta-arrow {
    background: var(--yellow);
    color: var(--navy);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
  }
  @media (max-width: 880px) {
    .cta-button { justify-self: stretch; padding: 20px 24px; }
  }