*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --canvas:        #FFFFFF;
      --surface:       #FFFFFF;
      --sunken:        #F1F5F9;
      --ink1:          #0B1220;
      --ink2:          #334155;
      --ink3:          #64748B;
      --accent:        #2E69B8;
      --accent-hover:  #245699;
      --accent-tint:   #EAF1FB;
      --accent-ondark: #6BA6E8;
      --border-subtle: #EEF2F7;
      --border-default:#E2E8F0;
      --display:       'Inter', system-ui, -apple-system, sans-serif;
      --ui:            'Inter', system-ui, -apple-system, sans-serif;
      --shadow-rest:   0 1px 2px rgba(31,31,31,0.04), 0 1px 1px rgba(31,31,31,0.06);
      --shadow-hover:  0 4px 12px rgba(31,31,31,0.08), 0 2px 4px rgba(31,31,31,0.06);
      --shadow-card:   0 1px 3px rgba(31,31,31,0.06), 0 2px 8px rgba(31,31,31,0.04);
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: var(--ui);
      background: var(--canvas);
      color: var(--ink1);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }

    /* ── Nav ── */
    nav {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(255, 255, 255, 0.9);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border-subtle);
    }

    .nav-inner {
      max-width: 1080px;
      margin: 0 auto;
      padding: 0 24px;
      height: 60px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
    }

    .logo svg { width: 30px; height: 30px; flex-shrink: 0; }

    .logo-text {
      font-family: var(--ui);
      font-weight: 800;
      font-size: 18px;
      color: var(--ink1);
      letter-spacing: -0.5px;
    }
    .logo-text .accent { color: var(--accent); }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 28px;
      list-style: none;
    }

    .nav-links a {
      font-size: 14px;
      font-weight: 500;
      color: var(--ink2);
      text-decoration: none;
      letter-spacing: -0.1px;
      transition: color 0.15s;
    }

    .nav-links a:hover { color: var(--ink1); }

    /* Hamburger toggle — hidden on desktop, shown on mobile */
    .nav-toggle {
      display: none;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      width: 40px;
      height: 40px;
      padding: 9px;
      margin-left: 4px;
      background: none;
      border: none;
      cursor: pointer;
    }
    .nav-toggle span {
      display: block;
      width: 100%;
      height: 2px;
      background: var(--ink1);
      border-radius: 2px;
      transition: transform 0.2s, opacity 0.2s;
    }
    nav.open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    nav.open .nav-toggle span:nth-child(2) { opacity: 0; }
    nav.open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 10px 22px;
      border-radius: 999px;
      font-family: var(--ui);
      font-size: 14px;
      font-weight: 500;
      letter-spacing: -0.1px;
      text-decoration: none;
      cursor: pointer;
      transition: background 0.15s, color 0.15s, box-shadow 0.15s;
      border: none;
    }

    .btn-primary {
      background: var(--ink1);
      color: #fff;
      box-shadow: var(--shadow-rest);
    }

    .btn-primary:hover {
      background: #1b2740;
      box-shadow: var(--shadow-hover);
      transform: translateY(-1px);
    }

    .btn-outline {
      background: var(--surface);
      color: var(--ink1);
      border: 1px solid var(--border-default);
      box-shadow: var(--shadow-rest);
    }

    .btn-outline:hover {
      background: var(--sunken);
      box-shadow: var(--shadow-hover);
    }

    /* ── Hero ── */
    .hero-wrap { position: relative; overflow: hidden; background: linear-gradient(135deg, #ffffff 0%, #f0f4f8 100%); }
    .hero {
      max-width: 1080px;
      margin: 0 auto;
      padding: 96px 24px 80px;
      text-align: center;
      position: relative;
      z-index: 1;
    }

    /* ── Altitude-contour backdrop (the thesis, drawn) ── */
    .contours {
      position: absolute;
      inset: 0;
      pointer-events: none;
      z-index: 0;
    }
    .contours svg { width: 100%; height: 100%; display: block; }
    .contour-drift-1 { animation: drift 48s ease-in-out infinite alternate; }
    .contour-drift-2 { animation: drift 64s ease-in-out infinite alternate-reverse; }
    .contour-drift-3 { animation: drift 80s ease-in-out infinite alternate; }
    @keyframes drift {
      from { transform: translateX(-18px); }
      to   { transform: translateX(18px); }
    }
    .tele-dot { animation: tele-pulse 4s ease-in-out infinite; transform-origin: center; transform-box: fill-box; }
    .tele-dot.d2 { animation-delay: 1.3s; }
    .tele-dot.d3 { animation-delay: 2.1s; }
    .tele-dot.d4 { animation-delay: 0.7s; }
    .tele-dot.d5 { animation-delay: 2.8s; }
    .tele-dot.d6 { animation-delay: 3.4s; }
    @keyframes tele-pulse {
      0%, 100% { opacity: 0.25; transform: scale(1); }
      50%      { opacity: 0.9;  transform: scale(1.45); }
    }
    @media (prefers-reduced-motion: reduce) {
      .contour-drift-1, .contour-drift-2, .contour-drift-3, .tele-dot { animation: none; }
    }

    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      background: var(--accent-tint);
      border: 1px solid var(--border-default);
      border-radius: 999px;
      padding: 5px 14px;
      font-size: 12.5px;
      font-weight: 500;
      color: var(--accent);
      letter-spacing: 0.2px;
      margin-bottom: 28px;
    }

    .hero-eyebrow-dot {
      width: 6px;
      height: 6px;
      border-radius: 3px;
      background: var(--accent);
    }

    h1 {
      font-family: var(--display);
      font-weight: 700;
      font-size: clamp(32px, 4.5vw, 52px);
      line-height: 1.14;
      letter-spacing: -1.5px;
      color: var(--ink1);
      max-width: 760px;
      margin: 0 auto 24px;
    }

    h1 em {
      font-style: normal;
      color: var(--accent);
    }

    .hero-sub {
      font-size: 17px;
      color: var(--ink2);
      max-width: 540px;
      margin: 0 auto 40px;
      line-height: 1.65;
      font-weight: 400;
    }

    .hero-actions {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      flex-wrap: wrap;
    }

    /* ── Section shared ── */
    section {
      max-width: 1080px;
      margin: 0 auto;
      padding: 80px 24px;
    }

    .section-divider {
      max-width: 1080px;
      margin: 0 auto;
      padding: 0 24px;
      border: none;
      border-top: 1px solid var(--border-subtle);
    }

    .section-label {
      font-size: 11.5px;
      font-weight: 600;
      letter-spacing: 0.8px;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 14px;
    }

    h2 {
      font-family: var(--display);
      font-weight: 700;
      font-size: clamp(24px, 3vw, 34px);
      letter-spacing: -1px;
      line-height: 1.2;
      color: var(--ink1);
      margin-bottom: 16px;
    }

    h2 em {
      font-style: normal;
      color: var(--accent);
    }

    .section-intro {
      font-size: 16px;
      color: var(--ink2);
      max-width: 520px;
      line-height: 1.65;
    }

    /* ── Pillars ── */
    .pillars-header {
      max-width: 600px;
      margin-bottom: 52px;
    }

    .pillars-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 20px;
    }

    .pillar-card {
      background: var(--surface);
      border: 1px solid var(--border-subtle);
      border-radius: 12px;
      padding: 28px;
      box-shadow: var(--shadow-card);
      transition: box-shadow 0.2s;
    }

    .pillar-card:hover { box-shadow: var(--shadow-hover); }

    .pillar-icon {
      width: 40px;
      height: 40px;
      border-radius: 10px;
      background: var(--sunken);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 18px;
      font-size: 18px;
    }

    .pillar-card h3 {
      font-family: var(--display);
      font-weight: 600;
      font-size: 16px;
      letter-spacing: -0.3px;
      color: var(--ink1);
      margin-bottom: 10px;
    }

    .pillar-card p {
      font-size: 14.5px;
      color: var(--ink2);
      line-height: 1.6;
    }

    /* ── OP1 Feature ── */
    .feature-section {
      background: var(--surface);
      border-top: 1px solid var(--border-subtle);
      border-bottom: 1px solid var(--border-subtle);
    }

    /* AI render as a faded full-band background behind the copy (~90% wash) */
    .feature-section.fs-bg {
      background-repeat: no-repeat;
      background-position: center;
      background-size: cover;
    }
    .feature-section.fs-op1 {
      background-image: linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.9)), url('/assets/op1-ai.jpg');
    }
    .feature-section.fs-summawatch {
      background-image: linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.9)), url('/assets/summawatch-ai.jpg');
    }
    .feature-section.fs-summascout {
      background-image: linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.9)), url('/assets/summascout-ai.jpg');
    }

    .feature-inner {
      max-width: 1080px;
      margin: 0 auto;
      padding: 80px 24px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
    }

    .feature-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: var(--sunken);
      border: 1px solid var(--border-default);
      border-radius: 999px;
      padding: 4px 12px;
      font-size: 12px;
      font-weight: 600;
      color: var(--ink2);
      letter-spacing: 0.3px;
      text-transform: uppercase;
      margin-bottom: 20px;
    }

    .feature-inner h2 {
      margin-bottom: 20px;
    }

    .feature-inner p {
      font-size: 15.5px;
      color: var(--ink2);
      line-height: 1.68;
      margin-bottom: 16px;
    }

    .feature-actions {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-top: 32px;
      flex-wrap: wrap;
    }

    .feature-visual {
      background: linear-gradient(135deg, #1E2B3C 0%, #0f1a2b 100%);
      border-radius: 16px;
      padding: 32px;
      box-shadow: 0 8px 32px rgba(31,31,31,0.14), 0 2px 8px rgba(31,31,31,0.08);
      min-height: 320px;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .visual-bar {
      background: rgba(255,255,255,0.07);
      border-radius: 8px;
      padding: 14px 16px;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .visual-dot {
      width: 8px;
      height: 8px;
      border-radius: 4px;
      flex-shrink: 0;
    }

    .visual-dot.green  { background: #4ade80; box-shadow: 0 0 6px rgba(74,222,128,0.6); }
    .visual-dot.yellow { background: #facc15; box-shadow: 0 0 6px rgba(250,204,21,0.6); }
    .visual-dot.red    { background: #f87171; box-shadow: 0 0 6px rgba(248,113,113,0.6); }

    .visual-label {
      font-family: var(--ui);
      font-size: 13px;
      color: rgba(255,255,255,0.75);
      font-weight: 500;
      flex: 1;
    }

    .visual-tag {
      font-size: 11px;
      font-weight: 500;
      padding: 3px 8px;
      border-radius: 999px;
      letter-spacing: 0.2px;
    }

    .visual-tag.ok      { background: rgba(74,222,128,0.15); color: #4ade80; }
    .visual-tag.warn    { background: rgba(250,204,21,0.15); color: #facc15; }
    .visual-tag.crit    { background: rgba(248,113,113,0.15); color: #f87171; }

    .visual-header {
      font-family: var(--ui);
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.6px;
      text-transform: uppercase;
      color: rgba(255,255,255,0.3);
      padding: 0 4px;
      margin-bottom: -4px;
    }

    .visual-ai-block {
      background: rgba(46,105,184,0.12);
      border: 1px solid rgba(46,105,184,0.25);
      border-radius: 8px;
      padding: 14px 16px;
      margin-top: 4px;
    }

    .visual-ai-label {
      font-size: 11px;
      font-weight: 600;
      color: #6BA6E8;
      letter-spacing: 0.3px;
      text-transform: uppercase;
      margin-bottom: 6px;
    }

    .visual-ai-text {
      font-size: 12.5px;
      color: rgba(255,255,255,0.65);
      line-height: 1.5;
    }

    /* ── About ── */
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: start;
    }

    .about-grid p {
      font-size: 15.5px;
      color: var(--ink2);
      line-height: 1.7;
      margin-bottom: 18px;
    }

    .about-grid p:last-child { margin-bottom: 0; }

    .about-stat-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    .about-stat {
      background: var(--surface);
      border: 1px solid var(--border-subtle);
      border-radius: 12px;
      padding: 22px 20px;
      box-shadow: var(--shadow-card);
    }

    .about-stat-num {
      font-family: var(--display);
      font-size: 30px;
      font-weight: 700;
      letter-spacing: -1px;
      color: var(--accent);
      line-height: 1;
      margin-bottom: 6px;
    }

    .about-stat-label {
      font-size: 13px;
      color: var(--ink2);
      line-height: 1.4;
    }

    /* ── Contact ── */
    .contact-section {
      background: var(--ink1);
    }

    .contact-inner {
      max-width: 1080px;
      margin: 0 auto;
      padding: 80px 24px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
    }

    .contact-inner h2 {
      color: #fff;
      margin-bottom: 16px;
    }

    .contact-inner h2 em {
      color: #6BA6E8;
    }

    .contact-inner p {
      font-size: 15.5px;
      color: rgba(255,255,255,0.55);
      line-height: 1.65;
    }

    .contact-card {
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 16px;
      padding: 36px;
    }

    .contact-card h3 {
      font-family: var(--display);
      font-weight: 600;
      font-size: 17px;
      letter-spacing: -0.3px;
      color: #fff;
      margin-bottom: 20px;
    }

    .contact-row {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 14px 0;
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .contact-row:last-child { border-bottom: none; }

    .contact-icon {
      width: 36px;
      height: 36px;
      border-radius: 8px;
      background: rgba(255,255,255,0.08);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 15px;
      flex-shrink: 0;
    }

    .contact-info-label {
      font-size: 11.5px;
      font-weight: 600;
      letter-spacing: 0.4px;
      text-transform: uppercase;
      color: rgba(255,255,255,0.35);
      margin-bottom: 2px;
    }

    .contact-info-value {
      font-size: 14.5px;
      color: rgba(255,255,255,0.85);
      font-weight: 500;
    }

    .contact-info-value a {
      color: #6BA6E8;
      text-decoration: none;
    }

    .contact-info-value a:hover { text-decoration: underline; }

    /* ── Footer ── */
    footer {
      background: var(--ink1);
      border-top: 1px solid rgba(255,255,255,0.07);
    }

    .footer-inner {
      max-width: 1080px;
      margin: 0 auto;
      padding: 28px 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 12px;
    }

    .footer-copy {
      font-size: 13px;
      color: rgba(255,255,255,0.3);
    }

    .footer-links {
      display: flex;
      gap: 20px;
    }

    .footer-links a {
      font-size: 13px;
      color: rgba(255,255,255,0.35);
      text-decoration: none;
      transition: color 0.15s;
    }

    .footer-links a:hover { color: rgba(255,255,255,0.65); }

    /* ── Product screenshot frames ── */
    .product-shot {
      display: block;
      border-radius: 14px;
      overflow: hidden;
      border: 1px solid var(--border-default);
      box-shadow: 0 8px 32px rgba(31,31,31,0.14), 0 2px 8px rgba(31,31,31,0.08);
      transition: box-shadow 0.2s, transform 0.2s;
      line-height: 0;
      background: var(--surface);
    }
    .product-shot:hover {
      box-shadow: 0 12px 40px rgba(31,31,31,0.18), 0 4px 12px rgba(31,31,31,0.10);
      transform: translateY(-2px);
    }
    .product-shot img { width: 100%; height: auto; display: block; }
    .shot-caption {
      display: block;
      margin-top: 10px;
      font-size: 12px;
      color: var(--ink3);
      line-height: 1.4;
      text-align: center;
    }

    /* ── Product status chip ── */
    .status-chip {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 12px;
      font-weight: 600;
      color: #2E7D4F;
      background: #EDF7F0;
      border: 1px solid #CBE7D5;
      border-radius: 999px;
      padding: 3px 11px;
      margin-left: 10px;
      vertical-align: middle;
      letter-spacing: 0.2px;
    }
    .status-chip::before {
      content: '';
      width: 6px;
      height: 6px;
      border-radius: 3px;
      background: #2E7D4F;
    }

    /* ── Products: alternate rows, tinted band ── */
    .feature-section + .feature-section { border-top: none; }
    .feature-inner.flip > div:first-child { order: 2; }
    .feature-inner.flip > div:last-child { order: 1; }
    .product-domain {
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.8px;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 10px;
    }
    .more-products {
      max-width: 1080px;
      margin: 0 auto;
      padding: 28px 24px 64px;
      text-align: center;
      font-size: 14px;
      color: var(--ink3);
    }
    .more-products strong { color: var(--ink2); font-weight: 600; }

    /* ── Agentic section ── */
    .agentic-section {
      background: linear-gradient(135deg, #1E2B3C 0%, #0f1a2b 100%);
      position: relative;
      overflow: hidden;
    }
    .constellation {
      position: absolute;
      inset: 0;
      pointer-events: none;
    }
    .constellation svg { width: 100%; height: 100%; display: block; }
    .star-pulse { animation: tele-pulse 5s ease-in-out infinite; transform-origin: center; transform-box: fill-box; }
    .star-pulse.s2 { animation-delay: 1.7s; }
    .star-pulse.s3 { animation-delay: 3.2s; }
    @media (prefers-reduced-motion: reduce) { .star-pulse { animation: none; } }
    .agentic-inner {
      max-width: 1080px;
      margin: 0 auto;
      padding: 80px 24px;
      display: grid;
      grid-template-columns: 1.2fr 1fr;
      gap: 64px;
      align-items: center;
      position: relative;
      z-index: 1;
    }
    .agentic-inner h2 { color: #fff; }
    .agentic-inner h2 em { color: #6BA6E8; }
    .agentic-inner p {
      font-size: 15.5px;
      color: rgba(255,255,255,0.6);
      line-height: 1.7;
      margin-bottom: 16px;
    }
    .agentic-inner .section-label { color: #6BA6E8; }
    .agentic-flow {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 16px;
      padding: 28px;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .agentic-step {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      background: rgba(255,255,255,0.05);
      border-radius: 10px;
      padding: 14px 16px;
    }
    .agentic-step .n {
      flex-shrink: 0;
      width: 26px;
      height: 26px;
      border-radius: 8px;
      background: rgba(46,105,184,0.25);
      color: #6BA6E8;
      font-size: 13px;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .agentic-step .t { font-size: 13.5px; color: rgba(255,255,255,0.75); line-height: 1.5; }
    .agentic-step .t strong { color: #fff; font-weight: 600; }

    /* ── Responsive ── */
    @media (max-width: 720px) {
      .nav-inner { padding: 0 18px; }
      .nav-toggle { display: flex; }
      .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: #fff;
        border-bottom: 1px solid var(--border-subtle);
        box-shadow: 0 14px 28px rgba(11,18,32,0.10);
        padding: 6px 0;
      }
      nav.open .nav-links { display: flex; }
      .nav-links li { width: 100%; }
      .nav-links a { display: block; padding: 14px 22px; font-size: 15px; }
      .nav-links a:hover { background: var(--sunken); }
      .feature-inner { grid-template-columns: 1fr; gap: 36px; }
      .feature-inner .feature-visual { order: -1; min-height: 240px; }
      .feature-inner.flip > div:first-child { order: 0; }
      .feature-inner.flip > div:last-child { order: -1; }
      .agentic-inner { grid-template-columns: 1fr; gap: 36px; }
      .about-grid { grid-template-columns: 1fr; gap: 36px; }
      .contact-inner { grid-template-columns: 1fr; gap: 36px; }
      .about-stat-grid { grid-template-columns: 1fr 1fr; }
    }

    /* ════════════════════════════════════════════════════════
       Multi-page additions (v2 — separate pages)
       ════════════════════════════════════════════════════════ */

    /* Active nav item for the current page */
    .nav-links a.active { color: var(--ink1); font-weight: 600; }

    /* ── Hero: split layout + product screenshot fan (Option A) ── */
    .hero {
      display: grid;
      grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
      gap: 48px;
      align-items: center;
      text-align: left;
      padding: 88px 24px 88px;
    }
    .hero h1 { margin: 0 0 24px; max-width: none; font-size: clamp(32px, 4vw, 46px); }
    .hero .hero-sub { margin: 0 0 40px; max-width: none; }
    .hero .hero-actions { justify-content: flex-start; }

    .hero-stack { position: relative; height: 360px; perspective: 1200px; }
    .hero-shot {
      position: absolute;
      border-radius: 10px;
      overflow: hidden;
      border: 1px solid var(--border-default);
      box-shadow: 0 24px 48px rgba(31,31,31,0.16), 0 6px 16px rgba(31,31,31,0.10);
      background: var(--surface);
    }
    .hero-shot img { display: block; width: 100%; height: auto; }
    .hero-shot .shot-bar {
      height: 22px;
      background: var(--sunken);
      border-bottom: 1px solid var(--border-subtle);
      display: flex; align-items: center; gap: 5px; padding: 0 10px;
    }
    .hero-shot .shot-bar i { width: 7px; height: 7px; border-radius: 50%; background: var(--border-default); display: block; }
    .hero-shot .shot-tag {
      position: absolute; top: 28px; right: 8px;
      background: rgba(31,31,31,0.78); color: #fff;
      font-size: 10.5px; font-weight: 600; letter-spacing: 0.4px;
      padding: 3px 9px; border-radius: 999px;
      backdrop-filter: blur(4px);
    }
    .shot-1 { width: 84%; top: 2%; left: 0; transform: rotate(-2.5deg); z-index: 1; }
    .shot-2 { width: 78%; bottom: 0; right: 0; transform: rotate(2deg); z-index: 2; }

    /* ── Page header (top of section pages) ── */
    .page-header {
      max-width: 1080px;
      margin: 0 auto;
      padding: 72px 24px 12px;
    }
    .page-header h1 {
      font-family: var(--display);
      font-weight: 700;
      font-size: clamp(28px, 3.4vw, 40px);
      letter-spacing: -1.2px;
      line-height: 1.15;
      color: var(--ink1);
      margin: 8px 0 14px;
      max-width: 720px;
    }
    .page-header h1 em { font-style: normal; color: var(--accent); }
    .page-header p {
      font-size: 16.5px;
      color: var(--ink2);
      max-width: 600px;
      line-height: 1.65;
    }

    /* ── Home CTA strip ── */
    .home-cta {
      max-width: 1080px;
      margin: 0 auto;
      padding: 8px 24px 88px;
      text-align: center;
    }
    .home-cta h2 { margin-bottom: 12px; }
    .home-cta p { font-size: 16px; color: var(--ink2); max-width: 520px; margin: 0 auto 28px; line-height: 1.65; }

    @media (max-width: 900px) {
      .hero { grid-template-columns: 1fr; text-align: center; }
      .hero h1, .hero .hero-sub { margin-left: auto; margin-right: auto; }
      .hero .hero-actions { justify-content: center; }
      .hero-stack { margin: 24px auto 0; max-width: 460px; width: 100%; }
      /* No upward bleed on mobile — render stays within/below the screenshots */
      .hero-ambient { inset: 0 -8%; opacity: 0.6; }
      .hero-stack::before { inset: -6% -10%; }
    }

    /* ════════════════════════════════════════════════════════
       AI render composites — "the real UI spawning from the data"
       ════════════════════════════════════════════════════════ */

    /* Homepage hero: ambient render + blue glow behind the screenshot fan */
    .hero-stack::before {
      content: '';
      position: absolute;
      inset: -28% -22%;
      background: radial-gradient(58% 58% at 58% 44%, rgba(46,105,184,0.42), rgba(46,105,184,0) 70%);
      z-index: 0;
      pointer-events: none;
    }
    .hero-ambient {
      position: absolute;
      inset: -26% -28% -26% -14%;
      border-radius: 26px;
      overflow: hidden;
      z-index: 0;
      opacity: 0.9;
      -webkit-mask-image: radial-gradient(75% 72% at 54% 46%, #000 50%, transparent 82%);
      mask-image: radial-gradient(75% 72% at 54% 46%, #000 50%, transparent 82%);
      pointer-events: none;
    }
    .hero-ambient img { width: 100%; height: 100%; object-fit: cover; display: block; }

    /* Keep hero copy + buttons above the ambient render in every layout */
    .hero-copy { position: relative; z-index: 2; }

    /* Product sections: AI render as a glowing panel, real screenshot in front */
    .product-visual {
      position: relative;
      min-height: 360px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .product-visual .pv-glow {
      position: absolute;
      inset: 2% 0;
      background: radial-gradient(58% 58% at 48% 46%, rgba(46,105,184,0.30), rgba(46,105,184,0) 72%);
      z-index: 0;
      pointer-events: none;
    }
    .product-visual .pv-backdrop {
      position: absolute;
      inset: 0;
      border-radius: 20px;
      overflow: hidden;
      z-index: 0;
      box-shadow: 0 24px 56px -22px rgba(11,18,32,0.40);
    }
    .product-visual .pv-backdrop img {
      width: 100%; height: 100%; object-fit: cover; display: block;
      transform: scale(1.06);
    }
    .product-visual .pv-backdrop::after {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(11,18,32,0.20));
    }
    .product-visual .pv-shot {
      position: relative;
      z-index: 2;
      display: block;
      width: 74%;
      margin: 8% 8% 0 0;
      border-radius: 12px;
      overflow: hidden;
      line-height: 0;
      background: var(--surface);
      border: 3px solid rgba(255,255,255,0.85);
      box-shadow: 0 28px 64px -22px rgba(11,18,32,0.60), 0 0 0 1px rgba(46,105,184,0.18);
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .product-visual .pv-shot:hover {
      transform: translateY(-3px);
      box-shadow: 0 34px 72px -22px rgba(11,18,32,0.66), 0 0 0 1px rgba(46,105,184,0.30);
    }
    .product-visual .pv-shot img { width: 100%; height: auto; display: block; }

    /* Mirror the screenshot offset on flipped (image-left) rows */
    .feature-inner.flip .product-visual .pv-shot { margin: 8% 0 0 8%; }

    @media (max-width: 720px) {
      .product-visual { min-height: 280px; }
      .product-visual .pv-shot,
      .feature-inner.flip .product-visual .pv-shot { width: 82%; margin: 10% 6% 0; }
    }

/* ════════════════════════════════════════════════════════
   SummaGuard additions (this site only)
   ════════════════════════════════════════════════════════ */

/* Hero trust line under the actions */
.hero-trust {
  margin-top: 22px;
  font-size: 13px;
  color: var(--ink3);
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.hero-trust span { display: inline-flex; align-items: center; gap: 6px; }
.hero-trust svg { width: 14px; height: 14px; flex-shrink: 0; }

/* eva note under the hero (italic assurance line) */
.hero-eva-note {
  margin-top: 26px;
  font-size: 13.5px;
  color: var(--ink3);
  line-height: 1.6;
  max-width: 460px;
  border-left: 2px solid var(--accent-tint);
  padding-left: 14px;
}
.hero-eva-note strong { color: var(--accent); font-weight: 600; }

/* Citation chips (used inside dark visual panels) */
.cite-chip {
  display: inline-flex;
  align-items: center;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.2px;
  color: #6BA6E8;
  background: rgba(46,105,184,0.16);
  border: 1px solid rgba(107,166,232,0.35);
  border-radius: 999px;
  padding: 2px 9px;
  margin: 2px 4px 0 0;
  white-space: nowrap;
}

/* ── Pricing ── */
.price-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 24px;
  max-width: 860px;
  margin: 52px auto 0;
  align-items: stretch;
}
.price-card {
  background: var(--surface);
  border: 1px solid var(--border-default);
  border-radius: 16px;
  padding: 34px 32px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
}
.price-card.flagship {
  border: 2px solid var(--accent);
  box-shadow: 0 8px 32px rgba(46,105,184,0.14), var(--shadow-card);
  position: relative;
}
.price-flag {
  position: absolute;
  top: -13px;
  left: 28px;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 4px 12px;
}
.price-tier {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--ink2);
  margin-bottom: 6px;
}
.price-who { font-size: 13.5px; color: var(--ink3); margin-bottom: 18px; }
.price-num {
  font-family: var(--display);
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -1.5px;
  color: var(--ink1);
  line-height: 1;
}
.price-num small { font-size: 15px; font-weight: 500; color: var(--ink3); letter-spacing: 0; }
.price-alt { font-size: 13px; color: var(--ink3); margin: 6px 0 22px; }
.price-list { list-style: none; margin: 0 0 26px; flex: 1; }
.price-list li {
  font-size: 14px;
  color: var(--ink2);
  line-height: 1.5;
  padding: 7px 0 7px 26px;
  position: relative;
}
.price-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--accent-tint) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M4 8.5l2.5 2.5L12 5.5' fill='none' stroke='%232E69B8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/11px no-repeat;
}
.price-list li strong { color: var(--ink1); font-weight: 600; }
.price-terms {
  max-width: 860px;
  margin: 26px auto 0;
  text-align: center;
  font-size: 13.5px;
  color: var(--ink3);
  line-height: 1.7;
}
.price-terms strong { color: var(--ink2); font-weight: 600; }

/* ── Onboarding stats row (reuses .about-stat look, 4-up) ── */
.onboard-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}

/* ── Responsive (SummaGuard) ── */
@media (max-width: 860px) {
  .price-grid { grid-template-columns: 1fr; max-width: 480px; }
  .onboard-grid { grid-template-columns: 1fr 1fr; }
}

/* ── eva wordmark + private-AI trust row ──
   Lowercase "eva" is the product brand; the violet (app token --sg-eva)
   marks it as deliberate styling, matching the in-app AI layer. */
.eva-name { color: #6d5ae6; font-weight: 600; font-style: normal; }
.agentic-section .eva-name, footer .eva-name { color: #a794ff; }
.agentic-inner h2 .eva-name { color: #a794ff; }

.eva-trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}
.eva-trust-card {
  background: rgba(167,148,255,0.08);
  border: 1px solid rgba(167,148,255,0.22);
  border-radius: 10px;
  padding: 14px 16px;
}
.eva-trust-card .k {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: #a794ff;
  margin-bottom: 5px;
}
.eva-trust-card .v {
  font-size: 12.5px;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}
@media (max-width: 860px) {
  .eva-trust-row { grid-template-columns: 1fr; }
}

/* eva block inside the hero mockup: violet (eva layer), not the generic AI blue */
.visual-ai-block {
  background: rgba(140,120,240,0.13);
  border-color: rgba(167,148,255,0.32);
}
.visual-ai-label { color: #a794ff; }

/* ── "Describe it, Eva drafts it" workflow section ── */
.how-wrap { background: linear-gradient(180deg, #f7f9fc 0%, #ffffff 100%); border-top: 1px solid var(--border-subtle); border-bottom: 1px solid var(--border-subtle); }
.how-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 80px 24px;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 56px;
  align-items: center;
}
.how-steps { margin-top: 30px; display: flex; flex-direction: column; gap: 14px; }
.how-step { display: flex; align-items: flex-start; gap: 14px; }
.how-step .n {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 9px;
  background: var(--accent-tint);
  color: var(--accent);
  font-size: 13.5px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
}
.how-step .t { font-size: 14.5px; color: var(--ink2); line-height: 1.6; }
.how-step .t strong { color: var(--ink1); font-weight: 600; }
.how-benefits { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 28px; }
.how-benefit {
  font-size: 12.5px; font-weight: 600; color: var(--ink2);
  background: var(--surface);
  border: 1px solid var(--border-default);
  border-radius: 999px;
  padding: 6px 14px;
}
.how-benefit b { color: var(--accent); font-weight: 700; }

/* Intake mock — mirrors the app's violet "Eva-filled, verify me" pattern */
.intake-mock {
  background: var(--surface);
  border: 1px solid var(--border-default);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(31,31,31,0.10), 0 2px 8px rgba(31,31,31,0.06);
  padding: 24px;
}
.intake-mock .im-head {
  font-size: 11px; font-weight: 700; letter-spacing: 0.6px; text-transform: uppercase;
  color: var(--ink3); margin-bottom: 12px;
}
.intake-narrative {
  background: var(--sunken);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 13.5px; color: var(--ink2); line-height: 1.6;
  font-style: italic;
}
.intake-arrow {
  text-align: center;
  font-size: 12px; font-weight: 600;
  color: #6d5ae6;
  padding: 10px 0;
  letter-spacing: 0.3px;
}
.intake-fields { display: flex; flex-direction: column; gap: 8px; }
.intake-field {
  display: flex; align-items: center; gap: 10px;
  border: 1px solid var(--border-subtle);
  border-left: 3px solid #6d5ae6;
  border-radius: 8px;
  padding: 9px 12px;
  background: #fbfaff;
}
.intake-field.confirmed { border-left-color: #2E7D4F; background: var(--surface); }
.intake-field .fl { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.4px; color: var(--ink3); width: 92px; flex-shrink: 0; }
.intake-field .fv { font-size: 13.5px; color: var(--ink1); font-weight: 500; flex: 1; }
.intake-field .ftag {
  font-size: 10px; font-weight: 700; letter-spacing: 0.4px;
  color: #6d5ae6; background: #f0edfe; border: 1px solid #d9d2fb;
  border-radius: 999px; padding: 2px 8px; flex-shrink: 0;
}
.intake-field.confirmed .ftag { color: #2E7D4F; background: #EDF7F0; border-color: #CBE7D5; }
.intake-foot { margin-top: 12px; font-size: 12px; color: var(--ink3); line-height: 1.5; }

@media (max-width: 860px) {
  .how-inner { grid-template-columns: 1fr; gap: 36px; }
}
