:root {
    --blue: #0c5177;
    --green: #078058;
    --teal: #138793;
    --ink: #071225;
    --muted: #63718b;
    --line: #d9e2ee;
    --surface: #f5f8fc;
    --white: #ffffff;
    --pink: #d918b8;
    --violet: #7a3df0;
    --cyan: #13a6e8;
    --shadow: 0 18px 48px rgba(12, 81, 119, .12);
    --radius: 8px;
    --content: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--ink);
    background: var(--surface);
    line-height: 1.55;
}

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

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, .94);
    backdrop-filter: blur(16px);
}

.nav {
    width: min(var(--content), calc(100% - 32px));
    min-height: 72px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

#nav-logo {
    width: auto;
    height: 32px;
    max-width: none;
    flex: 0 0 auto;
}

.footer-logo {
    width: auto;
    height: 26px;
    max-width: none;
}

.brand {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    gap: 10px;
    font-family: Montserrat, Inter, system-ui, sans-serif;
    font-weight: 800;
}

.brand-mark {
    width: 31px;
    height: 31px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--white);
    background: linear-gradient(135deg, var(--teal), var(--green) 50%, var(--blue));
    font-weight: 900;
    line-height: 1;
    box-shadow: 0 10px 26px rgba(19, 135, 147, .22);
}

.brand span span {
    color: var(--green);
}

.nav-toggle {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.menu-button {
    width: 44px;
    height: 44px;
    display: none;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--white);
    cursor: pointer;
}

.menu-button i,
.menu-button i::before,
.menu-button i::after {
    width: 18px;
    height: 2px;
    display: block;
    border-radius: 999px;
    background: var(--ink);
    content: "";
    transition: transform .2s ease, opacity .2s ease;
}

.menu-button i::before {
    transform: translateY(-6px);
}

.menu-button i::after {
    transform: translateY(4px);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
    color: #24304a;
    font-size: 14px;
    font-weight: 600;
}

.nav-links a {
    transition: color .2s ease;
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 0 24px;
    background: var(--white);
    color: var(--ink);
    font-size: 14px;
    font-weight: 800;
    white-space: nowrap;
    box-shadow: 0 8px 22px rgba(7, 18, 37, .05);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
    border-color: rgba(19, 135, 147, .32);
}

.btn-primary {
    border: 0;
    color: var(--white);
    background: linear-gradient(135deg, var(--teal), var(--green) 50%, var(--blue));
    box-shadow: 0 18px 34px rgba(12, 81, 119, .22);
}

.hero {
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
    background:
        linear-gradient(rgba(12, 81, 119, .055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(12, 81, 119, .055) 1px, transparent 1px),
        radial-gradient(circle at 14% 20%, rgba(19, 135, 147, .16), transparent 28%),
        radial-gradient(circle at 85% 16%, rgba(7, 128, 88, .15), transparent 30%),
        linear-gradient(115deg, #edfaff 0%, #f9f6ff 54%, #fff4fb 100%);
    background-size: 52px 52px, 52px 52px, auto, auto, auto;
}

.hero-inner {
    width: min(var(--content), calc(100% - 32px));
    min-height: clamp(560px, 72svh, 720px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
    gap: clamp(32px, 2vw, 76px);
    padding: clamp(64px, 8vw, 96px) 0;
}

.logo-lockup {
    width: min(310px, 72vw);
    margin-bottom: 22px;
}

.eyebrow {
    width: fit-content;
    margin-bottom: 24px;
    border: 1px solid rgba(122, 61, 240, .28);
    border-radius: 999px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, .7);
    color: var(--blue);
    font-size: 12px;
    font-weight: 900;
}

h1,
h2,
h3 {
    margin: 0;
    font-family: Montserrat, Inter, system-ui, sans-serif;
    line-height: .98;
    letter-spacing: 0;
}

h1 {
    max-width: 680px;
    font-size: clamp(42px, 5.5vw, 76px);
    font-weight: 900;
}

.gradient-text {
    color: transparent;
    background: linear-gradient(90deg, var(--teal), var(--green) 50%, var(--blue));
    -webkit-background-clip: text;
    background-clip: text;
}

.hero-copy {
    max-width: 58ch;
    margin: 28px 0 30px;
    color: #50617f;
    font-size: 18px;
}

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

.match-visual {
    position: relative;
    width: 100%;
    display: grid;
    place-items: center;
    justify-self: end;
}

.match-visual::before {
    content: "";
    position: absolute;
    inset: 7% 5%;
    border-radius: 32px;
    background: rgba(255, 255, 255, .58);
    filter: blur(18px);
}

.match-visual img {
    position: relative;
    width: min(100%, 620px);
    height: auto;
    max-height: min(62svh, 620px);
    object-fit: contain;
}

.section {
    width: min(var(--content), calc(100% - 32px));
    margin: 0 auto;
    padding: 64px 0;
}

.section-head {
    max-width: 760px;
    margin-bottom: 46px;
}

.section h2 {
    max-width: 790px;
    font-size: clamp(36px, 5vw, 54px);
    font-weight: 900;
}

.section p {
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 17px;
}

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

.section-actions {
    display: flex;
    justify-content: center;
    margin-top: 34px;
}

.card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
}

.step-card {
    min-height: 196px;
    padding: 26px;
    display: grid;
    align-content: space-between;
}

.step-top {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    color: var(--blue);
    font-size: 13px;
    font-weight: 900;
}

.icon-bubble {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--white);
    background: linear-gradient(135deg, var(--teal), var(--green) 50%, var(--blue));
    font-weight: 900;
}

.step-card h3 {
    margin-top: 22px;
    font-size: 20px;
    line-height: 1.15;
}

.step-card p {
    margin-top: 10px;
    font-size: 15px;
}

.skills-section {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(340px, 1.05fr);
    align-items: start;
    gap: 52px;
    padding-top: 20px;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.skill-card {
    min-height: 146px;
    display: grid;
    place-items: center;
    gap: 12px;
    padding: 24px;
    text-align: center;
    font-family: Montserrat, Inter, sans-serif;
    font-weight: 800;
}

.skill-card .icon-bubble {
    width: 54px;
    height: 54px;
}

.dark-panel {
    border-radius: 24px;
    padding: 64px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    align-items: center;
    gap: 48px;
    color: var(--white);
    background:
        radial-gradient(circle at 78% 12%, rgba(19, 135, 147, .34), transparent 30%),
        linear-gradient(135deg, #061223 0%, #090f21 58%, #1f1e57 100%);
}

.dark-panel .eyebrow {
    margin-bottom: 24px;
    border-color: rgba(255, 255, 255, .18);
    background: rgba(255, 255, 255, .08);
    color: var(--white);
}

.dark-panel h2 {
    max-width: 620px;
    color: var(--white);
    font-size: clamp(34px, 4vw, 50px);
}

.dark-panel p {
    max-width: 660px;
    color: #c2cbdd;
}

.pill-list {
    display: grid;
    gap: 14px;
}

.pill {
    min-height: 56px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 999px;
    padding: 0 20px;
    background: rgba(255, 255, 255, .06);
    font-weight: 800;
}

.check {
    width: 20px;
    height: 20px;
    display: grid;
    place-items: center;
    border: 1px solid #7ed957;
    border-radius: 50%;
    color: #7ed957;
    font-size: 12px;
    flex: 0 0 auto;
}

.split-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
}

.feature-card {
    min-height: 230px;
    padding: 32px;
}

.feature-icon {
    width: 34px;
    height: 34px;
    color: var(--ink);
    flex: 0 0 auto;
}

.feature-card h3 {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    line-height: 1.15;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 22px;
    font-weight: 900;
}

.cta {
    text-align: center;
    padding-top: 34px;
}

.cta-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    margin: 0 auto 24px;
    color: var(--ink);
    font-size: 34px;
}

.cta h2 {
    margin: 0 auto;
}

.cta p {
    max-width: 640px;
    margin-inline: auto;
}

.cta-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.construction-hero {
    min-height: calc(100svh - 72px);
    display: grid;
    place-items: center;
    padding: 72px 16px;
    border-bottom: 1px solid var(--line);
    background:
        linear-gradient(rgba(12, 81, 119, .055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(12, 81, 119, .055) 1px, transparent 1px),
        radial-gradient(circle at 16% 22%, rgba(19, 135, 147, .16), transparent 28%),
        radial-gradient(circle at 84% 18%, rgba(7, 128, 88, .15), transparent 30%),
        linear-gradient(115deg, #edfaff 0%, #f9f6ff 54%, #fff4fb 100%);
    background-size: 52px 52px, 52px 52px, auto, auto, auto;
}

.construction-panel {
    position: relative;
    overflow: hidden;
    width: min(980px, 100%);
    border: 1px solid rgba(217, 226, 238, .82);
    border-radius: 24px;
    padding: clamp(42px, 7vw, 78px);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(244, 253, 250, .96) 46%, rgba(246, 250, 255, .96));
    box-shadow: 0 24px 70px rgba(12, 81, 119, .18);
    backdrop-filter: blur(16px);
}

.construction-panel::after {
    content: "";
    position: absolute;
    inset: auto -12% -42% 44%;
    height: 260px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(19, 135, 147, .08), rgba(7, 128, 88, .07), rgba(12, 81, 119, .06));
    transform: rotate(-8deg);
}

.construction-panel > * {
    position: relative;
    z-index: 1;
}

.construction-panel h1 {
    max-width: 860px;
    font-size: clamp(44px, 6vw, 74px);
}

.construction-panel p {
    max-width: 700px;
    margin: 24px 0 0;
    color: #50617f;
    font-size: 18px;
}

.construction-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.construction-tags span {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(19, 135, 147, .24);
    border-radius: 999px;
    padding: 0 16px;
    background: rgba(255, 255, 255, .68);
    color: var(--blue);
    font-size: 13px;
    font-weight: 900;
}

.construction-panel .hero-actions {
    margin-top: 44px;
    margin-bottom: 0;
}

.site-footer {
    border-top: 1px solid var(--line);
    background: var(--white);
}

.footer-main {
    width: min(var(--content), calc(100% - 32px));
    margin: 0 auto;
    padding: 68px 0;
    display: grid;
    grid-template-columns: minmax(260px, 1fr) 190px 190px;
    gap: 64px;
}

.footer-main p {
    max-width: 390px;
    color: var(--muted);
    font-size: 14px;
}

.footer-group h3 {
    margin-bottom: 14px;
    font-size: 13px;
    line-height: 1;
}

.footer-group a {
    display: block;
    margin: 8px 0;
    color: var(--muted);
    font-size: 14px;
}

.footer-bottom {
    border-top: 1px solid var(--line);
}

.footer-bottom-inner {
    width: min(var(--content), calc(100% - 32px));
    min-height: 58px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: var(--muted);
    font-size: 12px;
}

@media (max-width: 1100px) {
    .menu-button {
        display: inline-flex;
    }

    .nav {
        min-height: 66px;
    }

    .nav-links,
    .nav-actions {
        position: absolute;
        left: 16px;
        right: 16px;
        display: none;
        border: 1px solid var(--line);
        background: var(--white);
        box-shadow: var(--shadow);
    }

    .nav-links {
        top: 76px;
        border-radius: 16px 16px 0 0;
        padding: 18px;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .nav-links a {
        min-height: 46px;
        display: flex;
        align-items: center;
        border-bottom: 1px solid var(--line);
    }

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

    .nav-actions {
        top: 331px;
        border-top: 0;
        border-radius: 0 0 16px 16px;
        padding: 0 18px 18px;
        flex-direction: column;
    }

    .nav-actions .btn {
        width: 100%;
    }

    .nav-toggle:checked~.menu-button i {
        transform: rotate(45deg);
    }

    .nav-toggle:checked~.menu-button i::before {
        transform: translateY(0) rotate(90deg);
    }

    .nav-toggle:checked~.menu-button i::after {
        opacity: 0;
    }

    .nav-toggle:checked~.nav-links,
    .nav-toggle:checked~.nav-actions {
        display: flex;
    }

    .skills-section,
    .dark-panel,
    .footer-main {
        grid-template-columns: 1fr;
    }

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

    .dark-panel {
        padding: 36px;
    }
}

@media (max-width: 820px) {
    .hero-inner {
        min-height: auto;
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 58px 0 64px;
    }

    .match-visual {
        justify-self: center;
    }

    .match-visual img {
        width: min(100%, 560px);
        max-height: none;
    }
}

@media (max-width: 620px) {
    .nav {
        width: min(var(--content), calc(100% - 24px));
    }

    .brand span {
        font-size: 15px;
    }

    .section,
    .hero-inner,
    .footer-main,
    .footer-bottom-inner {
        width: min(var(--content), calc(100% - 24px));
    }

    h1 {
        font-size: 44px;
    }

    .hero-copy,
    .section p {
        font-size: 16px;
    }

    .hero-actions,
    .cta-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

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

    .section {
        padding: 64px 0;
    }

    .step-card,
    .feature-card {
        padding: 24px;
    }

    .dark-panel {
        margin-top: 58px;
        border-radius: 18px;
        padding: 28px 20px;
    }

    .pill {
        border-radius: 18px;
    }

    .footer-bottom-inner {
        min-height: 76px;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
    }
}
