* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    background: #f8fafc;
    color: #0f172a;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
}


/* ========================================
   CONTAINER
======================================== */

.container {
    width: min(1160px, calc(100% - 48px));
    margin: 0 auto;
}


/* ========================================
   NAVBAR
======================================== */

.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;

    width: 100%;

    background: rgba(248, 250, 252, 0.82);

    border-bottom: 1px solid rgba(226, 232, 240, 0.8);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}


.navbar-inner {
    min-height: 78px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 40px;
}


/* ========================================
   LOGO
======================================== */

.logo {
    display: inline-flex;
    align-items: center;

    font-size: 21px;
    font-weight: 700;

    letter-spacing: -0.7px;

    color: #0f172a;

    transition: opacity 0.2s ease;
}

.logo:hover {
    opacity: 0.7;
}


/* ========================================
   DESKTOP NAVIGATION
======================================== */

.nav-links {
    display: flex;
    align-items: center;

    gap: 34px;

    margin-left: auto;
}


.nav-links a {
    position: relative;

    font-size: 14px;
    font-weight: 500;

    color: #64748b;

    transition:
        color 0.2s ease;
}


.nav-links a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -8px;

    width: 100%;
    height: 1px;

    background: #0f172a;

    transform: scaleX(0);
    transform-origin: center;

    transition:
        transform 0.2s ease;
}


.nav-links a:hover {
    color: #0f172a;
}


.nav-links a:hover::after {
    transform: scaleX(1);
}


/* ========================================
   NAV ACTIONS
======================================== */

.nav-actions {
    display: flex;
    align-items: center;

    gap: 18px;
}


.login-link {
    padding: 9px 4px;

    font-size: 14px;
    font-weight: 500;

    color: #475569;

    transition:
        color 0.2s ease;
}


.login-link:hover {
    color: #0f172a;
}


/* ========================================
   PRIMARY CTA
======================================== */

.nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 42px;

    padding: 0 19px;

    border-radius: 9px;

    background: #0f172a;
    color: #ffffff;

    box-shadow:
        0 1px 2px rgba(15, 23, 42, 0.12),
        0 4px 10px rgba(15, 23, 42, 0.08);

    font-size: 13px;
    font-weight: 600;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}


.nav-cta:hover {
    background: #1e293b;

    transform: translateY(-1px);

    box-shadow:
        0 2px 4px rgba(15, 23, 42, 0.14),
        0 8px 18px rgba(15, 23, 42, 0.12);
}


.nav-cta:active {
    transform: translateY(0);
}


/* ========================================
   MOBILE MENU BUTTON
======================================== */

.mobile-menu-button {
    display: none;

    width: 42px;
    height: 42px;

    border: 1px solid #e2e8f0;
    border-radius: 10px;

    background: rgba(255, 255, 255, 0.8);

    cursor: pointer;

    align-items: center;
    justify-content: center;

    flex-direction: column;

    gap: 5px;

    transition:
        background 0.2s ease,
        border-color 0.2s ease;
}


.mobile-menu-button:hover {
    background: #ffffff;
    border-color: #cbd5e1;
}


.mobile-menu-button span {
    width: 18px;
    height: 2px;

    border-radius: 999px;

    background: #0f172a;

    transition:
        transform 0.25s ease,
        opacity 0.2s ease;
}


/* ========================================
   MOBILE MENU
======================================== */

.mobile-menu {
    display: none;

    background: rgba(255, 255, 255, 0.96);

    border-top: 1px solid #e2e8f0;

    padding: 18px 24px 24px;

    box-shadow:
        0 12px 30px rgba(15, 23, 42, 0.06);
}


.mobile-menu > a {
    display: block;

    padding: 13px 0;

    font-size: 15px;
    font-weight: 500;

    color: #475569;

    transition:
        color 0.2s ease;
}


.mobile-menu > a:hover {
    color: #0f172a;
}


.mobile-menu-actions {
    display: grid;

    gap: 10px;

    margin-top: 12px;
    padding-top: 18px;

    border-top: 1px solid #e2e8f0;
}


.mobile-login,
.mobile-cta {
    min-height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 9px;

    font-size: 14px;
    font-weight: 600;
}


.mobile-login {
    border: 1px solid #e2e8f0;

    background: #ffffff;

    color: #0f172a;
}


.mobile-cta {
    background: #0f172a;

    color: #ffffff;

    box-shadow:
        0 4px 12px rgba(15, 23, 42, 0.12);
}


/* ========================================
   MOBILE MENU ANIMATION
======================================== */

.mobile-menu.active {
    display: block;
}


.mobile-menu-button.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}


.mobile-menu-button.active span:nth-child(2) {
    opacity: 0;
}


.mobile-menu-button.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}


/* ========================================
   TEMPORARY CONTENT
======================================== */

.temporary-section {
    min-height: 650px;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    background:
        radial-gradient(
            circle at 50% 20%,
            rgba(37, 99, 235, 0.06),
            transparent 38%
        );
}


.temporary-section h1 {
    font-size: clamp(40px, 6vw, 64px);

    line-height: 1.05;

    letter-spacing: -2.5px;

    font-weight: 700;
}


.temporary-section p {
    max-width: 600px;

    margin: 16px auto 0;

    color: #64748b;

    font-size: 18px;
}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 850px) {

    .container {
        width: min(100% - 32px, 680px);
    }

    .navbar-inner {
        min-height: 70px;
    }

    .nav-links,
    .nav-actions {
        display: none;
    }

    .mobile-menu-button {
        display: flex;
    }

    .temporary-section {
        min-height: 550px;
    }

    .temporary-section h1 {
        letter-spacing: -1.5px;
    }

    .temporary-section p {
        font-size: 16px;
    }
}


/* ========================================
   SMALL MOBILE
======================================== */

@media (max-width: 480px) {

    .container {
        width: calc(100% - 28px);
    }

    .logo {
        font-size: 20px;
    }

    .mobile-menu {
        padding-left: 18px;
        padding-right: 18px;
    }
}

/* ========================================
   HERO
======================================== */

.hero {
    position: relative;
    overflow: hidden;

    padding: 110px 0 130px;

    background: #f8fafc;
}


.hero::before {
    content: "";

    position: absolute;

    width: 700px;
    height: 700px;

    top: -350px;
    right: -250px;

    background: rgba(37, 99, 235, 0.055);

    border-radius: 50%;

    filter: blur(20px);

    pointer-events: none;
}


.hero-container {
    position: relative;
    z-index: 1;

    display: grid;

    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);

    align-items: center;

    gap: 80px;
}


/* ========================================
   HERO CONTENT
======================================== */

.hero-content {
    max-width: 570px;
}


.hero-eyebrow {
    display: inline-flex;
    align-items: center;

    gap: 9px;

    padding: 7px 12px;

    border: 1px solid #e2e8f0;

    border-radius: 999px;

    background: rgba(255, 255, 255, 0.75);

    color: #475569;

    font-size: 12px;
    font-weight: 600;
}


.hero-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #2563eb;

    box-shadow:
        0 0 0 4px rgba(37, 99, 235, 0.08);
}


.hero h1 {
    margin-top: 24px;

    max-width: 650px;

    font-size: clamp(42px, 5vw, 64px);

    line-height: 1.04;

    letter-spacing: -3px;

    font-weight: 700;

    color: #0f172a;
}


.hero-description {
    max-width: 520px;

    margin-top: 24px;

    color: #64748b;

    font-size: 18px;

    line-height: 1.7;
}


.hero-actions {
    display: flex;
    align-items: center;

    gap: 12px;

    margin-top: 32px;
}


.hero-primary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 12px;

    min-height: 50px;

    padding: 0 20px;

    border-radius: 9px;

    background: #0f172a;

    color: #ffffff;

    font-size: 14px;
    font-weight: 600;

    box-shadow:
        0 4px 12px rgba(15, 23, 42, 0.12);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}


.hero-primary-button span {
    font-size: 18px;

    transition:
        transform 0.2s ease;
}


.hero-primary-button:hover {
    background: #1e293b;

    transform: translateY(-2px);

    box-shadow:
        0 8px 20px rgba(15, 23, 42, 0.16);
}


.hero-primary-button:hover span {
    transform: translateX(3px);
}


.hero-secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 50px;

    padding: 0 18px;

    border: 1px solid #e2e8f0;

    border-radius: 9px;

    background: rgba(255, 255, 255, 0.7);

    color: #334155;

    font-size: 14px;
    font-weight: 600;

    transition:
        border-color 0.2s ease,
        background 0.2s ease;
}


.hero-secondary-button:hover {
    border-color: #cbd5e1;

    background: #ffffff;
}


.hero-note {
    margin-top: 14px;

    color: #94a3b8;

    font-size: 12px;
}


/* ========================================
   RESUME VISUAL
======================================== */

.hero-visual {
    position: relative;

    min-height: 520px;

    display: flex;

    align-items: center;
    justify-content: center;
}


.resume-window {
    width: min(100%, 520px);

    background: #ffffff;

    border: 1px solid #e2e8f0;

    border-radius: 14px;

    overflow: hidden;

    box-shadow:
        0 20px 50px rgba(15, 23, 42, 0.08),
        0 4px 12px rgba(15, 23, 42, 0.04);

    transform: rotate(1deg);

    transition:
        transform 0.3s ease;
}


.resume-window:hover {
    transform: rotate(0deg) translateY(-4px);
}


.resume-window-top {
    height: 42px;

    display: flex;
    align-items: center;

    gap: 16px;

    padding: 0 15px;

    background: #f8fafc;

    border-bottom: 1px solid #e2e8f0;
}


.window-dots {
    display: flex;
    gap: 5px;
}


.window-dots span {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #cbd5e1;
}


.resume-url {
    flex: 1;

    padding: 5px 10px;

    border-radius: 5px;

    background: #ffffff;

    color: #94a3b8;

    font-size: 9px;

    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}


.resume-preview {
    padding: 38px 42px 44px;

    min-height: 475px;
}


.resume-header {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;
}


.resume-name {
    font-size: 24px;

    font-weight: 700;

    letter-spacing: -0.8px;

    color: #0f172a;
}


.resume-role {
    margin-top: 3px;

    font-size: 12px;

    color: #64748b;
}


.resume-avatar {
    width: 46px;
    height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #f1f5f9;

    color: #475569;

    font-size: 12px;

    font-weight: 700;
}


.resume-contact {
    margin-top: 14px;

    color: #94a3b8;

    font-size: 9px;
}


.resume-divider {
    height: 1px;

    background: #e2e8f0;

    margin: 24px 0;
}


.resume-section {
    margin-top: 22px;
}


.resume-section-title {
    margin-bottom: 10px;

    color: #64748b;

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 1.2px;
}


.resume-line {
    width: 80%;
    height: 6px;

    margin-top: 7px;

    border-radius: 4px;

    background: #f1f5f9;
}


.resume-line.large {
    width: 92%;
}


.resume-line.medium {
    width: 70%;
}


.resume-line.short {
    width: 52%;
}


.resume-skills {
    display: flex;
    flex-wrap: wrap;

    gap: 6px;
}


.resume-skills span {
    padding: 5px 8px;

    border-radius: 5px;

    background: #f1f5f9;

    color: #64748b;

    font-size: 8px;
}


/* ========================================
   FLOATING CARD
======================================== */

.hero-floating-card {
    position: absolute;

    right: -5px;
    bottom: 45px;

    display: flex;
    align-items: center;

    gap: 10px;

    padding: 12px 15px;

    border: 1px solid #e2e8f0;

    border-radius: 10px;

    background: rgba(255, 255, 255, 0.94);

    box-shadow:
        0 12px 30px rgba(15, 23, 42, 0.1);

    backdrop-filter: blur(10px);
}


.floating-icon {
    width: 28px;
    height: 28px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #eff6ff;

    color: #2563eb;

    font-size: 13px;

    font-weight: 700;
}


.hero-floating-card strong {
    display: block;

    color: #0f172a;

    font-size: 11px;
}


.hero-floating-card span {
    display: block;

    margin-top: 1px;

    color: #94a3b8;

    font-size: 9px;
}


/* ========================================
   HERO RESPONSIVE
======================================== */

@media (max-width: 900px) {

    .hero {
        padding: 80px 0 90px;
    }


    .hero-container {
        grid-template-columns: 1fr;

        gap: 55px;
    }


    .hero-content {
        max-width: 700px;

        margin: 0 auto;

        text-align: center;
    }


    .hero-eyebrow {
        margin: 0 auto;
    }


    .hero h1 {
        margin-left: auto;
        margin-right: auto;
    }


    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }


    .hero-actions {
        justify-content: center;
    }


    .hero-note {
        text-align: center;
    }


    .hero-visual {
        min-height: auto;
    }


    .hero-floating-card {
        right: 4%;
    }
}


@media (max-width: 600px) {

    .hero {
        padding: 65px 0 75px;
    }


    .hero h1 {
        font-size: 40px;

        letter-spacing: -2px;
    }


    .hero-description {
        font-size: 16px;

        line-height: 1.65;
    }


    .hero-actions {
        flex-direction: column;

        width: 100%;
    }


    .hero-primary-button,
    .hero-secondary-button {
        width: 100%;
    }


    .hero-visual {
        width: 100%;
    }


    .resume-window {
        width: 100%;

        transform: none;
    }


    .resume-window:hover {
        transform: none;
    }


    .resume-preview {
        padding: 28px 25px 35px;
    }


    .resume-name {
        font-size: 20px;
    }


    .hero-floating-card {
        position: relative;

        right: auto;
        bottom: auto;

        width: fit-content;

        margin: -25px auto 0;
    }
}

/* ========================================
   SHARESUME COLOR ACCENTS
======================================== */

/* Hero background glow */

.hero::after {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    left: -250px;
    bottom: -300px;

    border-radius: 50%;

    background: rgba(37, 99, 235, 0.045);

    filter: blur(30px);

    pointer-events: none;
}


/* Eyebrow */

.hero-eyebrow {
    background: rgba(239, 246, 255, 0.75);

    border-color: #dbeafe;

    color: #1d4ed8;
}


.hero-dot {
    background: #2563eb;

    box-shadow:
        0 0 0 4px rgba(37, 99, 235, 0.10);
}


/* Primary button */

.hero-primary-button {
    background: #2563eb;

    box-shadow:
        0 4px 14px rgba(37, 99, 235, 0.18);
}


.hero-primary-button:hover {
    background: #1d4ed8;

    box-shadow:
        0 8px 22px rgba(37, 99, 235, 0.22);
}


/* Resume browser bar */

.resume-window-top {
    background: #f8fafc;
}


/* Resume accent */

.resume-role {
    color: #2563eb;
}


/* Resume avatar */

.resume-avatar {
    background: #eff6ff;

    color: #2563eb;
}


/* Resume section titles */

.resume-section-title {
    color: #2563eb;
}


/* Skill pills */

.resume-skills span {
    background: #eff6ff;

    color: #1d4ed8;
}


/* Floating card */

.floating-icon {
    background: #eff6ff;

    color: #2563eb;
}


/* Floating card subtle accent */

.hero-floating-card {
    box-shadow:
        0 12px 30px rgba(15, 23, 42, 0.08),
        0 0 0 1px rgba(37, 99, 235, 0.025);
}

/* ========================================
   DYNAMIC RESUME TRANSITION
======================================== */

.resume-name,
.resume-role,
.resume-avatar,
.resume-contact {
    transition:
        opacity 0.35s ease;
}
/* ========================================
   PROBLEM SECTION
======================================== */

.problem-section {
    padding: 120px 0;

    background: #ffffff;

    border-top: 1px solid #e2e8f0;
}


.problem-container {
    display: grid;

    grid-template-columns: 0.9fr 1.1fr;

    align-items: center;

    gap: 90px;
}


.problem-heading {
    max-width: 520px;
}


.section-label {
    display: inline-flex;

    color: #2563eb;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 1.2px;
}


.problem-heading h2 {
    margin-top: 16px;

    color: #0f172a;

    font-size: clamp(32px, 4vw, 48px);

    line-height: 1.08;

    letter-spacing: -2px;
}


.problem-heading p {
    margin-top: 20px;

    max-width: 480px;

    color: #64748b;

    font-size: 16px;

    line-height: 1.75;
}


/* ========================================
   VERSION FILES
======================================== */

.version-area {
    position: relative;

    padding: 35px;

    border: 1px solid #e2e8f0;

    border-radius: 16px;

    background: #f8fafc;

    box-shadow:
        0 15px 40px rgba(15, 23, 42, 0.05);
}


.version-files {
    display: flex;

    flex-direction: column;

    gap: 9px;
}


.version-file {
    display: flex;

    align-items: center;

    gap: 12px;

    padding: 13px 15px;

    border: 1px solid #e2e8f0;

    border-radius: 9px;

    background: #ffffff;

    color: #475569;

    font-size: 13px;

    box-shadow:
        0 2px 5px rgba(15, 23, 42, 0.025);
}


.file-icon {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 28px;
    height: 28px;

    border-radius: 6px;

    background: #fef2f2;

    color: #dc2626;

    font-size: 8px;

    font-weight: 700;
}


.version-file.faded {
    opacity: 0.45;
}


/* ========================================
   ARROW
======================================== */

.problem-arrow {
    margin: 20px 0;

    text-align: center;

    color: #94a3b8;

    font-size: 22px;
}


/* ========================================
   SHARESUME ANSWER
======================================== */

.sharesume-answer {
    display: flex;

    align-items: center;

    gap: 13px;

    padding: 16px;

    border: 1px solid #dbeafe;

    border-radius: 10px;

    background: #eff6ff;
}


.answer-icon {
    flex-shrink: 0;

    width: 32px;
    height: 32px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #2563eb;

    color: #ffffff;

    font-size: 13px;

    font-weight: 700;
}


.sharesume-answer strong {
    display: block;

    color: #0f172a;

    font-size: 13px;
}


.sharesume-answer span {
    display: block;

    margin-top: 2px;

    color: #64748b;

    font-size: 11px;
}


/* ========================================
   PROBLEM RESPONSIVE
======================================== */

@media (max-width: 850px) {

    .problem-section {
        padding: 85px 0;
    }


    .problem-container {
        grid-template-columns: 1fr;

        gap: 45px;
    }


    .problem-heading {
        max-width: 650px;

        text-align: center;

        margin: 0 auto;
    }


    .problem-heading p {
        margin-left: auto;
        margin-right: auto;
    }


    .section-label {
        justify-content: center;
    }


    .version-area {
        max-width: 650px;

        width: 100%;

        margin: 0 auto;
    }
}


@media (max-width: 500px) {

    .problem-section {
        padding: 70px 0;
    }


    .version-area {
        padding: 20px;
    }


    .problem-heading h2 {
        letter-spacing: -1.3px;
    }


    .version-file {
        font-size: 11px;

        padding: 11px;
    }


    .sharesume-answer {
        align-items: flex-start;
    }
}
/* ========================================
   SHARESUME STORY DEMO
======================================== */

.story-demo {
    max-width: 900px;

    margin: 55px auto 0;
}


.story-step-label {
    margin-bottom: 16px;

    color: #2563eb;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1px;

    text-align: center;
}


/* ========================================
   MAIN VISUAL
======================================== */

.story-main {
    display: grid;

    grid-template-columns: 1fr 0.75fr;

    align-items: center;

    gap: 45px;

    padding: 45px;

    border: 1px solid #dbe3ef;

    border-radius: 18px;

    background: #f8fafc;

    box-shadow:
        0 25px 60px rgba(15, 23, 42, 0.08);
}


/* ========================================
   RESUME
======================================== */

.story-resume {
    padding: 32px;

    border: 1px solid #d7dee9;

    border-radius: 10px;

    background: #ffffff;

    box-shadow:
        0 12px 30px rgba(15, 23, 42, 0.08);
}


.story-resume-header {
    display: flex;

    align-items: center;

    justify-content: space-between;
}


.story-resume-header h3 {
    margin: 0;

    color: #0f172a;

    font-size: 25px;

    letter-spacing: -0.7px;
}


.story-resume-header span {
    display: block;

    margin-top: 5px;

    color: #2563eb;

    font-size: 13px;

    font-weight: 600;
}


.story-avatar {
    width: 48px;
    height: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #dbeafe;

    color: #1d4ed8;

    font-size: 13px;

    font-weight: 800;
}


.story-contact {
    margin-top: 13px;

    color: #64748b;

    font-size: 11px;
}


.story-section {
    margin-top: 30px;
}


.story-section strong {
    display: block;

    margin-bottom: 9px;

    color: #2563eb;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1px;
}


.story-section h4 {
    margin: 0;

    color: #1e293b;

    font-size: 13px;

    transition:
        color 0.3s ease,
        background 0.3s ease;
}


.story-section h4.mistake {
    display: inline-block;

    padding: 5px 7px;

    border-radius: 5px;

    background: #fee2e2;

    color: #dc2626;
}


.story-section h4.fixed {
    display: inline-block;

    padding: 5px 7px;

    border-radius: 5px;

    background: #dcfce7;

    color: #15803d;
}


.story-section p {
    margin: 7px 0 0;

    color: #64748b;

    font-size: 11px;

    line-height: 1.6;
}


.story-lines {
    margin-top: 12px;
}


.story-lines i {
    display: block;

    width: 90%;

    height: 5px;

    margin-top: 6px;

    border-radius: 4px;

    background: #e2e8f0;
}


.story-lines i:last-child {
    width: 70%;
}


.story-skills {
    display: flex;

    gap: 6px;
}


.story-skills span {
    padding: 5px 8px;

    border-radius: 5px;

    background: #eff6ff;

    color: #2563eb;

    font-size: 9px;

    font-weight: 600;
}


/* ========================================
   LINK
======================================== */

.story-link-area {
    width: 100%;
}


.story-link-label {
    margin-bottom: 9px;

    color: #475569;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 0.8px;
}


.story-link {
    display: flex;

    align-items: center;

    gap: 10px;

    padding: 13px;

    border: 2px solid #bfdbfe;

    border-radius: 9px;

    background: #ffffff;

    transition:
        border-color 0.4s ease,
        box-shadow 0.4s ease;
}


.story-link.highlight {
    border-color: #22c55e;

    box-shadow:
        0 0 0 5px rgba(34, 197, 94, 0.10);
}


.story-link span {
    flex: 1;

    color: #2563eb;

    font-size: 10px;

    font-weight: 600;

    word-break: break-all;
}


.story-link button {
    flex-shrink: 0;

    padding: 8px 11px;

    border: 0;

    border-radius: 6px;

    background: #2563eb;

    color: #ffffff;

    font-size: 9px;

    font-weight: 700;

    cursor: pointer;
}


.story-link button.copied {
    background: #16a34a;
}


.story-link-status {
    margin-top: 12px;

    color: #64748b;

    font-size: 11px;

    transition:
        color 0.3s ease;
}


.story-link-status.success {
    color: #15803d;

    font-weight: 700;
}


/* ========================================
   MESSAGE
======================================== */

.story-message {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    max-width: 600px;

    margin: 25px auto 0;

    padding: 14px 18px;

    border: 1px solid #dbe3ef;

    border-radius: 10px;

    background: #ffffff;

    box-shadow:
        0 8px 25px rgba(15, 23, 42, 0.05);

    transition:
        transform 0.3s ease,
        border-color 0.3s ease;
}


.story-message.changed {
    transform: scale(1.02);

    border-color: #93c5fd;
}


.story-message-icon {
    width: 30px;
    height: 30px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 50%;

    background: #dbeafe;

    color: #1d4ed8;

    font-size: 11px;

    font-weight: 800;
}


.story-message strong {
    display: block;

    color: #0f172a;

    font-size: 12px;
}


.story-message p {
    margin: 3px 0 0;

    color: #64748b;

    font-size: 10px;
}


/* ========================================
   PROGRESS
======================================== */

.story-progress {
    display: flex;

    align-items: center;

    justify-content: center;

    flex-wrap: wrap;

    gap: 22px;

    margin-top: 28px;
}


.story-progress-item {
    position: relative;

    color: #94a3b8;

    font-size: 10px;

    font-weight: 700;

    transition:
        color 0.3s ease;
}


.story-progress-item.active {
    color: #2563eb;
}


.story-progress-item:not(:last-child)::after {
    content: "";

    position: absolute;

    width: 14px;

    height: 1px;

    top: 50%;

    left: calc(100% + 5px);

    background: #dbe3ef;
}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 750px) {

    .story-main {
        grid-template-columns: 1fr;

        gap: 30px;

        padding: 25px;
    }


    .story-resume {
        padding: 25px;
    }


    .story-link-area {
        max-width: 500px;

        margin: 0 auto;
    }
}


@media (max-width: 500px) {

    .story-main {
        padding: 15px;
    }


    .story-resume {
        padding: 20px;
    }


    .story-resume-header h3 {
        font-size: 21px;
    }


    .story-link {
        align-items: stretch;

        flex-direction: column;
    }


    .story-link button {
        width: 100%;
    }


    .story-progress {
        gap: 12px;
    }


    .story-progress-item {
        font-size: 9px;
    }
}
/* ========================================
   FEATURES
======================================== */

.features-section {
    padding: 120px 0;

    background: #ffffff;

    border-top: 1px solid #e2e8f0;
}


.features-heading {
    max-width: 650px;

    margin: 0 auto;

    text-align: center;
}


.features-heading h2 {
    margin-top: 16px;

    color: #0f172a;

    font-size: clamp(34px, 4vw, 50px);

    line-height: 1.08;

    letter-spacing: -2px;
}


.features-heading p {
    max-width: 560px;

    margin: 20px auto 0;

    color: #64748b;

    font-size: 16px;

    line-height: 1.75;
}


/* ========================================
   FEATURE GRID
======================================== */

.features-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 18px;

    max-width: 1000px;

    margin: 60px auto 0;
}


.feature-card {
    position: relative;

    min-height: 300px;

    padding: 30px;

    overflow: hidden;

    border: 1px solid #e2e8f0;

    border-radius: 15px;

    background: #ffffff;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}


.feature-card:hover {
    transform: translateY(-4px);

    border-color: #dbeafe;

    box-shadow:
        0 18px 40px rgba(15, 23, 42, 0.07);
}


.feature-large,
.feature-wide {
    display: grid;

    grid-template-columns: 1fr;

    align-content: start;
}


.feature-icon {
    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background: #eff6ff;

    color: #2563eb;

    font-size: 17px;

    font-weight: 700;
}


.feature-card h3 {
    margin-top: 25px;

    color: #0f172a;

    font-size: 20px;

    letter-spacing: -0.4px;
}


.feature-card p {
    max-width: 430px;

    margin-top: 9px;

    color: #64748b;

    font-size: 13px;

    line-height: 1.7;
}


/* ========================================
   LINK VISUAL
======================================== */

.link-visual {
    display: flex;

    align-items: center;

    gap: 10px;

    margin-top: 30px;

    padding: 13px;

    border: 1px solid #dbeafe;

    border-radius: 8px;

    background: #eff6ff;
}


.link-visual span {
    flex: 1;

    overflow: hidden;

    color: #2563eb;

    font-size: 10px;

    font-weight: 600;

    white-space: nowrap;

    text-overflow: ellipsis;
}


.link-visual b {
    padding: 4px 6px;

    border-radius: 4px;

    background: #dcfce7;

    color: #15803d;

    font-size: 7px;
}


/* ========================================
   UPDATE VISUAL
======================================== */

.update-visual {
    display: flex;

    align-items: center;

    gap: 12px;

    margin-top: 30px;
}


.old-version,
.new-version {
    padding: 8px 11px;

    border-radius: 6px;

    font-size: 9px;

    font-weight: 700;
}


.old-version {
    background: #f1f5f9;

    color: #64748b;
}


.new-version {
    background: #dcfce7;

    color: #15803d;
}


.update-arrow {
    color: #94a3b8;

    font-size: 15px;
}


/* ========================================
   PDF VISUAL
======================================== */

.pdf-visual {
    display: flex;

    align-items: center;

    gap: 12px;

    margin-top: 30px;

    padding: 13px;

    border: 1px solid #e2e8f0;

    border-radius: 8px;

    background: #f8fafc;
}


.pdf-visual span {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 30px;
    height: 30px;

    border-radius: 6px;

    background: #fee2e2;

    color: #dc2626;

    font-size: 8px;

    font-weight: 800;
}


.pdf-visual strong {
    color: #334155;

    font-size: 10px;
}


/* ========================================
   CONTROL VISUAL
======================================== */

.control-visual {
    display: flex;

    align-items: center;

    gap: 14px;

    margin-top: 28px;

    padding: 15px;

    border: 1px solid #e2e8f0;

    border-radius: 8px;

    background: #f8fafc;
}


.control-visual > div {
    display: flex;

    flex-direction: column;

    gap: 4px;
}


.control-visual > div span {
    display: block;

    width: 25px;
    height: 4px;

    border-radius: 4px;

    background: #cbd5e1;
}


.control-visual > div span:nth-child(2) {
    width: 18px;
}


.control-visual > div span:nth-child(3) {
    width: 22px;
}


.control-visual strong {
    color: #334155;

    font-size: 10px;
}


.control-visual small {
    margin-left: auto;

    color: #16a34a;

    font-size: 8px;

    font-weight: 700;
}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 700px) {

    .features-section {
        padding: 85px 0;
    }


    .features-grid {
        grid-template-columns: 1fr;

        max-width: 600px;
    }


    .feature-card {
        min-height: auto;
    }
}


@media (max-width: 500px) {

    .features-section {
        padding: 70px 0;
    }


    .features-heading h2 {
        letter-spacing: -1.3px;
    }


    .link-visual span {
        font-size: 8px;
    }


    .control-visual small {
        display: none;
    }
}
/* ========================================
   PRICING
======================================== */

.pricing-section {
    padding: 110px 0;

    background: #f8fafc;

    border-top: 1px solid #e2e8f0;
}


/* ========================================
   HEADING
======================================== */

.pricing-heading {
    max-width: 700px;

    margin: 0 auto;

    text-align: center;
}


.pricing-heading h2 {
    margin-top: 16px;

    color: #0f172a;

    font-size: clamp(36px, 4vw, 52px);

    line-height: 1.05;

    letter-spacing: -2px;
}


.pricing-heading p {
    max-width: 600px;

    margin: 18px auto 0;

    color: #334155;

    font-size: 16px;

    line-height: 1.6;
}


/* ========================================
   GRID
======================================== */

.pricing-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;

    max-width: 1050px;

    margin: 55px auto 0;
}


/* ========================================
   CARD
======================================== */

.pricing-card {
    position: relative;

    padding: 32px;

    border: 1px solid #dbe3ef;

    border-radius: 16px;

    background: #ffffff;

    box-shadow:
        0 10px 30px rgba(15, 23, 42, 0.05);
}


.pricing-featured {
    border: 2px solid #2563eb;

    box-shadow:
        0 20px 45px rgba(37, 99, 235, 0.12);

    transform: translateY(-8px);
}


/* ========================================
   POPULAR
======================================== */

.pricing-popular {
    position: absolute;

    top: -13px;

    left: 50%;

    transform: translateX(-50%);

    padding: 6px 12px;

    border-radius: 6px;

    background: #2563eb;

    color: #ffffff;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 0.6px;

    white-space: nowrap;
}


/* ========================================
   TOP
======================================== */

.pricing-top {
    display: flex;

    align-items: center;

    justify-content: space-between;
}


.pricing-name {
    color: #0f172a;

    font-size: 21px;

    font-weight: 800;
}


.pricing-tag {
    color: #475569;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 0.5px;
}


/* ========================================
   PRICE
======================================== */

.pricing-price {
    display: flex;

    align-items: baseline;

    gap: 6px;

    margin-top: 30px;
}


.pricing-price strong {
    color: #0f172a;

    font-size: 48px;

    line-height: 1;

    letter-spacing: -2px;
}


.pricing-price span {
    color: #475569;

    font-size: 13px;
}


/* ========================================
   DESCRIPTION
======================================== */

.pricing-description {
    min-height: 55px;

    margin-top: 14px;

    color: #334155;

    font-size: 13px;

    line-height: 1.55;
}


/* ========================================
   BUTTON
======================================== */

.pricing-button {
    width: 100%;

    margin-top: 22px;

    padding: 13px 15px;

    border-radius: 8px;

    font-size: 13px;

    font-weight: 750;

    cursor: pointer;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}


.pricing-button:hover {
    transform: translateY(-2px);
}


.pricing-button-light {
    border: 1px solid #cbd5e1;

    background: #ffffff;

    color: #0f172a;
}


.pricing-button-primary {
    border: 1px solid #2563eb;

    background: #2563eb;

    color: #ffffff;

    box-shadow:
        0 8px 20px rgba(37, 99, 235, 0.18);
}


/* ========================================
   YEARLY
======================================== */

.pricing-yearly {
    margin-top: 13px;

    color: #475569;

    font-size: 11px;

    text-align: center;
}


.pricing-yearly strong {
    color: #2563eb;
}


.pricing-yearly span {
    margin-left: 6px;

    padding: 4px 6px;

    border-radius: 5px;

    background: #dcfce7;

    color: #15803d;

    font-size: 8px;

    font-weight: 800;
}


/* ========================================
   FEATURES
======================================== */

.pricing-divider {
    height: 1px;

    margin: 25px 0;

    background: #e2e8f0;
}


.pricing-features {
    display: flex;

    flex-direction: column;

    gap: 14px;

    padding: 0;

    margin: 0;

    list-style: none;
}


.pricing-features li {
    display: flex;

    align-items: center;

    gap: 10px;

    color: #334155;

    font-size: 13px;

    line-height: 1.4;
}


.pricing-features li span {
    color: #2563eb;

    font-size: 13px;

    font-weight: 800;
}


/* ========================================
   NOTE
======================================== */

.pricing-note {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 7px;

    margin-top: 28px;

    color: #475569;

    font-size: 11px;
}


.pricing-note span {
    color: #16a34a;

    font-weight: 800;
}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 900px) {

    .pricing-grid {
        grid-template-columns: 1fr;

        max-width: 500px;
    }


    .pricing-featured {
        transform: none;

        order: -1;
    }
}


@media (max-width: 500px) {

    .pricing-section {
        padding: 75px 0;
    }


    .pricing-heading h2 {
        letter-spacing: -1.3px;
    }


    .pricing-heading p {
        font-size: 15px;
    }


    .pricing-card {
        padding: 26px;
    }


    .pricing-price strong {
        font-size: 44px;
    }


    .pricing-features li {
        font-size: 13px;
    }
}

/* ========================================
   READABILITY OVERRIDE
======================================== */

body {
    color: #1e293b;
}


/* Normal paragraph text */

p {
    color: #334155;
}


/* Section descriptions */

.features-heading p,
.pricing-heading p,
.how-heading p {
    color: #334155;
}


/* Feature descriptions */

.feature-card p {
    color: #334155;
    font-size: 14px;
}


/* Pricing descriptions */

.pricing-description {
    color: #334155;
    font-size: 13px;
}


/* Pricing features */

.pricing-features li {
    color: #334155;
    font-size: 12px;
}


/* Feature / pricing labels */

.pricing-tag,
.story-link-label {
    color: #475569;
}


/* Pricing secondary text */

.pricing-price span,
.pricing-yearly,
.pricing-note {
    color: #475569;
}


/* General section labels */

.section-label {
    color: #2563eb;
}


/* How-it-works text */

.story-message p {
    color: #475569;
    font-size: 11px;
}


.story-message strong {
    color: #0f172a;
    font-size: 13px;
}
/* ========================================
   GLOBAL TEXT SCALE
======================================== */

body {
    font-size: 16px;
}

p {
    line-height: 1.7;
}
/* ========================================
   FINAL CTA
======================================== */

.final-cta {
    padding: 110px 0;

    background: #ffffff;
}


.final-cta-box {
    position: relative;

    max-width: 900px;

    margin: 0 auto;

    padding: 80px 30px;

    overflow: hidden;

    border: 1px solid #dbe3ef;

    border-radius: 20px;

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(37, 99, 235, 0.10),
            transparent 55%
        ),
        #f8fafc;

    text-align: center;

    box-shadow:
        0 25px 60px rgba(15, 23, 42, 0.07);
}


.final-cta-box h2 {
    margin-top: 18px;

    color: #0f172a;

    font-size: clamp(36px, 5vw, 58px);

    line-height: 1.04;

    letter-spacing: -2.5px;
}


.final-cta-box p {
    max-width: 520px;

    margin: 20px auto 0;

    color: #334155;

    font-size: 16px;

    line-height: 1.7;
}


/* ========================================
   ACTIONS
======================================== */

.final-cta-actions {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    margin-top: 30px;
}


.final-cta-primary,
.final-cta-secondary {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 45px;

    padding: 0 20px;

    border-radius: 8px;

    font-size: 13px;

    font-weight: 750;

    text-decoration: none;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}


.final-cta-primary {
    border: 1px solid #2563eb;

    background: #2563eb;

    color: #ffffff;

    box-shadow:
        0 8px 20px rgba(37, 99, 235, 0.18);
}


.final-cta-secondary {
    border: 1px solid #cbd5e1;

    background: #ffffff;

    color: #0f172a;
}


.final-cta-primary:hover,
.final-cta-secondary:hover {
    transform: translateY(-2px);
}


.final-cta-box small {
    display: block;

    margin-top: 18px;

    color: #475569;

    font-size: 11px;
}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 600px) {

    .final-cta {
        padding: 75px 0;
    }


    .final-cta-box {
        padding: 60px 20px;

        border-radius: 15px;
    }


    .final-cta-box h2 {
        letter-spacing: -1.5px;
    }


    .final-cta-box p {
        font-size: 15px;
    }


    .final-cta-actions {
        flex-direction: column;

        width: 100%;
    }


    .final-cta-primary,
    .final-cta-secondary {
        width: 100%;

        max-width: 300px;
    }
}