:root {
    --bg: #f8fafc;
    --bg-alt: #f1f5f9;
    --bg-dark: #070b14;
    --bg-dark-mid: #0d1322;
    --ink: #0f172a;
    --ink-on-dark: #f8fafc;
    --muted: #475569;
    --muted-on-dark: rgba(203, 213, 225, 0.78);
    --panel: #ffffff;
    --panel-dark: rgba(255, 255, 255, 0.05);
    --line: #e2e8f0;
    --line-dark: rgba(255, 255, 255, 0.08);
    --brand: #e11d48;
    --brand-rgb: 225, 29, 72;
    --brand-deep: #be123c;
    --accent: #fb7185;
    --ok: #059669;
    --shadow: 0 16px 42px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 24px 56px rgba(15, 23, 42, 0.14);
    --shadow-dark: 0 16px 42px rgba(0, 0, 0, 0.40);
    --shadow-glow: 0 0 24px rgba(var(--brand-rgb), 0.35);
    --radius-xl: 24px;
    --radius-lg: 16px;
    --radius-md: 12px;
    --max: 1200px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--ink);
    background: var(--bg);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
video:focus-visible {
    outline: 3px solid rgba(var(--brand-rgb), 0.55);
    outline-offset: 2px;
    border-radius: 8px;
}

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

.text-center {
    text-align: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.78rem;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: var(--brand-deep);
    font-weight: 800;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    border: 1px solid rgba(var(--brand-rgb), 0.24);
    background: rgba(var(--brand-rgb), 0.08);
}

.eyebrow::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--ok);
    box-shadow: 0 0 0 6px rgba(5, 150, 105, 0.12);
    animation: pulseDot 2.2s infinite;
}

@keyframes pulseDot {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(0.78);
        opacity: 0.5;
    }
}

.section {
    padding: clamp(3.7rem, 7vw, 6.4rem) 0;
}

.section h2 {
    font-family: "Space Grotesk", sans-serif;
    letter-spacing: -0.03em;
    font-size: clamp(1.85rem, 4.2vw, 3rem);
    line-height: 1.08;
    margin: 0.9rem 0 1rem;
}

.section-lead {
    max-width: 720px;
    color: var(--muted);
    font-size: clamp(1rem, 1.9vw, 1.12rem);
}

/* Section backgrounds: light-dark alternating rhythm */
#overview {
    background: var(--bg-alt);
}

#search {
    background:
        radial-gradient(circle at 75% 20%, rgba(var(--brand-rgb), 0.12) 0%, transparent 40%),
        radial-gradient(circle at 15% 80%, rgba(239, 68, 68, 0.08) 0%, transparent 35%),
        var(--bg-dark-mid);
    color: var(--ink-on-dark);
    position: relative;
}

/* clean dark-to-light edge, no gradient band */

#search .eyebrow {
    color: #fca5a5;
    border-color: rgba(252, 165, 165, 0.3);
    background: rgba(var(--brand-rgb), 0.15);
}

#search h2,
#search h3 {
    color: #ffffff;
}

#search .section-lead {
    color: var(--muted-on-dark);
}

#search .search-left,
#search .search-right {
    background: var(--panel-dark);
    border-color: var(--line-dark);
    box-shadow: var(--shadow-dark);
}

#search .search-left p {
    color: var(--muted-on-dark);
}

#search .query-btn {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--line-dark);
    color: rgba(203, 213, 225, 0.9);
}

#search .query-btn.active {
    background: rgba(var(--brand-rgb), 0.18);
    border-color: rgba(var(--brand-rgb), 0.5);
    color: #fca5a5;
}

#search .search-card {
    border-color: var(--line-dark);
}

#search .search-card-head {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--line-dark);
    color: rgba(203, 213, 225, 0.9);
}

#search .lang-tags span {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--line-dark);
    color: rgba(203, 213, 225, 0.8);
}

#search .search-label {
    color: rgba(203, 213, 225, 0.6);
}

#search .search-value {
    color: #ffffff;
}

#search .result-list {
    color: rgba(203, 213, 225, 0.9);
}

#demo {
    background: var(--bg);
}

#enforcement {
    background: var(--bg-alt);
}

#specs {
    background: var(--bg);
}

#specs.section {
    padding-top: clamp(3.2rem, 5.5vw, 4.9rem);
    padding-bottom: clamp(3rem, 5.3vw, 4.8rem);
}

.integration-contact-surface {
    background:
        radial-gradient(circle at 25% 22%, rgba(var(--brand-rgb), 0.10) 0%, transparent 42%),
        radial-gradient(circle at 80% 68%, rgba(239, 68, 68, 0.08) 0%, transparent 38%),
        var(--bg-dark);
    position: relative;
}

#integration {
    color: var(--ink-on-dark);
    position: relative;
    background: transparent;
}

#integration.section {
    padding-bottom: clamp(2.1rem, 4.2vw, 3.2rem);
}

#integration .eyebrow {
    color: #fca5a5;
    border-color: rgba(252, 165, 165, 0.3);
    background: rgba(var(--brand-rgb), 0.15);
}

#integration h2 {
    color: #ffffff;
}

#integration .section-lead {
    color: var(--muted-on-dark);
}

#integration .trust-item {
    background: linear-gradient(155deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04));
    border-color: rgba(255, 255, 255, 0.16);
    box-shadow: 0 14px 30px rgba(5, 10, 22, 0.34);
    position: relative;
    overflow: hidden;
}

#integration .trust-item strong {
    color: #ffffff;
}

#integration .trust-item span {
    color: rgba(203, 213, 225, 0.9);
}

#integration .case {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.10), rgba(15, 23, 42, 0.24));
    border: 1px solid rgba(148, 163, 184, 0.2);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

#integration .case strong {
    color: #ffffff;
}

#integration .case p {
    color: var(--muted-on-dark);
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 80;
    padding: 0;
    border-bottom: 1px solid transparent;
    transition: background 280ms ease, border-color 280ms ease, color 280ms ease, box-shadow 280ms ease;
    background: transparent;
    color: #ffffff;
}

nav::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: transparent;
    transition: background 220ms ease;
}

nav:not(.scrolled) .nav-links {
    color: rgba(255, 255, 255, 0.88);
}

nav:not(.scrolled) .nav-links a:hover {
    color: #ffffff;
}

nav:not(.scrolled) .brand-logo {
    filter: brightness(0) invert(1);
}

nav.scrolled {
    background: rgba(255, 255, 255, 0.55);
    border-color: rgba(148, 163, 184, 0.16);
    backdrop-filter: blur(24px) saturate(1.8);
    -webkit-backdrop-filter: blur(24px) saturate(1.8);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
    color: var(--ink);
}

nav.scrolled::after {
    background: linear-gradient(90deg, rgba(148, 163, 184, 0), rgba(148, 163, 184, 0.5), rgba(148, 163, 184, 0));
}

nav.scrolled .nav-links {
    color: #334155;
}

nav.scrolled .nav-links a:hover {
    color: var(--brand-deep);
}

nav.scrolled.on-dark {
    background: rgba(7, 11, 20, 0.55);
    border-color: rgba(255, 255, 255, 0.10);
    box-shadow: none;
    color: #e2e8f0;
}

nav.scrolled.on-dark::after {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
}

nav.scrolled.on-dark .brand-logo {
    filter: brightness(0) invert(1);
}

nav.scrolled.on-dark .nav-links {
    color: rgba(226, 232, 240, 0.9);
}

nav.scrolled.on-dark .nav-links a:hover {
    color: #ffffff;
}

.nav-inner {
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.2rem;
    padding: 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    overflow: hidden;
}

/* --- Animated Network Background --- */
.pulse-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.pulse-line {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: flow-line linear infinite;
}

.pulse-node {
    fill: var(--brand);
    opacity: 0;
    animation: pulse-glow 4.5s ease-in-out infinite;
}

.pulse-1 { animation-duration: 24s; animation-delay: 0s; }
.pulse-2 { animation-duration: 28s; animation-delay: -5s; }
.pulse-3 { animation-duration: 22s; animation-delay: -10s; }
.pulse-4 { animation-duration: 26s; animation-delay: -3s; }
.pulse-5 { animation-duration: 30s; animation-delay: -8s; }
.pulse-6 { animation-duration: 23s; animation-delay: -13s; }

.pulse-node:nth-child(1) { animation-delay: 0s; }
.pulse-node:nth-child(2) { animation-delay: 1.2s; }
.pulse-node:nth-child(3) { animation-delay: 2.4s; }
.pulse-node:nth-child(4) { animation-delay: 3.6s; }

@keyframes flow-line {
    0% { stroke-dashoffset: 1000; }
    100% { stroke-dashoffset: -1000; }
}

@keyframes pulse-glow {
    0%, 100% { opacity: 0; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}

.brand-logo {
    height: 28px;
    width: auto;
    transition: filter 220ms ease;
}

nav.scrolled:not(.on-dark) .brand-logo {
    filter: none;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-weight: 600;
    color: #334155;
    font-size: 0.93rem;
}

.nav-links a {
    transition: color 200ms ease;
}

.nav-links a:hover {
    color: var(--brand-deep);
}

.nav-links a.active {
    color: var(--brand);
}

.btn,
button {
    border: none;
    cursor: pointer;
    font: inherit;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    border-radius: 11px;
    padding: 0.8rem 1.2rem;
    font-weight: 700;
    transition: transform 300ms cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 300ms ease, background 300ms ease;
}

.btn:hover {
    transform: translateY(-2px) scale(1.02);
}

.btn-primary {
    background: var(--brand);
    color: #fff;
    box-shadow: 0 8px 20px rgba(var(--brand-rgb), 0.25);
}

.btn-primary:hover {
    background: var(--brand-deep);
    box-shadow: 0 12px 28px rgba(var(--brand-rgb), 0.4);
}

.nav-cta-compact {
    padding: 0.63rem 1rem;
}

.btn-ghost {
    color: #1e293b;
    background: #f8fafc;
    border: 1px solid var(--line);
}

.hero .btn-ghost {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.24);
    color: #f2f8ff;
    backdrop-filter: blur(6px);
}

.menu-btn {
    display: none;
    background: #f8fafc;
    border: 1px solid rgba(var(--brand-rgb), 0.2);
    width: 38px;
    height: 38px;
    border-radius: 10px;
    font-size: 1.15rem;
    color: var(--brand-deep);
}

.hero {
    padding-top: clamp(5.8rem, 10vw, 8.2rem);
    padding-bottom: clamp(8rem, 12vw, 12rem);
    background:
        radial-gradient(circle at 20% 15%, rgba(var(--brand-rgb), 0.15) 0%, transparent 40%),
        radial-gradient(circle at 85% 20%, rgba(239, 68, 68, 0.10) 0%, transparent 35%),
        radial-gradient(circle 1px at center, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        var(--bg-dark);
    background-size: auto, auto, 32px 32px, auto;
    color: var(--ink-on-dark);
    position: relative;
}

/* clean dark-to-light edge, no gradient band */

.hero-grid {
    display: grid;
    gap: 2.2rem;
    align-items: center;
    grid-template-columns: 1.08fr 0.92fr;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-family: "Space Grotesk", sans-serif;
    letter-spacing: -0.04em;
    line-height: 0.98;
    margin: 1rem 0 1rem;
    font-size: clamp(2.3rem, 6.5vw, 4.9rem);
    max-width: 17ch;
    color: #ffffff;
}

.hero h1 .focus {
    color: var(--brand);
}

.hero p {
    max-width: 62ch;
    color: var(--muted-on-dark);
    font-size: clamp(1rem, 2vw, 1.1rem);
}

.section-lead-centered {
    margin-left: auto;
    margin-right: auto;
}

.search-prompt-title {
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.2rem;
}

.search-prompt-copy {
    margin-top: 0.35rem;
    color: var(--muted);
    font-size: 0.9rem;
}

.hero .eyebrow {
    color: #fca5a5;
    border-color: rgba(252, 165, 165, 0.3);
    background: rgba(var(--brand-rgb), 0.15);
}

.eyebrow-dark {
    color: #fca5a5;
    border-color: rgba(252, 165, 165, 0.3);
    background: rgba(var(--brand-rgb), 0.15);
}

.eyebrow-cta {
    color: #d4e9ff;
    border-color: rgba(255, 255, 255, 0.26);
    background: rgba(255, 255, 255, 0.1);
}

/* Hero news ticker — positioned in right column */
.hero-news-ticker {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.65rem 1.1rem 0.65rem 0.65rem;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.04));
    border: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 0.88rem;
    font-weight: 600;
    color: rgba(226, 232, 240, 0.92);
    margin-top: 1.2rem;
    transition: background 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
    backdrop-filter: blur(10px);
    animation: tickerGlow 4s ease-in-out infinite;
}

@keyframes tickerGlow {
    0%, 100% {
        border-color: rgba(255, 255, 255, 0.14);
        box-shadow: 0 0 0 0 rgba(var(--brand-rgb), 0);
    }
    50% {
        border-color: rgba(248, 113, 113, 0.22);
        box-shadow: 0 0 10px 1px rgba(var(--brand-rgb), 0.06);
    }
}

.hero-news-ticker:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(var(--brand-rgb), 0.4);
    box-shadow: 0 4px 12px rgba(var(--brand-rgb), 0.15);
}

.float-icon {
    animation: float 4s ease-in-out infinite;
}

.anim-delay-05s {
    animation-delay: 0.5s;
}

.anim-delay-1s {
    animation-delay: 1s;
}

.anim-delay-2s {
    animation-delay: 2s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-3px);
    }
}


.hero-news-badge {
    display: inline-block;
    padding: 0.22rem 0.6rem;
    border-radius: 999px;
    background: var(--brand);
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    flex-shrink: 0;
}

.hero-news-text {
    flex: 1;
    min-width: 0;
    line-height: 1.35;
}

.hero-news-arrow {
    color: #fca5a5;
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: transform 180ms ease;
}

.hero-news-ticker:hover .hero-news-arrow {
    transform: translateX(4px);
}

.hero-actions {
    margin-top: 1.7rem;
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.hero-stats {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.7rem;
}

.stat {
    background: var(--panel-dark);
    border: 1px solid var(--line-dark);
    border-radius: 13px;
    padding: 0.85rem 0.9rem;
    backdrop-filter: blur(8px);
}

.stat strong {
    display: block;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(1.22rem, 2.2vw, 1.5rem);
    letter-spacing: -0.03em;
    line-height: 1.1;
    color: #ffffff;
}

.stat span {
    color: var(--muted-on-dark);
    font-size: 0.79rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.hero-visual {
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-product-img {
    width: 100%;
    max-width: 540px;
    height: auto;
    display: block;
    filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.40)) drop-shadow(0 8px 24px rgba(var(--brand-rgb), 0.25));
    animation: heroFloat 4s ease-in-out infinite;
}

@keyframes heroFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

.video-showcase {
    margin: 2.5rem auto 0;
    max-width: 800px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow:
        0 20px 50px rgba(15, 23, 42, 0.12),
        0 8px 20px rgba(var(--brand-rgb), 0.08);
}

.video-showcase video {
    width: 100%;
    display: block;
    border-radius: var(--radius-xl);
}

.pillars-grid {
    margin-top: 2.1rem;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.pillar-card {
    background: #fff;
    border: 1px solid var(--line);
    border-top: 3px solid var(--brand);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    box-shadow: var(--shadow);
    min-height: 250px;
    position: relative;
    overflow: hidden;
    transition: transform 300ms cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 300ms ease, border-color 300ms ease;
}

.pillar-card::before {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(var(--brand-rgb), 0.10), transparent 70%);
    transition: opacity 300ms ease;
    opacity: 0.5;
}

.pillar-card:hover::before {
    opacity: 1;
}

.pillar-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    border-color: rgba(var(--brand-rgb), 0.2);
}

.pillar-icon-box {
    width: 48px;
    border-radius: 999px;
    background: rgba(148, 163, 184, 0.1);
    color: var(--muted);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

#querySpinner {
    width: 20px;
    height: 20px;
    transition: opacity 0.2s ease;
}

.hidden-spinner {
    opacity: 0;
    pointer-events: none;
}

.typing-cursor::after {
    content: '|';
    animation: blink 1s step-end infinite;
    color: var(--brand);
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

.query-chip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    height: 48px;
    margin-bottom: 1.5rem;
    position: relative;
    border-radius: 12px;
    background: rgba(var(--brand-rgb), 0.1);
    color: var(--brand);
}

.pillar-svg {
    width: 24px;
    height: 24px;
    transition: all 0.3s ease;
}

/* Pillar Hover Animations (refined) */
.pillar-card:hover .svg-iris {
    animation: look-around 2.5s ease-in-out infinite;
}

.pillar-card:hover .svg-node {
    animation: node-pulse 2s ease-in-out infinite alternate;
}

.right-node {
    animation-delay: 0.75s;
}

.pillar-card:hover .svg-pin {
    animation: pin-flash 1.5s ease-in-out infinite;
}

.pillar-card:hover .svg-core {
    fill: rgba(var(--brand-rgb), 0.12);
    transition: fill 0.3s ease;
}

.pillar-card:hover .svg-target {
    opacity: 1;
    animation: lock-on 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.pillar-card:hover .svg-magnify {
    animation: scan-rotate 4s linear infinite;
}

@keyframes look-around {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-1.5px); }
    75% { transform: translateX(1.5px); }
}

@keyframes node-pulse {
    0% { transform: scale(1); }
    100% { transform: scale(1.3); filter: drop-shadow(0 0 4px var(--brand)); }
}

@keyframes pin-flash {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

@keyframes lock-on {
    0% { transform: scale(2) rotate(30deg); opacity: 0; }
    100% { transform: scale(1) rotate(0deg); opacity: 1; }
}

@keyframes scan-rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Pillar staggered reveal */
.pillar-card:nth-child(2).reveal.is-visible {
    animation-delay: 80ms;
}

.pillar-card:nth-child(3).reveal.is-visible {
    animation-delay: 160ms;
}

.pillar-card:nth-child(4).reveal.is-visible {
    animation-delay: 240ms;
}


.pillar-kicker {
    font-family: "Space Grotesk", sans-serif;
    font-size: 0.76rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--brand-deep);
    font-weight: 700;
}

.pillar-card h3 {
    margin-top: 0.75rem;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.25rem;
    letter-spacing: -0.02em;
}

.pillar-card p {
    margin-top: 0.65rem;
    color: var(--muted);
    font-size: 0.93rem;
}

.pillar-metric {
    margin-top: 1rem;
    display: inline-block;
    border: 1px dashed rgba(var(--brand-rgb), 0.38);
    border-radius: 999px;
    padding: 0.32rem 0.7rem;
    font-weight: 800;
    font-size: 0.78rem;
    color: var(--brand-deep);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.search-wrap {
    margin-top: 1.8rem;
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 1rem;
}

.search-left,
.search-right {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    padding: 1.2rem;
}

.query-grid {
    margin-top: 0.9rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.6rem;
}

.query-btn {
    text-align: left;
    padding: 0.62rem 0.75rem;
    border-radius: 10px;
    border: 1px solid var(--line);
    background: #f8fafc;
    font-size: 0.84rem;
    color: #334155;
    font-weight: 700;
}

.query-btn.active {
    background: rgba(var(--brand-rgb), 0.1);
    border-color: rgba(var(--brand-rgb), 0.4);
    color: var(--brand-deep);
}

.search-card {
    border: 1px solid rgba(19, 25, 32, 0.1);
    border-radius: 12px;
    overflow: hidden;
}

.search-card-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 0.9rem;
    background: #f1f5f9;
    border-bottom: 1px solid var(--line);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #334155;
}

.lang-tags {
    display: flex;
    gap: 0.35rem;
}

.lang-tags span {
    border: 1px solid rgba(19, 25, 32, 0.12);
    border-radius: 999px;
    padding: 0.14rem 0.45rem;
    font-size: 0.72rem;
    background: #fff;
    letter-spacing: 0.05em;
}

.search-card-body {
    padding: 1rem;
    height: 232px;
    overflow: hidden;
}

.result-list {
    transition: opacity 200ms ease;
}

.result-list.fading {
    opacity: 0;
}

.search-label {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #475569;
    margin-bottom: 0.25rem;
}

.search-value {
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.08rem;
    letter-spacing: -0.01em;
    margin-bottom: 0.8rem;
}

.query-chip .search-value {
    margin-bottom: 0;
}

.result-list {
    list-style: none;
    display: grid;
    gap: 0.38rem;
    color: #334155;
    font-weight: 600;
    font-size: 0.88rem;
    min-height: 4.5rem;
}

.result-list li::before {
    content: "• ";
    color: var(--brand-deep);
    font-weight: 900;
}

.violation-grid {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
}

.violation-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: clamp(1.5rem, 3vw, 2rem);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.violation-card:hover {
    border-color: rgba(var(--brand-rgb), 0.2);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    transform: translateY(-4px);
}

.violation-icon {
    width: 32px;
    height: 32px;
    color: var(--brand);
    margin-bottom: 0.5rem;
}

.violation-svg {
    width: 48px;
    height: 48px;
    color: var(--brand);
    transition: color 0.3s ease;
}

.violation-card:hover .violation-svg {
    color: var(--brand-deep);
}

/* Stroke Drawing Animation (fast) */
.draw-path {
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
}

.reveal.is-visible .draw-path {
    animation: dash-draw 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.reveal.is-visible .draw-path.delay-1 {
    animation-delay: 0.15s;
}

.reveal.is-visible .draw-path.delay-2 {
    animation-delay: 0.3s;
}

.reveal.is-visible .draw-path.delay-3 {
    animation-delay: 0.45s;
}

@keyframes dash-draw {
    to {
        stroke-dashoffset: 0;
    }
}

/* Violation staggered reveal */
.violation-card:nth-child(2).reveal.is-visible {
    animation-delay: 80ms;
}

.violation-card:nth-child(3).reveal.is-visible {
    animation-delay: 160ms;
}

.violation-card:nth-child(4).reveal.is-visible {
    animation-delay: 240ms;
}

.violation-card:nth-child(5).reveal.is-visible {
    animation-delay: 320ms;
}

.violation-card:nth-child(6).reveal.is-visible {
    animation-delay: 400ms;
}

.violation-card h3 {
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.02rem;
    letter-spacing: -0.015em;
}

.violation-card p {
    color: var(--muted);
    font-size: 0.88rem;
    margin-top: 0.45rem;
}

.specs-layout {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: 0.88fr 1.12fr;
    gap: 1rem;
    align-items: start;
}

.spec-callouts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
}

.spec-pill {
    background: #fff;
    border: 1px solid var(--line);
    border-left: 3px solid var(--brand);
    border-radius: 14px;
    padding: 0.9rem 1rem;
    box-shadow: var(--shadow);
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    min-height: 122px;
}

/* --- Scroll Progress Bar --- */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--brand), var(--brand-deep));
    z-index: 1001;
    /* Above nav */
    pointer-events: none;
    transform-origin: left;
    transform: scaleX(0);
    transition: transform 0.1s ease-out;
}

.spec-icon {
    width: 28px;
    height: 28px;
    color: var(--brand);
    flex-shrink: 0;
    margin-top: 2px;
}

.spec-pill strong {
    font-size: 1.25rem;
    line-height: 1;
    letter-spacing: -0.02em;
    display: block;
    font-family: "Space Grotesk", sans-serif;
}

.spec-pill span {
    display: block;
    color: var(--muted);
    font-size: 0.82rem;
    margin-top: 0.35rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.spec-table-wrap {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: var(--shadow);
    overflow: auto;
    max-height: 430px;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th,
td {
    padding: 0.74rem 0.95rem;
    text-align: left;
    border-bottom: 1px solid var(--line);
    vertical-align: top;
    font-size: 0.87rem;
}

th {
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #ffffff;
    background: var(--bg-dark);
    position: sticky;
    top: 0;
    z-index: 1;
}

td:first-child {
    font-weight: 600;
}

tr:nth-child(even) td {
    background: #f8fafc;
}

tr:last-child td {
    border-bottom: none;
}

.trust-grid {
    margin-top: 1.8rem;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.8rem;
}

.trust-item {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: var(--shadow);
    padding: 1rem;
    transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.trust-item strong {
    display: block;
    font-size: 1.1rem;
    font-family: "Space Grotesk", sans-serif;
    letter-spacing: -0.02em;
    margin-bottom: 0.2rem;
}

.trust-item span {
    font-size: 0.79rem;
    color: var(--muted);
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.use-cases {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

.case {
    border: 1px dashed rgba(19, 25, 32, 0.2);
    border-radius: 12px;
    padding: 0.88rem 0.95rem;
    background: rgba(255, 255, 255, 0.7);
    transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.case strong {
    display: block;
    font-size: 0.92rem;
    font-family: "Space Grotesk", sans-serif;
}

.case p {
    margin-top: 0.28rem;
    font-size: 0.82rem;
    color: var(--muted);
}

#integration .trust-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(248, 113, 113, 0.55), rgba(248, 113, 113, 0.16), transparent);
}

#integration .trust-item:hover,
#integration .case:hover {
    transform: translateY(-2px);
    border-color: rgba(248, 113, 113, 0.34);
    box-shadow: 0 18px 34px rgba(5, 10, 22, 0.38);
}

.cta {
    padding: clamp(1.4rem, 3.2vw, 2.2rem) 0 clamp(3rem, 6vw, 5.2rem);
    position: relative;
    background: transparent;
}

#integration+.cta {
    margin-top: 0;
}

.cta-shell {
    background:
        linear-gradient(130deg, rgba(248, 250, 252, 0.05), rgba(7, 11, 20, 0.45)),
        radial-gradient(circle at 82% 18%, rgba(var(--brand-rgb), 0.26), transparent 38%),
        radial-gradient(circle at 16% 82%, rgba(190, 18, 60, 0.2), transparent 42%),
        var(--bg-dark-mid);
    color: #f8fafc;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 18px 44px rgba(3, 8, 20, 0.35);
    padding: clamp(1.6rem, 4vw, 2.4rem);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1rem;
    align-items: center;
}

.cta-shell h2 {
    margin: 0.6rem 0 0.8rem;
    font-family: "Space Grotesk", sans-serif;
    letter-spacing: -0.03em;
    font-size: clamp(1.8rem, 4vw, 2.7rem);
    line-height: 1.08;
}

.cta-shell p {
    color: rgba(231, 242, 255, 0.9);
    max-width: 60ch;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    align-items: stretch;
    min-width: 230px;
}

.cta .btn-primary {
    box-shadow: 0 12px 26px rgba(var(--brand-rgb), 0.30);
}

.cta .btn-ghost {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.34);
    color: #f2f8ff;
}

footer {
    padding: 2.5rem 0 2rem;
    background: var(--bg-dark);
    color: var(--muted-on-dark);
}

.footer-grid {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 2rem;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 2rem;
    color: var(--muted-on-dark);
    font-size: 0.87rem;
}

.footer-grid h4 {
    font-family: "Space Grotesk", sans-serif;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 0.7rem;
}

.footer-brand {
    margin-bottom: 0.5rem;
}

.footer-brand img {
    height: 22px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-grid ul {
    list-style: none;
    display: grid;
    gap: 0.35rem;
}

.footer-grid a {
    color: rgba(203, 213, 225, 0.7);
    transition: color 180ms;
}

.footer-grid a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 2rem;
    padding-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.8rem;
    color: var(--muted-on-dark);
    font-size: 0.82rem;
    flex-wrap: wrap;
}

.reveal {
    opacity: 0;
    transform: translateY(20px);
}

.reveal.is-visible {
    animation: revealFadeIn 540ms ease forwards;
}

@keyframes revealFadeIn {
    to {
        opacity: 1;
        transform: none;
    }
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
        animation: none;
    }
}

@media (max-width: 1080px) {

    .hero-grid,
    .search-wrap,
    .specs-layout,
    .cta-shell {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        min-height: auto;
    }

    .hero-news-ticker {
        max-width: 480px;
    }

    .spec-callouts {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .spec-table-wrap {
        max-height: none;
    }

    .pillars-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .trust-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-actions {
        min-width: 0;
        flex-direction: row;
        flex-wrap: wrap;
    }
}

@media (max-width: 780px) {
    .nav-links {
        position: absolute;
        top: 72px;
        right: 1rem;
        left: 1rem;
        padding: 0.9rem;
        border-radius: 14px;
        background: #f8fafc;
        border: 1px solid rgba(var(--brand-rgb), 0.18);
        box-shadow: var(--shadow);
        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.7rem;
        color: #334155 !important;
    }

    nav.scrolled.on-dark .nav-links,
    nav.on-dark .nav-links {
        background: rgba(7, 11, 20, 0.85);
        backdrop-filter: blur(24px) saturate(1.8);
        -webkit-backdrop-filter: blur(24px) saturate(1.8);
        border-color: rgba(255, 255, 255, 0.10);
        color: #e2e8f0 !important;
    }

    nav.scrolled.on-dark .nav-links a,
    nav.on-dark .nav-links a {
        color: #e2e8f0;
    }

    .nav-links.open {
        display: flex;
    }

    .menu-btn {
        display: inline-grid;
        place-items: center;
    }

    nav:not(.scrolled) .menu-btn {
        background: rgba(255, 255, 255, 0.12);
        border-color: rgba(255, 255, 255, 0.24);
        color: #ffffff;
    }

    .nav-cta {
        display: none;
    }

    .hero-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .pillars-grid,
    .violation-grid,
    .query-grid,
    .spec-callouts,
    .use-cases {
        grid-template-columns: 1fr;
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   Press Release Page
   ======================================== */

.press-hero {
    padding-top: clamp(6.5rem, 11vw, 9rem);
    padding-bottom: clamp(3.5rem, 6vw, 5rem);
    background:
        radial-gradient(circle at 20% 15%, rgba(var(--brand-rgb), 0.15) 0%, transparent 40%),
        radial-gradient(circle at 85% 20%, rgba(239, 68, 68, 0.10) 0%, transparent 35%),
        var(--bg-dark);
    color: var(--ink-on-dark);
}

.press-hero-center {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.press-hero .press-hero-title-center {
    max-width: none;
    margin-left: auto;
    margin-right: auto;
}

.press-hero-lead-dark {
    color: var(--muted-on-dark);
    margin: 0 auto;
}

.press-hero h1 {
    font-family: "Space Grotesk", sans-serif;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin: 1.2rem 0 1.5rem;
    font-size: clamp(1.7rem, 4.5vw, 3rem);
    max-width: 28ch;
    color: #ffffff;
}

.press-logos {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.press-logos img {
    height: 48px;
    width: auto;
    border-radius: 8px;
}

.press-dateline {
    font-size: 0.92rem;
    color: var(--muted-on-dark);
    font-weight: 600;
    letter-spacing: 0.02em;
}

/* Video section */
.press-video {
    margin: 2rem auto 0;
    max-width: 860px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow:
        0 24px 56px rgba(15, 23, 42, 0.16),
        0 8px 24px rgba(var(--brand-rgb), 0.10);
    background: #000;
}

.press-video-spaced {
    margin-bottom: 2rem;
}

.press-video video {
    width: 100%;
    display: block;
}

.press-video figcaption {
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
    color: var(--muted);
    text-align: center;
    background: var(--bg-alt);
    font-weight: 600;
}

/* Article body */
.press-article {
    max-width: 720px;
    margin: 0 auto;
    font-size: 1.02rem;
    line-height: 1.72;
    color: #334155;
}

.press-article p {
    margin-bottom: 1.15rem;
}

.press-article ul {
    margin: 0.5rem 0 1.15rem 1.2rem;
    display: grid;
    gap: 0.5rem;
}

.press-article li {
    line-height: 1.55;
}

.press-article h3 {
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.3rem;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin: 2rem 0 0.8rem;
}

.press-article em {
    display: block;
    border-left: 3px solid var(--brand);
    padding-left: 1rem;
    color: var(--muted);
    font-style: italic;
}

/* Stats strip */
.press-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.8rem;
    max-width: 860px;
    margin: 0 auto;
}

.press-stats .stat {
    background: var(--panel);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    text-align: center;
    padding: 1.2rem 0.9rem;
}

.press-stats .stat strong {
    color: var(--brand-deep);
    font-size: clamp(1.3rem, 2.5vw, 1.7rem);
}

.press-stats .stat span {
    color: var(--muted);
}

.press-stats-section.section {
    padding-top: 0;
    padding-bottom: clamp(3rem, 5vw, 4.5rem);
}

/* Gallery */
.press-gallery-section {
    background:
        radial-gradient(circle at 30% 30%, rgba(var(--brand-rgb), 0.10) 0%, transparent 42%),
        radial-gradient(circle at 80% 70%, rgba(239, 68, 68, 0.08) 0%, transparent 38%),
        var(--bg-dark);
    color: var(--ink-on-dark);
}

.press-gallery-section .eyebrow {
    color: #fca5a5;
}

.press-gallery {
    margin-top: 1.8rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.press-gallery-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: var(--shadow-dark);
    transition: transform 220ms ease, box-shadow 220ms ease;
}

.press-gallery-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.4);
}

.press-gallery-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
}

.press-gallery-card--medium {
    grid-column: 1 / -1;
    max-width: 520px;
    margin: 0 auto;
}

.press-gallery-caption {
    padding: 0.85rem 1rem;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(8px);
}

.press-gallery-caption strong {
    display: block;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1rem;
    color: #ffffff;
    letter-spacing: -0.01em;
}

.press-gallery-caption span {
    font-size: 0.8rem;
    color: var(--muted-on-dark);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.text-light {
    color: #ffffff;
}

/* Press CTA */
.press-cta-section {
    background: var(--bg-dark);
}

.press-cta-section--card {
    background: var(--bg);
}

.press-cta-shell {
    background:
        linear-gradient(130deg, rgba(248, 250, 252, 0.05), rgba(7, 11, 20, 0.45)),
        radial-gradient(circle at 82% 18%, rgba(var(--brand-rgb), 0.26), transparent 38%),
        radial-gradient(circle at 16% 82%, rgba(190, 18, 60, 0.2), transparent 42%),
        var(--bg-dark-mid);
    color: #f8fafc;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 18px 44px rgba(3, 8, 20, 0.35);
    padding: clamp(1.6rem, 4vw, 2.4rem);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1rem;
    align-items: center;
}

.press-cta-shell h2 {
    font-family: "Space Grotesk", sans-serif;
    letter-spacing: -0.03em;
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    line-height: 1.1;
    margin-bottom: 0.6rem;
    color: #ffffff;
}

.press-cta-shell p {
    color: rgba(231, 242, 255, 0.9);
    max-width: 52ch;
    font-size: 0.95rem;
}

.press-cta-actions--col {
    flex-direction: column;
    align-items: stretch;
    min-width: 210px;
}

@media (max-width: 780px) {
    .press-cta-shell {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .press-cta-actions--col {
        flex-direction: row;
        justify-content: center;
    }
}

.press-cta-actions {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}

.press-cta-back-btn {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.34);
    color: #f2f8ff;
}

/* Featured banner (main page teaser) */
.featured-banner {
    margin-top: 1.5rem;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.10), rgba(15, 23, 42, 0.30));
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    padding: 1.25rem 1.4rem;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 14px 30px rgba(5, 10, 22, 0.34);
    transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.featured-banner:hover {
    transform: translateY(-2px);
    border-color: rgba(248, 113, 113, 0.34);
    box-shadow: 0 18px 34px rgba(5, 10, 22, 0.42);
}

.featured-banner-logo {
    width: 64px;
    height: auto;
    border-radius: 6px;
    flex-shrink: 0;
}

.featured-banner-body {
    flex: 1;
    min-width: 0;
}

.featured-banner-body strong {
    display: block;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1rem;
    color: #ffffff;
    letter-spacing: -0.01em;
    line-height: 1.25;
}

.featured-banner-body p {
    margin-top: 0.3rem;
    font-size: 0.85rem;
    color: var(--muted-on-dark);
    line-height: 1.45;
}

.featured-banner-link {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    margin-top: 0.5rem;
    font-size: 0.84rem;
    font-weight: 700;
    color: #fca5a5;
    transition: color 180ms ease;
}

.featured-banner-link:hover {
    color: #ffffff;
}

/* Press hero subtitle */
.press-subtitle {
    max-width: 52ch;
    color: var(--muted-on-dark);
    font-size: clamp(1rem, 1.9vw, 1.12rem);
    margin-bottom: 1.5rem;
}

/* Press hub / listing — editorial rows */
.press-listing-section {
    background: var(--bg);
}

.press-listing-section.section {
    padding-top: clamp(2.5rem, 5vw, 4rem);
    padding-bottom: clamp(3.5rem, 6vw, 5.5rem);
}

.press-listing {
    max-width: 820px;
    margin: 0 auto;
}

.press-row {
    display: flex;
    align-items: flex-start;
    gap: 1.8rem;
    padding: 2rem 0;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
}

.press-row:first-child {
    padding-top: 0;
}

.press-row:last-child {
    border-bottom: none;
}

.press-row-logo {
    flex-shrink: 0;
    width: 72px;
    height: 72px;
    border-radius: 14px;
    background: #ffffff;
    border: 1px solid var(--line);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
}

.press-row-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.press-row-body {
    flex: 1;
    min-width: 0;
}

.press-row-date {
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 0.4rem;
}

.press-row-title {
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.35rem;
    letter-spacing: -0.02em;
    line-height: 1.25;
    color: var(--ink);
    margin-bottom: 0.5rem;
    transition: color 180ms ease;
}

.press-row:hover .press-row-title {
    color: var(--brand-deep);
}

.press-row-excerpt {
    font-size: 0.92rem;
    color: var(--muted);
    line-height: 1.6;
}

.press-row-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 0.75rem;
    font-size: 0.84rem;
    font-weight: 700;
    color: var(--brand-deep);
    transition: gap 180ms ease;
}

.press-row:hover .press-row-link {
    gap: 0.6rem;
}

/* Press page responsive */
@media (max-width: 780px) {
    .press-gallery {
        grid-template-columns: 1fr;
    }

    .press-gallery-card--medium {
        max-width: none;
    }

    .press-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .press-hero h1 {
        font-size: clamp(1.5rem, 5vw, 2.2rem);
    }

    .featured-banner {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
    }
}

@media (max-width: 600px) {
    .press-row {
        flex-direction: column;
        gap: 1rem;
    }

    .press-row-logo {
        width: 56px;
        height: 56px;
    }
}

@media (max-width: 480px) {
    .press-stats {
        grid-template-columns: 1fr;
    }

    .press-cta-actions {
        flex-direction: column;
        align-items: stretch;
    }
}

/* ── Share Sidebar ── */

.share-sidebar {
    position: fixed;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 90;
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 2rem;
    padding: 0.5rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
}

.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    border: none;
    background: transparent;
    color: var(--muted);
    cursor: pointer;
    transition: background 180ms ease, color 180ms ease, transform 180ms ease;
    text-decoration: none;
}

.share-btn:hover {
    transform: scale(1.12);
}

.share-btn--linkedin:hover {
    background: #0a66c2;
    color: #fff;
}

.share-btn--x:hover {
    background: var(--ink);
    color: var(--bg);
}

.share-btn--whatsapp:hover {
    background: #25d366;
    color: #fff;
}

.share-btn--copy:hover {
    background: var(--brand);
    color: #fff;
}

.share-btn--copy .share-check-icon {
    display: none;
}

.share-btn--copy.copied .share-copy-icon {
    display: none;
}

.share-btn--copy.copied .share-check-icon {
    display: block;
    color: var(--brand);
}

.share-btn--copy.copied {
    background: rgba(var(--brand-rgb), 0.08);
}

/* Mobile: horizontal bar at bottom */
@media (max-width: 780px) {
    .share-sidebar {
        left: 0;
        right: 0;
        bottom: 0;
        top: auto;
        transform: none;
        flex-direction: row;
        justify-content: center;
        gap: 1rem;
        border-radius: 1rem 1rem 0 0;
        padding: 0.75rem 1rem;
        padding-bottom: calc(0.75rem + env(safe-area-inset-bottom, 0px));
        border-bottom: none;
        border-left: none;
        border-right: none;
    }

    .share-btn {
        width: 2.75rem;
        height: 2.75rem;
    }
}