:root {
    --ink: #111827;
    --ink-soft: #344054;
    --muted: #667085;
    --line: #d8e0e7;
    --paper: #ffffff;
    --paper-soft: #f6f8fa;
    --night: #071018;
    --night-soft: #0f1b24;
    --cyan: #2fb8c6;
    --green: #53c784;
    --gold: #f0b84d;
    --danger: #b42318;
    --success: #05603a;
    --shadow: 0 24px 70px rgba(10, 24, 36, 0.14);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: 0;
}

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

a {
    color: inherit;
}

button,
input,
select,
textarea {
    font: inherit;
}

.skip-link {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 100;
    transform: translateY(-140%);
    padding: 10px 14px;
    color: var(--paper);
    background: var(--night);
    border-radius: 6px;
}

.skip-link:focus {
    transform: translateY(0);
}

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

.site-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(7, 16, 24, 0.78);
    backdrop-filter: blur(18px);
}

.nav-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 76px;
}

.brand img {
    width: 214px;
    height: auto;
}

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

.nav-links a {
    padding: 10px 12px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 4px;
}

.nav-links a:hover,
.nav-links a:focus {
    color: var(--paper);
    background: rgba(255, 255, 255, 0.1);
}

.nav-links .nav-cta {
    margin-left: 8px;
    padding: 11px 18px;
    color: #061018;
    background: linear-gradient(135deg, var(--green), var(--gold));
    border-radius: 0;
    clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
    box-shadow: 0 12px 26px rgba(83, 199, 132, 0.2);
}

.nav-links .nav-cta:hover,
.nav-links .nav-cta:focus {
    color: #061018;
    background: linear-gradient(135deg, #66d895, #f5c55f);
}

.section {
    padding: 96px 0;
}

.section-dark {
    color: var(--paper);
    background: var(--night);
}

.section-light {
    background: var(--paper-soft);
}

.section-white {
    background: var(--paper);
}

.hero {
    position: relative;
    min-height: 760px;
    overflow: hidden;
}

.hero-art {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 67% center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(7, 16, 24, 0.98) 0%, rgba(7, 16, 24, 0.92) 28%, rgba(7, 16, 24, 0.48) 62%, rgba(7, 16, 24, 0.18) 100%),
        linear-gradient(180deg, rgba(7, 16, 24, 0.2) 0%, rgba(7, 16, 24, 0.92) 100%);
}

.hero-layout {
    position: relative;
    display: grid;
    align-items: center;
    min-height: 760px;
    padding-top: 86px;
}

.hero-copy {
    width: min(700px, 100%);
}

.eyebrow {
    margin: 0 0 16px;
    color: var(--cyan);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0;
}

h1,
h2,
h3,
p {
    overflow-wrap: anywhere;
}

h1,
h2,
h3 {
    margin: 0;
    line-height: 1.04;
    letter-spacing: 0;
}

h1 {
    max-width: 680px;
    font-size: 64px;
}

h2 {
    font-size: 42px;
}

h3 {
    font-size: 24px;
}

.hero-intro {
    max-width: 650px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 20px;
}

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

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 52px;
    padding: 14px 22px;
    border: 1px solid transparent;
    border-radius: 0;
    clip-path: polygon(12px 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
    cursor: pointer;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    transition: transform 160ms ease, border-color 160ms ease, background-color 160ms ease, color 160ms ease;
}

.button::after {
    content: "";
    width: 16px;
    height: 10px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: skewX(-18deg);
    transition: transform 160ms ease;
}

.button:hover,
.button:focus {
    transform: translateY(-1px);
}

.button:hover::after,
.button:focus::after {
    transform: translateX(3px) skewX(-18deg);
}

.button-primary {
    color: #071018;
    background: linear-gradient(135deg, var(--green), var(--gold));
    box-shadow: 0 16px 35px rgba(83, 199, 132, 0.24);
}

.button-ghost {
    color: var(--paper);
    border-color: rgba(255, 255, 255, 0.26);
    background: rgba(255, 255, 255, 0.08);
}

.button-ghost:hover,
.button-ghost:focus {
    border-color: rgba(255, 255, 255, 0.55);
    background: rgba(255, 255, 255, 0.14);
}

.hero-proof {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    width: min(640px, 100%);
    margin: 48px 0 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.12);
}

.hero-proof div {
    padding: 18px;
    background: rgba(7, 16, 24, 0.66);
}

.hero-proof dt {
    color: var(--paper);
    font-size: 20px;
    font-weight: 900;
}

.hero-proof dd {
    margin: 4px 0 0;
    color: rgba(255, 255, 255, 0.66);
    font-size: 14px;
}

.split-layout,
.experience-layout,
.contact-layout {
    display: grid;
    grid-template-columns: 0.86fr 1.14fr;
    gap: 72px;
    align-items: start;
}

.rich-copy p,
.section-heading p,
.service-panel p,
.process-track p,
.experience-section p,
.contact-copy p,
.site-footer p {
    color: var(--ink-soft);
}

.rich-copy p {
    margin: 0 0 18px;
    font-size: 19px;
}

.section-heading {
    max-width: 720px;
    margin-bottom: 42px;
}

.section-heading.compact {
    max-width: 650px;
}

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

.section-heading p {
    margin: 0;
    font-size: 18px;
}

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

.service-panel {
    position: relative;
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper);
    box-shadow: var(--shadow);
}

.service-panel::before {
    content: "";
    position: absolute;
    top: 0;
    right: 34px;
    left: 34px;
    height: 3px;
    background: linear-gradient(90deg, var(--cyan), var(--green));
}

.service-panel-accent::before {
    background: linear-gradient(90deg, var(--green), var(--gold));
}

.service-icon {
    display: grid;
    grid-template-columns: repeat(3, 16px);
    align-items: end;
    gap: 6px;
    width: 78px;
    height: 62px;
    margin-bottom: 28px;
    padding: 14px;
    border: 1px solid #cfe4ea;
    border-radius: 8px;
    background: #eef9fb;
}

.service-icon span {
    display: block;
    width: 16px;
    border-radius: 4px 4px 0 0;
    background: var(--cyan);
}

.service-icon span:nth-child(1) {
    height: 18px;
}

.service-icon span:nth-child(2) {
    height: 28px;
    background: var(--green);
}

.service-icon span:nth-child(3) {
    height: 36px;
    background: var(--gold);
}

.service-icon-lines {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    gap: 8px;
}

.service-icon-lines span {
    width: 100%;
    height: 5px;
    border-radius: 10px;
}

.service-panel h3 {
    margin-bottom: 14px;
}

.service-panel p {
    margin: 0 0 22px;
}

.check-list {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 28px;
    color: var(--ink);
}

.check-list li::before {
    content: "";
    position: absolute;
    top: 9px;
    left: 0;
    width: 14px;
    height: 8px;
    border-bottom: 3px solid var(--green);
    border-left: 3px solid var(--green);
    transform: rotate(-45deg);
}

.process-section {
    color: var(--paper);
    background:
        linear-gradient(135deg, rgba(7, 16, 24, 0.96), rgba(15, 27, 36, 0.98)),
        linear-gradient(90deg, rgba(47, 184, 198, 0.16), rgba(83, 199, 132, 0.08));
}

.process-section .eyebrow,
.experience-section .eyebrow {
    color: var(--green);
}

.process-section .section-heading p,
.process-track p,
.experience-section p {
    color: rgba(255, 255, 255, 0.72);
}

.process-track {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.12);
}

.process-track article {
    min-height: 260px;
    padding: 28px;
    background: rgba(255, 255, 255, 0.055);
}

.step-number {
    display: inline-flex;
    margin-bottom: 32px;
    color: var(--gold);
    font-weight: 900;
}

.process-track h3 {
    margin-bottom: 14px;
    font-size: 22px;
}

.process-track p {
    margin: 0;
}

.experience-section {
    background:
        radial-gradient(circle at 80% 30%, rgba(83, 199, 132, 0.16), transparent 28%),
        linear-gradient(135deg, #071018, #111f29);
}

.experience-layout {
    align-items: center;
}

.experience-section h2 {
    margin-bottom: 22px;
}

.experience-section p {
    margin: 0;
    font-size: 18px;
}

.experience-metrics {
    display: grid;
    gap: 14px;
}

.experience-metrics div {
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
}

.experience-metrics span {
    display: block;
    color: var(--paper);
    font-size: 38px;
    font-weight: 900;
    line-height: 1;
}

.experience-metrics p {
    margin-top: 8px;
    font-size: 15px;
}

.contact-section {
    background: linear-gradient(180deg, #ffffff 0%, #f4f8fb 100%);
}

.contact-copy {
    position: sticky;
    top: 112px;
}

.contact-copy h2 {
    margin-bottom: 20px;
}

.contact-copy > p {
    margin: 0 0 24px;
    font-size: 18px;
}

.contact-notes {
    display: grid;
    gap: 12px;
    margin-top: 28px;
}

.contact-notes p {
    margin: 0;
    padding: 18px;
    border-left: 3px solid var(--cyan);
    background: var(--paper);
}

.lead-form {
    display: grid;
    gap: 18px;
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper);
    box-shadow: var(--shadow);
}

.field-group {
    display: grid;
    gap: 16px;
}

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

label {
    display: grid;
    gap: 8px;
}

label span {
    color: var(--ink);
    font-size: 14px;
    font-weight: 800;
}

input,
select,
textarea {
    width: 100%;
    min-height: 48px;
    padding: 12px 13px;
    color: var(--ink);
    border: 1px solid #cbd5df;
    border-radius: 7px;
    background: #ffffff;
    outline: none;
    transition: border-color 160ms ease, box-shadow 160ms ease;
}

textarea {
    min-height: 138px;
    resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--cyan);
    box-shadow: 0 0 0 4px rgba(47, 184, 198, 0.16);
}

.consent-row {
    grid-template-columns: 18px 1fr;
    align-items: start;
    gap: 12px;
}

.consent-row input {
    min-height: 18px;
    margin-top: 3px;
}

.consent-row span {
    font-weight: 650;
}

.honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.form-submit {
    width: 100%;
    min-height: 54px;
    border: 0;
}

.form-submit[disabled] {
    cursor: wait;
    opacity: 0.68;
    transform: none;
}

.form-message {
    display: none;
    padding: 13px 14px;
    border-radius: 7px;
    font-weight: 750;
}

.form-message.is-visible {
    display: block;
}

.form-message.is-success {
    color: var(--success);
    background: #ecfdf3;
    border: 1px solid #abefc6;
}

.form-message.is-error {
    color: var(--danger);
    background: #fef3f2;
    border: 1px solid #fecdca;
}

.site-footer {
    padding: 38px 0;
    color: rgba(255, 255, 255, 0.74);
    background: #071018;
}

.footer-layout {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 36px;
    align-items: center;
}

.footer-logo {
    width: 232px;
    margin-bottom: 12px;
}

.site-footer p {
    max-width: 430px;
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
}

address {
    display: grid;
    gap: 6px;
    font-style: normal;
    text-align: right;
}

address a {
    color: var(--paper);
    text-decoration: none;
}

address a:hover,
address a:focus {
    color: var(--green);
}

@media (max-width: 980px) {
    .nav-shell {
        min-height: 68px;
    }

    .brand img {
        width: 156px;
    }

    .nav-links a:not(.nav-cta) {
        display: none;
    }

    .hero,
    .hero-layout {
        min-height: 720px;
    }

    h1 {
        font-size: 48px;
    }

    h2 {
        font-size: 34px;
    }

    .split-layout,
    .experience-layout,
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .service-grid,
    .two-columns {
        grid-template-columns: 1fr;
    }

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

    .contact-copy {
        position: static;
    }

    .footer-layout {
        grid-template-columns: 1fr;
    }

    address {
        text-align: left;
    }
}

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

    .section {
        padding: 70px 0;
    }

    .hero,
    .hero-layout {
        min-height: 760px;
    }

    .hero-art {
        object-position: 76% center;
    }

    .hero-overlay {
        background:
            linear-gradient(90deg, rgba(7, 16, 24, 0.98) 0%, rgba(7, 16, 24, 0.86) 58%, rgba(7, 16, 24, 0.62) 100%),
            linear-gradient(180deg, rgba(7, 16, 24, 0.1) 0%, rgba(7, 16, 24, 0.95) 100%);
    }

    h1 {
        font-size: 38px;
    }

    h2 {
        font-size: 30px;
    }

    .hero-intro {
        font-size: 18px;
    }

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

    .button {
        width: 100%;
    }

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

    .service-panel,
    .lead-form {
        padding: 24px;
    }

    .process-track {
        grid-template-columns: 1fr;
    }

    .process-track article {
        min-height: auto;
    }
}
