/* Neuvero design system — extracted from the original pages (visually identical). */
:root {
      --font-sans: "Geist", "Geist Fallback";
      --font-mono: "Geist Mono", "Geist Mono Fallback";
      --bg: #101a2d;
      --bg-soft: #162238;
      --panel: #162238;
      --panel-soft: rgba(255, 255, 255, 0.04);
      --panel-border: rgba(132, 159, 211, 0.14);
      --line: rgba(132, 159, 211, 0.12);
      --text: #f6f8fd;
      --text-soft: #c3cede;
      --text-dim: #8d9bb2;
      --blue: #3f82eb;
      --blue-bright: #5d9fff;
      --blue-soft: rgba(93, 159, 255, 0.12);
      --green: #11bb85;
      --surface: #f4f7fc;
      --surface-text: #142035;
      --surface-muted: #53627b;
      --max: 1180px;
      --radius-lg: 28px;
      --radius-md: 18px;
      --radius-sm: 12px;
      --shadow: 0 28px 80px rgba(7, 12, 24, 0.28);
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: var(--font-sans), sans-serif;
      color: var(--surface-text);
      background: var(--surface);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }

    a {
      color: inherit;
    }

    img {
      max-width: 100%;
      display: block;
    }

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

    .eyebrow {
      display: inline-flex;
      align-items: center;
      padding: 12px 26px;
      border-radius: 999px;
      border: 1px solid rgba(93, 159, 255, 0.7);
      background: rgba(20, 39, 68, 0.36);
      color: var(--blue-bright);
      font-size: 0.95rem;
      letter-spacing: 0.08em;
    }

    .section {
      padding: 104px 0;
    }

    .section-dark {
      background:
        radial-gradient(circle at top center, rgba(67, 117, 205, 0.08), transparent 32%),
        linear-gradient(180deg, var(--bg) 0%, #132139 100%);
      color: var(--text);
    }

    .section-light {
      background:
        radial-gradient(circle at top left, rgba(63, 130, 235, 0.08), transparent 28%),
        var(--surface);
    }

    .section-program {
      background:
        radial-gradient(circle at top right, rgba(93, 159, 255, 0.06), transparent 26%),
        linear-gradient(180deg, #101a2d 0%, #152239 100%);
      color: var(--text);
    }

    .section-header {
      max-width: 720px;
      margin-bottom: 44px;
    }

    .label {
      display: inline-block;
      margin-bottom: 14px;
      color: var(--blue);
      font-size: 0.8rem;
      font-weight: 800;
      letter-spacing: 0.18em;
      text-transform: uppercase;
    }

    .section-title {
      margin: 0;
      font-family: var(--font-sans), sans-serif;
      font-size: clamp(2.1rem, 4vw, 3.25rem);
      line-height: 1.1;
      letter-spacing: -0.03em;
      font-weight: 800;
    }

    .section-copy {
      margin: 16px 0 0;
      color: var(--surface-muted);
      font-size: 1.05rem;
    }

    .section-dark .label {
      color: var(--blue-bright);
    }

    .section-dark .section-copy {
      color: var(--text-soft);
    }

    .section-program .label {
      color: var(--blue-bright);
    }

    .section-program .section-title,
    .section-program .benefit-item h3 {
      color: #ffffff;
    }

    .section-program .section-copy,
    .section-program .benefit-item p {
      color: var(--text-soft);
    }

    .section-program#video .section-header {
      max-width: 1120px;
    }

    .section-program .video-shell {
      background: rgba(255, 255, 255, 0.04);
      box-shadow: 0 28px 84px rgba(7, 12, 24, 0.28);
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 56px;
      padding: 0 32px;
      border-radius: var(--radius-sm);
      border: 1px solid transparent;
      text-decoration: none;
      font-weight: 700;
      transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
    }

    .btn:hover,
    .btn:focus-visible {
      transform: translateY(-1px);
    }

    .btn-primary {
      background: linear-gradient(180deg, #4a8cf0 0%, #3f82eb 100%);
      color: #fff;
      box-shadow: 0 12px 36px rgba(63, 130, 235, 0.26);
    }

    .btn-secondary {
      border-color: rgba(156, 179, 220, 0.28);
      background: rgba(255, 255, 255, 0.03);
      color: var(--text-soft);
    }

    .btn-outline {
      border-color: var(--blue);
      background: transparent;
      color: var(--blue-bright);
    }

    .site-shell {
      background:
        radial-gradient(circle at 50% 20%, rgba(93, 159, 255, 0.06), transparent 28%),
        linear-gradient(180deg, #0f192c 0%, #152239 100%);
      color: var(--text);
      border-bottom: 1px solid var(--line);
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      color: #ffffff;
      backdrop-filter: blur(8px);
      background: rgba(16, 26, 45, 0.9);
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .product-header-inner {
      display: flex;
      width: 100%;
      max-width: 1600px;
      min-height: 64px;
      margin: 0 auto;
      padding: 12px 32px;
      align-items: center;
      justify-content: space-between;
      gap: 12px 24px;
    }

    .product-header-lockup {
      display: flex;
      min-width: 0;
      align-items: center;
      gap: 12px;
    }

    .product-brand,
    .product-name {
      text-decoration: none;
      transition: color 0.2s ease;
    }

    .product-brand {
      flex: 0 0 auto;
      color: var(--blue-bright);
      font-family: "SF Mono", "JetBrains Mono", Consolas, var(--font-mono), monospace;
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.2em;
      text-transform: uppercase;
    }

    .product-header-divider {
      flex: 0 0 auto;
      color: rgba(255, 255, 255, 0.25);
    }

    .product-name {
      min-width: 0;
      overflow: hidden;
      color: #ffffff;
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      font-size: 0.875rem;
      font-weight: 600;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    .product-brand:hover,
    .product-brand:focus-visible,
    .product-name:hover,
    .product-name:focus-visible {
      color: var(--blue-bright);
    }

    .explore-menu {
      position: relative;
      flex: 0 0 auto;
    }

    .explore-menu summary {
      display: inline-flex;
      max-width: 60vw;
      padding: 8px 16px;
      align-items: center;
      gap: 8px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 9999px;
      background: rgba(255, 255, 255, 0.04);
      color: #cbd5e1;
      cursor: pointer;
      font-family: "SF Mono", "JetBrains Mono", Consolas, var(--font-mono), monospace;
      font-size: 0.75rem;
      letter-spacing: 0.16em;
      line-height: 1.35;
      list-style: none;
      text-transform: uppercase;
      transition: border-color 0.2s ease, color 0.2s ease;
    }

    .explore-menu summary::-webkit-details-marker {
      display: none;
    }

    .explore-menu summary::after {
      content: "";
      width: 7px;
      height: 7px;
      margin-top: -3px;
      border-right: 1.5px solid currentColor;
      border-bottom: 1.5px solid currentColor;
      transform: rotate(45deg);
      transition: transform 0.2s ease;
    }

    .explore-menu[open] summary::after {
      margin-top: 3px;
      transform: rotate(225deg);
    }

    .explore-menu summary:hover,
    .explore-menu summary:focus-visible {
      border-color: rgba(93, 159, 255, 0.7);
      color: var(--blue-bright);
    }

    .explore-menu-panel {
      position: absolute;
      z-index: 80;
      top: calc(100% + 10px);
      right: 0;
      width: 320px;
      max-height: calc(100vh - 6rem);
      overflow-y: auto;
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 8px;
      background: #101a2d;
      box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
    }

    .explore-menu-panel a {
      display: block;
      padding: 10px 16px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      color: inherit;
      text-decoration: none;
      transition: background-color 0.2s ease;
    }

    .explore-menu-panel a:last-child {
      border-bottom: 0;
    }

    .explore-menu-panel a:hover,
    .explore-menu-panel a:focus-visible,
    .explore-menu-panel a[aria-current="page"] {
      background: rgba(255, 255, 255, 0.06);
    }

    .explore-menu-label {
      display: flex;
      min-width: 0;
      align-items: flex-start;
      gap: 8px;
      color: var(--blue-bright);
      font-family: "SF Mono", "JetBrains Mono", Consolas, var(--font-mono), monospace;
      font-size: 0.6875rem;
      letter-spacing: 0.16em;
      line-height: 1.45;
      text-transform: uppercase;
    }

    .explore-menu-status {
      display: inline-flex;
      width: 16px;
      height: 16px;
      flex: 0 0 16px;
      align-items: center;
      justify-content: center;
      border: 1px solid rgba(255, 255, 255, 0.15);
      border-radius: 9999px;
      font-size: 0.625rem;
      letter-spacing: 0;
    }

    .explore-menu-detail {
      display: block;
      padding-left: 24px;
      color: #94a3b8;
      font-size: 0.75rem;
      line-height: 1.65;
    }

    .hero {
      padding: 122px 0 96px;
      min-height: calc(100vh - 65px);
      display: flex;
      align-items: center;
      text-align: center;
    }

    .hero-inner {
      width: 100%;
      max-width: 860px;
      margin: 0 auto;
    }

    .hero-social {
      display: flex;
      justify-content: center;
      margin-bottom: 30px;
    }

    .hero-social .footer-links {
      justify-content: center;
      gap: 22px;
    }

    .hero-social .footer-links a {
      color: var(--text-soft);
      font-size: 0.98rem;
    }

    .hero-social .footer-links a:hover,
    .hero-social .footer-links a:focus-visible {
      color: #ffffff;
    }

    .hero-title {
      margin: 34px 0 18px;
      font-size: clamp(2.7rem, 5.8vw, 4.6rem);
      line-height: 1.05;
      letter-spacing: -0.05em;
      font-weight: 800;
      color: #ffffff;
    }

    .hero-title em {
      display: block;
      color: var(--blue-bright);
      font-style: italic;
      font-weight: 700;
    }

    .hero-copy {
      max-width: 760px;
      margin: 0 auto;
      color: var(--text-soft);
      font-size: clamp(1.15rem, 2vw, 1.45rem);
      line-height: 1.7;
    }

    .hero-actions {
      display: flex;
      justify-content: center;
      gap: 18px;
      margin-top: 34px;
      flex-wrap: wrap;
    }

    .hero-actions .btn {
      min-width: 220px;
    }

    .hero-footnote {
      margin-top: 46px;
      color: #6f7e98;
      font-size: 0.92rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
    }

    .program-grid,
    .pilot-grid {
      display: grid;
      gap: 28px;
    }

    .program-grid {
      grid-template-columns: 1.1fr 1fr;
      align-items: start;
    }

    .intro-card,
    .list-card,
    .step-card,
    .pilot-card,
    .price-card,
    .cta-card {
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow);
    }

    .intro-card,
    .list-card,
    .pilot-card,
    .cta-card {
      background: #ffffff;
      padding: 36px;
      box-shadow: 0 22px 70px rgba(14, 25, 44, 0.08);
    }

    .list-card {
      border: 1px solid rgba(63, 130, 235, 0.12);
      background:
        linear-gradient(180deg, rgba(63, 130, 235, 0.03), transparent 100%),
        #ffffff;
    }

    .section-program .intro-card {
      background: transparent;
      padding: 0;
      box-shadow: none;
    }

    .section-program .list-card {
      background: transparent;
      border: 0;
      padding: 0;
      box-shadow: none;
    }

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

    .benefit-item {
      display: flex;
      gap: 14px;
      align-items: flex-start;
      padding-bottom: 18px;
      border-bottom: 1px solid rgba(20, 32, 53, 0.08);
    }

    .benefit-item:last-child {
      padding-bottom: 0;
      border-bottom: 0;
    }

    .section-program .benefit-item {
      padding: 24px 26px;
      margin-bottom: 18px;
      border: 1px solid rgba(63, 130, 235, 0.35);
      border-radius: 16px;
      background: rgba(21, 34, 57, 0.98);
    }

    .section-program .benefit-item:last-child {
      margin-bottom: 0;
      border-bottom: 1px solid rgba(63, 130, 235, 0.35);
    }

    .benefit-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 42px;
      height: 42px;
      flex: 0 0 auto;
      border-radius: 14px;
      background: rgba(63, 130, 235, 0.12);
      color: var(--blue);
      font-size: 1.2rem;
    }

    .section-program .benefit-icon {
      width: 28px;
      height: 28px;
      margin-top: 2px;
      border-radius: 0;
      background: transparent;
      color: #ffd05d;
      font-size: 1.15rem;
    }

    .benefit-item h3,
    .pilot-card h3,
    .price-title {
      margin: 0 0 6px;
      font-size: 1.08rem;
      line-height: 1.35;
    }

    .benefit-item p,
    .pilot-card p,
    .metric-copy,
    .price-copy {
      margin: 0;
      color: var(--surface-muted);
    }

    .steps-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 24px;
    }

    .step-card,
    .price-card {
      background: var(--panel-soft);
      border: 1px solid var(--panel-border);
      padding: 30px;
    }

    .step-chip,
    .price-plan {
      display: inline-flex;
      align-items: center;
      min-height: 32px;
      padding: 0 12px;
      border-radius: 999px;
      background: var(--blue-soft);
      color: var(--blue-bright);
      font-size: 0.76rem;
      font-weight: 800;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .step-card h3 {
      margin: 18px 0 10px;
      font-size: 1.1rem;
    }

    .step-card p {
      margin: 0;
      color: var(--text-soft);
    }

    .video-shell {
      padding: 40px;
      border-radius: 30px;
      background: #ffffff;
      box-shadow: 0 28px 84px rgba(15, 25, 44, 0.1);
    }

    .video-frame {
      position: relative;
      border-radius: 24px;
      overflow: hidden;
      aspect-ratio: 16 / 9;
      background:
        radial-gradient(circle at top, rgba(93, 159, 255, 0.18), transparent 34%),
        linear-gradient(135deg, #15233a 0%, #24385a 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 32px;
      color: rgba(255, 255, 255, 0.82);
    }

    .video-frame::before {
      content: "▶";
      display: grid;
      place-items: center;
      width: 92px;
      height: 92px;
      margin: 0 auto 16px;
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, 0.35);
      background: rgba(255, 255, 255, 0.08);
      font-size: 1.8rem;
    }

    .video-frame.video-embed {
      display: block;
      padding: 0;
      background: #0f192c;
    }

    .video-frame.video-embed::before {
      content: none;
    }

    .video-frame.video-embed iframe {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      border: 0;
    }

    .pilot-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 32px;
    }

    .section-program#pilot .section-header {
      max-width: 900px;
      margin-bottom: 34px;
    }

    .section-program#pilot .label {
      display: none;
    }

    .section-program#pilot .section-title {
      font-size: clamp(2.1rem, 4vw, 3.25rem);
      letter-spacing: -0.03em;
      line-height: 1.1;
    }

    .section-program#pilot .section-copy {
      max-width: 820px;
      margin-top: 18px;
      font-size: 1.05rem;
    }

    .section-program#pilot .pilot-card {
      background: rgba(21, 34, 57, 0.98);
      border: 1px solid rgba(93, 159, 255, 0.24);
      box-shadow: none;
      padding: 34px 32px 30px;
    }

    .pilot-card-header {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 20px;
      color: #ffffff;
    }

    .pilot-card-icon {
      font-size: 1.4rem;
      line-height: 1;
    }

    .pilot-card-header h3 {
      margin: 0;
      font-size: 1rem;
      font-weight: 500;
      color: #ffffff;
    }

    .section-program#pilot .pilot-card > p {
      display: none;
    }

    .pilot-list {
      margin: 0;
      padding: 0;
      list-style: none;
      display: grid;
      gap: 0;
    }

    .pilot-list li {
      display: flex;
      gap: 14px;
      align-items: flex-start;
      padding: 18px 0;
      color: rgba(255, 255, 255, 0.78);
      font-size: 0.98rem;
      border-top: 1px solid rgba(255, 255, 255, 0.06);
    }

    .pilot-list li:first-child {
      border-top: 0;
      padding-top: 14px;
    }

    .pilot-list li::before {
      content: "✓";
      color: var(--blue-bright);
      font-weight: 800;
      margin-top: 1px;
    }

    .cta-band {
      padding: 120px 0 110px;
      background: linear-gradient(180deg, #2b448a 0%, #233972 100%);
      color: #ffffff;
    }

    .cta-card {
      text-align: center;
      max-width: 760px;
      margin: 0 auto;
      background: transparent;
      color: #ffffff;
      padding: 0;
      box-shadow: none;
      border-radius: 0;
    }

    .cta-card h2 {
      margin: 0;
      font-family: var(--font-sans), sans-serif;
      font-size: clamp(2.1rem, 4vw, 3.25rem);
      font-weight: 800;
      line-height: 1.1;
      letter-spacing: -0.03em;
    }

    .cta-card p {
      max-width: 640px;
      margin: 18px auto 0;
      color: rgba(255, 255, 255, 0.76);
      font-size: 1.05rem;
    }

    .cta-card .btn {
      margin-top: 24px;
      min-width: 248px;
    }

    .cta-contact {
      margin-top: 18px;
      color: rgba(255, 255, 255, 0.74);
      font-size: 0.98rem;
    }

    .cta-contact a {
      color: #63a6ff;
      text-decoration: none;
    }

    .cta-contact a:hover,
    .cta-contact a:focus-visible {
      color: #8fbeff;
    }

    .contact-note {
      margin-top: 16px;
      font-size: 0.98rem;
      color: rgba(255, 255, 255, 0.74);
    }

    .contact-note a {
      color: #63a6ff;
      text-decoration: none;
    }

    .contact-note a:hover,
    .contact-note a:focus-visible {
      color: #8fbeff;
    }

    .section-light .contact-note {
      color: var(--surface-muted);
    }

    .section-light .contact-note a {
      color: var(--blue);
    }

    .site-footer {
      padding: 34px 0 44px;
      background: #0f192c;
      color: var(--text-soft);
      border-top: 1px solid var(--line);
    }

    .footer-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      flex-wrap: wrap;
    }

    .brand {
      display: flex;
      align-items: baseline;
      gap: 12px;
    }

    .brand-lockup {
      display: inline-flex;
      align-items: baseline;
      gap: 12px;
    }

    .brand-name {
      color: #ffffff;
      font-size: 1.2rem;
      font-weight: 800;
      letter-spacing: 0.04em;
    }

    .brand-tag {
      color: #8795ae;
      font-size: 0.88rem;
      font-weight: 700;
      letter-spacing: 0.24em;
      text-transform: uppercase;
    }

    .footer-links {
      display: flex;
      gap: 18px;
      flex-wrap: wrap;
    }

    .footer-links a {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      text-decoration: none;
      color: #8997ae;
    }

    .footer-links a:hover,
    .footer-links a:focus-visible {
      color: #ffffff;
    }

    .footer-links svg {
      width: 18px;
      height: 18px;
      fill: currentColor;
      flex: 0 0 auto;
    }

    .sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      border: 0;
    }

    @media (max-width: 980px) {
      .program-grid,
      .steps-grid,
      .pilot-grid {
        grid-template-columns: 1fr;
      }

      .hero {
        min-height: auto;
      }
    }

    @media (max-width: 640px) {
      .container {
        width: min(var(--max), calc(100% - 24px));
      }

      .product-header-inner {
        padding: 12px 16px;
      }

      .product-name {
        display: none;
      }

      .product-header-divider {
        display: none;
      }

      .explore-menu summary {
        padding: 6px 12px;
        font-size: 0.6875rem;
        letter-spacing: 0.14em;
      }

      .explore-menu-panel {
        position: fixed;
        top: 58px;
        right: 8px;
        left: 8px;
        width: auto;
        max-height: calc(100vh - 72px);
      }

      .section {
        padding: 82px 0;
      }

      .hero {
        padding: 92px 0 72px;
      }

      .hero-actions .btn {
        width: 100%;
      }

      .intro-card,
      .list-card,
      .pilot-card,
      .video-shell,
      .price-card,
      .cta-card {
        padding: 24px;
      }

    }

/* Index / cards / clusters */
.offers-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(270px,1fr)); gap:20px; margin-top:36px; }
    .offer-door { display:flex; flex-direction:column; background:rgba(255,255,255,0.03); border:1px solid rgba(255,255,255,0.09);
      border-top:3px solid var(--blue); border-radius:14px; padding:26px 26px 24px; text-decoration:none; color:inherit;
      transition:transform .15s ease, border-color .15s ease; }
    .offer-door:hover { transform:translateY(-3px); border-color:var(--blue-bright); }
    .offer-door .door-kicker { font-family:var(--font-mono),monospace; font-size:.72rem; letter-spacing:.14em; text-transform:uppercase; color:var(--blue-bright); }
    .offer-door h3 { margin:.55rem 0 .5rem; font-size:1.35rem; font-weight:700; letter-spacing:-0.02em; color:#fff; }
    .offer-door p { margin:0 0 1rem; color:rgba(255,255,255,.72); font-size:.95rem; flex:1; }
    .offer-door .door-go { color:var(--blue-bright); font-size:.9rem; font-weight:600; }
    .page-hero { padding:96px 0 60px; }
    .page-hero .eyebrow { margin-bottom:14px; }
    .page-hero h1 { font-size:clamp(2.35rem,4vw,3.4rem); font-weight:800; letter-spacing:-0.04em; line-height:1.06; margin:0 0 18px; color:#fff; }
    .page-hero h1 em { font-style:italic; color:var(--blue-bright); }
    .page-hero p.lede { max-width:640px; color:rgba(255,255,255,.75); font-size:1.08rem; }
    .plain-list { list-style:none; padding:0; margin:24px 0 0; display:grid; gap:14px; max-width:680px; }
    .plain-list li { position:relative; padding-left:28px; color:rgba(255,255,255,.78); }
    .plain-list li::before { content:"✓"; position:absolute; left:0; color:var(--blue-bright); font-weight:800; }
    .plain-list li strong { color:#fff; }
    .boundary-note { max-width:680px; margin-top:28px; padding:18px 22px; border:1px solid rgba(255,255,255,.12); border-left:3px solid var(--blue);
      border-radius:10px; color:rgba(255,255,255,.72); font-size:.92rem; }
    .cluster-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(240px,1fr)); gap:16px; margin-top:30px; }
    .cluster { background:rgba(255,255,255,.03); border:1px solid rgba(255,255,255,.09); border-radius:12px; padding:20px 22px; }
    .cluster h3 { margin:0 0 6px; font-size:1.05rem; color:#fff; }
    .cluster p { margin:0; font-size:.88rem; color:rgba(255,255,255,.65); }
    .insights-hero {
      padding: 58px 0 38px;
      background:
        radial-gradient(circle at top left, rgba(63, 130, 235, 0.09), transparent 34%),
        #f7f9fc;
    }
    .insights-hero .eyebrow {
      display: inline-flex;
      margin-bottom: 14px;
      padding: 0;
      align-items: center;
      gap: 12px;
      border: 0;
      border-radius: 0;
      background: transparent;
      color: #2868c7;
      font-family: var(--font-mono), monospace;
      font-size: .8rem;
      font-weight: 600;
      letter-spacing: .12em;
      line-height: 1.5;
      text-transform: uppercase;
    }
    .insights-hero .eyebrow::before {
      content: "";
      width: 34px;
      height: 2px;
      flex: 0 0 34px;
      border-radius: 999px;
      background: linear-gradient(90deg, var(--green), #2868c7);
    }
    .insights-hero h1 {
      max-width: 920px;
      margin: 0 0 12px;
      color: var(--surface-text);
    }
    .insights-hero h1 em {
      display: inline-block;
      color: #2868c7;
    }
    .insights-hero p.lede {
      width: max-content;
      max-width: none;
      margin: 0;
      color: #42526a;
      font-size: 1rem;
      line-height: 1.55;
      white-space: nowrap;
    }
    .insights-library {
      padding: 14px 0 76px;
      background: #f7f9fc;
    }
    .insights-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 14px;
    }
    .article-card {
      display: flex;
      flex-direction: column;
      min-height: 260px;
      padding: 22px;
      border: 1px solid #dce3ee;
      border-radius: 12px;
      background: #ffffff;
      color: var(--surface-text);
      box-shadow: 0 8px 24px rgba(20, 32, 53, 0.045);
      text-decoration: none;
      transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease;
    }
    .article-card:hover,
    .article-card:focus-visible {
      border-color: rgba(40, 104, 199, .55);
      box-shadow: 0 14px 34px rgba(20, 32, 53, 0.085);
      transform: translateY(-2px);
    }
    .article-card:focus-visible {
      outline: 2px solid var(--blue-bright);
      outline-offset: 3px;
    }
    .article-card .door-kicker {
      color: #2868c7;
      font-family: var(--font-mono), monospace;
      font-size: .65rem;
      letter-spacing: .1em;
      line-height: 1.45;
      text-transform: uppercase;
    }
    .article-card h2 {
      margin: 14px 0 10px;
      color: var(--surface-text);
      font-size: 1.28rem;
      font-weight: 700;
      letter-spacing: -.02em;
      line-height: 1.18;
    }
    .article-card-description {
      display: block;
      margin-bottom: 18px;
      color: #4f5f76;
      font-size: .92rem;
      line-height: 1.58;
    }
    .article-card-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin-top: auto;
    }
    .article-card .meta {
      color: #6c788a;
      font-size: .72rem;
    }
    .article-card-action {
      color: #2868c7;
      font-size: .76rem;
      font-weight: 600;
      white-space: nowrap;
    }
    @media (max-width: 980px) {
      .insights-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }
    @media (max-width: 640px) {
      .insights-hero {
        padding: 44px 0 28px;
      }
      .insights-hero p.lede {
        width: auto;
        white-space: normal;
      }
      .insights-library {
        padding: 10px 0 58px;
      }
      .insights-grid {
        grid-template-columns: 1fr;
      }
      .article-card {
        min-height: 0;
        padding: 20px;
      }
    }
    @media (prefers-reduced-motion: reduce) {
      .article-card {
        transition: none;
      }
    }

/* Article post layout */
.article-page {
      background: #f7f9fc;
      color: var(--surface-text);
      border-bottom-color: #dce3ee;
    }
    .article-page main {
      background:
        radial-gradient(circle at top left, rgba(63, 130, 235, 0.08), transparent 24rem),
        #f7f9fc;
    }
    .post-head { padding: 78px 0 38px; max-width: 800px; }
    .post-kicker { font-family: var(--font-mono), monospace; font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: #2868c7; }
    .post-head h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; letter-spacing: -0.03em; line-height: 1.1; margin: .7rem 0 .8rem; color: var(--surface-text); }
    .post-sub { color: #4b5c73; font-size: 1.12rem; line-height: 1.65; }
    .post-meta { margin-top: 1.1rem; font-size: .85rem; color: #66758a; }
    .post-meta a { color: #2868c7; text-decoration: none; }
    .post-video { max-width: 760px; margin: 0 0 18px; padding: 20px; border-color: #dce3ee; background: #ffffff; box-shadow: 0 10px 30px rgba(20, 32, 53, 0.07); }
    .post-video-link { max-width: 760px; margin: -8px 0 22px; font-size: .85rem; color: #68778b; }
    .post-video-link a { color: #1f5fbf; text-underline-offset: 2px; }
    .post-body { max-width: 720px; padding-bottom: 30px; }
    .post-body p { color: #2f3e52; line-height: 1.78; margin: 0 0 1.25rem; font-size: 1.075rem; }
    .post-body h2 { color: var(--surface-text); font-size: 1.5rem; font-weight: 700; letter-spacing: -0.02em; line-height: 1.3; margin: 2.5rem 0 .85rem; }
    .post-body strong { color: var(--surface-text); font-weight: 650; }
    .post-body a { color: #1f5fbf; text-underline-offset: 2px; }
    .post-body ul { margin: 0 0 1.25rem 1.3rem; color: #2f3e52; font-size: 1.05rem; line-height: 1.75; }
    .post-body li { margin-bottom: .55rem; }
    .post-note { border-left: 3px solid var(--blue); background: #eaf2ff; border-radius: 8px; padding: 14px 20px; color: #33465f; font-size: .98rem; margin: 0 0 1.25rem; }
    .post-cta { max-width: 720px; margin: 34px 0 70px; border: 1px solid #d8e0eb; border-top: 3px solid var(--blue); border-radius: 14px; padding: 26px 28px; background: #ffffff; box-shadow: 0 10px 30px rgba(20, 32, 53, 0.055); }
    .post-cta p { color: #405168; margin: 0 0 1rem; }
    .post-cta .small { font-size: .85rem; color: #68778b; margin-top: .8rem; }
    .post-cta .small a { color: #1f5fbf; }
    .refs { font-size: .85rem; color: #647287; }
    .refs li { margin-bottom: .4rem; }
    .post-faq { max-width: 720px; margin: 2.4rem 0 0; }
    .post-faq > h2 { color: var(--surface-text); font-size: 1.5rem; font-weight: 700; letter-spacing: -0.02em; margin: 0 0 1rem; }
    .post-faq .faq-item { border-top: 1px solid #d8e0eb; padding: 1.15rem 0; }
    .post-faq .faq-item h3 { color: var(--surface-text); font-size: 1.08rem; font-weight: 650; margin: 0 0 .5rem; }
    .post-faq .faq-item p { color: #33445a; line-height: 1.72; margin: 0; font-size: 1.02rem; }
