.website-page {
    --website-paper: #fbfaf6;
    --website-milk: #f2efe6;
    --website-ink: #11120f;
    --website-muted: #67685f;
    --website-line: rgba(17, 18, 15, 0.2);
    --website-lime: #c8ff34;
    --website-blue: #1667ff;
}

.website-hero {
    min-height: 650px;
    display: flex;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--website-ink);
    align-items: center;
}

.website-hero::before {
    width: min(62vw, 940px);
    aspect-ratio: 1;
    position: absolute;
    right: -30vw;
    bottom: -58%;
    border: 1px solid var(--website-line);
    border-radius: 50%;
    content: "";
    pointer-events: none;
}

.website-hero__grid {
    display: grid;
    position: relative;
    z-index: 1;
    padding: 72px 0 68px;
    align-items: center;
    grid-template-columns: minmax(0, 1.05fr) minmax(440px, 0.75fr);
    gap: clamp(46px, 6vw, 92px);
}

.website-hero__copy,
.website-dashboard {
    width: 100%;
    min-width: 0;
}

.website-hero__copy h1 {
    max-width: 810px;
    margin: 0;
    font-size: clamp(58px, 6.2vw, 100px);
    font-weight: 650;
    letter-spacing: -0.075em;
    line-height: 0.88;
}

.website-hero__copy h1 em {
    display: block;
    color: var(--website-blue);
    font-family: "DM Serif Display", Georgia, serif;
    font-weight: 400;
    letter-spacing: -0.035em;
}

.website-hero__copy > p {
    max-width: 760px;
    margin: 32px 0 30px;
    color: #383a34;
    font-size: clamp(17px, 1.35vw, 21px);
    line-height: 1.62;
}

.website-dashboard {
    max-width: 560px;
    border: 1px solid var(--website-ink);
    background: var(--website-paper);
    box-shadow: 14px 14px 0 var(--website-blue);
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 600ms ease, transform 600ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.website-dashboard.is-visible {
    opacity: 1;
    transform: rotate(-0.8deg);
    animation: website-preview-float 5.8s ease-in-out 700ms infinite;
}

.website-dashboard__bar {
    min-height: 42px;
    padding: 0 16px;
    display: flex;
    border-bottom: 1px solid var(--website-line);
    align-items: center;
    gap: 7px;
}

.website-dashboard__bar > span {
    width: 7px;
    height: 7px;
    border: 1px solid var(--website-ink);
    border-radius: 50%;
}

.website-dashboard__bar strong {
    margin-left: auto;
    color: var(--website-muted);
    font-size: 8px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.website-preview {
    min-height: 430px;
    position: relative;
    overflow: visible;
    background: #fff;
}

.website-preview__nav {
    min-height: 52px;
    padding: 0 22px;
    display: flex;
    border-bottom: 1px solid var(--website-line);
    align-items: center;
    justify-content: space-between;
}

.website-preview__nav b {
    font-size: 9px;
    letter-spacing: 0.06em;
}

.website-preview__nav span {
    color: var(--website-muted);
    font-size: 7px;
}

.website-preview__hero {
    min-height: 250px;
    padding: 28px 32px 22px;
    position: relative;
}

.website-preview__hero small {
    color: var(--website-muted);
    font-size: 7px;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.website-preview__hero h2 {
    max-width: 360px;
    margin: 32px 0 14px;
    font-size: clamp(30px, 2.9vw, 46px);
    font-weight: 650;
    letter-spacing: -0.065em;
    line-height: 0.92;
}

.website-preview__hero p {
    margin: 0;
    color: var(--website-muted);
    font-size: 10px;
    line-height: 1.45;
}

.website-preview__hero button,
.website-preview__phone button {
    border: 1px solid var(--website-ink);
    color: var(--website-ink);
    background: var(--website-lime);
    font: inherit;
    font-weight: 800;
}

.website-preview__hero button {
    min-width: 146px;
    min-height: 40px;
    margin-top: 20px;
    padding: 0 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 8px;
    text-transform: uppercase;
}

.website-preview__hero button i {
    font-family: Arial, sans-serif;
    font-size: 14px;
    font-style: normal;
}

.website-preview__tiles {
    height: 126px;
    display: grid;
    border-top: 1px solid var(--website-line);
    grid-template-columns: repeat(3, 1fr);
}

.website-preview__tiles span {
    position: relative;
    border-right: 1px solid var(--website-line);
    background: var(--website-milk);
}

.website-preview__tiles span::before,
.website-preview__tiles span::after {
    height: 7px;
    position: absolute;
    left: 18px;
    right: 18px;
    background: rgba(17, 18, 15, 0.13);
    content: "";
}

.website-preview__tiles span::before { top: 28px; }
.website-preview__tiles span::after { width: 54%; top: 44px; }
.website-preview__tiles span:nth-child(2) { background: #e8f0ff; }
.website-preview__tiles span:last-child { border-right: 0; background: var(--website-lime); }

.website-preview__analytics {
    width: 246px;
    padding: 16px;
    position: absolute;
    left: -48px;
    bottom: -44px;
    z-index: 2;
    border: 1px solid var(--website-ink);
    background: var(--website-paper);
    box-shadow: 8px 8px 0 var(--website-lime);
}

.website-preview__analytics > div:first-child {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.website-preview__analytics strong { font-size: 10px; }
.website-preview__analytics small { color: var(--website-muted); font-size: 7px; }
.website-preview__analytics svg { width: 100%; height: 76px; margin-top: 8px; color: var(--website-blue); }
.website-preview__analytics-tags { display: flex; gap: 6px; }
.website-preview__analytics-tags span { padding: 4px 7px; border: 1px solid var(--website-line); font-size: 7px; font-weight: 800; text-transform: uppercase; }

.website-preview__phone {
    width: 128px;
    min-height: 244px;
    padding: 14px;
    display: flex;
    position: absolute;
    right: -30px;
    top: 104px;
    z-index: 3;
    border: 1px solid var(--website-ink);
    border-radius: 18px;
    background: var(--website-paper);
    box-shadow: 6px 6px 0 var(--website-blue);
    flex-direction: column;
}

.website-preview__phone > i {
    width: 26px;
    height: 4px;
    margin: 0 auto 24px;
    border-radius: 99px;
    background: var(--website-ink);
}

.website-preview__phone small { color: var(--website-muted); font-size: 6px; text-transform: uppercase; }
.website-preview__phone strong { margin: 18px 0; font-size: 18px; letter-spacing: -0.05em; line-height: 1; }
.website-preview__phone > span { height: 5px; margin-top: 6px; background: rgba(17, 18, 15, 0.13); }
.website-preview__phone > span:nth-of-type(2) { width: 62%; }
.website-preview__phone button { min-height: 34px; margin-top: auto; padding: 0 7px; font-size: 6px; text-transform: uppercase; }

@keyframes website-preview-float {
    0%, 100% { transform: translateY(0) rotate(-0.8deg); }
    50% { transform: translateY(-8px) rotate(-0.35deg); }
}

.website-page > .seo-proof-wrap .seo-proof > div {
    min-height: 142px;
    padding: 22px 26px;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    grid-template-rows: none;
    flex-direction: column;
}

.website-page .seo-proof strong {
    font-size: clamp(40px, 4.3vw, 66px);
}

.website-page .seo-proof span {
    max-width: 190px;
    line-height: 1.35;
}

.website-page .seo-section {
    padding: clamp(82px, 7vw, 108px) 0;
}

.website-page .seo-section__intro {
    margin-bottom: clamp(42px, 4.5vw, 64px);
}

.website-pain-grid,
.website-system-grid,
.website-format-grid,
.website-difference-grid {
    display: grid;
    border-top: 1px solid var(--website-ink);
    border-left: 1px solid var(--website-ink);
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.website-pain-card,
.website-system-grid article,
.website-format,
.website-difference-grid article {
    min-width: 0;
    padding: 32px;
    display: flex;
    position: relative;
    border-right: 1px solid var(--website-ink);
    border-bottom: 1px solid var(--website-ink);
    background: var(--website-paper);
    flex-direction: column;
    transition: background-color 200ms ease, transform 200ms ease;
}

.website-pain-card:hover,
.website-system-grid article:hover,
.website-format:hover {
    background: var(--website-lime);
}

.website-pain-card > span,
.website-system-grid article > span,
.website-format > span,
.website-difference-grid article > span {
    font-size: 10px;
    font-weight: 800;
}

.website-pain-card h3 {
    max-width: 520px;
    margin: 0 0 22px;
    font-size: clamp(34px, 3.35vw, 54px);
    font-weight: 650;
    letter-spacing: -0.06em;
    line-height: 1;
}

.website-pain-card p,
.website-system-grid p,
.website-format p,
.website-difference-grid p {
    max-width: 570px;
    margin: 0;
    color: #484a43;
    font-size: 15px;
    line-height: 1.65;
}

.website-pain-card {
    min-height: 250px;
}

.website-pain-card p {
    margin-bottom: 0;
}

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

.website-system-grid article {
    min-height: 250px;
}

.website-system-grid h3 {
    max-width: 620px;
    margin: 46px 0 18px;
    font-size: clamp(34px, 3.8vw, 58px);
    font-weight: 650;
    letter-spacing: -0.06em;
    line-height: 0.98;
}

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

.website-format {
    min-height: 350px;
}

.website-format h3 {
    max-width: calc(100% - 52px);
    margin: 48px 0 16px;
    overflow-wrap: normal;
    word-break: normal;
    font-size: clamp(38px, 4.2vw, 64px);
    font-weight: 650;
    letter-spacing: -0.06em;
    line-height: 0.98;
    text-wrap: balance;
}

.website-format strong {
    margin-bottom: 24px;
    font-size: 15px;
    line-height: 1.4;
}

.website-format p {
    margin-bottom: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--website-line);
}

.website-format > a {
    margin-top: auto;
    padding-top: 18px;
    display: flex;
    border-top: 1px solid var(--website-ink);
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.website-format > a i {
    font-family: Arial, sans-serif;
    font-size: 18px;
    font-style: normal;
}

.website-difference-grid article {
    min-height: 300px;
}

.website-difference-grid article:nth-child(1) {
    background: var(--website-paper);
}

.website-difference-grid article:nth-child(2) {
    background: var(--website-lime);
}

.website-difference-grid article:nth-child(3) {
    color: var(--website-paper);
    background: var(--website-blue);
}

.website-difference-grid article:nth-child(3) p {
    color: rgba(251, 250, 246, 0.82);
}

.website-difference-grid article:nth-child(4) {
    background: #e8f0ff;
}

.website-difference-grid h3 {
    max-width: 620px;
    margin: 46px 0 18px;
    font-size: clamp(34px, 3.8vw, 58px);
    font-weight: 650;
    letter-spacing: -0.06em;
    line-height: 0.98;
}

.website-difference-grid article:hover {
    transform: translateY(-4px);
}

.website-difference-grid article:nth-child(3):hover {
    background: #0d55dc;
}

.website-checklist {
    background: var(--website-ink);
    color: var(--website-paper);
}

.website-checklist .seo-section__lead {
    color: rgba(251, 250, 246, 0.68);
}

.website-checklist__grid {
    display: grid;
    border-top: 1px solid rgba(251, 250, 246, 0.35);
    border-left: 1px solid rgba(251, 250, 246, 0.35);
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.website-checklist__grid article {
    min-height: 238px;
    padding: 26px;
    display: flex;
    border-right: 1px solid rgba(251, 250, 246, 0.35);
    border-bottom: 1px solid rgba(251, 250, 246, 0.35);
    flex-direction: column;
    transition: color 180ms ease, background-color 180ms ease;
}

.website-checklist__grid article:hover {
    color: var(--website-ink);
    background: var(--website-lime);
}

.website-checklist__grid span {
    color: inherit;
    font-size: 10px;
    font-weight: 800;
}

.website-checklist__grid h3 {
    margin: 44px 0 18px;
    font-size: clamp(27px, 2.45vw, 40px);
    font-weight: 650;
    letter-spacing: -0.055em;
    line-height: 1;
}

.website-checklist__grid p {
    margin: auto 0 0;
    color: inherit;
    font-size: 14px;
    line-height: 1.55;
    opacity: 0.74;
}

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

.website-cases .editorial-case-stories__intro {
    min-height: 600px;
}

.website-cases .editorial-story--blue {
    color: var(--website-paper);
    background: var(--website-blue);
}

.website-cases .editorial-story--blue .editorial-story__hero strong {
    color: var(--website-lime);
}

.website-cases .editorial-story__hero strong {
    white-space: nowrap;
}

.website-cases .editorial-story-nav {
    top: 72px;
}

.website-cases .editorial-case-cta__primary {
    color: var(--website-blue) !important;
    background: var(--website-paper) !important;
}

.website-cases .editorial-case-cta__secondary {
    color: var(--website-paper) !important;
    background: transparent !important;
}

.website-cases .editorial-case-cta__primary:hover,
.website-cases .editorial-case-cta__primary:focus-visible {
    color: var(--website-paper) !important;
    background: var(--website-ink) !important;
}

.website-cases .editorial-case-cta__secondary:hover,
.website-cases .editorial-case-cta__secondary:focus-visible {
    color: var(--website-blue) !important;
    background: var(--website-paper) !important;
}

#tariffs.website-staffing {
    padding: 116px 0 126px !important;
    border-top: 1px solid var(--website-ink);
    border-bottom: 1px solid var(--website-ink);
    color: var(--website-ink) !important;
    background: var(--website-paper) !important;
}

#tariffs.website-staffing .editorial-growth__intro h2 {
    color: var(--website-ink) !important;
}

.website-page #team.team-matrix {
    border-top: 0;
}

.website-page #team .team-matrix__intro {
    padding-top: 0;
}

.website-page #team .team-matrix__footer {
    display: none;
}

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

.website-page .seo-lead {
    border-top: 1px solid var(--website-ink);
}

@media (max-width: 1120px) {
    .website-hero__grid {
        grid-template-columns: 1fr;
    }

    .website-dashboard {
        max-width: 760px;
    }

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

@media (max-width: 760px) {
    .website-hero {
        min-height: 0;
    }

    .website-hero__grid {
        padding: 64px 0 66px;
        gap: 50px;
    }

    .website-hero__copy h1 {
        overflow-wrap: normal;
        word-break: normal;
        font-size: clamp(42px, 11.8vw, 58px);
        line-height: 0.94;
    }

    .website-hero__copy > p {
        margin-top: 30px;
        font-size: 16px;
    }

    .website-dashboard {
        box-shadow: 8px 8px 0 var(--website-blue);
    }

    .website-preview {
        min-height: 404px;
    }

    .website-preview__nav {
        min-height: 46px;
        padding: 0 16px;
    }

    .website-preview__hero {
        min-height: 238px;
        padding: 24px 20px 20px;
    }

    .website-preview__hero h2 {
        max-width: 270px;
        margin-top: 26px;
        font-size: 36px;
    }

    .website-preview__hero p {
        max-width: 190px;
    }

    .website-preview__tiles {
        height: 120px;
    }

    .website-preview__analytics {
        width: 204px;
        left: 12px;
        bottom: -36px;
        padding: 13px;
        box-shadow: 6px 6px 0 var(--website-lime);
    }

    .website-preview__analytics svg {
        height: 58px;
    }

    .website-preview__phone {
        width: 108px;
        min-height: 210px;
        right: 8px;
        top: 130px;
        padding: 12px;
        border-radius: 15px;
    }

    .website-preview__phone > i {
        margin-bottom: 18px;
    }

    .website-preview__phone strong {
        margin: 14px 0;
        font-size: 16px;
    }

    .website-page > .seo-proof-wrap .seo-proof > div {
        min-height: 118px;
        padding: 18px 16px;
        gap: 12px;
    }

    .website-page .seo-proof strong {
        font-size: clamp(34px, 11vw, 44px);
    }

    .website-page .seo-section {
        padding: 60px 0;
    }

    .website-page .seo-section__intro {
        margin-bottom: 34px;
    }

    .website-pain-grid,
    .website-system-grid,
    .website-format-grid,
    .website-difference-grid {
        grid-template-columns: 1fr;
    }

    .website-pain-card,
    .website-system-grid article,
    .website-format,
    .website-difference-grid article {
        min-height: 0;
        padding: 26px;
    }

    .website-pain-card {
        min-height: 240px;
    }

    .website-pain-card h3,
    .website-system-grid h3,
    .website-difference-grid h3 {
        font-size: clamp(31px, 9.8vw, 42px);
    }

    .website-system-grid h3 {
        margin-top: 38px;
    }

    .website-system-grid article,
    .website-difference-grid article {
        min-height: 220px;
    }

    .website-format {
        min-height: 290px;
    }

    .website-format h3 {
        max-width: 100%;
        margin-top: 38px;
        font-size: clamp(34px, 10.5vw, 46px);
    }

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

    .website-checklist__grid article {
        min-height: 205px;
        padding: 24px;
    }

    .website-checklist__grid h3 {
        margin-top: 34px;
    }

    .website-cases .editorial-case-stories__intro {
        min-height: 0;
    }

    .website-cases .editorial-story-nav {
        grid-template-columns: repeat(3, minmax(210px, 1fr));
    }

    .website-cases .editorial-story__hero strong {
        white-space: normal;
    }

    #tariffs.website-staffing {
        padding: 78px 0 86px !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    .website-dashboard {
        opacity: 1;
        transform: none;
        animation: none;
        transition: none;
    }
}
