:root {
    --bg: #ffffff;
    --bg-soft: #f8fafc;
    --surface: rgba(255, 255, 255, 0.86);
    --surface-strong: #ffffff;
    --surface-alt: #f3f7fb;
    --text: #0f172a;
    --text-soft: #475569;
    --line: rgba(15, 23, 42, 0.08);
    --line-strong: rgba(15, 23, 42, 0.14);
    --primary: #0f172a;
    --primary-soft: #1e293b;
    --accent: #2563eb;
    --accent-soft: rgba(37, 99, 235, 0.12);
    --shadow-sm: 0 10px 30px rgba(15, 23, 42, 0.06);
    --shadow-md: 0 24px 60px rgba(15, 23, 42, 0.1);
    --radius-sm: 14px;
    --radius-md: 20px;
    --radius-lg: 28px;
    --container: 1160px;
    --brand-color: #91c435;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 7rem;
}

body {
    margin: 0;
    color: var(--text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: radial-gradient(circle at 8% 12%, rgba(37, 99, 235, 0.07), transparent 28%), radial-gradient(circle at 92% 18%, rgba(14, 165, 233, 0.07), transparent 24%), linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

img {
    max-width: 100%;
    display: block;
}

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

button {
    font: inherit;
}

.container {
    width: min(100% - 2rem, var(--container));
    margin-inline: auto;
}

.section {
    padding: 5.5rem 0;
}

.section-alt {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.64), rgba(255, 255, 255, 0.96));
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: auto;
}

    .skip-link:focus {
        left: 1rem;
        top: 1rem;
        z-index: 2000;
        padding: 0.75rem 1rem;
        background: #ffffff;
        border-radius: 999px;
        box-shadow: var(--shadow-sm);
    }

.card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(14px);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.brand-name {
    font-weight: 700;
    letter-spacing: -0.02em;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 2.2rem;
}

    .section-heading h2,
    .cta-copy h2 {
        margin: 0 0 0.9rem;
        font-size: clamp(2rem, 4vw, 3.25rem);
        line-height: 1.04;
        letter-spacing: -0.05em;
    }

    .section-heading p,
    .cta-copy p,
    .lead,
    .footer-copy,
    .solution-list p,
    .feature-card p,
    .value-card p,
    .check-list li,
    .site-footer p,
    .footer-links-group a,
    .footer-links-group span {
        color: var(--text-soft);
    }

.lead {
    margin: 0 0 1.5rem;
    font-size: 1.08rem;
    max-width: 60ch;
}

.grid {
    display: grid;
    gap: 1.5rem;
}

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

.site-header {
    position: sticky;
    top: 16px;
    z-index: 1000;
    width: min(100% - 2rem, var(--container));
    margin: 0 auto;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 18px;
    box-shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
}

.header-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 74px;
    padding: 0 1.25rem;
    gap: 1rem;
}

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    min-width: 0;
}

.brand-wordmark {
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    white-space: nowrap;
}

.brand-logo {
    width: 42px;
    height: 42px;
    object-fit: contain;
    flex: 0 0 auto;
}

.brand-logo-footer {
    width: 38px;
    height: 38px;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 1.4rem;
}

    .site-nav a {
        position: relative;
        color: var(--text);
        font-weight: 600;
    }

        .site-nav a:hover,
        .site-nav a:focus-visible {
            color: var(--accent);
        }

.button,
.button-secondary,
.nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 1.1rem;
    border-radius: 999px;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button,
.nav-cta {
    background: var(--primary);
    color: #ffffff !important;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.16);
}

    .button:hover,
    .nav-cta:hover {
        transform: translateY(-2px);
        background: var(--primary-soft);
    }

.button-secondary {
    background: rgba(255, 255, 255, 0.9);
    color: var(--text);
    border: 1px solid var(--line-strong);
}

    .button-secondary:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-sm);
    }

.button-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
}

.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 0;
    border-radius: 12px;
    background: transparent;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle-bar {
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 999px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.hero {
    padding: 6.2rem 0 4.8rem;
}

.hero-inner,
.split {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
    align-items: center;
    gap: 3.5rem;
}

.hero-copy h1 {
    margin: 0 0 1rem;
    font-size: clamp(3rem, 5vw, 5.25rem);
    line-height: 0.93;
    letter-spacing: -0.06em;
    max-width: 11ch;
}

.hero-brand-lockup {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    margin-bottom: 1rem;
}

.hero-brand-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.1;
}

.hero-brand-name {
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-top: 1.3rem;
    margin-bottom: 0.3rem;
    color: var(--brand-color);
    padding: 0.35rem 0.6rem;
    border: 1px solid var(--brand-color);
    border-radius: 15px;
    background: var(--primary);
}

.hero-logo {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

.hero-points,
.check-list,
.solution-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.35rem;
}

    .hero-points li {
        padding: 0.6rem 0.9rem;
        border: 1px solid var(--line);
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.74);
        font-weight: 600;
        color: var(--text-soft);
    }

.hero-panel {
    position: relative;
    padding: 1.4rem;
    overflow: hidden;
}

    .hero-panel::before {
        content: "";
        position: absolute;
        inset: -20% auto auto -10%;
        width: 280px;
        height: 280px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(37, 99, 235, 0.18), transparent 60%);
        filter: blur(20px);
    }

.hero-panel-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
    margin-bottom: 1.2rem;
}

.mini-stat {
    padding: 1rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.78);
}

.mini-stat-label,
.panel-kicker {
    display: block;
    margin-bottom: 0.35rem;
    color: var(--accent);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.hero-diagram {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    padding: 1.1rem;
    border-radius: var(--radius-md);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(243, 247, 251, 0.95));
    border: 1px solid var(--line);
}

.diagram-core {
    grid-column: 1 / -1;
    padding: 1rem;
    text-align: center;
    font-weight: 800;
    letter-spacing: -0.03em;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary), var(--primary-soft));
    color: #ffffff;
}

.diagram-node {
    padding: 0.95rem;
    text-align: center;
    font-weight: 700;
    border-radius: 16px;
    background: #ffffff;
    border: 1px solid var(--line);
}

.feature-card,
.value-card,
.solution-panel {
    height: 100%;
    padding: 1.5rem;
}

.icon-badge {
    width: 44px;
    height: 44px;
    display: inline-grid;
    place-items: center;
    margin-bottom: 1rem;
    border-radius: 12px;
    background: var(--accent-soft);
    color: var(--accent);
    font-weight: 800;
}

.solution-panel-top h3 {
    margin: 0.25rem 0 1rem;
    font-size: 1.4rem;
    letter-spacing: -0.03em;
}

.solution-list {
    display: grid;
    gap: 1rem;
}

    .solution-list strong {
        display: block;
        margin-bottom: 0.35rem;
    }

.check-list {
    display: grid;
    gap: 0.9rem;
}

    .check-list li {
        position: relative;
        padding-left: 1.5rem;
    }

        .check-list li::before {
            content: "";
            position: absolute;
            left: 0;
            top: 0.6rem;
            width: 0.55rem;
            height: 0.55rem;
            border-radius: 50%;
            background: var(--accent);
        }

.cta-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 2rem 2.1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, #ffffff, #f3f7fb);
    box-shadow: var(--shadow-md);
}

.site-footer {
    padding: 2rem 0 3rem;
    border-top: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.72);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.2fr 0.7fr 0.7fr;
    gap: 1.5rem;
    align-items: start;
}

.footer-links-group {
    display: grid;
    gap: 0.55rem;
}

    .footer-links-group h3 {
        margin: 0 0 0.4rem;
        font-size: 1rem;
    }

.footer-bottom {
    padding-top: 1.25rem;
    margin-top: 1.5rem;
    border-top: 1px solid var(--line);
}

@media (max-width: 1080px) {
    .hero-inner,
    .split,
    .footer-top,
    .cta-panel {
        grid-template-columns: 1fr;
    }

    .cta-panel {
        align-items: flex-start;
    }

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

@media (max-width: 860px) {
    .site-header {
        top: 10px;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 0.5rem);
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 0.75rem 1rem 1rem;
        border: 1px solid var(--line);
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.98);
        box-shadow: var(--shadow-md);
    }

        .site-nav.is-open {
            display: flex;
        }

        .site-nav a {
            padding: 0.9rem 0;
            border-bottom: 1px solid var(--line);
        }

            .site-nav a:last-child {
                border-bottom: 0;
            }

    .nav-cta {
        margin-top: 0.8rem;
        width: 100%;
    }

    .grid-3,
    .hero-panel-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(100% - 1.25rem, var(--container));
    }

    .hero {
        padding: 5.4rem 0 4rem;
    }

    .hero-copy h1 {
        font-size: clamp(2.35rem, 10vw, 3.5rem);
    }

    .hero-brand-lockup {
        align-items: center;
    }

    .brand-wordmark {
        font-size: 0.95rem;
    }

    .brand-logo {
        width: 38px;
        height: 38px;
    }

    .hero-logo {
        width: 48px;
        height: 48px;
    }

    .button-group {
        flex-direction: column;
    }

    .button,
    .button-secondary {
        width: 100%;
    }

    .section {
        padding: 4.4rem 0;
    }

    .hero-points li {
        width: 100%;
        text-align: center;
    }
}
