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

:root {
    --ink: #0a0a0a;
    --muted: #4b5563;
    --line: rgba(15, 23, 42, 0.08);
    --panel: #ffffff;
    --soft: #f8fafc;
    --brand: #4f46e5;
    --brand-2: #0ea5e9;
    --brand-3: #14b8a6;
    --dark: #111827;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
    color: var(--ink);
    background: linear-gradient(135deg, #fafbfb 0%, #f4f7f8 100%);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body.modal-open {
    overflow: hidden;
}

.container,
.hero-container,
.nav-container {
    width: min(100%, 1400px);
    margin: 0 auto;
    padding: 0 32px;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    padding: 1.25rem 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.nav-logo,
.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--ink);
    text-decoration: none;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.logo-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    color: white;
    background: linear-gradient(135deg, var(--brand), var(--brand-2), var(--brand-3));
    box-shadow: 0 10px 30px rgba(79, 70, 229, 0.22);
}

.logo-text {
    font-size: 1.05rem;
}

.logo-image {
    display: block;
    width: auto;
    height: 42px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
}

.nav-link {
    color: #374151;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--brand), var(--brand-2));
    transition: width 0.25s ease;
}

.nav-link:hover::after,
.nav-link:focus::after {
    width: 100%;
}

button,
.secondary-button {
    font: inherit;
}

.cta-button,
.primary-button,
.secondary-button {
    border: 0;
    cursor: pointer;
    text-decoration: none;
    border-radius: 14px;
    font-weight: 700;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.cta-button,
.primary-button {
    color: white;
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    box-shadow: 0 10px 28px rgba(79, 70, 229, 0.25);
}

.cta-button {
    padding: 0.875rem 1.5rem;
}

.primary-button,
.secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 1rem 2rem;
    font-size: 1.05rem;
}

.secondary-button {
    color: var(--brand);
    background: white;
    border: 1px solid rgba(79, 70, 229, 0.2);
}

.cta-button:hover,
.primary-button:hover,
.secondary-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(79, 70, 229, 0.2);
}

.primary-button.large {
    min-height: 62px;
    padding: 1.125rem 2.4rem;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 11rem 0 8rem;
    background:
        radial-gradient(circle at 50% 10%, rgba(79, 70, 229, 0.12), transparent 38%),
        linear-gradient(135deg, #f8fafc 0%, #edf7f8 100%);
}

.hero-content {
    max-width: 1000px;
    text-align: center;
    margin: 0 auto;
}

.eyebrow {
    display: inline-flex;
    margin-bottom: 1.25rem;
    color: var(--brand);
    background: rgba(79, 70, 229, 0.08);
    border: 1px solid rgba(79, 70, 229, 0.14);
    border-radius: 999px;
    padding: 0.5rem 1rem;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-title {
    font-size: clamp(3.25rem, 8vw, 6.5rem);
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: -0.055em;
    margin-bottom: 2rem;
}

.gradient-text {
    display: inline-block;
    padding-bottom: 0.12em;
    background: linear-gradient(135deg, var(--brand), var(--brand-2), var(--brand-3));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-subtitle {
    max-width: 850px;
    margin: 0 auto 3rem;
    font-size: clamp(1.12rem, 2vw, 1.38rem);
    color: var(--muted);
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

section {
    padding: 7rem 0;
    scroll-margin-top: 112px;
}

.section-title {
    font-size: clamp(2.4rem, 5vw, 4rem);
    line-height: 1.05;
    text-align: center;
    font-weight: 850;
    letter-spacing: -0.04em;
    margin-bottom: 1.35rem;
}

.section-subtitle {
    max-width: 880px;
    margin: 0 auto 4.5rem;
    text-align: center;
    color: var(--muted);
    font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.use-cases,
.founders-section {
    background: white;
}

.features,
.clients {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.use-cases-grid,
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.use-case-card,
.feature-card,
.founder-profile,
.client-logo {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.use-case-card,
.feature-card {
    padding: 2rem;
}

.use-case-card:hover,
.feature-card:hover,
.founder-profile:hover,
.client-logo:hover {
    transform: translateY(-4px);
    border-color: rgba(79, 70, 229, 0.25);
    box-shadow: 0 18px 46px rgba(15, 23, 42, 0.09);
}

.use-case-icon {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.4rem;
    border-radius: 16px;
    color: var(--brand);
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(20, 184, 166, 0.08));
}

.use-case-icon svg {
    width: 30px;
    height: 30px;
}

.use-case-card h3,
.feature-card h3 {
    font-size: 1.22rem;
    line-height: 1.25;
    margin-bottom: 0.9rem;
}

.use-case-card p,
.feature-card p {
    color: var(--muted);
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1rem;
}

.client-logo {
    min-height: 104px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
    text-align: center;
    overflow: hidden;
}

.client-placeholder {
    color: #334155;
    font-weight: 800;
}

.client-image {
    display: block;
    width: auto;
    max-width: 160px;
    max-height: 70px;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.72);
    transition: filter 0.25s ease, transform 0.25s ease;
}

.client-logo:hover .client-image {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.04);
}

.experience-item {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0.65rem 1rem;
    border-radius: 999px;
    color: #3730a3;
    background: rgba(79, 70, 229, 0.08);
    border: 1px solid rgba(79, 70, 229, 0.14);
    font-size: 0.9rem;
    font-weight: 750;
}

.rolling-logos-container {
    overflow: hidden;
    margin: -1rem auto 4rem;
    padding: 1.2rem 0;
    max-width: 1120px;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.08), rgba(14, 165, 233, 0.05), rgba(20, 184, 166, 0.06));
    border: 1px solid rgba(79, 70, 229, 0.1);
}

.rolling-logos {
    display: flex;
    gap: 1.2rem;
    width: max-content;
    animation: logo-scroll 36s linear infinite;
}

.rolling-logos-container:hover .rolling-logos {
    animation-play-state: paused;
}

.logo-item {
    flex: 0 0 auto;
    width: 150px;
    height: 78px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(79, 70, 229, 0.12);
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.04);
}

.company-logo {
    display: block;
    width: auto;
    max-width: 118px;
    max-height: 50px;
    object-fit: contain;
    filter: grayscale(25%) opacity(0.88);
}

@keyframes logo-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-50% - 0.6rem));
    }
}

.founders-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
    max-width: 1180px;
    margin: 0 auto;
}

.founder-profile {
    padding: 2.4rem;
}

.profile-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.image-placeholder {
    flex: 0 0 auto;
    width: 68px;
    height: 68px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    font-weight: 850;
}

.profile-image {
    flex: 0 0 auto;
}

.founder-photo {
    display: block;
    width: 86px;
    height: 86px;
    border-radius: 22px;
    object-fit: cover;
    object-position: center;
    border: 4px solid rgba(79, 70, 229, 0.1);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
}

.role {
    display: inline-flex;
    margin-bottom: 0.6rem;
    color: var(--brand);
    font-weight: 850;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.profile-basic h3 {
    font-size: 1.65rem;
    line-height: 1.15;
}

.education {
    margin-top: 0.4rem;
    color: #64748b;
    font-weight: 600;
}

.experience-title {
    margin-bottom: 1rem;
    color: #475569;
    font-size: 0.82rem;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.experience-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.cta-section {
    color: white;
    text-align: center;
    background:
        radial-gradient(circle at 25% 20%, rgba(79, 70, 229, 0.35), transparent 36%),
        radial-gradient(circle at 75% 80%, rgba(20, 184, 166, 0.25), transparent 35%),
        var(--dark);
}

.cta-title {
    font-size: clamp(2.4rem, 5vw, 4rem);
    line-height: 1.05;
    font-weight: 850;
    letter-spacing: -0.04em;
    margin-bottom: 1.2rem;
}

.cta-subtitle {
    max-width: 720px;
    margin: 0 auto 2.5rem;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.2rem;
}

.cta-section .primary-button {
    color: var(--dark);
    background: white;
    box-shadow: 0 14px 38px rgba(255, 255, 255, 0.14);
}

.modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1200;
    background: rgba(15, 23, 42, 0.58);
    backdrop-filter: blur(8px);
    padding: 2rem;
}

.modal.is-open {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    width: min(100%, 520px);
    position: relative;
    background: white;
    border-radius: 22px;
    padding: 2.25rem;
    box-shadow: 0 24px 80px rgba(15, 23, 42, 0.28);
}

.close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 50%;
    background: #f1f5f9;
    color: #475569;
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
}

.modal-content h2 {
    font-size: 2rem;
    margin-bottom: 0.65rem;
}

.modal-content p {
    color: var(--muted);
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.15rem;
}

.form-group label {
    display: block;
    color: #334155;
    font-size: 0.92rem;
    font-weight: 750;
    margin-bottom: 0.45rem;
}

.form-group input {
    width: 100%;
    min-height: 52px;
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    padding: 0.85rem 1rem;
    font-size: 1rem;
    background: #f8fafc;
}

.form-group input:focus {
    outline: 3px solid rgba(79, 70, 229, 0.16);
    border-color: var(--brand);
    background: white;
}

.footer {
    background: #080b12;
    color: white;
    padding: 5rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-logo {
    color: white;
    align-self: start;
}

.footer-logo-image {
    display: block;
    width: auto;
    height: 52px;
    object-fit: contain;
    border-radius: 10px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
}

.footer-column h4 {
    margin-bottom: 1rem;
    font-size: 1rem;
}

.footer-column a {
    display: block;
    color: #9ca3af;
    text-decoration: none;
    margin-bottom: 0.65rem;
}

.footer-column a:hover,
.footer-column a:focus {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 1.5rem;
    color: #9ca3af;
    text-align: center;
}

@media (max-width: 1020px) {
    .nav-menu {
        gap: 1.25rem;
    }

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

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

@media (max-width: 760px) {
    .container,
    .hero-container,
    .nav-container {
        padding: 0 20px;
    }

    .navbar {
        position: sticky;
        padding: 0.9rem 0;
    }

    .nav-container {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .nav-menu {
        order: 3;
        width: 100%;
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 0.5rem 1rem;
        overflow: visible;
        padding: 0.25rem 0 0;
    }

    .nav-link {
        font-size: 0.88rem;
    }

    .nav-cta {
        margin-left: auto;
    }

    .cta-button {
        padding: 0.7rem 1rem;
    }

    .hero {
        min-height: auto;
        padding: 6rem 0 5rem;
    }

    .hero-title {
        font-size: clamp(2.7rem, 15vw, 4rem);
    }

    section {
        padding: 5rem 0;
        scroll-margin-top: 172px;
    }

    .use-cases-grid,
    .feature-grid,
    .clients-grid,
    .founders-grid,
    .footer-content,
    .footer-links {
        grid-template-columns: 1fr;
    }

    .profile-header {
        align-items: flex-start;
    }

    .modal {
        padding: 1rem;
    }
}

/* PV product site refinements */
.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
    gap: 4rem;
    align-items: center;
}

.hero-content {
    text-align: left;
    margin: 0;
}

.hero-title {
    max-width: 900px;
    letter-spacing: 0;
    overflow-wrap: anywhere;
}

.section-title,
.cta-title {
    letter-spacing: 0;
}

.hero-cta {
    justify-content: flex-start;
}

.hero-panel {
    border: 1px solid rgba(79, 70, 229, 0.16);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.11);
    padding: 1.25rem;
    backdrop-filter: blur(18px);
}

.panel-topline,
.audit-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    color: #475569;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.panel-topline strong {
    color: var(--brand);
}

.workflow-list {
    display: grid;
    gap: 0.9rem;
    margin: 1.25rem 0;
}

.workflow-row {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 0.9rem;
    align-items: center;
    padding: 1rem;
    border-radius: 18px;
    background: #f8fafc;
    border: 1px solid rgba(15, 23, 42, 0.07);
}

.workflow-row.urgent {
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.08), rgba(14, 165, 233, 0.06));
}

.workflow-row p {
    color: #64748b;
    font-size: 0.9rem;
    margin-top: 0.15rem;
}

.workflow-row em {
    color: var(--brand);
    font-style: normal;
    font-size: 0.82rem;
    font-weight: 800;
}

.status-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: var(--brand-3);
    box-shadow: 0 0 0 5px rgba(20, 184, 166, 0.12);
}

.audit-strip {
    justify-content: flex-start;
    flex-wrap: wrap;
}

.audit-strip span {
    padding: 0.45rem 0.7rem;
    border-radius: 999px;
    background: white;
    border: 1px solid rgba(15, 23, 42, 0.08);
}

.credibility-bar {
    padding: 1rem 0;
    color: white;
    background: #111827;
}

.credibility-bar p {
    text-align: center;
    font-weight: 800;
    letter-spacing: 0.01em;
}

.problem-section,
.platform-section,
.resources-section {
    background: white;
}

.product-section,
.solutions-section,
.trust-section {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.problem-grid,
.platform-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 4rem;
    align-items: start;
}

.section-kicker {
    margin-bottom: 0.85rem;
    color: var(--brand);
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-align: center;
    text-transform: uppercase;
}

.align-left {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
}

.problem-copy {
    display: grid;
    gap: 1rem;
    color: var(--muted);
    font-size: 1.18rem;
}

.product-grid,
.solution-grid,
.trust-grid,
.resources-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.product-card,
.solution-grid article,
.trust-grid article,
.resources-grid article,
.layer-stack article,
.step {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.product-card span,
.step span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    height: 34px;
    margin-bottom: 1rem;
    border-radius: 999px;
    color: white;
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    font-weight: 850;
}

.product-card h3,
.solution-grid h3,
.trust-grid h3,
.resources-grid h3,
.step h3 {
    margin-bottom: 0.65rem;
    font-size: 1.13rem;
    line-height: 1.25;
}

.product-card p,
.solution-grid p,
.trust-grid p,
.resources-grid li,
.layer-stack p,
.step p {
    color: var(--muted);
}

.steps {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1rem;
}

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

.layer-stack {
    display: grid;
    gap: 1rem;
}

.layer-stack article {
    border-left: 5px solid var(--brand);
}

.layer-stack strong {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 1.05rem;
}

.compliance-note {
    max-width: 880px;
    margin: 2rem auto 0;
    padding: 1.1rem 1.25rem;
    color: #334155;
    text-align: center;
    background: white;
    border: 1px solid rgba(79, 70, 229, 0.18);
    border-radius: 16px;
    font-weight: 700;
}

.resources-grid ul {
    display: grid;
    gap: 0.65rem;
    padding-left: 1.1rem;
}

@media (max-width: 1120px) {
    .hero-grid,
    .problem-grid,
    .platform-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

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

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

@media (max-width: 760px) {
    .hero-content,
    .align-left {
        text-align: center;
    }

    .hero-title {
        font-size: clamp(1.6rem, 8.5vw, 2.3rem);
        line-height: 1.08;
    }

    .section-title,
    .cta-title {
        font-size: clamp(2rem, 9vw, 3rem);
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-panel {
        padding: 0.9rem;
    }

    .workflow-row {
        grid-template-columns: auto 1fr;
    }

    .workflow-row em {
        grid-column: 2;
    }

    .product-grid,
    .solution-grid,
    .trust-grid,
    .resources-grid,
    .steps {
        grid-template-columns: 1fr;
    }

    .problem-copy {
        font-size: 1rem;
    }
}

@media (min-width: 1121px) {
    .container,
    .hero-container,
    .nav-container {
        max-width: 1240px;
    }

    .navbar {
        padding: 0.95rem 0;
    }

    .nav-container {
        display: grid;
        grid-template-columns: 180px 1fr auto;
    }

    .nav-logo {
        justify-self: start;
    }

    .nav-menu {
        justify-self: center;
        gap: 2rem;
    }

    .nav-cta {
        justify-self: end;
    }

    .hero {
        min-height: 760px;
        padding: 8.5rem 0 5.75rem;
    }

    .hero-grid {
        grid-template-columns: minmax(0, 720px) 430px;
        justify-content: space-between;
        gap: 3rem;
    }

    .hero-title {
        max-width: 720px;
        font-size: clamp(3.6rem, 4.6vw, 5.1rem);
        line-height: 1.08;
        overflow-wrap: normal;
    }

    .hero-subtitle {
        max-width: 660px;
        margin-left: 0;
        margin-right: 0;
        font-size: 1.22rem;
    }

    .hero-panel {
        justify-self: end;
        width: 100%;
        max-width: 430px;
    }

    .section-title {
        max-width: 920px;
        margin-left: auto;
        margin-right: auto;
        font-size: clamp(2.4rem, 3.4vw, 3.45rem);
        line-height: 1.1;
    }

    .section-title.align-left,
    .section-subtitle.align-left {
        margin-left: 0;
        margin-right: 0;
    }

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

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

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

    .product-card,
    .solution-grid article,
    .trust-grid article,
    .resources-grid article,
    .layer-stack article,
    .step {
        padding: 1.35rem;
    }

    .solution-grid article,
    .step {
        min-height: 210px;
    }

    .problem-grid,
    .platform-grid {
        grid-template-columns: 0.9fr 1.1fr;
        gap: 4.5rem;
    }
}

@media (min-width: 1121px) and (max-width: 1280px) {
    .solution-grid,
    .steps {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

/* Product-polish pass */
.hero {
    background:
        linear-gradient(90deg, rgba(79, 70, 229, 0.08), rgba(14, 165, 233, 0.05) 48%, rgba(20, 184, 166, 0.06)),
        linear-gradient(135deg, #f8fbff 0%, #eef7f7 100%);
}

.eyebrow {
    color: #4338ca;
    background: rgba(79, 70, 229, 0.1);
    border-color: rgba(79, 70, 229, 0.22);
}

.hero-title {
    color: #05070d;
}

.hero-panel {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 251, 255, 0.92));
    border: 1px solid rgba(79, 70, 229, 0.18);
    box-shadow:
        0 28px 90px rgba(15, 23, 42, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.panel-topline strong {
    color: #2563eb;
}

.workflow-row {
    background: rgba(255, 255, 255, 0.86);
}

.workflow-row.urgent {
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.11), rgba(14, 165, 233, 0.08));
    border-color: rgba(79, 70, 229, 0.18);
}

.status-dot {
    background: #14b8a6;
}

.product-card,
.solution-grid article,
.resources-grid article,
.step {
    position: relative;
    overflow: hidden;
}

.product-card::before,
.solution-grid article::before,
.resources-grid article::before,
.step::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--brand), var(--brand-2), var(--brand-3));
    opacity: 0;
    transition: opacity 0.25s ease;
}

.product-card:hover::before,
.solution-grid article:hover::before,
.resources-grid article:hover::before,
.step:hover::before {
    opacity: 1;
}

.platform-section {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(241, 248, 250, 0.96)),
        #ffffff;
}

.layer-stack article {
    border-left-color: #0ea5e9;
}

.trust-section {
    color: white;
    background:
        linear-gradient(135deg, rgba(79, 70, 229, 0.24), rgba(20, 184, 166, 0.12)),
        #0b1220;
    border: 0;
}

.trust-section .section-kicker,
.trust-section .section-title {
    color: white;
}

.trust-grid article {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.16);
    box-shadow: none;
}

.trust-grid h3 {
    color: white;
}

.trust-grid p {
    color: rgba(255, 255, 255, 0.76);
}

.compliance-note {
    color: white;
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(255, 255, 255, 0.18);
}

.governance-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 420px;
    gap: 3rem;
    align-items: center;
}

.governance-copy .section-kicker,
.governance-copy .section-title {
    text-align: left;
}

.governance-lede {
    max-width: 650px;
    margin: 0 0 2rem;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.18rem;
}

.governance-points {
    display: grid;
    gap: 0.9rem;
}

.governance-points article {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    align-items: start;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.07);
}

.governance-points span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: #0b1220;
    background: white;
    font-weight: 900;
    font-size: 0.78rem;
}

.governance-points h3 {
    color: white;
    margin-bottom: 0.25rem;
}

.governance-points p {
    color: rgba(255, 255, 255, 0.72);
}

.governance-panel {
    padding: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 26px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.08));
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.24);
}

.record-header,
.record-footer {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.82rem;
    font-weight: 850;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.record-header strong {
    color: #7dd3fc;
}

.record-body {
    display: grid;
    gap: 0.8rem;
    margin: 1.2rem 0;
}

.record-body div {
    padding: 1rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.92);
}

.record-body span {
    display: block;
    color: #64748b;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.record-body strong {
    display: block;
    margin-top: 0.2rem;
    color: #0f172a;
    font-size: 1.08rem;
}

.record-footer {
    display: block;
    line-height: 1.5;
}

.credibility-bar {
    background: #0b1220;
}

@media (min-width: 1121px) {
    .hero-grid {
        grid-template-columns: minmax(0, 690px) 430px;
    }

    .hero-title {
        max-width: 690px;
        font-size: clamp(3.8rem, 5vw, 5.4rem);
        letter-spacing: -0.02em;
    }

    .hero-subtitle {
        max-width: 640px;
    }
}

@media (max-width: 920px) {
    .governance-layout {
        grid-template-columns: 1fr;
    }

    .governance-copy .section-kicker,
    .governance-copy .section-title,
    .governance-lede {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .governance-panel {
        max-width: 520px;
        margin: 0 auto;
    }
}
