:root {
    --heather-50: #f7f3fa;
    --heather-100: #eee6f3;
    --heather-200: #dfd0e8;
    --heather-300: #c6aed3;
    --heather-500: #9574a8;
    --heather-600: #806291;
    --heather-700: #6c537b;
    --sage-100: #dfece7;
    --sage-300: #afd0c4;
    --sage-500: #6f9f91;
    --sage-600: #5f8c80;
    --text: #554b5e;
    --muted: #756b7d;
    --white: #ffffff;
    --line: #ded3e5;
    --shadow: 0 18px 46px rgba(108, 83, 123, 0.13);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    background: var(--heather-50);
    color: var(--text);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.7;
}

a {
    color: inherit;
}

a:focus-visible,
.button:focus-visible {
    outline: 3px solid var(--sage-300);
    outline-offset: 4px;
}

p {
    margin: 0 0 1.15em;
    font-size: 16px;
}

h1,
h2,
h3 {
    margin: 0;
    color: var(--heather-700);
    line-height: 1.12;
}

h1 {
    max-width: 760px;
    font-size: 40px;
    letter-spacing: -0.035em;
}

h2 {
    font-size: 28px;
    letter-spacing: -0.02em;
}

h3 {
    font-size: 20px;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    border-bottom: 1px solid rgba(198, 174, 211, 0.72);
    background: rgba(247, 243, 250, 0.94);
    backdrop-filter: blur(16px);
}

.header-inner {
    display: flex;
    min-height: 78px;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--heather-700);
    text-decoration: none;
}

.brand-mark {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border: 1px solid var(--heather-300);
    border-radius: 16px 8px 16px 8px;
    background: var(--heather-100);
    color: var(--heather-700);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.09em;
}

.brand-copy {
    font-size: 16px;
    font-weight: 700;
}

.brand-copy strong {
    color: var(--sage-600);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 6px;
}

.main-nav a {
    border-radius: 10px;
    padding: 10px 13px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
    background: var(--heather-100);
    color: var(--heather-700);
}

.main-nav .nav-action {
    margin-left: 8px;
    background: var(--sage-500);
    color: var(--white);
}

.main-nav .nav-action:hover {
    background: var(--sage-600);
    color: var(--white);
    transform: translateY(-1px);
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 86px 0 78px;
    background:
        radial-gradient(circle at 7% 18%, rgba(198, 174, 211, 0.38) 0 4px, transparent 5px),
        radial-gradient(circle at 92% 78%, rgba(111, 159, 145, 0.3) 0 5px, transparent 6px),
        linear-gradient(135deg, var(--heather-50), var(--white));
}

.hero::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -80px;
    width: 360px;
    height: 360px;
    border: 56px solid rgba(149, 116, 168, 0.11);
    border-radius: 44% 56% 53% 47%;
    transform: rotate(18deg);
}

.hero::after {
    content: "";
    position: absolute;
    bottom: -160px;
    left: 24%;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: rgba(175, 208, 196, 0.18);
}

.hero-compact {
    padding-top: 72px;
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
    align-items: center;
    gap: 64px;
}

.eyebrow {
    margin-bottom: 14px;
    color: var(--sage-600);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.hero-lead {
    max-width: 760px;
    margin: 24px 0 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.75;
}

.hero-actions,
.inline-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.button {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    border-radius: 12px;
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

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

.button.primary {
    background: var(--heather-600);
    color: var(--white);
    box-shadow: 0 12px 28px rgba(128, 98, 145, 0.2);
}

.button.primary:hover {
    background: var(--heather-700);
}

.button.secondary {
    border-color: var(--sage-300);
    background: var(--sage-100);
    color: var(--sage-600);
}

.button.secondary:hover {
    border-color: var(--sage-500);
    background: #d4e6df;
}

.hero-panel {
    position: relative;
    min-height: 320px;
    overflow: hidden;
    border: 1px solid var(--heather-200);
    border-radius: 34px 12px 34px 12px;
    background: var(--heather-100);
    padding: 52px 42px;
    box-shadow: var(--shadow);
}

.hero-panel::after {
    content: "";
    position: absolute;
    right: -42px;
    bottom: -46px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: var(--sage-300);
    opacity: 0.58;
}

.hero-panel-alt::after {
    border-radius: 32% 68% 58% 42%;
}

.hero-panel strong {
    position: relative;
    z-index: 2;
    display: block;
    max-width: 270px;
    color: var(--heather-700);
    font-size: 30px;
    line-height: 1.18;
}

.hero-panel p:not(.panel-kicker) {
    position: relative;
    z-index: 2;
    max-width: 300px;
    margin: 20px 0 0;
    color: var(--muted);
}

.panel-kicker {
    position: relative;
    z-index: 2;
    margin: 0 0 12px;
    color: var(--sage-600);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.panel-orbit {
    position: absolute;
    border: 1px solid rgba(128, 98, 145, 0.24);
    border-radius: 50%;
}

.orbit-one {
    top: 24px;
    right: 28px;
    width: 74px;
    height: 74px;
}

.orbit-two {
    top: 47px;
    right: 51px;
    width: 28px;
    height: 28px;
    background: var(--sage-500);
    border-color: var(--sage-500);
}

.service-band,
.steps-section {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--white);
}

.service-band-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.service-band article {
    position: relative;
    min-height: 290px;
    padding: 42px 34px 38px;
}

.service-band article + article {
    border-left: 1px solid var(--line);
}

.service-band article > span {
    display: inline-block;
    margin-bottom: 28px;
    color: var(--sage-500);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.service-band h2 {
    margin-bottom: 18px;
}

.service-band p,
.steps-grid p {
    color: var(--muted);
}

.content-section,
.accent-section,
.quiet-section,
.steps-section {
    padding: 82px 0;
}

.content-grid,
.accent-grid,
.quiet-grid {
    display: grid;
    grid-template-columns: minmax(240px, 0.75fr) minmax(0, 1.25fr);
    gap: 76px;
}

.section-heading h2 {
    max-width: 380px;
}

.prose {
    max-width: 760px;
}

.prose p:last-child {
    margin-bottom: 0;
}

.accent-section {
    border-top: 1px solid var(--heather-200);
    border-bottom: 1px solid var(--heather-200);
    background: var(--heather-100);
}

.text-link {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    border-bottom: 2px solid var(--sage-300);
    color: var(--heather-700);
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
}

.text-link:hover {
    border-bottom-color: var(--sage-600);
    color: var(--sage-600);
}

.quiet-section {
    background:
        linear-gradient(90deg, transparent 0 48%, rgba(175, 208, 196, 0.12) 48% 52%, transparent 52%),
        var(--heather-50);
}

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

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

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

.steps-grid article {
    min-height: 210px;
    border: 1px solid var(--line);
    border-top: 4px solid var(--sage-500);
    border-radius: 14px;
    background: var(--heather-50);
    padding: 30px;
}

.step-number {
    display: inline-block;
    margin-bottom: 30px;
    color: var(--heather-500);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.steps-grid h3 {
    margin-bottom: 10px;
}

.site-footer {
    border-top: 1px solid var(--heather-200);
    background: var(--heather-600);
    color: var(--white);
}

.footer-inner {
    display: flex;
    min-height: 120px;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.footer-brand,
.footer-links a {
    color: var(--white);
    text-decoration: none;
}

.footer-brand {
    font-weight: 700;
}

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

.footer-links a {
    font-size: 14px;
}

.footer-links a:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
}

.footer-links .muted-link {
    color: var(--heather-200);
    font-size: 12px;
}

@media (max-width: 900px) {
    .header-inner {
        min-height: auto;
        padding: 16px 0;
        align-items: flex-start;
    }

    .main-nav {
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    .hero {
        padding: 62px 0;
    }

    .hero-grid,
    .content-grid,
    .accent-grid,
    .quiet-grid {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .hero-panel {
        min-height: 260px;
    }

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

    .service-band article {
        min-height: auto;
    }

    .service-band article + article {
        border-top: 1px solid var(--line);
        border-left: 0;
    }

    .content-section,
    .accent-section,
    .quiet-section,
    .steps-section {
        padding: 64px 0;
    }
}

@media (max-width: 680px) {
    .shell {
        width: min(100% - 28px, 1180px);
    }

    .header-inner {
        display: block;
    }

    .brand {
        margin-bottom: 14px;
    }

    .main-nav {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .main-nav a {
        min-height: 44px;
        text-align: center;
    }

    .main-nav .nav-action {
        grid-column: 1 / -1;
        margin-left: 0;
    }

    .hero {
        padding: 48px 0 52px;
    }

    h1 {
        font-size: 40px;
    }

    h2 {
        font-size: 28px;
    }

    .hero-lead {
        font-size: 17px;
    }

    .hero-actions,
    .inline-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .button {
        width: 100%;
    }

    .hero-panel {
        min-height: 0;
        border-radius: 24px 10px 24px 10px;
        padding: 38px 28px 52px;
    }

    .hero-panel strong {
        font-size: 26px;
    }

    .service-band article,
    .steps-grid article {
        padding: 30px 24px;
    }

    .footer-inner {
        display: block;
        padding: 32px 0;
    }

    .footer-brand {
        display: inline-block;
        margin-bottom: 20px;
    }

    .footer-links {
        display: grid;
        justify-content: start;
        gap: 12px;
    }
}
