:root {
    /* Brand gold system — bright #FFBE00 for fills, deep --accent-ink for legible text */
    --accent: #FFBE00;            /* brand gold — fills, button bg, decorative dots */
    --accent-2: #E8A600;          /* deeper gold (hover) */
    --accent-soft: #FFF4D6;       /* light gold tint */
    --accent-line: rgba(255,190,0,0.35);
    --accent-ink: #FFBE00;        /* logo yellow — accent text/icons/lines (matches --accent by request) */
    --label-ink: #765000;         /* deeper turmeric for small text labels on light surfaces */

    --page: #FCFCFD;
    --band: #F4F5F6;
    --surface: #FFFFFF;
    --surface-2: #F4F5F6;

    --ink: #1F2328;
    --text: #1F2328;
    --text-2: #565D6A;
    --text-3: #8B92A0;
    --line: #E6E9ED;
    --line-strong: #D4D9DF;

    --font-head: 'Inter', system-ui, sans-serif;
    --font-body: 'Inter', system-ui, sans-serif;
    --font-mono: 'Inter', system-ui, sans-serif;
    --maxw: 1240px;
    --pad: clamp(20px, 5vw, 64px);
  }
  * { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    margin: 0; background: var(--page); color: var(--text);
    font-family: var(--font-body); font-size: 17px; line-height: 1.6;
    -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; overflow-x: hidden;
    font-feature-settings: "cv05" 1, "ss01" 1;
  }
  ::selection { background: var(--accent); color: var(--ink); }
  h1,h2,h3,h4 { font-family: var(--font-head); font-weight: 700; letter-spacing: -0.022em; line-height: 1.07; margin: 0; }
  p { margin: 0; }
  a { color: inherit; text-decoration: none; }
  /* visible keyboard focus for accessibility (mouse clicks unaffected) */
  a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, [tabindex]:focus-visible { outline: 2px solid var(--accent-ink); outline-offset: 3px; border-radius: 4px; }
  .wrap { max-width: var(--maxw); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }
  .wrap-wide { max-width: 1440px; margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }

  /* wordmark — ink text with amber dot over the j */
  .wordmark { font-family: var(--font-head); font-weight: 700; letter-spacing: -0.03em; color: var(--ink); display: inline-flex; align-items: baseline; line-height: 1; }
  .wordmark .j { position: relative; }
  .wordmark .j::before { content:""; position:absolute; left:50%; transform:translateX(-50%); top:-0.30em; width:0.20em; height:0.20em; border-radius:50%; background:var(--accent); }

  /* logo image (real brand mark) — used in nav & footer in place of the text wordmark */
  .logo-img { height: 30px; width: auto; display: block; }
  .foot-brand .logo-img { height: 32px; margin-bottom: 2px; }

  /* eyebrow — Inter, uppercase, tracked, amber */
  .eyebrow { font-family: var(--font-mono); font-weight: 700; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--label-ink); }

  /* buttons */
  .btn { display:inline-flex; align-items:center; gap:0.5em; cursor:pointer; font-family: var(--font-body); font-weight:600; font-size:15px; letter-spacing:-0.005em; border-radius:8px; padding:12px 20px; border:1px solid transparent; transition: transform .14s ease, background .2s, border-color .2s, color .2s; white-space:nowrap; }
  .btn-primary { background: var(--accent); color: var(--ink); }
  .btn-primary:hover { background: var(--accent-2); }
  .btn-dark { background: var(--surface); color: var(--ink); border-color: var(--line-strong); }
  .btn-dark:hover { border-color: var(--accent-ink); color: var(--accent-ink); }
  .btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
  .btn-ghost:hover { border-color: var(--accent-ink); color: var(--accent-ink); }
  .btn-sm { padding:9px 16px; font-size:14px; }
  .link-arrow { color: var(--accent-ink); font-weight:600; font-size:15px; display:inline-flex; align-items:center; gap:7px; transition: gap .18s ease; }
  .link-arrow:hover { gap: 11px; }
  /* turmeric highlight — warm swash behind a word, an alternative to accent colour or quotes */
  .mark-tmk { white-space:nowrap; background: linear-gradient(180deg, transparent 54%, var(--accent-line) 54%); padding:0 .08em; border-radius:3px; }
  /* quiet text CTA with a dotted underline */
  .link-dotted { color: var(--accent-ink); font-weight:600; font-size:15px; text-decoration: underline; text-decoration-style: dotted; text-decoration-thickness: 1.5px; text-underline-offset: 5px; transition: text-underline-offset .18s ease; }
  .link-dotted:hover { text-underline-offset: 3px; }

  /* section rhythm */
  .sec { padding-top: clamp(46px, 6vw, 88px); padding-bottom: clamp(46px, 6vw, 88px); }
  .band { background: var(--band); }
  .surface { background: var(--surface); }
  .sec-head { max-width: 780px; }
  .sec-head.center { margin-left:auto; margin-right:auto; text-align:center; }
  .sec-head .eyebrow { display:block; margin-bottom: 16px; }
  .sec-head h2 { font-size: clamp(28px, 4.2vw, 50px); }
  .sec-head p { color: var(--text-2); font-size: clamp(16px, 1.8vw, 20px); margin-top: 18px; max-width: 640px; }
  .sec-head.center p { margin-left:auto; margin-right:auto; }

  /* ============ NAV ============ */
  .nav { position: sticky; top:0; z-index:60; backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); background: color-mix(in srgb, var(--page) 82%, transparent); border-bottom: 1px solid transparent; transition: border-color .3s, background .3s, transform .35s ease; will-change: transform; }
  .nav.scrolled { border-bottom: 1px solid var(--line); }
  .nav.nav-hidden { transform: translateY(-100%); }
  .nav.nav-open { transform: none; }
  .nav-inner { display:flex; align-items:center; gap:24px; height: 72px; }
  .nav-left { display:flex; align-items:center; flex:1 1 auto; min-width:0; gap:32px; }
  .nav-links { display:flex; align-items:center; min-width:0; gap:22px; }
  .nav-link { font-size:15px; color: var(--text-2); font-weight:500; transition: color .18s; white-space:nowrap; }
  .nav-link:hover { color: var(--ink); }
  .nav-right { display:flex; align-items:center; flex:none; gap:14px; }
  /* mobile menu toggle (hidden on desktop) */
  .nav-toggle { display:none; width:42px; height:42px; flex:none; flex-direction:column; align-items:center; justify-content:center; gap:5px; background: var(--surface); border:1px solid var(--line-strong); border-radius:9px; cursor:pointer; padding:0; }
  .nav-toggle span { display:block; width:18px; height:2px; background: var(--ink); border-radius:2px; transition: transform .25s ease, opacity .2s ease; }
  .nav.nav-open .nav-toggle span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
  .nav.nav-open .nav-toggle span:nth-child(2){ opacity:0; }
  .nav.nav-open .nav-toggle span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }
  .nav-menu-cta { display:none; }
  @media (max-width: 920px){
    .nav-toggle { display:flex; }
    .nav-links {
      position:absolute; left:0; right:0; top:72px;
      display:flex; flex-direction:column; align-items:stretch; gap:0;
      background: var(--page); border-bottom:1px solid var(--line);
      padding:4px var(--pad) 20px;
      box-shadow: 0 26px 40px -30px rgba(31,35,40,0.32);
      max-height:0; overflow:hidden; opacity:0; pointer-events:none;
      transition: max-height .32s ease, opacity .2s ease, padding .32s ease;
    }
    .nav.nav-open .nav-links { max-height: 420px; opacity:1; pointer-events:auto; }
    .nav-links .nav-link { width:100%; padding:15px 2px; font-size:17px; color: var(--ink); border-bottom:1px solid var(--line); }
    .nav-link.active::after, .nav-link[aria-current="page"]::after { display:none; }
    .nav-link.active, .nav-link[aria-current="page"] { color: var(--accent-ink); }
    .nav-menu-cta { display:inline-flex; justify-content:center; width:100%; margin-top:16px; }
  }
  @media (max-width: 600px){ .nav-right .nav-cta { display:none; } }

  /* ---- nav dropdowns (desktop: hover panel, mobile: inline expand) ---- */
  .nav-dd { position:relative; }
  .nav-dd-btn { display:inline-flex; align-items:center; gap:5px; font-family:var(--font-body); font-size:15px; color:var(--text-2); font-weight:500; background:none; border:none; cursor:pointer; padding:0; white-space:nowrap; transition:color .18s; }
  .nav-dd-btn:hover { color:var(--ink); }
  .nav-dd-btn .chevron { transition:transform .2s; }
  .nav-dd.open .nav-dd-btn .chevron { transform:rotate(180deg); }
  .nav-dd-btn.active { color:var(--ink); font-weight:600; position:relative; }
  .nav-dd-btn.active::after { content:""; position:absolute; left:0; right:0; bottom:-7px; height:2px; border-radius:2px; background:var(--accent-ink); }
  .nav-drop { position:absolute; top:100%; left:-16px; margin-top:14px; min-width:230px; background:var(--surface); border:1px solid var(--line); border-radius:14px; padding:6px; box-shadow:0 16px 40px -16px rgba(31,35,40,0.18); opacity:0; visibility:hidden; transform:translateY(-6px); transition:opacity .18s,transform .18s,visibility .18s; z-index:70; }
  .nav-dd:hover .nav-drop, .nav-dd.open .nav-drop { opacity:1; visibility:visible; transform:translateY(0); }
  .nav-drop a { display:block; padding:9px 14px; font-size:14.5px; color:var(--text-2); font-weight:500; border-radius:9px; transition:background .12s,color .12s; white-space:nowrap; }
  .nav-drop a:hover { background:var(--band); color:var(--ink); }
  .nav-drop a.active { color:var(--accent-ink); font-weight:600; }
  .nav-drop hr { border:none; border-top:1px solid var(--line); margin:5px 14px; }
  @media (max-width:920px){
    .nav-dd { width:100%; }
    .nav-dd-btn { width:100%; padding:15px 2px; font-size:17px; color:var(--ink); border-bottom:1px solid var(--line); justify-content:space-between; }
    .nav-dd-btn.active { color:var(--accent-ink); }
    .nav-dd-btn.active::after { display:none; }
    .nav-drop { position:static; margin:0; border:none; border-radius:0; box-shadow:none; padding:0 0 0 18px; max-height:0; overflow:hidden; opacity:1; visibility:visible; transform:none; transition:max-height .25s ease; }
    .nav-dd.open .nav-drop { max-height:500px; }
    .nav-drop a { padding:12px 2px; border-bottom:1px solid var(--line); border-radius:0; font-size:16px; color:var(--ink); }
    .nav-drop a.active { color:var(--accent-ink); }
    .nav-drop hr { margin:0; }
  }

  /* ============ HERO ============ */
  .hero { position: relative; padding-top: clamp(30px, 4.5vw, 58px); padding-bottom: clamp(40px, 6vw, 80px); overflow: hidden; }
  .hero-grid { display:grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 4vw, 56px); align-items: center; }
  .hero-eyebrow { display:flex; align-items:center; gap:11px; margin-bottom: 24px; }
  .hero-eyebrow .pip { width:7px; height:7px; border-radius:50%; background: var(--accent); flex:none; }
  .hero h1 { font-size: clamp(36px, 5.4vw, 66px); }
  .hero h1 .accent { color: var(--accent-ink); }
  .hero-sub { color: var(--text-2); font-size: clamp(16px, 2vw, 19px); line-height:1.6; margin-top: 24px; max-width: 520px; }
  .hero-cta { display:flex; gap: 12px; margin-top: 32px; flex-wrap: wrap; }
  .hero-right { position: relative; }
  .hero-dots { position:absolute; inset:-40px -200px -40px -60px; background-image: radial-gradient(rgba(31,35,40,0.06) 1.1px, transparent 1.1px); background-size: 22px 22px; -webkit-mask-image: radial-gradient(ellipse 70% 80% at 40% 50%, #000 40%, transparent 78%); mask-image: radial-gradient(ellipse 70% 80% at 40% 50%, #000 40%, transparent 78%); z-index:0; }
  .hero-frame-wrap { position: relative; z-index:1; min-width: 660px; }
  @media (max-width: 980px){
    .hero-grid { grid-template-columns: 1fr; }
    .hero-right { margin-top: 8px; }
    .hero-frame-wrap { min-width: 0; }
    .hero-dots { inset:-30px -40px; }
  }
  /* centered hero + product-card row (homepage fold) */
  .hero-center { max-width: 920px; margin: 0 auto; text-align: center; }
  .hero-center .hero-eyebrow { justify-content: center; }
  .hero-center .hero-sub { max-width: 660px; margin-left: auto; margin-right: auto; }
  .hero-center .hero-cta { justify-content: center; align-items: center; }
  /* ---- product waffle grid (quiet reference index, deprioritized vs. hero) ---- */
  .prod-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 18px; overflow: hidden; }
  .prod-cell { background: var(--band); padding: clamp(30px,3.4vw,42px); display: flex; flex-direction: column; align-items: flex-start; transition: background .2s ease; }
  .prod-cell:hover { background: var(--surface); }
  .prod-cell .pg-vis { width: 74px; height: 74px; border-radius: 16px; background: var(--surface); border: 1px solid var(--line); display: grid; place-items: center; margin-bottom: 22px; transition: border-color .2s ease; }
  .prod-cell:hover .pg-vis { border-color: var(--line-strong); }
  .prod-cell .pg-vis svg { width: 44px; height: 44px; display: block; }
  .prod-cell .pg-title { font-family: var(--font-head); font-weight: 700; font-size: 19px; line-height: 1.28; letter-spacing: -0.01em; color: var(--ink); margin-bottom: 8px; }
  .prod-cell .pg-desc { font-size: 14px; line-height: 1.6; color: var(--text-2); margin-bottom: 18px; }
  .prod-cell .link-arrow { font-size: 13.5px; }
  .prod-cell--cta { grid-column: 1 / -1; background: var(--accent-soft); justify-content: center; }
  .prod-cell--cta:hover { background: var(--accent-soft); }
  .prod-cell--cta .pg-title { margin-bottom: 10px; }
  @media (max-width: 860px){ .prod-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 480px){ .prod-grid { grid-template-columns: 1fr; } }

  /* ============ APP FRAME (product UI mock) — light ============ */
  .app { background: var(--surface); border:1px solid var(--line); border-radius: 14px; overflow: hidden; box-shadow: 0 24px 60px -30px rgba(31,35,40,0.22); font-family: var(--font-body); }
  .app-top { display:flex; align-items:center; justify-content:space-between; height: 42px; padding: 0 14px; border-bottom:1px solid var(--line); background:#FBFBFC; }
  .app-top .left { display:flex; align-items:center; gap:11px; }
  .app-top .dot-row { display:flex; gap:6px; }
  .app-top .dot-row i { width:9px; height:9px; border-radius:50%; background: var(--line-strong); display:block; }
  .app-top .inst { font-size:11.5px; color: var(--text-2); display:flex; align-items:center; gap:8px; }
  .app-top .inst .wm { font-family:var(--font-head); font-weight:700; font-size:12px; letter-spacing:-0.02em; color:var(--ink); }
  .app-top .inst .badge { font-family: var(--font-mono); font-size:9px; font-weight:600; letter-spacing:0.06em; color: var(--accent-ink); border:1px solid var(--accent-line); border-radius:4px; padding:2px 6px; text-transform:uppercase; }
  .app-top .right { display:flex; align-items:center; gap:9px; }
  .app-top .avatar { width:22px; height:22px; border-radius:50%; background: linear-gradient(135deg, #E3E6EA, #CFD4DB); border:1px solid var(--line); }
  .app-body { display:grid; grid-template-columns: 168px 1fr; min-height: 360px; }
  .app-side { background:#FAFBFC; border-right:1px solid var(--line); padding: 14px 10px; display:flex; flex-direction:column; gap:3px; }
  .app-side .grp { font-family: var(--font-mono); font-size:9px; font-weight:600; letter-spacing:0.1em; text-transform:uppercase; color: var(--text-3); padding: 10px 8px 5px; }
  .app-nav { display:flex; align-items:center; gap:9px; padding:7px 9px; border-radius:7px; font-size:12.5px; color: var(--text-2); cursor:default; }
  .app-nav .ic { width:14px; height:14px; flex:none; opacity:.85; display:flex; }
  .app-nav.active { background: var(--accent-soft); color: var(--ink); font-weight:500; }
  .app-main { padding: 18px; min-width:0; }
  .app-h { display:flex; align-items:center; justify-content:space-between; margin-bottom:16px; }
  .app-h .t { font-family: var(--font-head); font-weight:600; font-size:16px; color: var(--ink); letter-spacing:-0.01em; }
  .app-h .mini-btn { font-size:11px; font-weight:600; color:var(--accent-ink); background: var(--accent-soft); border:1px solid var(--accent-line); border-radius:6px; padding:5px 10px; }
  .app-tiles { display:grid; grid-template-columns: repeat(3,1fr); gap:10px; margin-bottom:14px; }
  .app-tile { background:#FBFBFC; border:1px solid var(--line); border-radius:9px; padding:11px 12px; }
  .app-tile .lab { font-size:10px; color: var(--text-3); text-transform:uppercase; letter-spacing:0.06em; font-family: var(--font-mono); font-weight:500; }
  .app-tile .val { font-family: var(--font-head); font-weight:700; font-size:21px; margin-top:6px; letter-spacing:-0.02em; color:var(--ink); font-variant-numeric: tabular-nums; }
  .app-tile .val b { color: var(--accent-ink); font-weight:700; }
  .app-chart { background:#FBFBFC; border:1px solid var(--line); border-radius:9px; padding:12px 12px 6px; margin-bottom:14px; }
  .app-chart .ch-h { display:flex; align-items:center; justify-content:space-between; margin-bottom:8px; }
  .app-chart .ch-h .ct { font-size:11.5px; color: var(--text-2); font-weight:500; }
  .app-chart .ch-h .cl { font-family: var(--font-mono); font-size:10px; font-weight:600; color: var(--accent-ink); }
  .app-table { background:#FBFBFC; border:1px solid var(--line); border-radius:9px; overflow:hidden; }
  .app-row { display:grid; grid-template-columns: 1.4fr 1fr auto; gap:10px; align-items:center; padding:9px 13px; border-top:1px solid var(--line); font-size:12px; }
  .app-row:first-child { border-top:none; background:#F4F5F6; color: var(--text-3); font-family: var(--font-mono); font-size:9px; font-weight:600; letter-spacing:0.07em; text-transform:uppercase; }
  .app-row .nm { color: var(--ink); font-weight:500; }
  .app-row .amt { color: var(--text-2); font-variant-numeric: tabular-nums; }
  .pill { font-size:10px; font-weight:600; padding:3px 9px; border-radius:999px; white-space:nowrap; }
  .pill.ok { background: var(--accent-soft); color: var(--accent-ink); }
  .pill.live { background: rgba(28,142,90,0.10); color:#1C8E5A; }
  .pill.wait { background: rgba(31,35,40,0.05); color: var(--text-2); }
  .app-rules { display:flex; flex-direction:column; gap:8px; }
  .app-rule { display:flex; align-items:center; gap:10px; background:#FBFBFC; border:1px solid var(--line); border-radius:8px; padding:10px 12px; font-size:12px; color: var(--ink); }
  .app-rule .chk { width:16px; height:16px; border-radius:5px; background: var(--accent-soft); color: var(--accent-ink); display:flex; align-items:center; justify-content:center; flex:none; }
  .app-rule .meta { margin-left:auto; font-family: var(--font-mono); font-size:10px; color: var(--text-3); }

  /* ============ LOGO BAND ============ */
  .logoband { background: var(--band); border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
  .logoband-inner { display:flex; align-items:center; gap: clamp(18px, 4vw, 48px); padding: 26px 0; flex-wrap: wrap; }
  .logoband .lab { font-family: var(--font-mono); font-size:11px; font-weight:500; letter-spacing:0.1em; text-transform:uppercase; color: var(--text-3); max-width: 130px; line-height:1.5; flex:none; }
  .logoband .logos { display:flex; align-items:center; gap: clamp(16px, 3.4vw, 44px); flex-wrap:wrap; flex:1; }
  .logo-ph { height: 30px; min-width: 92px; border:1px dashed var(--line-strong); border-radius:7px; display:flex; align-items:center; justify-content:center; color: var(--text-3); font-family: var(--font-mono); font-size:10px; letter-spacing:0.03em; }

  /* ============ RBI ANGLED BANNER ============ */
  .rbiband { background: var(--page); }
  .rbi-grid { display:grid; grid-template-columns: minmax(280px, 0.9fr) 1.1fr; gap: clamp(24px, 4vw, 56px); align-items:center; }
  .rbi-banner { position: relative; background: var(--accent); color:#fff; border-radius: 16px; padding: 34px 56px 34px 34px; clip-path: polygon(0 0, calc(100% - 34px) 0, 100% 50%, calc(100% - 34px) 100%, 0 100%); min-height: 168px; display:flex; flex-direction:column; justify-content:center; gap:8px; overflow:hidden; }
  .rbi-banner::after { content:""; position:absolute; right:-30px; top:-30px; width:160px; height:160px; border-radius:50%; background: rgba(255,255,255,0.08); }
  .rbi-banner .lab { font-family: var(--font-mono); font-size:12px; letter-spacing:0.12em; text-transform:uppercase; font-weight:600; opacity:.92; }
  .rbi-banner .yr { font-family: var(--font-head); font-weight:700; font-size: clamp(40px, 6vw, 64px); line-height:0.9; letter-spacing:-0.03em; }
  .rbi-body h3 { font-size: clamp(21px, 2.5vw, 29px); max-width: 540px; }
  .rbi-chips { display:flex; flex-wrap:wrap; gap:9px; margin-top:20px; }
  .chip { font-size:13.5px; color: var(--ink); background: var(--surface); border:1px solid var(--line); border-radius:999px; padding:8px 15px; font-weight:500; }
  .chip .ck { color: var(--accent-ink); margin-right:7px; font-weight:700; }
  .chip.accent { background: var(--accent-soft); border-color: var(--accent-line); color: var(--ink); font-weight:600; }
  .rbi-live { margin-top:18px; display:flex; align-items:center; gap:9px; color: var(--text-2); font-size:14.5px; }
  .rbi-live .ld { width:8px; height:8px; border-radius:50%; background: var(--accent); box-shadow: 0 0 0 4px var(--accent-soft); }
  @media (max-width:820px){ .rbi-grid { grid-template-columns:1fr; } .rbi-banner { clip-path:none; padding:28px; } }

  /* ============ PLATFORM SHOWCASE ============ */
  .tabs { display:flex; gap:10px; justify-content:center; flex-wrap:wrap; margin: clamp(34px,4vw,52px) 0 clamp(28px,3.5vw,44px); }
  .tab { font-family: var(--font-body); font-size:14.5px; font-weight:500; color: var(--text-2); background: transparent; border:1px solid var(--line-strong); border-radius:999px; padding:10px 20px; cursor:pointer; transition: all .18s; white-space:nowrap; }
  .tab:hover { color: var(--ink); border-color: var(--text-3); }
  .tab.active { background: var(--ink); color:#fff; border-color: var(--ink); }
  .showcase { background: var(--surface); border:1px solid var(--line); border-radius: 24px; overflow:hidden; display:grid; grid-template-columns: 0.92fr 1.08fr; gap:0; align-items:stretch; }
  .showcase-l { padding: clamp(34px, 4vw, 60px); display:flex; flex-direction:column; }
  .showcase-l .sc-ico { width:54px; height:54px; border-radius:14px; background: var(--accent-soft); display:flex; align-items:center; justify-content:center; margin-bottom:24px; }
  .showcase-l h3 { font-size: clamp(23px, 2.7vw, 33px); margin-bottom:16px; }
  .showcase-l p { color: var(--text-2); font-size:16.5px; line-height:1.6; margin-bottom: 26px; }
  .showcase-l .sc-cta { margin-top:auto; }
  .showcase-r { position:relative; background: var(--band); border-left:1px solid var(--line); padding: clamp(28px,3.5vw,48px); display:flex; align-items:center; overflow:hidden; }
  .showcase-r .app { width:100%; }
  @media (max-width: 940px){ .showcase { grid-template-columns:1fr; } .showcase-r { border-left:none; border-top:1px solid var(--line); } }

  /* ============ AUDIENCE (banks / originators) ============ */
  .aud-grid { display:grid; grid-template-columns: 1fr 1fr; gap:22px; }
  @media (max-width: 860px){ .aud-grid { grid-template-columns:1fr; } }
  .aud-card { position:relative; overflow:hidden; background: var(--surface); border:1px solid var(--line); border-radius:20px; padding: clamp(28px,3.2vw,44px); display:flex; flex-direction:column; transition: border-color .25s, transform .25s, box-shadow .25s; }
  .aud-card::before { content:""; position:absolute; top:0; left:0; right:0; height:2px; background: var(--accent-ink); transform: scaleX(0); transform-origin:left; transition: transform .4s ease; }
  .aud-card:hover::before { transform: scaleX(1); }
  .aud-card::after { content:""; position:absolute; top:-24px; right:-24px; width:180px; height:180px; background-image: radial-gradient(rgba(31,35,40,0.05) 1px, transparent 1px); background-size:16px 16px; -webkit-mask-image: radial-gradient(circle at top right, #000 10%, transparent 68%); mask-image: radial-gradient(circle at top right, #000 10%, transparent 68%); pointer-events:none; }
  .aud-card:hover { border-color: var(--line-strong); transform: translateY(-3px); box-shadow: 0 18px 40px -28px rgba(31,35,40,0.25); }
  .aud-idx { position:absolute; top: clamp(16px,2vw,26px); right: clamp(22px,2.6vw,34px); font-family: var(--font-head); font-weight:700; font-size: clamp(54px,7vw,92px); line-height:1; color: var(--ink); opacity:0.04; letter-spacing:-0.05em; pointer-events:none; transition: opacity .3s, color .3s; }
  .aud-card:hover .aud-idx { opacity:0.10; color: var(--accent-ink); }
  .aud-head { display:flex; align-items:center; gap:13px; margin-bottom:24px; position:relative; z-index:1; }
  .aud-ico { width:46px; height:46px; border-radius:13px; background: var(--accent-soft); display:flex; align-items:center; justify-content:center; flex:none; transition: transform .25s; }
  .aud-card:hover .aud-ico { transform: scale(1.06); }
  .aud-card .tag { font-family: var(--font-mono); font-size:12px; font-weight:700; letter-spacing:0.1em; text-transform:uppercase; color: var(--label-ink); white-space:nowrap; }
  .aud-card h3 { font-size: clamp(21px, 2.5vw, 29px); margin-bottom:14px; position:relative; z-index:1; max-width: 460px; }
  .aud-card p { color: var(--text-2); font-size:16px; line-height:1.6; margin-bottom:26px; position:relative; z-index:1; max-width: 440px; }
  .aud-card .aud-cta { margin-top:auto; position:relative; z-index:1; }

  /* ============ DIAGRAM — connected flow map (signature) ============ */
  .flowmap { margin-top: clamp(36px, 4.5vw, 60px); }
  .fm-canvas { position:relative; width:100%; max-width:1120px; margin:0 auto; aspect-ratio: 1120 / 600; }
  .fm-svg { position:absolute; inset:0; width:100%; height:100%; z-index:1; pointer-events:none; overflow:visible; }
  .fm-env { position:absolute; border:1px solid var(--line); border-radius:22px; background:#FBFBFC; z-index:0; }
  .fm-env .lab { position:absolute; top:16px; left:20px; display:flex; align-items:center; gap:8px; font-family: var(--font-mono); font-size:11px; font-weight:600; letter-spacing:0.1em; text-transform:uppercase; color: var(--text-3); white-space:nowrap; }
  .fm-env .lab::before { content:""; width:7px; height:7px; border-radius:2px; background: var(--text-3); }

  .fm-card { position:absolute; z-index:3; background: var(--surface); border:1px solid var(--line); border-radius:14px; padding:16px 18px; display:flex; flex-direction:column; gap:7px; transition: border-color .2s, transform .2s, box-shadow .2s; }
  .fm-card:hover { border-color: var(--line-strong); transform: translateY(-2px); box-shadow:0 14px 30px -24px rgba(31,35,40,0.3); }
  .fm-card .n { font-family: var(--font-mono); font-size:11px; font-weight:600; letter-spacing:0.08em; color: var(--accent-ink); }
  .fm-card h4 { font-size: clamp(16px, 1.5vw, 19px); letter-spacing:-0.01em; }
  .fm-card p { font-size:12.5px; color: var(--text-2); line-height:1.45; }

  .fm-brain { position:absolute; z-index:4; background: var(--surface); border:1.5px solid var(--accent-ink); border-radius:18px; padding:20px 18px 16px; display:flex; flex-direction:column; align-items:center; text-align:center; gap:11px; box-shadow: 0 0 0 7px var(--accent-soft), 0 24px 50px -28px rgba(255,190,0,0.45); }
  .fm-brain .bh { display:flex; flex-direction:column; align-items:center; gap:2px; }
  .fm-brain .tag { font-family: var(--font-head); font-weight:700; color: var(--accent-ink); font-size:14px; letter-spacing:0.06em; }
  .fm-brain .sub { font-family: var(--font-mono); font-size:9px; font-weight:500; letter-spacing:0.08em; text-transform:uppercase; color: var(--text-3); }
  .fm-brain .n { position:absolute; top:13px; right:15px; font-family: var(--font-mono); font-size:11px; font-weight:600; color: var(--accent-ink); }
  .fm-chips { display:flex; flex-wrap:wrap; gap:6px; justify-content:center; }
  .fm-chip { font-size:11px; color: var(--ink); border:1px solid var(--accent-line); border-radius:999px; padding:4px 11px; font-weight:500; white-space:nowrap; }
  .fm-brain .note { font-size:11.5px; color: var(--text-2); line-height:1.45; border-top:1px solid var(--line); padding-top:10px; margin-top:1px; text-align:center; }
  .fm-brain .note b { color: var(--accent-ink); font-weight:600; }

  @keyframes fmpulse { 0% { stroke-dashoffset: 220; } 100% { stroke-dashoffset: 0; } }
  .fm-pulse { fill:none; stroke: var(--accent-ink); stroke-width:3; stroke-linecap:round; stroke-dasharray: 20 200; animation: fmpulse 2.4s linear infinite; }
  @media (prefers-reduced-motion: reduce){ .fm-pulse { animation:none; opacity:0; } }

  .fm-clab { position:absolute; z-index:2; transform:translate(-50%,-50%); font-family: var(--font-mono); font-size:9.5px; font-weight:600; letter-spacing:0.05em; text-transform:uppercase; color: var(--text-2); background: var(--page); padding:2px 7px; border-radius:5px; white-space:nowrap; }
  .fm-clab .ar { color: var(--accent-ink); }

  .fm-stack { display:none; }
  @media (max-width: 860px){
    .fm-canvas { display:none; }
    .fm-stack { display:flex; flex-direction:column; align-items:stretch; gap:0; max-width:440px; margin:0 auto; }
    .fm-srow { display:flex; gap:14px; }
    .fm-srail { width:34px; flex:none; position:relative; display:flex; align-items:center; justify-content:center; }
    .fm-srail .ln { position:absolute; top:0; bottom:0; width:2px; background: var(--accent-line); }
    .fm-srow:first-child .fm-srail .ln { top:50%; }
    .fm-srow:last-child .fm-srail .ln { bottom:50%; }
    .fm-srail .dot { position:relative; z-index:1; width:11px; height:11px; border-radius:50%; border:2px solid var(--accent-line); background: var(--band); }
    .fm-srow.is-brain .fm-srail .dot { background: var(--accent); border-color: var(--accent-ink); }
    .fm-scard { flex:1; background: var(--surface); border:1px solid var(--line); border-radius:14px; padding:15px 16px; margin-bottom:10px; display:flex; flex-direction:column; gap:6px; }
    .fm-srow.is-brain .fm-scard { border-color: var(--accent-ink); }
    .fm-scard .who { font-family: var(--font-mono); font-size:10px; font-weight:600; letter-spacing:0.08em; text-transform:uppercase; color: var(--accent-ink); }
    .fm-scard h4 { font-size:17px; }
    .fm-scard p { font-size:13px; color: var(--text-2); line-height:1.5; }
    .fm-scard .fm-chips { margin-top:4px; }
  }

  /* ============ TRUST — static editorial rows ============ */
  .trust-list { margin-top: clamp(34px,4vw,56px); border-top:1px solid var(--line); }
  .trust-row { border-bottom:1px solid var(--line); padding: clamp(22px,2.8vw,34px) 0; }
  .trust-head { display:flex; align-items:center; gap: clamp(16px,2.4vw,28px); }
  .trust-head .num { font-family: var(--font-mono); font-size:13px; font-weight:600; color: var(--accent-ink); width:34px; flex:none; }
  .trust-head .tt { font-family: var(--font-head); font-weight:700; font-size: clamp(19px,2.4vw,29px); letter-spacing:-0.02em; line-height:1.1; color: var(--ink); flex:1; }
  .trust-head .ico { width:46px; height:46px; border-radius:12px; background: var(--accent-soft); display:flex; align-items:center; justify-content:center; flex:none; }
  .trust-pts { display:grid; grid-template-columns: repeat(3,1fr); gap: clamp(18px,2.4vw,32px); max-width: 1000px; margin: 16px 0 0 calc(34px + clamp(16px,2.4vw,28px)); }
  .trust-pt { display:flex; gap:11px; font-size:14.5px; color: var(--text-2); line-height:1.5; }
  .trust-pt .ck { color: var(--accent-ink); flex:none; margin-top:2px; display:flex; }
  @media (max-width: 760px){
    .trust-pts { grid-template-columns:1fr; gap:12px; margin-left:0; }
    .trust-head .ico { display:none; }
  }
  .trust-heading .accent { color: var(--accent-ink); }

  /* ============ RECOGNITION (stats + backing) ============ */
  .recog-stats { display:grid; grid-template-columns: repeat(3,1fr); gap: clamp(20px,3vw,44px); }
  .recog-stats.cols2 { grid-template-columns: repeat(2,1fr); max-width:640px; margin-left:auto; margin-right:auto; }
  @media (max-width:760px){ .recog-stats { grid-template-columns:1fr; gap:0; } }
  .recog-stat { display:flex; flex-direction:column; gap:14px; padding-top:28px; border-top:1px solid var(--line); }
  @media (max-width:760px){ .recog-stat { padding:24px 0; } .recog-stat:first-child { padding-top:0; border-top:none; } }
  .recog-stat .sv { font-family: var(--font-head); font-weight:700; font-size: clamp(40px,5vw,60px); color: var(--accent-ink); letter-spacing:-0.03em; line-height:1; white-space:nowrap; font-variant-numeric: tabular-nums; }
  .recog-stat .sd { color: var(--text-2); font-size:15.5px; line-height:1.55; max-width:300px; }
  .recog-stat .sd b { color: var(--ink); font-weight:600; }
  .recog-stats.center .recog-stat { align-items:center; text-align:center; }
  .recog-stats.center .recog-stat .sd { margin-left:auto; margin-right:auto; }

  .backed-island { margin-top: clamp(28px,3.4vw,48px); background: var(--surface); border:1px solid var(--line); border-radius:18px; padding: clamp(20px,2.4vw,28px) clamp(24px,3.4vw,40px); display:flex; align-items:center; gap: clamp(20px,3vw,44px); flex-wrap:wrap; }
  .backed-island .bk-lab { display:flex; align-items:center; gap:10px; font-family: var(--font-mono); font-size:12px; font-weight:600; letter-spacing:0.1em; text-transform:uppercase; color: var(--accent-ink); white-space:nowrap; }
  .backed-island .bk-lab::before { content:""; width:7px; height:7px; border-radius:50%; background: var(--accent); }
  .backed-island .bk-names { display:flex; align-items:center; gap: clamp(16px,2.6vw,38px); flex-wrap:wrap; flex:1; }
  .backed-island .bk-name { font-family: var(--font-head); font-weight:600; font-size: clamp(18px,1.9vw,23px); color: var(--ink); letter-spacing:-0.01em; white-space:nowrap; transition: color .2s; }
  .backed-island .bk-name:hover { color: var(--accent-ink); }
  .backed-island .bk-sep { color: var(--text-3); font-size:14px; }

  /* ============ FINAL CTA + FAQ ============ */
  .close-grid { display:grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(28px,4vw,64px); align-items:stretch; }
  @media (max-width: 900px){ .close-grid { grid-template-columns:1fr; } }
  .cta-card { background: var(--ink); border:1px solid var(--ink); border-radius:22px; padding: clamp(34px,4vw,56px); display:flex; flex-direction:column; justify-content:center; min-height: 320px; color:#fff; }
  .cta-card h2 { font-size: clamp(28px,3.8vw,44px); color:#fff; }
  .cta-card h2 .accent { color: var(--accent); }
  .cta-card p { color: rgba(255,255,255,0.72); font-size:17px; margin-top:18px; max-width: 420px; line-height:1.6; }
  .cta-card .hero-cta { margin-top:30px; }
  .cta-card .btn-ghost { color:#fff; border-color: rgba(255,255,255,0.28); }
  .cta-card .btn-ghost:hover { border-color:#fff; color:#fff; }
  .faq { display:flex; flex-direction:column; }
  .faq-h { display:flex; align-items:center; justify-content:space-between; margin-bottom:8px; }
  .faq-h h3 { font-size: clamp(21px,2.5vw,29px); }
  .faq-item { border-top:1px solid var(--line); }
  .faq-q { width:100%; text-align:left; background:none; border:none; cursor:pointer; color: var(--ink); font-family: var(--font-head); font-weight:600; font-size: clamp(16px,1.8vw,20px); padding: 22px 40px 22px 0; position:relative; letter-spacing:-0.01em; }
  .faq-q .pm { position:absolute; right:2px; top:50%; transform:translateY(-50%); width:20px; height:20px; }
  .faq-q .pm::before, .faq-q .pm::after { content:""; position:absolute; background: var(--accent-ink); transition: opacity .2s, transform .2s; }
  .faq-q .pm::before { left:0; top:9px; width:20px; height:2px; }
  .faq-q .pm::after { left:9px; top:0; width:2px; height:20px; }
  .faq-item.open .faq-q .pm::after { opacity:0; }
  .faq-a { max-height:0; overflow:hidden; transition: max-height .3s ease; }
  .faq-item.open .faq-a { max-height: 280px; }
  .faq-a .inner { padding: 0 40px 22px 0; color: var(--text-2); font-size:15.5px; line-height:1.6; }

  /* ============ FOOTER ============ */
  footer.site { background: var(--band); border-top:1px solid var(--line); padding: clamp(48px,6vw,80px) 0 40px; }
  .foot-grid { display:grid; grid-template-columns: 1.4fr repeat(4, 1fr); gap: 32px; }
  @media (max-width: 860px){ .foot-grid { grid-template-columns: 1fr 1fr; gap:28px; } }
  .foot-brand .tagline { color: var(--text-2); font-size:14.5px; margin-top:16px; max-width:240px; line-height:1.55; }
  .foot-brand .socials { display:flex; gap:10px; margin-top:20px; }
  .foot-brand .soc { width:32px; height:32px; border:1px solid var(--line); border-radius:8px; display:flex; align-items:center; justify-content:center; color: var(--text-2); transition: all .18s; }
  .foot-brand .soc:hover { color: var(--accent-ink); border-color: var(--accent-line); }
  .foot-col h5 { font-family: var(--font-mono); font-size:11px; font-weight:600; letter-spacing:0.1em; text-transform:uppercase; color: var(--accent-ink); margin:0 0 16px; }
  .foot-col a { display:block; color: var(--text-2); font-size:14.5px; padding:6px 0; transition: color .18s; }
  .foot-col a:hover { color: var(--ink); }
  .foot-bottom { display:flex; align-items:center; justify-content:space-between; gap:18px; flex-wrap:wrap; margin-top: clamp(40px,5vw,64px); padding-top: 26px; border-top:1px solid var(--line); }
  .foot-bottom .fine { color: var(--text-3); font-size:13px; }
  .foot-bottom .legal { display:flex; gap:22px; flex-wrap:wrap; }
  .foot-bottom .legal a { color: var(--text-3); font-size:13px; transition: color .18s; }
  .foot-bottom .legal a:hover { color: var(--text-2); }

  /* ════════════════════════════════════════════════════════════════════
     SUB-PAGE COMPONENTS — shared across for-banks / for-originators /
     how-it-works / platform-security / our-story / contact. Token-based,
     same look as the homepage. Don't fork these per page.
     ════════════════════════════════════════════════════════════════════ */

  /* ---- nav active state (quiet amber underline under the current page) ---- */
  .nav-link.active, .nav-link[aria-current="page"] { color: var(--ink); font-weight:600; position:relative; }
  .nav-link.active::after, .nav-link[aria-current="page"]::after { content:""; position:absolute; left:0; right:0; bottom:-7px; height:2px; border-radius:2px; background: var(--accent-ink); }

  /* ---- small mono note under a hero CTA ---- */
  .hero-note { margin-top:16px; font-family: var(--font-mono); font-size:12.5px; letter-spacing:0.01em; color: var(--text-3); }

  /* ---- thin 3-cell credibility strip directly under a hero ---- */
  .statstrip { background: var(--band); border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
  .statstrip-inner { display:grid; grid-template-columns: repeat(3,1fr); }
  .statstrip .cell { text-align:center; padding: clamp(20px,3vw,30px) 18px; border-right:1px solid var(--line); }
  .statstrip .cell:last-child { border-right:none; }
  .statstrip .big { font-family: var(--font-head); font-weight:700; font-size: clamp(22px,2.8vw,31px); line-height:1.1; letter-spacing:-0.02em; color: var(--ink); font-variant-numeric: tabular-nums; }
  .statstrip .big .accent { color: var(--accent-ink); }
  .statstrip .cap { font-size:14px; color: var(--text-2); line-height:1.4; margin-top:9px; }
  @media (max-width: 640px){
    .statstrip-inner { grid-template-columns: 1fr 1fr; }
    .statstrip .cell:nth-child(2) { border-right:none; }
    .statstrip .cell:nth-child(3) { grid-column:1/-1; border-top:1px solid var(--line); }
  }

  /* ---- 3-up / 2-up card grids reusing .aud-card ---- */
  .aud-grid.cols3 { grid-template-columns: repeat(3,1fr); }
  @media (max-width: 980px){ .aud-grid.cols3 { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 680px){ .aud-grid.cols3 { grid-template-columns: 1fr; } }

  /* ---- before / after comparison matrix (For Originators) ---- */
  .cmp { border:1px solid var(--line); border-radius:18px; overflow:hidden; background: var(--surface); }
  .cmp-grid { display:grid; grid-template-columns: minmax(132px,0.72fr) 1fr 1fr; }
  .cmp-cell { padding: clamp(15px,1.9vw,21px) clamp(16px,2vw,22px); border-top:1px solid var(--line); border-left:1px solid var(--line); font-size:14.5px; color: var(--text-2); line-height:1.55; }
  .cmp-cell:nth-child(3n+1) { border-left:none; }
  .cmp-cell:nth-child(-n+3) { border-top:none; }
  .cmp-cell b { color: var(--ink); font-weight:600; }
  .cmp-cell.head { background: var(--band); font-family: var(--font-mono); font-size:11px; font-weight:600; letter-spacing:0.08em; text-transform:uppercase; color: var(--text-3); }
  .cmp-cell.head.mj { color: var(--accent-ink); }
  .cmp-cell.lbl { font-family: var(--font-head); font-weight:600; font-size:14px; color: var(--ink); }
  .cmp-cell.mj { background: var(--accent-soft); }
  @media (max-width: 680px){
    .cmp-grid { grid-template-columns: 1fr; }
    .cmp-cell { border-left:none; }
    .cmp-cell.head { display:none; }
    .cmp-cell.lbl { background: var(--band); }
    .cmp-cell.today::before { content:"Today"; color: var(--text-3); }
    .cmp-cell.mj::before { content:"On Mannjal"; color: var(--accent-ink); }
    .cmp-cell.today::before, .cmp-cell.mj::before { display:block; font-family: var(--font-mono); font-size:10px; font-weight:600; letter-spacing:0.08em; text-transform:uppercase; margin-bottom:6px; }
  }

  /* ---- centered closing CTA on a band ---- */
  .cta-band { text-align:center; max-width:720px; margin:0 auto; }
  .cta-band .eyebrow { display:block; margin-bottom:16px; }
  .cta-band h2 { font-size: clamp(26px,3.8vw,44px); }
  .cta-band h2 .accent { color: var(--accent-ink); }
  .cta-band p { color: var(--text-2); font-size: clamp(16px,1.8vw,19px); margin:18px auto 0; max-width:540px; line-height:1.6; }
  .cta-band .hero-cta { justify-content:center; margin-top:28px; }

  /* ---- vertical timeline (Our Story) ---- */
  .tl { border-left:2px solid var(--line); margin-left:6px; }
  .tl .mile { position:relative; padding:0 0 clamp(22px,3vw,34px) clamp(24px,3vw,34px); }
  .tl .mile:last-child { padding-bottom:0; }
  .tl .mile::before { content:""; position:absolute; left:-7px; top:4px; width:12px; height:12px; border-radius:50%; background: var(--surface); border:2px solid var(--accent-ink); }
  .tl .yr { font-family: var(--font-mono); font-size:12px; font-weight:700; letter-spacing:0.06em; color: var(--label-ink); }
  .tl .mile p { margin-top:6px; font-size:15.5px; color: var(--text-2); line-height:1.55; max-width:62ch; }

  /* ---- founder / team cards (Our Story) ---- */
  .team-grid { display:grid; grid-template-columns: repeat(3,1fr); gap:22px; }
  @media (max-width: 820px){ .team-grid { grid-template-columns: 1fr; } }
  .member { background: var(--surface); border:1px solid var(--line); border-radius:18px; overflow:hidden; transition: border-color .25s, transform .25s, box-shadow .25s; }
  .member:hover { border-color: var(--line-strong); transform: translateY(-3px); box-shadow: 0 18px 40px -28px rgba(31,35,40,0.25); }
  .member .photo { width:100%; aspect-ratio:4/5; object-fit:cover; object-position:center 28%; background: var(--band); display:block; position:relative; z-index:0; }
  .member .photo--aman { transform:scale(1.18); transform-origin:center 30%; }
  .member .m-body { padding: clamp(20px,2.4vw,26px); position:relative; z-index:1; background:var(--surface); }
  .member .m-head { display:flex; align-items:flex-start; justify-content:space-between; gap:12px; }
  .member .nm { font-family: var(--font-head); font-weight:700; font-size:19px; letter-spacing:-0.01em; color: var(--ink); }
  .member .ro { font-family: var(--font-mono); font-size:11px; font-weight:700; letter-spacing:0.08em; text-transform:uppercase; color: var(--label-ink); margin:5px 0 0; }
  .member .li { flex:none; color: var(--accent-ink); display:inline-flex; padding:6px; margin:-5px -5px 0 0; border-radius:9px; transition: background .2s; }
  .member .li:hover { background: var(--accent-soft); }
  .member p { font-size:14.5px; color: var(--text-2); line-height:1.55; margin-top:14px; }

  /* ---- investor cards (Our Story) ---- */
  .inv-grid { display:grid; grid-template-columns: 1fr 1fr; gap:22px; }
  @media (max-width: 820px){ .inv-grid { grid-template-columns: 1fr; } }
  .inv-card { background: var(--surface); border:1px solid var(--line); border-radius:18px; padding: clamp(22px,2.6vw,30px); }
  .inv-card .nm { font-family: var(--font-head); font-weight:700; font-size:20px; letter-spacing:-0.01em; color: var(--ink); margin-bottom:10px; }
  .inv-card .inv-logo { height:34px; width:auto; max-width:160px; object-fit:contain; object-position:left center; display:block; margin-bottom:18px; }
  .inv-card p { font-size:14.5px; color: var(--text-2); line-height:1.55; }
  .inv-also { margin-top:18px; font-size:14.5px; color: var(--text-3); }

  /* ---- integrations grid (Platform & Security) ---- */
  .intg-grid { display:grid; grid-template-columns: repeat(3,1fr); gap:14px; }
  @media (max-width: 680px){ .intg-grid { grid-template-columns: 1fr 1fr; } }
  .intg { text-align:center; border:1px solid var(--line); border-radius:13px; background: var(--surface); padding:26px 16px; transition: border-color .2s, transform .2s; }
  .intg:hover { border-color: var(--line-strong); transform: translateY(-2px); }
  .intg .logo-ph { margin:0 auto 12px; }
  .intg .intg-logo { height:32px; width:auto; max-width:130px; object-fit:contain; display:block; margin:0 auto 14px; }
  .intg .intg-logo--stanford { height:84px; max-width:140px; }
  /* single-row logo wall (e.g. all VCs together) */
  .intg-grid.vc-grid { grid-template-columns: repeat(3,1fr); }
  @media (max-width: 860px){ .intg-grid.vc-grid { grid-template-columns: repeat(3,1fr); } }
  @media (max-width: 560px){ .intg-grid.vc-grid { grid-template-columns: 1fr 1fr; } }
  .vc-grid .intg { display:flex; flex-direction:column; align-items:center; }
  .vc-grid .intg-logo,
  .vc-grid .intg-logo--stanford { width:100%; max-width:140px; height:84px; margin:0 auto 14px; }
  .intg-grid.security-intg-grid { grid-template-columns: repeat(2,1fr); }
  .intg .nm { font-family: var(--font-head); font-weight:600; font-size:17px; letter-spacing:-0.01em; color: var(--ink); }
  .intg .fn { font-family: var(--font-mono); font-size:10.5px; letter-spacing:0.04em; color: var(--text-3); margin-top:7px; }

  /* ---- contact form + "who you'll meet" (Contact) ---- */
  .contact-grid { display:grid; grid-template-columns: 1.2fr 1fr; gap: clamp(28px,4vw,56px); align-items:start; }
  @media (max-width: 820px){ .contact-grid { grid-template-columns: 1fr; } }
  .field { margin-bottom:18px; }
  .field label { display:block; font-size:13px; font-weight:600; color: var(--ink); margin-bottom:7px; }
  .field label .opt { color: var(--text-3); font-weight:400; }
  .ctrl { width:100%; font-family: var(--font-body); font-size:15px; color: var(--ink); background: var(--surface); border:1px solid var(--line-strong); border-radius:9px; padding:12px 14px; transition: border-color .18s, box-shadow .18s; }
  .ctrl::placeholder { color: var(--text-3); }
  .ctrl:focus { outline:none; border-color: var(--accent-ink); box-shadow: 0 0 0 3px var(--accent-soft); }
  textarea.ctrl { min-height:104px; resize:vertical; line-height:1.5; }
  select.ctrl { appearance:none; -webkit-appearance:none; cursor:pointer; padding-right:38px; background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238B92A0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M6 9l6 6 6-6'/></svg>"); background-repeat:no-repeat; background-position:right 14px center; }
  .meet { background: var(--surface); border:1px solid var(--line); border-radius:18px; padding: clamp(20px,2.4vw,28px); }
  .meet .meet-h { font-family: var(--font-mono); font-size:11px; font-weight:700; letter-spacing:0.1em; text-transform:uppercase; color: var(--label-ink); margin-bottom:6px; }
  .person { display:flex; gap:14px; align-items:flex-start; padding:16px 0; border-top:1px solid var(--line); }
  .person:first-of-type { border-top:none; padding-top:8px; }
  .person:last-child { padding-bottom:0; }
  .person .photo { flex:none; width:48px; height:48px; border-radius:50%; object-fit:cover; border:1px solid var(--line); background: var(--band); }
  .person .nm { font-family: var(--font-head); font-weight:700; font-size:15px; color: var(--ink); }
  .person .ro { font-family: var(--font-mono); font-size:10.5px; font-weight:600; letter-spacing:0.06em; text-transform:uppercase; color: var(--accent-ink); margin:3px 0 5px; }
  .person .em { font-size:13.5px; color: var(--text-2); transition: color .18s; }
  a.em:hover { color: var(--accent-ink); }

  /* ---- reassurance island (CRO band / audit-pass / neutral position) ---- */
  .reassure { background: var(--surface); border:1px solid var(--line); border-radius:22px; padding: clamp(28px,3.5vw,48px); display:grid; grid-template-columns:auto 1fr; gap: clamp(20px,3vw,40px); align-items:start; }
  .reassure .seal { width:60px; height:60px; border-radius:16px; background: var(--accent-soft); display:flex; align-items:center; justify-content:center; flex:none; }
  .reassure .eyebrow { display:block; margin-bottom:14px; }
  .reassure h2 { font-size: clamp(24px,3vw,38px); }
  .reassure h2 .accent { color: var(--accent-ink); }
  .reassure p { color: var(--text-2); font-size: clamp(16px,1.7vw,18px); margin-top:16px; max-width:680px; line-height:1.6; }
  .reassure .cro-chips { display:flex; flex-wrap:wrap; gap:9px; margin-top:20px; }
  @media (max-width:680px){ .reassure { grid-template-columns:1fr; } }
  .reassure.center { grid-template-columns:1fr; justify-items:center; text-align:center; }
  .reassure.center p { margin-left:auto; margin-right:auto; }
  .reassure.center .cro-chips { justify-content:center; }

  /* product visuals */
  .product-visual { width:100%; box-sizing:border-box; margin:clamp(34px,4.5vw,60px) auto 0; padding:clamp(8px,1.2vw,16px); background:var(--band); border:1px solid var(--line); border-radius:18px; overflow:hidden; box-shadow:0 16px 42px rgba(24,27,77,.08); }
  .product-visual img { display:block; width:100%; height:auto; border-radius:12px; }
  .product-carousel { position:relative; }
  .product-support-stack {
    display:flex;
    gap:clamp(20px,3vw,36px);
    margin-top:clamp(32px,4vw,52px);
    overflow-x:auto;
    overscroll-behavior-x:contain;
    scroll-snap-type:x mandatory;
    scrollbar-width:none;
    padding:0 0 4px;
  }
  .product-support-stack::-webkit-scrollbar { display:none; }
  .product-support-stack .product-visual {
    flex:0 0 min(78vw, 760px);
    scroll-snap-align:start;
  }
  .product-support-stack .product-visual { margin-top:0; }
  .product-carousel-footer { display:flex; align-items:center; justify-content:space-between; margin-top:18px; }
  .product-carousel-nav { display:grid; place-items:center; width:34px; height:34px; padding:0; border:1px solid var(--line-strong); border-radius:50%; background:var(--surface); color:var(--text-2); font:600 16px/1 var(--font-sans); cursor:pointer; transition:color .18s, border-color .18s, background .18s, transform .18s; }
  .product-carousel-nav:hover:not(:disabled) { border-color:var(--accent-ink); background:var(--accent-soft); color:var(--accent-ink); transform:translateY(-1px); }
  .product-carousel-nav:focus-visible, .product-carousel-dot:focus-visible, .product-support-stack:focus-visible { outline:3px solid var(--accent-line); outline-offset:3px; }
  .product-carousel-nav:disabled { cursor:default; opacity:.34; }
  .product-carousel-dots { display:flex; align-items:center; gap:9px; }
  .product-carousel-dot { width:7px; height:7px; padding:0; border:0; border-radius:50%; background:var(--line-strong); cursor:pointer; transition:background .18s, transform .18s, box-shadow .18s; }
  .product-carousel-dot:hover { background:var(--accent-ink); transform:scale(1.18); }
  .product-carousel-dot.is-active { background:var(--accent-ink); box-shadow:0 0 0 4px var(--accent-soft); transform:scale(1.1); }
  @media (max-width:640px) {
    .product-visual { padding:6px; border-radius:14px; }
    .product-visual img { border-radius:9px; }
    .product-carousel-footer { margin-top:15px; }
  }

  /* ---- signal/token chip row inside an .aud-card (Dash Platform) ---- */
  .aud-card .chip-row { display:flex; flex-wrap:wrap; gap:9px; margin-top:auto; }

  /* ---- compact icon-list paired with a visual (Dash Platform workflow) ---- */
  .split-flow { display:grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(28px,4vw,60px); align-items:center; margin-top: clamp(32px,4vw,52px); }
  @media (max-width: 860px){ .split-flow { grid-template-columns:1fr; } }
  .split-flow-grid { display:grid; grid-template-columns: 1fr 1fr; gap: clamp(26px,3vw,38px) clamp(20px,2.6vw,28px); }
  @media (max-width: 560px){ .split-flow-grid { grid-template-columns:1fr; } }
  .split-flow-item .ico { width:42px; height:42px; border-radius:12px; background: var(--accent-soft); display:flex; align-items:center; justify-content:center; margin-bottom:14px; }
  .split-flow-item h4 { font-size:16.5px; letter-spacing:-0.01em; margin-bottom:6px; }
  .split-flow-item p { color: var(--text-2); font-size:14px; line-height:1.55; }
  .split-flow .img-ph { min-height:100%; }

  /* ════════════════════════════════════════════════════════════════════
     LEGAL / POLICY PAGES + footer legal block + form consent (E + G)
     ════════════════════════════════════════════════════════════════════ */
  .legal-doc { max-width: 800px; }
  .legal-doc h1 { font-size: clamp(30px,4vw,46px); margin-bottom: 10px; }
  .legal-doc .updated { display:block; color: var(--text-3); font-size: 13px; font-family: var(--font-mono); letter-spacing:0.02em; margin-bottom: 26px; }
  .legal-doc h2 { font-size: clamp(19px,2.2vw,25px); margin: 38px 0 12px; }
  .legal-doc h3 { font-size: 16px; margin: 22px 0 8px; }
  .legal-doc p, .legal-doc li { color: var(--text-2); font-size: 15.5px; line-height: 1.7; }
  .legal-doc p { margin-bottom: 14px; }
  .legal-doc ul { margin: 0 0 16px; padding-left: 22px; }
  .legal-doc li { margin-bottom: 7px; }
  .legal-doc a { color: var(--accent-ink); font-weight: 600; }
  .legal-doc a:hover { text-decoration: underline; }
  .draft-note { background: var(--accent-soft); border:1px solid var(--accent-line); border-radius:11px; padding:13px 17px; font-size:13.5px; color: var(--ink); line-height:1.55; margin-bottom: 30px; }
  .draft-note b { color: var(--accent-ink); }

  /* footer registered-entity + compliance fine print */
  .foot-legal { margin-top: clamp(34px,4.5vw,52px); padding-top: 24px; border-top:1px solid var(--line); }
  .foot-legal p { color: var(--text-3); font-size: 12.5px; line-height: 1.65; max-width: 940px; }
  .foot-legal .foot-entity { margin-bottom: 9px; }
  .foot-legal a { color: var(--text-2); }
  .foot-legal a:hover { color: var(--accent-ink); }
  footer.site .foot-bottom { margin-top: 22px; }

  /* contact-form DPDP consent */
  .field-consent { display:flex; gap:10px; align-items:flex-start; margin: 2px 0 18px; }
  .field-consent input { margin-top:3px; flex:none; width:16px; height:16px; accent-color: var(--accent); cursor:pointer; }
  .field-consent label { font-size:13px; color: var(--text-2); line-height:1.5; }
  .field-consent a { color: var(--accent-ink); font-weight:600; }

  /* ---- models fold: bordered grid alternating copy + line-art tiles (OneTrust-inspired) ---- */
  .modelgrid { display:grid; grid-template-columns: repeat(3,1fr); gap:1px; background: var(--line); border:1px solid var(--line); border-radius:18px; overflow:hidden; }
  .mg-cell { background: var(--surface); padding: clamp(26px,2.8vw,40px); display:flex; flex-direction:column; min-height:222px; }
  .mg-cell .mg-title { font-family: var(--font-head); font-weight:700; font-size: clamp(20px,2.1vw,25px); letter-spacing:-0.01em; color: var(--ink); margin-bottom:12px; }
  .mg-cell .mg-desc { color: var(--text-2); font-size:15px; line-height:1.55; }
  .mg-cell .mg-more { margin-top:auto; padding-top:22px; }
  .mg-cell .mg-more a { color: var(--accent-ink); font-weight:600; font-size:14px; display:inline-flex; align-items:center; gap:7px; transition: gap .18s ease; }
  .mg-cell .mg-more a:hover { gap:11px; }
  .mg-diagram { background: var(--band); display:flex; align-items:center; justify-content:center; padding:24px; min-height:222px; }
  .mg-diagram svg { width: clamp(108px, 9vw, 148px); height:auto; display:block; }
  @media (max-width: 880px){ .modelgrid { grid-template-columns: 1fr 1fr; } .mg-diagram { display:none; } }
  @media (max-width: 560px){ .modelgrid { grid-template-columns: 1fr; } .mg-cell { min-height:0; } }

  /* ---- investor tiers + angel links (our-story) ---- */
  .inv-lab { font-family: var(--font-mono); font-size:12px; font-weight:700; letter-spacing:0.1em; text-transform:uppercase; color: var(--label-ink); margin: clamp(30px,3.6vw,46px) 0 14px; }
  a.intg { text-decoration:none; color:inherit; display:block; }
  a.intg:hover .nm { color: var(--accent-ink); }
  .intg .li-ic { display:inline-flex; vertical-align:-2px; margin-left:5px; }
  .angel-grid { grid-template-columns: repeat(3,1fr); }
  @media (max-width:680px){ .angel-grid { grid-template-columns: 1fr 1fr; } }
  .angel-grid .intg { display:flex; flex-direction:column; align-items:center; }
  .angel-grid .nm { min-height:1.35em; }

  /* ════════════════════════════════════════════════════════════════════
     RESOURCES — editorial index, featured story, and multi-tag library
     ════════════════════════════════════════════════════════════════════ */
  @media (min-width:921px) and (max-width:1180px){
    .nav-inner { gap:16px; }
    .nav-left { gap:22px; }
    .nav-links { gap:14px; }
    .nav-link, .nav-dd-btn { font-size:14px; }
  }

  .resource-hero {
    position:relative;
    overflow:hidden;
    padding:clamp(64px,8vw,112px) 0 clamp(46px,6vw,76px);
    border-bottom:1px solid var(--line);
    background:
      linear-gradient(90deg, transparent 0 49.94%, color-mix(in srgb, var(--line) 38%, transparent) 49.94% 50.06%, transparent 50.06%),
      radial-gradient(circle at 80% 28%, var(--accent-soft) 0 7%, transparent 7.2%),
      var(--page);
  }
  .resource-hero::after {
    content:"";
    position:absolute;
    right:7%;
    top:18%;
    width:min(34vw,420px);
    height:min(34vw,420px);
    opacity:.5;
    background-image:radial-gradient(var(--line-strong) 1px, transparent 1px);
    background-size:20px 20px;
    -webkit-mask-image:linear-gradient(135deg, transparent 5%, #000 38%, transparent 82%);
    mask-image:linear-gradient(135deg, transparent 5%, #000 38%, transparent 82%);
    pointer-events:none;
  }
  .resource-hero-copy { position:relative; z-index:1; max-width:880px; }
  .resource-hero-copy .eyebrow { display:block; margin-bottom:20px; }
  .resource-hero-copy h1 { font-size:clamp(42px,6vw,76px); max-width:860px; }
  .resource-hero-copy h1 .accent { color:var(--accent); }
  .resource-hero-copy p { margin-top:24px; max-width:700px; color:var(--text-2); font-size:clamp(17px,2vw,21px); line-height:1.65; }

  .resource-feature-wrap { padding:clamp(34px,5vw,68px) 0 clamp(24px,4vw,52px); }
  .resource-feature {
    display:grid;
    grid-template-columns:minmax(0,.92fr) minmax(0,1.08fr);
    min-height:430px;
    overflow:hidden;
    border:1px solid var(--line);
    border-radius:22px;
    background:var(--surface);
    transition:transform .25s ease, border-color .25s ease, box-shadow .25s ease;
  }
  .resource-feature:hover { transform:translateY(-3px); border-color:var(--line-strong); box-shadow:0 24px 60px -40px rgba(31,35,40,.34); }
  .resource-feature-art {
    position:relative;
    overflow:hidden;
    min-height:390px;
    border-right:1px solid var(--line);
    background:
      linear-gradient(var(--line) 1px, transparent 1px),
      linear-gradient(90deg, var(--line) 1px, transparent 1px),
      var(--band);
    background-size:72px 72px;
  }
  .resource-feature-art::before {
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:54%;
    height:42%;
    background:var(--accent);
  }
  .resource-feature-art::after {
    content:"";
    position:absolute;
    left:28%;
    top:15%;
    width:44%;
    height:60%;
    border:2px solid var(--ink);
    border-radius:15px;
    background:color-mix(in srgb, var(--surface) 90%, transparent);
    box-shadow:18px 18px 0 var(--accent-soft);
  }
  .resource-feature-art.has-image::before,
  .resource-feature-art.has-image::after { display:none; }
  .resource-feature-image {
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
  }
  .resource-feature-art--fallback { display:flex; flex-direction:column; justify-content:flex-end; gap:14px; padding:clamp(24px,4vw,52px); background:linear-gradient(145deg, var(--band), var(--surface)); }
  .resource-feature-art--fallback::before, .resource-feature-art--fallback::after { display:none; }
  .resource-feature-art--fallback .art-label { position:static; color:var(--accent-ink); }
  .resource-feature-fallback-title { max-width:470px; color:var(--ink); font-family:var(--font-head); font-size:clamp(24px,3vw,42px); line-height:1.04; letter-spacing:-.035em; font-weight:700; }
  .feature-spine {
    position:absolute;
    z-index:2;
    left:50%;
    top:22%;
    bottom:19%;
    width:2px;
    background:var(--ink);
  }
  .feature-node {
    position:absolute;
    z-index:3;
    display:grid;
    gap:9px;
    width:31%;
    padding:20px;
    border:1px solid var(--line-strong);
    border-radius:12px;
    background:var(--surface);
  }
  .feature-node span { display:block; height:5px; border-radius:9px; background:var(--line-strong); }
  .feature-node span:first-child { width:48%; background:var(--ink); }
  .feature-node-a { left:8%; top:12%; }
  .feature-node-b { right:7%; bottom:10%; }
  .feature-signal {
    position:absolute;
    z-index:4;
    left:calc(50% - 18px);
    top:26%;
    width:36px;
    height:36px;
    display:grid;
    place-items:center;
    border:2px solid var(--ink);
    border-radius:50%;
    background:var(--accent);
    color:var(--ink);
    font-size:10px;
    font-weight:700;
  }
  .feature-signal-b { top:auto; bottom:23%; background:var(--surface); }
  .resource-feature-copy { display:flex; flex-direction:column; justify-content:center; padding:clamp(30px,5vw,66px); }
  .resource-kicker {
    display:flex;
    align-items:center;
    gap:10px;
    flex-wrap:wrap;
    color:var(--text-3);
    font-size:12px;
    font-weight:600;
    letter-spacing:.04em;
    text-transform:uppercase;
  }
  .resource-kicker .resource-type { color:var(--label-ink); }
  .resource-kicker > * + *::before { content:""; display:inline-block; width:4px; height:4px; margin:0 10px 2px 0; border-radius:50%; background:var(--line-strong); }
  .resource-feature-copy h2 { margin-top:20px; font-size:clamp(29px,4vw,48px); line-height:1.08; }
  .resource-feature-copy p { margin-top:18px; color:var(--text-2); font-size:16px; line-height:1.65; }
  .resource-feature-copy .link-arrow { margin-top:28px; color:var(--label-ink); }

  .resource-library { padding-top:clamp(48px,6vw,78px); }
  .resource-library-head { display:flex; align-items:end; justify-content:space-between; gap:28px; margin-bottom:clamp(28px,4vw,44px); }
  .resource-library-head .eyebrow { display:block; margin-bottom:14px; }
  .resource-library-head h2 { max-width:760px; font-size:clamp(30px,4.2vw,50px); }
  .resource-result-count { flex:none; color:var(--text-3); font-size:13px; }
  .resource-filter { padding:18px 0; border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
  .resource-filter-label { display:block; margin-bottom:12px; color:var(--text-3); font-size:11px; font-weight:700; letter-spacing:.1em; text-transform:uppercase; }
  .resource-filter-buttons { display:flex; flex-wrap:wrap; gap:9px; }
  .resource-filter-btn {
    appearance:none;
    border:1px solid var(--line-strong);
    border-radius:999px;
    background:var(--surface);
    color:var(--text-2);
    padding:9px 15px;
    font-family:var(--font-body);
    font-size:13.5px;
    font-weight:600;
    cursor:pointer;
    transition:background .18s, color .18s, border-color .18s, transform .18s;
  }
  .resource-filter-btn:hover { color:var(--ink); border-color:var(--ink); transform:translateY(-1px); }
  .resource-filter-btn.is-active { background:var(--ink); border-color:var(--ink); color:var(--surface); }

  .resource-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; margin-top:clamp(30px,4vw,46px); }
  .resource-card { min-width:0; }
  .resource-card[hidden] { display:none; }
  .resource-card > a {
    height:100%;
    display:flex;
    flex-direction:column;
    overflow:hidden;
    border:1px solid var(--line);
    border-radius:18px;
    background:var(--surface);
    transition:transform .22s ease, border-color .22s ease, box-shadow .22s ease;
  }
  .resource-card > a:hover { transform:translateY(-4px); border-color:var(--line-strong); box-shadow:0 20px 46px -34px rgba(31,35,40,.36); }
  .resource-card-art {
    position:relative;
    overflow:hidden;
    min-height:205px;
    border-bottom:1px solid var(--line);
    background:var(--band);
  }
  .resource-card-image { display:block; width:100%; height:100%; min-height:205px; object-fit:cover; }
  .resource-card-art .art-label {
    position:absolute;
    z-index:3;
    left:18px;
    top:17px;
    padding:6px 9px;
    border:1px solid var(--line);
    border-radius:6px;
    background:var(--surface);
    color:var(--text-3);
    font-size:9.5px;
    font-weight:700;
    letter-spacing:.08em;
    text-transform:uppercase;
  }
  .resource-card-art--fallback { display:flex; flex-direction:column; justify-content:flex-end; gap:10px; padding:22px; background:linear-gradient(145deg, var(--band), var(--surface)); }
  .resource-card-art--fallback .art-label { position:static; }
  .resource-card-art-title { max-width:280px; color:var(--ink); font-family:var(--font-head); font-size:20px; line-height:1.12; letter-spacing:-.025em; font-weight:700; }
  .resource-card-art i, .resource-card-art b { position:absolute; display:block; }
  .art-ledger { background:linear-gradient(135deg, var(--band), var(--surface)); }
  .art-ledger i { left:18%; right:18%; height:34px; border:1px solid var(--line-strong); border-radius:6px; background:var(--surface); }
  .art-ledger i:nth-of-type(1) { top:33%; border-left:7px solid var(--accent); }
  .art-ledger i:nth-of-type(2) { top:52%; width:54%; }
  .art-ledger i:nth-of-type(3) { top:71%; width:42%; }

  .art-path { background:linear-gradient(90deg, var(--surface) 49.8%, var(--line) 49.8% 50.2%, var(--band) 50.2%); }
  .art-path i { top:48%; width:15px; height:15px; border:2px solid var(--ink); border-radius:50%; background:var(--surface); }
  .art-path i:nth-of-type(1) { left:18%; }
  .art-path i:nth-of-type(2) { left:calc(50% - 7px); background:var(--accent); }
  .art-path i:nth-of-type(3) { right:18%; }
  .art-path b { left:20%; right:20%; top:calc(48% + 7px); height:2px; background:var(--ink); }

  .art-radar { background:radial-gradient(circle at 68% 58%, var(--accent-soft) 0 17%, transparent 17.4%), var(--band); }
  .art-radar i { left:58%; top:30%; width:92px; height:92px; border:1px solid var(--line-strong); border-radius:50%; }
  .art-radar i:nth-of-type(2) { transform:scale(.67); }
  .art-radar i:nth-of-type(3) { transform:scale(.34); background:var(--accent); border-color:var(--accent); }
  .art-radar b { left:58%; top:76%; width:108px; height:1px; transform:rotate(-34deg); transform-origin:left; background:var(--ink); }

  .art-file { background:linear-gradient(145deg, var(--surface), var(--band)); }
  .art-file i { width:32%; height:48%; top:31%; border:1px solid var(--line-strong); border-radius:7px; background:var(--surface); }
  .art-file i:nth-of-type(1) { left:18%; transform:rotate(-6deg); }
  .art-file i:nth-of-type(2) { left:34%; top:24%; border-top:8px solid var(--accent); z-index:2; }
  .art-file i:nth-of-type(3) { left:50%; transform:rotate(6deg); }

  .art-checks { background:var(--band); }
  .art-checks i { left:23%; right:18%; height:34px; border-bottom:1px solid var(--line-strong); }
  .art-checks i::before { content:"✓"; position:absolute; left:0; bottom:7px; width:21px; height:21px; display:grid; place-items:center; border-radius:50%; background:var(--accent); color:var(--ink); font-size:12px; font-style:normal; font-weight:700; }
  .art-checks i:nth-of-type(1) { top:27%; }
  .art-checks i:nth-of-type(2) { top:48%; }
  .art-checks i:nth-of-type(3) { top:69%; }

  .art-tape { background:linear-gradient(180deg, var(--surface), var(--band)); }
  .art-tape i { top:29%; bottom:19%; width:11%; border:1px solid var(--line-strong); border-radius:5px 5px 2px 2px; background:var(--surface); }
  .art-tape i:nth-of-type(1) { left:20%; height:42%; top:auto; }
  .art-tape i:nth-of-type(2) { left:36%; height:29%; top:auto; background:var(--accent); border-color:var(--accent); }
  .art-tape i:nth-of-type(3) { left:52%; height:56%; top:auto; }
  .art-tape i:nth-of-type(4) { left:68%; height:68%; top:auto; }

  .resource-card-body { display:flex; flex-direction:column; flex:1; min-height:330px; padding:clamp(24px,2.8vw,34px); }
  .resource-card-kicker { display:flex; align-items:center; flex-wrap:wrap; gap:8px; color:var(--text-3); font-size:11px; font-weight:700; letter-spacing:.055em; text-transform:uppercase; }
  .resource-card-kicker .resource-type { color:var(--label-ink); }
  .resource-card-kicker > * + *::before { content:"/"; margin-right:8px; color:var(--line-strong); }
  .resource-card-body h3 { margin-top:22px; font-size:clamp(22px,2.25vw,28px); line-height:1.16; transition:color .18s; }
  .resource-card > a:hover h3 { color:var(--label-ink); }
  .resource-card-body p { margin-top:16px; color:var(--text-2); font-size:14.5px; line-height:1.65; }
  .resource-card-meta { display:flex; align-items:center; flex-wrap:wrap; gap:0; margin-top:auto; padding-top:28px; color:var(--text-3); font-size:12.5px; font-weight:600; }
  .resource-card-meta span { display:inline-flex; align-items:center; }
  .resource-card-meta span + span::before { content:""; width:3px; height:3px; margin:0 10px; border-radius:50%; background:var(--line-strong); }
  .resource-card-meta span:last-child { margin-left:auto; color:var(--label-ink); font-size:18px; transition:transform .18s ease; }
  .resource-card-meta span:last-child::before { display:none; }
  .resource-card > a:hover .resource-card-meta span:last-child { transform:translateX(4px); }
  .resource-tags { display:flex; flex-wrap:wrap; gap:7px; margin-top:auto; padding-top:22px; }
  .resource-tags span { border-radius:999px; background:var(--band); color:var(--text-3); padding:6px 9px; font-size:10.5px; font-weight:600; }

  .resource-empty { margin-top:34px; padding:44px 24px; border:1px dashed var(--line-strong); border-radius:16px; text-align:center; background:var(--band); }
  .resource-empty h3 { font-size:22px; }
  .resource-empty p { margin:9px 0 20px; color:var(--text-2); font-size:14.5px; }
  .resource-close { display:flex; align-items:center; justify-content:space-between; gap:34px; }
  .resource-close .eyebrow { display:block; margin-bottom:14px; }
  .resource-close h2 { max-width:780px; font-size:clamp(28px,4vw,46px); }
  .resource-close .btn { flex:none; }

  @media (max-width:940px){
    .resource-feature { grid-template-columns:1fr; }
    .resource-feature-art { min-height:330px; border-right:none; border-bottom:1px solid var(--line); }
    .resource-grid { grid-template-columns:1fr 1fr; }
  }
  @media (max-width:720px){
    .resource-hero { background:var(--page); }
    .resource-hero::after { right:-24%; width:88vw; height:88vw; opacity:.35; }
    .resource-library-head { align-items:flex-start; flex-direction:column; gap:14px; }
    .resource-result-count { align-self:flex-start; }
    .resource-grid { grid-template-columns:1fr; }
    .resource-card-art { min-height:220px; }
    .resource-close { align-items:flex-start; flex-direction:column; }
  }
  @media (max-width:520px){
    .resource-feature-art { min-height:270px; }
    .feature-node { width:38%; padding:14px; }
    .feature-node-a { left:5%; }
    .feature-node-b { right:5%; }
    .resource-filter-buttons { flex-wrap:nowrap; overflow-x:auto; padding:2px 2px 7px; scrollbar-width:none; }
    .resource-filter-buttons::-webkit-scrollbar { display:none; }
    .resource-filter-btn { flex:none; }
  }

  /* ════════════════════════════════════════════════════════════════════
     RESOURCE ARTICLE — editorial long-form reading layout
     ════════════════════════════════════════════════════════════════════ */
  .article-hero {
    position:relative;
    overflow:hidden;
    padding:clamp(48px,7vw,92px) 0 clamp(52px,7vw,96px);
    border-bottom:1px solid var(--line);
    background:
      radial-gradient(circle at 83% 18%, var(--accent-soft) 0 8%, transparent 8.2%),
      linear-gradient(90deg, transparent 0 68%, color-mix(in srgb, var(--line) 32%, transparent) 68% 68.08%, transparent 68.08%),
      var(--page);
  }
  .article-hero::after {
    content:"";
    position:absolute;
    right:4%;
    bottom:-26%;
    width:min(36vw,460px);
    height:min(36vw,460px);
    opacity:.48;
    background-image:radial-gradient(var(--line-strong) 1px, transparent 1px);
    background-size:20px 20px;
    -webkit-mask-image:linear-gradient(145deg, #000 10%, transparent 76%);
    mask-image:linear-gradient(145deg, #000 10%, transparent 76%);
    pointer-events:none;
  }
  .article-hero .wrap { position:relative; z-index:1; }
  .article-back { display:inline-flex; align-items:center; gap:8px; color:var(--text-2); font-size:14px; font-weight:600; transition:gap .18s,color .18s; }
  .article-back:hover { gap:12px; color:var(--ink); }
  .article-labels { display:flex; flex-wrap:wrap; gap:8px; margin-top:clamp(38px,5vw,62px); }
  .article-labels span { padding:7px 11px; border:1px solid var(--accent-line); border-radius:999px; background:var(--accent-soft); color:var(--label-ink); font-size:10.5px; font-weight:700; letter-spacing:.07em; text-transform:uppercase; }
  .article-hero h1 { max-width:1050px; margin-top:20px; font-size:clamp(40px,6vw,74px); line-height:1.04; }
  .article-hero h1 span { color:var(--accent); }
  .article-dek { max-width:800px; margin-top:26px; color:var(--text-2); font-size:clamp(18px,2.1vw,23px); line-height:1.62; font-style:italic; }
  .article-meta { display:flex; flex-wrap:wrap; gap:0; margin-top:30px; color:var(--text-3); font-size:13px; }
  .article-meta span { display:inline-flex; align-items:center; }
  .article-meta span + span::before { content:""; width:4px; height:4px; margin:0 12px; border-radius:50%; background:var(--line-strong); }

  .article-cover { padding:clamp(28px,4vw,48px) 0; background:var(--band); border-bottom:1px solid var(--line); }
  .article-cover figure { overflow:hidden; margin:0; border:1px solid var(--line-strong); border-radius:20px; background:var(--surface); box-shadow:0 24px 70px -52px rgba(31,35,40,.38); }
  .article-cover img { display:block; width:100%; height:auto; }

  .article-section { padding:clamp(56px,8vw,108px) 0; }
  .article-layout { display:grid; grid-template-columns:220px minmax(0,760px); justify-content:center; gap:clamp(50px,7vw,96px); align-items:start; }
  .article-rail { position:sticky; top:112px; display:flex; flex-direction:column; gap:3px; padding-top:4px; }
  .article-rail-title { display:block; margin-bottom:12px; color:var(--text-3); font-size:10.5px; font-weight:700; letter-spacing:.1em; text-transform:uppercase; }
  .article-rail a { position:relative; padding:9px 0 9px 15px; border-left:1px solid var(--line); color:var(--text-3); font-size:13px; line-height:1.4; transition:color .18s,border-color .18s; }
  .article-rail a:hover { color:var(--ink); border-color:var(--accent); }
  .article-body { min-width:0; }
  .article-body p { margin-bottom:24px; color:var(--text-2); font-size:17px; line-height:1.82; }
  .article-body .article-lead { color:var(--ink); font-size:20px; line-height:1.72; }
  .article-body h2 { scroll-margin-top:110px; margin:clamp(54px,7vw,78px) 0 22px; font-size:clamp(29px,3.6vw,42px); line-height:1.12; }
  .article-body h3 { scroll-margin-top:110px; margin:42px 0 18px; font-size:clamp(22px,2.8vw,31px); line-height:1.18; }
  .article-body ul,
  .article-body ol { margin:0 0 28px 22px; color:var(--text-2); }
  .article-body li { margin:9px 0; padding-left:4px; font-size:17px; line-height:1.7; }
  .article-body blockquote { margin:38px 0; padding:0 0 0 24px; border-left:4px solid var(--accent); color:var(--ink); font-size:22px; line-height:1.55; font-weight:600; }
  .article-body a { color:var(--label-ink); text-decoration:underline; text-underline-offset:3px; }
  .article-inline-image { margin:42px 0; }
  .article-inline-image img { display:block; width:100%; height:auto; border:1px solid var(--line); border-radius:14px; }
  .article-inline-image figcaption { margin-top:10px; color:var(--text-3); font-size:12.5px; line-height:1.5; }
  .article-callout { margin:clamp(48px,6vw,68px) 0; padding:clamp(28px,4vw,42px); border-left:5px solid var(--accent); background:var(--band); border-radius:0 16px 16px 0; }
  .article-callout .eyebrow { display:block; margin-bottom:14px; }
  .article-callout p { margin:0; color:var(--ink); font-size:clamp(20px,2.6vw,27px); line-height:1.5; font-weight:600; letter-spacing:-.015em; }
  .article-body .article-closing { margin-top:42px; padding-top:28px; border-top:1px solid var(--line-strong); color:var(--ink); font-size:20px; line-height:1.7; font-weight:600; }
  .article-end { margin-top:clamp(54px,7vw,78px); padding:clamp(30px,4vw,44px); border:1px solid var(--line); border-radius:18px; background:var(--band); }
  .article-end .eyebrow { display:block; margin-bottom:13px; }
  .article-end h3 { max-width:620px; font-size:clamp(22px,3vw,31px); line-height:1.2; }
  .article-end-actions { display:flex; flex-wrap:wrap; gap:10px; margin-top:26px; }

  @media (max-width:860px){
    .article-layout { grid-template-columns:1fr; gap:0; }
    .article-rail { position:static; display:none; }
  }
  @media (max-width:680px){
    .article-hero { background:var(--page); }
    .article-hero::after { right:-28%; bottom:-10%; width:92vw; height:92vw; opacity:.35; }
    .article-cover figure { border-radius:12px; }
    .article-body p { font-size:16.5px; line-height:1.76; }
    .article-body .article-lead { font-size:18.5px; }
  }
