:root {
    --bg: #07130f;
    --bg-soft: #0d2118;
    --panel: rgba(255, 255, 255, 0.065);
    --panel-strong: rgba(255, 255, 255, 0.105);
    --text: #f5fff9;
    --muted: #b6c8bd;
    --green: #1ee06f;
    --yellow: #ffd23c;
    --blue: #2d7fff;
    --line: rgba(255, 255, 255, 0.14);
    --shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
    --radius: 28px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Inter', Arial, sans-serif;
    background:
        radial-gradient(circle at 15% 5%, rgba(30, 224, 111, 0.16), transparent 34%),
        radial-gradient(circle at 86% 12%, rgba(255, 210, 60, 0.12), transparent 32%),
        radial-gradient(circle at 70% 65%, rgba(45, 127, 255, 0.14), transparent 34%),
        var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(to bottom, black, transparent 78%);
}

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

.container {
    width: min(1160px, calc(100% - 40px));
    margin: 0 auto;
}

.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 20;
    backdrop-filter: blur(18px);
    background: rgba(7, 19, 15, 0.76);
    border-bottom: 1px solid var(--line);
}

.nav-wrap {
    height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.brand-mark {
    width: 44px;
    height: 44px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    color: #07130f;
    background: linear-gradient(135deg, var(--green), var(--yellow));
    box-shadow: 0 0 28px rgba(30, 224, 111, 0.28);
}

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

.brand-text span,
h1 span {
    color: var(--yellow);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    color: var(--muted);
    font-weight: 700;
    font-size: 0.92rem;
}

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

.nav-cta {
    color: #07130f !important;
    background: var(--yellow);
    padding: 12px 18px;
    border-radius: 999px;
}

.nav-toggle {
    display: none;
    background: transparent;
    border: 1px solid var(--line);
    color: var(--text);
    border-radius: 12px;
    font-size: 1.3rem;
    padding: 8px 12px;
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(7, 19, 15, 0.2), rgba(7, 19, 15, 0.92)),
        radial-gradient(circle at 78% 45%, rgba(30, 224, 111, 0.2), transparent 30%);
    pointer-events: none;
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 56px;
    align-items: center;
}

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--yellow);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.76rem;
}

.eyebrow span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 18px var(--green);
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    font-size: clamp(4.8rem, 12vw, 9.5rem);
    line-height: 0.86;
    letter-spacing: -0.09em;
    margin: 28px 0 24px;
}

.hero-subtitle {
    max-width: 820px;
    font-size: clamp(1.65rem, 4vw, 3.4rem);
    line-height: 1.02;
    letter-spacing: -0.06em;
    font-weight: 900;
    margin-bottom: 22px;
}

.hero-copy,
.section-copy,
.contact-copy,
.diff-wrap p {
    color: var(--muted);
    font-size: 1.08rem;
}

.hero-copy {
    max-width: 650px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 34px 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 999px;
    padding: 16px 24px;
    font-weight: 900;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    color: #07130f;
    background: linear-gradient(135deg, var(--green), var(--yellow));
    box-shadow: 0 18px 42px rgba(30, 224, 111, 0.18);
}

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

.full {
    width: 100%;
}

.hero-proof {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    max-width: 760px;
}

.hero-proof div {
    padding: 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid var(--line);
}

.hero-proof strong,
.hero-proof span {
    display: block;
}

.hero-proof strong {
    font-size: 0.96rem;
}

.hero-proof span {
    color: var(--muted);
    font-size: 0.85rem;
}

.hero-card {
    position: relative;
    min-height: 570px;
    display: grid;
    place-items: center;
}

.card-orbit {
    position: absolute;
    width: 440px;
    height: 440px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background:
        conic-gradient(from 140deg, rgba(30, 224, 111, 0.0), rgba(30, 224, 111, 0.35), rgba(255, 210, 60, 0.28), rgba(45, 127, 255, 0.18), rgba(30, 224, 111, 0.0));
    filter: blur(0.2px);
    animation: spin 16s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.method-ring {
    position: absolute;
    width: 490px;
    height: 490px;
    border-radius: 50%;
    animation: spin 28s linear infinite reverse;
}

.method-ring span {
    position: absolute;
    color: var(--text);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 9px 14px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.68rem;
}

.method-ring span:nth-child(1) { top: 0; left: 50%; transform: translateX(-50%); }
.method-ring span:nth-child(2) { right: 0; top: 50%; transform: translateY(-50%); }
.method-ring span:nth-child(3) { bottom: 0; left: 50%; transform: translateX(-50%); }
.method-ring span:nth-child(4) { left: 0; top: 50%; transform: translateY(-50%); }

.hero-card-inner {
    position: relative;
    width: min(390px, 100%);
    padding: 38px;
    border-radius: 38px;
    background: linear-gradient(145deg, rgba(255,255,255,0.14), rgba(255,255,255,0.055));
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    backdrop-filter: blur(26px);
}

.hero-card-inner p {
    color: var(--yellow);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.72rem;
}

.hero-card-inner h2 {
    font-size: 2.2rem;
    line-height: 0.98;
    letter-spacing: -0.06em;
}

.hero-card-inner ul {
    padding-left: 20px;
    color: var(--muted);
}

.section {
    padding: 96px 0;
}

.split {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 56px;
    align-items: start;
}

.split.reverse {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
}

.section h2,
.diff-wrap h2 {
    font-size: clamp(2.4rem, 6vw, 5.2rem);
    line-height: 0.95;
    letter-spacing: -0.075em;
    margin: 14px 0 0;
}

.section-copy p {
    margin-bottom: 22px;
}

.single {
    margin-top: 22px;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.9fr 0.9fr;
    gap: 20px;
}

.statement-card,
.pillar-card,
.contact-form {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: 0 20px 70px rgba(0,0,0,0.18);
}

.main-statement {
    background: linear-gradient(135deg, rgba(30, 224, 111, 0.18), rgba(255, 210, 60, 0.1));
}

.statement-card span,
.timeline-item span {
    display: inline-block;
    color: #07130f;
    background: var(--yellow);
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 18px;
}

.statement-card h3,
.pillar-card h3,
.timeline-item h3 {
    font-size: 1.45rem;
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.statement-card p,
.pillar-card p,
.timeline-item p {
    color: var(--muted);
    margin-bottom: 0;
}

.section-center {
    max-width: 820px;
    text-align: center;
    margin: 0 auto 44px;
}

.section-center h2 {
    margin-bottom: 18px;
}

.section-center p {
    color: var(--muted);
    font-size: 1.08rem;
}

.pillar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.icon {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: rgba(255,255,255,0.08);
    font-size: 1.55rem;
    margin-bottom: 20px;
}

.pathway {
    background: linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0));
}

.timeline {
    display: grid;
    gap: 16px;
}

.timeline-item {
    position: relative;
    padding: 28px 28px 28px 34px;
    border-radius: 26px;
    background: rgba(255,255,255,0.065);
    border: 1px solid var(--line);
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 22px;
    bottom: 22px;
    width: 4px;
    border-radius: 10px;
    background: linear-gradient(var(--green), var(--yellow));
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
}

.tags span,
.contact-actions span {
    display: inline-flex;
    border: 1px solid var(--line);
    background: rgba(255,255,255,0.07);
    color: var(--text);
    border-radius: 999px;
    padding: 10px 14px;
    font-weight: 800;
    font-size: 0.88rem;
}

.differentiator {
    padding: 66px 0;
}

.diff-wrap {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 40px;
    align-items: center;
    padding: 44px;
    border-radius: 36px;
    background:
        radial-gradient(circle at 10% 20%, rgba(255, 210, 60, 0.16), transparent 32%),
        linear-gradient(135deg, rgba(30,224,111,0.14), rgba(45,127,255,0.1));
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.diff-wrap h2 {
    font-size: clamp(2.1rem, 5vw, 4.5rem);
}

.partner-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.partner-grid div {
    min-height: 92px;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 20px;
    border-radius: 24px;
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--line);
    font-weight: 900;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 56px;
    align-items: start;
}

.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.contact-form {
    display: grid;
    gap: 18px;
}

.contact-form label {
    display: grid;
    gap: 8px;
    color: var(--text);
    font-weight: 800;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(0,0,0,0.2);
    color: var(--text);
    padding: 16px 18px;
    font: inherit;
    outline: none;
}

input:focus,
select:focus,
textarea:focus {
    border-color: rgba(30, 224, 111, 0.72);
    box-shadow: 0 0 0 4px rgba(30, 224, 111, 0.1);
}

textarea {
    resize: vertical;
}

.form-status {
    border-radius: 18px;
    padding: 14px 16px;
    font-weight: 800;
}

.form-status.success {
    background: rgba(30, 224, 111, 0.12);
    border: 1px solid rgba(30, 224, 111, 0.4);
}

.form-status.error {
    background: rgba(255, 90, 90, 0.12);
    border: 1px solid rgba(255, 90, 90, 0.4);
}

.site-footer {
    border-top: 1px solid var(--line);
    padding: 28px 0;
    color: var(--muted);
}

.footer-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-wrap p {
    margin: 0;
}

@media (max-width: 980px) {
    .nav-toggle {
        display: inline-flex;
    }

    .nav-links {
        position: absolute;
        top: 78px;
        left: 20px;
        right: 20px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: rgba(7, 19, 15, 0.96);
        border: 1px solid var(--line);
        border-radius: 22px;
        overflow: hidden;
        box-shadow: var(--shadow);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        padding: 16px 18px;
        border-bottom: 1px solid var(--line);
    }

    .nav-cta {
        margin: 12px;
        text-align: center;
    }

    .hero-grid,
    .split,
    .split.reverse,
    .philosophy-grid,
    .pillar-grid,
    .diff-wrap,
    .partner-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-card {
        min-height: 460px;
    }

    .card-orbit {
        width: 340px;
        height: 340px;
    }

    .method-ring {
        width: 382px;
        height: 382px;
    }

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

@media (max-width: 640px) {
    .container {
        width: min(100% - 28px, 1160px);
    }

    .hero {
        padding-top: 118px;
    }

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

    .hero-card {
        display: none;
    }

    .section {
        padding: 68px 0;
    }

    .statement-card,
    .pillar-card,
    .contact-form,
    .diff-wrap {
        padding: 24px;
        border-radius: 24px;
    }

    .partner-grid {
        grid-template-columns: 1fr;
    }
}
