﻿/* wwwroot/css/attest.css */
:root {
    --bg0: #05070c;
    --bg1: #070b13;
    --card: #0b1220cc;
    --card2: #0b1220f2;
    --stroke: #1b2a44;
    --stroke2: #223454;
    --text: #e8edf7;
    --muted: #a7b2c8;
    --muted2: #7f8aa3;
    --accent: #6d6bff;
    --accent2: #8a5cff;
    --green: #20c997;
    --amber: #f3b74e;
    --blue: #6ea8fe;
    --shadow: 0 18px 50px rgba(0,0,0,.55);
    --radius: 18px;
}

* {
    box-sizing: border-box;
}
    * 1) body no longer owns the background */
    html, body {
        height: 100%;
    }

body {
    margin: 0;
    background: #0b1020; /* fallback only */
    font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji","Segoe UI Emoji";
    color: var(--text);
}

/* 2) Fixed background layer */
.bg-fixed {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background: radial-gradient(1200px 700px at 20% 0%, rgba(124,92,255,.20), transparent 60%), radial-gradient(900px 600px at 85% 10%, rgba(34,211,238,.18), transparent 55%), radial-gradient(900px 700px at 55% 90%, rgba(124,92,255,.10), transparent 60%), #0b1020;
    /* Helps reduce “shimmer” during scroll on some GPUs */
    transform: translateZ(0);
    will-change: transform;
}


.container {
    width: min(1120px, calc(100% - 56px));
    margin: 0 auto;
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(12px);
    background: linear-gradient(180deg, rgba(5,7,12,.78), rgba(5,7,12,.30));
    border-bottom: 1px solid rgba(34,52,84,.35);
}

.topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: .2px;
    user-select: none;
}
/* Topbar nav */
.topbar-nav {
    display: flex;
    align-items: center;
    gap: 18px;
}

.nav-link {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255,255,255,.85);
    text-decoration: none;
    padding: 8px 10px;
    border-radius: 10px;
}

    .nav-link:hover {
        background: rgba(255,255,255,.06);
        color: #fff;
    }

    .nav-link.active {
        background: rgba(124,92,255,.18);
        color: #fff;
    }

.brand__mark {
    font-weight: 800;
    font-size: 14px;
    padding: 8px 10px;
    border: 1px solid rgba(109,107,255,.35);
    border-radius: 12px;
    background: rgba(109,107,255,.10);
}

.brand__name {
    font-weight: 700;
    font-size: 14px;
    opacity: .92;
}

.brand--small .brand__mark {
    padding: 6px 9px;
    border-radius: 10px;
}

.brand--small .brand__name {
    font-size: 13px;
    opacity: .86;
}

.topbar__actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

/* Layout */
.grid {
    display: grid;
    gap: 22px;
}

.hero {
    grid-template-columns: 1.35fr .95fr;
    margin-top: 32px;
}

.grid.three {
    grid-template-columns: repeat(3, 1fr);
}

.grid.compare {
    grid-template-columns: 1fr 1fr;
}

@media (max-width: 980px) {
    .hero {
        grid-template-columns: 1fr;
    }

    .grid.three {
        grid-template-columns: 1fr;
    }

    .grid.compare {
        grid-template-columns: 1fr;
    }
}

/* Card */
.card {
    background: linear-gradient(180deg, rgba(11,18,32,.82), rgba(9,14,26,.92));
    border: 1px solid rgba(34,52,84,.55);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

    .card::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(600px 220px at 20% 0%, rgba(109,107,255,.10), transparent 60%), radial-gradient(500px 240px at 90% 10%, rgba(32,201,151,.06), transparent 60%);
        opacity: .85;
        pointer-events: none;
    }

    .card > * {
        position: relative;
    }

.hero-card {
    padding: 34px 34px 28px;
    min-height: 290px;
}

.focus-card {
    padding: 22px;
}

.hero-title {
    margin: 0 0 10px 0;
    font-size: 48px;
    line-height: 1.05;
    letter-spacing: -.8px;
}

.hero-subtitle {
    margin: 0 0 18px 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.6;
    max-width: 56ch;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.hero-microtrust {
    margin-top: 18px;
    color: var(--muted2);
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.sep {
    opacity: .55;
}

.dot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: rgba(109,107,255,.9);
    box-shadow: 0 0 0 4px rgba(109,107,255,.14);
}

.dot2 {
    background: rgba(32,201,151,.9);
    box-shadow: 0 0 0 4px rgba(32,201,151,.12);
}

.dot3 {
    background: rgba(243,183,78,.9);
    box-shadow: 0 0 0 4px rgba(243,183,78,.12);
}

.focus-title {
    margin: 10px 0 8px;
    font-size: 18px;
    letter-spacing: -.2px;
}

.focus-subtitle {
    margin: 0 0 14px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.55;
}

.focus-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mini-card {
    border: 1px solid rgba(34,52,84,.55);
    border-radius: 16px;
    padding: 12px 14px;
    background: rgba(7,10,18,.45);
}

.mini-text {
    margin-top: 8px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.45;
}

/* Pills */
.pill {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 650;
    letter-spacing: .2px;
    border: 1px solid rgba(34,52,84,.55);
    background: rgba(7,10,18,.45);
    color: var(--muted);
}

.pill-muted {
    opacity: .9;
}

.pill-green {
    color: rgba(32,201,151,.95);
    border-color: rgba(32,201,151,.25);
    background: rgba(32,201,151,.08);
}

.pill-amber {
    color: rgba(243,183,78,.95);
    border-color: rgba(243,183,78,.25);
    background: rgba(243,183,78,.08);
}

.pill-blue {
    color: rgba(110,168,254,.95);
    border-color: rgba(110,168,254,.25);
    background: rgba(110,168,254,.08);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    border-radius: 14px;
    text-decoration: none;
    border: 1px solid rgba(34,52,84,.65);
    color: var(--text);
    font-weight: 700;
    font-size: 14px;
    transition: transform .12s ease, background .12s ease, border-color .12s ease, box-shadow .12s ease;
    user-select: none;
}

    .btn:hover {
        transform: translateY(-1px);
        border-color: rgba(109,107,255,.45);
        box-shadow: 0 10px 30px rgba(0,0,0,.35);
    }

    .btn:active {
        transform: translateY(0px);
    }

.btn-primary {
    background: linear-gradient(135deg, rgba(109,107,255,.95), rgba(138,92,255,.92));
    border-color: rgba(109,107,255,.55);
}

    .btn-primary:hover {
        border-color: rgba(138,92,255,.65);
    }

.btn-secondary {
    background: rgba(9,14,26,.55);
}

.btn-ghost {
    background: rgba(9,14,26,.35);
    padding: 10px 14px;
    border-radius: 14px;
}

/* Sections */
.section {
    margin-top: 28px;
    padding-top: 10px;
}

.section-head {
    margin: 10px 0 14px;
}

    .section-head h2 {
        margin: 0 0 8px 0;
        font-size: 22px;
        letter-spacing: -.2px;
    }

    .section-head p {
        margin: 0;
        color: var(--muted);
        line-height: 1.65;
        max-width: 92ch;
    }
/* ===== Policy Stack: Make the flow obvious ===== */
.policy-header {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}
.policy-title {
    font-size: 24px; /* ↑ bigger */
    font-weight: 800;
    letter-spacing: -0.3px;
    line-height: 1.2;
    color: var(--text);
}
.policy-stack {
    position: relative;
    display: grid;
    gap: 20px; /* more breathing room between cards */
    margin-top: 22px;
    padding-left: 64px; /* room for the vertical rail */
}

    /* Vertical rail that runs through the whole stack */
    .policy-stack::before {
        content: "";
        position: absolute;
        left: 30px; /* rail position */
        top: 16px;
        bottom: 16px;
        width: 2px;
        background: linear-gradient( 180deg, rgba(124,92,255,.55), rgba(34,211,238,.45), rgba(124,92,255,.25) );
        box-shadow: 0 0 0 6px rgba(124,92,255,.06), 0 0 22px rgba(124,92,255,.18);
        border-radius: 999px;
    }

/* Cards align with the rail */
.policy-card {
    position: relative;
    border-radius: 22px;
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(16,26,51,.38);
    padding: 22px 22px;
}

    /* Node (dot) that "plugs" each card into the rail */
    .policy-card::before {
        content: "";
        position: absolute;
        left: -46px; /* aligns with rail at 30px */
        top: 50%;
        transform: translateY(-50%);
        width: 14px;
        height: 14px;
        border-radius: 999px;
        background: linear-gradient(135deg, rgba(124,92,255,1), rgba(34,211,238,1));
        box-shadow: 0 0 0 6px rgba(124,92,255,.12), 0 0 22px rgba(34,211,238,.18);
    }

/* Connector area between cards */
.policy-connector {
    position: relative;
    height: 28px; /* space between cards */
}

    /* Draw the connector line + arrowhead using pseudo-elements */
    .policy-connector::before {
        content: "";
        position: absolute;
        left: 30px; /* same as rail */
        top: 0;
        bottom: 0;
        width: 2px;
        background: linear-gradient(180deg, rgba(255,255,255,.12), rgba(124,92,255,.35));
        border-radius: 999px;
    }

    .policy-connector::after {
        content: "";
        position: absolute;
        left: 30px;
        bottom: 2px;
        transform: translateX(-50%);
        width: 0;
        height: 0;
        border-left: 7px solid transparent;
        border-right: 7px solid transparent;
        border-top: 10px solid rgba(34,211,238,.9); /* arrow color */
        filter: drop-shadow(0 0 12px rgba(34,211,238,.30));
    }

/* Make the badges feel more "step-like" */
.policy-badge {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: .6px;
    background: rgba(124,92,255,.12);
    border: 1px solid rgba(124,92,255,.35);
    color: var(--text);
    box-shadow: 0 0 0 4px rgba(124,92,255,.10), 0 0 22px rgba(124,92,255,.18);
}
.policy-desc {
    margin-top: 4px;
    font-size: 14px;
    line-height: 1.5;
    color: var(--muted);
}


/* Optional: emphasize the middle card subtly */
.policy-card:nth-of-type(3),
.policy-card:nth-of-type(5) {
    /* nth-of-type counts all elements; if you only have policy-card elements,
     you can remove this. Otherwise skip this rule. */
}

/* ===== Optional: subtle "follow-the-flow" pulse ===== */
@media (prefers-reduced-motion: no-preference) {
    .policy-stack::before {
        animation: railPulse 2.2s ease-in-out infinite;
    }

    .policy-connector::after {
        animation: arrowPulse 1.8s ease-in-out infinite;
    }
}

@keyframes railPulse {
    0%,100% {
        opacity: .85;
    }

    50% {
        opacity: 1;
    }
}

@keyframes arrowPulse {
    0%,100% {
        transform: translateX(-50%) translateY(0);
        opacity: .9;
    }

    50% {
        transform: translateX(-50%) translateY(2px);
        opacity: 1;
    }
}

/* Mobile: reduce left padding so rail doesn't feel cramped */
@media (max-width: 720px) {
    .policy-stack {
        padding-left: 52px;
    }

        .policy-stack::before {
            left: 24px;
        }

    .policy-card::before {
        left: -40px;
    }

    .policy-connector::before {
        left: 24px;
    }

    .policy-connector::after {
        left: 24px;
    }
}


/* Info cards */
.info-card {
    padding: 18px 18px 16px;
}

    .info-card h3 {
        margin: 8px 0 6px;
        font-size: 16px;
    }

    .info-card p {
        margin: 0;
        color: var(--muted);
        line-height: 1.55;
        font-size: 14px;
    }

.icon {
    width: 38px;
    height: 38px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(34,52,84,.55);
    background: rgba(7,10,18,.45);
    color: rgba(110,168,254,.95);
    font-weight: 800;
}

/* Evidence strip */
.evidence-strip {
    margin-top: 16px;
    padding: 14px 16px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

@media (max-width: 980px) {
    .evidence-strip {
        grid-template-columns: 1fr;
    }
}

.evidence-item {
    border: 1px solid rgba(34,52,84,.50);
    background: rgba(7,10,18,.35);
    border-radius: 14px;
    padding: 10px 12px;
}

    .evidence-item .k {
        display: block;
        color: var(--muted2);
        font-size: 12px;
        margin-bottom: 3px;
    }

    .evidence-item .v {
        display: block;
        font-size: 13px;
    }

.mono {
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
}

/* Compare */
.compare-card {
    padding: 18px 18px 16px;
}

.compare-card--accent {
    border-color: rgba(109,107,255,.55);
    background: linear-gradient(180deg, rgba(11,18,32,.86), rgba(9,14,26,.96));
}

.compare-title {
    font-weight: 900;
    margin: 0 0 10px 0;
    letter-spacing: -.2px;
}

.list {
    margin: 0;
    padding-left: 18px;
    color: var(--muted);
    line-height: 1.7;
}

    .list li {
        margin: 6px 0;
    }

.cta-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.fineprint {
    margin-top: 12px;
    color: rgba(167,178,200,.65);
    font-size: 12px;
    line-height: 1.6;
}

/* Footer */
.footer {
    margin: 34px 0 26px;
    padding-top: 18px;
    border-top: 1px solid rgba(34,52,84,.35);
}

.footer-inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
}

.footer-note {
    color: rgba(167,178,200,.72);
    font-size: 13px;
    margin-top: 10px;
    max-width: 70ch;
}

.footer-links {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

    .footer-links a {
        color: rgba(167,178,200,.78);
        text-decoration: none;
        font-size: 13px;
        border-bottom: 1px solid transparent;
    }

        .footer-links a:hover {
            color: var(--text);
            border-bottom-color: rgba(109,107,255,.55);
        }
/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 16px;
}

@media (max-width: 980px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}
.price-band {
    margin-top: 12px;
    padding-top: 10px;
    border-top: 1px dashed rgba(34,52,84,.45);
    font-size: 13px;
    color: var(--muted);
}

.band-list {
    margin: 6px 0 0;
    padding-left: 18px;
}

    .band-list li {
        margin: 4px 0;
    }


.price-card {
    padding: 18px 18px 16px;
}

.price-card--featured {
    border-color: rgba(110,168,254,.55);
    box-shadow: 0 22px 60px rgba(0,0,0,.62);
}

.price-top {
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(34,52,84,.35);
    margin-bottom: 12px;
}

.price-name {
    margin-top: 10px;
    font-weight: 900;
    letter-spacing: -.2px;
    font-size: 18px;
}

.price-amount {
    margin-top: 8px;
    font-weight: 900;
    font-size: 34px;
    letter-spacing: -.6px;
}

.price-currency {
    font-size: 18px;
    opacity: .9;
    margin-right: 2px;
    vertical-align: top;
}

.price-period {
    font-size: 13px;
    font-weight: 700;
    color: rgba(167,178,200,.70);
    margin-left: 6px;
}

.price-note {
    margin-top: 8px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.55;
    max-width: 52ch;
}

.price-list {
    margin: 0;
    padding-left: 18px;
    color: var(--muted);
    line-height: 1.75;
}

    .price-list li {
        margin: 7px 0;
    }

.price-cta {
    margin-top: 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.price-foot {
    margin-top: 12px;
    color: rgba(167,178,200,.70);
    font-size: 12px;
    line-height: 1.6;
}

.w-100 {
    width: 100%;
}

.pricing-disclaimer {
    margin-top: 12px;
    color: rgba(167,178,200,.55);
    font-size: 12px;
    line-height: 1.6;
}
/* ===== Animated Hero SVG (Attest flow) ===== */

.hero-card {
    position: relative;
    overflow: hidden; /* keeps the illustration clean */
}

.hero-illustration {
    margin-top: 18px;
    border-radius: 22px;
    border: 1px solid rgba(255,255,255,.08);
    background: rgba(255,255,255,.02);
    overflow: hidden;
}

/* Keep it subtle — the copy stays dominant */
.attest-svg {
    width: 100%;
    height: auto;
    display: block;
    opacity: 0.9;
}

/* Base styling */
.svg-box {
    stroke: rgba(124,92,255,.22);
    fill: rgba(16,26,51,.18);
}

.svg-evidence {
    stroke: rgba(34,211,238,.22);
    fill: rgba(16,26,51,.16);
}

.svg-hash {
    stroke: rgba(255,255,255,.10);
    fill: rgba(255,255,255,.06);
}

.svg-labels text {
    fill: rgba(234,240,255,.70);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1px;
    font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
}

.svg-line {
    stroke: rgba(34,211,238,.85);
    stroke-width: 2.25;
    stroke-linecap: round;
    filter: drop-shadow(0 0 8px rgba(34,211,238,.18));
}

.svg-arrow {
    stroke: rgba(34,211,238,.90);
    stroke-width: 2.25;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    filter: drop-shadow(0 0 10px rgba(34,211,238,.20));
}

.svg-check {
    stroke: rgba(52,211,153,.92);
    stroke-width: 3.25;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    filter: drop-shadow(0 0 12px rgba(52,211,153,.22));
}

.svg-dot {
    fill: rgba(124,92,255,.95);
    opacity: 0;
}

/* Draw animation */
.draw {
    stroke-dasharray: 260;
    stroke-dashoffset: 260;
    animation: drawLine 1.0s ease forwards;
}

/* Stagger timing (sequence reads AUP->DLP->AIP->Evidence->Check) */
.d1 {
    animation-delay: .10s;
}

.d2 {
    animation-delay: .22s;
}

.d3 {
    animation-delay: .34s;
}

.d4 {
    animation-delay: .46s;
}

.d5 {
    animation-delay: .60s;
}

.d6 {
    animation-delay: .78s;
}

.d7 {
    animation-delay: .90s;
}

.d8 {
    animation-delay: 1.05s;
    stroke-dasharray: 160;
    stroke-dashoffset: 160;
}

/* Pop dots after each node is "established" */
.pop {
    animation: popDot .55s ease forwards;
}

.p1 {
    animation-delay: .22s;
}

.p2 {
    animation-delay: .46s;
}

.p3 {
    animation-delay: .70s;
}

@keyframes drawLine {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes popDot {
    0% {
        transform: scale(.6);
        opacity: 0;
    }

    60% {
        transform: scale(1.2);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
    .draw {
        animation: none;
        stroke-dashoffset: 0;
    }

    .pop {
        animation: none;
        opacity: 1;
    }
}
/* ===== Governance Gap Section Layout ===== */
.gov-grid {
    display: grid;
    grid-template-columns: 1.35fr .65fr;
    gap: 26px;
    align-items: start;
    margin-top: 18px;
}

.gov-main h2 {
    margin: 0 0 10px;
    font-size: 26px;
    letter-spacing: -0.4px;
}

.gov-main h3 {
    margin: 18px 0 8px;
    font-size: 18px;
    letter-spacing: -0.2px;
    color: rgba(234,240,255,.92);
}

.gov-main p {
    margin: 0 0 12px;
    color: rgba(184,195,230,.92);
    line-height: 1.7;
}

.gov-main .lede {
    font-size: 17px;
    color: rgba(184,195,230,.95);
}

.bullets {
    margin: 8px 0 14px 18px;
    color: rgba(184,195,230,.92);
    line-height: 1.7;
}

    .bullets li {
        margin: 6px 0;
    }

.micro-callout {
    margin: 12px 0 6px;
    padding: 12px 14px;
    border-left: 3px solid rgba(124,92,255,.75);
    border-radius: 12px;
    background: rgba(124,92,255,.06);
    color: rgba(234,240,255,.86);
}

/* ===== Side quotes ===== */
.gov-aside {
    position: sticky;
    top: 90px; /* stays visible as they read */
    display: grid;
    gap: 14px;
}

.side-quote {
    position: relative;
    padding: 14px 14px 14px 16px;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 16px;
    background: rgba(255,255,255,.04);
    overflow: hidden;
}

    .side-quote::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(500px 220px at 0% 0%, rgba(124,92,255,.16), transparent 60%);
        pointer-events: none;
    }

.side-quote--alt::before {
    background: radial-gradient(500px 220px at 0% 0%, rgba(34,211,238,.14), transparent 60%);
}

.quote-mark {
    font-size: 26px;
    font-weight: 900;
    color: rgba(234,240,255,.65);
    line-height: 1;
}

.quote-text {
    margin-top: 6px;
    font-size: 15px;
    font-weight: 750;
    letter-spacing: -0.2px;
    color: rgba(234,240,255,.92);
    line-height: 1.45;
}

/* ===== Mini diagram ===== */
.mini-diagram {
    margin-top: 6px;
    padding: 14px;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 16px;
    background: rgba(0,0,0,.10);
}

.mini-title {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .6px;
    text-transform: uppercase;
    color: rgba(184,195,230,.9);
    margin-bottom: 10px;
}

.mini-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mini-pill {
    width: 44px;
    height: 30px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    font-weight: 800;
    font-size: 13px;
    color: rgba(234,240,255,.95);
    border: 1px solid rgba(124,92,255,.32);
    background: rgba(124,92,255,.10);
}

.mini-line {
    flex: 1 1 auto;
    height: 2px;
    background: linear-gradient(90deg, rgba(34,211,238,.75), rgba(124,92,255,.55));
    border-radius: 999px;
    position: relative;
}

    .mini-line::after {
        content: "";
        position: absolute;
        right: -2px;
        top: 50%;
        transform: translateY(-50%);
        width: 0;
        height: 0;
        border-left: 7px solid rgba(34,211,238,.8);
        border-top: 5px solid transparent;
        border-bottom: 5px solid transparent;
    }

.mini-caption {
    margin-top: 10px;
    font-size: 13px;
    line-height: 1.55;
    color: rgba(184,195,230,.88);
}

.mini-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.mini-badge {
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(255,255,255,.04);
    font-size: 12px;
    color: rgba(184,195,230,.92);
}

/* Mobile: stack and remove sticky */
@media (max-width: 980px) {
    .gov-grid {
        grid-template-columns: 1fr;
    }

    .gov-aside {
        position: static;
        top: auto;
    }
}
