.website-creation-page {
    --website-ink: #0a0d13;
    --website-paper: #ffffff;
    --website-ice: #f3f4fb;
    --website-line: #d9dce7;
    --website-indigo: #5548ed;
    --website-cyan: #65deef;
    --website-muted: #626978;
    font-family: "Cabinet Grotesk", "Geist", Arial, sans-serif;
}

.website-creation-page .page-shell {
    width: 100%;
    max-width: none;
    overflow: clip;
}

.website-creation-page .container {
    width: min(1370px, calc(100vw - 72px));
}

.website-creation-page .eyebrow {
    margin-bottom: 22px;
    color: var(--website-cyan);
    font-family: "JetBrains Mono", monospace;
    font-size: .67rem;
    font-weight: 600;
    letter-spacing: .14em;
}

.website-section {
    padding: 132px 0;
}

.website-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(280px, .55fr);
    align-items: end;
    gap: 72px;
    margin-bottom: 62px;
}

.website-heading .eyebrow {
    grid-column: 1 / -1;
    margin-bottom: -48px;
    color: #159bb2;
}

.website-heading h2 {
    max-width: 900px;
    margin: 0;
    color: #121827;
    font-size: clamp(3rem, 4.8vw, 5.5rem);
    font-weight: 500;
    letter-spacing: -.055em;
    line-height: .96;
    text-wrap: balance;
}

.website-heading > p:last-child {
    max-width: 460px;
    margin: 0;
    color: var(--website-muted);
    line-height: 1.7;
}

.website-hero {
    position: relative;
    min-height: 900px;
    overflow: hidden;
    color: #fff;
    background: var(--website-ink);
}

.website-hero-image,
.website-hero-shade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.website-hero-image {
    object-fit: cover;
    object-position: center;
}

.website-hero-shade {
    background: rgba(5, 7, 11, .28);
}

.website-hero-inner {
    position: relative;
    z-index: 2;
    display: flex;
    min-height: 900px;
    flex-direction: column;
    justify-content: center;
    padding-top: 150px;
    padding-bottom: 80px;
}

.website-hero-copy {
    width: min(770px, 61vw);
}

.website-hero-copy h1 {
    max-width: 780px;
    margin: 0;
    font-size: clamp(4rem, 6.25vw, 7.25rem);
    font-weight: 500;
    letter-spacing: -.06em;
    line-height: .9;
    text-wrap: balance;
}

.website-hero-lead {
    max-width: 670px;
    margin: 34px 0 0;
    color: rgba(255, 255, 255, .73);
    font-family: "Geist", Arial, sans-serif;
    font-size: clamp(1.05rem, 1.4vw, 1.28rem);
    line-height: 1.62;
}

.website-hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 26px;
    margin-top: 38px;
}

.website-hero-actions .button {
    min-height: 56px;
    border-radius: 6px;
}

.website-text-link,
.website-card-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: .88rem;
    font-weight: 600;
}

.website-text-link {
    color: #fff;
}

.website-text-link:hover,
.website-text-link:focus-visible,
.website-card-link:hover,
.website-card-link:focus-visible {
    color: var(--website-cyan);
}

.website-hero-proof {
    display: grid;
    width: min(730px, 60vw);
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    margin: 68px 0 0;
    padding: 0;
    list-style: none;
}

.website-hero-proof li {
    display: flex;
    min-height: 62px;
    align-items: center;
    gap: 12px;
    padding-right: 24px;
    color: rgba(255, 255, 255, .68);
    font-family: "Geist", Arial, sans-serif;
    font-size: .78rem;
    line-height: 1.45;
}

.website-hero-proof li + li {
    padding-left: 24px;
    border-left: 1px solid rgba(255, 255, 255, .2);
}

.website-hero-proof img {
    flex: 0 0 auto;
    filter: invert(85%) sepia(55%) saturate(583%) hue-rotate(144deg) brightness(98%) contrast(92%);
}

.website-offers {
    background: var(--website-paper);
}

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

.website-offer {
    display: flex;
    min-width: 0;
    flex-direction: column;
    border: 1px solid var(--website-line);
    border-radius: 7px;
    overflow: hidden;
    background: #fff;
    transition: transform .35s ease, border-color .35s ease;
}

.website-offer:hover,
.website-offer:focus-within {
    border-color: #a8a3eb;
    transform: translateY(-7px);
}

.website-offer-media {
    display: block;
    aspect-ratio: 4 / 2.55;
    overflow: hidden;
    background: #e9ebf2;
}

.website-offer-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s cubic-bezier(.2, .7, .2, 1);
}

.website-offer:hover .website-offer-media img,
.website-offer:focus-within .website-offer-media img {
    transform: scale(1.045);
}

.website-offer-body {
    display: flex;
    min-height: 360px;
    flex: 1;
    flex-direction: column;
    padding: 29px 27px 27px;
}

.website-offer-label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--website-indigo);
    font-family: "JetBrains Mono", monospace;
    font-size: .67rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.website-offer-label img,
.website-related-grid > a > img {
    filter: invert(34%) sepia(77%) saturate(2085%) hue-rotate(230deg) brightness(91%) contrast(102%);
}

.website-offer h3 {
    margin: 28px 0 18px;
    color: #121827;
    font-size: clamp(1.55rem, 1.9vw, 2.2rem);
    font-weight: 500;
    letter-spacing: -.035em;
    line-height: 1.05;
}

.website-offer p {
    margin: 0;
    color: var(--website-muted);
    font-family: "Geist", Arial, sans-serif;
    font-size: .92rem;
    line-height: 1.68;
}

.website-card-link {
    margin-top: auto;
    padding-top: 30px;
    color: var(--website-indigo);
    font-family: "Geist", Arial, sans-serif;
    font-size: .8rem;
}

.website-benefits {
    color: #fff;
    background: var(--website-ink);
}

.website-heading-light h2 {
    color: #fff;
}

.website-benefit-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid rgba(255, 255, 255, .18);
}

.website-benefit-grid article {
    min-height: 300px;
    padding: 42px 36px 34px;
}

.website-benefit-grid article + article {
    border-left: 1px solid rgba(255, 255, 255, .18);
}

.website-benefit-grid img {
    filter: invert(85%) sepia(55%) saturate(583%) hue-rotate(144deg) brightness(98%) contrast(92%);
}

.website-benefit-grid h3 {
    margin: 74px 0 15px;
    font-size: 1.65rem;
    font-weight: 500;
}

.website-benefit-grid p {
    max-width: 250px;
    margin: 0;
    color: rgba(255, 255, 255, .63);
    font-family: "Geist", Arial, sans-serif;
    font-size: .92rem;
    line-height: 1.7;
}

.website-mid-cta {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, .7fr) auto;
    align-items: center;
    gap: 60px;
    margin-top: 64px;
    padding: 42px 46px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 7px;
    background: #2d277c;
}

.website-mid-cta .eyebrow {
    margin-bottom: 13px;
}

.website-mid-cta h2 {
    margin: 0;
    font-size: clamp(2.5rem, 3.7vw, 4.4rem);
    font-weight: 500;
}

.website-mid-cta > p {
    margin: 0;
    color: rgba(255, 255, 255, .67);
    font-family: "Geist", Arial, sans-serif;
    line-height: 1.65;
}

.website-button-light {
    min-height: 56px;
    border-radius: 6px;
    color: #111526;
    background: #fff;
}

.website-process {
    background: var(--website-paper);
}

.website-process-list {
    --process-progress: 0%;
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.website-process-list::before,
.website-process-list::after {
    position: absolute;
    top: 18px;
    left: 18px;
    width: calc(100% - 36px);
    height: 1px;
    content: "";
}

.website-process-list::before {
    background: var(--website-line);
}

.website-process-list::after {
    width: var(--process-progress);
    max-width: calc(100% - 36px);
    background: var(--website-indigo);
}

.website-process-list li {
    position: relative;
    padding: 0 34px 0 0;
}

.website-process-list li + li {
    padding-left: 28px;
}

.website-process-list li > span {
    position: relative;
    z-index: 2;
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    border: 1px solid #aeb3c2;
    border-radius: 50%;
    color: #23293a;
    background: #fff;
    font-family: "JetBrains Mono", monospace;
    font-size: .68rem;
    font-weight: 600;
}

.website-process-list h3 {
    margin: 40px 0 14px;
    color: #121827;
    font-size: 1.25rem;
    font-weight: 500;
}

.website-process-list p {
    margin: 0;
    color: var(--website-muted);
    font-family: "Geist", Arial, sans-serif;
    font-size: .86rem;
    line-height: 1.65;
}

.website-deliverables {
    color: #fff;
    background: #10141b;
}

.website-deliverables-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(350px, .75fr);
    gap: clamp(80px, 10vw, 160px);
}

.website-deliverables h2 {
    max-width: 760px;
    margin: 0 0 46px;
    font-size: clamp(3.1rem, 5vw, 5.8rem);
    font-weight: 500;
    line-height: .96;
}

.website-deliverables ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 36px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.website-deliverables li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 0;
    border-top: 1px solid rgba(255, 255, 255, .15);
    color: rgba(255, 255, 255, .78);
    font-family: "Geist", Arial, sans-serif;
    font-size: .9rem;
}

.website-deliverables li img {
    filter: invert(85%) sepia(55%) saturate(583%) hue-rotate(144deg) brightness(98%) contrast(92%);
}

.website-deliverables aside {
    align-self: end;
    padding-left: 52px;
    border-left: 1px solid rgba(255, 255, 255, .18);
}

.website-deliverables aside h3 {
    max-width: 470px;
    margin: 0 0 24px;
    font-size: clamp(2.1rem, 3vw, 3.6rem);
    font-weight: 500;
    line-height: 1;
}

.website-deliverables aside > p:not(.eyebrow) {
    color: rgba(255, 255, 255, .64);
    font-family: "Geist", Arial, sans-serif;
    line-height: 1.75;
}

.website-deliverables dl {
    margin: 38px 0 0;
}

.website-deliverables dl div {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 20px;
    padding: 14px 0;
    border-top: 1px solid rgba(255, 255, 255, .14);
}

.website-deliverables dt {
    color: var(--website-cyan);
    font-family: "JetBrains Mono", monospace;
    font-size: .68rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.website-deliverables dd {
    margin: 0;
    color: rgba(255, 255, 255, .76);
    font-family: "Geist", Arial, sans-serif;
    font-size: .88rem;
}

.website-faq {
    background: var(--website-ice);
}

.website-faq-grid {
    display: grid;
    grid-template-columns: minmax(320px, .75fr) minmax(0, 1.25fr);
    gap: clamp(70px, 10vw, 160px);
}

.website-faq .website-heading {
    display: block;
    margin: 0;
}

.website-faq .website-heading .eyebrow {
    margin-bottom: 22px;
}

.website-faq .website-heading h2 {
    font-size: clamp(3rem, 4.4vw, 5rem);
}

.website-faq-list {
    border-top: 1px solid #cfd3df;
}

.website-faq-list details {
    border-bottom: 1px solid #cfd3df;
}

.website-faq-list summary {
    display: flex;
    min-height: 92px;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    color: #141a29;
    cursor: pointer;
    font-size: clamp(1.2rem, 1.6vw, 1.65rem);
    font-weight: 500;
    list-style: none;
}

.website-faq-list summary::-webkit-details-marker {
    display: none;
}

.website-faq-list summary img {
    transition: transform .28s ease;
}

.website-faq-list details[open] summary img {
    transform: rotate(45deg);
}

.website-faq-list details p {
    max-width: 760px;
    margin: -4px 46px 28px 0;
    color: var(--website-muted);
    font-family: "Geist", Arial, sans-serif;
    line-height: 1.72;
}

.website-related {
    background: #fff;
}

.website-related-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid var(--website-line);
    border-left: 1px solid var(--website-line);
}

.website-related-grid > a {
    display: flex;
    min-height: 360px;
    flex-direction: column;
    padding: 34px;
    border-right: 1px solid var(--website-line);
    border-bottom: 1px solid var(--website-line);
    background: #fff;
    transition: color .3s ease, background-color .3s ease, transform .3s ease;
}

.website-related-grid > a:hover,
.website-related-grid > a:focus-visible {
    color: #fff;
    background: var(--website-indigo);
    transform: translateY(-5px);
}

.website-related-grid small {
    margin-top: 28px;
    color: var(--website-indigo);
    font-family: "JetBrains Mono", monospace;
    font-size: .67rem;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.website-related-grid h3 {
    max-width: 390px;
    margin: auto 0 28px;
    color: #151b2a;
    font-size: clamp(1.75rem, 2.4vw, 2.8rem);
    font-weight: 500;
    line-height: 1.03;
}

.website-related-grid > a > span {
    color: var(--website-indigo);
    font-family: "Geist", Arial, sans-serif;
    font-size: .82rem;
    font-weight: 600;
}

.website-related-grid > a:hover img,
.website-related-grid > a:focus-visible img {
    filter: invert(1);
}

.website-related-grid > a:hover small,
.website-related-grid > a:hover h3,
.website-related-grid > a:hover > span,
.website-related-grid > a:focus-visible small,
.website-related-grid > a:focus-visible h3,
.website-related-grid > a:focus-visible > span {
    color: #fff;
}

.website-final-cta {
    padding: 90px 0;
    color: #fff;
    background: #2d277c;
}

.website-final-cta .container {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 70px;
}

.website-final-cta .eyebrow {
    color: #bdeff6;
}

.website-final-cta h2 {
    max-width: 980px;
    margin: 0;
    font-size: clamp(3rem, 5vw, 5.7rem);
    font-weight: 500;
    line-height: .94;
}

@media (max-width: 1180px) {
    .website-creation-page .container {
        width: min(100% - 48px, 1120px);
    }

    .website-hero-copy,
    .website-hero-proof {
        width: min(710px, 67vw);
    }

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

    .website-offer-body {
        min-height: 320px;
    }

    .website-mid-cta {
        grid-template-columns: 1fr auto;
    }

    .website-mid-cta > p {
        grid-column: 1 / -1;
        grid-row: 2;
    }

    .website-process-list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 54px 0;
    }

    .website-process-list::before,
    .website-process-list::after {
        display: none;
    }

    .website-process-list li:nth-child(4) {
        padding-left: 0;
    }

    .website-deliverables-grid {
        grid-template-columns: 1fr;
    }

    .website-deliverables aside {
        max-width: 760px;
        padding: 46px 0 0;
        border-top: 1px solid rgba(255, 255, 255, .18);
        border-left: 0;
    }
}

@media (max-width: 820px) {
    .website-creation-page .container {
        width: min(100% - 36px, 760px);
    }

    .website-section {
        padding: 92px 0;
    }

    .website-heading {
        display: block;
        margin-bottom: 44px;
    }

    .website-heading .eyebrow {
        margin-bottom: 20px;
    }

    .website-heading h2 {
        font-size: clamp(2.65rem, 10vw, 4.2rem);
    }

    .website-heading > p:last-child {
        margin-top: 24px;
    }

    .website-hero,
    .website-hero-inner {
        min-height: 820px;
    }

    .website-hero-image {
        object-position: 63% center;
        opacity: .52;
    }

    .website-hero-shade {
        background: rgba(4, 6, 10, .52);
    }

    .website-hero-inner {
        justify-content: flex-end;
        padding-top: 128px;
        padding-bottom: 54px;
    }

    .website-hero-copy,
    .website-hero-proof {
        width: 100%;
    }

    .website-hero-copy h1 {
        font-size: clamp(3.25rem, 12vw, 5.2rem);
    }

    .website-hero-lead {
        font-size: 1rem;
    }

    .website-hero-proof {
        grid-template-columns: 1fr;
        gap: 0;
        margin-top: 42px;
    }

    .website-hero-proof li {
        min-height: 48px;
        padding: 8px 0;
    }

    .website-hero-proof li + li {
        padding-left: 0;
        border-top: 1px solid rgba(255, 255, 255, .18);
        border-left: 0;
    }

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

    .website-benefit-grid article:nth-child(3) {
        border-left: 0;
    }

    .website-benefit-grid article:nth-child(n + 3) {
        border-top: 1px solid rgba(255, 255, 255, .18);
    }

    .website-mid-cta,
    .website-final-cta .container {
        grid-template-columns: 1fr;
    }

    .website-mid-cta {
        gap: 28px;
        padding: 34px 30px;
    }

    .website-mid-cta > p {
        grid-column: auto;
        grid-row: auto;
    }

    .website-mid-cta .button,
    .website-final-cta .button {
        justify-self: start;
    }

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

    .website-process-list li:nth-child(3),
    .website-process-list li:nth-child(5) {
        padding-left: 0;
    }

    .website-process-list li:nth-child(4) {
        padding-left: 28px;
    }

    .website-deliverables ul {
        grid-template-columns: 1fr;
    }

    .website-faq-grid {
        grid-template-columns: 1fr;
        gap: 58px;
    }

    .website-related-grid {
        grid-template-columns: 1fr;
    }

    .website-related-grid > a {
        min-height: 290px;
    }
}

@media (max-width: 560px) {
    .website-creation-page .container {
        width: calc(100% - 28px);
    }

    .website-hero,
    .website-hero-inner {
        min-height: 880px;
    }

    .website-hero-actions {
        align-items: flex-start;
        flex-direction: column;
    }

    .website-offer-grid,
    .website-benefit-grid,
    .website-process-list {
        grid-template-columns: 1fr;
    }

    .website-offer-body {
        min-height: 0;
    }

    .website-benefit-grid article {
        min-height: 245px;
        padding-inline: 8px;
        border-top: 1px solid rgba(255, 255, 255, .18);
        border-left: 0 !important;
    }

    .website-benefit-grid h3 {
        margin-top: 52px;
    }

    .website-process-list li,
    .website-process-list li + li,
    .website-process-list li:nth-child(4) {
        padding-left: 0;
    }

    .website-process-list li {
        padding-bottom: 34px;
        border-bottom: 1px solid var(--website-line);
    }

    .website-deliverables h2 {
        font-size: 3rem;
    }

    .website-deliverables aside {
        padding-top: 38px;
    }

    .website-faq-list summary {
        min-height: 82px;
        font-size: 1.12rem;
    }

    .website-final-cta {
        padding: 72px 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .website-offer,
    .website-offer-media img,
    .website-related-grid > a,
    [data-website-reveal],
    [data-website-process] {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}
