    :root {
      --navy: #072e40;
      --navy-2: #0b4058;
      --blue: #1434cb;
      --blue-dark: #102ba8;
      --yellow: #fcc015;
      --ink: #13212a;
      --text: #53626b;
      --muted: #6c7b84;
      --line: #dce4e8;
      --soft: #f4f7f9;
      --soft-blue: #eef2ff;
      --white: #fff;
      --success: #18845d;
      --radius-sm: 12px;
      --radius: 20px;
      --radius-lg: 30px;
      --shadow-sm: 0 8px 26px rgba(7, 46, 64, .08);
      --shadow: 0 24px 64px rgba(7, 46, 64, .13);
      --container: 1180px;
      --section: clamp(72px, 9vw, 116px);
      --font: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    }

    *, *::before, *::after { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      color: var(--ink);
      background: var(--white);
      font-family: var(--font);
      font-size: 16px;
      line-height: 1.65;
      -webkit-font-smoothing: antialiased;
    }
    img, svg { display: block; max-width: 100%; }
    a { color: inherit; }
    button, input, textarea, select { font: inherit; }
    p { margin: 0; color: var(--text); }
    h1, h2, h3, h4 { margin: 0; color: var(--navy); line-height: 1.13; letter-spacing: -.03em; }
    h1 { font-size: clamp(42px, 6vw, 72px); }
    h2 { font-size: clamp(34px, 4.4vw, 52px); }
    h3 { font-size: clamp(22px, 2.2vw, 28px); }
    h4 { font-size: 19px; }

    .skip-link {
      position: fixed;
      top: 8px;
      left: 8px;
      z-index: 9999;
      transform: translateY(-160%);
      padding: 10px 15px;
      border-radius: 9px;
      background: var(--navy);
      color: var(--white);
      font-weight: 700;
      text-decoration: none;
    }
    .skip-link:focus { transform: translateY(0); }

    :focus-visible {
      outline: 3px solid var(--yellow);
      outline-offset: 4px;
    }

    .container { width: min(100% - 40px, var(--container)); margin-inline: auto; }
    .section { padding-block: var(--section); }
    .section--soft { background: var(--soft); }
    .section--navy { background: var(--navy); }
    .section--navy h2, .section--navy h3, .section--navy h4 { color: var(--white); }
    .section--navy p { color: rgba(255,255,255,.74); }
    .section-head { max-width: 760px; margin-bottom: 48px; }
    .section-head--center { margin-inline: auto; text-align: center; }
    .section-head p { margin-top: 18px; font-size: 18px; }
    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      margin-bottom: 15px;
      color: var(--blue);
      font-size: 13px;
      font-weight: 800;
      letter-spacing: .15em;
      text-transform: uppercase;
    }
    .eyebrow::before {
      content: "";
      width: 26px;
      height: 2px;
      background: currentColor;
    }
    .section--navy .eyebrow { color: var(--yellow); }

    .btn {
      display: inline-flex;
      min-height: 50px;
      align-items: center;
      justify-content: center;
      gap: 9px;
      border: 2px solid transparent;
      border-radius: 999px;
      padding: 12px 24px;
      font-size: 15px;
      font-weight: 800;
      text-decoration: none;
      transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
    }
    .btn:hover { transform: translateY(-2px); }
    .btn--primary { background: var(--blue); color: var(--white); box-shadow: 0 12px 28px rgba(20, 52, 203, .22); }
    .btn--primary:hover { background: var(--blue-dark); }
    .btn--secondary { background: var(--white); color: var(--navy); border-color: var(--line); }
    .btn--secondary:hover { border-color: var(--blue); color: var(--blue); }
    .btn--yellow { background: var(--yellow); color: var(--navy); }
    .btn--yellow:hover { background: #ffd24f; }
    .btn--dark-outline { color: var(--white); border-color: rgba(255,255,255,.42); }
    .btn--dark-outline:hover { background: var(--white); color: var(--navy); }
    .btn-row { display: flex; flex-wrap: wrap; gap: 13px; }

    /* Header */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      border-bottom: 1px solid rgba(220,228,232,.8);
      background: rgba(255,255,255,.92);
      backdrop-filter: blur(16px);
    }
    .header-inner {
      min-height: 76px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }
    .brand {
      display: inline-flex;
      align-items: center;
      gap: 11px;
      text-decoration: none;
      color: var(--navy);
      font-weight: 900;
      letter-spacing: -.025em;
    }
    .brand-mark {
      width: 38px;
      height: 38px;
      display: grid;
      place-items: center;
      border-radius: 11px;
      background: var(--navy);
      color: var(--yellow);
      font-size: 13px;
      letter-spacing: -.02em;
    }
    .brand-text { display: grid; line-height: 1.03; }
    .brand-text small { margin-top: 4px; color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
    .site-nav { display: flex; align-items: center; gap: 28px; }
    .site-nav a {
      position: relative;
      color: var(--navy);
      font-size: 14px;
      font-weight: 750;
      text-decoration: none;
    }
    .site-nav > a:not(.btn)::after {
      content: "";
      position: absolute;
      left: 0;
      right: 100%;
      bottom: -8px;
      height: 2px;
      background: var(--blue);
      transition: right .2s ease;
    }
    .site-nav > a:not(.btn):hover::after { right: 0; }
    .site-nav .btn { display: none; color: var(--white); }
    .nav-toggle {
      display: none;
      width: 44px;
      height: 44px;
      border: 1px solid var(--line);
      border-radius: 12px;
      background: var(--white);
      cursor: pointer;
    }
    .nav-toggle span { display: block; width: 21px; height: 2px; margin: 5px auto; background: var(--navy); }

    /* Hero */
    .hero {
      position: relative;
      overflow: hidden;
      padding-block: clamp(76px, 10vw, 132px) clamp(70px, 9vw, 112px);
      background:
        radial-gradient(circle at 82% 12%, rgba(252,192,21,.17), transparent 23%),
        radial-gradient(circle at 6% 88%, rgba(20,52,203,.09), transparent 25%),
        linear-gradient(180deg, #fbfdfe 0%, #f6f9fb 100%);
    }
    .hero::before {
      content: "";
      position: absolute;
      width: 620px;
      height: 620px;
      right: -340px;
      top: -340px;
      border: 1px solid rgba(20,52,203,.12);
      border-radius: 50%;
      box-shadow: 0 0 0 80px rgba(20,52,203,.025), 0 0 0 160px rgba(20,52,203,.018);
    }
    .hero-grid { display: grid; grid-template-columns: 1.12fr .88fr; gap: clamp(50px, 8vw, 100px); align-items: center; }
    .hero-copy { position: relative; z-index: 2; }
    .hero-copy h1 { max-width: 820px; }
    .hero-copy h1 span { color: var(--blue); }
    .hero-copy > p { max-width: 690px; margin-top: 24px; font-size: clamp(18px, 2vw, 21px); }
    .hero .btn-row { margin-top: 32px; }
    .hero-fit {
      display: flex;
      flex-wrap: wrap;
      gap: 9px 18px;
      margin-top: 27px;
      color: var(--muted);
      font-size: 13px;
      font-weight: 700;
    }
    .hero-fit span { display: inline-flex; align-items: center; gap: 8px; }
    .hero-fit span::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--success); }

    .operating-system {
      position: relative;
      min-height: 520px;
    }
    .os-card {
      position: absolute;
      border: 1px solid rgba(220,228,232,.94);
      background: rgba(255,255,255,.94);
      box-shadow: var(--shadow);
      backdrop-filter: blur(12px);
    }
    .os-card--main {
      inset: 36px 0 44px 35px;
      z-index: 3;
      border-radius: 27px;
      padding: 28px;
    }
    .os-card--back-one {
      inset: 13px 35px 80px 6px;
      z-index: 1;
      border-radius: 27px;
      transform: rotate(-4deg);
      background: var(--navy);
      border-color: var(--navy);
    }
    .os-card--back-two {
      inset: 68px -12px 10px 70px;
      z-index: 2;
      border-radius: 27px;
      transform: rotate(4deg);
      background: var(--soft-blue);
    }
    .os-top { display: flex; justify-content: space-between; gap: 20px; align-items: center; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
    .os-title { font-size: 13px; font-weight: 850; color: var(--navy); letter-spacing: .08em; text-transform: uppercase; }
    .os-status { display: inline-flex; align-items: center; gap: 7px; color: var(--success); font-size: 12px; font-weight: 800; }
    .os-status::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: currentColor; box-shadow: 0 0 0 5px rgba(24,132,93,.09); }
    .os-focus { padding: 24px 0 19px; }
    .os-focus small { color: var(--muted); font-size: 12px; font-weight: 750; text-transform: uppercase; letter-spacing: .1em; }
    .os-focus strong { display: block; margin-top: 7px; color: var(--navy); font-size: 25px; line-height: 1.2; letter-spacing: -.03em; }
    .os-progress { height: 8px; margin-top: 17px; overflow: hidden; border-radius: 99px; background: #e9eef1; }
    .os-progress span { display: block; width: 68%; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--blue), #5872f2); }
    .os-list { display: grid; gap: 12px; margin-top: 12px; }
    .os-item { display: grid; grid-template-columns: 40px 1fr auto; align-items: center; gap: 13px; padding: 14px; border: 1px solid var(--line); border-radius: 15px; }
    .os-icon { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 12px; background: var(--soft-blue); color: var(--blue); font-weight: 900; }
    .os-item strong { display: block; color: var(--navy); font-size: 14px; }
    .os-item span { color: var(--muted); font-size: 12px; }
    .os-item b { color: var(--success); font-size: 11px; text-transform: uppercase; letter-spacing: .05em; }
    .os-note { margin-top: 17px; padding: 14px 15px; border-radius: 14px; background: var(--navy); color: rgba(255,255,255,.82); font-size: 12px; }
    .os-note strong { color: var(--yellow); }

    /* Proof/credibility bar */
    .credibility { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--white); }
    .credibility-grid { display: grid; grid-template-columns: 1.2fr repeat(4, 1fr); }
    .credibility-item { min-height: 104px; display: flex; align-items: center; padding: 22px 24px; border-right: 1px solid var(--line); }
    .credibility-item:last-child { border-right: 0; }
    .credibility-item:first-child { padding-left: 0; }
    .credibility-item strong { display: block; color: var(--navy); font-size: 15px; }
    .credibility-item span { display: block; margin-top: 2px; color: var(--muted); font-size: 12px; }
    .credibility-label { color: var(--blue); font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }

    /* Need / fit */
    .fit-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(44px, 7vw, 92px); align-items: start; }
    .fit-intro { position: sticky; top: 112px; }
    .fit-intro p { margin-top: 18px; font-size: 18px; }
    .signal-list { display: grid; gap: 15px; }
    .signal-card {
      display: grid;
      grid-template-columns: 54px 1fr;
      gap: 18px;
      align-items: start;
      padding: 25px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--white);
      box-shadow: var(--shadow-sm);
    }
    .signal-number { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 16px; background: var(--soft-blue); color: var(--blue); font-weight: 900; }
    .signal-card p { margin-top: 8px; }

    /* Outcomes */
    .outcome-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
    .outcome-card {
      min-height: 290px;
      padding: 30px;
      border-radius: var(--radius);
      border: 1px solid rgba(255,255,255,.14);
      background: rgba(255,255,255,.06);
    }
    .outcome-icon { width: 48px; height: 48px; display: grid; place-items: center; margin-bottom: 28px; border-radius: 15px; background: var(--yellow); color: var(--navy); font-weight: 900; }
    .outcome-card p { margin-top: 13px; }
    .outcome-card ul { display: grid; gap: 9px; margin: 20px 0 0; padding: 0; list-style: none; }
    .outcome-card li { position: relative; padding-left: 18px; color: rgba(255,255,255,.76); font-size: 14px; }
    .outcome-card li::before { content: ""; position: absolute; left: 0; top: .68em; width: 6px; height: 6px; border-radius: 50%; background: var(--yellow); }

    /* Experience */
    .experience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 21px; }
    .experience-card { padding: 29px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow-sm); }
    .experience-card .tag { display: inline-flex; margin-bottom: 18px; padding: 6px 10px; border-radius: 999px; background: var(--soft-blue); color: var(--blue); font-size: 11px; font-weight: 850; letter-spacing: .07em; text-transform: uppercase; }
    .experience-card p { margin-top: 12px; }
    .experience-card .deliverable { margin-top: 22px; padding-top: 19px; border-top: 1px solid var(--line); color: var(--navy); font-size: 13px; font-weight: 800; }

    /* Pricing */
    .pricing-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; align-items: stretch; }
    .pricing-card { position: relative; display: flex; flex-direction: column; padding: clamp(30px, 4vw, 43px); border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--white); box-shadow: var(--shadow-sm); }
    .pricing-card--featured { border: 2px solid var(--blue); box-shadow: var(--shadow); }
    .pricing-card--custom { border-color: rgba(84, 60, 190, .28); background: linear-gradient(145deg, #ffffff 0%, #f7f4ff 100%); }
    .pricing-card--custom .kicker { color: #5f3dc4; }
    .pricing-card--custom .price { font-size: clamp(34px, 4vw, 48px); letter-spacing: -.035em; }
    .pricing-badge { position: absolute; top: 20px; right: 20px; padding: 6px 11px; border-radius: 999px; background: var(--yellow); color: var(--navy); font-size: 11px; font-weight: 900; letter-spacing: .07em; text-transform: uppercase; }
    .pricing-card .kicker { color: var(--blue); font-size: 12px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
    .pricing-card h3 { margin-top: 10px; }
    .pricing-card > p { margin-top: 14px; }
    .price { margin-top: 24px; color: var(--navy); font-size: clamp(38px, 5vw, 54px); font-weight: 900; line-height: 1; letter-spacing: -.05em; }
    .price small { color: var(--muted); font-size: 14px; font-weight: 700; letter-spacing: 0; }
    .pricing-card ul { display: grid; gap: 12px; margin: 28px 0 30px; padding: 0; list-style: none; }
    .pricing-card li { position: relative; padding-left: 27px; color: var(--text); font-size: 14px; }
    .pricing-card li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--success); font-weight: 900; }
    .pricing-card .btn { margin-top: auto; }
    .pricing-note { max-width: 850px; margin: 25px auto 0; text-align: center; color: var(--muted); font-size: 13px; }

    /* Process */
    .process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; counter-reset: process; }
    .process-card { position: relative; padding: 28px 24px; border-radius: var(--radius); background: var(--white); border: 1px solid var(--line); }
    .process-card::before { counter-increment: process; content: "0" counter(process); display: block; margin-bottom: 38px; color: var(--blue); font-size: 13px; font-weight: 900; letter-spacing: .1em; }
    .process-card p { margin-top: 10px; font-size: 14px; }

    /* Founder */
    .about-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(44px, 8vw, 96px); align-items: center; }
    .founder-visual { min-height: 510px; display: grid; place-items: center; border-radius: var(--radius-lg); background: linear-gradient(145deg, var(--navy), #0d5573); overflow: hidden; position: relative; }
    .founder-visual::before, .founder-visual::after { content: ""; position: absolute; border-radius: 50%; border: 1px solid rgba(255,255,255,.18); }
    .founder-visual::before { width: 380px; height: 380px; top: -130px; right: -120px; }
    .founder-visual::after { width: 280px; height: 280px; bottom: -110px; left: -100px; }
    .founder-monogram { position: relative; z-index: 2; width: 160px; height: 160px; display: grid; place-items: center; border-radius: 50%; background: var(--yellow); color: var(--navy); font-size: 42px; font-weight: 950; letter-spacing: -.07em; box-shadow: 0 25px 50px rgba(0,0,0,.22); }
    .founder-label { position: absolute; z-index: 2; bottom: 28px; left: 28px; right: 28px; padding: 17px 19px; border: 1px solid rgba(255,255,255,.18); border-radius: 15px; background: rgba(255,255,255,.09); backdrop-filter: blur(10px); color: var(--white); }
    .founder-label strong { display: block; font-size: 15px; }
    .founder-label span { color: rgba(255,255,255,.7); font-size: 12px; }
    .about-copy > p { margin-top: 19px; font-size: 17px; }
    .about-points { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; margin-top: 28px; }
    .about-point { padding: 17px; border-radius: 15px; background: var(--soft); }
    .about-point strong { display: block; color: var(--navy); font-size: 14px; }
    .about-point span { display: block; margin-top: 4px; color: var(--muted); font-size: 12px; }
    .about-copy .btn-row { margin-top: 30px; }

    /* FAQ */
    .faq-wrap { max-width: 880px; margin-inline: auto; }
    details { border-bottom: 1px solid var(--line); }
    summary { display: flex; align-items: center; justify-content: space-between; gap: 22px; padding: 24px 0; color: var(--navy); font-size: 18px; font-weight: 850; cursor: pointer; list-style: none; }
    summary::-webkit-details-marker { display: none; }
    summary::after { content: "+"; flex: 0 0 auto; width: 32px; height: 32px; display: grid; place-items: center; border-radius: 50%; background: var(--soft-blue); color: var(--blue); font-size: 23px; font-weight: 500; transition: transform .2s ease; }
    details[open] summary::after { transform: rotate(45deg); }
    .faq-answer { max-width: 760px; padding: 0 0 25px; }
    .faq-answer p + p { margin-top: 12px; }

    /* CTA */
    .cta-shell { position: relative; overflow: hidden; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 40px; padding: clamp(38px, 6vw, 62px); border-radius: var(--radius-lg); background: var(--navy); }
    .cta-shell::before { content: ""; position: absolute; width: 330px; height: 330px; right: -120px; top: -170px; border-radius: 50%; border: 1px solid rgba(255,255,255,.18); box-shadow: 0 0 0 62px rgba(255,255,255,.035); }
    .cta-shell > * { position: relative; z-index: 2; }
    .cta-shell h2 { max-width: 730px; color: var(--white); }
    .cta-shell p { max-width: 700px; margin-top: 15px; color: rgba(255,255,255,.72); font-size: 17px; }

    /* Footer */
    .site-footer { margin-top: var(--section); padding: 62px 0 28px; background: #041f2c; color: rgba(255,255,255,.7); }
    .footer-grid { display: grid; grid-template-columns: 1.4fr .8fr .8fr; gap: 50px; padding-bottom: 42px; }
    .site-footer .brand { color: var(--white); }
    .site-footer .brand small { color: rgba(255,255,255,.5); }
    .footer-copy { max-width: 450px; margin-top: 17px; color: rgba(255,255,255,.67); }
    .site-footer h4 { color: var(--white); font-size: 15px; letter-spacing: -.01em; }
    .site-footer ul { display: grid; gap: 10px; margin: 17px 0 0; padding: 0; list-style: none; }
    .site-footer a:not(.brand):not(.btn) { color: rgba(255,255,255,.7); text-decoration: none; font-size: 14px; }
    .site-footer a:hover { color: var(--yellow); }
    .footer-bottom { display: flex; justify-content: space-between; gap: 25px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); font-size: 12px; }
    .footer-bottom a { margin-left: 18px; }

    .mobile-cta { display: none; }

    @media (max-width: 1100px) {
      .pricing-grid { grid-template-columns: 1fr 1fr; }
      .pricing-card--custom { grid-column: 1 / -1; }
    }

    @media (max-width: 1020px) {
      .site-nav { gap: 18px; }
      .site-nav > a:not(.btn) { display: none; }
      .hero-grid, .fit-grid, .about-grid { grid-template-columns: 1fr; }
      .operating-system { width: min(100%, 620px); margin-inline: auto; }
      .fit-intro { position: static; }
      .credibility-grid { grid-template-columns: repeat(2, 1fr); }
      .credibility-item:first-child { grid-column: 1 / -1; padding-left: 24px; }
      .credibility-item:nth-child(2n) { border-right: 1px solid var(--line); }
      .credibility-item:nth-child(3), .credibility-item:nth-child(5) { border-right: 0; }
      .outcome-grid, .experience-grid { grid-template-columns: 1fr 1fr; }
      .outcome-card:last-child, .experience-card:last-child { grid-column: 1 / -1; }
      .process-grid { grid-template-columns: 1fr 1fr; }
    }

    @media (max-width: 760px) {
      body { padding-bottom: 76px; }
      .container { width: min(100% - 28px, var(--container)); }
      .header-inner { min-height: 68px; }
      .brand-text { font-size: 13px; }
      .brand-text small { display: none; }
      .site-nav { display: none; position: absolute; top: 68px; left: 0; right: 0; padding: 14px; border-bottom: 1px solid var(--line); background: var(--white); box-shadow: var(--shadow-sm); }
      .site-nav.is-open { display: grid; gap: 4px; }
      .site-nav > a:not(.btn) { display: block; padding: 13px 10px; border-radius: 9px; }
      .site-nav > a:not(.btn):hover { background: var(--soft); }
      .site-nav .btn { display: inline-flex; margin-top: 8px; color: var(--white); }
      .nav-toggle { display: block; }
      .header-inner > .btn { display: none; }
      .hero { padding-top: 58px; }
      .hero-grid { gap: 45px; }
      .operating-system { min-height: 470px; }
      .os-card--main { inset: 27px 0 36px 20px; padding: 21px; }
      .os-card--back-one { inset: 10px 25px 67px 2px; }
      .os-card--back-two { inset: 54px -4px 5px 42px; }
      .os-item { grid-template-columns: 38px 1fr; }
      .os-item b { display: none; }
      .credibility-grid, .outcome-grid, .experience-grid, .pricing-grid, .process-grid, .about-points { grid-template-columns: 1fr; }
      .pricing-card--custom { grid-column: auto; }
      .credibility-item, .credibility-item:first-child, .credibility-item:nth-child(2n), .credibility-item:nth-child(3), .credibility-item:nth-child(5) { grid-column: auto; padding-left: 0; border-right: 0; border-bottom: 1px solid var(--line); }
      .credibility-item:last-child { border-bottom: 0; }
      .outcome-card:last-child, .experience-card:last-child { grid-column: auto; }
      .cta-shell { grid-template-columns: 1fr; }
      .cta-shell .btn-row { width: 100%; }
      .cta-shell .btn { width: 100%; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .footer-grid > div:first-child { grid-column: 1 / -1; }
      .footer-bottom { display: block; }
      .footer-bottom nav { margin-top: 12px; }
      .footer-bottom a { margin-left: 0; margin-right: 18px; }
      .mobile-cta { position: fixed; z-index: 999; left: 12px; right: 12px; bottom: 10px; display: flex; align-items: center; justify-content: center; min-height: 54px; border-radius: 999px; background: var(--blue); color: var(--white); box-shadow: 0 16px 40px rgba(20,52,203,.35); font-weight: 850; text-decoration: none; }
    }

    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
    }
  

    /* V3 competitor-inspired sections */
    .weekly-grid { display: grid; grid-template-columns: 1.18fr .82fr; gap: 24px; align-items: stretch; }
    .weekly-stack { display: grid; gap: 24px; }
    .weekly-panel { padding: clamp(26px, 4vw, 38px); border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--white); box-shadow: var(--shadow-sm); }
    .weekly-panel--primary { background: linear-gradient(145deg, #ffffff, #f7f9ff); border-color: rgba(20,52,203,.2); }
    .weekly-panel--muted { background: var(--soft); box-shadow: none; }
    .panel-kicker { display: inline-flex; margin-bottom: 12px; color: var(--blue); font-size: 12px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
    .weekly-panel h3, .criteria-card h3, .diagnostic h3 { margin-bottom: 18px; }
    .check-list, .simple-list { display: grid; gap: 15px; margin: 0; padding: 0; list-style: none; }
    .check-list li { position: relative; padding-left: 34px; }
    .check-list li::before { content: "✓"; position: absolute; left: 0; top: 0; width: 24px; height: 24px; display: grid; place-items: center; border-radius: 50%; background: rgba(24,132,93,.1); color: var(--success); font-size: 13px; font-weight: 900; }
    .check-list strong { display: block; color: var(--navy); font-size: 14px; }
    .check-list span { display: block; margin-top: 3px; color: var(--muted); font-size: 13px; }
    .simple-list li { position: relative; padding-left: 26px; color: var(--text); font-size: 14px; }
    .simple-list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--success); font-weight: 900; }
    .simple-list--x li::before { content: "×"; color: #a34f42; }

    .table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--white); box-shadow: var(--shadow-sm); }
    .comparison-table { width: 100%; min-width: 850px; border-collapse: collapse; text-align: left; }
    .comparison-table th, .comparison-table td { padding: 20px 22px; border-bottom: 1px solid var(--line); vertical-align: top; }
    .comparison-table thead th { background: var(--navy); color: var(--white); font-size: 13px; letter-spacing: .05em; text-transform: uppercase; }
    .comparison-table tbody th { width: 190px; color: var(--navy); font-size: 14px; }
    .comparison-table tbody td { color: var(--text); font-size: 14px; }
    .comparison-table tbody tr:last-child th, .comparison-table tbody tr:last-child td { border-bottom: 0; }
    .comparison-table tbody tr.is-featured { background: var(--soft-blue); }
    .comparison-table tbody tr.is-featured th { color: var(--blue); }

    .process-card::before { display: none; }
    .process-range { display: inline-flex; margin-bottom: 30px; padding: 6px 10px; border-radius: 999px; background: var(--soft-blue); color: var(--blue); font-size: 11px; font-weight: 900; letter-spacing: .07em; text-transform: uppercase; }
    .deliverables-strip { display: grid; grid-template-columns: auto 1fr; gap: 25px; align-items: center; margin-top: 24px; padding: 24px 26px; border-radius: var(--radius); background: var(--navy); }
    .deliverables-strip > span { color: var(--yellow); font-size: 12px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
    .deliverables-strip > div { display: flex; flex-wrap: wrap; gap: 9px; }
    .deliverables-strip b { padding: 8px 11px; border: 1px solid rgba(255,255,255,.16); border-radius: 999px; color: var(--white); font-size: 12px; font-weight: 750; }

    .fit-criteria-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
    .criteria-card { padding: clamp(28px, 4vw, 40px); border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--white); box-shadow: var(--shadow-sm); }
    .criteria-card--fit { border-color: rgba(24,132,93,.24); background: linear-gradient(145deg, #fff, #f5fbf8); }
    .diagnostic { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(28px, 5vw, 60px); margin-top: 24px; padding: clamp(30px, 5vw, 48px); border-radius: var(--radius-lg); background: var(--navy); }
    .diagnostic .panel-kicker { color: var(--yellow); }
    .diagnostic h3 { color: var(--white); font-size: clamp(26px, 3vw, 36px); }
    .diagnostic-copy p { color: rgba(255,255,255,.7); }
    .diagnostic-questions { display: grid; gap: 12px; }
    .diagnostic-questions label { display: grid; grid-template-columns: 22px 1fr; gap: 10px; align-items: start; padding: 13px 14px; border: 1px solid rgba(255,255,255,.14); border-radius: 12px; color: rgba(255,255,255,.84); background: rgba(255,255,255,.05); font-size: 14px; cursor: pointer; }
    .diagnostic-questions input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--yellow); }
    .diagnostic-questions .btn { justify-self: start; margin-top: 5px; }
    .diagnostic-result { min-height: 0; padding: 0; color: var(--white); font-size: 14px; }
    .diagnostic-result.is-visible { min-height: 74px; padding: 15px 17px; border-radius: 13px; background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.14); }
    .diagnostic-result strong { display: block; margin-bottom: 3px; color: var(--yellow); font-size: 16px; }

    @media (max-width: 1020px) {
      .weekly-grid, .diagnostic { grid-template-columns: 1fr; }
      .fit-criteria-grid { grid-template-columns: 1fr; }
      .deliverables-strip { grid-template-columns: 1fr; }
    }

    @media (max-width: 760px) {
      .weekly-grid, .fit-criteria-grid { grid-template-columns: 1fr; }
      .comparison-table th, .comparison-table td { padding: 16px; }
      .diagnostic { padding: 26px 20px; }
      .diagnostic-questions .btn { width: 100%; }
    }

    /* Marketing video placement */
    .video-section { background: linear-gradient(180deg, #ffffff 0%, #f6f8fc 100%); }
    .video-grid { display: grid; grid-template-columns: .88fr 1.12fr; gap: clamp(34px, 6vw, 78px); align-items: center; }
    .video-copy h2 { margin-bottom: 18px; }
    .video-copy > p { max-width: 620px; color: var(--muted); }
    .video-benefits { display: grid; gap: 12px; margin: 24px 0 0; padding: 0; list-style: none; }
    .video-benefits li { position: relative; padding-left: 30px; color: var(--text); font-size: 14px; }
    .video-benefits li::before { content: "✓"; position: absolute; left: 0; top: 0; width: 21px; height: 21px; display: grid; place-items: center; border-radius: 50%; background: rgba(20,52,203,.1); color: var(--blue); font-size: 12px; font-weight: 900; }
    .video-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 25px; }
    .video-meta span { padding: 7px 10px; border: 1px solid var(--line); border-radius: 999px; background: var(--white); color: var(--muted); font-size: 11px; font-weight: 800; letter-spacing: .03em; }
    .video-frame { position: relative; aspect-ratio: 16 / 9; overflow: hidden; border: 1px solid rgba(255,255,255,.14); border-radius: 24px; background: radial-gradient(circle at 70% 22%, rgba(252,192,21,.19), transparent 28%), linear-gradient(145deg, #061f2e 0%, #0a3851 55%, #1434cb 130%); box-shadow: 0 28px 70px rgba(7,46,64,.24); }
    .video-frame::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(2,18,28,.18), rgba(2,18,28,0) 55%, rgba(2,18,28,.16)); pointer-events: none; }
    .video-preview { position: absolute; inset: 0; display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; padding: clamp(24px, 5vw, 52px); }
    .video-preview-copy { position: relative; z-index: 2; }
    .video-preview-copy small { display: block; margin-bottom: 12px; color: var(--yellow); font-size: 11px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
    .video-preview-copy strong { display: block; max-width: 470px; color: var(--white); font-family: var(--font-heading); font-size: clamp(23px, 3.1vw, 39px); line-height: 1.08; letter-spacing: -.035em; }
    .video-preview-copy span { display: block; max-width: 430px; margin-top: 14px; color: rgba(255,255,255,.72); font-size: 13px; line-height: 1.65; }
    .video-preview-visual { position: relative; z-index: 2; display: grid; place-items: center; min-height: 220px; }
    .video-person { position: relative; width: min(230px, 92%); aspect-ratio: 4 / 5; overflow: hidden; border: 1px solid rgba(255,255,255,.25); border-radius: 24px 24px 14px 14px; background: linear-gradient(160deg, rgba(255,255,255,.22), rgba(255,255,255,.06)); box-shadow: 0 20px 44px rgba(0,0,0,.22); }
    .video-person::before { content: ""; position: absolute; width: 78px; height: 78px; left: 50%; top: 28px; transform: translateX(-50%); border-radius: 50%; background: rgba(255,255,255,.82); }
    .video-person::after { content: ""; position: absolute; width: 150px; height: 150px; left: 50%; bottom: -28px; transform: translateX(-50%); border-radius: 50% 50% 18px 18px; background: rgba(255,255,255,.82); }
    .video-play { position: absolute; z-index: 4; left: 50%; top: 50%; width: 72px; height: 72px; transform: translate(-50%, -50%); display: grid; place-items: center; border: 1px solid rgba(255,255,255,.58); border-radius: 50%; background: rgba(255,255,255,.93); color: var(--blue); box-shadow: 0 12px 34px rgba(0,0,0,.24); font-size: 24px; line-height: 1; }
    .video-duration { position: absolute; z-index: 4; right: 18px; bottom: 16px; padding: 6px 9px; border-radius: 8px; background: rgba(0,0,0,.58); color: var(--white); font-size: 11px; font-weight: 850; }
    .video-placeholder-label { position: absolute; z-index: 4; left: 18px; bottom: 16px; max-width: calc(100% - 100px); color: rgba(255,255,255,.72); font-size: 11px; }
    .video-production-note { margin-top: 13px; color: var(--muted); font-size: 12px; text-align: center; }

    @media (max-width: 1020px) {
      .video-grid { grid-template-columns: 1fr; }
      .video-copy { max-width: 760px; }
    }

    @media (max-width: 620px) {
      .video-preview { grid-template-columns: 1fr; padding: 24px; }
      .video-preview-copy { align-self: start; }
      .video-preview-copy span { display: none; }
      .video-preview-visual { display: none; }
      .video-play { width: 62px; height: 62px; }
    }


    /* ================================================================
       V3.3 — COLORFUL, PREMIUM VISUAL SYSTEM
       Adds stronger visual personality without changing page content,
       layout, CTA tracking, responsive behavior, or accessibility.
       ================================================================ */
    :root {
      --purple: #6c4cff;
      --violet: #8b5cf6;
      --teal: #00a79d;
      --cyan: #20bfe3;
      --coral: #ff6b5e;
      --orange: #ff9b42;
      --rose: #ec4899;
      --mint: #e8fbf6;
      --sky: #eaf7ff;
      --lavender: #f1edff;
      --peach: #fff0ea;
      --sun: #fff7d6;
      --font-heading: var(--font);
      --shadow-sm: 0 12px 34px rgba(25, 43, 78, .10);
      --shadow: 0 28px 72px rgba(19, 34, 74, .18);
    }

    body {
      background: #fbfcff;
    }

    /* Branded header and controls */
    .site-header {
      border-bottom-color: rgba(108, 76, 255, .14);
      background: rgba(255, 255, 255, .88);
      box-shadow: 0 8px 30px rgba(22, 40, 82, .06);
    }
    .brand-mark {
      background: linear-gradient(145deg, var(--blue) 0%, var(--purple) 58%, var(--rose) 130%);
      color: var(--white);
      box-shadow: 0 9px 22px rgba(108, 76, 255, .28);
    }
    .site-nav > a:not(.btn)::after {
      background: linear-gradient(90deg, var(--cyan), var(--purple));
    }
    .btn--primary {
      background: linear-gradient(105deg, var(--blue) 0%, var(--purple) 62%, #7c3aed 100%);
      box-shadow: 0 14px 30px rgba(82, 64, 224, .28);
    }
    .btn--primary:hover {
      background: linear-gradient(105deg, #102ba8 0%, #5538dc 65%, #6d28d9 100%);
    }

    /* Hero — high-impact brand canvas */
    .hero {
      background:
        radial-gradient(circle at 85% 12%, rgba(255, 192, 21, .34), transparent 22%),
        radial-gradient(circle at 8% 83%, rgba(32, 191, 227, .26), transparent 27%),
        radial-gradient(circle at 58% 110%, rgba(255, 107, 94, .20), transparent 28%),
        linear-gradient(130deg, #061b2a 0%, #0a3150 39%, #2932a8 72%, #5b35c8 112%);
    }
    .hero::after {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      background-image:
        linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
      background-size: 44px 44px;
      mask-image: linear-gradient(to bottom, rgba(0,0,0,.58), transparent 84%);
    }
    .hero .eyebrow { color: var(--yellow); }
    .hero-copy h1 { color: var(--white); text-shadow: 0 12px 34px rgba(0,0,0,.16); }
    .hero-copy h1 span {
      color: #66e3f4;
      background: linear-gradient(90deg, #63e6f5, #a6f7db 55%, #ffe275);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .hero-copy > p { color: rgba(255,255,255,.79); }
    .hero-fit { color: rgba(255,255,255,.72); }
    .hero-fit span::before { background: #62e6bd; box-shadow: 0 0 0 5px rgba(98,230,189,.12); }
    .hero .btn--primary {
      background: var(--yellow);
      color: var(--navy);
      box-shadow: 0 15px 34px rgba(252,192,21,.24);
    }
    .hero .btn--primary:hover { background: #ffd95f; }
    .hero .btn--secondary {
      border-color: rgba(255,255,255,.35);
      background: rgba(255,255,255,.10);
      color: var(--white);
      backdrop-filter: blur(10px);
    }
    .hero .btn--secondary:hover { border-color: var(--white); background: rgba(255,255,255,.18); color: var(--white); }
    .os-card--back-one {
      background: linear-gradient(145deg, #00a79d, #1f7ad6);
      border-color: transparent;
    }
    .os-card--back-two {
      background: linear-gradient(145deg, #fff3c4, #ffd9e4);
      border-color: rgba(255,255,255,.7);
    }
    .os-card--main { border-color: rgba(255,255,255,.72); box-shadow: 0 32px 78px rgba(0,0,0,.28); }
    .os-progress span { background: linear-gradient(90deg, var(--teal), var(--cyan), var(--purple), var(--rose)); }
    .os-item:nth-child(1) .os-icon { background: var(--mint); color: var(--teal); }
    .os-item:nth-child(2) .os-icon { background: var(--lavender); color: var(--purple); }
    .os-item:nth-child(3) .os-icon { background: var(--peach); color: var(--coral); }
    .os-note { background: linear-gradient(105deg, #072e40, #173d86); }

    /* Credibility ribbon */
    .credibility {
      border: 0;
      background: linear-gradient(90deg, #ffffff 0%, #f8f7ff 45%, #f1fbff 100%);
      box-shadow: 0 16px 45px rgba(28, 43, 80, .07);
    }
    .credibility-item { position: relative; border-color: rgba(38, 61, 94, .10); }
    .credibility-item::before { content: ""; position: absolute; left: 22px; right: 22px; top: 0; height: 4px; border-radius: 0 0 8px 8px; }
    .credibility-item:nth-child(1)::before { background: linear-gradient(90deg, var(--blue), var(--purple)); }
    .credibility-item:nth-child(2)::before { background: var(--teal); }
    .credibility-item:nth-child(3)::before { background: var(--cyan); }
    .credibility-item:nth-child(4)::before { background: var(--purple); }
    .credibility-item:nth-child(5)::before { background: var(--coral); }

    /* Section: buying signals */
    #fit {
      position: relative;
      overflow: hidden;
      background:
        radial-gradient(circle at 5% 20%, rgba(108,76,255,.08), transparent 25%),
        radial-gradient(circle at 95% 78%, rgba(0,167,157,.09), transparent 25%),
        #ffffff;
    }
    #fit .signal-card { border: 0; transition: transform .22s ease, box-shadow .22s ease; }
    #fit .signal-card:hover { transform: translateY(-4px); box-shadow: 0 20px 44px rgba(24,45,86,.13); }
    #fit .signal-card:nth-child(1) { background: linear-gradient(145deg, #ffffff, var(--lavender)); }
    #fit .signal-card:nth-child(2) { background: linear-gradient(145deg, #ffffff, var(--mint)); }
    #fit .signal-card:nth-child(3) { background: linear-gradient(145deg, #ffffff, var(--peach)); }
    #fit .signal-card:nth-child(4) { background: linear-gradient(145deg, #ffffff, var(--sky)); }
    #fit .signal-card:nth-child(1) .signal-number { background: linear-gradient(145deg, var(--blue), var(--purple)); color: white; }
    #fit .signal-card:nth-child(2) .signal-number { background: linear-gradient(145deg, var(--teal), var(--cyan)); color: white; }
    #fit .signal-card:nth-child(3) .signal-number { background: linear-gradient(145deg, var(--coral), var(--orange)); color: white; }
    #fit .signal-card:nth-child(4) .signal-number { background: linear-gradient(145deg, #1f7ad6, var(--cyan)); color: white; }

    /* Video — warm conversion moment */
    .video-section {
      position: relative;
      overflow: hidden;
      background:
        radial-gradient(circle at 12% 15%, rgba(255,155,66,.16), transparent 24%),
        radial-gradient(circle at 88% 84%, rgba(108,76,255,.14), transparent 26%),
        linear-gradient(135deg, #fffaf6 0%, #f8f4ff 52%, #eefaff 100%);
    }
    .video-benefits li::before { background: linear-gradient(145deg, var(--purple), var(--blue)); color: white; }
    .video-meta span { border-color: rgba(108,76,255,.17); background: rgba(255,255,255,.82); color: #5d5580; }
    .video-frame {
      border: 0;
      background:
        radial-gradient(circle at 76% 20%, rgba(252,192,21,.34), transparent 27%),
        radial-gradient(circle at 18% 90%, rgba(32,191,227,.22), transparent 32%),
        linear-gradient(135deg, #071f35 0%, #163e92 52%, #7145d7 100%);
      box-shadow: 0 34px 84px rgba(55, 46, 126, .28);
    }
    .video-play { color: var(--purple); box-shadow: 0 14px 38px rgba(0,0,0,.28), 0 0 0 10px rgba(255,255,255,.12); }

    /* Founder section */
    #about {
      background:
        radial-gradient(circle at 92% 16%, rgba(32,191,227,.13), transparent 24%),
        linear-gradient(135deg, #effcf8 0%, #f6fbff 48%, #f2efff 100%);
    }
    .founder-visual {
      background:
        radial-gradient(circle at 76% 22%, rgba(252,192,21,.38), transparent 24%),
        linear-gradient(145deg, #092a43 0%, #155f91 45%, #6c4cff 100%);
      box-shadow: 0 28px 68px rgba(42, 65, 135, .25);
    }
    .founder-monogram { background: linear-gradient(145deg, #ffe26f, #ffb44f); }
    .about-point:nth-child(1) { background: var(--lavender); }
    .about-point:nth-child(2) { background: var(--mint); }
    .about-point:nth-child(3) { background: var(--peach); }
    .about-point:nth-child(4) { background: var(--sky); }

    /* Outcomes — rich dark gradient with color-coded cards */
    #services {
      background:
        radial-gradient(circle at 8% 18%, rgba(32,191,227,.18), transparent 25%),
        radial-gradient(circle at 92% 82%, rgba(236,72,153,.15), transparent 28%),
        linear-gradient(135deg, #061b2a 0%, #0a3554 52%, #252d86 100%);
    }
    #services .outcome-card { box-shadow: inset 0 1px 0 rgba(255,255,255,.08); backdrop-filter: blur(8px); }
    #services .outcome-card:nth-child(1) { background: linear-gradient(145deg, rgba(0,167,157,.20), rgba(255,255,255,.055)); border-color: rgba(70,238,214,.30); }
    #services .outcome-card:nth-child(2) { background: linear-gradient(145deg, rgba(108,76,255,.22), rgba(255,255,255,.055)); border-color: rgba(171,151,255,.32); }
    #services .outcome-card:nth-child(3) { background: linear-gradient(145deg, rgba(255,107,94,.19), rgba(255,255,255,.055)); border-color: rgba(255,154,144,.30); }
    #services .outcome-card:nth-child(1) .outcome-icon { background: #72f0d6; }
    #services .outcome-card:nth-child(2) .outcome-icon { background: #c4b5fd; }
    #services .outcome-card:nth-child(3) .outcome-icon { background: #ffc0a8; }

    /* Weekly operating model */
    #weekly-model {
      background:
        radial-gradient(circle at 4% 88%, rgba(0,167,157,.10), transparent 25%),
        radial-gradient(circle at 95% 12%, rgba(252,192,21,.13), transparent 24%),
        linear-gradient(135deg, #ffffff 0%, #f2fbff 48%, #fffaf0 100%);
    }
    #weekly-model .weekly-panel--primary { background: linear-gradient(145deg, #ffffff, var(--lavender)); border-color: rgba(108,76,255,.20); }
    #weekly-model .weekly-stack .weekly-panel:first-child { background: linear-gradient(145deg, #ffffff, var(--mint)); border-color: rgba(0,167,157,.18); }
    #weekly-model .weekly-panel--muted { background: linear-gradient(145deg, #fffdf8, var(--peach)); }
    .check-list li::before { background: linear-gradient(145deg, #d8fff5, #e8fbf6); }

    /* Comparison table */
    #comparison {
      background: linear-gradient(135deg, #f3efff 0%, #eef8ff 55%, #f5fffb 100%);
    }
    .table-wrap { border: 0; box-shadow: 0 22px 58px rgba(58, 55, 124, .13); }
    .comparison-table thead th { background: linear-gradient(105deg, #08283c 0%, #173d86 55%, #6742c8 100%); }
    .comparison-table tbody tr.is-featured { background: linear-gradient(90deg, #eefcf8, #f0efff); }
    .comparison-table tbody tr.is-featured th { color: var(--purple); }

    /* First 30 days */
    #process {
      background:
        radial-gradient(circle at 88% 14%, rgba(255,192,21,.14), transparent 25%),
        #ffffff;
    }
    #process .process-card { border: 0; box-shadow: var(--shadow-sm); }
    #process .process-card:nth-child(1) { background: linear-gradient(145deg, #ffffff, var(--sky)); }
    #process .process-card:nth-child(2) { background: linear-gradient(145deg, #ffffff, var(--lavender)); }
    #process .process-card:nth-child(3) { background: linear-gradient(145deg, #ffffff, var(--mint)); }
    #process .process-card:nth-child(4) { background: linear-gradient(145deg, #ffffff, var(--peach)); }
    #process .process-card:nth-child(1) .process-range { background: #dff4ff; color: #136ba0; }
    #process .process-card:nth-child(2) .process-range { background: #e9e3ff; color: #6544d7; }
    #process .process-card:nth-child(3) .process-range { background: #dff8f1; color: #087a70; }
    #process .process-card:nth-child(4) .process-range { background: #ffe5dc; color: #b94a3e; }
    .deliverables-strip { background: linear-gradient(105deg, #082b42 0%, #164c83 50%, #5b3bc4 100%); box-shadow: 0 18px 40px rgba(47,52,123,.20); }

    /* Pricing */
    #pricing {
      background:
        radial-gradient(circle at 5% 22%, rgba(32,191,227,.12), transparent 25%),
        radial-gradient(circle at 95% 78%, rgba(108,76,255,.12), transparent 25%),
        linear-gradient(135deg, #eefaff 0%, #f7f4ff 52%, #fff9ef 100%);
    }
    #pricing .pricing-card:first-child { background: linear-gradient(145deg, #ffffff, #f2fbff); border-color: rgba(32,191,227,.20); }
    #pricing .pricing-card--featured {
      background: linear-gradient(145deg, #ffffff 0%, #f5f1ff 70%, #fff7dc 125%);
      border-color: var(--purple);
      box-shadow: 0 30px 72px rgba(88,67,191,.22);
    }
    .pricing-badge { background: linear-gradient(90deg, #ffe66f, #ffb95c); }
    .pricing-card--featured .kicker { color: var(--purple); }
    .pricing-card--featured .price { color: #4f39bb; }

    /* Operating experience */
    #experience {
      background:
        radial-gradient(circle at 90% 22%, rgba(0,167,157,.10), transparent 24%),
        #ffffff;
    }
    #experience .experience-card { border: 0; }
    #experience .experience-card:nth-child(1) { background: linear-gradient(145deg, #ffffff, var(--sky)); }
    #experience .experience-card:nth-child(2) { background: linear-gradient(145deg, #ffffff, var(--mint)); }
    #experience .experience-card:nth-child(3) { background: linear-gradient(145deg, #ffffff, var(--lavender)); }
    #experience .experience-card:nth-child(1) .tag { background: #dbf2ff; color: #126895; }
    #experience .experience-card:nth-child(2) .tag { background: #dcf8ef; color: #08776d; }
    #experience .experience-card:nth-child(3) .tag { background: #e9e2ff; color: #6544d7; }

    /* Fit diagnostic */
    #fit-check {
      background:
        radial-gradient(circle at 8% 18%, rgba(255,107,94,.10), transparent 25%),
        radial-gradient(circle at 92% 80%, rgba(252,192,21,.13), transparent 25%),
        linear-gradient(135deg, #fff6f1 0%, #fffdf6 48%, #f5f3ff 100%);
    }
    #fit-check .criteria-card--fit { background: linear-gradient(145deg, #ffffff, var(--mint)); border-color: rgba(0,167,157,.24); }
    #fit-check .criteria-card:nth-child(2) { background: linear-gradient(145deg, #ffffff, #fff0f3); border-color: rgba(255,107,94,.18); }
    .diagnostic {
      background:
        radial-gradient(circle at 90% 16%, rgba(252,192,21,.22), transparent 24%),
        linear-gradient(115deg, #082a43 0%, #17427f 47%, #6741c8 100%);
      box-shadow: 0 28px 68px rgba(55,57,126,.22);
    }
    .diagnostic-questions label:hover { background: rgba(255,255,255,.10); border-color: rgba(255,255,255,.25); }

    /* FAQ as a set of approachable cards */
    #faq {
      background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    }
    .faq-wrap { display: grid; gap: 12px; }
    .faq-wrap details { border: 1px solid rgba(38,61,94,.10); border-radius: 16px; padding-inline: 22px; background: var(--white); box-shadow: 0 8px 24px rgba(26,42,76,.055); }
    .faq-wrap details:nth-child(1) { border-left: 5px solid var(--teal); }
    .faq-wrap details:nth-child(2) { border-left: 5px solid var(--purple); }
    .faq-wrap details:nth-child(3) { border-left: 5px solid var(--cyan); }
    .faq-wrap details:nth-child(4) { border-left: 5px solid var(--coral); }
    .faq-wrap details:nth-child(5) { border-left: 5px solid var(--yellow); }
    .faq-wrap summary::after { background: linear-gradient(145deg, #ede8ff, #e3f8ff); color: var(--purple); }

    /* Closing CTA and footer */
    .cta-shell {
      background:
        radial-gradient(circle at 90% 12%, rgba(252,192,21,.34), transparent 25%),
        radial-gradient(circle at 5% 100%, rgba(32,191,227,.22), transparent 27%),
        linear-gradient(110deg, #072e40 0%, #17498d 49%, #6c42ce 100%);
      box-shadow: 0 32px 78px rgba(42,54,127,.23);
    }
    .site-footer { background: linear-gradient(135deg, #031c29 0%, #092e45 55%, #211f62 120%); }
    .mobile-cta { background: linear-gradient(105deg, var(--blue), var(--purple)); }

    @media (max-width: 760px) {
      .site-nav { background: rgba(255,255,255,.98); }
      .hero::after { background-size: 32px 32px; }
      .credibility-item { padding-inline: 18px !important; }
      .credibility-item::before { left: 18px; right: 18px; }
    }



    /* Operating-system card readability fix
       The previous fixed-height card clipped the Align and Execute rows at
       common desktop and mobile viewport sizes. Give the card enough vertical
       space, protect the middle column from overflow, and render statuses as
       readable pills. */
    .operating-system { min-height: 680px; }
    .os-card--main { inset: 28px 0 24px 35px; }
    .os-item {
      grid-template-columns: 44px minmax(0, 1fr) max-content;
      min-height: 70px;
      gap: 14px;
      padding: 14px 16px;
    }
    .os-item > span:nth-child(2) { min-width: 0; }
    .os-item > span:nth-child(2) > span {
      display: block;
      margin-top: 2px;
      line-height: 1.35;
      overflow-wrap: anywhere;
    }
    .os-item b {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 72px;
      padding: 6px 9px;
      border-radius: 999px;
      background: rgba(24,132,93,.10);
      white-space: nowrap;
      line-height: 1;
    }

    @media (max-width: 760px) {
      .operating-system { min-height: 660px; }
      .os-card--main { inset: 22px 0 24px 14px; padding: 18px; }
      .os-card--back-one { inset: 8px 22px 62px 0; }
      .os-card--back-two { inset: 52px -2px 4px 36px; }
      .os-focus { padding: 20px 0 16px; }
      .os-focus strong { font-size: 21px; }
      .os-list { gap: 10px; }
      .os-item {
        grid-template-columns: 38px minmax(0, 1fr) max-content;
        min-height: 72px;
        gap: 10px;
        padding: 11px;
      }
      .os-item b {
        display: inline-flex;
        grid-column: auto;
        justify-self: end;
        min-width: 0;
        margin-top: 0;
        padding: 5px 7px;
        font-size: 9px;
      }
      .os-note { margin-top: 13px; }
    }



    /* ======================================================================
       V3.6 — proof-first competitive update
       ====================================================================== */
    .proof-bar {
      position: relative;
      border-top: 1px solid rgba(255,255,255,.08);
      border-bottom: 1px solid rgba(255,255,255,.08);
      background: linear-gradient(110deg, #061f2c 0%, #0b4058 55%, #1637a8 100%);
      color: var(--white);
      overflow: hidden;
    }
    .proof-bar::after {
      content: "";
      position: absolute;
      width: 360px;
      height: 360px;
      right: -180px;
      top: -220px;
      border-radius: 50%;
      background: rgba(252,192,21,.13);
      filter: blur(4px);
    }
    .proof-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.25fr repeat(4, 1fr); }
    .proof-item { min-height: 126px; display: flex; align-items: center; padding: 26px 24px; border-right: 1px solid rgba(255,255,255,.12); }
    .proof-item:last-child { border-right: 0; }
    .proof-item:first-child { padding-left: 0; }
    .proof-item strong { display: block; color: var(--white); font-size: clamp(20px, 2.4vw, 30px); letter-spacing: -.035em; line-height: 1.05; }
    .proof-item span { display: block; margin-top: 7px; color: rgba(255,255,255,.68); font-size: 12px; line-height: 1.45; }
    .proof-item .proof-label { color: var(--yellow); font-size: 12px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
    .proof-disclaimer { margin-top: 8px; color: rgba(255,255,255,.52); font-size: 10px; }

    .case-section { background: linear-gradient(180deg, #f7f9ff 0%, #ffffff 100%); }
    .case-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 26px; }
    .case-card { position: relative; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--white); box-shadow: var(--shadow-sm); }
    .case-card::before { content: ""; position: absolute; inset: 0 auto 0 0; width: 6px; background: linear-gradient(180deg, var(--blue), var(--purple)); }
    .case-card:nth-child(2)::before { background: linear-gradient(180deg, var(--teal), var(--cyan)); }
    .case-card__head { padding: 34px 36px 24px 42px; border-bottom: 1px solid var(--line); background: linear-gradient(145deg, #fff, #f8faff); }
    .case-card__head .tag { display: inline-flex; margin-bottom: 13px; padding: 6px 10px; border-radius: 999px; background: var(--soft-blue); color: var(--blue); font-size: 11px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
    .case-card__body { display: grid; gap: 23px; padding: 30px 36px 34px 42px; }
    .case-row { display: grid; grid-template-columns: 112px 1fr; gap: 18px; align-items: start; }
    .case-row strong { color: var(--navy); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
    .case-row p { font-size: 14px; }
    .case-outcomes { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px; }
    .case-outcome { padding: 17px; border-radius: 15px; background: var(--soft); }
    .case-outcome b { display: block; color: var(--navy); font-size: 22px; letter-spacing: -.035em; }
    .case-outcome span { display: block; margin-top: 2px; color: var(--muted); font-size: 11px; line-height: 1.4; }
    .proof-context { margin-top: 18px; color: var(--muted); font-size: 12px; text-align: center; }

    .method-grid { display: grid; grid-template-columns: repeat(5, minmax(0,1fr)); gap: 15px; }
    .method-step { position: relative; min-height: 260px; padding: 26px 22px; border: 1px solid rgba(255,255,255,.14); border-radius: 20px; background: rgba(255,255,255,.07); }
    .method-step::after { content: ""; position: absolute; left: 22px; right: 22px; bottom: 0; height: 5px; border-radius: 8px 8px 0 0; background: var(--yellow); }
    .method-step:nth-child(2)::after { background: #62e6bd; }
    .method-step:nth-child(3)::after { background: #6ec8ff; }
    .method-step:nth-child(4)::after { background: #b39bff; }
    .method-step:nth-child(5)::after { background: #ff9f80; }
    .method-num { display: inline-grid; width: 38px; height: 38px; place-items: center; margin-bottom: 30px; border-radius: 12px; background: rgba(255,255,255,.12); color: var(--yellow); font-weight: 900; }
    .method-step h3 { font-size: 22px; }
    .method-step p { margin-top: 12px; font-size: 14px; }

    .operator-proof { display: grid; grid-template-columns: 1fr; gap: 46px; margin-top: 34px; padding: 28px; border-radius: 20px; background: linear-gradient(145deg, #ffffff, #f4f7ff); border: 1px solid var(--line); }
    .operator-proof__identity { display: flex; align-items: center; gap: 17px; }
    .operator-avatar { width: 72px; height: 72px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 20px; background: linear-gradient(145deg, var(--navy), var(--blue)); color: var(--yellow); font-weight: 950; }
    .operator-proof__identity strong { display: block; color: var(--navy); font-size: 18px; }
    .operator-proof__identity span { display: block; margin-top: 3px; color: var(--muted); font-size: 12px; }
    .operator-proof__promise { display: grid; gap: 9px; align-content: center; }
    .operator-proof__promise b { color: var(--navy); }
    .operator-proof__promise p { font-size: 14px; }
    .operator-role { display: block; color: var(--navy); font-size: 15px; font-weight: 700; margin-bottom: 4px; }
    .operator-cred { display: flex; flex-wrap: wrap; gap: 10px; margin: 4px 0 6px; }
    .cred-chip { font-size: 12px; font-weight: 600; color: var(--navy); background: #eef2ff; border: 1px solid var(--line); border-radius: 999px; padding: 6px 14px; }
    .operator-verify { display: inline-block; margin-top: 6px; font-size: 13px; font-weight: 600; color: var(--blue); }
    .operator-verify:hover { text-decoration: underline; }

    .engagement-details { margin-top: 30px; display: grid; grid-template-columns: repeat(6, minmax(0,1fr)); border: 1px solid var(--line); border-radius: 20px; background: var(--white); overflow: hidden; }
    .engagement-detail { min-height: 118px; padding: 22px 18px; border-right: 1px solid var(--line); }
    .engagement-detail:last-child { border-right: 0; }
    .engagement-detail strong { display: block; color: var(--navy); font-size: 13px; }
    .engagement-detail span { display: block; margin-top: 6px; color: var(--muted); font-size: 11px; line-height: 1.45; }

    .proof-cta { margin-top: 30px; display: flex; justify-content: space-between; gap: 24px; align-items: center; padding: 26px 30px; border-radius: 20px; background: var(--navy); }
    .proof-cta h3 { color: var(--white); font-size: 24px; }
    .proof-cta p { margin-top: 7px; color: rgba(255,255,255,.7); font-size: 14px; }

    @media (max-width: 980px) {
      .proof-grid { grid-template-columns: repeat(2, 1fr); }
      .proof-item:first-child { grid-column: 1 / -1; padding-left: 24px; }
      .proof-item { border-bottom: 1px solid rgba(255,255,255,.12); }
      .method-grid { grid-template-columns: repeat(2, 1fr); }
      .method-step:last-child { grid-column: 1 / -1; }
      .engagement-details { grid-template-columns: repeat(3, 1fr); }
      .engagement-detail:nth-child(3) { border-right: 0; }
      .engagement-detail:nth-child(-n+3) { border-bottom: 1px solid var(--line); }
    }
    @media (max-width: 760px) {
      .case-grid, .operator-proof { grid-template-columns: 1fr; }
      .case-row { grid-template-columns: 1fr; gap: 7px; }
      .proof-cta { align-items: flex-start; flex-direction: column; }
    }
    @media (max-width: 560px) {
      .proof-grid, .method-grid, .engagement-details, .case-outcomes { grid-template-columns: 1fr; }
      .proof-item:first-child, .method-step:last-child { grid-column: auto; }
      .proof-item { padding-left: 0 !important; border-right: 0; }
      .engagement-detail, .engagement-detail:nth-child(3) { border-right: 0; border-bottom: 1px solid var(--line); }
      .engagement-detail:last-child { border-bottom: 0; }
      .case-card__head, .case-card__body { padding-left: 28px; padding-right: 24px; }
    }

/* ---- Real brand logo (replaces the FPM text mark) ---- */
.brand .brand-logo { height: 30px; width: auto; display: block; }
/* Footer sits on dark navy — render the (dark) wordmark white via filter. */
.site-footer .brand .brand-logo { filter: brightness(0) invert(1); }
/* Inner-page hero band (v3.6 look for pages below the homepage) */
.page-head { background: linear-gradient(135deg, #031c29 0%, #092e45 55%, #211f62 120%); padding: 74px 0 66px; text-align: center; }
.page-head h1 { color: var(--white); max-width: 900px; margin: 0 auto; }
.page-head p { color: rgba(255,255,255,.72); max-width: 680px; margin: 16px auto 0; font-size: 17px; }
.page-head .eyebrow, .page-head [class*="eyebrow"] { color: var(--yellow); }
.prose-block { max-width: 820px; margin: 0 auto; }
.prose-block h2 { margin: 38px 0 12px; }
.prose-block h3 { margin: 26px 0 10px; }
.prose-block p, .prose-block ul, .prose-block ol { margin-bottom: 14px; }
.prose-block ul, .prose-block ol { padding-left: 22px; }
.prose-block li { margin-bottom: 6px; }

/* ---- Forms (contact) ---- */
.form-status { margin-top: 10px; font-size: 14px; font-weight: 600; }
.form-status:empty { display: none; }
.form-status.is-pending { color: var(--muted); }
.form-status.is-success { color: #0a7d33; }
.form-status.is-error { color: #c0322b; }
.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 600; font-size: 13px; color: var(--navy); margin-bottom: 6px; }
.field input, .field textarea { width: 100%; font: inherit; font-size: 15px; padding: 13px 16px; border: 1px solid var(--line); border-radius: 12px; background: var(--white); color: var(--navy); }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(20,52,203,.14); }
.field textarea { min-height: 150px; resize: vertical; }
.form-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 640px) { .form-2col { grid-template-columns: 1fr; } }
.hp-field { position: absolute !important; left: -9999px !important; }

/* --- 2026 growth pages: comparison (#3) + operating artifacts (#6) --- */
.cmp-wrap{max-width:880px;margin:0 auto}
.cmp-table{width:100%;border-collapse:collapse;margin:6px 0;font-size:15px}
.cmp-table th,.cmp-table td{text-align:left;padding:12px 14px;border-bottom:1px solid var(--line);vertical-align:top}
.cmp-table thead th{font-size:12px;text-transform:uppercase;letter-spacing:.05em;color:var(--muted);background:var(--soft,#f6f9fc)}
.cmp-table td.col-us,.cmp-table th.col-us{background:color-mix(in srgb,var(--blue) 7%,var(--white,#fff));font-weight:600;color:var(--navy)}
.cmp-table th[scope=row]{font-weight:700;color:var(--navy)}
.cmp-choose{display:grid;grid-template-columns:1fr 1fr;gap:16px;margin:24px 0}
.cmp-choose .cc-col{border-radius:14px;padding:18px 20px;border:1px solid var(--line);background:var(--white,#fff)}
.cmp-choose .cc-col.us{border-left:4px solid var(--teal,#12a594)}
.cmp-choose .cc-col.them{border-left:4px solid var(--muted)}
.cmp-choose h3{font-size:16px;margin:0 0 8px;color:var(--navy)}
.cmp-choose ul{margin:0;padding-left:18px;font-size:14px;color:var(--muted)}
.cmp-choose li{margin:5px 0}
.cmp-faq{max-width:760px;margin:0 auto}
.cmp-faq details{border-bottom:1px solid var(--line);padding:14px 0}
.cmp-faq summary{font-weight:700;cursor:pointer;color:var(--navy);font-size:16px}
.cmp-faq p{margin:9px 0 0;color:var(--muted)}
.art-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(230px,1fr));gap:16px}
.art-card{border:1px solid var(--line);border-radius:14px;padding:18px;background:var(--white,#fff);display:flex;gap:14px}
.art-card .ic{flex:none;width:42px;height:52px;border-radius:7px;background:var(--soft,#f6f9fc);border:1px solid var(--line);position:relative}
.art-card .ic::before{content:"";position:absolute;left:9px;right:9px;top:12px;height:3px;background:var(--line);box-shadow:0 8px 0 var(--line),0 16px 0 var(--line)}
.art-card h3{font-size:15px;margin:0 0 4px;color:var(--navy)}
.art-card p{font-size:13px;color:var(--muted);margin:0 0 10px}
@media(max-width:640px){.cmp-choose{grid-template-columns:1fr}}

/* --- comparison pages v2 (#3 expanded) --- */
.cmp-owns,.cmp-flows,.cmp-scen{display:grid;grid-template-columns:1fr 1fr;gap:16px;margin:18px 0}
.cmp-owns .col,.cmp-flows .fl,.cmp-scen .sc{border:1px solid var(--line);border-radius:14px;padding:18px 20px;background:var(--white,#fff)}
.cmp-owns .col h3,.cmp-flows .fl h3,.cmp-scen .sc h3{font-size:15px;color:var(--navy);margin:0 0 8px}
.cmp-owns ul{margin:0;padding-left:18px;font-size:14px;color:var(--muted)}.cmp-owns li{margin:5px 0}
.cmp-flow{display:flex;flex-wrap:wrap;align-items:center;gap:8px;margin:10px 0}
.cmp-flow .step{background:var(--soft,#f6f9fc);border:1px solid var(--line);border-radius:10px;padding:7px 12px;font-size:13px;font-weight:600;color:var(--navy)}
.cmp-flow .arr{color:var(--muted);font-weight:700}
.cmp-flows .fl p{font-size:13.5px;color:var(--muted);margin:8px 0 0}
.cmp-scen .sc p{font-size:13.5px;color:var(--muted);margin:0 0 8px}
.cmp-scen .fit{font-size:12px;font-weight:700;color:var(--blue);background:color-mix(in srgb,var(--blue) 10%,transparent);border-radius:999px;padding:4px 10px;display:inline-block}
.cmp-steps{counter-reset:s;margin:14px 0;padding:0}
.cmp-steps li{list-style:none;position:relative;padding:5px 0 5px 34px;font-size:14px;color:var(--navy)}
.cmp-steps li::before{counter-increment:s;content:counter(s);position:absolute;left:0;top:3px;width:24px;height:24px;border-radius:50%;background:var(--navy);color:#fff;font-size:12px;font-weight:700;display:grid;place-items:center}
.cmp-nav{border:1px solid var(--line);border-radius:14px;padding:18px;margin:8px 0;background:var(--soft,#f6f9fc)}
.cmp-nav .lab{font-size:12px;font-weight:700;text-transform:uppercase;letter-spacing:.06em;color:var(--muted)}
.cmp-nav ul{list-style:none;margin:10px 0 0;padding:0;display:flex;flex-wrap:wrap;gap:8px}
.cmp-nav a{font-size:13.5px;font-weight:600;color:var(--blue);border:1px solid var(--line);border-radius:999px;padding:6px 12px;text-decoration:none;background:var(--white,#fff)}
.cmp-nav a[aria-current=page]{background:var(--navy);color:#fff;border-color:var(--navy)}
.cmp-alt{font-size:13.5px;color:var(--blue);font-weight:600;margin-top:6px}
.cmp-table.big{font-size:15px}
@media(max-width:640px){.cmp-owns,.cmp-flows,.cmp-scen{grid-template-columns:1fr}}

/* --- what-we-offer hub v2 --- */
.wo{max-width:1180px}
.wo-two{display:grid;grid-template-columns:1fr 1fr;gap:20px;margin-top:8px}
.wo-two .col{border:1px solid var(--line);border-radius:16px;padding:22px;background:var(--white,#fff)}
.wo-two .col h3{margin:0 0 10px;font-size:17px;color:var(--navy)}
.wo-two ul{margin:0;padding-left:18px;font-size:14.5px;color:var(--muted)}.wo-two li{margin:6px 0}
.wo-cap{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.wo-cap .card{border:1px solid var(--line);border-radius:16px;padding:22px;background:var(--white,#fff);display:flex;flex-direction:column}
.wo-cap .k{font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:.06em;color:var(--blue)}
.wo-cap h3{font-size:17px;color:var(--navy);margin:6px 0 8px}
.wo-cap p{font-size:14px;color:var(--muted);line-height:1.55;margin:0 0 12px}
.wo-cap .out{font-size:12.5px;color:var(--navy);border-top:1px solid var(--line);padding-top:10px;margin-top:auto}
.wo-cap .out strong{color:var(--muted)}
.wo-proc{display:grid;grid-template-columns:repeat(4,1fr);gap:16px}
.wo-proc .st{border:1px solid var(--line);border-radius:14px;padding:18px;background:var(--white,#fff)}
.wo-proc .st .n{font-size:12px;font-weight:700;color:var(--blue)}
.wo-proc .st h3{font-size:16px;color:var(--navy);margin:6px 0 6px}
.wo-proc .st p{font-size:13.5px;color:var(--muted);margin:0 0 8px}
.wo-proc .st .o{font-size:12px;color:var(--navy);border-top:1px solid var(--line);padding-top:8px}
.wo-out{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.wo-out .card{border:1px solid rgba(255,255,255,.18);border-radius:16px;padding:22px;background:rgba(255,255,255,.06)}
.wo-out .card h3{font-size:17px;color:#fff;margin:0 0 10px}
.wo-out ul{margin:0;padding-left:18px;font-size:14px;color:#cfe0ea}.wo-out li{margin:6px 0}
.wo-guides{display:grid;grid-template-columns:1fr 1fr;gap:16px}
.wo-guides a{display:block;border:1px solid var(--line);border-radius:16px;padding:22px;text-decoration:none;background:var(--white,#fff);transition:transform .2s,box-shadow .2s}
.wo-guides a:hover{transform:translateY(-2px);box-shadow:0 14px 30px rgba(7,46,64,.09)}
.wo-guides h3{font-size:17px;color:var(--navy);margin:0 0 6px}
.wo-guides p{font-size:14px;color:var(--muted);margin:0 0 10px}
.wo-guides .go{font-size:13.5px;font-weight:700;color:var(--blue)}
@media(max-width:900px){.wo-cap,.wo-proc,.wo-out{grid-template-columns:1fr 1fr}}
@media(max-width:640px){.wo-two,.wo-cap,.wo-proc,.wo-out,.wo-guides{grid-template-columns:1fr}}
