:root {
    --ink-900: #081632;
    --ink-700: #17325c;
    --ink-500: #3a5d8f;
    --accent-1: #0aa6a6;
    --accent-2: #000080;
    --bg-1: #eef5ff;
    --bg-2: #f2fff6;
    --card: #ffffff;
    --border: rgba(8, 22, 50, 0.12);
    --shadow: 0 20px 40px -24px rgba(8, 22, 50, 0.45);
    --radius: 18px;
    --radius-lg: 28px;
    --font-display: "Sora", sans-serif;
    --font-body: "Source Sans 3", sans-serif;
    --transition: 0.3s ease;
    --section-pad: 60px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    color: var(--ink-700);
    background: linear-gradient(140deg, var(--bg-1) 0%, #ffffff 48%, var(--bg-2) 100%);
    min-height: 100vh;
    line-height: 1.6;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image:
        radial-gradient(circle at 12% 12%, rgba(10, 166, 166, 0.18), transparent 40%),
        radial-gradient(circle at 82% 8%, rgba(255, 107, 74, 0.16), transparent 45%),
        radial-gradient(circle at 80% 86%, rgba(23, 50, 92, 0.18), transparent 50%);
    z-index: -3;
    pointer-events: none;
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(8, 22, 50, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(8, 22, 50, 0.04) 1px, transparent 1px);
    background-size: 48px 48px;
    opacity: 0.35;
    z-index: -4;
    pointer-events: none;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: min(1200px, 92vw);
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(238, 245, 255, 0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    gap: 24px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand img {
    width: auto;
    height: 50px;
    object-fit: contain;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--ink-900);
}

.brand-tag {
    font-size: 0.85rem;
    color: var(--ink-500);
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 24px;
    font-weight: 500;
}

.nav-links a {
    position: relative;
    padding-bottom: 4px;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(120deg, var(--accent-1), var(--accent-2));
    transition: width var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    background: transparent;
    border: 0;
    flex-direction: column;
    gap: 6px;
}

.nav-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--ink-900);
}

.hero {
    padding: 100px 0 40px;
}

.hero-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    align-items: center;
    gap: 56px;
}

.hero-copy h1 {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 5vw, 4rem);
    line-height: 1.05;
    color: var(--ink-900);
    margin-bottom: 16px;
}

.lead {
    font-size: 1.15rem;
    color: var(--ink-500);
    max-width: 520px;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--accent-1);
    display: inline-block;
    margin-bottom: 18px;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin: 26px 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 26px;
    border-radius: 999px;
    font-weight: 600;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.btn-primary {
    background: linear-gradient(120deg, var(--accent-1), var(--accent-2));
    color: #fff;
    box-shadow: 0 14px 30px -18px rgba(8, 22, 50, 0.7);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 34px -20px rgba(8, 22, 50, 0.7);
}

.btn-ghost {
    border: 1px solid var(--border);
    color: var(--ink-900);
    background: rgba(255, 255, 255, 0.7);
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 12px;
}

.badge {
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--border);
    font-size: 0.85rem;
    color: var(--ink-700);
}

.hero-visual {
    display: grid;
    gap: 18px;
}

.hero-panel {
    background: rgba(255, 255, 255, 0.9);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(8, 22, 50, 0.08);
    text-align: center;
}

.hero-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 28px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.hero-logo img {
    width: min(220px, 70%);
    height: auto;
}





.hero-caption {
    margin-top: 0;
    font-size: 0.95rem;
    color: var(--ink-500);
}

.hero-callouts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

.callout-card {
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.callout-card h3 {
    font-family: var(--font-display);
    color: var(--ink-900);
    margin-bottom: 8px;
    font-size: 1.05rem;
}

.section {
    padding: var(--section-pad) 0;
}

.section-header {
    max-width: 640px;
    margin-bottom: 32px;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--ink-900);
    margin-bottom: 14px;
}

.split {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    align-items: center;
}

.stat-stack {
    display: grid;
    gap: 18px;
}

.stat-card {
    background: var(--card);
    border-radius: var(--radius);
    padding: 24px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.stat-card h3 {
    font-family: var(--font-display);
    margin-bottom: 8px;
    color: var(--ink-900);
}

.grid {
    display: grid;
    gap: 20px;
}

.grid.three {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.grid.five {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.card {
    background: var(--card);
    border-radius: var(--radius);
    padding: 24px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.card h3 {
    font-family: var(--font-display);
    color: var(--ink-900);
    margin-bottom: 10px;
}

.product-grid {
    display: grid;
    gap: 32px;
}

.product-card {
    background: var(--card);
    border-radius: var(--radius-lg);
    padding: 32px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 28px;
    align-items: center;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.product-tag {
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--accent-2);
}

.product-copy h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    margin: 12px 0 10px;
    color: var(--ink-900);
}

.feature-list {
    list-style: none;
    margin: 18px 0 22px;
    display: grid;
    gap: 10px;
}

.feature-list li {
    padding-left: 22px;
    position: relative;
}

.feature-list li::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent-1);
    position: absolute;
    left: 0;
    top: 7px;
}



.offerings {
    margin-top: 40px;
    padding: 28px;
    background: rgba(255, 255, 255, 0.85);
    border-radius: var(--radius);
    border: 1px dashed rgba(8, 22, 50, 0.2);
}

.offerings h3 {
    font-family: var(--font-display);
    color: var(--ink-900);
    margin-bottom: 16px;
}

.offerings-grid {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.offerings-grid span {
    padding: 10px 14px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--border);
    text-align: center;
}

.value-card {
    padding: 18px;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 999px;
    text-align: center;
    border: 1px solid var(--border);
    font-weight: 600;
    color: var(--ink-700);
    box-shadow: var(--shadow);
}

.impact {
    padding: 60px 0;
}

.impact-inner {
    background: linear-gradient(120deg, rgba(10, 166, 166, 0.12), rgba(255, 107, 74, 0.12));
    border-radius: var(--radius-lg);
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border: 1px solid rgba(8, 22, 50, 0.1);
}

.contact {
    display: grid;
    gap: 32px;
}

.contact-form {
    background: var(--card);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    display: grid;
    gap: 18px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

input,
textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid var(--border);
    font-family: var(--font-body);
    font-size: 1rem;
}

input:focus,
textarea:focus {
    outline: 2px solid rgba(10, 166, 166, 0.3);
    border-color: rgba(10, 166, 166, 0.5);
}

.footer {
    border-top: 1px solid var(--border);
    padding: 30px 0 50px;
    background: rgba(255, 255, 255, 0.7);
}

.footer .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.footer p {
    color: var(--ink-500);
    margin-top: 6px;
}

.footer-links {
    display: flex;
    gap: 20px;
    font-weight: 600;
}

.bg-orb {
    position: fixed;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    filter: blur(0);
    opacity: 0.5;
    z-index: -2;
    animation: float 16s ease-in-out infinite;
}

.orb-1 {
    top: 10%;
    left: -40px;
    background: radial-gradient(circle, rgba(10, 166, 166, 0.6), transparent 70%);
}

.orb-2 {
    top: 60%;
    right: -60px;
    background: radial-gradient(circle, rgba(255, 107, 74, 0.55), transparent 70%);
    animation-delay: 3s;
}

.orb-3 {
    bottom: -60px;
    left: 40%;
    background: radial-gradient(circle, rgba(23, 50, 92, 0.45), transparent 70%);
    animation-delay: 6s;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-16px);
    }
}

@media (max-width: 900px) {
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        padding: 24px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        border-bottom: 1px solid var(--border);
        display: none;
        text-align: center;
        width: 100%;
    }

    .nav.open .nav-links {
        display: flex;
    }

    .nav-toggle {
        display: none;
    }

    .brand img {
        height: 40px;
    }

    .brand-name {
        font-size: 1rem;
    }

    .brand-tag {
        font-size: 0.75rem;
    }

    .hero {
        padding-top: 40px;
        padding-bottom: 60px;
        text-align: center;
    }

    .hero-grid {
        gap: 40px;
    }

    .hero-copy h1 {
        font-size: 2.5rem;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-badges {
        justify-content: center;
    }

    .impact-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 30px;
    }

    .split {
        gap: 30px;
    }
}

@media (max-width: 600px) {
    .section-header h2 {
        font-size: 2rem;
    }

    .footer .container {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }

    .footer-links {
        flex-direction: column;
        gap: 12px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .offerings-grid {
        grid-template-columns: 1fr;
    }

    .offerings-grid span {
        text-align: center;
    }

    .contact-form {
        padding: 24px;
    }
}