@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@500;600&family=Sora:wght@600;700&display=swap");

:root {
    --bg: #f8fafc;
    --bg-deep: #f1f5f9;
    --surface: #ffffff;
    --surface-strong: #ffffff;
    --ink: #0f172a;
    --ink-soft: #334155;
    --line: #e2e8f0;
    --line-strong: #94a3b8;
    --accent-primary: #06b6d4;
    --accent-primary-hover: #0891b2;
    --accent-secondary: #ffb84d;
    --accent-ink: #042f2e;
    --shadow-soft: 0 18px 34px rgba(24, 32, 40, 0.08);
    --shadow-strong: 0 26px 50px rgba(7, 16, 24, 0.2);
    --font-display: "Sora", "Segoe UI", sans-serif;
    --font-ui: "Inter", "Segoe UI", sans-serif;
    --font-mono: "JetBrains Mono", "SFMono-Regular", Menlo, monospace;
}

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

body {
    margin: 0;
    line-height: 1.6;
    color: var(--ink);
    font-family: var(--font-ui);
    text-rendering: geometricPrecision;
    background:
        radial-gradient(
            980px 460px at 90% -8%,
            rgba(92, 234, 255, 0.12),
            transparent 64%
        ),
        radial-gradient(
            900px 440px at -8% -14%,
            rgba(255, 184, 77, 0.12),
            transparent 62%
        ),
        linear-gradient(180deg, var(--bg) 0%, var(--bg-deep) 52%, #e2e8f0 100%);
}

h1,
h2,
h3 {
    margin: 0;
    line-height: 1.12;
    letter-spacing: -0.02em;
    font-weight: 650;
    font-family: var(--font-display);
}

p {
    margin: 0;
}

a {
    color: inherit;
}

.container {
    width: min(1180px, 93vw);
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(126, 140, 165, 0.34);
    backdrop-filter: blur(12px);
    background: rgba(236, 240, 246, 0.92);
}

.nav-row {
    min-height: 76px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    text-decoration: none;
    color: var(--ink);
    font-weight: 700;
    letter-spacing: 0.02em;
    font-size: 1.02rem;
}

.nav-toggle {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    border: 0;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
}

.nav-toggle-label {
    display: none;
}

.nav-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.65rem;
}

.nav-links a {
    text-decoration: none;
    color: #415063;
    border: 1px solid transparent;
    border-radius: 999px;
    padding: 0.42rem 0.7rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--ink);
    border-color: rgba(122, 136, 156, 0.38);
    background: rgba(255, 255, 255, 0.5);
}

.nav-links a[aria-current="page"] {
    color: var(--ink);
    border-color: rgba(122, 136, 156, 0.4);
    background: rgba(255, 255, 255, 0.62);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
.nav-toggle:focus-visible + .nav-toggle-label {
    outline: 3px solid rgba(29, 131, 179, 0.68);
    outline-offset: 2px;
}

.button-link,
button[type="submit"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    border: 1px solid rgba(15, 36, 51, 0.2);
    padding: 0.66rem 1rem !important;
    font-family: var(--font-ui);
    font-weight: 600;
    text-decoration: none;
    line-height: 1.2;
    cursor: pointer;
    color: #f7fbff !important;
    background: linear-gradient(130deg, #1a425a, #142a39);
    box-shadow: 0 10px 22px rgba(13, 31, 45, 0.28);
    transition:
        transform 0.16s ease,
        box-shadow 0.16s ease,
        border-color 0.16s ease;
}

.button-link:hover,
button[type="submit"]:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 26px rgba(10, 25, 36, 0.28);
    border-color: rgba(18, 42, 58, 0.45);
}

.button-link.secondary {
    background: rgba(255, 255, 255, 0.72);
    color: var(--ink) !important;
    border: 1px solid rgba(125, 139, 157, 0.45);
    box-shadow: 0 9px 16px rgba(31, 43, 58, 0.08);
}

.eyebrow,
.section-kicker {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.11em;
    font-weight: 600;
    font-family: var(--font-mono);
}

.eyebrow {
    color: #9bbacf;
    font-size: 0.74rem;
}

.section-kicker {
    color: #5e6778;
    font-size: 0.72rem;
}

.lead {
    margin: 0;
    max-width: 68ch;
    color: var(--ink-soft);
}

.actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.72rem;
}

.home-section {
    margin: 1.55rem 0;
    animation: section-in 0.44s ease-out both;
}

.home-section:nth-of-type(1) {
    animation-delay: 0.04s;
}
.home-section:nth-of-type(2) {
    animation-delay: 0.08s;
}
.home-section:nth-of-type(3) {
    animation-delay: 0.12s;
}
.home-section:nth-of-type(4) {
    animation-delay: 0.16s;
}
.home-section:nth-of-type(5) {
    animation-delay: 0.2s;
}
.home-section:nth-of-type(6) {
    animation-delay: 0.24s;
}
.home-section:nth-of-type(7) {
    animation-delay: 0.28s;
}
.home-section:nth-of-type(8) {
    animation-delay: 0.32s;
}

@keyframes section-in {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-block {
    margin-top: 2.25rem;
    padding: clamp(1.2rem, 2.4vw, 2rem);
    border-radius: 22px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(179, 198, 222, 0.38);
    color: #f2f8ff;
    background:
        radial-gradient(
            54rem 26rem at 0% 0%,
            rgba(90, 123, 255, 0.22),
            transparent 65%
        ),
        radial-gradient(
            56rem 28rem at 100% 0%,
            rgba(116, 132, 159, 0.18),
            transparent 62%
        ),
        linear-gradient(138deg, #0f1f2d 0%, #101926 100%);
    box-shadow: var(--shadow-strong);
}

.hero-block::before {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.028) 0,
        rgba(255, 255, 255, 0.028) 1px,
        transparent 1px,
        transparent 42px
    );
    opacity: 0.48;
    pointer-events: none;
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 1.2rem;
    grid-template-columns: minmax(0, 1.14fr) minmax(0, 0.86fr);
}

.hero-copy h1 {
    margin: 0.58rem 0 0.92rem;
    max-width: 13.5ch;
    font-size: clamp(2rem, 5.4vw, 3.45rem);
    line-height: 1.02;
}

.hero-copy .lead {
    color: #d2deea;
    max-width: 56ch;
}

.hero-copy .actions {
    margin-top: 1.12rem;
}

.hero-copy .button-link {
    background: linear-gradient(130deg, #88a0ff, #6b82db);
    border-color: rgba(212, 224, 255, 0.4);
    color: #111f33 !important;
}

.hero-copy .button-link.secondary {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(223, 235, 244, 0.38);
    color: #eff7ff !important;
}

.hero-pills {
    margin: 1rem 0 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.hero-pills li {
    font-family: var(--font-mono);
    font-size: 0.76rem;
    color: #c6d9ea;
    border: 1px solid rgba(184, 212, 233, 0.4);
    border-radius: 999px;
    background: rgba(11, 30, 45, 0.5);
    padding: 0.3rem 0.7rem;
}

.hero-visual {
    display: grid;
    gap: 0.78rem;
    align-content: start;
}

.hero-logo-crop {
    min-height: 228px;
    border-radius: 14px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(186, 205, 225, 0.32);
    background:
        radial-gradient(
            38rem 17rem at 45% 120%,
            rgba(95, 124, 178, 0.25),
            transparent 65%
        ),
        linear-gradient(160deg, rgba(8, 20, 31, 0.8), rgba(8, 19, 31, 0.94));
}

.hero-trace {
    position: absolute;
    display: block;
    background: linear-gradient(
        95deg,
        rgba(167, 189, 241, 0.22),
        rgba(167, 189, 241, 0.72)
    );
    height: 1px;
}

.hero-trace-a {
    left: 1.6rem;
    right: 2.4rem;
    top: 4.1rem;
}

.hero-trace-b {
    left: 2.9rem;
    right: 1.4rem;
    top: 8.2rem;
}

.hero-node {
    position: absolute;
    width: 0.72rem;
    height: 0.72rem;
    border-radius: 999px;
    border: 1px solid rgba(201, 218, 245, 0.75);
    background: #90a7e6;
    box-shadow: 0 0 12px rgba(144, 167, 230, 0.48);
}

.hero-node-a {
    left: 1.55rem;
    top: 3.75rem;
}

.hero-node-b {
    left: 5.9rem;
    top: 7.78rem;
}

.hero-node-c {
    right: 2.4rem;
    top: 4.02rem;
}

.hero-meta-card {
    border: 1px solid rgba(184, 208, 227, 0.33);
    border-radius: 12px;
    background: rgba(8, 24, 38, 0.58);
    padding: 0.82rem 0.92rem;
}

.hero-meta-title {
    margin: 0;
    color: #a9cce5;
    font-size: 0.74rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-family: var(--font-mono);
}

.hero-meta-card ul {
    list-style: none;
    margin: 0.58rem 0 0;
    padding: 0;
    display: grid;
    gap: 0.4rem;
}

.hero-meta-card li {
    color: #d5e7f7;
    font-size: 0.9rem;
    padding-left: 0.88rem;
    position: relative;
}

.hero-meta-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.48rem;
    width: 0.35rem;
    height: 0.35rem;
    border-radius: 999px;
    background: var(--accent-primary);
}

.content-block {
    border: 1px solid var(--line);
    border-radius: 15px;
    padding: 1.6rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, var(--surface) 0%, #f1f5fa 100%);
    box-shadow: var(--shadow-soft);
}

.content-block::before {
    content: "";
    position: absolute;
    top: 0;
    left: 1.35rem;
    width: 4.6rem;
    height: 0.2rem;
    border-radius: 999px;
    background: var(--accent-primary);
}

.content-block h2,
.final-cta-block h2 {
    max-width: 24ch;
    font-size: clamp(1.36rem, 3vw, 2.08rem);
}

.problem-list,
.flow-list,
.signal-list {
    margin: 0.98rem 0 0;
    padding-left: 1.08rem;
    display: grid;
    gap: 0.5rem;
}

.problem-list li,
.flow-list li,
.signal-list li {
    color: var(--ink-soft);
}

.flow-list strong {
    color: #1e2c3b;
}

.split-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 0.9rem;
}

.signal-panel {
    background: linear-gradient(
        160deg,
        rgba(236, 242, 252, 0.96),
        rgba(241, 246, 252, 0.96)
    );
}

.teaser-grid,
.trust-grid {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.78rem;
}

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

.info-card {
    border: 1px solid rgba(149, 159, 169, 0.34);
    border-radius: 12px;
    padding: 1rem;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.86),
        rgba(247, 245, 238, 0.94)
    );
    overflow-wrap: anywhere;
    transition:
        transform 0.18s ease,
        border-color 0.18s ease,
        box-shadow 0.18s ease;
}

.info-card:hover {
    transform: translateY(-2px);
    border-color: rgba(88, 114, 132, 0.56);
    box-shadow: 0 12px 24px rgba(30, 42, 54, 0.12);
}

.info-card h3 {
    font-size: 1.02rem;
    color: #1b2937;
}

.info-card p {
    margin-top: 0.52rem;
    color: #455265;
}

.click-card {
    cursor: pointer;
}

.click-card:focus-visible {
    outline: 3px solid rgba(91, 124, 255, 0.62);
    outline-offset: 2px;
}

.card-link-label {
    margin-top: 0.85rem !important;
    color: #253f56 !important;
    font-family: var(--font-mono);
    font-size: 0.78rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.pillar-card .card-index {
    margin: 0 0 0.45rem;
    font-size: 0.68rem;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    color: #5a6678;
    font-family: var(--font-mono);
}

.trust-card {
    border-color: rgba(140, 162, 184, 0.36);
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.text-link {
    color: #21384a;
    text-decoration: none;
    font-weight: 600;
    font-family: var(--font-mono);
    font-size: 0.84rem;
    letter-spacing: 0.02em;
}

.text-link:hover {
    text-decoration: underline;
}

.final-cta-block {
    padding: 1.9rem;
    margin-bottom: 2.45rem;
    border-radius: 17px;
    border: 1px solid rgba(149, 173, 199, 0.44);
    color: #edf5ff;
    background:
        radial-gradient(
            56rem 22rem at 10% 8%,
            rgba(91, 124, 255, 0.26),
            transparent 58%
        ),
        radial-gradient(
            50rem 22rem at 90% 12%,
            rgba(116, 132, 159, 0.2),
            transparent 58%
        ),
        linear-gradient(152deg, #0d202f 0%, #122234 100%);
    box-shadow: var(--shadow-strong);
}

.final-cta-block p {
    margin: 0.76rem 0 0.98rem;
    color: #ccdde9;
    max-width: 64ch;
}

.final-cta-block .button-link {
    background: #f5f8fc;
    color: #123047 !important;
    border-color: rgba(222, 232, 242, 0.9);
}

.final-cta-block .button-link.secondary {
    background: rgba(255, 255, 255, 0.08);
    color: #eaf3fb !important;
    border-color: rgba(214, 228, 241, 0.5);
    box-shadow: none;
}

.page-card {
    margin: 2.75rem auto 2rem;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: clamp(1.1rem, 2.2vw, 1.6rem);
    background: linear-gradient(
        180deg,
        var(--surface-strong) 0%,
        var(--surface) 100%
    );
    box-shadow: var(--shadow-soft);
}

.page-card h1 {
    font-size: clamp(1.5rem, 3.5vw, 2.15rem);
}

.page-card h2 {
    font-size: clamp(1.08rem, 2.4vw, 1.4rem);
    margin-top: 1.2rem;
}

.page-card h3,
.page-card h4 {
    margin-top: 1rem;
    font-size: 1rem;
}

.page-card p + p,
.page-card p + ul,
.page-card ul + p,
.page-card h2 + p,
.page-card h3 + p,
.page-card h4 + p {
    margin-top: 0.55rem;
}

.page-card ul {
    padding-left: 1.1rem;
}

.page-card form {
    margin-top: 1rem;
}

.page-card label {
    font-weight: 600;
    color: #243446;
    font-size: 0.95rem;
}

.page-card input,
.page-card textarea {
    width: 100%;
    margin-top: 0.35rem;
    border-radius: 9px;
    border: 1px solid rgba(125, 136, 146, 0.5);
    background: rgba(255, 255, 255, 0.8);
    color: var(--ink);
    padding: 0.6rem 0.72rem;
    font-family: var(--font-ui);
    font-size: 0.95rem;
}

.page-card textarea {
    resize: vertical;
}

.page-card input[type="checkbox"] {
    width: auto;
    margin-top: 0;
    margin-right: 0.42rem;
    vertical-align: middle;
}

.page-card button[type="submit"] {
    padding-inline: 1.05rem !important;
    margin-right: 0.62rem;
}

.page-card a {
    color: #1f3d54;
}

.handover-card {
    margin-top: 4.8rem;
    margin-bottom: 5.2rem;
    max-width: 760px;
    text-align: center;
}

.handover-card h1 {
    margin-top: 0.75rem;
    max-width: 18ch;
    margin-left: auto;
    margin-right: auto;
}

.handover-card p {
    margin-top: 1rem;
}

.handover-card .actions {
    margin-top: 1.1rem;
    justify-content: center;
}

.site-footer {
    margin-top: 2.8rem;
    border-top: 1px solid rgba(126, 140, 165, 0.34);
    background: rgba(236, 241, 248, 0.84);
}

.footer-row {
    min-height: 66px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.8rem;
    color: #425061;
    font-size: 0.92rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.95rem;
}

@media (max-width: 1024px) {
    .nav-row {
        min-height: auto;
        padding: 0.8rem 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.55rem;
    }

    .nav-links {
        width: 100%;
        gap: 0.5rem;
    }

    .nav-links a {
        padding: 0.38rem 0.62rem;
        font-size: 0.84rem;
    }
}

@media (max-width: 980px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        align-items: stretch;
    }

    .hero-logo-crop {
        min-height: 205px;
    }

    .split-shell {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 720px) {
    .nav-row {
        align-items: center;
        justify-content: center;
    }

    .brand {
        margin: 0 auto;
        text-align: center;
    }

    .nav-links {
        display: none !important;
    }

    .hero-block {
        margin-top: 1.1rem;
        padding: 1.22rem;
    }

    .hero-copy h1 {
        font-size: clamp(1.62rem, 9.8vw, 2.4rem);
    }

    .hero-visual {
        grid-template-columns: 1fr;
    }

    .hero-logo-crop {
        min-height: 185px;
    }

    .hero-trace-a {
        top: 3.6rem;
    }

    .hero-trace-b {
        top: 6.9rem;
    }

    .content-block,
    .page-card,
    .final-cta-block {
        padding: 1.18rem;
    }

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

    .footer-row {
        flex-direction: column;
        align-items: flex-start;
        padding: 0.9rem 0;
    }
}

/* Rebranding shell refinements */
.site-header {
    border-bottom: 1px solid rgba(148, 163, 184, 0.34);
    background: rgba(248, 250, 252, 0.92);
}

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

.button-link,
button[type="submit"] {
    background: linear-gradient(
        130deg,
        var(--accent-primary),
        var(--accent-primary-hover)
    );
    border-color: rgba(8, 145, 178, 0.35);
    color: #ffffff !important;
    box-shadow: 0 10px 24px rgba(8, 145, 178, 0.24);
}

.button-link.secondary {
    background: rgba(255, 255, 255, 0.92);
    border-color: rgba(148, 163, 184, 0.55);
    color: var(--ink) !important;
}

/* Homepage v2 */
.home-v2 {
    padding-top: 2.5rem;
    padding-bottom: 3rem;
    overflow-x: clip;
}

.home-v2-section {
    padding-block: 7rem;
}

.home-v2-shell {
    width: min(1200px, 100%);
    margin: 0 auto;
}

.home-v2-shell h1 {
    max-width: 15ch;
    margin-top: 1rem;
    font-size: clamp(2.2rem, 4.8vw, 4rem);
    line-height: 1.04;
}

.home-v2-shell h2 {
    max-width: 24ch;
    margin-top: 0.9rem;
    font-size: clamp(1.9rem, 3.3vw, 2.8rem);
    line-height: 1.12;
}

.home-v2-shell h3 {
    font-size: clamp(1.12rem, 2vw, 1.32rem);
    line-height: 1.24;
}

.home-v2-lead,
.home-v2-symbioticiq p,
.home-v2-final-cta p,
.home-v2-card p {
    max-width: 70ch;
    margin-top: 1.35rem;
    color: #334155;
    font-size: 1.08rem;
    line-height: 1.78;
}

.home-v2-kicker {
    margin: 0;
    font-family: var(--font-mono);
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #0891b2;
}

.home-v2-hero {
    margin-top: 2rem;
    border: 1px solid #cbd5e1;
    border-radius: 28px;
    background:
        radial-gradient(
            48rem 25rem at 100% -5%,
            rgba(92, 234, 255, 0.18),
            transparent 70%
        ),
        radial-gradient(
            40rem 24rem at 0% -8%,
            rgba(255, 184, 77, 0.2),
            transparent 65%
        ),
        linear-gradient(170deg, #ffffff 0%, #f8fafc 65%, #f1f5f9 100%);
    box-shadow: 0 28px 55px rgba(15, 23, 42, 0.08);
}

.home-v2-hero .home-v2-shell {
    padding: 6.4rem clamp(1rem, 3vw, 2rem) 5.5rem;
}

.home-v2-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 2rem;
}

.home-v2-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    border-radius: 12px;
    border: 1px solid transparent;
    padding: 0.68rem 1.05rem;
    text-decoration: none;
    font-weight: 600;
    transition:
        transform 0.15s ease,
        box-shadow 0.15s ease,
        border-color 0.15s ease;
}

.home-v2-button:hover {
    transform: translateY(-1px);
}

.home-v2-button-primary {
    color: #ffffff;
    background: linear-gradient(
        125deg,
        var(--accent-primary),
        var(--accent-primary-hover)
    );
    border-color: rgba(8, 145, 178, 0.45);
    box-shadow: 0 10px 22px rgba(8, 145, 178, 0.28);
}

.home-v2-button-primary:hover {
    box-shadow: 0 14px 26px rgba(8, 145, 178, 0.3);
}

.home-v2-button-secondary {
    color: #0f172a;
    background: #ffffff;
    border-color: #cbd5e1;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
}

.home-v2-microproof {
    margin-top: 0.9rem;
    color: #475569;
    font-size: 0.95rem;
}

.home-v2-proof-chips {
    margin: 2rem 0 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.62rem;
}

.home-v2-proof-chips li {
    border: 1px solid #bae6fd;
    border-radius: 999px;
    background: #ecfeff;
    color: #164e63;
    font-size: 0.84rem;
    font-weight: 500;
    padding: 0.4rem 0.8rem;
}

.home-v2-logos {
    padding-top: 5.3rem;
    padding-bottom: 1.5rem;
}

.home-v2-smallnote {
    margin-top: 1rem;
    max-width: 84ch;
    color: #64748b;
    font-size: 0.94rem;
}

.home-v2-logo-row {
    margin-top: 1.7rem;
    padding: 1.3rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    background: #ffffff;
}

.home-v2-logo-row img {
    width: 100%;
    height: 42px;
    object-fit: contain;
    filter: grayscale(1) contrast(1.05);
    opacity: 0.84;
}

.home-v2-grid {
    margin-top: 2.1rem;
    display: grid;
    gap: 1rem;
}

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

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

.home-v2-card {
    min-height: 210px;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    background: #ffffff;
    padding: 2rem;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
    transition:
        transform 0.16s ease,
        border-color 0.16s ease,
        box-shadow 0.16s ease;
}

.home-v2-card:hover,
.home-v2-card:focus-within {
    transform: translateY(-2px);
    border-color: #67e8f9;
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.1);
}

.home-v2-card p {
    margin-top: 0.85rem;
    font-size: 1rem;
    line-height: 1.72;
}

.home-v2-method {
    margin-top: 1rem;
    border-radius: 24px;
    border: 1px solid #dbe5f0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.home-v2-method .home-v2-shell {
    padding: 4.6rem clamp(1rem, 3vw, 2rem);
}

.home-v2-steps {
    list-style: none;
    margin: 2.3rem 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.95rem;
}

.home-v2-steps li {
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    background: #ffffff;
    padding: 1.6rem;
}

.home-v2-step-label {
    margin: 0;
    font-family: var(--font-mono);
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    color: #0891b2;
    text-transform: uppercase;
}

.home-v2-steps h3 {
    margin-top: 0.75rem;
}

.home-v2-steps li p {
    margin-top: 0.72rem;
    color: #334155;
    line-height: 1.62;
}

.home-v2-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 1rem;
    flex-wrap: wrap;
}

.home-v2-text-link {
    text-decoration: none;
    color: #0e7490;
    font-family: var(--font-mono);
    font-size: 0.84rem;
    letter-spacing: 0.02em;
}

.home-v2-text-link:hover {
    text-decoration: underline;
}

.home-v2-guardrails {
    border-radius: 24px;
    border: 1px solid #dbe8f2;
    background: #f8fafc;
}

.home-v2-shell-narrow {
    max-width: 760px;
    margin: 0 auto;
}

.home-v2-list {
    margin: 1.7rem 0 0;
    padding-left: 1.1rem;
    display: grid;
    gap: 0.85rem;
}

.home-v2-list li {
    color: #334155;
    line-height: 1.74;
}

.home-v2-symbioticiq {
    border-radius: 22px;
    border: 1px solid #e2e8f0;
    background:
        radial-gradient(
            38rem 20rem at 100% 0%,
            rgba(92, 234, 255, 0.09),
            transparent 72%
        ),
        #ffffff;
}

.home-v2-symbioticiq .home-v2-shell {
    padding: 3.6rem clamp(1rem, 3vw, 2rem);
}

.home-v2-final-cta {
    border-radius: 24px;
    border: 1px solid #bae6fd;
    background:
        radial-gradient(
            44rem 24rem at 95% -3%,
            rgba(92, 234, 255, 0.22),
            transparent 74%
        ),
        radial-gradient(
            34rem 20rem at 0% -6%,
            rgba(255, 184, 77, 0.18),
            transparent 74%
        ),
        linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    box-shadow: 0 18px 34px rgba(15, 23, 42, 0.08);
}

.home-v2-final-cta .home-v2-shell {
    padding: 4.2rem clamp(1rem, 3vw, 2rem);
}

@media (max-width: 1024px) {
    .home-v2-section {
        padding-block: 5.4rem;
    }

    .home-v2-hero .home-v2-shell {
        padding-top: 5rem;
        padding-bottom: 4.5rem;
    }

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

@media (max-width: 720px) {
    .home-v2 {
        padding-top: 1.2rem;
        padding-bottom: 2rem;
    }

    .home-v2-section {
        padding-block: 3.6rem;
    }

    .home-v2-hero .home-v2-shell {
        padding-top: 3.2rem;
        padding-bottom: 3.2rem;
    }

    .home-v2-shell h1 {
        font-size: clamp(1.8rem, 10vw, 2.55rem);
    }

    .home-v2-shell h2 {
        font-size: clamp(1.46rem, 7vw, 2rem);
        max-width: none;
    }

    .home-v2-grid-2,
    .home-v2-grid-3,
    .home-v2-steps,
    .home-v2-logo-row {
        grid-template-columns: 1fr;
    }

    .home-v2-proof-chips {
        margin-top: 1.3rem;
        gap: 0.5rem;
    }

    .home-v2-proof-chips li {
        width: 100%;
        text-align: center;
    }

    .home-v2-card {
        min-height: auto;
        padding: 1.3rem;
    }

    .home-v2-method .home-v2-shell,
    .home-v2-symbioticiq .home-v2-shell,
    .home-v2-final-cta .home-v2-shell {
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
    }
}

/* Problem pages v2 */
.problem-v2 {
    padding-top: 2.2rem;
    padding-bottom: 3rem;
    overflow-x: clip;
}

.problem-v2-section {
    padding-block: 5.6rem;
}

.problem-v2-shell {
    width: min(1180px, 100%);
    margin: 0 auto;
}

.problem-v2-shell h1 {
    margin-top: 0.95rem;
    max-width: 16ch;
    font-size: clamp(2rem, 4.4vw, 3.5rem);
    line-height: 1.06;
}

.problem-v2-shell h2 {
    margin-top: 0.75rem;
    max-width: 24ch;
    font-size: clamp(1.65rem, 3vw, 2.45rem);
    line-height: 1.16;
}

.problem-v2-shell h3 {
    font-size: clamp(1.04rem, 2vw, 1.28rem);
    line-height: 1.24;
}

.problem-v2-kicker {
    margin: 0;
    font-family: var(--font-mono);
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #0e7490;
}

.problem-v2-lead,
.problem-v2-cluster-card p,
.problem-v2-final p {
    max-width: 72ch;
    margin-top: 1.15rem;
    color: #334155;
    font-size: 1.04rem;
    line-height: 1.74;
}

.problem-v2-hero {
    border: 1px solid #cbd5e1;
    border-radius: 24px;
    background:
        radial-gradient(
            42rem 22rem at 100% -6%,
            rgba(92, 234, 255, 0.16),
            transparent 70%
        ),
        radial-gradient(
            34rem 20rem at 0% -8%,
            rgba(255, 184, 77, 0.18),
            transparent 72%
        ),
        linear-gradient(170deg, #ffffff 0%, #f8fafc 100%);
    box-shadow: 0 20px 42px rgba(15, 23, 42, 0.07);
}

.problem-v2-hero .problem-v2-shell {
    padding: 5.2rem clamp(1rem, 3vw, 2rem);
}

.problem-v2-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    gap: 1rem;
    align-items: start;
}

.problem-v2-sidepanel {
    border: 1px solid #dbe8f2;
    border-radius: 16px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    padding: 1.35rem;
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.06);
}

.problem-v2-sidepanel-title {
    margin: 0;
    color: #0f172a;
    font-family: var(--font-mono);
    font-size: 0.78rem;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.problem-v2-sidepanel-copy {
    margin-top: 0.72rem;
    color: #334155;
    line-height: 1.64;
}

.problem-v2-sidepanel-list {
    list-style: none;
    margin: 0.8rem 0 0;
    padding: 0;
    display: grid;
    gap: 0.6rem;
}

.problem-v2-sidepanel-list li a {
    display: block;
    text-decoration: none;
    color: #0e7490;
    border: 1px solid #bae6fd;
    border-radius: 11px;
    background: #ecfeff;
    padding: 0.5rem 0.65rem;
    line-height: 1.48;
}

.problem-v2-sidepanel-list li a:hover {
    border-color: #67e8f9;
    background: #cffafe;
}

.problem-v2-sidepanel-list-plain {
    margin-bottom: 1.1rem;
}

.problem-v2-sidepanel-list-plain li {
    position: relative;
    padding-left: 0.85rem;
    color: #334155;
    line-height: 1.58;
}

.problem-v2-sidepanel-list-plain li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.52rem;
    width: 0.34rem;
    height: 0.34rem;
    border-radius: 999px;
    background: #06b6d4;
}

.problem-v2-outcome-grid {
    margin-top: 1.8rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.problem-v2-outcome-card {
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    background: #ffffff;
    padding: 1.4rem;
    box-shadow: 0 9px 18px rgba(15, 23, 42, 0.05);
    transition:
        transform 0.16s ease,
        border-color 0.16s ease,
        box-shadow 0.16s ease;
}

.problem-v2-outcome-card:hover,
.problem-v2-outcome-card:focus-within {
    transform: translateY(-2px);
    border-color: #bae6fd;
    box-shadow: 0 14px 24px rgba(15, 23, 42, 0.07);
}

.problem-v2-outcome-card p {
    margin-top: 0.75rem;
    color: #334155;
    line-height: 1.7;
}

.problem-v2-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    margin-top: 1.8rem;
    border-radius: 12px;
    border: 1px solid transparent;
    padding: 0.68rem 1.04rem;
    text-decoration: none;
    font-weight: 600;
    transition:
        transform 0.15s ease,
        box-shadow 0.15s ease;
}

.problem-v2-button:hover {
    transform: translateY(-1px);
}

.problem-v2-button-primary {
    color: #ffffff;
    background: linear-gradient(
        130deg,
        var(--accent-primary),
        var(--accent-primary-hover)
    );
    border-color: rgba(8, 145, 178, 0.45);
    box-shadow: 0 12px 24px rgba(8, 145, 178, 0.28);
}

.problem-v2-cluster-grid {
    margin-top: 1.9rem;
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.problem-v2-cluster-card {
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    background: #ffffff;
    padding: 1.55rem;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.05);
    transition:
        transform 0.16s ease,
        border-color 0.16s ease,
        box-shadow 0.16s ease;
}

.problem-v2-cluster-card:hover,
.problem-v2-cluster-card:focus-within {
    transform: translateY(-3px);
    border-color: #67e8f9;
    box-shadow: 0 16px 28px rgba(15, 23, 42, 0.08);
}

.problem-v2-cluster-card ul {
    margin: 0.9rem 0 0;
    padding-left: 1rem;
    display: grid;
    gap: 0.42rem;
}

.problem-v2-cluster-card li {
    color: #334155;
    line-height: 1.6;
}

.problem-v2-cluster-label {
    margin: 0;
    font-family: var(--font-mono);
    font-size: 0.74rem;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: #0891b2;
}

.problem-v2-text-link {
    display: inline-block;
    margin-top: 1rem;
    text-decoration: none;
    color: #0e7490;
    font-family: var(--font-mono);
    font-size: 0.82rem;
    letter-spacing: 0.02em;
}

.problem-v2-text-link:hover {
    text-decoration: underline;
}

.problem-v2-qualifier {
    border-radius: 22px;
    border: 1px solid #dbe8f2;
    background: #f8fafc;
}

.problem-v2-shell-narrow {
    max-width: 760px;
    margin: 0 auto;
}

.problem-v2-list {
    margin: 1.5rem 0 0;
    padding-left: 1.1rem;
    display: grid;
    gap: 0.8rem;
}

.problem-v2-list li {
    color: #334155;
    line-height: 1.72;
}

.problem-v2-final {
    border-radius: 24px;
    border: 1px solid #bae6fd;
    background:
        radial-gradient(
            42rem 20rem at 100% -5%,
            rgba(92, 234, 255, 0.2),
            transparent 72%
        ),
        linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.07);
}

.problem-v2-final .problem-v2-shell {
    padding: 3.8rem clamp(1rem, 3vw, 2rem);
}

.problem-v2-actions {
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    align-items: center;
}

@media (max-width: 1024px) {
    .problem-v2-section {
        padding-block: 4.5rem;
    }

    .problem-v2-hero-grid {
        grid-template-columns: 1fr;
    }

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

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

@media (max-width: 720px) {
    .problem-v2 {
        padding-top: 1.1rem;
    }

    .problem-v2-section {
        padding-block: 3.4rem;
    }

    .problem-v2-hero .problem-v2-shell {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .problem-v2-shell h1 {
        font-size: clamp(1.72rem, 9vw, 2.3rem);
    }

    .problem-v2-shell h2 {
        max-width: none;
        font-size: clamp(1.4rem, 7vw, 1.95rem);
    }

    .problem-v2-cluster-grid,
    .problem-v2-cluster-grid-2,
    .problem-v2-outcome-grid {
        grid-template-columns: 1fr;
    }

    .problem-v2-actions {
        align-items: stretch;
    }

    .problem-v2-button {
        width: 100%;
    }

    .problem-v2-cluster-card {
        padding: 1.2rem;
    }

    .problem-v2-final .problem-v2-shell {
        padding-top: 2.4rem;
        padding-bottom: 2.4rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
