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

    :root {
        --navy: #031627;
        --navy-mid: #042C53;
        --navy-card: #0a2340;
        --blue: #185FA5;
        --blue-bright: #378ADD;
        --blue-light: #85B7EB;
        --blue-pale: #B5D4F4;
        --blue-ghost: #E6F1FB;
        --white: #FFFFFF;
        --off-white: #F7F6F2;
        --gray-200: #D3D1C7;
        --gray-400: #888780;
        --gray-600: #444441;
        --font-display: 'Syne', sans-serif;
        --font-body: 'Plus Jakarta Sans', sans-serif;
    }

    html {
        scroll-behavior: smooth;
    }

    body {
        font-family: var(--font-body);
        background: var(--white);
        color: var(--navy);
        line-height: 1.6;
        overflow-x: hidden;
    }

    /* ── NAV ── */
    nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 100;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 5vw;
        height: 64px;
        background: rgba(3, 22, 39, 0.92);
        backdrop-filter: blur(12px);
        border-bottom: 1px solid rgba(55, 138, 221, 0.12);
    }

    .nav-logo {
        display: flex;
        align-items: center;
        gap: 10px;
        text-decoration: none;
    }

    .nav-wordmark {
        font-family: var(--font-display);
        font-size: 18px;
        font-weight: 700;
        color: var(--white);
        letter-spacing: -0.3px;
    }

    .nav-links {
        display: flex;
        align-items: center;
        gap: 32px;
    }

    .nav-links a {
        font-size: 13.5px;
        font-weight: 400;
        color: var(--blue-pale);
        text-decoration: none;
        letter-spacing: 0.2px;
        transition: color 0.2s;
    }

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

    .nav-cta {
        background: var(--blue-bright);
        color: var(--white);
        font-family: var(--font-body);
        font-size: 13.5px;
        font-weight: 600;
        padding: 9px 20px;
        border-radius: 8px;
        text-decoration: none;
        transition: background 0.2s, transform 0.15s;
        display: flex;
        align-items: center;
        gap: 7px;
    }

    .nav-cta:hover {
        background: #185FA5;
        transform: translateY(-1px);
    }

    /* ── HERO ── */
    .hero {
        min-height: 100vh;
        background: var(--navy);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 120px 5vw 80px;
        position: relative;
        overflow: hidden;
    }

    .hero-grid-bg {
        position: absolute;
        inset: 0;
        background-image:
            linear-gradient(rgba(55, 138, 221, 0.05) 1px, transparent 1px),
            linear-gradient(90deg, rgba(55, 138, 221, 0.05) 1px, transparent 1px);
        background-size: 48px 48px;
        mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 30%, transparent 100%);
    }

    .hero-glow {
        position: absolute;
        top: -100px;
        left: 50%;
        transform: translateX(-50%);
        width: 700px;
        height: 400px;
        background: radial-gradient(ellipse at center, rgba(55, 138, 221, 0.18) 0%, transparent 70%);
        pointer-events: none;
    }

    .hero-content {
        position: relative;
        text-align: center;
        max-width: 780px;
        animation: fadeUp 0.8s ease both;
    }

    .hero-eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(55, 138, 221, 0.12);
        border: 1px solid rgba(55, 138, 221, 0.3);
        border-radius: 100px;
        padding: 5px 14px;
        font-size: 12px;
        font-weight: 600;
        color: var(--blue-pale);
        letter-spacing: 0.8px;
        text-transform: uppercase;
        margin-bottom: 28px;
    }

    .eyebrow-dot {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--blue-bright);
        animation: pulse 2s infinite;
    }

    .hero h1 {
        font-family: var(--font-display);
        font-size: clamp(40px, 6vw, 68px);
        font-weight: 800;
        color: var(--white);
        line-height: 1.08;
        letter-spacing: -2px;
        margin-bottom: 24px;
    }

    .hero h1 em {
        font-style: normal;
        color: var(--blue-bright);
    }

    .hero-sub {
        font-size: 18px;
        font-weight: 300;
        color: var(--blue-pale);
        line-height: 1.7;
        max-width: 560px;
        margin: 0 auto 40px;
    }

    .hero-actions {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 14px;
        flex-wrap: wrap;
    }

    .btn-primary {
        background: var(--blue-bright);
        color: var(--white);
        font-family: var(--font-body);
        font-size: 15px;
        font-weight: 600;
        padding: 14px 28px;
        border-radius: 10px;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
        box-shadow: 0 0 32px rgba(55, 138, 221, 0.3);
    }

    .btn-primary:hover {
        background: #185FA5;
        transform: translateY(-2px);
        box-shadow: 0 4px 40px rgba(55, 138, 221, 0.4);
    }

    .btn-secondary {
        background: transparent;
        color: var(--blue-pale);
        font-family: var(--font-body);
        font-size: 15px;
        font-weight: 500;
        padding: 14px 28px;
        border-radius: 10px;
        text-decoration: none;
        border: 1px solid rgba(133, 183, 235, 0.3);
        display: inline-flex;
        align-items: center;
        gap: 8px;
        transition: border-color 0.2s, color 0.2s, transform 0.15s;
    }

    .btn-secondary:hover {
        border-color: var(--blue-light);
        color: var(--white);
        transform: translateY(-2px);
    }

    /* ── DASHBOARD MOCK ── */
    .hero-mockup-wrap {
        position: relative;
        margin-top: 64px;
        width: 100%;
        max-width: 960px;
        animation: fadeUp 0.8s 0.2s ease both;
    }

    .hero-mockup-wrap img {
        width: 100%;
        display: block;
        border-radius: 6px;
    }

    .hero-mockup-glow {
        position: absolute;
        bottom: -60px;
        left: 50%;
        transform: translateX(-50%);
        width: 80%;
        height: 120px;
        background: radial-gradient(ellipse at center, rgba(55, 138, 221, 0.25) 0%, transparent 70%);
        pointer-events: none;
    }

    .mockup-chrome {
        background: var(--navy-card);
        border: 1px solid rgba(55, 138, 221, 0.18);
        border-radius: 14px;
        overflow: hidden;
        box-shadow: 0 32px 80px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(55, 138, 221, 0.08);
    }

    .mockup-bar {
        background: #071e34;
        border-bottom: 1px solid rgba(55, 138, 221, 0.12);
        padding: 10px 16px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .chrome-dots {
        display: flex;
        gap: 6px;
    }

    .chrome-dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
    }

    .chrome-dot.red {
        background: #FF5F57;
    }

    .chrome-dot.amber {
        background: #FFBD2E;
    }

    .chrome-dot.green {
        background: #28C840;
    }

    .mockup-url {
        flex: 1;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 6px;
        padding: 4px 12px;
        font-size: 11.5px;
        color: var(--gray-400);
        font-family: var(--font-body);
    }

    .mockup-body {
        padding: 20px;
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr;
        gap: 12px;
    }

    .m-stat {
        background: rgba(4, 44, 83, 0.6);
        border: 1px solid rgba(55, 138, 221, 0.14);
        border-radius: 10px;
        padding: 14px 16px;
    }

    .m-stat-label {
        font-size: 10.5px;
        font-weight: 500;
        color: var(--gray-400);
        letter-spacing: 0.5px;
        text-transform: uppercase;
        margin-bottom: 6px;
    }

    .m-stat-val {
        font-family: var(--font-display);
        font-size: 26px;
        font-weight: 700;
        color: var(--white);
        line-height: 1;
    }

    .m-stat-delta {
        font-size: 11px;
        color: #28C840;
        margin-top: 4px;
    }

    .m-stat-delta.down {
        color: #FF5F57;
    }

    .mockup-row2 {
        padding: 0 20px 20px;
        display: grid;
        grid-template-columns: 2fr 1fr;
        gap: 12px;
    }

    .m-card {
        background: rgba(4, 44, 83, 0.6);
        border: 1px solid rgba(55, 138, 221, 0.14);
        border-radius: 10px;
        padding: 16px;
    }

    .m-card-title {
        font-size: 11px;
        font-weight: 600;
        color: var(--blue-pale);
        letter-spacing: 0.4px;
        text-transform: uppercase;
        margin-bottom: 14px;
    }

    .chart-bars {
        display: flex;
        align-items: flex-end;
        gap: 6px;
        height: 72px;
    }

    .bar-group {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 3px;
        flex: 1;
    }

    .bar {
        width: 100%;
        border-radius: 3px 3px 0 0;
    }

    .bar-label {
        font-size: 9px;
        color: var(--gray-400);
    }

    .dora-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .dora-item {
        background: rgba(24, 95, 165, 0.15);
        border-radius: 8px;
        padding: 10px 12px;
    }

    .dora-name {
        font-size: 9.5px;
        color: var(--blue-pale);
        margin-bottom: 4px;
    }

    .dora-val {
        font-family: var(--font-display);
        font-size: 18px;
        font-weight: 700;
        color: var(--white);
    }

    .dora-grade {
        display: inline-block;
        font-size: 9px;
        font-weight: 700;
        padding: 1px 6px;
        border-radius: 4px;
        margin-top: 2px;
        letter-spacing: 0.4px;
    }

    .grade-elite {
        background: rgba(40, 200, 64, 0.2);
        color: #28C840;
    }

    .grade-high {
        background: rgba(55, 138, 221, 0.25);
        color: var(--blue-pale);
    }

    /* ── TRUST BAR ── */
    .trust-bar {
        background: var(--off-white);
        border-top: 1px solid var(--gray-200);
        border-bottom: 1px solid var(--gray-200);
        padding: 20px 5vw;
        display: flex;
        align-items: center;
        gap: 40px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .trust-label {
        font-size: 12px;
        font-weight: 500;
        color: var(--gray-400);
        letter-spacing: 0.5px;
        text-transform: uppercase;
        white-space: nowrap;
    }

    .trust-logos {
        display: flex;
        align-items: center;
        gap: 40px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .trust-logo {
        font-family: var(--font-display);
        font-size: 16px;
        font-weight: 700;
        color: var(--gray-400);
        letter-spacing: -0.5px;
        opacity: 0.7;
    }

    /* ── SECTIONS COMMON ── */
    section {
        padding: 96px 5vw;
    }

    .section-eyebrow {
        font-size: 11.5px;
        font-weight: 600;
        letter-spacing: 1.2px;
        text-transform: uppercase;
        color: var(--blue);
        margin-bottom: 12px;
    }

    .section-title {
        font-family: var(--font-display);
        font-size: clamp(28px, 3.5vw, 44px);
        font-weight: 800;
        line-height: 1.12;
        letter-spacing: -1.2px;
        color: var(--navy);
        margin-bottom: 16px;
    }

    .section-sub {
        font-size: 17px;
        font-weight: 300;
        color: var(--gray-600);
        line-height: 1.75;
        max-width: 540px;
    }

    /* ── FEATURES ── */
    .features {
        background: var(--white);
    }

    .features-header {
        text-align: center;
        margin-bottom: 64px;
    }

    .features-header .section-sub {
        margin: 0 auto;
    }

    .features-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
        max-width: 1100px;
        margin: 0 auto;
    }

    .feature-card {
        border: 1px solid var(--gray-200);
        border-radius: 14px;
        padding: 32px 28px;
        transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
    }

    .feature-card:hover {
        border-color: var(--blue-light);
        box-shadow: 0 8px 40px rgba(24, 95, 165, 0.08);
        transform: translateY(-3px);
    }

    .feature-icon {
        width: 44px;
        height: 44px;
        border-radius: 11px;
        background: var(--blue-ghost);
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
    }

    .feature-icon svg {
        width: 22px;
        height: 22px;
        stroke: var(--blue);
        fill: none;
        stroke-width: 1.8;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    .feature-card h3 {
        font-family: var(--font-display);
        font-size: 18px;
        font-weight: 700;
        color: var(--navy);
        margin-bottom: 10px;
        letter-spacing: -0.3px;
    }

    .feature-card p {
        font-size: 14.5px;
        color: var(--gray-600);
        line-height: 1.7;
        font-weight: 300;
    }

    /* ── DORA SECTION ── */
    .dora-section {
        background: var(--navy);
        position: relative;
        overflow: hidden;
    }

    .dora-section .section-title {
        color: var(--white);
    }

    .dora-section .section-sub {
        color: var(--blue-pale);
    }

    .dora-bg-glow {
        position: absolute;
        top: -200px;
        right: -100px;
        width: 600px;
        height: 600px;
        background: radial-gradient(ellipse at center, rgba(55, 138, 221, 0.1) 0%, transparent 65%);
        pointer-events: none;
    }

    .dora-layout {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: center;
        max-width: 1100px;
        margin: 0 auto;
        position: relative;
    }

    .dora-metrics-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .dora-big-card {
        background: var(--navy-card);
        border: 1px solid rgba(55, 138, 221, 0.18);
        border-radius: 14px;
        padding: 24px;
    }

    .dora-big-label {
        font-size: 11px;
        font-weight: 600;
        color: var(--blue-pale);
        letter-spacing: 0.8px;
        text-transform: uppercase;
        margin-bottom: 8px;
    }

    .dora-big-val {
        font-family: var(--font-display);
        font-size: 38px;
        font-weight: 800;
        color: var(--white);
        line-height: 1;
        margin-bottom: 6px;
    }

    .dora-big-badge {
        display: inline-block;
        font-size: 10.5px;
        font-weight: 700;
        padding: 3px 10px;
        border-radius: 6px;
        letter-spacing: 0.5px;
    }

    .badge-elite {
        background: rgba(40, 200, 64, 0.15);
        color: #28C840;
        border: 1px solid rgba(40, 200, 64, 0.3);
    }

    .badge-high {
        background: rgba(55, 138, 221, 0.15);
        color: var(--blue-pale);
        border: 1px solid rgba(55, 138, 221, 0.3);
    }

    /* ── STATS BAND ── */
    .stats-band {
        background: var(--blue);
        padding: 64px 5vw;
    }

    .stats-inner {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 40px;
        max-width: 1100px;
        margin: 0 auto;
    }

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

    .stat-num {
        font-family: var(--font-display);
        font-size: 48px;
        font-weight: 800;
        color: var(--white);
        line-height: 1;
        letter-spacing: -2px;
        margin-bottom: 8px;
    }

    .stat-desc {
        font-size: 14px;
        color: var(--blue-pale);
        font-weight: 400;
    }

    /* ── ENTERPRISE ── */
    .enterprise {
        background: var(--off-white);
    }

    .enterprise-layout {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: center;
        max-width: 1100px;
        margin: 0 auto;
    }

    .enterprise-list {
        list-style: none;
        margin-top: 36px;
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .enterprise-list li {
        display: flex;
        align-items: flex-start;
        gap: 14px;
        font-size: 15px;
        color: var(--gray-600);
        font-weight: 400;
        line-height: 1.6;
    }

    .check-icon {
        flex-shrink: 0;
        margin-top: 3px;
    }

    .enterprise-visual {
        background: var(--white);
        border: 1px solid var(--gray-200);
        border-radius: 16px;
        padding: 28px;
        box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    }

    .enterprise-visual img {
        width: 100%;
        height: auto;
        border-radius: 3px;
    }

    .ev-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 20px;
    }

    .ev-title {
        font-family: var(--font-display);
        font-size: 14px;
        font-weight: 700;
        color: var(--navy);
    }

    .ev-badge {
        font-size: 10.5px;
        font-weight: 600;
        color: var(--blue);
        background: var(--blue-ghost);
        padding: 3px 10px;
        border-radius: 6px;
    }

    .ev-team {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .ev-row {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .ev-avatar {
        width: 30px;
        height: 30px;
        border-radius: 50%;
        font-size: 11px;
        font-weight: 700;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .ev-name {
        font-size: 13px;
        font-weight: 500;
        color: var(--navy);
        flex: 1;
    }

    .ev-bar-wrap {
        flex: 2;
        background: var(--off-white);
        border-radius: 4px;
        height: 6px;
        overflow: hidden;
    }

    .ev-bar {
        height: 100%;
        border-radius: 4px;
        background: var(--blue-bright);
    }

    .ev-pts {
        font-size: 12px;
        color: var(--gray-400);
        font-family: var(--font-display);
        font-weight: 700;
    }

    /* ── TESTIMONIAL ── */
    .testimonial {
        background: var(--white);
        text-align: center;
    }

    .quote-mark {
        font-family: var(--font-display);
        font-size: 80px;
        line-height: 0.6;
        color: var(--blue-ghost);
        display: block;
        margin-bottom: 8px;
    }

    blockquote {
        font-family: var(--font-display);
        font-size: clamp(20px, 2.5vw, 30px);
        font-weight: 600;
        color: var(--navy);
        line-height: 1.4;
        letter-spacing: -0.5px;
        max-width: 760px;
        margin: 0 auto 32px;
    }

    .quote-attr {
        font-size: 14px;
        color: var(--gray-400);
        font-weight: 400;
    }

    .quote-attr strong {
        color: var(--navy);
        font-weight: 600;
    }

    /* ── INSTALL CTA ── */
    .install-cta {
        background: var(--navy);
        text-align: center;
        padding: 112px 5vw;
        position: relative;
        overflow: hidden;
    }

    .install-cta-glow {
        position: absolute;
        bottom: -100px;
        left: 50%;
        transform: translateX(-50%);
        width: 600px;
        height: 300px;
        background: radial-gradient(ellipse at center, rgba(55, 138, 221, 0.15) 0%, transparent 70%);
        pointer-events: none;
    }

    .install-cta h2 {
        font-family: var(--font-display);
        font-size: clamp(30px, 4vw, 52px);
        font-weight: 800;
        color: var(--white);
        letter-spacing: -1.5px;
        line-height: 1.1;
        max-width: 640px;
        margin: 0 auto 20px;
    }

    .install-cta p {
        font-size: 17px;
        color: var(--blue-pale);
        font-weight: 300;
        max-width: 440px;
        margin: 0 auto 40px;
        line-height: 1.7;
    }

    .install-actions {
        display: flex;
        justify-content: center;
        gap: 14px;
        flex-wrap: wrap;
    }

    .marketplace-btn {
        background: var(--white);
        color: var(--navy);
        font-family: var(--font-body);
        font-size: 15px;
        font-weight: 700;
        padding: 15px 30px;
        border-radius: 10px;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        transition: background 0.2s, transform 0.15s;
    }

    .marketplace-btn:hover {
        background: var(--blue-ghost);
        transform: translateY(-2px);
    }

    .atlassian-logo {
        display: flex;
        align-items: center;
        gap: 6px;
    }

    /* ── FOOTER ── */
    footer {
        background: #020f1c;
        border-top: 1px solid rgba(55, 138, 221, 0.1);
        padding: 40px 5vw;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: gap;
    }

    .footer-left {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .footer-copy {
        font-size: 13px;
        color: var(--gray-400);
    }

    .footer-links {
        display: flex;
        gap: 24px;
    }

    .footer-links a {
        font-size: 13px;
        color: var(--gray-400);
        text-decoration: none;
        transition: color 0.2s;
    }

    .footer-links a:hover {
        color: var(--white);
    }

    /* ── DOCUMENTATION PAGE ── */
    .doc-page .page-header {
        background: var(--navy);
        padding: 120px 5vw 72px;
        position: relative;
        overflow: hidden;
    }

    .doc-page .page-header-glow {
        position: absolute;
        top: -80px;
        left: 50%;
        transform: translateX(-50%);
        width: 600px;
        height: 300px;
        background: radial-gradient(ellipse at center, rgba(55, 138, 221, 0.12) 0%, transparent 70%);
        pointer-events: none;
    }

    .doc-page .page-header-inner {
        position: relative;
        max-width: 760px;
        margin: 0 auto;
    }

    .doc-page .page-eyebrow {
        font-size: 11.5px;
        font-weight: 600;
        letter-spacing: 1.2px;
        text-transform: uppercase;
        color: var(--blue-bright);
        margin-bottom: 16px;
    }

    .doc-page .page-header h1 {
        font-family: var(--font-display);
        font-size: clamp(32px, 4.5vw, 52px);
        font-weight: 800;
        color: var(--white);
        line-height: 1.1;
        letter-spacing: -1.5px;
        margin-bottom: 16px;
    }

    .doc-page .page-meta {
        font-size: 14px;
        color: var(--blue-pale);
        font-weight: 300;
    }

    .doc-page .content-wrap {
        max-width: 760px;
        margin: 0 auto;
        padding: 72px 5vw 96px;
    }

    .doc-page .content-wrap h2 {
        font-family: var(--font-display);
        font-size: 22px;
        font-weight: 700;
        color: var(--navy);
        letter-spacing: -0.4px;
        margin-top: 48px;
        margin-bottom: 14px;
        padding-bottom: 10px;
        border-bottom: 1px solid var(--gray-200);
    }

    .doc-page .content-wrap h2:first-child {
        margin-top: 0;
    }

    .doc-page .content-wrap h3 {
        font-size: 16px;
        font-weight: 600;
        color: var(--navy-mid);
        margin: 24px 0 8px;
    }

    .doc-page .content-wrap p {
        font-size: 15.5px;
        color: var(--gray-600);
        line-height: 1.8;
        font-weight: 300;
        margin-bottom: 16px;
    }

    .doc-page .content-wrap ul {
        list-style: none;
        margin: 0 0 16px;
        padding: 0;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .doc-page .content-wrap ul li {
        font-size: 15.5px;
        color: var(--gray-600);
        font-weight: 300;
        line-height: 1.7;
    }

    .doc-page .content-wrap ul li::before {
        content: '';
        flex-shrink: 0;
        margin-top: 9px;
        width: 5px;
        height: 5px;
        border-radius: 50%;
        background: var(--blue-bright);
    }

    .doc-page .content-wrap a {
        color: var(--blue);
        text-decoration: none;
    }

    .doc-page .content-wrap a:hover {
        text-decoration: underline;
    }

    .doc-page .highlight-box {
        background: var(--blue-ghost);
        border-left: 3px solid var(--blue-bright);
        border-radius: 0 10px 10px 0;
        padding: 18px 22px;
        margin: 24px 0;
    }

    .doc-page .highlight-box p {
        color: var(--navy-mid);
        font-weight: 400;
        margin: 0;
    }

    .doc-page .footer-links a[aria-current] {
        color: var(--blue-pale);
    }

    /* ── ANIMATIONS ── */
    @keyframes fadeUp {
        from {
            opacity: 0;
            transform: translateY(24px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes pulse {

        0%,
        100% {
            opacity: 1;
        }

        50% {
            opacity: 0.4;
        }
    }

    @keyframes float {

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

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

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

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

        .dora-layout,
        .enterprise-layout {
            grid-template-columns: 1fr;
            gap: 40px;
        }

        .stats-inner {
            grid-template-columns: 1fr 1fr;
        }

        .mockup-body {
            grid-template-columns: 1fr 1fr;
        }

        .mockup-row2 {
            grid-template-columns: 1fr;
        }

        footer {
            flex-direction: column;
            gap: 20px;
            text-align: center;
        }
    }

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

        .stats-inner {
            grid-template-columns: 1fr 1fr;
        }

        .nav-links {
            display: none;
        }
    }