:root {
      --canvas: #F7F9FC;
      --surface: #FFFFFF;
      --ink: #0A1124;
      --ink-2: #4A5468;
      --ink-3: #828EA3;
      --line: #E6EBF3;
      --line-2: #EFF3F9;
      --brand: #7C3AED;
      --brand-ink: #6D28D9;
      --violet: #6D5EF8;
      --cyan: #14BBCC;
      --grad: linear-gradient(120deg, #8B5CF6 0%, #A855F7 48%, #C026D3 100%);
      --grad-soft: linear-gradient(120deg, rgba(139,92,246,.13), rgba(192,38,211,.12));
      --risk: #F5A524;
      --safe: #1FB257;
      --crit: #E5484D;
      --tint: rgba(124, 58, 237, .07);
      --sh-sm: 0 1px 2px rgba(10,17,36,.04), 0 2px 6px rgba(10,17,36,.06);
      --sh-md: 0 6px 16px rgba(10,17,36,.06), 0 16px 36px rgba(10,17,36,.08);
      --sh-lg: 0 10px 30px rgba(10,17,36,.08), 0 36px 70px rgba(10,17,36,.12);
      --sh-brand: 0 10px 28px rgba(124,58,237,.34);
      --ff: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
      --r: 16px;
      --r-lg: 24px;
      --mx: 1220px;
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
    body {
      background: var(--canvas); color: var(--ink); font-family: var(--ff);
      line-height: 1.6; overflow-x: hidden; -webkit-font-smoothing: antialiased;
      font-feature-settings: "ss01" 1; position: relative;
    }
    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; display: block; }
    ::selection { background: rgba(47, 91, 234, .16); }
    ::-webkit-scrollbar { width: 9px; }
    ::-webkit-scrollbar-track { background: var(--canvas); }
    ::-webkit-scrollbar-thumb { background: #cfd8e6; border-radius: 9px; border: 2px solid var(--canvas); }
    .num { font-variant-numeric: tabular-nums; }

    .wrap { width: 100%; max-width: var(--mx); margin: 0 auto; padding: 0 28px; position: relative; z-index: 2; }

    /* aurora + grid background */
    .bg-fx { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
    .aurora { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .55; }
    .a1 { top: -160px; right: -120px; width: 640px; height: 640px; background: radial-gradient(circle, rgba(109,94,248,.5), transparent 65%); animation: drift 22s ease-in-out infinite; }
    .a2 { top: 360px; left: -180px; width: 560px; height: 560px; background: radial-gradient(circle, rgba(20,187,204,.42), transparent 65%); animation: drift 26s ease-in-out infinite reverse; }
    .a3 { bottom: -200px; right: 10%; width: 520px; height: 520px; background: radial-gradient(circle, rgba(47,91,234,.34), transparent 65%); animation: drift 30s ease-in-out infinite; }
    @keyframes drift { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(40px,30px) scale(1.08); } }
    .grid-fx {
      position: fixed; inset: 0; z-index: 0; pointer-events: none;
      background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
      background-size: 56px 56px; opacity: .45;
      -webkit-mask-image: radial-gradient(ellipse 100% 70% at 50% 0%, #000 35%, transparent 80%);
      mask-image: radial-gradient(ellipse 100% 70% at 50% 0%, #000 35%, transparent 80%);
    }

    .eyebrow { font-size: .72rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--brand); display: inline-flex; align-items: center; gap: 9px; }
    .eyebrow::before { content: ""; width: 22px; height: 2px; border-radius: 2px; background: var(--grad); }

    .btn { display: inline-flex; align-items: center; gap: 9px; font-weight: 700; font-size: .95rem; line-height: 1; padding: 15px 24px; border-radius: 999px; cursor: pointer; border: 1px solid transparent; transition: transform .25s cubic-bezier(.2,.8,.2,1), box-shadow .25s, background-position .5s; white-space: nowrap; font-family: var(--ff); }
    .btn svg { width: 16px; height: 16px; }
    .btn-primary { background: var(--grad); background-size: 180% 180%; color: #fff; box-shadow: var(--sh-brand); }
    .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(47,91,234,.42); background-position: 100% 0; }
    .btn-ghost { background: var(--surface); color: var(--ink); border-color: var(--line); box-shadow: var(--sh-sm); }
    .btn-ghost:hover { transform: translateY(-2px); border-color: #cdd8ea; box-shadow: var(--sh-md); }

    /* nav */
    .nav-shell { position: fixed; top: 0; left: 0; right: 0; z-index: 99; height: 84px; background: rgba(247,249,252,0); backdrop-filter: saturate(180%) blur(0px); -webkit-backdrop-filter: saturate(180%) blur(0px); border-bottom: 1px solid transparent; transition: background .3s, backdrop-filter .3s, border-color .3s, box-shadow .3s; }
    body.nav-solid .nav-shell { background: rgba(247,249,252,.78); backdrop-filter: saturate(180%) blur(18px); -webkit-backdrop-filter: saturate(180%) blur(18px); border-bottom-color: var(--line); box-shadow: 0 4px 24px rgba(10,17,36,.05); }
    /* over dark hero: white nav */
    nav .n-links > a, nav .n-drop-btn { color: rgba(255,255,255,.82); }
    nav .n-links > a:hover, nav .n-drop-btn:hover { color: #fff; background: rgba(255,255,255,.1); }
    nav .n-links > a.active { color: #fff; }
    .n-logo img { transition: none; }
    .n-mob-btn span { background: #fff; }
    body.nav-solid .n-logo img { filter: none; }
    body.nav-solid nav .n-links > a, body.nav-solid nav .n-drop-btn { color: var(--ink-2); }
    body.nav-solid nav .n-links > a:hover, body.nav-solid nav .n-drop-btn:hover { color: var(--ink); background: var(--tint); }
    body.nav-solid nav .n-links > a.active { color: var(--ink); }
    body.nav-solid .n-mob-btn span { background: var(--ink); }
    nav { position: fixed; top: 0; left: 50%; transform: translateX(-50%); z-index: 100; display: flex; align-items: center; justify-content: space-between; padding: 13px 28px; width: 100%; max-width: var(--mx); }
    .n-logo img { height: 58px; width: auto; }
    .n-links { display: flex; align-items: center; gap: 2px; flex: 1; justify-content: center; }
    .n-links > a, .n-drop-btn { font-size: .92rem; font-weight: 600; color: var(--ink-2); padding: 9px 14px; border-radius: 10px; background: none; border: none; cursor: pointer; font-family: var(--ff); display: inline-flex; align-items: center; gap: 6px; transition: color .2s, background .2s; }
    .n-links > a:hover, .n-drop-btn:hover { color: var(--ink); background: var(--tint); }
    .n-links > a.active { color: var(--ink); }
    .n-drop { position: relative; }
    .n-drop-btn svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2.4; transition: transform .25s; }
    .n-drop:hover .n-drop-btn svg { transform: rotate(180deg); }
    .n-drop-menu { position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%) translateY(8px); background: var(--surface); border: 1px solid var(--line); border-radius: 18px; padding: 9px; width: 340px; box-shadow: var(--sh-lg); opacity: 0; visibility: hidden; transition: .26s; display: grid; gap: 2px; }
    .n-drop:hover .n-drop-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
    .n-drop-menu a { display: flex; align-items: center; gap: 12px; padding: 11px 13px; border-radius: 12px; transition: background .2s; }
    .n-drop-menu a:hover { background: var(--tint); }
    .dm-ic { width: 34px; height: 34px; border-radius: 10px; background: var(--grad-soft); display: grid; place-items: center; color: var(--brand); flex-shrink: 0; }
    .dm-ic svg { width: 17px; height: 17px; }
    .dm-tag { font-size: .64rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--brand); display: block; }
    .dm-name { font-size: .88rem; font-weight: 600; color: var(--ink); display: block; margin-top: 1px; }
    .n-cta { background: var(--grad); color: #fff !important; padding: 11px 19px !important; border-radius: 999px; box-shadow: var(--sh-brand); margin-left: 8px; transition: transform .2s; }
    .n-cta:hover { transform: translateY(-2px); }
    .n-mob-btn { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
    .n-mob-btn span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; }
    #n-mobile { position: fixed; inset: 84px 0 auto 0; z-index: 98; background: var(--surface); border-bottom: 1px solid var(--line); padding: 16px 28px 26px; display: none; flex-direction: column; gap: 2px; box-shadow: var(--sh-lg); }
    #n-mobile a { padding: 13px 8px; font-weight: 600; color: var(--ink-2); border-bottom: 1px solid var(--line-2); }
    #n-mobile .nm-cta { background: var(--grad); color: #fff; text-align: center; border-radius: 999px; margin-top: 14px; border: none; }

    /* hero */
    #hero { position: relative; padding: 158px 0 100px; overflow: hidden; background: radial-gradient(110% 110% at 62% 50%, #121a30 0%, #0a0e1c 44%, #060912 100%); }
    #hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 62% 50%, rgba(229,72,77,.16), transparent 36%), radial-gradient(circle at 90% 18%, rgba(47,91,234,.12), transparent 45%); opacity: 1; pointer-events: none; }
    #hero::after { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(120,140,210,.12) 1px, transparent 1px); background-size: 26px 26px; -webkit-mask-image: radial-gradient(ellipse 95% 90% at 60% 45%, #000 35%, transparent 88%); mask-image: radial-gradient(ellipse 95% 90% at 60% 45%, #000 35%, transparent 88%); opacity: .6; pointer-events: none; }
    #hero .h-badge { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.15); color: rgba(255,255,255,.82); }
    #hero .h-badge b { color: #fff; }
    #hero .h-h1 { color: #fff; }
    #hero .h-sub { color: rgba(255,255,255,.72); }
    #hero .h-trust .ht b { color: #fff; }
    #hero .h-trust .ht span { color: rgba(255,255,255,.55); }
    #hero .h-trust .sep { background: rgba(255,255,255,.16); }
    #hero .btn-ghost { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.22); box-shadow: none; }
    #hero .btn-ghost:hover { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.34); }
    .hero-inner { display: grid; grid-template-columns: 1.02fr 1fr; gap: 40px; align-items: center; }
    .h-badge { display: inline-flex; align-items: center; gap: 9px; padding: 7px 15px 7px 9px; border-radius: 999px; background: var(--surface); border: 1px solid var(--line); box-shadow: var(--sh-sm); font-size: .8rem; font-weight: 600; color: var(--ink-2); margin-bottom: 26px; }
    .h-badge b { color: var(--ink); }
    .h-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--safe); box-shadow: 0 0 0 4px rgba(31,178,87,.16); }
    .h-h1 { font-weight: 800; font-size: clamp(2.7rem, 5.4vw, 4.6rem); line-height: 1.02; letter-spacing: -.035em; }
    .h-h1 .grad { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
    .h-line { display: block; overflow: hidden; }
    .h-line > span { display: block; transform: translateY(110%); }
    .h-sub { font-size: 1.14rem; color: var(--ink-2); max-width: 540px; margin: 26px 0 30px; }
    .h-acts { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
    .h-trust { display: flex; align-items: center; gap: 20px; margin-top: 38px; flex-wrap: wrap; }
    .h-trust .ht { display: flex; flex-direction: column; }
    .h-trust .ht b { font-size: 1.5rem; font-weight: 800; letter-spacing: -.02em; }
    .h-trust .ht span { font-size: .8rem; color: var(--ink-3); }
    .h-trust .sep { width: 1px; height: 34px; background: var(--line); }

    /* hero stage cluster */
    .hero-stage { position: relative; }
    .stage-glow { position: absolute; inset: -6% -4%; background: var(--grad); filter: blur(70px); opacity: .35; border-radius: 50%; z-index: 0; }
    .float-card { background: var(--surface); border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--sh-lg); will-change: transform; }
    .float-card.cmd { position: relative; z-index: 3; width: 100%; padding: 20px; }
    .cmd-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
    .cmd-title { font-weight: 700; font-size: .95rem; }
    .live { display: inline-flex; align-items: center; gap: 7px; font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--safe); }
    .live i { width: 7px; height: 7px; border-radius: 50%; background: var(--safe); animation: pulse 1.8s infinite; }
    @keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(31,178,87,.4); } 50% { box-shadow: 0 0 0 6px rgba(31,178,87,0); } }
    .cmd-grid { display: grid; grid-template-columns: auto 1fr; gap: 18px; align-items: center; }
    .gauge-wrap { position: relative; width: 132px; height: 132px; }
    .gauge-wrap canvas { width: 132px; height: 132px; }
    .gauge-label { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; }
    .gauge-label b { font-size: 2rem; font-weight: 800; letter-spacing: -.03em; }
    .gauge-label span { font-size: .68rem; color: var(--ink-3); font-weight: 600; }
    .cmd-side { display: grid; gap: 10px; }
    .mini { display: flex; align-items: center; justify-content: space-between; background: var(--canvas); border: 1px solid var(--line-2); border-radius: 11px; padding: 9px 13px; }
    .mini .mk { font-size: .72rem; font-weight: 600; color: var(--ink-3); }
    .mini .mv { font-size: 1.15rem; font-weight: 800; letter-spacing: -.02em; }
    .mini .mv.risk { color: var(--risk); }
    #spark { width: 100%; height: 46px; display: block; }
    .cmd .divider { height: 1px; background: var(--line-2); margin: 16px 0 14px; }
    .vlabel { display: flex; align-items: center; justify-content: space-between; font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 8px; }
    .sev-pill { font-size: .62rem; font-weight: 800; letter-spacing: .04em; padding: 3px 9px; border-radius: 999px; text-transform: none; }
    .sev-pill.crit { background: rgba(229,72,77,.12); color: var(--crit); }
    .vrow { display: flex; align-items: center; gap: 10px; padding: 8px 0; font-size: .82rem; }
    .vrow + .vrow { border-top: 1px solid var(--line-2); }
    .vrow .sev { font-size: .58rem; font-weight: 800; letter-spacing: .04em; padding: 3px 6px; border-radius: 6px; flex-shrink: 0; }
    .vrow .sev.crit { background: rgba(229,72,77,.12); color: var(--crit); }
    .vrow .sev.high { background: rgba(245,165,36,.16); color: #C77B0E; }
    .vrow .cve { font-weight: 700; color: var(--ink); font-variant-numeric: tabular-nums; }
    .vrow .vtag { color: var(--ink-3); font-size: .76rem; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
    .vrow .cvss { margin-left: auto; font-weight: 800; color: var(--ink-2); font-variant-numeric: tabular-nums; flex-shrink: 0; }
    .sevbar { display: flex; gap: 2px; height: 8px; margin-top: 16px; }
    .sevbar i { display: block; height: 100%; border-radius: 3px; }
    .sevkey { display: flex; gap: 16px; margin-top: 9px; }
    .sevkey span { display: inline-flex; align-items: center; gap: 6px; font-size: .7rem; color: var(--ink-3); }
    .sevkey i { width: 8px; height: 8px; border-radius: 50%; }

    .float-card.toast { position: absolute; display: flex; align-items: center; gap: 11px; padding: 12px 15px; z-index: 5; font-size: .8rem; }
    .float-card.toast b { display: block; font-weight: 700; color: var(--ink); }
    .float-card.toast span { color: var(--ink-3); font-size: .74rem; }
    .float-card.toast .ic { width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center; font-weight: 800; flex-shrink: 0; }
    .t-risk { top: -18px; right: -16px; animation: bob 6s ease-in-out infinite; }
    .t-risk .ic { background: rgba(245,165,36,.15); color: var(--risk); }
    .t-safe { bottom: -18px; left: -16px; animation: bob 6s ease-in-out infinite 1.4s; }
    .t-safe .ic { background: rgba(31,178,87,.15); color: var(--safe); }
    @keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

    /* marquee */
    .mq { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,.6); padding: 24px 0; overflow: hidden; }
    .mq-label { text-align: center; font-size: .68rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 18px; }
    .mq-mask { -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
    .mq-track { display: flex; width: max-content; animation: scroll 34s linear infinite; }
    .mq:hover .mq-track { animation-play-state: paused; }
    .mq-track span { font-size: 1.06rem; font-weight: 700; color: var(--ink-2); white-space: nowrap; padding: 0 30px; display: inline-flex; align-items: center; gap: 30px; }
    .mq-track span::after { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--cyan); }
    @keyframes scroll { to { transform: translateX(-50%); } }

    /* sections */
    section.band { padding: 100px 0; position: relative; }
    .sec-head { max-width: 740px; margin-bottom: 56px; }
    .sec-head.center { margin-inline: auto; text-align: center; }
    .sec-head.center .eyebrow { justify-content: center; }
    .sec-title { font-weight: 800; font-size: clamp(2.1rem, 3.8vw, 3rem); line-height: 1.08; letter-spacing: -.035em; margin-top: 16px; }
    .sec-title .grad { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
    .sec-sub { font-size: 1.08rem; color: var(--ink-2); margin-top: 16px; }

    .reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s cubic-bezier(.2,.8,.2,1), transform .7s cubic-bezier(.2,.8,.2,1); }
    .reveal.in { opacity: 1; transform: none; }
    .reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; } .reveal.d3 { transition-delay: .24s; }

    /* gradient-border card helper */
    .gb { position: relative; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); }
    .gb::before { content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px; background: linear-gradient(140deg, rgba(109,94,248,.4), transparent 38%, transparent 62%, rgba(20,187,204,.4)); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; opacity: 0; transition: opacity .3s; pointer-events: none; }
    .gb:hover::before { opacity: 1; }

    /* problem stats */
    .stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
    .stat-card { padding: 34px; box-shadow: var(--sh-sm); transition: transform .3s, box-shadow .3s; overflow: hidden; }
    .stat-card:hover { transform: translateY(-5px); box-shadow: var(--sh-md); }
    .stat-card .big { font-weight: 800; font-size: 3.4rem; line-height: 1; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; letter-spacing: -.03em; }
    .stat-card .lbl { font-weight: 700; margin: 12px 0 8px; }
    .stat-card .desc { font-size: .92rem; color: var(--ink-2); }

    /* bento */
    .bento { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 184px; gap: 18px; }
    .tile { padding: 24px; overflow: hidden; position: relative; box-shadow: var(--sh-sm); transition: transform .3s, box-shadow .3s; display: flex; flex-direction: column; }
    .tile:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
    .tile .tic { width: 42px; height: 42px; border-radius: 12px; background: var(--grad-soft); color: var(--brand); display: grid; place-items: center; margin-bottom: auto; }
    .tile .tic svg { width: 21px; height: 21px; }
    .tile h4 { font-weight: 700; font-size: 1.08rem; margin-top: 16px; letter-spacing: -.01em; }
    .tile p { font-size: .88rem; color: var(--ink-2); margin-top: 6px; }
    .tile.wide { grid-column: span 2; }
    .tile.tall { grid-row: span 2; }
    .tile.feat { grid-column: span 2; grid-row: span 2; background: var(--ink); color: #fff; }
    .tile.feat::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 80% 10%, rgba(109,94,248,.6), transparent 45%), radial-gradient(circle at 10% 90%, rgba(20,187,204,.5), transparent 45%); opacity: .55; }
    .tile.feat > * { position: relative; z-index: 2; }
    .tile.feat .tic { background: rgba(255,255,255,.12); color: #fff; }
    .tile.feat h4 { font-size: 1.5rem; }
    .tile.feat p { color: rgba(255,255,255,.72); font-size: .96rem; }
    .tile.feat .mini-metric { margin-top: auto; display: flex; gap: 26px; }
    .tile.feat .mini-metric div b { font-size: 1.8rem; font-weight: 800; display: block; }
    .tile.feat .mini-metric div span { font-size: .76rem; color: rgba(255,255,255,.66); }

    /* products */
    .prod { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; padding: 36px 0; }
    .prod:nth-child(even) .prod-media { order: -1; }
    .prod-tag { font-size: .74rem; font-weight: 700; letter-spacing: .12em; color: var(--brand); text-transform: uppercase; }
    .prod h3 { font-weight: 800; font-size: 2rem; letter-spacing: -.03em; margin: 12px 0 14px; }
    .prod p { color: var(--ink-2); margin-bottom: 20px; }
    .prod ul { list-style: none; display: grid; gap: 11px; margin-bottom: 24px; }
    .prod li { display: flex; gap: 11px; font-size: .94rem; color: var(--ink-2); align-items: flex-start; }
    .prod li svg { width: 18px; height: 18px; color: var(--cyan); flex-shrink: 0; margin-top: 2px; }
    .prod-link { font-weight: 700; color: var(--brand); display: inline-flex; align-items: center; gap: 7px; transition: gap .2s; }
    .prod-link:hover { gap: 12px; }
    .panel { box-shadow: var(--sh-lg); overflow: hidden; }
    .panel-head { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; border-bottom: 1px solid var(--line-2); }
    .panel-head .t { font-weight: 700; font-size: .95rem; }
    .panel-spark { padding: 16px 20px 4px; }
    .panel-spark canvas { width: 100%; height: 56px; display: block; }
    .panel-body { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line-2); }
    .pb-cell { background: var(--surface); padding: 16px 20px; }
    .pb-cell .k { font-size: .66rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-3); }
    .pb-cell .v { font-weight: 800; font-size: 1.5rem; margin-top: 5px; letter-spacing: -.02em; }
    .pb-cell .v.risk { color: var(--risk); } .pb-cell .v.safe { color: var(--safe); } .pb-cell .v.brand { color: var(--brand); }
    .panel-foot { padding: 13px 20px; font-size: .72rem; font-weight: 600; color: var(--ink-3); border-top: 1px solid var(--line-2); text-align: center; letter-spacing: .04em; }

    /* roles */
    .role-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
    .role { padding: 30px; box-shadow: var(--sh-sm); transition: transform .3s, box-shadow .3s; }
    .role:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
    .role-top { display: flex; align-items: center; gap: 13px; margin-bottom: 8px; }
    .role-ic { width: 44px; height: 44px; border-radius: 13px; background: var(--grad-soft); color: var(--brand); display: grid; place-items: center; }
    .role-ic svg { width: 22px; height: 22px; }
    .role h4 { font-weight: 700; font-size: 1.2rem; }
    .role .tag { font-size: 1.04rem; font-weight: 700; margin: 6px 0 14px; }
    .role ul { list-style: none; display: grid; gap: 9px; }
    .role li { font-size: .9rem; color: var(--ink-2); display: flex; gap: 9px; }
    .role li::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--cyan); margin-top: 8px; flex-shrink: 0; }

    /* metrics */
    .metrics { background: var(--ink); border-radius: 28px; padding: 60px 40px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; position: relative; overflow: hidden; }
    .metrics::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 18% 0%, rgba(109,94,248,.55), transparent 45%), radial-gradient(circle at 92% 100%, rgba(20,187,204,.45), transparent 45%); opacity: .6; }
    .metrics::after { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px); background-size: 40px 40px; }
    .metric { position: relative; z-index: 2; text-align: center; }
    .metric .mn { font-weight: 800; font-size: 3rem; line-height: 1; color: #fff; letter-spacing: -.03em; }
    .metric .mn .u { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
    .metric .ml { color: rgba(255,255,255,.62); font-size: .92rem; margin-top: 12px; }

    /* timeline */
    .tl { display: grid; max-width: 780px; margin: 0 auto; }
    .tl-item { display: grid; grid-template-columns: 64px 1fr; gap: 22px; padding: 24px 0; border-bottom: 1px solid var(--line); }
    .tl-item:last-child { border-bottom: none; }
    .tl-num { font-weight: 800; font-size: 1.5rem; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
    .tl-item h4 { font-weight: 700; font-size: 1.15rem; margin-bottom: 7px; }
    .tl-item p { color: var(--ink-2); font-size: .95rem; }

    /* final cta */
    .fcta { background: var(--ink); border-radius: 30px; padding: 76px 40px; text-align: center; position: relative; overflow: hidden; box-shadow: var(--sh-lg); }
    .fcta::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 25% 0%, rgba(109,94,248,.6), transparent 45%), radial-gradient(circle at 80% 100%, rgba(20,187,204,.5), transparent 45%); opacity: .65; }
    .fcta::after { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px); background-size: 44px 44px; -webkit-mask-image: radial-gradient(circle at 50% 50%, #000, transparent 72%); mask-image: radial-gradient(circle at 50% 50%, #000, transparent 72%); }
    .fcta > * { position: relative; z-index: 2; }
    .fcta h2 { font-weight: 800; font-size: clamp(2.1rem, 4.2vw, 3.4rem); line-height: 1.06; letter-spacing: -.035em; color: #fff; }
    .fcta p { color: rgba(255,255,255,.82); max-width: 560px; margin: 18px auto 30px; font-size: 1.08rem; }
    .fcta .h-acts { justify-content: center; }
    .fcta .btn-primary { background: #fff; color: var(--brand-ink); box-shadow: 0 10px 30px rgba(0,0,0,.22); }
    .fcta .btn-ghost { background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.28); box-shadow: none; }
    .fcta .fine { color: rgba(255,255,255,.72); font-size: .78rem; font-weight: 600; margin-top: 22px; letter-spacing: .04em; }

    /* footer */
    footer { background: var(--surface); border-top: 1px solid var(--line); padding: 66px 0 30px; margin-top: 30px; position: relative; z-index: 2; }
    .foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr; gap: 36px; }
    .foot-brand img { height: 27px; margin-bottom: 16px; }
    .foot-brand .ent { font-size: .82rem; color: var(--ink-3); margin-bottom: 14px; font-weight: 600; }
    .foot-brand p { font-size: .9rem; color: var(--ink-2); max-width: 320px; margin-bottom: 16px; }
    .foot-brand a { display: block; font-size: .9rem; color: var(--ink-2); margin-bottom: 5px; }
    .foot-col h5 { font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 16px; }
    .foot-col a { display: block; font-size: .9rem; color: var(--ink-2); margin-bottom: 10px; transition: color .2s; }
    .foot-col a:hover { color: var(--brand); }
    .foot-bot { border-top: 1px solid var(--line); margin-top: 44px; padding-top: 24px; font-size: .85rem; color: var(--ink-3); }

    @media (max-width: 1000px) {
      .hero-inner { grid-template-columns: 1fr; gap: 60px; }
      .hero-stage { max-width: 520px; margin: 0 auto; }
      .prod, .prod:nth-child(even) .prod-media { grid-template-columns: 1fr; }
      .prod:nth-child(even) .prod-media { order: 0; }
      .bento { grid-template-columns: repeat(2, 1fr); }
      .tile.feat, .tile.wide { grid-column: span 2; }
      .metrics { grid-template-columns: repeat(2, 1fr); gap: 40px 20px; }
      .foot-grid { grid-template-columns: 1fr 1fr; }
      .foot-brand { grid-column: 1 / -1; }
      .n-links { display: none; } .n-cta { display: none; }
      .n-mob-btn { display: flex; }
    }
    @media (max-width: 600px) {
      .wrap { padding: 0 18px; }
      .stat-grid, .role-grid { grid-template-columns: 1fr; }
      .bento { grid-template-columns: 1fr; grid-auto-rows: auto; }
      .tile, .tile.feat, .tile.wide, .tile.tall { grid-column: auto; grid-row: auto; min-height: 168px; }
      .metrics { grid-template-columns: 1fr; }
      .foot-grid { grid-template-columns: 1fr; }
      .t-risk { right: -8px; } .t-safe { left: -8px; }
      .h-trust .sep { display: none; }
    }
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after { animation: none !important; transition: none !important; }
      .reveal { opacity: 1; transform: none; }
      .h-line > span { transform: none; }
    }
    /* comparison */
    .cmp-wrap { overflow-x: auto; border-radius: var(--r-lg); box-shadow: var(--sh-md); -webkit-overflow-scrolling: touch; }
    .cmp { display: grid; grid-template-columns: 1.5fr 1fr 1fr; min-width: 760px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
    .cmp > div { padding: 15px 22px; border-bottom: 1px solid var(--line-2); display: flex; align-items: center; gap: 10px; font-size: .92rem; }
    .cmp .chead { padding: 20px 22px; font-weight: 800; font-size: 1rem; border-bottom: 1px solid var(--line); align-items: flex-end; }
    .cmp .chead.feat { color: var(--ink-3); font-weight: 700; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; }
    .cmp .al { background: linear-gradient(180deg, rgba(47,91,234,.05), rgba(20,187,204,.03)); }
    .cmp .al-head { background: var(--grad); color: #fff; flex-direction: column; align-items: flex-start; gap: 3px; }
    .cmp .al-head small { font-weight: 700; font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; opacity: .85; }
    .cmp .trad-head { color: var(--ink-2); }
    .cmp .grp { grid-column: 1 / -1; background: var(--canvas); font-weight: 800; font-size: .76rem; letter-spacing: .1em; text-transform: uppercase; color: var(--brand); padding: 13px 22px; }
    .cmp .feat-cell { font-weight: 600; color: var(--ink); }
    .cmp .al svg, .cmp .trad svg { width: 17px; height: 17px; flex-shrink: 0; }
    .cmp .al { color: var(--ink); } .cmp .al svg { color: var(--safe); }
    .cmp .trad { color: var(--ink-3); } .cmp .trad svg { color: #C0C8D6; }
    .cmp .row-last { border-bottom: none; }
    .cmp-hint { display: none; text-align: center; font-size: .8rem; color: var(--ink-3); margin-top: 12px; }
    @media (max-width: 800px) { .cmp-hint { display: block; } }
    /* vulnerability web canvas (hero background) */
    #vweb { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; pointer-events: none; }
    /* SecureSight-style hero overrides */
    #hero { min-height: 100vh; display: flex; align-items: center; padding: 120px 0 90px; }
    #hero .hero-inner { display: block; }
    #hero .hero-copy { max-width: 560px; position: relative; z-index: 2; }
    .h-features { display: flex; gap: 30px; margin-top: 40px; flex-wrap: wrap; }
    .hf { display: flex; align-items: center; gap: 11px; font-size: .82rem; font-weight: 600; line-height: 1.25; color: rgba(255,255,255,.78); }
    .hf-ic { width: 38px; height: 38px; border-radius: 11px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); display: grid; place-items: center; color: #fff; flex-shrink: 0; }
    .hf-ic svg { width: 19px; height: 19px; }

    .vtooltip { position: absolute; top: 22%; left: 56%; width: 264px; z-index: 4; background: rgba(16,22,44,.86); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border: 1px solid rgba(229,72,77,.4); border-radius: 16px; padding: 17px 18px; box-shadow: 0 20px 50px rgba(0,0,0,.5), 0 0 30px rgba(229,72,77,.15); }
    .vtooltip::after { content: ""; position: absolute; bottom: -8px; left: 34px; width: 14px; height: 14px; background: rgba(16,22,44,.86); border-right: 1px solid rgba(229,72,77,.4); border-bottom: 1px solid rgba(229,72,77,.4); transform: rotate(45deg); }
    .vt-head { display: flex; align-items: center; justify-content: space-between; }
    .vt-id { font-weight: 700; font-size: 1rem; color: #fff; font-variant-numeric: tabular-nums; }
    .vt-badge { font-size: .62rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; color: #fff; background: var(--crit); padding: 3px 8px; border-radius: 999px; }
    .vt-cvss { color: #FF6B70; font-weight: 700; font-size: .82rem; margin-top: 3px; }
    .vt-desc { color: rgba(255,255,255,.62); font-size: .8rem; margin: 11px 0 12px; line-height: 1.5; }
    .vt-link { color: #FF6B70; font-weight: 700; font-size: .82rem; display: inline-flex; gap: 6px; }

    .scroll-ind { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 6px; font-size: .74rem; font-weight: 600; letter-spacing: .05em; color: rgba(255,255,255,.5); }
    .scroll-ind svg { width: 18px; height: 18px; animation: nudge 1.8s ease-in-out infinite; }
    @keyframes nudge { 0%,100% { transform: translateY(0); } 50% { transform: translateY(5px); } }

    .dash-band { padding-top: 96px; }
    .dash-wrap { position: relative; max-width: 880px; margin: 0 auto; }
    .dash-wrap .cmd { position: relative; z-index: 2; }
    .dash-wrap .toast { position: absolute; z-index: 3; }
    .dash-wrap .t-risk { top: -20px; right: -16px; }
    .dash-wrap .t-safe { bottom: -20px; left: -16px; }
    @media (max-width: 1000px) {
      #hero { min-height: auto; }
      .vtooltip { display: none; }
    }
    @media (max-width: 600px) {
      .h-features { gap: 16px; }
      .dash-wrap .t-risk { right: -6px; } .dash-wrap .t-safe { left: -6px; }
    }

/* ============ INNER PAGES (shared additions) ============ */
.page-hero { position: relative; overflow: hidden; padding: 150px 0 72px; background: radial-gradient(110% 130% at 70% -10%, #131a30 0%, #0a0e1c 46%, #060912 100%); text-align: center; }
.page-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 50% 0%, rgba(47,91,234,.22), transparent 50%), radial-gradient(circle at 85% 30%, rgba(20,187,204,.16), transparent 50%); pointer-events: none; }
.page-hero::after { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(120,140,210,.12) 1px, transparent 1px); background-size: 26px 26px; -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 20%, #000 35%, transparent 85%); mask-image: radial-gradient(ellipse 90% 80% at 50% 20%, #000 35%, transparent 85%); opacity: .55; pointer-events: none; }
.page-hero .wrap { position: relative; z-index: 2; }
.ph-eyebrow { display: inline-flex; align-items: center; gap: 9px; padding: 7px 15px; border-radius: 999px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); font-size: .74rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.82); margin-bottom: 24px; }
.ph-eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--brand-2); box-shadow: 0 0 0 4px rgba(20,187,204,.18); }
.page-hero h1 { font-weight: 800; font-size: clamp(2.4rem, 5vw, 4rem); line-height: 1.04; letter-spacing: -.035em; color: #fff; max-width: 880px; margin: 0 auto; }
.page-hero h1 .grad { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.page-hero p { font-size: 1.14rem; color: rgba(255,255,255,.72); max-width: 660px; margin: 22px auto 0; }
.page-hero .h-acts { justify-content: center; margin-top: 32px; }
.breadcrumb { font-size: .82rem; color: rgba(255,255,255,.5); margin-bottom: 18px; }
.breadcrumb a { color: rgba(255,255,255,.7); } .breadcrumb a:hover { color: #fff; }

/* feature grid (product pages) */
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feat-card { padding: 28px; box-shadow: var(--sh-sm); transition: transform .3s, box-shadow .3s; }
.feat-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.feat-card .fic { width: 46px; height: 46px; border-radius: 13px; background: var(--grad-soft); color: var(--brand); display: grid; place-items: center; margin-bottom: 16px; }
.feat-card .fic svg { width: 23px; height: 23px; }
.feat-card h3 { font-weight: 700; font-size: 1.15rem; letter-spacing: -.01em; margin-bottom: 8px; }
.feat-card p { font-size: .92rem; color: var(--ink-2); }

/* steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: s; }
.step { padding: 26px; box-shadow: var(--sh-sm); position: relative; }
.step .sn { font-weight: 800; font-size: 1.4rem; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.step h4 { font-weight: 700; font-size: 1.05rem; margin: 8px 0 7px; }
.step p { font-size: .9rem; color: var(--ink-2); }

/* article / legal content */
.doc { max-width: 820px; margin: 0 auto; }
.doc .meta { color: var(--ink-3); font-size: .9rem; margin-bottom: 28px; }
.doc h2 { font-weight: 800; font-size: 1.6rem; letter-spacing: -.02em; margin: 38px 0 14px; }
.doc h3 { font-weight: 700; font-size: 1.2rem; margin: 26px 0 10px; }
.doc p, .doc li { color: var(--ink-2); font-size: 1rem; line-height: 1.75; }
.doc p { margin-bottom: 16px; }
.doc ul, .doc ol { margin: 0 0 16px 22px; display: grid; gap: 8px; }
.doc a { color: var(--brand); font-weight: 600; }
.doc strong { color: var(--ink); }
.doc hr { border: none; border-top: 1px solid var(--line); margin: 32px 0; }

/* contact form */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: start; }
.cinfo h3 { font-weight: 800; font-size: 1.5rem; letter-spacing: -.02em; margin-bottom: 14px; }
.cinfo p { color: var(--ink-2); margin-bottom: 24px; }
.cinfo .crow { display: flex; gap: 14px; align-items: center; margin-bottom: 16px; }
.cinfo .crow .ci { width: 42px; height: 42px; border-radius: 12px; background: var(--grad-soft); color: var(--brand); display: grid; place-items: center; flex-shrink: 0; }
.cinfo .crow .ci svg { width: 20px; height: 20px; }
.cinfo .crow b { display: block; font-size: .95rem; } .cinfo .crow span { color: var(--ink-2); font-size: .9rem; }
.form-card { padding: 32px; box-shadow: var(--sh-md); }
.field { margin-bottom: 16px; } .field.row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label { display: block; font-size: .82rem; font-weight: 600; color: var(--ink-2); margin-bottom: 7px; }
.field input, .field select, .field textarea { width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: 11px; font-family: var(--ff); font-size: .95rem; color: var(--ink); background: var(--canvas); transition: border-color .2s, box-shadow .2s; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(47,91,234,.12); background: #fff; }
.field textarea { min-height: 110px; resize: vertical; }
.cb-row { display: flex; flex-wrap: wrap; gap: 10px; }
.cb-label { display: inline-flex; align-items: center; gap: 8px; padding: 9px 13px; border: 1px solid var(--line); border-radius: 10px; font-size: .88rem; cursor: pointer; transition: border-color .2s, background .2s; }
.cb-label:hover { border-color: #cdd8ea; } .cb-label input { accent-color: var(--brand); }
.form-message { display: none; padding: 13px 16px; border-radius: 11px; font-size: .9rem; margin-top: 8px; }
.form-message.success { background: rgba(31,178,87,.1); color: #178a47; }
.form-message.error { background: rgba(229,72,77,.1); color: var(--crit); }

/* blog/case grid */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.bc { overflow: hidden; box-shadow: var(--sh-sm); transition: transform .3s, box-shadow .3s; display: flex; flex-direction: column; }
.bc:hover { transform: translateY(-5px); box-shadow: var(--sh-md); }
.bc-img { aspect-ratio: 16/9; background: var(--grad-soft); object-fit: cover; width: 100%; }
.bc-body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.bc-cat { font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--brand); }
.bc h3 { font-weight: 700; font-size: 1.15rem; line-height: 1.3; margin: 8px 0 10px; letter-spacing: -.01em; }
.bc p { font-size: .92rem; color: var(--ink-2); flex: 1; }
.bc-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 16px; font-size: .82rem; color: var(--ink-3); }
.empty { text-align: center; color: var(--ink-3); padding: 60px 0; grid-column: 1/-1; }

@media (max-width: 1000px) {
  .feat-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .card-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .feat-grid, .steps, .card-grid { grid-template-columns: 1fr; }
  .field.row { grid-template-columns: 1fr; }
  .page-hero { padding-top: 120px; }
}

/* keep the compliance marquee scrolling even under reduced-motion (decorative) */
.mq-track { animation: scroll 34s linear infinite !important; }
@media (prefers-reduced-motion: reduce) { .mq:hover .mq-track { animation-play-state: paused !important; } }

/* ===== hero v4: copy + dark dashboard + radar scope ===== */
#radar { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; pointer-events: none; }
#hero .hero-inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
#hero .hero-copy { max-width: none; }
.h-bullets { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px; margin-top: 34px; max-width: 560px; }
.h-bullets > div { display: flex; gap: 10px; align-items: flex-start; font-size: .9rem; color: rgba(255,255,255,.74); }
.h-bullets svg { width: 18px; height: 18px; color: var(--brand-2); flex-shrink: 0; margin-top: 1px; }
.hero-stage { position: relative; }
.hero-stage .stage-glow { position: absolute; inset: -8% -6%; background: var(--grad); filter: blur(80px); opacity: .26; border-radius: 50%; z-index: 0; }
#hero .float-card.cmd { position: relative; z-index: 3; width: 100%; padding: 20px; }
#hero .float-card.toast { position: absolute; z-index: 5; }
#hero .t-risk { top: -18px; right: -16px; }
#hero .t-safe { bottom: -18px; left: -16px; }

/* ===== DARK product dashboards (all panels + command card) ===== */
.panel, .float-card.cmd { background: #0E1630; border-color: rgba(255,255,255,.09); box-shadow: 0 22px 60px rgba(8,12,28,.5); }
.panel-head, .cmd-head { border-bottom-color: rgba(255,255,255,.08); }
.panel-head .t, .cmd-title { color: #fff; }
.panel-body { background: rgba(255,255,255,.07); }
.pb-cell { background: rgba(14,21,46,.62); }
.pb-cell .k { color: rgba(255,255,255,.5); }
.pb-cell .v { color: #fff; }
.pb-cell .v.brand { color: #B79CF8; }
.panel-foot { color: rgba(255,255,255,.45); border-top-color: rgba(255,255,255,.08); }
.cmd .mini { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.08); }
.cmd .mini .mk { color: rgba(255,255,255,.55); }
.cmd .mini .mv { color: #fff; }
.gauge-label b { color: #fff; }
.gauge-label span { color: rgba(255,255,255,.5); }
.cmd .divider { background: rgba(255,255,255,.08); }
.vlabel { color: rgba(255,255,255,.55); }
.vrow + .vrow { border-top-color: rgba(255,255,255,.08); }
.vrow .cve { color: #fff; }
.vrow .vtag { color: rgba(255,255,255,.4); }
.vrow .cvss { color: rgba(255,255,255,.82); }
.sevkey span { color: rgba(255,255,255,.5); }
@media (max-width: 1000px) {
  #hero .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-stage { max-width: 520px; margin: 0 auto; }
}
@media (max-width: 600px) { .h-bullets { grid-template-columns: 1fr; } }

/* ===== hero v5: earth globe background (CyberShield style) ===== */
#hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; padding: 120px 0 90px; background: radial-gradient(58% 82% at 79% 50%, #070b18 0%, rgba(7,11,24,.86) 38%, rgba(7,11,24,.3) 66%, rgba(7,11,24,0) 82%), radial-gradient(120% 120% at 34% 48%, #2c3f72 0%, #1b2a54 32%, #0e1a3c 60%, #0a1230 82%, #060b1c 100%); }
#hero::after { display: none; }
#hero::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 150px; background: linear-gradient(180deg, rgba(7,12,34,.82), rgba(7,12,34,0)); z-index: 1; pointer-events: none; }
.earth-bg { position: absolute; top: 50%; right: -4%; transform: translateY(-50%); width: 88%; height: 124%; background: url('earth.jpg') no-repeat center center; background-size: contain; z-index: 0; mix-blend-mode: screen; filter: contrast(1.08) saturate(1.16) brightness(1.04); }
.hero-glow-p { }
.earth-fade { position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(8,14,34,.92) 0%, rgba(8,14,34,.7) 32%, rgba(8,14,34,.2) 60%, transparent 82%); pointer-events: none; }
#hero .wrap { position: relative; z-index: 2; }
#hero .hero-inner { display: block; }
#hero .hero-copy { max-width: 600px; }
#hero .h-badge { background: rgba(168,85,247,.1); border-color: rgba(168,85,247,.32); color: #e9d5ff; }
#hero .h-badge b { color: #fff; }
#hero .h-badge .dot { background: #c084fc; box-shadow: 0 0 0 4px rgba(192,132,252,.2); }
#hero .h-h1 { color: #fff; }
#hero .h-h1 .grad { background: linear-gradient(92deg, #a855f7 0%, #d946ef 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }
#hero .h-sub { color: rgba(255,255,255,.7); max-width: 520px; }
#hero .btn-primary { background: linear-gradient(120deg, #7c3aed, #a21caf); box-shadow: 0 10px 30px rgba(124,58,237,.42); }
#hero .btn-primary:hover { box-shadow: 0 14px 40px rgba(124,58,237,.55); }
#hero .btn-ghost { background: rgba(255,255,255,.05); color: #fff; border-color: rgba(255,255,255,.2); box-shadow: none; }
#hero .btn-ghost:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.34); }

.h-features4 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 30px; margin-top: 38px; max-width: 540px; }
.h-features4 .hf { display: flex; align-items: center; gap: 12px; font-size: .85rem; font-weight: 600; line-height: 1.25; color: rgba(255,255,255,.82); }
.h-features4 .hf-ic { width: 36px; height: 36px; border-radius: 10px; background: rgba(168,85,247,.12); border: 1px solid rgba(168,85,247,.25); display: grid; place-items: center; color: #c084fc; flex-shrink: 0; }
.h-features4 .hf-ic svg { width: 19px; height: 19px; }

.h-trust4 { margin-top: 40px; }
.ht4-label { font-size: .78rem; color: rgba(255,255,255,.5); font-weight: 600; }
.ht4-logos { display: flex; flex-wrap: wrap; gap: 24px; margin-top: 14px; }
.ht4-logos span { font-size: .95rem; font-weight: 700; letter-spacing: .02em; color: rgba(255,255,255,.65); }

.scroll-ind { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 8px; font-size: .74rem; font-weight: 600; letter-spacing: .05em; color: rgba(255,255,255,.5); }
.scroll-ind .mouse { width: 22px; height: 32px; }
.scroll-ind .mouse line { animation: scrolldot 1.8s ease-in-out infinite; }
@keyframes scrolldot { 0%,100% { opacity: .3; transform: translateY(0); } 50% { opacity: 1; transform: translateY(3px); } }

@media (max-width: 1000px) {
  #hero { min-height: auto; padding-top: 120px; }
  .earth-bg { width: 95%; right: -25%; opacity: .5; }
  .earth-fade { background: linear-gradient(0deg, rgba(8,14,34,.95) 6%, rgba(8,14,34,.4) 60%, rgba(8,14,34,.2) 100%); }
  #hero .hero-copy { max-width: 640px; }
}
@media (max-width: 600px) {
  .h-features4 { flex-direction: column; gap: 14px; align-items: flex-start; }
  .h-features4 .hf { padding: 0 !important; }
  .h-features4 .hf:not(:last-child)::after { display: none; }
}


/* nav CTA always visible (purple) in both nav states */
.n-cta, body.nav-solid .n-cta { background: linear-gradient(120deg, #7C3AED, #C026D3) !important; color: #fff !important; box-shadow: 0 8px 22px rgba(124,58,237,.4); }
.n-cta:hover, body.nav-solid .n-cta:hover { background: linear-gradient(120deg, #8B3DF2, #D02BE3) !important; }


/* ===== metallic card + circuit board behind every dark tile ===== */
.tile.feat, .metrics, .fcta, .panel {
  position: relative;
  background-color: #0c1228;
  background-image:
    linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,0) 40%, rgba(255,255,255,.025) 100%),
    url('circuit.svg'),
    linear-gradient(158deg, #171f3e 0%, #0f1531 50%, #0a1024 100%);
  background-size: cover, cover, cover;
  background-position: center, center, center;
  background-repeat: no-repeat;
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.10), inset 0 0 60px rgba(0,0,0,.25), 0 26px 64px rgba(6,10,24,.5);
}
/* keep dashboard content crisp above the texture */
.panel-head, .panel-body, .panel-foot, .panel-spark { position: relative; z-index: 2; }
.metric, .fcta > * { position: relative; z-index: 2; }
/* soft metallic sheen sweep across dark tiles */
.tile.feat::before, .panel::before {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,.05) 48%, transparent 62%);
}
.tile.feat > *, .tile.feat .tic { z-index: 2; }


/* footer Startup India recognised seal */
.foot-brand img.foot-cert { height: auto; width: 140px; border-radius: 50%; margin: 22px 0 0; display: block; box-shadow: 0 6px 18px rgba(10,17,36,.12); }


/* navbar Resources dropdown (mirrors footer) */
.res-menu { width: 470px; grid-template-columns: 1fr 1fr; }
.res-menu .dm-name { font-size: .86rem; margin-top: 0; }
@media (max-width: 1000px) { .res-menu { width: 340px; grid-template-columns: 1fr; } }
