:root {
    --bg: #ffffff;
    --bg-soft: #f6f8fb;
    --text: #111827;
    --text-secondary: #667085;
    --border: #e8ecf2;

    --accent: #5068f2;
    --accent-dark: #4055d6;

    --dark: #111827;

    --radius: 24px;
    --container: 1180px;
}


/* RESET */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    color: var(--text);
    background: var(--bg);

    line-height: 1.6;
}

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

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


/* CONTAINER */

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


/* HEADER */

.header {
    position: sticky;
    top: 0;
    z-index: 100;

    background: rgba(255,255,255,.88);
    backdrop-filter: blur(18px);

    border-bottom: 1px solid rgba(0,0,0,.05);
}

.nav {
    height: 76px;

    display: flex;
    align-items: center;

    gap: 32px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;

    font-weight: 700;
    font-size: 18px;
}

.brand-icon {
    width: 48px;
    height: 48px;

    display: block;

    border-radius: 8px;

    object-fit: cover;

    flex-shrink: 0;

    box-shadow:
        0 5px 15px rgba(17, 24, 39, .10);
}

.nav-links {
    display: flex;
    gap: 28px;

    margin-left: auto;

    font-size: 14px;
    color: var(--text-secondary);
}

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

.menu-button {
    display: none;

    border: 0;
    background: none;

    font-size: 24px;
}


/* BUTTONS */

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 52px;

    padding: 0 24px;

    border-radius: 14px;

    font-weight: 650;
    font-size: 15px;

    transition: .2s ease;
}

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

.button-primary {
    background: var(--accent);
    color: white;
}

.button-primary:hover {
    background: var(--accent-dark);
}

.button-secondary {
    border: 1px solid var(--border);
    background: white;
}

.button-small {
    min-height: 42px;
    padding: 0 18px;

    background: var(--text);
    color: white;
}

.button-light {
    background: white;
    color: var(--text);
}


/* HERO */

.hero {
    padding: 100px 0 90px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 75% 30%,
            rgba(80,104,242,.12),
            transparent 30%
        );
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;

    align-items: center;

    gap: 80px;
}

.eyebrow {
    margin-bottom: 18px;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: .14em;

    color: var(--accent);
}

.hero h1,
.section h2,
.final-cta h2 {
    line-height: 1.05;
    letter-spacing: -.04em;
}

.hero h1 {
    max-width: 720px;
    font-size: clamp(48px, 5.2vw, 70px);
}

.hero h1 span,
.section h2 span {
    color: #9aa2b1;
}

.hero-text {
    max-width: 600px;

    margin-top: 26px;

    font-size: 19px;

    color: var(--text-secondary);
}

.hero-actions {
    display: flex;
    gap: 12px;

    margin-top: 34px;
}

.hero-note {
    margin-top: 16px;

    font-size: 13px;

    color: #98a2b3;
}


/* HERO PHONE */

.hero-visual {
    position: relative;

    display: flex;
    justify-content: center;
}

.hero-glow {
    position: absolute;

    width: 430px;
    height: 430px;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    border-radius: 50%;

    background: rgba(80,104,242,.14);

    filter: blur(70px);
}

.hero-phone {
    position: relative;

    width: min(330px, 90%);

    filter: drop-shadow(0 30px 40px rgba(0,0,0,.16));
}


/* BENEFITS */

.benefits {
    padding: 30px 0 100px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.benefit {
    position: relative;

    min-height: 225px;

    padding: 26px;

    border: 1px solid var(--border);
    border-radius: 22px;

    background: rgba(255, 255, 255, .75);

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}

.benefit:hover {
    transform: translateY(-4px);

    border-color: #dce1ea;

    box-shadow: 0 18px 45px rgba(20, 30, 55, .07);
}

.benefit-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 28px;
}

.benefit-top span {
    font-size: 10px;
    font-weight: 800;

    letter-spacing: .12em;

    color: #a0a8b8;
}

.benefit-icon {
    width: 44px;
    height: 44px;

    display: grid;
    place-items: center;

    margin: 0;

    border-radius: 13px;

    background: #f0f2ff;
    color: var(--accent);

    font-size: 12px;
    font-weight: 800;
}

.benefit h3 {
    font-size: 18px;
    letter-spacing: -.02em;
}

.benefit p {
    margin-top: 10px;

    color: var(--text-secondary);

    font-size: 14px;
    line-height: 1.65;
}


/* SECTIONS */

.section {
    padding: 110px 0;
}

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

.section-heading {
    max-width: 850px;

    margin-bottom: 60px;
}

.section-heading h2,
.feature-content h2,
.ats-card h2 {
    font-size: clamp(38px, 5vw, 56px);
}

.section-heading p,
.feature-content > p,
.ats-card p {
    margin-top: 20px;

    max-width: 620px;

    color: var(--text-secondary);

    font-size: 17px;
}


/* STEPS */

.steps {
    position: relative;

    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 28px;
}

.steps::before {
    content: "";

    position: absolute;

    top: 24px;
    left: 4%;
    right: 4%;

    height: 1px;

    background: var(--border);
}

.step {
    position: relative;

    padding: 0 15px 0 0;

    border: 0;
    border-radius: 0;

    background: transparent;
}

.step-number {
    position: relative;
    z-index: 2;

    width: 48px;
    height: 48px;

    display: grid;
    place-items: center;

    margin-bottom: 28px;

    border: 1px solid #dfe3ec;
    border-radius: 50%;

    background: white;

    color: var(--accent);

    font-size: 12px;
    font-weight: 800;
}

.step h3 {
    font-size: 18px;
    letter-spacing: -.02em;
}

.step p {
    max-width: 220px;

    margin-top: 9px;

    color: var(--text-secondary);

    font-size: 14px;
    line-height: 1.65;
}


/* TEMPLATES */

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

    gap: 24px;
}

.template-card {
    padding: 14px;

    overflow: hidden;

    background: white;
    border-radius: 24px;

    box-shadow: 0 14px 40px rgba(20,30,55,.08);

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.template-card:hover {
    transform: translateY(-6px);

    box-shadow: 0 24px 55px rgba(20,30,55,.12);
}

.template-card img {
    width: 100%;

    border-radius: 10px;
}

.template-info {
    padding: 18px 6px 0;
}

.template-info strong {
    display: block;

    font-size: 16px;
    letter-spacing: -.01em;
}

.template-info span {
    display: block;

    margin-top: 3px;

    font-size: 13px;
    color: var(--text-secondary);
}

.center-action {
    margin-top: 40px;
    text-align: center;
}

.text-link {
    color: var(--accent);
    font-weight: 650;
}


/* AI SECTION */

.ai-section {
    overflow: hidden;
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 100px;

    align-items: center;
}

.feature-content h2 {
    font-size: clamp(38px, 5vw, 56px);
    line-height: 1.08;
    letter-spacing: -.04em;
}

.feature-content h2 span {
    color: #a5adbc;
}

.feature-content > p {
    margin-top: 20px;

    max-width: 520px;

    color: var(--text-secondary);

    font-size: 17px;
}


/* CHECK LIST */

.check-list {
    list-style: none;

    margin: 30px 0 34px;
}

.check-list li {
    position: relative;

    margin: 15px 0;
    padding-left: 31px;

    color: #475467;

    font-size: 15px;
}

.check-list li::before {
    content: "✓";

    position: absolute;

    left: 0;
    top: 1px;

    width: 20px;
    height: 20px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: #eef0ff;
    color: var(--accent);

    font-size: 11px;
    font-weight: 800;
}


/* AI DEMO */

.ai-demo {
    position: relative;
}

.ai-demo::before {
    content: "";

    position: absolute;

    width: 430px;
    height: 430px;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    border-radius: 50%;

    background: rgba(80, 104, 242, .10);

    filter: blur(75px);
}


/* AI CARD */

.ai-card {
    position: relative;
    z-index: 2;

    padding: 30px;

    border: 1px solid #e4e7ec;
    border-radius: 28px;

    background:
        linear-gradient(
            145deg,
            rgba(250,250,255,.98),
            rgba(244,246,252,.98)
        );

    box-shadow:
        0 30px 70px rgba(30,40,80,.10);
}


/* HEADER */

.ai-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 28px;
}

.ai-card-header strong {
    display: block;

    margin-top: 3px;

    font-size: 17px;
}

.ai-small-label {
    color: var(--accent);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: .13em;
}

.ai-spark {
    width: 44px;
    height: 44px;

    display: grid;
    place-items: center;

    border-radius: 14px;

    background: var(--accent);
    color: white;

    font-size: 19px;

    box-shadow:
        0 8px 22px rgba(80,104,242,.25);
}


/* TEXT BLOCK */

.ai-content-block {
    padding: 22px;

    border: 1px solid #e5e8ef;
    border-radius: 17px;

    background: rgba(255,255,255,.65);
}

.ai-content-block p {
    margin-top: 9px;

    color: var(--text-secondary);

    font-size: 15px;
    line-height: 1.65;
}

.ai-label {
    color: #98a2b3;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: .13em;
}


/* IMPROVE */

.ai-improve {
    width: fit-content;

    margin: 15px auto;

    padding: 8px 14px;

    border-radius: 30px;

    background: #eef0ff;
    color: var(--accent);

    font-size: 12px;
    font-weight: 750;
}

.ai-improve span {
    margin-right: 5px;
}


/* RESULT */

.ai-content-result {
    background: white;

    border-color: #dfe3f2;

    box-shadow:
        0 10px 30px rgba(30,40,80,.06);
}

.ai-content-result p {
    color: var(--text);
}


/* READY */

.ai-ready {
    display: flex;
    align-items: center;

    gap: 8px;

    margin-top: 18px;

    color: #667085;

    font-size: 12px;
    font-weight: 600;
}

.ai-ready > span {
    width: 21px;
    height: 21px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: #eaf8ef;
    color: #27a55b;

    font-size: 11px;
}


/* DARK FEATURES */

.section-dark {
    background: #101522;
    color: white;
}

.section-heading-light {
    margin-bottom: 55px;
}

.section-heading-light h2 span {
    color: #667085;
}

.section-heading-light p {
    color: #98a2b3;
}


.features-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 16px;
}


.feature-card {
    min-height: 245px;

    padding: 28px;

    border: 1px solid rgba(255,255,255,.08);
    border-radius: 22px;

    background: rgba(255,255,255,.045);

    transition:
        transform .25s ease,
        background .25s ease;
}

.feature-card:hover {
    transform: translateY(-4px);

    background: rgba(255,255,255,.07);
}


.feature-card-large {
    grid-column: span 2;

    display: flex;
    align-items: flex-end;

    gap: 28px;

    background:
        radial-gradient(
            circle at 10% 20%,
            rgba(80,104,242,.22),
            transparent 35%
        ),
        rgba(255,255,255,.045);
}


.feature-card-wide {
    grid-column: span 2;

    display: flex;
    align-items: center;

    gap: 25px;

    min-height: 170px;
}


.feature-card-icon {
    width: 48px;
    height: 48px;

    flex: 0 0 auto;

    display: grid;
    place-items: center;

    margin-bottom: 28px;

    border-radius: 14px;

    background: rgba(108,127,255,.14);

    color: #899aff;

    font-size: 12px;
    font-weight: 800;
}


.feature-card-large .feature-card-icon,
.feature-card-wide .feature-card-icon {
    margin-bottom: 0;
}


.feature-card h3 {
    font-size: 19px;

    letter-spacing: -.02em;
}


.feature-card p {
    max-width: 500px;

    margin-top: 10px;

    color: #98a2b3;

    font-size: 14px;
    line-height: 1.65;
}

/* ATS */

.ats-card {
    position: relative;

    display: grid;
    grid-template-columns: 1.1fr .9fr;

    gap: 80px;

    align-items: center;

    padding: 65px;

    overflow: hidden;

    border-radius: 32px;

    background: var(--bg-soft);
}


.ats-content p {
    max-width: 570px;
}


.ats-points {
    display: flex;
    flex-wrap: wrap;

    gap: 10px;

    margin: 28px 0;
}

.ats-points span {
    padding: 8px 12px;

    border: 1px solid var(--border);
    border-radius: 30px;

    background: white;

    color: #475467;

    font-size: 12px;
    font-weight: 600;
}


/* DOCUMENT */

.ats-visual {
    position: relative;

    display: flex;
    justify-content: center;
}


.ats-document {
    width: 280px;
    min-height: 360px;

    padding: 30px;

    border-radius: 10px;

    background: white;

    box-shadow:
        0 25px 60px rgba(25,35,70,.12);

    transform: rotate(2deg);
}


.ats-document-top {
    display: flex;
    align-items: center;

    gap: 15px;

    margin-bottom: 32px;
}


.ats-avatar {
    width: 43px;
    height: 43px;

    flex: 0 0 auto;

    border-radius: 50%;

    background: #eef0ff;
}


.ats-document-top > div:last-child {
    width: 100%;
}


.ats-document-section {
    margin-top: 25px;
}

.ats-document-section > span {
    display: block;

    margin-bottom: 10px;

    color: var(--accent);

    font-size: 8px;
    font-weight: 800;

    letter-spacing: .12em;
}


.ats-line {
    width: 100%;
    height: 5px;

    margin: 7px 0;

    border-radius: 10px;

    background: #e9ecf2;
}

.ats-line-name {
    width: 70%;
    height: 7px;

    background: #cbd1dc;
}

.ats-line-short {
    width: 45%;
}

.ats-line-medium {
    width: 72%;
}


.ats-skills {
    display: flex;

    gap: 6px;
}

.ats-skills i {
    width: 36px;
    height: 15px;

    border-radius: 10px;

    background: #eef0ff;
}


/* BADGE */

.ats-clean-badge {
    position: absolute;

    right: -5px;
    bottom: 45px;

    display: flex;
    align-items: center;

    gap: 11px;

    padding: 13px 16px;

    border-radius: 15px;

    background: white;

    box-shadow:
        0 15px 40px rgba(25,35,70,.13);
}

.ats-clean-badge > span {
    width: 31px;
    height: 31px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: #eaf8ef;
    color: #27a55b;

    font-size: 12px;
}

.ats-clean-badge strong,
.ats-clean-badge small {
    display: block;
}

.ats-clean-badge strong {
    font-size: 12px;
}

.ats-clean-badge small {
    margin-top: 2px;

    color: var(--text-secondary);

    font-size: 10px;
}

/* FINAL CTA */

.final-cta {
    padding: 120px 0;

    overflow: hidden;

    text-align: center;

    background:
        radial-gradient(
            circle at 50% 100%,
            rgba(255,255,255,.16),
            transparent 35%
        ),
        var(--accent);

    color: white;
}


.final-cta-inner {
    max-width: 820px;
}


.final-icon {
    width: 58px;
    height: 58px;

    display: grid;
    place-items: center;

    margin: 0 auto 25px;

    border-radius: 17px;

    background: white;
    color: var(--accent);

    font-size: 23px;
    font-weight: 800;

    box-shadow:
        0 14px 30px rgba(30,40,100,.18);
}


.final-cta .eyebrow {
    color: rgba(255,255,255,.65);
}


.final-cta h2 {
    max-width: 800px;

    margin: auto;

    font-size: clamp(42px, 5.5vw, 66px);

    line-height: 1.05;
    letter-spacing: -.045em;
}


.final-cta p {
    max-width: 560px;

    margin: 24px auto 34px;

    color: rgba(255,255,255,.78);

    font-size: 17px;
}


.final-note {
    display: block;

    margin-top: 16px;

    color: rgba(255,255,255,.6);

    font-size: 11px;
}


/* FOOTER */

footer {
    padding: 70px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;

    gap: 50px;
}

.footer-grid strong {
    display: block;

    margin-bottom: 14px;
}

.footer-grid a {
    display: block;

    margin: 8px 0;

    font-size: 14px;

    color: var(--text-secondary);
}

.footer-brand p {
    max-width: 250px;

    color: var(--text-secondary);

    font-size: 14px;
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 25px;

    border-top: 1px solid var(--border);

    color: #98a2b3;

    font-size: 13px;
}


/* MOBILE */

@media (max-width: 900px) {

    .nav-links,
    .nav > .button-small {
        display: none;
    }

    .menu-button {
        display: block;
        margin-left: auto;
    }

    .hero {
        padding-top: 70px;
    }

    .hero-grid,
    .feature-grid,
    .ats-card {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        grid-template-columns: 1.15fr .85fr;
        align-items: center;
        gap: 60px;
    }

    .hero-content {
        text-align: center;
    }

    .hero-text {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .benefits-grid,
    .steps {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .feature-grid {
        gap: 60px;
    }

    .ats-card {
        padding: 40px;
    }

}


@media (max-width: 600px) {

    .container {
        width: min(calc(100% - 28px), var(--container));
    }

    .hero h1 {
        font-size: 44px;
    }

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

    .hero-actions .button {
        width: 100%;
    }

    .benefits-grid,
    .steps,
    .templates-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 80px 0;
    }

    .section-heading {
        margin-bottom: 40px;
    }

    .step-number {
        margin-bottom: 25px;
    }

    .ats-card {
        padding: 30px 24px;
    }

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

    .steps {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .steps::before {
        top: 0;
        bottom: 0;
        left: 23px;
        right: auto;

        width: 1px;
        height: auto;
    }

    .step {
        padding-left: 72px;
    }

    .step-number {
        position: absolute;
        left: 0;
        top: 0;
    }

    .step p {
        max-width: none;
    }

}

/* IPHONE MOCKUP */

.iphone {
    position: relative;
    z-index: 2;

    width: 310px;
    padding: 10px;

    border-radius: 52px;

    background: #111318;

    box-shadow:
        0 40px 80px rgba(17, 24, 39, .22),
        0 12px 30px rgba(17, 24, 39, .14);
}

.iphone::before {
    content: "";

    position: absolute;

    width: 92px;
    height: 26px;

    top: 18px;
    left: 50%;

    transform: translateX(-50%);

    border-radius: 20px;

    background: #111318;

    z-index: 4;
}

.iphone-screen {
    position: relative;

    overflow: hidden;

    aspect-ratio: 1290 / 2796;

    border-radius: 43px;

    background: #f5f6fa;
}

.iphone-screen img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}


/* FLOATING CARDS */

.floating-card {
    position: absolute;
    z-index: 3;

    display: flex;
    align-items: center;

    gap: 12px;

    padding: 13px 16px;

    border: 1px solid rgba(255,255,255,.8);
    border-radius: 16px;

    background: rgba(255,255,255,.9);

    backdrop-filter: blur(15px);

    box-shadow: 0 15px 40px rgba(25,35,70,.12);
}

.floating-card strong,
.floating-card small {
    display: block;
}

.floating-card strong {
    font-size: 13px;
}

.floating-card small {
    margin-top: 1px;

    font-size: 11px;

    color: var(--text-secondary);
}

.floating-icon {
    min-width: 36px;
    height: 36px;

    display: grid;
    place-items: center;

    padding: 0 7px;

    border-radius: 10px;

    background: #eef0ff;

    color: var(--accent);

    font-size: 11px;
    font-weight: 800;
}

.floating-card-ai {
    left: -20px;
    top: 25%;
}

.floating-card-pdf {
    right: -30px;
    bottom: 22%;
}


@media (max-width: 600px) {

    .iphone {
        width: 260px;
    }

    .floating-card-ai {
        left: 0;
    }

    .floating-card-pdf {
        right: 0;
    }

}

/* ========================================
   SEO / INNER PAGES
======================================== */


/* HERO */

.seo-hero {
    padding: 115px 0 100px;

    text-align: center;

    background:
        radial-gradient(
            circle at 50% 20%,
            rgba(80,104,242,.11),
            transparent 35%
        );
}

.seo-hero-inner {
    max-width: 900px;
}

.seo-hero h1 {
    font-size: clamp(48px, 6vw, 74px);

    line-height: 1.04;
    letter-spacing: -.045em;
}

.seo-hero h1 span {
    color: #a4acbb;
}

.seo-hero p {
    max-width: 680px;

    margin: 26px auto 0;

    color: var(--text-secondary);

    font-size: 18px;
}

.seo-hero-actions {
    display: flex;
    justify-content: center;

    gap: 12px;

    margin-top: 34px;
}


/* CONTENT */

.content-narrow {
    max-width: 1000px;
}

.content-title {
    max-width: 720px;

    font-size: clamp(38px, 5vw, 55px);

    line-height: 1.08;
    letter-spacing: -.04em;
}

.content-lead {
    max-width: 720px;

    margin-top: 22px;

    color: var(--text-secondary);

    font-size: 17px;
}


/* FEATURE LIST */

.content-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 0;

    margin-top: 60px;

    border-top: 1px solid var(--border);
}

.content-features > div {
    padding: 28px 25px 28px 0;

    border-bottom: 1px solid var(--border);
}

.content-features > div:nth-child(odd) {
    border-right: 1px solid var(--border);
}

.content-features > div:nth-child(even) {
    padding-left: 28px;
}

.content-features strong {
    font-size: 16px;
}

.content-features p {
    max-width: 360px;

    margin-top: 7px;

    color: var(--text-secondary);

    font-size: 14px;
}


/* FEATURE SECTION */

.builder-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 100px;

    align-items: center;
}

.builder-feature h2 {
    font-size: clamp(38px, 5vw, 55px);

    line-height: 1.07;
    letter-spacing: -.04em;
}

.builder-feature h2 span {
    color: #a4acbb;
}

.builder-feature > div > p {
    max-width: 530px;

    margin: 20px 0 25px;

    color: var(--text-secondary);

    font-size: 16px;
}


/* AI EXAMPLE */

.builder-example {
    padding: 32px;

    border: 1px solid var(--border);
    border-radius: 26px;

    background: var(--bg-soft);

    box-shadow:
        0 20px 50px rgba(25,35,70,.07);
}

.builder-example span {
    display: block;

    color: #98a2b3;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: .12em;
}

.builder-example p {
    margin: 12px 0 !important;

    padding: 18px;

    border-radius: 14px;

    background: white;
}

.builder-example strong {
    display: block;

    margin-top: 12px;

    padding: 20px;

    border-radius: 14px;

    background: white;

    line-height: 1.6;

    box-shadow:
        0 8px 25px rgba(25,35,70,.06);
}

.builder-ai-arrow {
    margin: 14px 0;

    color: var(--accent);

    text-align: center;
}


/* PDF DOCUMENT */

.builder-feature-reverse {
    grid-template-columns: .8fr 1.2fr;
}

.builder-document {
    width: 300px;

    margin: auto;

    padding: 42px 35px;

    border-radius: 8px;

    background: white;

    box-shadow:
        0 25px 60px rgba(25,35,70,.12);

    transform: rotate(-2deg);
}

.document-line {
    height: 6px;

    margin: 9px 0;

    border-radius: 10px;

    background: #e8ebf1;
}

.document-title {
    width: 60%;
    height: 11px;

    margin-bottom: 28px;

    background: #bfc6d2;
}

.document-short {
    width: 65%;
}

.document-heading {
    width: 35%;
    height: 7px;

    margin: 30px 0 14px;

    border-radius: 10px;

    background: var(--accent);
}


/* CTA */

.page-cta {
    padding: 100px 0;

    text-align: center;
}

.page-cta-inner {
    padding: 70px 30px;

    border-radius: 30px;

    background: var(--bg-soft);
}

.page-cta h2 {
    font-size: clamp(38px, 5vw, 56px);

    letter-spacing: -.04em;
}

.page-cta p {
    margin: 14px 0 28px;

    color: var(--text-secondary);
}


/* MOBILE */

@media (max-width: 900px) {

    .builder-feature,
    .builder-feature-reverse {
        grid-template-columns: 1fr;

        gap: 55px;
    }

}


@media (max-width: 600px) {

    .seo-hero {
        padding: 80px 0 70px;
    }

    .seo-hero h1 {
        font-size: 44px;
    }

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

    .seo-hero-actions .button {
        width: 100%;
    }

    .content-features {
        grid-template-columns: 1fr;
    }

    .content-features > div,
    .content-features > div:nth-child(even) {
        padding: 24px 0;

        border-right: 0;
    }

    .builder-document {
        width: 240px;
    }

    .page-cta {
        padding: 60px 0;
    }

    .page-cta-inner {
        padding: 55px 22px;
    }

}

/* ========================================
   TEMPLATE PAGE
======================================== */

.template-page-hero {
    padding-bottom: 90px;
}


/* GALLERY */

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

    gap: 45px 24px;
}


.template-gallery-item {
    min-width: 0;
}


.template-preview {
    padding: 15px;

    overflow: hidden;

    border-radius: 24px;

    background: white;

    box-shadow:
        0 16px 45px rgba(20,30,55,.08);

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}


.template-gallery-item:hover .template-preview {
    transform: translateY(-5px);

    box-shadow:
        0 25px 60px rgba(20,30,55,.12);
}


.template-preview img {
    width: 100%;

    border-radius: 10px;
}


.template-gallery-info {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    gap: 20px;

    padding: 18px 5px 0;
}


.template-gallery-info h3 {
    font-size: 17px;

    letter-spacing: -.02em;
}


.template-gallery-info p {
    margin-top: 3px;

    color: var(--text-secondary);

    font-size: 13px;
}


.template-use {
    padding-top: 2px;

    white-space: nowrap;

    color: var(--accent);

    font-size: 13px;
    font-weight: 650;
}


/* EXPLAINER */

.template-explainer {
    display: grid;
    grid-template-columns: .9fr 1.1fr;

    gap: 100px;

    align-items: start;
}


.template-explainer h2 {
    max-width: 500px;

    font-size: clamp(38px, 5vw, 55px);

    line-height: 1.08;
    letter-spacing: -.04em;
}


.template-explainer > div:first-child > p {
    max-width: 520px;

    margin-top: 20px;

    color: var(--text-secondary);

    font-size: 16px;
}


.template-principles {
    border-top: 1px solid var(--border);
}


.template-principles > div {
    display: grid;

    grid-template-columns: 50px 1fr 1.5fr;

    gap: 20px;

    padding: 25px 0;

    border-bottom: 1px solid var(--border);
}


.template-principles span {
    color: var(--accent);

    font-size: 11px;
    font-weight: 800;
}


.template-principles strong {
    font-size: 15px;
}


.template-principles p {
    color: var(--text-secondary);

    font-size: 13px;
}


/* GUIDE */

.template-guide-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 16px;

    margin-top: 55px;
}


.template-guide-grid > div {
    padding: 26px;

    border: 1px solid var(--border);
    border-radius: 18px;
}


.template-guide-grid strong {
    font-size: 16px;
}


.template-guide-grid p {
    margin-top: 8px;

    color: var(--text-secondary);

    font-size: 14px;
}


/* MOBILE */

@media (max-width: 900px) {

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

    .template-explainer {
        grid-template-columns: 1fr;

        gap: 55px;
    }

}


@media (max-width: 600px) {

    .template-gallery {
        grid-template-columns: 1fr;

        gap: 40px;
    }

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

    .template-principles > div {
        grid-template-columns: 40px 1fr;
    }

    .template-principles p {
        grid-column: 2;
    }

}

/* ========================================
   ATS GUIDE
======================================== */


/* ARTICLE */

.article-layout {
    display: grid;

    grid-template-columns: 220px minmax(0, 760px);

    justify-content: center;

    gap: 90px;
}


/* SIDEBAR */

.article-sidebar {
    position: sticky;

    top: 110px;

    align-self: start;

    display: flex;
    flex-direction: column;

    gap: 14px;
}


.article-sidebar > span {
    margin-bottom: 8px;

    color: #98a2b3;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: .12em;
}


.article-sidebar a {
    color: var(--text-secondary);

    font-size: 13px;

    transition: color .2s ease;
}


.article-sidebar a:hover {
    color: var(--accent);
}


/* ARTICLE CONTENT */

.article-content > section {
    padding-bottom: 85px;

    scroll-margin-top: 110px;
}


.article-content h2 {
    max-width: 680px;

    margin-bottom: 24px;

    font-size: clamp(34px, 4vw, 48px);

    line-height: 1.08;
    letter-spacing: -.035em;
}


.article-content > section > p {
    margin: 16px 0;

    color: #475467;

    font-size: 16px;
    line-height: 1.8;
}


/* INFO NOTE */

.article-note,
.article-warning {
    margin-top: 30px;

    padding: 24px;

    border-radius: 17px;
}


.article-note {
    border: 1px solid #dfe4ff;

    background: #f5f6ff;
}


.article-warning {
    border: 1px solid #f1e5c7;

    background: #fffbf1;
}


.article-note strong,
.article-warning strong {
    font-size: 14px;
}


.article-note p,
.article-warning p {
    margin-top: 7px;

    color: var(--text-secondary);

    font-size: 14px;
    line-height: 1.65;
}


/* GUIDE CARDS */

.article-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 14px;

    margin-top: 35px;
}


.article-cards > div {
    padding: 25px;

    border: 1px solid var(--border);
    border-radius: 18px;
}


.article-cards span {
    color: var(--accent);

    font-size: 10px;
    font-weight: 800;
}


.article-cards h3 {
    margin-top: 20px;

    font-size: 17px;
}


.article-cards p {
    margin-top: 8px;

    color: var(--text-secondary);

    font-size: 13px;
    line-height: 1.65;
}


/* KEYWORD EXAMPLE */

.keyword-example {
    display: grid;

    grid-template-columns: 1fr 35px 1fr;

    gap: 15px;

    align-items: center;

    margin-top: 35px;
}


.keyword-example > div:not(.keyword-arrow) {
    min-height: 190px;

    padding: 23px;

    border: 1px solid var(--border);
    border-radius: 18px;

    background: var(--bg-soft);
}


.keyword-example span {
    color: #98a2b3;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: .12em;
}


.keyword-example p {
    margin-top: 15px;

    color: #475467;

    font-size: 14px;
    line-height: 1.65;
}


.keyword-arrow {
    color: var(--accent);

    text-align: center;

    font-size: 20px;
}


/* MISTAKES */

.mistake-list {
    margin-top: 35px;

    border-top: 1px solid var(--border);
}


.mistake-list > div {
    display: grid;

    grid-template-columns: 35px 1fr;

    gap: 15px;

    padding: 23px 0;

    border-bottom: 1px solid var(--border);
}


.mistake-list > div > span {
    width: 25px;
    height: 25px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: #fff1f1;
    color: #d95c5c;

    font-size: 14px;
}


.mistake-list strong {
    font-size: 15px;
}


.mistake-list p {
    max-width: 600px;

    margin-top: 6px;

    color: var(--text-secondary);

    font-size: 14px;
}


/* CHECKLIST */

.ats-checklist {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 10px;

    margin-top: 35px;
}


.ats-checklist > div {
    display: flex;
    align-items: center;

    gap: 11px;

    padding: 15px;

    border: 1px solid var(--border);
    border-radius: 13px;

    font-size: 13px;
    font-weight: 600;
}


.ats-checklist span {
    width: 23px;
    height: 23px;

    flex: 0 0 auto;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: #eaf8ef;
    color: #27a55b;

    font-size: 11px;
}


/* PRODUCT */

.ats-product {
    display: grid;

    grid-template-columns: 1fr .8fr;

    gap: 90px;

    align-items: center;
}


.ats-product h2 {
    max-width: 570px;

    font-size: clamp(38px, 5vw, 55px);

    line-height: 1.08;
    letter-spacing: -.04em;
}


.ats-product > div:first-child > p {
    max-width: 550px;

    margin: 20px 0 30px;

    color: var(--text-secondary);

    font-size: 16px;
}


.ats-product-preview {
    max-width: 350px;

    margin: auto;

    padding: 14px;

    border-radius: 22px;

    background: white;

    box-shadow:
        0 20px 55px rgba(25,35,70,.1);
}


.ats-product-preview img {
    width: 100%;

    border-radius: 10px;
}


/* FAQ */

.faq-container {
    max-width: 900px;
}


.faq-list {
    margin-top: 45px;

    border-top: 1px solid var(--border);
}


.faq-list details {
    border-bottom: 1px solid var(--border);
}


.faq-list summary {
    position: relative;

    padding: 24px 45px 24px 0;

    cursor: pointer;

    list-style: none;

    font-size: 16px;
    font-weight: 650;
}


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


.faq-list summary::after {
    content: "+";

    position: absolute;

    right: 5px;

    font-size: 20px;
    font-weight: 400;

    color: var(--text-secondary);
}


.faq-list details[open] summary::after {
    content: "−";
}


.faq-list details p {
    max-width: 760px;

    padding: 0 40px 25px 0;

    color: var(--text-secondary);

    font-size: 14px;
    line-height: 1.7;
}


/* MOBILE */

@media (max-width: 900px) {

    .article-layout {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .article-sidebar {
        position: static;

        flex-direction: row;
        flex-wrap: wrap;

        gap: 10px;
    }

    .article-sidebar > span {
        width: 100%;
    }

    .article-sidebar a {
        padding: 8px 11px;

        border: 1px solid var(--border);
        border-radius: 20px;
    }

    .ats-product {
        grid-template-columns: 1fr;

        gap: 55px;
    }

}


@media (max-width: 600px) {

    .article-cards,
    .ats-checklist {
        grid-template-columns: 1fr;
    }

    .keyword-example {
        grid-template-columns: 1fr;
    }

    .keyword-arrow {
        transform: rotate(90deg);
    }

}

/* ========================================
   RESUME GUIDES
======================================== */


/* HERO */

.guides-hero {
    padding: 120px 0 75px;

    text-align: center;
}

.guides-hero h1 {
    max-width: 900px;

    margin: auto;

    font-size: clamp(50px, 6vw, 76px);

    line-height: 1.03;
    letter-spacing: -.045em;
}

.guides-hero h1 span {
    color: #a4acbb;
}

.guides-hero p {
    max-width: 620px;

    margin: 25px auto 0;

    color: var(--text-secondary);

    font-size: 17px;
}


/* FEATURED */

.guides-featured {
    padding-bottom: 100px;
}

.featured-guide {
    display: grid;
    grid-template-columns: 1.1fr .9fr;

    min-height: 480px;

    overflow: hidden;

    border-radius: 30px;

    background: #111827;

    color: white;
}

.featured-guide-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;

    padding: 65px;
}

.guide-meta {
    color: #8fa0ff;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: .13em;
}

.featured-guide h2 {
    max-width: 600px;

    margin-top: 18px;

    font-size: clamp(36px, 4vw, 52px);

    line-height: 1.08;
    letter-spacing: -.04em;
}

.featured-guide p {
    max-width: 540px;

    margin-top: 20px;

    color: #98a2b3;

    font-size: 15px;
    line-height: 1.7;
}

.guide-read {
    margin-top: 30px;

    color: white;

    font-size: 14px;
    font-weight: 650;
}


/* FEATURED VISUAL */

.featured-guide-visual {
    position: relative;

    display: flex;
    align-items: flex-end;
    justify-content: center;

    padding-top: 60px;

    background:
        radial-gradient(
            circle at 50% 70%,
            rgba(80,104,242,.35),
            transparent 55%
        );
}

.guide-document {
    width: 300px;
    min-height: 390px;

    padding: 34px;

    border-radius: 10px 10px 0 0;

    background: white;

    transform: rotate(2deg);

    box-shadow:
        0 25px 60px rgba(0,0,0,.25);
}

.guide-doc-header {
    display: flex;
    align-items: center;

    gap: 14px;

    margin-bottom: 32px;
}

.guide-doc-header > div:last-child {
    width: 100%;
}

.guide-doc-avatar {
    width: 43px;
    height: 43px;

    flex: 0 0 auto;

    border-radius: 50%;

    background: #eef0ff;
}

.guide-document > span {
    display: block;

    margin: 25px 0 11px;

    color: var(--accent);

    font-size: 8px;
    font-weight: 800;

    letter-spacing: .12em;
}

.guide-line {
    display: block;

    width: 100%;
    height: 5px;

    margin: 7px 0;

    border-radius: 10px;

    background: #e8ebf1;
}

.guide-name {
    width: 70%;
    height: 8px;

    background: #bec5d0;
}

.guide-small {
    width: 45%;
}

.guide-medium {
    width: 70%;
}

.guide-skills {
    display: flex;

    gap: 6px;
}

.guide-skills i {
    width: 42px;
    height: 15px;

    border-radius: 10px;

    background: #eef0ff;
}


/* GUIDE GRID */

.guides-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    margin-bottom: 50px;
}

.guides-heading h2 {
    font-size: clamp(38px, 5vw, 54px);

    letter-spacing: -.04em;
}

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

    gap: 16px;
}

.guide-card {
    position: relative;

    min-height: 330px;

    display: flex;
    flex-direction: column;

    padding: 27px;

    border: 1px solid var(--border);
    border-radius: 21px;

    background: white;

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}

.guide-card:hover {
    transform: translateY(-5px);

    border-color: #d7dce5;

    box-shadow:
        0 20px 50px rgba(20,30,55,.08);
}

.guide-card-number {
    margin-bottom: 45px;

    color: #c1c7d0;

    font-size: 11px;
    font-weight: 700;
}

.guide-card h3 {
    margin-top: 13px;

    font-size: 21px;
    line-height: 1.25;

    letter-spacing: -.025em;
}

.guide-card p {
    margin-top: 12px;

    color: var(--text-secondary);

    font-size: 14px;
    line-height: 1.65;
}

.guide-card > span {
    margin-top: auto;
    padding-top: 25px;

    color: var(--accent);

    font-size: 13px;
    font-weight: 650;
}

.guide-card-accent {
    background: #f6f7ff;
}


/* TOPICS */

.guide-topics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 14px;
}

.guide-topics a {
    padding: 28px;

    border: 1px solid var(--border);
    border-radius: 18px;

    background: white;

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}

.guide-topics a:hover {
    transform: translateY(-3px);

    box-shadow:
        0 15px 35px rgba(20,30,55,.06);
}

.guide-topics strong {
    display: block;

    font-size: 17px;
}

.guide-topics span {
    display: block;

    margin-top: 8px;

    color: var(--text-secondary);

    font-size: 13px;
}


/* CTA */

.guide-product-cta {
    padding: 100px 0;
}

.guide-product-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 60px;

    padding: 60px;

    border-radius: 28px;

    background: #f6f8fb;
}

.guide-product-inner h2 {
    max-width: 600px;

    font-size: clamp(36px, 4vw, 50px);

    line-height: 1.08;
    letter-spacing: -.04em;
}

.guide-product-inner p {
    max-width: 520px;

    margin-top: 15px;

    color: var(--text-secondary);
}

.guide-product-inner .button {
    flex: 0 0 auto;
}


/* MOBILE */

@media (max-width: 900px) {

    .featured-guide {
        grid-template-columns: 1fr;
    }

    .featured-guide-content {
        padding: 50px;
    }

    .featured-guide-visual {
        min-height: 420px;
    }

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

    .guide-product-inner {
        align-items: flex-start;
        flex-direction: column;
    }

}


@media (max-width: 600px) {

    .guides-hero {
        padding: 85px 0 60px;
    }

    .guides-hero h1 {
        font-size: 44px;
    }

    .featured-guide-content {
        padding: 35px 25px;
    }

    .guide-document {
        width: 250px;
    }

    .guides-grid,
    .guide-topics {
        grid-template-columns: 1fr;
    }

    .guide-product-inner {
        padding: 40px 25px;
    }

    .guide-product-inner .button {
        width: 100%;
    }

}

/* ========================================
   ARTICLE PAGE
======================================== */


/* HERO */

.article-hero {
    padding: 85px 0 75px;

    border-bottom: 1px solid var(--border);
}

.article-hero-inner {
    max-width: 950px;
}


.breadcrumbs {
    display: flex;
    flex-wrap: wrap;

    gap: 8px;

    margin-bottom: 55px;

    color: #98a2b3;

    font-size: 12px;
}

.breadcrumbs a {
    color: var(--text-secondary);
}

.breadcrumbs a:hover {
    color: var(--accent);
}


.article-hero h1 {
    max-width: 900px;

    margin-top: 15px;

    font-size: clamp(48px, 6vw, 72px);

    line-height: 1.04;
    letter-spacing: -.045em;
}

.article-hero h1 span {
    color: #a4acbb;
}


.article-intro {
    max-width: 760px;

    margin-top: 26px;

    color: var(--text-secondary);

    font-size: 18px;
    line-height: 1.7;
}


.article-details {
    display: flex;

    gap: 25px;

    margin-top: 28px;

    color: #98a2b3;

    font-size: 12px;
}


/* MAIN */

.article-main {
    padding: 90px 0 40px;
}


.article-page-layout {
    display: grid;

    grid-template-columns: 220px minmax(0, 760px);

    justify-content: center;

    gap: 90px;
}


/* TOC */

.article-toc {
    position: sticky;

    top: 110px;

    align-self: start;

    display: flex;
    flex-direction: column;

    gap: 13px;
}


.article-toc > span {
    margin-bottom: 8px;

    color: #98a2b3;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: .12em;
}


.article-toc a {
    color: var(--text-secondary);

    font-size: 12px;

    transition: color .2s ease;
}


.article-toc a:hover {
    color: var(--accent);
}


/* CONTENT */

.resume-article > section {
    padding-bottom: 85px;

    scroll-margin-top: 110px;
}


.resume-article h2 {
    margin-bottom: 24px;

    font-size: clamp(34px, 4vw, 46px);

    line-height: 1.1;
    letter-spacing: -.035em;
}


.resume-article h3 {
    margin: 35px 0 12px;

    font-size: 20px;

    letter-spacing: -.02em;
}


.resume-article > section > p {
    margin: 17px 0;

    color: #475467;

    font-size: 16px;
    line-height: 1.8;
}


.article-step-label {
    margin-bottom: 13px;

    color: var(--accent);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: .13em;
}


/* STRUCTURE */

.article-callout {
    margin-top: 35px;

    padding: 28px;

    border: 1px solid var(--border);
    border-radius: 20px;

    background: var(--bg-soft);
}


.article-callout > strong {
    font-size: 15px;
}


.structure-list {
    display: flex;
    flex-wrap: wrap;

    gap: 8px;

    margin-top: 18px;
}


.structure-list span {
    padding: 8px 12px;

    border: 1px solid var(--border);
    border-radius: 30px;

    background: white;

    color: #475467;

    font-size: 12px;
}


/* LINK CARD */

.article-link-card {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    margin-top: 35px;

    padding: 27px;

    border-radius: 20px;

    background: #f5f6ff;
}


.article-link-card span {
    color: var(--accent);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: .12em;
}


.article-link-card strong {
    display: block;

    margin-top: 7px;

    font-size: 16px;
}


.article-link-card p {
    max-width: 430px;

    margin-top: 5px;

    color: var(--text-secondary);

    font-size: 13px;
}


.article-link-card a {
    flex: 0 0 auto;

    color: var(--accent);

    font-size: 13px;
    font-weight: 650;
}


/* LIST */

.article-list {
    margin: 22px 0 0;

    padding: 0;

    list-style: none;
}


.article-list li {
    position: relative;

    padding: 12px 0 12px 28px;

    border-bottom: 1px solid var(--border);

    color: #475467;

    font-size: 14px;
}


.article-list li::before {
    content: "✓";

    position: absolute;

    left: 0;

    color: var(--accent);

    font-weight: 800;
}


/* EXAMPLE */

.article-example {
    margin: 30px 0;

    padding: 27px;

    border-left: 3px solid var(--accent);
    border-radius: 0 18px 18px 0;

    background: var(--bg-soft);
}


.article-example span {
    color: var(--accent);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: .12em;
}


.article-example p {
    margin-top: 12px;

    color: #344054;

    font-size: 15px;
    line-height: 1.75;
}


.article-inline-link {
    display: inline-block;

    margin-top: 10px;

    color: var(--accent);

    font-size: 14px;
    font-weight: 650;
}


/* BEFORE / AFTER */

.before-after {
    display: grid;

    grid-template-columns: 1fr 35px 1fr;

    gap: 14px;

    align-items: center;

    margin: 30px 0;
}


.before-after > div:not(.before-after-arrow) {
    min-height: 180px;

    padding: 23px;

    border: 1px solid var(--border);
    border-radius: 17px;

    background: var(--bg-soft);
}


.before-after span {
    color: #98a2b3;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: .12em;
}


.before-after p {
    margin-top: 14px;

    color: #475467;

    font-size: 14px;
    line-height: 1.65;
}


.before-after-arrow {
    color: var(--accent);

    text-align: center;

    font-size: 20px;
}


/* SKILLS */

.skill-example-grid {
    display: flex;
    flex-wrap: wrap;

    gap: 9px;

    margin: 28px 0;
}


.skill-example-grid span {
    padding: 9px 13px;

    border: 1px solid var(--border);
    border-radius: 30px;

    background: var(--bg-soft);

    color: #475467;

    font-size: 12px;
    font-weight: 600;
}


/* ADDITIONAL */

.additional-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 12px;

    margin-top: 30px;
}


.additional-grid > div {
    padding: 22px;

    border: 1px solid var(--border);
    border-radius: 16px;
}


.additional-grid strong {
    font-size: 15px;
}


.additional-grid p {
    margin-top: 7px;

    color: var(--text-secondary);

    font-size: 13px;
    line-height: 1.6;
}


/* CHECKLIST */

.resume-checklist {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 10px;

    margin-top: 30px;
}


.resume-checklist > div {
    display: flex;
    align-items: center;

    gap: 10px;

    padding: 15px;

    border: 1px solid var(--border);
    border-radius: 13px;

    font-size: 13px;
    font-weight: 600;
}


.resume-checklist span {
    width: 22px;
    height: 22px;

    flex: 0 0 auto;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: #eaf8ef;
    color: #27a55b;

    font-size: 10px;
}


/* APP CTA */

.article-app-cta {
    padding: 55px !important;

    border-radius: 26px;

    background: #111827;

    color: white;

    text-align: center;
}


.article-app-icon {
    width: 50px;
    height: 50px;

    display: grid;
    place-items: center;

    margin: 0 auto 20px;

    border-radius: 14px;

    background: var(--accent);

    font-weight: 800;
}


.article-app-cta h2 {
    margin: 10px 0 0;

    color: white;
}


.article-app-cta p {
    max-width: 570px;

    margin: 17px auto 27px !important;

    color: #98a2b3 !important;
}


/* RELATED */

.related-guides {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 15px;
}


.related-guides > a {
    min-height: 230px;

    display: flex;
    flex-direction: column;

    padding: 25px;

    border: 1px solid var(--border);
    border-radius: 18px;

    background: white;
}


.related-guides span {
    color: var(--accent);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: .12em;
}


.related-guides h3 {
    margin-top: 20px;

    font-size: 19px;
}


.related-guides p {
    margin-top: 9px;

    color: var(--text-secondary);

    font-size: 13px;
}


.related-guides strong {
    margin-top: auto;
    padding-top: 20px;

    color: var(--accent);

    font-size: 12px;
}


/* MOBILE */

@media (max-width: 900px) {

    .article-page-layout {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .article-toc {
        position: static;

        flex-direction: row;
        flex-wrap: wrap;

        gap: 8px;
    }

    .article-toc > span {
        width: 100%;
    }

    .article-toc a {
        padding: 7px 10px;

        border: 1px solid var(--border);
        border-radius: 20px;
    }

}


@media (max-width: 600px) {

    .article-hero {
        padding: 60px 0;
    }

    .article-hero h1 {
        font-size: 43px;
    }

    .breadcrumbs {
        margin-bottom: 40px;
    }

    .article-details {
        flex-direction: column;

        gap: 5px;
    }

    .before-after {
        grid-template-columns: 1fr;
    }

    .before-after-arrow {
        transform: rotate(90deg);
    }

    .additional-grid,
    .resume-checklist,
    .related-guides {
        grid-template-columns: 1fr;
    }

    .article-link-card {
        align-items: flex-start;
        flex-direction: column;
    }

    .article-app-cta {
        padding: 40px 22px !important;
    }

}

/* ========================================
   ARTICLE DESIGN FIX
======================================== */

.article-hero {
    position: relative;
    padding: 90px 0 85px;
    overflow: hidden;

    border-bottom: 1px solid var(--border);

    background:
        radial-gradient(
            circle at 75% 15%,
            rgba(80, 104, 242, .10),
            transparent 32%
        ),
        linear-gradient(
            180deg,
            #ffffff 0%,
            #fafbfe 100%
        );
}

.article-hero-inner {
    max-width: 950px;
}

.article-hero h1 {
    max-width: 920px;
    margin-top: 18px;

    font-size: clamp(52px, 5.5vw, 72px);
    line-height: 1.02;
    letter-spacing: -.05em;

    color: var(--text);
}

.article-hero h1 span {
    display: block;
    color: #a5adba;
}

.article-intro {
    max-width: 760px;
    margin-top: 26px;

    color: var(--text-secondary);

    font-size: 18px;
    line-height: 1.7;
}

.article-details {
    display: flex;
    gap: 10px;

    margin-top: 30px;
}

.article-details span {
    padding: 7px 11px;

    border: 1px solid var(--border);
    border-radius: 20px;

    background: white;

    color: #667085;

    font-size: 11px;
    font-weight: 600;
}


/* BREADCRUMBS */

.breadcrumbs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 8px;

    margin-bottom: 55px;

    color: #98a2b3;

    font-size: 12px;
}

.breadcrumbs a {
    color: #667085;
}

.breadcrumbs a:hover {
    color: var(--accent);
}


/* ARTICLE BODY */

.article-main {
    padding: 90px 0 60px;
}

.article-page-layout {
    display: grid !important;

    grid-template-columns: 230px minmax(0, 760px);

    justify-content: center;
    align-items: start;

    gap: 85px;
}


/* TABLE OF CONTENTS */

.article-toc {
    position: sticky;
    top: 105px;

    align-self: start;

    display: flex !important;
    flex-direction: column;

    gap: 3px;

    padding: 22px;

    border: 1px solid var(--border);
    border-radius: 18px;

    background: #fafbfc;
}

.article-toc > span {
    margin-bottom: 12px;

    color: #98a2b3;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: .14em;
}

.article-toc a {
    display: block;

    padding: 8px 9px;

    border-radius: 8px;

    color: #667085;

    font-size: 12px;
    line-height: 1.35;

    transition:
        color .2s ease,
        background .2s ease;
}

.article-toc a:hover {
    background: white;
    color: var(--accent);
}


/* ARTICLE CONTENT */

.resume-article {
    min-width: 0;
}

.resume-article > section {
    padding-bottom: 90px;

    scroll-margin-top: 110px;
}

.resume-article h2 {
    max-width: 700px;

    margin: 0 0 25px;

    font-size: clamp(34px, 4vw, 46px);
    line-height: 1.08;
    letter-spacing: -.035em;
}

.resume-article h3 {
    margin: 38px 0 12px;

    font-size: 20px;
    line-height: 1.3;

    letter-spacing: -.02em;
}

.resume-article > section > p {
    max-width: 720px;

    margin: 17px 0;

    color: #475467;

    font-size: 16px;
    line-height: 1.8;
}


/* STEP */

.article-step-label {
    display: inline-block;

    margin-bottom: 14px;
    padding: 6px 9px;

    border-radius: 7px;

    background: #eef0ff;

    color: var(--accent);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: .12em;
}


/* BASIC STRUCTURE */

.article-callout {
    margin-top: 35px;
    padding: 27px;

    border: 1px solid var(--border);
    border-radius: 19px;

    background: #f8f9fb;
}

.article-callout > strong {
    display: block;

    margin-bottom: 17px;

    font-size: 15px;
}

.structure-list {
    display: flex;
    flex-wrap: wrap;

    gap: 8px;
}

.structure-list span {
    padding: 8px 12px;

    border: 1px solid #e4e7ec;
    border-radius: 30px;

    background: white;

    color: #475467;

    font-size: 12px;
}


/* ARTICLE LINK CARD */

.article-link-card {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    margin-top: 35px;
    padding: 26px;

    border: 1px solid #e4e7ff;
    border-radius: 18px;

    background:
        linear-gradient(
            135deg,
            #f7f8ff,
            #f3f5ff
        );
}

.article-link-card span {
    color: var(--accent);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: .12em;
}

.article-link-card strong {
    display: block;

    margin-top: 7px;

    font-size: 16px;
}

.article-link-card p {
    max-width: 430px;

    margin-top: 5px;

    color: var(--text-secondary);

    font-size: 13px;
    line-height: 1.55;
}

.article-link-card a {
    flex: 0 0 auto;

    color: var(--accent);

    font-size: 13px;
    font-weight: 700;
}


/* ARTICLE NOTE */

.resume-article .article-note {
    margin-top: 30px;
    padding: 22px;

    border: 1px solid #dfe4ff;
    border-radius: 16px;

    background: #f6f7ff;
}

.resume-article .article-note strong {
    font-size: 14px;
}

.resume-article .article-note p {
    margin-top: 6px;

    color: #667085;

    font-size: 13px;
    line-height: 1.65;
}


/* EXAMPLE */

.article-example {
    position: relative;

    margin: 30px 0;
    padding: 27px;

    border: 1px solid var(--border);
    border-left: 3px solid var(--accent);
    border-radius: 0 17px 17px 0;

    background: #f8f9fb;
}

.article-example span {
    color: var(--accent);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: .12em;
}

.article-example p {
    margin-top: 12px;

    color: #344054;

    font-size: 15px;
    line-height: 1.75;
}


/* INLINE LINK */

.article-inline-link {
    display: inline-block;

    margin-top: 10px;

    color: var(--accent);

    font-size: 14px;
    font-weight: 700;
}


/* BEFORE AFTER */

.before-after {
    display: grid;

    grid-template-columns: 1fr 36px 1fr;

    gap: 14px;

    align-items: center;

    margin: 32px 0;
}

.before-after > div:not(.before-after-arrow) {
    min-height: 180px;

    padding: 22px;

    border: 1px solid var(--border);
    border-radius: 17px;

    background: #f8f9fb;
}

.before-after > div:last-child {
    background: #f6f7ff;
}

.before-after span {
    color: #98a2b3;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: .12em;
}

.before-after p {
    margin-top: 14px;

    color: #475467;

    font-size: 14px;
    line-height: 1.65;
}

.before-after-arrow {
    color: var(--accent);

    text-align: center;

    font-size: 20px;
}


/* MOBILE */

@media (max-width: 900px) {

    .article-page-layout {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .article-toc {
        position: static;

        flex-direction: row;

        flex-wrap: wrap;
    }

    .article-toc > span {
        width: 100%;
    }

}


@media (max-width: 600px) {

    .article-hero {
        padding: 60px 0;
    }

    .article-hero h1 {
        font-size: 43px;
    }

    .breadcrumbs {
        margin-bottom: 38px;
    }

    .article-details {
        flex-wrap: wrap;
    }

    .article-main {
        padding-top: 55px;
    }

    .before-after {
        grid-template-columns: 1fr;
    }

    .before-after-arrow {
        transform: rotate(90deg);
    }

    .article-link-card {
        align-items: flex-start;
        flex-direction: column;
    }

}

/* ========================================
   RESUME SUMMARY ARTICLE
======================================== */


/* FORMULA */

.summary-formula {
    display: grid;

    grid-template-columns:
        1fr 28px
        1fr 28px
        1fr 28px
        1fr;

    align-items: center;

    gap: 8px;

    margin: 32px 0;
}

.summary-formula > div:not(.formula-plus) {
    min-height: 115px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    padding: 18px;

    border: 1px solid var(--border);
    border-radius: 15px;

    background: #f8f9fb;
}

.summary-formula span {
    color: var(--accent);

    font-size: 9px;
    font-weight: 800;
}

.summary-formula strong {
    font-size: 13px;
    line-height: 1.35;
}

.formula-plus {
    color: #a4acbb;

    text-align: center;

    font-size: 18px;
}


/* EXAMPLES */

.summary-examples {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 12px;

    margin-top: 32px;
}

.summary-examples > div {
    padding: 24px;

    border: 1px solid var(--border);
    border-radius: 17px;

    background: #fafbfc;
}

.summary-examples span {
    color: var(--accent);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: .11em;
}

.summary-examples p {
    margin-top: 14px;

    color: #475467;

    font-size: 14px;
    line-height: 1.7;
}


/* MISTAKES */

.summary-mistakes {
    margin-top: 30px;

    border-top: 1px solid var(--border);
}

.summary-mistakes > div {
    display: grid;

    grid-template-columns: 32px 1fr;

    gap: 14px;

    padding: 22px 0;

    border-bottom: 1px solid var(--border);
}

.summary-mistakes > div > span {
    width: 25px;
    height: 25px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: #fff1f1;
    color: #d95c5c;

    font-size: 13px;
}

.summary-mistakes strong {
    font-size: 15px;
}

.summary-mistakes p {
    max-width: 650px;

    margin-top: 6px;

    color: var(--text-secondary);

    font-size: 14px;
    line-height: 1.65;
}


/* MOBILE */

@media (max-width: 700px) {

    .summary-formula {
        grid-template-columns: 1fr;
    }

    .formula-plus {
        transform: rotate(90deg);
    }

    .summary-examples {
        grid-template-columns: 1fr;
    }

}

/* ========================================
   WORK EXPERIENCE ARTICLE
======================================== */


/* TIMELINE */

.experience-timeline {
    position: relative;

    margin: 35px 0 0;
    padding-left: 8px;
}

.experience-timeline::before {
    content: "";

    position: absolute;

    top: 12px;
    bottom: 12px;
    left: 14px;

    width: 1px;

    background: #dfe3ea;
}

.experience-timeline > div {
    position: relative;

    display: grid;
    grid-template-columns: 30px 1fr;

    gap: 17px;

    padding: 0 0 32px;
}

.timeline-dot {
    position: relative;
    z-index: 2;

    width: 13px;
    height: 13px;

    margin-top: 4px;

    border: 3px solid white;
    border-radius: 50%;

    background: var(--accent);

    box-shadow:
        0 0 0 1px #dfe3ea;
}

.experience-timeline small {
    display: block;

    margin-bottom: 5px;

    color: #98a2b3;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: .1em;
}

.experience-timeline strong {
    display: block;

    font-size: 16px;
}

.experience-timeline p {
    margin-top: 3px;

    color: var(--text-secondary);

    font-size: 13px;
}


/* FORMULA */

.experience-formula {
    display: grid;

    grid-template-columns:
        1fr 35px
        1fr 35px
        1fr;

    gap: 10px;

    align-items: center;

    margin: 32px 0;
}

.experience-formula > div:not(.formula-arrow) {
    min-height: 170px;

    padding: 22px;

    border: 1px solid var(--border);
    border-radius: 17px;

    background: #f8f9fb;
}

.experience-formula span {
    color: var(--accent);

    font-size: 9px;
    font-weight: 800;
}

.experience-formula strong {
    display: block;

    margin-top: 30px;

    font-size: 15px;
}

.experience-formula p {
    margin-top: 7px;

    color: var(--text-secondary);

    font-size: 12px;
    line-height: 1.55;
}

.formula-arrow {
    color: var(--accent);

    text-align: center;

    font-size: 19px;
}


/* EXAMPLES */

.experience-examples {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 14px;

    margin-top: 32px;
}

.experience-examples > div {
    padding: 25px;

    border: 1px solid var(--border);
    border-radius: 18px;

    background: #fafbfc;
}

.experience-examples > div > span {
    color: var(--accent);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: .11em;
}

.experience-examples h3 {
    margin: 13px 0 18px;

    font-size: 17px;
}

.experience-examples ul {
    margin: 0;
    padding: 0;

    list-style: none;
}

.experience-examples li {
    position: relative;

    padding: 10px 0 10px 18px;

    border-top: 1px solid var(--border);

    color: #475467;

    font-size: 13px;
    line-height: 1.6;
}

.experience-examples li::before {
    content: "•";

    position: absolute;

    left: 0;

    color: var(--accent);
}


/* MOBILE */

@media (max-width: 700px) {

    .experience-formula {
        grid-template-columns: 1fr;
    }

    .formula-arrow {
        transform: rotate(90deg);
    }

    .experience-examples {
        grid-template-columns: 1fr;
    }

}

/* ========================================
   SKILLS ARTICLE
======================================== */


/* HARD / SOFT */

.skills-type-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 14px;

    margin-top: 32px;
}

.skills-type-grid > div {
    padding: 26px;

    border: 1px solid var(--border);
    border-radius: 19px;

    background: #fafbfc;
}

.skills-type-icon {
    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    margin-bottom: 24px;

    border-radius: 12px;

    background: #eef0ff;
    color: var(--accent);

    font-size: 12px;
    font-weight: 800;
}

.skills-type-grid > div > span {
    color: var(--accent);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: .11em;
}

.skills-type-grid h3 {
    margin: 10px 0;

    font-size: 18px;
}

.skills-type-grid > div > p {
    color: var(--text-secondary);

    font-size: 13px;
    line-height: 1.6;
}


/* JOB MATCH */

.skill-match-example {
    display: grid;

    grid-template-columns: 1fr 40px 1fr;

    align-items: center;

    gap: 12px;

    margin: 32px 0;
}

.skill-match-example > div:not(.skill-match-arrow) {
    min-height: 190px;

    padding: 24px;

    border: 1px solid var(--border);
    border-radius: 17px;

    background: #fafbfc;
}

.skill-match-example > div:last-child {
    background: #f6f7ff;
}

.skill-match-example > div > span {
    color: var(--accent);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: .11em;
}

.skill-match-example p {
    margin-top: 17px;

    color: #475467;

    font-size: 14px;
    line-height: 1.7;
}

.skill-match-arrow {
    color: var(--accent);

    text-align: center;

    font-size: 20px;
}


/* SKILL CATEGORIES */

.skills-category-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 13px;

    margin-top: 32px;
}

.skills-category-grid > div {
    padding: 24px;

    border: 1px solid var(--border);
    border-radius: 17px;

    background: #fafbfc;
}

.skills-category-grid > div > span {
    color: var(--accent);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: .11em;
}

.skills-category-grid h3 {
    margin: 11px 0 18px;

    font-size: 17px;
}


/* SKILLS BY JOB */

.job-skills-list {
    margin-top: 30px;

    border-top: 1px solid var(--border);
}

.job-skills-list > div {
    display: grid;

    grid-template-columns: 220px 1fr;

    gap: 30px;

    padding: 24px 0;

    border-bottom: 1px solid var(--border);
}

.job-skills-list > div > div {
    display: flex;
    align-items: center;

    gap: 12px;
}

.job-skills-list span {
    width: 28px;
    height: 28px;

    display: grid;
    place-items: center;

    flex: 0 0 auto;

    border-radius: 8px;

    background: #eef0ff;
    color: var(--accent);

    font-size: 9px;
    font-weight: 800;
}

.job-skills-list strong {
    font-size: 14px;
}

.job-skills-list p {
    color: var(--text-secondary);

    font-size: 13px;
    line-height: 1.6;
}


/* SKILL + EXPERIENCE */

.skills-evidence {
    display: grid;

    grid-template-columns: .75fr 35px 1.25fr;

    align-items: center;

    gap: 12px;

    margin: 32px 0;
}

.skills-evidence > div:not(.skills-evidence-arrow) {
    min-height: 135px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 22px;

    border: 1px solid var(--border);
    border-radius: 17px;

    background: #fafbfc;
}

.skills-evidence span {
    color: var(--accent);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: .11em;
}

.skills-evidence strong {
    margin-top: 10px;

    font-size: 16px;
}

.skills-evidence p {
    margin-top: 10px;

    color: #475467;

    font-size: 13px;
    line-height: 1.6;
}

.skills-evidence-arrow {
    color: var(--accent);

    text-align: center;

    font-size: 20px;
}


/* MOBILE */

@media (max-width: 700px) {

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

    .skill-match-example,
    .skills-evidence {
        grid-template-columns: 1fr;
    }

    .skill-match-arrow,
    .skills-evidence-arrow {
        transform: rotate(90deg);
    }

    .job-skills-list > div {
        grid-template-columns: 1fr;

        gap: 12px;
    }

}

/* ========================================
   NO EXPERIENCE ARTICLE
======================================== */


/* STRUCTURE */

.first-resume-structure {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 12px;

    margin: 32px 0;
}

.first-resume-structure > div {
    padding: 22px;

    border: 1px solid var(--border);
    border-radius: 17px;

    background: #fafbfc;
}

.first-resume-structure span {
    color: var(--accent);

    font-size: 9px;
    font-weight: 800;
}

.first-resume-structure strong {
    display: block;

    margin-top: 20px;

    font-size: 15px;
}

.first-resume-structure p {
    margin-top: 6px;

    color: var(--text-secondary);

    font-size: 12px;
    line-height: 1.55;
}


/* EDUCATION */

.education-example {
    margin: 30px 0;

    padding: 27px;

    border: 1px solid var(--border);
    border-radius: 19px;

    background: #fafbfc;
}

.education-example > span {
    color: var(--accent);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: .11em;
}

.education-example h3 {
    margin: 18px 0 5px;

    font-size: 19px;
}

.education-example > strong {
    display: block;

    color: #475467;

    font-size: 13px;
}

.education-example > small {
    display: block;

    margin-top: 3px;

    color: #98a2b3;

    font-size: 11px;
}

.education-details {
    margin-top: 22px;
    padding-top: 18px;

    border-top: 1px solid var(--border);
}

.education-details > div {
    color: #344054;

    font-size: 12px;
    font-weight: 700;
}

.education-details p {
    margin-top: 6px;

    color: var(--text-secondary);

    font-size: 13px;
    line-height: 1.6;
}


/* EXPERIENCE SOURCES */

.experience-source-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 12px;

    margin: 30px 0;
}

.experience-source-grid > div {
    min-height: 145px;

    padding: 22px;

    border: 1px solid var(--border);
    border-radius: 16px;

    background: #fafbfc;
}

.experience-source-grid span {
    color: var(--accent);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: .11em;
}

.experience-source-grid p {
    margin-top: 18px;

    color: #475467;

    font-size: 13px;
    line-height: 1.6;
}


/* PROJECT */

.project-example {
    margin-top: 30px;

    padding: 27px;

    border: 1px solid #e1e5ff;
    border-radius: 19px;

    background:
        linear-gradient(
            135deg,
            #fafbff,
            #f5f7ff
        );
}

.project-example-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    gap: 20px;
}

.project-example-top span {
    color: var(--accent);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: .11em;
}

.project-example-top h3 {
    margin: 9px 0 0;

    font-size: 19px;
}

.project-example-top small {
    color: #98a2b3;

    font-size: 11px;
}

.project-example > p {
    margin-top: 18px;

    color: #475467;

    font-size: 14px;
    line-height: 1.7;
}


/* FIRST JOB SKILLS */

.skills-first-job {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 12px;

    margin: 30px 0;
}

.skills-first-job > div {
    padding: 22px;

    border: 1px solid var(--border);
    border-radius: 17px;

    background: #fafbfc;
}

.skills-first-job > div > span {
    color: var(--accent);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: .11em;
}


/* FULL RESUME EXAMPLE */

.first-resume-example {
    margin-top: 32px;

    padding: 42px;

    border: 1px solid var(--border);
    border-radius: 8px;

    background: white;

    box-shadow:
        0 20px 55px rgba(20, 30, 55, .08);
}

.first-resume-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    gap: 25px;

    padding-bottom: 27px;

    border-bottom: 2px solid #111827;
}

.first-resume-header h3 {
    margin: 0;

    font-size: 26px;
}

.first-resume-header p {
    margin-top: 5px;

    color: var(--text-secondary);

    font-size: 13px;
}

.first-resume-header > span {
    color: var(--text-secondary);

    font-size: 11px;
}


.first-resume-section {
    padding: 25px 0;

    border-bottom: 1px solid var(--border);
}

.first-resume-section:last-child {
    border-bottom: 0;
}

.first-resume-section > span {
    display: block;

    margin-bottom: 12px;

    color: var(--accent);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: .13em;
}

.first-resume-section > strong {
    display: block;

    font-size: 14px;
}

.first-resume-section > p {
    margin-top: 7px;

    color: #475467;

    font-size: 13px;
    line-height: 1.7;
}


/* MOBILE */

@media (max-width: 700px) {

    .first-resume-structure,
    .experience-source-grid,
    .skills-first-job {
        grid-template-columns: 1fr;
    }

    .first-resume-example {
        padding: 25px;
    }

    .first-resume-header {
        flex-direction: column;
    }

}

/* ========================================
   RESUME LENGTH ARTICLE
======================================== */


/* 1 OR 2 PAGES */

.resume-length-answer {
    display: grid;

    grid-template-columns: 1fr 55px 1fr;

    align-items: center;

    gap: 15px;

    margin: 35px 0;
}

.resume-length-answer > div:not(.resume-length-or) {
    min-height: 245px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    padding: 30px;

    border: 1px solid var(--border);
    border-radius: 20px;

    background: #fafbfc;

    text-align: center;
}

.resume-length-answer > div:last-child {
    background: #f6f7ff;
}

.resume-length-answer strong {
    color: var(--accent);

    font-size: 68px;
    line-height: 1;
    letter-spacing: -.06em;
}

.resume-length-answer span {
    margin-top: 6px;

    color: #98a2b3;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: .15em;
}

.resume-length-answer p {
    max-width: 230px;

    margin-top: 20px;

    color: #667085;

    font-size: 13px;
    line-height: 1.6;
}

.resume-length-or {
    color: #98a2b3;

    text-align: center;

    font-size: 10px;
    font-weight: 800;
}


/* USE CASES */

.length-use-cases {
    margin-top: 32px;

    border-top: 1px solid var(--border);
}

.length-use-cases > div {
    display: grid;

    grid-template-columns: 42px 1fr;

    gap: 17px;

    padding: 22px 0;

    border-bottom: 1px solid var(--border);
}

.length-use-cases > div > span {
    width: 32px;
    height: 32px;

    display: grid;
    place-items: center;

    border-radius: 9px;

    background: #eef0ff;
    color: var(--accent);

    font-size: 9px;
    font-weight: 800;
}

.length-use-cases strong {
    display: block;

    font-size: 15px;
}

.length-use-cases p {
    margin-top: 5px;

    color: var(--text-secondary);

    font-size: 13px;
    line-height: 1.6;
}


/* TWO PAGE VISUAL */

.two-page-visual {
    display: grid;

    grid-template-columns: 1fr 45px 1fr;

    align-items: center;

    gap: 15px;

    margin: 35px 0;
}

.resume-page-mini {
    min-height: 300px;

    padding: 27px;

    border: 1px solid #e2e5eb;
    border-radius: 8px;

    background: white;

    box-shadow:
        0 15px 40px rgba(20, 30, 55, .07);
}

.resume-page-mini > span {
    color: var(--accent);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: .12em;
}

.resume-page-mini > strong {
    display: block;

    margin: 35px 0 22px;

    font-size: 15px;
    line-height: 1.4;
}

.resume-page-mini > div {
    width: 100%;
    height: 7px;

    margin-top: 12px;

    border-radius: 10px;

    background: #e9ecf1;
}

.resume-page-mini > .short-line {
    width: 62%;
}

.resume-page-arrow {
    color: var(--accent);

    text-align: center;

    font-size: 20px;
}


/* WARNING LIST */

.resume-warning-list {
    margin-top: 30px;

    border-top: 1px solid var(--border);
}

.resume-warning-list > div {
    display: grid;

    grid-template-columns: 32px 1fr;

    gap: 15px;

    padding: 22px 0;

    border-bottom: 1px solid var(--border);
}

.resume-warning-list > div > span {
    width: 26px;
    height: 26px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: #fff7e8;
    color: #d68a1f;

    font-size: 12px;
    font-weight: 800;
}

.resume-warning-list strong {
    display: block;

    font-size: 15px;
}

.resume-warning-list p {
    margin-top: 6px;

    color: var(--text-secondary);

    font-size: 13px;
    line-height: 1.6;
}


/* SHORTEN STEPS */

.shorten-steps {
    margin: 30px 0;

    border-top: 1px solid var(--border);
}

.shorten-steps > div {
    display: grid;

    grid-template-columns: 48px 1fr;

    gap: 17px;

    padding: 23px 0;

    border-bottom: 1px solid var(--border);
}

.shorten-steps > div > span {
    color: var(--accent);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: .08em;
}

.shorten-steps strong {
    display: block;

    font-size: 15px;
}

.shorten-steps p {
    margin-top: 6px;

    color: var(--text-secondary);

    font-size: 13px;
    line-height: 1.6;
}


/* MOBILE */

@media (max-width: 700px) {

    .resume-length-answer,
    .two-page-visual {
        grid-template-columns: 1fr;
    }

    .resume-length-or {
        padding: 4px 0;
    }

    .resume-page-arrow {
        transform: rotate(90deg);
    }

    .resume-page-mini {
        min-height: 260px;
    }

}

/* ========================================
   RESUME KEYWORDS ARTICLE
======================================== */


/* FLOW */

.keyword-flow {
    display: grid;

    grid-template-columns:
        1fr 35px
        1fr 35px
        1fr;

    align-items: center;

    gap: 10px;

    margin: 35px 0;
}

.keyword-flow > div:not(.keyword-flow-arrow) {
    min-height: 130px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 22px;

    border: 1px solid var(--border);
    border-radius: 17px;

    background: #fafbfc;

    text-align: center;
}

.keyword-flow > div:last-child {
    background: #f6f7ff;
}

.keyword-flow span {
    color: var(--accent);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: .12em;
}

.keyword-flow strong {
    margin-top: 10px;

    font-size: 14px;
}

.keyword-flow-arrow {
    color: var(--accent);

    text-align: center;

    font-size: 19px;
}


/* FINDER */

.keyword-finder-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 12px;

    margin-top: 30px;
}

.keyword-finder-grid > div {
    padding: 23px;

    border: 1px solid var(--border);
    border-radius: 17px;

    background: #fafbfc;
}

.keyword-finder-grid span {
    color: var(--accent);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: .11em;
}

.keyword-finder-grid strong {
    display: block;

    margin-top: 18px;

    font-size: 16px;
}

.keyword-finder-grid p {
    margin-top: 7px;

    color: var(--text-secondary);

    font-size: 13px;
    line-height: 1.6;
}


/* JOB DESCRIPTION */

.job-description-example {
    margin: 30px 0;

    padding: 28px;

    border: 1px solid #e1e5ff;
    border-radius: 19px;

    background:
        linear-gradient(
            135deg,
            #fafbff,
            #f5f7ff
        );
}

.job-description-example > span {
    color: var(--accent);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: .12em;
}

.job-description-example > p {
    margin-top: 18px;

    color: #344054;

    font-size: 15px;
    line-height: 1.75;
}

.keyword-highlight-row {
    display: flex;
    flex-wrap: wrap;

    gap: 8px;

    margin-top: 24px;
    padding-top: 22px;

    border-top: 1px solid #e1e5ff;
}

.keyword-highlight-row span {
    padding: 8px 11px;

    border: 1px solid #dce1ff;
    border-radius: 30px;

    background: white;

    color: var(--accent);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 0;
}


/* LOCATIONS */

.keyword-location-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 12px;

    margin: 30px 0;
}

.keyword-location-grid > div {
    min-height: 155px;

    padding: 22px;

    border: 1px solid var(--border);
    border-radius: 17px;

    background: #fafbfc;
}

.keyword-location-grid > div > span {
    color: var(--accent);

    font-size: 9px;
    font-weight: 800;
}

.keyword-location-grid strong {
    display: block;

    margin-top: 20px;

    font-size: 15px;
}

.keyword-location-grid p {
    margin-top: 7px;

    color: var(--text-secondary);

    font-size: 12px;
    line-height: 1.6;
}


/* STUFFING */

.keyword-stuffing-example {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 13px;

    margin: 30px 0;
}

.keyword-stuffing-example > div {
    padding: 24px;

    border: 1px solid var(--border);
    border-radius: 17px;

    background: #fafbfc;
}

.keyword-stuffing-example > div:first-child {
    border-color: #f0dddd;

    background: #fffafa;
}

.keyword-stuffing-example > div:last-child {
    border-color: #dfe4ff;

    background: #f7f8ff;
}

.keyword-stuffing-example span {
    color: #98a2b3;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: .11em;
}

.keyword-stuffing-example > div:last-child span {
    color: var(--accent);
}

.keyword-stuffing-example p {
    margin-top: 15px;

    color: #475467;

    font-size: 13px;
    line-height: 1.7;
}


/* MOBILE */

@media (max-width: 700px) {

    .keyword-flow {
        grid-template-columns: 1fr;
    }

    .keyword-flow-arrow {
        transform: rotate(90deg);
    }

    .keyword-finder-grid,
    .keyword-location-grid,
    .keyword-stuffing-example {
        grid-template-columns: 1fr;
    }

}

/* ========================================
   RESUME VS CV ARTICLE
======================================== */


/* RESUME VS CV */

.resume-cv-split {
    display: grid;

    grid-template-columns: 1fr 55px 1fr;

    align-items: center;

    gap: 15px;

    margin: 35px 0;
}

.resume-cv-split > div:not(.resume-cv-vs) {
    min-height: 240px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 30px;

    border: 1px solid var(--border);
    border-radius: 20px;

    background: #fafbfc;
}

.resume-cv-split > div:last-child {
    background: #f6f7ff;
}

.resume-cv-label {
    color: var(--accent);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: .14em;
}

.resume-cv-split strong {
    margin-top: 25px;

    font-size: 25px;
    letter-spacing: -.03em;
}

.resume-cv-split p {
    margin-top: 10px;

    color: var(--text-secondary);

    font-size: 13px;
    line-height: 1.65;
}

.resume-cv-vs {
    color: #98a2b3;

    text-align: center;

    font-size: 10px;
    font-weight: 800;
}


/* CV CONTENT */

.cv-content-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 11px;

    margin-top: 30px;
}

.cv-content-grid > div {
    display: flex;
    align-items: center;

    gap: 14px;

    padding: 18px;

    border: 1px solid var(--border);
    border-radius: 14px;

    background: #fafbfc;
}

.cv-content-grid span {
    color: var(--accent);

    font-size: 9px;
    font-weight: 800;
}

.cv-content-grid strong {
    font-size: 13px;
}


/* COMPARISON TABLE */

.resume-cv-table {
    margin-top: 32px;

    overflow: hidden;

    border: 1px solid var(--border);
    border-radius: 18px;
}

.resume-cv-table > div {
    display: grid;

    grid-template-columns: .65fr 1fr 1fr;

    gap: 20px;

    padding: 20px 22px;

    border-bottom: 1px solid var(--border);
}

.resume-cv-table > div:last-child {
    border-bottom: 0;
}

.resume-cv-table-head {
    background: #f6f7ff;
}

.resume-cv-table-head strong {
    color: var(--accent);
}

.resume-cv-table > div > strong {
    font-size: 12px;
}

.resume-cv-table > div > span {
    color: #667085;

    font-size: 12px;
    line-height: 1.55;
}


/* COUNTRY DIFFERENCES */

.cv-country-grid {
    display: grid;

    gap: 12px;

    margin: 30px 0;
}

.cv-country-grid > div {
    padding: 24px;

    border: 1px solid var(--border);
    border-radius: 17px;

    background: #fafbfc;
}

.cv-country-grid span {
    color: var(--accent);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: .11em;
}

.cv-country-grid strong {
    display: block;

    margin-top: 16px;

    font-size: 16px;
}

.cv-country-grid p {
    margin-top: 7px;

    color: var(--text-secondary);

    font-size: 13px;
    line-height: 1.65;
}


/* DOCUMENT CHOICE */

.document-choice {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 12px;

    margin-top: 32px;
}

.document-choice > div {
    min-height: 265px;

    display: flex;
    flex-direction: column;

    padding: 22px;

    border: 1px solid var(--border);
    border-radius: 18px;

    background: #fafbfc;
}

.document-choice > div > span {
    color: #98a2b3;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: .1em;
}

.document-choice strong {
    margin-top: 20px;

    font-size: 16px;
    line-height: 1.35;
}

.document-choice p {
    margin-top: 9px;

    color: var(--text-secondary);

    font-size: 12px;
    line-height: 1.6;
}

.document-result {
    margin-top: auto;
    padding-top: 25px;

    color: var(--accent);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: .1em;
}


/* CONVERSION STEPS */

.convert-steps {
    margin: 30px 0;

    border-top: 1px solid var(--border);
}

.convert-steps > div {
    display: grid;

    grid-template-columns: 45px 1fr;

    gap: 16px;

    padding: 22px 0;

    border-bottom: 1px solid var(--border);
}

.convert-steps > div > span {
    color: var(--accent);

    font-size: 10px;
    font-weight: 800;
}

.convert-steps strong {
    display: block;

    font-size: 15px;
}

.convert-steps p {
    margin-top: 5px;

    color: var(--text-secondary);

    font-size: 13px;
    line-height: 1.6;
}


/* MOBILE */

@media (max-width: 700px) {

    .resume-cv-split {
        grid-template-columns: 1fr;
    }

    .cv-content-grid {
        grid-template-columns: 1fr;
    }

    .resume-cv-table {
        overflow-x: auto;
    }

    .resume-cv-table > div {
        min-width: 620px;
    }

    .document-choice {
        grid-template-columns: 1fr;
    }

}

/* ========================================
   LEGAL PAGES
======================================== */

.legal-hero {
    position: relative;

    padding: 85px 0 75px;

    overflow: hidden;

    border-bottom: 1px solid var(--border);

    background:
        radial-gradient(
            circle at 85% 10%,
            rgba(80, 104, 242, .09),
            transparent 30%
        ),
        linear-gradient(
            180deg,
            #ffffff,
            #f8f9fc
        );
}

.legal-hero-inner {
    max-width: 850px;
}

.legal-hero h1 {
    margin: 15px 0 20px;

    color: var(--text);

    font-size: clamp(46px, 6vw, 70px);
    line-height: 1;
    letter-spacing: -.055em;
}

.legal-hero-inner > p {
    max-width: 700px;

    color: var(--text-secondary);

    font-size: 18px;
    line-height: 1.7;
}

.legal-updated {
    display: inline-flex;

    margin-top: 25px;
    padding: 8px 12px;

    border: 1px solid var(--border);
    border-radius: 30px;

    background: white;

    color: #667085;

    font-size: 11px;
}


/* LAYOUT */

.legal-section {
    padding: 80px 0 110px;
}

.legal-layout {
    display: grid;

    grid-template-columns: 220px minmax(0, 760px);

    justify-content: center;

    gap: 70px;
}


/* SIDEBAR */

.legal-sidebar {
    position: sticky;

    top: 110px;

    align-self: start;

    display: flex;
    flex-direction: column;

    padding: 22px;

    border: 1px solid var(--border);
    border-radius: 17px;

    background: #fafbfc;
}

.legal-sidebar > span {
    margin-bottom: 14px;

    color: #98a2b3;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: .12em;
}

.legal-sidebar a {
    padding: 7px 0;

    color: #667085;

    font-size: 12px;

    text-decoration: none;

    transition: .2s ease;
}

.legal-sidebar a:hover {
    color: var(--accent);
}


/* CONTENT */

.legal-content section {
    margin-bottom: 55px;

    scroll-margin-top: 110px;
}

.legal-content h2 {
    margin: 0 0 18px;

    color: var(--text);

    font-size: 27px;
    line-height: 1.25;
    letter-spacing: -.025em;
}

.legal-content p {
    margin: 0 0 16px;

    color: #475467;

    font-size: 15px;
    line-height: 1.8;
}

.legal-content ul {
    margin: 22px 0;
    padding-left: 22px;
}

.legal-content li {
    margin: 10px 0;

    padding-left: 5px;

    color: #475467;

    font-size: 14px;
    line-height: 1.7;
}

.legal-content a {
    color: var(--accent);

    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}


/* NOTE */

.legal-note {
    margin: 25px 0;

    padding: 22px 24px;

    border: 1px solid #dfe4ff;
    border-radius: 15px;

    background: #f7f8ff;
}

.legal-note strong {
    display: block;

    margin-bottom: 7px;

    color: #344054;

    font-size: 14px;
}

.legal-note p {
    margin: 0;

    font-size: 13px;
}


/* SERVICES */

.legal-service-list {
    margin-top: 25px;

    border-top: 1px solid var(--border);
}

.legal-service-list > div {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 30px;

    padding: 18px 0;

    border-bottom: 1px solid var(--border);
}

.legal-service-list strong {
    color: #344054;

    font-size: 13px;
}

.legal-service-list span {
    color: #667085;

    font-size: 12px;

    text-align: right;
}


/* CONTACT */

.legal-contact {
    margin-top: 25px;

    padding: 24px;

    border: 1px solid var(--border);
    border-radius: 16px;

    background: #fafbfc;
}

.legal-contact strong {
    display: block;

    margin-bottom: 7px;

    font-size: 16px;
}

.legal-contact p {
    margin: 0;

    font-size: 13px;
}


/* MOBILE */

@media (max-width: 900px) {

    .legal-layout {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .legal-sidebar {
        position: static;

        display: none;
    }

}


@media (max-width: 600px) {

    .legal-hero {
        padding: 60px 0 55px;
    }

    .legal-hero h1 {
        font-size: 44px;
    }

    .legal-hero-inner > p {
        font-size: 16px;
    }

    .legal-section {
        padding: 55px 0 80px;
    }

    .legal-content h2 {
        font-size: 23px;
    }

    .legal-service-list > div {
        align-items: flex-start;
        flex-direction: column;

        gap: 5px;
    }

    .legal-service-list span {
        text-align: left;
    }

}