    :root {
        --ink: #1a2420;
        --ink-soft: #5b6b63;
        --line: #e3e9e5;
        --bg: #fbfdfc;
        --card: #ffffff;
        --accent: #0f6e56;
        --accent-dark: #0c5a45;
        --accent-soft: #e1f5ee;
        --max: 1080px;
    }

    * {
        box-sizing: border-box;
    }

    body {
        margin: 0;
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
        color: var(--ink);
        background: var(--bg);
        line-height: 1.5;
    }

    a {
        color: inherit;
    }

    .wrap {
        max-width: var(--max);
        margin: 0 auto;
        padding: 0 24px;
    }

    /* ---- nav ---- */
    .site-nav {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 18px 0;
        border-bottom: 1px solid var(--line);
    }

    .site-nav .wrap {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }

    .brand {
        display: flex;
        align-items: center;
        gap: 9px;
        font-weight: 800;
        font-size: 17px;
        text-decoration: none;
    }

    .brand-mark {
        width: 20px;
        height: 20px;
        border-radius: 6px;
        background: var(--accent);
        display: inline-block;
    }

    .nav-links {
        display: flex;
        align-items: center;
        gap: 26px;
        font-size: 14px;
        font-weight: 600;
    }

    .nav-links a {
        text-decoration: none;
        color: var(--ink-soft);
    }

    .nav-links a:hover {
        color: var(--ink);
    }

    .nav-cta {
        background: var(--accent);
        color: #fff !important;
        padding: 9px 18px;
        border-radius: 8px;
    }

    .nav-cta:hover {
        background: var(--accent-dark);
    }

    /* ---- hero ---- */
    .hero {
        padding: 96px 0 80px;
        text-align: center;
    }

    .hero h1 {
        font-size: 46px;
        line-height: 1.12;
        margin: 0 0 18px;
        letter-spacing: -0.02em;
    }

    .hero h1 span {
        color: var(--accent);
    }

    .hero p.lead {
        font-size: 18px;
        color: var(--ink-soft);
        max-width: 560px;
        margin: 0 auto 32px;
    }

    .hero-ctas {
        display: flex;
        gap: 12px;
        justify-content: center;
    }

    .btn {
        text-decoration: none;
        font-weight: 700;
        font-size: 15px;
        padding: 13px 24px;
        border-radius: 9px;
        display: inline-block;
    }

    .btn-primary {
        background: var(--accent);
        color: #fff;
    }

    .btn-primary:hover {
        background: var(--accent-dark);
    }

    .btn-secondary {
        background: var(--card);
        color: var(--ink);
        border: 1px solid var(--line);
    }

    .btn-secondary:hover {
        border-color: var(--accent);
        color: var(--accent);
    }

    /* ---- sections ---- */
    section.section {
        padding: 64px 0;
        border-top: 1px solid var(--line);
    }

    .section h2 {
        font-size: 28px;
        text-align: center;
        margin: 0 0 8px;
        letter-spacing: -0.01em;
    }

    .section p.sub {
        text-align: center;
        color: var(--ink-soft);
        margin: 0 0 44px;
    }

    .feature-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    .feature-card {
        background: var(--card);
        border: 1px solid var(--line);
        border-radius: 14px;
        padding: 26px;
    }

    .feature-card .icon {
        width: 38px;
        height: 38px;
        border-radius: 10px;
        background: var(--accent-soft);
        color: var(--accent);
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 800;
        margin-bottom: 14px;
    }

    .feature-card h3 {
        font-size: 16px;
        margin: 0 0 8px;
    }

    .feature-card p {
        font-size: 14px;
        color: var(--ink-soft);
        margin: 0;
    }

    .steps {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
        counter-reset: step;
    }

    .step {
        text-align: center;
    }

    .step .num {
        counter-increment: step;
        width: 34px;
        height: 34px;
        border-radius: 999px;
        background: var(--ink);
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        margin: 0 auto 14px;
        font-size: 14px;
    }

    .step .num::before {
        content: counter(step);
    }

    .step h3 {
        font-size: 15px;
        margin: 0 0 6px;
    }

    .step p {
        font-size: 13px;
        color: var(--ink-soft);
        margin: 0;
    }

    .pricing-teaser {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        max-width: 640px;
        margin: 0 auto;
    }

    footer {
        background: var(--ink);
        color: var(--card);
        padding: 21px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    footer .content {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    footer .content .logo {
        font-size: 40px;
        text-align: center;
    }

    footer .content p {
        text-align: center;
        width: 100%;
        max-width: 500px;
    }

    footer .content .sm,
    footer .content .links {
        display: flex;
        justify-content: center;
        align-items: center;
        list-style: none;
    }

    footer .content .links {
        flex-wrap: wrap;
    }

    footer .content .sm li {
        margin: 15px;
    }

    footer .content .links li {
        margin: 0 12px;
        margin-bottom: 10px;
    }

    footer .content .links li a,
    footer .content .sm li a {
        color: #fafafa;
        transition: 0.3s ease;
    }

    footer .content .sm li a {
        font-size: 25px;
        padding: 8px;
        display: flex;
        align-items: center;
    }

    footer .content .sm li a:hover {
        background: #fafafa;
        color: #222;
        border-radius: 10px;
    }

    footer .content .links li a:hover {
        opacity: 0.5;
    }

    footer .copyright {
        text-align: center;
        padding-top: 20px;
        width: 100%;
        border-top: 1px solid #555;
    }

    @media screen and (max-width: 500px) {
        footer {
            width: 100%;
        }

        footer .content .logo {
            font-size: 30px;
        }

        footer .content p {
            padding: 15px;
        }

        footer .content .sm li a {
            padding: 5px;
        }
    }

    .logo {
        width: 180px;
        height: auto;
        display: block;
        user-select: none;
        -webkit-user-drag: none;
        pointer-events: none;
    }

    .cookie-card {
        position: fixed;
        left: 24px;
        bottom: 24px;
        width: min(420px, calc(100% - 48px));
        padding: 22px;
        background: #ffffff;
        border: 1px solid #e5e7eb;
        border-radius: 16px;
        box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
        z-index: 99999;
        box-sizing: border-box;
        font-family: Arial, sans-serif;
    }

    .cookie-content {
        display: flex;
        align-items: flex-start;
        gap: 14px;
    }

    .cookie-icon {
        width: 42px;
        height: 42px;
        min-width: 42px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #f1fdfb;
        border-radius: 50%;
        font-size: 21px;
    }

    .cookie-text h3 {
        margin: 0 0 6px;
        font-size: 17px;
        font-weight: 700;
        color: #111827;
    }

    .cookie-text p {
        margin: 0;
        font-size: 13px;
        line-height: 1.6;
        color: #6b7280;
    }

    .cookie-actions {
        display: flex;
        justify-content: flex-end;
        gap: 10px;
        margin-top: 18px;
    }

    .cookie-btn {
        border: 0;
        padding: 10px 18px;
        border-radius: 8px;
        font-size: 13px;
        font-weight: 600;
        cursor: pointer;
        transition: 0.2s ease;
    }

    .cookie-reject {
        background: #f3f4f6;
        color: #374151;
    }

    .cookie-reject:hover {
        background: #e5e7eb;
    }

    .cookie-accept {
        background: #03645f;
        color: #ffffff;
    }

    .cookie-accept:hover {
        background: #02524e;
    }

    @media (max-width: 600px) {
        .cookie-card {
            left: 12px;
            right: 12px;
            bottom: 12px;
            width: auto;
            padding: 18px;
            border-radius: 14px;
        }

        .cookie-content {
            gap: 10px;
        }

        .cookie-icon {
            width: 36px;
            height: 36px;
            min-width: 36px;
            font-size: 18px;
        }

        .cookie-text h3 {
            font-size: 16px;
        }

        .cookie-text p {
            font-size: 12px;
        }

        .cookie-actions {
            display: grid;
            grid-template-columns: 1fr 1fr;
            margin-top: 15px;
        }

        .cookie-btn {
            width: 100%;
            padding: 11px 10px;
        }
    }

    .newsletter-section {
        width: 100%;
        padding: 70px 20px;
        background: #f5faf9;
        box-sizing: border-box;
    }

    .newsletter-container {
        max-width: 1200px;
        margin: 0 auto;

        display: grid;
        grid-template-columns: 0.9fr 1.1fr;
        align-items: center;
        gap: 70px;
    }


    /* Left */

    .newsletter-content h2 {
        margin: 0 0 12px;
        color: #111827;
        font-size: 32px;
        line-height: 1.2;
        font-weight: 700;
    }

    .newsletter-content p {
        max-width: 480px;
        margin: 0;
        color: #667085;
        font-size: 15px;
        line-height: 1.7;
    }


    /* Right */

    .newsletter-form-wrapper {
        width: 100%;
    }

    .newsletter-fields {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .newsletter-field input {
        width: 100%;
        height: 50px;
        padding: 0 16px;

        box-sizing: border-box;

        border: 1px solid #d7dfdd;
        border-radius: 8px;

        background: #ffffff;
        color: #111827;

        font-size: 14px;
        outline: none;

        transition: border-color 0.2s ease,
            box-shadow 0.2s ease;
    }

    .newsletter-field input::placeholder {
        color: #98a2b3;
    }

    .newsletter-field input:focus {
        border-color: #03645f;
        box-shadow: 0 0 0 3px rgba(3, 100, 95, 0.08);
    }


    /* Checkbox + Button */

    .newsletter-bottom {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        margin-top: 14px;
    }

    .newsletter-checkbox {
        display: flex;
        align-items: flex-start;
        gap: 9px;

        color: #667085;
        font-size: 12px;
        line-height: 1.5;

        cursor: pointer;
    }

    .newsletter-checkbox input {
        width: 15px;
        height: 15px;
        margin: 1px 0 0;

        flex-shrink: 0;
        accent-color: #03645f;
        cursor: pointer;
    }


    /* Button */

    .newsletter-button {
        height: 44px;
        padding: 0 22px;

        border: 0;
        border-radius: 8px;

        background: #03645f;
        color: #ffffff;

        font-size: 14px;
        font-weight: 600;

        white-space: nowrap;
        cursor: pointer;

        transition: background 0.2s ease,
            transform 0.2s ease;
    }

    .newsletter-button:hover {
        background: #02524e;
    }

    .newsletter-button:active {
        transform: translateY(1px);
    }

    .newsletter-button:disabled {
        opacity: 0.65;
        cursor: not-allowed;
    }


    /* Message */

    .newsletter-message {
        display: none;
        margin-top: 12px;
        font-size: 13px;
        line-height: 1.5;
    }

    .newsletter-message.success {
        display: block;
        color: #087443;
    }

    .newsletter-message.error {
        display: block;
        color: #c0392b;
    }


    /* =========================================
   Tablet
========================================= */

    @media (max-width: 900px) {

        .newsletter-container {
            grid-template-columns: 1fr;
            gap: 30px;
        }

        .newsletter-content p {
            max-width: 650px;
        }

    }


    /* =========================================
   Mobile
========================================= */

    @media (max-width: 600px) {

        .newsletter-section {
            padding: 50px 18px;
        }

        .newsletter-container {
            gap: 25px;
        }

        .newsletter-content h2 {
            font-size: 27px;
        }

        .newsletter-content p {
            font-size: 14px;
        }

        .newsletter-fields {
            grid-template-columns: 1fr;
            gap: 10px;
        }

        .newsletter-bottom {
            align-items: stretch;
            flex-direction: column;
            gap: 15px;
        }

        .newsletter-button {
            width: 100%;
        }

    }

    /* ---- auth pages (signup/login share this nav+shell) ---- */
    .meta {
        color: var(--ink-soft);
        font-size: 13px;
    }

    .meta a {
        color: var(--accent);
        font-weight: 600;
        text-decoration: none;
    }

    .login-card {
        max-width: 380px;
        margin: 64px auto;
        background: var(--card);
        border: 1px solid var(--line);
        border-radius: 14px;
        padding: 30px;
    }

    .login-card h1 {
        font-size: 20px;
        margin: 0 0 6px;
    }

    form label {
        display: block;
        font-size: 13px;
        font-weight: 600;
        color: var(--ink-soft);
        margin: 16px 0 6px;
    }

    form input,
    form select,
    form textarea {
        width: 100%;
        border: 1px solid var(--line);
        border-radius: 8px;
        padding: 9px 11px;
        font-size: 14px;
        font-family: inherit;
        box-sizing: border-box;
    }

    form button {
        margin-top: 18px;
        width: 100%;
        background: var(--accent);
        color: #fff;
        border: none;
        border-radius: 8px;
        padding: 11px;
        font-size: 14px;
        font-weight: 700;
        cursor: pointer;
    }

    form button:hover {
        background: var(--accent-dark);
    }

    .errorlist {
        color: #a34848;
        font-size: 13px;
        padding-left: 16px;
        margin: 4px 0 0;
        list-style: disc;
    }

    /* ---- responsive ---- */
    @media (max-width: 760px) {
        .site-nav .wrap {
            flex-wrap: wrap;
            gap: 10px;
        }

        .brand {
            font-size: 15px;
        }

        .hero {
            padding: 56px 0 48px;
        }

        .hero h1 {
            font-size: 32px;
        }

        .hero p.lead {
            font-size: 16px;
        }

        .hero-ctas {
            flex-direction: column;
        }

        .nav-links {
            gap: 12px;
            font-size: 13px;
        }

        .nav-cta {
            padding: 7px 12px;
        }

        .feature-grid,
        .steps,
        .pricing-teaser {
            grid-template-columns: 1fr;
        }

        section.section {
            padding: 44px 0;
        }

        .login-card {
            margin: 36px auto;
            padding: 22px;
        }
    }
.links {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 18px;
        margin: 0;
        padding: 0;
        list-style: none;
        font-size: 12px;
    }

    .links li {
        position: relative;
    }

    .links li:not(:last-child)::after {
        content: "•";
        position: absolute;
        right: -11px;
        color: #999;
    }

    .links a {
        color: #888;
        text-decoration: none;
        transition: color 0.2s ease;
    }

    .links a:hover {
        color: #333;
        text-decoration: underline;
    }

    @media (prefers-color-scheme: dark) {
        .links a {
            color: #aaa;
        }

        .links a:hover {
            color: #fff;
        }

        .links li:not(:last-child)::after {
            color: #666;
        }
    }

/* =========================================
   Chrome Extension Section
========================================= */

.extension-section {
    width: 100%;
    padding: 80px 20px;
    background: #ffffff;
    box-sizing: border-box;
}

.extension-container {
    max-width: 1200px;
    min-height: 360px;
    margin: 0 auto;
    padding: 55px 65px;

    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 60px;

    background: #f4faf9;
    border: 1px solid #e3efed;
    border-radius: 24px;

    box-sizing: border-box;
}


/* Content */

.extension-content {
    max-width: 590px;
}

.extension-eyebrow {
    display: inline-block;
    margin-bottom: 14px;

    color: #03645f;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.extension-content h2 {
    margin: 0 0 16px;

    color: #111827;
    font-size: 38px;
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -0.7px;
}

.extension-content p {
    max-width: 540px;
    margin: 0 0 26px;

    color: #667085;
    font-size: 15px;
    line-height: 1.7;
}


/* Button */

.extension-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    min-height: 46px;
    padding: 0 21px;

    border-radius: 8px;
    background: #03645f;
    color: #ffffff;

    font-size: 14px;
    font-weight: 600;
    text-decoration: none;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.extension-button:hover {
    background: #02524e;
    transform: translateY(-1px);
}

.chrome-icon {
    font-size: 17px;
}


/* =========================================
   Visual
========================================= */

.extension-visual {
    position: relative;

    min-height: 240px;

    display: flex;
    align-items: center;
    justify-content: center;
}


/* Extension Card */

.extension-card {
    position: relative;
    z-index: 2;

    width: 270px;
    min-height: 86px;
    padding: 18px;

    display: flex;
    align-items: center;
    gap: 14px;

    background: #ffffff;
    border: 1px solid #e0e8e6;
    border-radius: 14px;

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);

    box-sizing: border-box;
}

.extension-card-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: #03645f;
    color: #ffffff;

    font-size: 15px;
    font-weight: 700;
}

.extension-card-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.extension-card-text strong {
    color: #111827;
    font-size: 14px;
}

.extension-card-text span {
    color: #98a2b3;
    font-size: 12px;
}

.extension-check {
    margin-left: auto;

    width: 27px;
    height: 27px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #e8f7f4;
    color: #03645f;

    font-size: 14px;
    font-weight: 700;
}


/* Decorative Lines */

.extension-line {
    position: absolute;
    height: 1px;

    background: #b9d9d5;
    opacity: 0.8;
}

.extension-line-one {
    width: 100px;
    top: 48px;
    left: 20px;
    transform: rotate(-25deg);
}

.extension-line-two {
    width: 95px;
    bottom: 45px;
    right: 10px;
    transform: rotate(25deg);
}


/* Decorative Dots */

.extension-dot {
    position: absolute;

    width: 8px;
    height: 8px;

    border-radius: 50%;
    background: #03645f;
}

.extension-dot-one {
    top: 29px;
    left: 10px;
}

.extension-dot-two {
    bottom: 25px;
    right: 0;
}


/* =========================================
   Tablet
========================================= */

@media (max-width: 900px) {

    .extension-container {
        grid-template-columns: 1fr;
        gap: 45px;
        padding: 50px;
    }

    .extension-content {
        max-width: 700px;
    }

    .extension-visual {
        min-height: 200px;
    }

}


/* =========================================
   Mobile
========================================= */

@media (max-width: 600px) {

    .extension-section {
        padding: 50px 15px;
    }

    .extension-container {
        padding: 35px 22px;
        border-radius: 18px;
        gap: 35px;
    }

    .extension-content h2 {
        font-size: 29px;
        letter-spacing: -0.4px;
    }

    .extension-content p {
        font-size: 14px;
        line-height: 1.65;
    }

    .extension-button {
        width: 100%;
        box-sizing: border-box;
    }

    .extension-visual {
        min-height: 170px;
    }

    .extension-card {
        width: 100%;
        max-width: 270px;
    }

    .extension-line-one {
        width: 65px;
        left: 0;
    }

    .extension-line-two {
        width: 65px;
        right: 0;
    }

}
    /* =========================
       NAVBAR
    ========================= */

    .public-nav {
      position: sticky;
      top: 0;
      z-index: 100;

      height: 68px;

      display: flex;
      align-items: center;
      justify-content: space-between;

      padding: 0 28px;

      background: rgba(255, 255, 255, 0.96);
      border-bottom: 1px solid var(--line);

      backdrop-filter: blur(10px);
    }

    .public-brand {
      display: flex;
      align-items: center;
      gap: 10px;

      text-decoration: none;

      font-size: 17px;
      font-weight: 750;
      letter-spacing: -0.02em;
    }

    .brand-mark {
      width: 25px;
      height: 25px;

      display: inline-block;

      border-radius: 8px;
      background: var(--accent);

      position: relative;
    }

    .brand-mark::after {
      content: "";

      position: absolute;
      width: 8px;
      height: 8px;

      top: 5px;
      left: 5px;

      border-radius: 3px;

      background: rgba(255, 255, 255, 0.8);
    }

    .public-nav-links {
      display: flex;
      align-items: center;
      gap: 24px;

      font-size: 13px;
      color: var(--ink-soft);
    }

    .public-nav-links a {
      text-decoration: none;
    }

    .public-nav-links a:hover {
      color: var(--accent);
    }

    .nav-button {
      padding: 8px 15px;

      border-radius: 8px;

      background: var(--accent);
      color: white !important;

      font-weight: 600;
    }

    .nav-button:hover {
      background: var(--accent-dark);
    }

    /* =========================
       CONTAINER
    ========================= */

    .public-container {
      width: min(var(--max-width), calc(100% - 48px));
      margin: 0 auto;
    }

    /* =========================
       HERO
    ========================= */

    .about-hero {
      padding: 90px 0 80px;
      text-align: center;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;

      padding: 5px 11px;

      border: 1px solid #cce9dd;
      border-radius: 999px;

      background: var(--accent-soft);
      color: var(--accent);

      font-size: 12px;
      font-weight: 700;

      margin-bottom: 18px;
    }

    .about-hero h1 {
      max-width: 800px;
      margin: 0 auto 18px;

      font-size: clamp(38px, 6vw, 64px);
      line-height: 1.05;
      letter-spacing: -0.045em;
    }

    .about-hero h1 span {
      color: var(--accent);
    }

    .hero-description {
      max-width: 650px;
      margin: 0 auto;

      color: var(--ink-soft);
      font-size: 17px;
    }

    .hero-actions {
      display: flex;
      justify-content: center;
      gap: 10px;

      margin-top: 30px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;

      min-height: 42px;
      padding: 0 18px;

      border-radius: 8px;

      text-decoration: none;

      font-size: 13px;
      font-weight: 650;
    }

    .btn-primary {
      background: var(--accent);
      color: white;
    }

    .btn-primary:hover {
      background: var(--accent-dark);
    }

    .btn-secondary {
      border: 1px solid var(--line);
      background: white;
      color: var(--ink-soft);
    }

    .btn-secondary:hover {
      border-color: var(--accent);
      color: var(--accent);
    }

    /* =========================
       PRODUCT MOCKUP
    ========================= */

    .product-preview {
      max-width: 900px;
      margin: 65px auto 0;

      border: 1px solid var(--line);
      border-radius: 16px;

      background: white;

      box-shadow:
        0 25px 70px rgba(31, 41, 36, 0.10),
        0 5px 15px rgba(31, 41, 36, 0.04);

      overflow: hidden;
      text-align: left;
    }

    .browser-bar {
      height: 40px;

      display: flex;
      align-items: center;

      gap: 6px;

      padding: 0 14px;

      background: #f5f8f6;
      border-bottom: 1px solid var(--line);
    }

    .browser-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;

      background: #ccd5d0;
    }

    .browser-address {
      flex: 1;

      max-width: 400px;

      margin-left: 10px;

      padding: 4px 10px;

      border: 1px solid var(--line);
      border-radius: 5px;

      background: white;

      color: var(--muted);
      font-size: 10px;
    }

    .mockup-body {
      display: grid;
      grid-template-columns: 1fr 260px;

      min-height: 390px;
    }

    .mockup-linkedin {
      padding: 24px;

      background: #f7f9f8;
    }

    .mock-profile {
      max-width: 510px;
      margin: 0 auto;

      background: white;
      border: 1px solid var(--line);
      border-radius: 10px;

      overflow: hidden;
    }

    .mock-cover {
      height: 80px;
      background:
        linear-gradient(
          135deg,
          #dcefe8,
          #edf7f3
        );
    }

    .mock-profile-content {
      padding: 0 18px 20px;
    }

    .mock-avatar {
      width: 58px;
      height: 58px;

      margin-top: -28px;

      display: flex;
      align-items: center;
      justify-content: center;

      border: 4px solid white;
      border-radius: 50%;

      background: var(--accent-soft);
      color: var(--accent);

      font-size: 18px;
      font-weight: 700;
    }

    .mock-name {
      margin-top: 8px;

      font-size: 16px;
      font-weight: 700;
    }

    .mock-role {
      color: var(--ink-soft);
      font-size: 12px;
    }

    .mock-location {
      color: var(--muted);
      font-size: 11px;
      margin-top: 4px;
    }

    .mock-button {
      display: inline-block;

      margin-top: 14px;

      padding: 6px 12px;

      border-radius: 6px;

      background: #eef3f0;
      color: var(--ink-soft);

      font-size: 11px;
    }

    .mock-extension {
      padding: 20px;

      background: white;
      border-left: 1px solid var(--line);
    }

    .extension-header {
      display: flex;
      align-items: center;
      gap: 8px;

      margin-bottom: 20px;

      font-size: 13px;
      font-weight: 700;
    }

    .extension-icon {
      width: 25px;
      height: 25px;

      border-radius: 7px;
      background: var(--accent);
    }

    .extension-label {
      color: var(--muted);
      font-size: 10px;
      margin-bottom: 5px;
    }

    .extension-value {
      font-size: 12px;
      font-weight: 600;
    }

    .extension-field {
      padding: 10px 0;
      border-bottom: 1px solid var(--line);
    }

    .extension-button {
      width: 100%;

      margin-top: 20px;
      padding: 9px;

      border: 0;
      border-radius: 7px;

      background: var(--accent);
      color: white;

      font-size: 11px;
      font-weight: 650;
    }

    /* =========================
       SECTION
    ========================= */
.about-section {
  padding: 80px 187px;
}

.mission-section {
  padding: 80px 187px;
}

/* Tablet */
@media (max-width: 1024px) {
  .about-section,
  .mission-section {
    padding: 60px 80px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .about-section,
  .mission-section {
    padding: 50px 30px;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .about-section,
  .mission-section {
    padding: 40px 20px;
  }
}



    .section-header {
      max-width: 650px;
      margin-bottom: 35px;
    }

    .section-header h2 {
      margin: 0 0 10px;

      font-size: 30px;
      line-height: 1.15;
      letter-spacing: -0.025em;
    }

    .section-header p {
      margin: 0;
      color: var(--ink-soft);
    }

    /* =========================
       FEATURE CARDS
    ========================= */

    .feature-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }

    .feature-card {
      padding: 24px;

      background: white;
      border: 1px solid var(--line);
      border-radius: 12px;
    }

    .feature-icon {
      width: 38px;
      height: 38px;

      display: flex;
      align-items: center;
      justify-content: center;

      margin-bottom: 17px;

      border-radius: 9px;

      background: var(--accent-soft);
      color: var(--accent);

      font-size: 16px;
      font-weight: 700;
    }

    .feature-card h3 {
      margin: 0 0 7px;

      font-size: 16px;
    }

    .feature-card p {
      margin: 0;

      color: var(--ink-soft);
      font-size: 13px;
      line-height: 1.65;
    }

    /* =========================
       MISSION
    ========================= */

    .mission {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;

      align-items: center;
    }

    .mission-copy h2 {
      margin: 0 0 14px;

      font-size: 31px;
      line-height: 1.15;
      letter-spacing: -0.025em;
    }

    .mission-copy p {
      color: var(--ink-soft);
      font-size: 14px;
    }

    .mission-card {
      padding: 30px;

      border-radius: 14px;

      background: var(--accent);
      color: white;
    }

    .mission-card .quote-mark {
      font-size: 45px;
      line-height: 0.7;
      opacity: 0.45;
    }

    .mission-card p {
      margin: 20px 0 0;

      font-size: 19px;
      line-height: 1.5;
      font-weight: 500;
    }

    /* =========================
       LEGAL PAGES
    ========================= */

    .legal-page {
      max-width: 820px;
      margin: 0 auto;

      padding: 70px 0 100px;
    }

    .legal-header {
      padding-bottom: 30px;
      margin-bottom: 35px;

      border-bottom: 1px solid var(--line);
    }

    .legal-header h1 {
      margin: 0 0 8px;

      font-size: 38px;
      letter-spacing: -0.03em;
    }

    .legal-updated {
      color: var(--muted);
      font-size: 12px;
    }

    .legal-content h2 {
      margin: 38px 0 10px;

      font-size: 20px;
      line-height: 1.25;
    }

    .legal-content h3 {
      margin: 25px 0 8px;

      font-size: 15px;
    }

    .legal-content p,
    .legal-content li {
      color: var(--ink-soft);
      font-size: 14px;
    }

    .legal-content ul {
      padding-left: 22px;
    }

    .legal-content a {
      color: var(--accent);
    }

    .legal-note {
      padding: 16px 18px;

      margin: 20px 0;

      border: 1px solid #cce9dd;
      border-radius: 9px;

      background: var(--accent-soft);

      color: var(--ink-soft);
      font-size: 13px;
    }

    /* =========================
       FOOTER
    ========================= */

    .public-footer {
      padding: 30px 0;

      border-top: 1px solid var(--line);

      background: white;
    }

    .footer-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
    }

    .footer-copy {
      color: var(--muted);
      font-size: 12px;
    }

    .footer-links {
      display: flex;
      gap: 18px;

      color: var(--ink-soft);
      font-size: 12px;
    }

    .footer-links a {
      text-decoration: none;
    }

    .footer-links a:hover {
      color: var(--accent);
    }

    /* =========================
       RESPONSIVE
    ========================= */

    @media (max-width: 850px) {
      .mockup-body {
        grid-template-columns: 1fr;
      }

      .mock-extension {
        border-left: 0;
        border-top: 1px solid var(--line);
      }

      .feature-grid {
        grid-template-columns: 1fr;
      }

      .mission {
        grid-template-columns: 1fr;
        gap: 30px;
      }
    }

    @media (max-width: 650px) {
      .public-nav {
        height: 60px;
        padding: 0 16px;
      }

      .public-nav-links {
        gap: 10px;
      }

      .public-nav-links a:not(.nav-button) {
        display: none;
      }

      .public-container {
        width: min(100% - 32px, var(--max-width));
      }

      .about-hero {
        padding: 60px 0 50px;
      }

      .about-hero h1 {
        font-size: 40px;
      }

      .hero-description {
        font-size: 15px;
      }

      .hero-actions {
        flex-direction: column;
      }

      .hero-actions .btn {
        width: 100%;
      }

      .product-preview {
        margin-top: 40px;
        border-radius: 12px;
      }

      .mockup-linkedin {
        padding: 14px;
      }

      .section {
        padding: 55px 0;
      }

      .section-header h2,
      .mission-copy h2 {
        font-size: 26px;
      }

      .legal-page {
        padding: 45px 0 70px;
      }

      .legal-header h1 {
        font-size: 32px;
      }
    }
/* =========================================
       HOW IT WORKS
       Uses your existing design system
    ========================================= */

    .how-page {
        background: var(--bg, #fbfdfc);
        color: var(--ink, #1a2420);
    }

    .how-container {
        width: min(1080px, calc(100% - 48px));
        margin: 0 auto;
    }

    /* =========================================
       HERO
    ========================================= */

    .how-hero {
        padding: 90px 0 70px;
        text-align: center;
    }

    .how-eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 7px;
        padding: 6px 12px;
        border: 1px solid #cce9dd;
        border-radius: 999px;
        background: var(--accent-soft, #e1f5ee);
        color: var(--accent, #0f6e56);
        font-size: 12px;
        font-weight: 700;
        margin-bottom: 18px;
    }

    .how-eyebrow-dot {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--accent, #0f6e56);
    }

    .how-hero h1 {
        max-width: 760px;
        margin: 0 auto 18px;
        font-size: clamp(40px, 6vw, 62px);
        line-height: 1.05;
        letter-spacing: -0.045em;
    }

    .how-hero h1 span {
        color: var(--accent, #0f6e56);
    }

    .how-hero-description {
        max-width: 650px;
        margin: 0 auto;
        color: var(--ink-soft, #5b6b63);
        font-size: 17px;
        line-height: 1.7;
    }


    /* =========================================
       MAIN FEATURE
    ========================================= */

    .how-feature {
        padding: 20px 0 90px;
    }

    .how-feature-card {
        display: grid;
        grid-template-columns: 0.9fr 1.1fr;
        gap: 55px;
        align-items: center;

        padding: 55px;

        background: #f4faf9;
        border: 1px solid #e3efed;
        border-radius: 24px;
    }

    .how-feature-content {
        max-width: 480px;
    }

    .how-number {
        width: 38px;
        height: 38px;
        display: flex;
        align-items: center;
        justify-content: center;

        margin-bottom: 18px;

        border-radius: 11px;
        background: var(--accent, #0f6e56);
        color: #fff;

        font-size: 14px;
        font-weight: 800;
    }

    .how-feature-content h2 {
        margin: 0 0 15px;

        font-size: 34px;
        line-height: 1.15;
        letter-spacing: -0.035em;
    }

    .how-feature-content h2 span {
        color: var(--accent, #0f6e56);
    }

    .how-feature-content p {
        margin: 0 0 20px;

        color: var(--ink-soft, #5b6b63);
        font-size: 15px;
        line-height: 1.75;
    }

    .how-feature-list {
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .how-feature-list li {
        display: flex;
        gap: 10px;
        align-items: flex-start;

        margin-bottom: 10px;

        color: var(--ink-soft, #5b6b63);
        font-size: 13px;
    }

    .how-feature-list li::before {
        content: "✓";

        width: 20px;
        height: 20px;
        min-width: 20px;

        display: flex;
        align-items: center;
        justify-content: center;

        border-radius: 50%;
        background: var(--accent-soft, #e1f5ee);
        color: var(--accent, #0f6e56);

        font-size: 11px;
        font-weight: 800;
    }


    /* =========================================
       BROWSER MOCKUP
    ========================================= */

    .how-browser {
        overflow: hidden;

        background: #fff;
        border: 1px solid var(--line, #e3e9e5);
        border-radius: 15px;

        box-shadow:
            0 25px 60px rgba(31, 41, 36, 0.10),
            0 5px 15px rgba(31, 41, 36, 0.04);
    }

    .how-browser-bar {
        height: 38px;

        display: flex;
        align-items: center;
        gap: 6px;

        padding: 0 13px;

        background: #f5f8f6;
        border-bottom: 1px solid var(--line, #e3e9e5);
    }

    .how-browser-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #ccd5d0;
    }

    .how-browser-url {
        flex: 1;

        margin-left: 10px;
        padding: 4px 10px;

        border: 1px solid #e0e7e3;
        border-radius: 5px;

        background: #fff;
        color: #98a2b3;

        font-size: 9px;
    }

    .how-browser-content {
        display: grid;
        grid-template-columns: 1fr 190px;

        min-height: 330px;
    }


    /* =========================================
       PROFILE MOCKUP
    ========================================= */

    .profile-area {
        padding: 22px;
        background: #f7f9f8;
    }

    .profile-card {
        background: #fff;
        border: 1px solid var(--line, #e3e9e5);
        border-radius: 10px;
        overflow: hidden;
    }

    .profile-cover {
        height: 65px;

        background: linear-gradient(
            135deg,
            #dcefe8,
            #edf7f3
        );
    }

    .profile-body {
        padding: 0 15px 18px;
    }

    .profile-avatar {
        width: 48px;
        height: 48px;

        margin-top: -24px;

        display: flex;
        align-items: center;
        justify-content: center;

        border: 3px solid #fff;
        border-radius: 50%;

        background: var(--accent-soft, #e1f5ee);
        color: var(--accent, #0f6e56);

        font-size: 15px;
        font-weight: 800;
    }

    .profile-name {
        margin-top: 7px;
        font-size: 14px;
        font-weight: 750;
    }

    .profile-title {
        margin-top: 2px;
        color: var(--ink-soft, #5b6b63);
        font-size: 10px;
    }

    .profile-location {
        margin-top: 4px;
        color: #98a2b3;
        font-size: 9px;
    }

    .profile-actions {
        display: flex;
        gap: 7px;
        margin-top: 14px;
    }

    .profile-action {
        padding: 6px 9px;

        border-radius: 6px;
        background: #eef3f0;

        color: var(--ink-soft, #5b6b63);
        font-size: 9px;
        font-weight: 600;
    }

    .profile-action.primary {
        background: var(--accent, #0f6e56);
        color: #fff;
    }


    /* =========================================
       EXTENSION MOCKUP
    ========================================= */

    .extension-area {
        padding: 17px;

        background: #fff;
        border-left: 1px solid var(--line, #e3e9e5);
    }

    .extension-title {
        display: flex;
        align-items: center;
        gap: 7px;

        margin-bottom: 18px;

        font-size: 11px;
        font-weight: 750;
    }

    .extension-logo {
        width: 23px;
        height: 23px;

        display: flex;
        align-items: center;
        justify-content: center;

        border-radius: 6px;

        background: var(--accent, #0f6e56);
        color: #fff;

        font-size: 9px;
        font-weight: 800;
    }

    .extension-field {
        padding: 9px 0;
        border-bottom: 1px solid var(--line, #e3e9e5);
    }

    .extension-label {
        margin-bottom: 3px;

        color: #98a2b3;
        font-size: 8px;
        text-transform: uppercase;
        letter-spacing: .04em;
    }

    .extension-value {
        font-size: 10px;
        font-weight: 650;
    }

    .extension-save {
        width: 100%;

        margin-top: 17px;
        padding: 9px;

        border: 0;
        border-radius: 7px;

        background: var(--accent, #0f6e56);
        color: #fff;

        font-size: 10px;
        font-weight: 700;
    }


    /* =========================================
       THREE FEATURES
    ========================================= */

    .how-features {
        padding: 80px 0;
        border-top: 1px solid var(--line, #e3e9e5);
    }

    .how-section-heading {
        max-width: 650px;
        margin: 0 auto 45px;
        text-align: center;
    }

    .how-section-heading h2 {
        margin: 0 0 10px;

        font-size: 31px;
        line-height: 1.15;
        letter-spacing: -0.03em;
    }

    .how-section-heading p {
        margin: 0;

        color: var(--ink-soft, #5b6b63);
        font-size: 15px;
    }

    .how-feature-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }

    .how-card {
        padding: 27px;

        background: #fff;
        border: 1px solid var(--line, #e3e9e5);
        border-radius: 14px;

        transition:
            transform .2s ease,
            border-color .2s ease,
            box-shadow .2s ease;
    }

    .how-card:hover {
        transform: translateY(-3px);
        border-color: #c9ded7;

        box-shadow: 0 12px 35px rgba(31, 41, 36, .06);
    }

    .how-card-number {
        width: 39px;
        height: 39px;

        display: flex;
        align-items: center;
        justify-content: center;

        margin-bottom: 20px;

        border-radius: 10px;
        background: var(--accent-soft, #e1f5ee);
        color: var(--accent, #0f6e56);

        font-size: 13px;
        font-weight: 800;
    }

    .how-card h3 {
        margin: 0 0 9px;

        font-size: 17px;
        letter-spacing: -.01em;
    }

    .how-card p {
        margin: 0;

        color: var(--ink-soft, #5b6b63);
        font-size: 13px;
        line-height: 1.7;
    }


    /* =========================================
       WORKFLOW
    ========================================= */

    .workflow-section {
        padding: 90px 0;
        background: #f5faf9;
        border-top: 1px solid #e5efec;
        border-bottom: 1px solid #e5efec;
    }

    .workflow-heading {
        text-align: center;
        margin-bottom: 55px;
    }

    .workflow-heading h2 {
        margin: 0 0 9px;

        font-size: 32px;
        letter-spacing: -.03em;
    }

    .workflow-heading p {
        margin: 0;

        color: var(--ink-soft, #5b6b63);
        font-size: 15px;
    }

    .workflow {
        position: relative;

        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .workflow-line {
        position: absolute;

        top: 22px;
        left: 16%;
        right: 16%;

        height: 1px;

        background: #c7ddd6;
        z-index: 0;
    }

    .workflow-step {
        position: relative;
        z-index: 1;

        text-align: center;
    }

    .workflow-number {
        width: 45px;
        height: 45px;

        display: flex;
        align-items: center;
        justify-content: center;

        margin: 0 auto 20px;

        border: 5px solid #f5faf9;
        border-radius: 50%;

        background: var(--accent, #0f6e56);
        color: #fff;

        font-size: 13px;
        font-weight: 800;
    }

    .workflow-step h3 {
        margin: 0 0 8px;
        font-size: 16px;
    }

    .workflow-step p {
        max-width: 270px;
        margin: 0 auto;

        color: var(--ink-soft, #5b6b63);
        font-size: 13px;
        line-height: 1.65;
    }


    /* =========================================
       PIPELINE MOCKUP
    ========================================= */

    .pipeline-section {
        padding: 90px 0;
    }

    .pipeline-intro {
        text-align: center;
        max-width: 650px;
        margin: 0 auto 45px;
    }

    .pipeline-intro h2 {
        margin: 0 0 10px;

        font-size: 31px;
        letter-spacing: -.03em;
    }

    .pipeline-intro p {
        margin: 0;

        color: var(--ink-soft, #5b6b63);
        font-size: 15px;
        line-height: 1.7;
    }

    .pipeline-mockup {
        padding: 20px;

        background: #fff;
        border: 1px solid var(--line, #e3e9e5);
        border-radius: 16px;

        box-shadow: 0 20px 55px rgba(31, 41, 36, .07);
    }

    .pipeline-top {
        display: flex;
        align-items: center;
        justify-content: space-between;

        padding: 3px 4px 18px;
    }

    .pipeline-top strong {
        font-size: 14px;
    }

    .pipeline-search {
        width: 220px;

        padding: 8px 12px;

        border: 1px solid var(--line, #e3e9e5);
        border-radius: 7px;

        color: #98a2b3;
        font-size: 11px;
    }

    .pipeline-columns {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 12px;
    }

    .pipeline-column {
        min-height: 220px;
        padding: 12px;

        background: #f7f9f8;
        border: 1px solid #edf1ef;
        border-radius: 10px;
    }

    .pipeline-column-header {
        display: flex;
        align-items: center;
        justify-content: space-between;

        margin-bottom: 10px;

        font-size: 11px;
        font-weight: 750;
    }

    .pipeline-count {
        padding: 2px 6px;

        border-radius: 999px;
        background: var(--accent-soft, #e1f5ee);
        color: var(--accent, #0f6e56);

        font-size: 9px;
    }

    .candidate {
        padding: 11px;
        margin-bottom: 8px;

        background: #fff;
        border: 1px solid var(--line, #e3e9e5);
        border-radius: 8px;
    }

    .candidate-name {
        font-size: 11px;
        font-weight: 700;
    }

    .candidate-role {
        margin-top: 3px;

        color: var(--ink-soft, #5b6b63);
        font-size: 9px;
    }

    .candidate-company {
        margin-top: 5px;

        color: #98a2b3;
        font-size: 8px;
    }


    /* =========================================
       FINAL CTA
    ========================================= */

    .how-cta {
        padding: 90px 0;
        text-align: center;
    }

    .how-cta-card {
        padding: 55px 30px;

        background: var(--accent, #0f6e56);
        border-radius: 20px;

        color: #fff;
    }

    .how-cta-card h2 {
        margin: 0 0 12px;

        font-size: 32px;
        letter-spacing: -.03em;
    }

    .how-cta-card p {
        max-width: 560px;
        margin: 0 auto 25px;

        opacity: .85;

        font-size: 15px;
        line-height: 1.7;
    }

    .how-cta-button {
        display: inline-flex;
        align-items: center;
        justify-content: center;

        padding: 11px 21px;

        border-radius: 8px;

        background: #fff;
        color: var(--accent, #0f6e56);

        font-size: 13px;
        font-weight: 700;
        text-decoration: none;
    }


    /* =========================================
       RESPONSIVE
    ========================================= */

    @media (max-width: 850px) {

        .how-feature-card {
            grid-template-columns: 1fr;
            padding: 40px;
        }

        .how-feature-content {
            max-width: 650px;
        }

        .how-feature-grid {
            grid-template-columns: 1fr;
        }

        .pipeline-columns {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 650px) {

        .how-container {
            width: min(100% - 32px, 1080px);
        }

        .how-hero {
            padding: 60px 0 45px;
        }

        .how-hero h1 {
            font-size: 40px;
        }

        .how-hero-description {
            font-size: 15px;
        }

        .how-feature {
            padding-bottom: 55px;
        }

        .how-feature-card {
            padding: 27px 20px;
            border-radius: 18px;
        }

        .how-feature-content h2 {
            font-size: 28px;
        }

        .how-browser-content {
            grid-template-columns: 1fr;
        }

        .extension-area {
            border-left: 0;
            border-top: 1px solid var(--line, #e3e9e5);
        }

        .workflow-section,
        .pipeline-section,
        .how-cta {
            padding: 60px 0;
        }

        .workflow {
            grid-template-columns: 1fr;
            gap: 35px;
        }

        .workflow-line {
            display: none;
        }

        .pipeline-top {
            align-items: stretch;
            flex-direction: column;
            gap: 10px;
        }

        .pipeline-search {
            width: 100%;
            box-sizing: border-box;
        }

        .pipeline-columns {
            grid-template-columns: 1fr;
        }
    }
   .verify-card {
            width: 100%;
            max-width: 450px;

            background: var(--card);

            border: 1px solid var(--line);

            border-radius: 18px;

            padding: 40px;

            box-shadow:
                0 10px 35px rgba(26, 36, 32, 0.06);
        }
        .description {
            margin: 0 0 28px;

            color: var(--ink-soft);

            font-size: 15px;
            line-height: 1.7;
        }

        .email {
            color: var(--ink);
            font-weight: 700;
        }

        .code-input {
            width: 100%;

            padding: 17px 15px;

            border: 1px solid var(--line);

            border-radius: 12px;

            outline: none;

            text-align: center;

            font-size: 28px;
            font-weight: 700;

            letter-spacing: 9px;

            color: var(--ink);

            transition: 0.2s;
        }

        .code-input:focus {
            border-color: var(--accent);

            box-shadow:
                0 0 0 4px var(--accent-soft);
        }

        .verify-button {
            width: 100%;

            margin-top: 18px;

            padding: 15px;

            border: 0;
            border-radius: 11px;

            background: var(--accent);

            color: white;

            font-size: 15px;
            font-weight: 700;

            cursor: pointer;

            transition: 0.2s;
        }

        .verify-button:hover {
            background: var(--accent-dark);
        }

        .resend {
            margin-top: 22px;

            text-align: center;

            font-size: 14px;

            color: var(--ink-soft);
        }

        .resend a {
            color: var(--accent);

            font-weight: 700;

            text-decoration: none;
        }

        .resend a:hover {
            text-decoration: underline;
        }

        .message {
            padding: 12px 14px;

            margin-bottom: 20px;

            border-radius: 10px;

            background: var(--accent-soft);

            color: var(--accent-dark);

            font-size: 14px;
        }

        @media (max-width: 500px) {

            .verify-card {
                padding: 28px 22px;
            }

            h1 {
                font-size: 24px;
            }

        }


/* ========================================
   Toast Notifications
======================================== */

.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;

    z-index: 99999;

    display: flex;
    flex-direction: column;
    gap: 12px;

    width: min(380px, calc(100vw - 40px));

    pointer-events: none;
}

.toast {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;

    padding: 15px 17px;

    background: #ffffff;

    border: 1px solid #e3e9e5;

    border-radius: 12px;

    box-shadow:
        0 10px 30px rgba(26, 36, 32, 0.12);

    overflow: hidden;

    pointer-events: auto;

    animation:
        toast-slide-in 0.35s ease forwards;

    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
}


/* Toast content */

.toast-content {
    display: flex;
    align-items: center;

    gap: 11px;

    min-width: 0;
}

.toast-message {
    color: #1a2420;

    font-size: 14px;
    line-height: 1.5;

    word-break: break-word;
}


/* Icon */

.toast-icon {
    flex: 0 0 30px;

    width: 30px;
    height: 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #e1f5ee;

    color: #0f6e56;

    font-size: 15px;
    font-weight: 800;
}


/* Close */

.toast-close {
    flex: 0 0 auto;

    width: 28px;
    height: 28px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    border: 0;
    background: transparent;

    color: #5b6b63;

    font-size: 22px;
    line-height: 1;

    cursor: pointer;

    border-radius: 6px;
}

.toast-close:hover {
    background: #f3f6f4;
    color: #1a2420;
}


/* Success */

.toast-success {
    border-left: 4px solid #0f6e56;
}


/* Error */

.toast-error {
    border-left: 4px solid #c0392b;
}

.toast-error .toast-icon {
    background: #fdecea;
    color: #c0392b;
}


/* Warning */

.toast-warning {
    border-left: 4px solid #d68910;
}

.toast-warning .toast-icon {
    background: #fff5df;
    color: #b66a00;
}


/* Info */

.toast-info {
    border-left: 4px solid #0f6e56;
}


/* Progress bar */

.toast-progress {
    position: absolute;

    left: 0;
    bottom: 0;

    width: 100%;
    height: 3px;

    background: #0f6e56;

    transform-origin: left;

    animation: toast-progress 5s linear forwards;
}


/* Animations */

@keyframes toast-slide-in {

    from {
        opacity: 0;
        transform: translateX(120%);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }

}


@keyframes toast-progress {

    from {
        transform: scaleX(1);
    }

    to {
        transform: scaleX(0);
    }

}


/* Closing animation */

.toast.toast-hide {
    opacity: 0;
    transform: translateX(120%);
}


/* Mobile */

@media (max-width: 600px) {

    .toast-container {
        top: 12px;
        right: 12px;
        left: 12px;

        width: auto;
    }

}
.error-page {
            width: 100%;
            max-width: 560px;
            text-align: center;
        }

        .error-code {
            margin: 0;

            font-size: clamp(100px, 20vw, 180px);
            line-height: 0.9;

            font-weight: 900;
            letter-spacing: -8px;

            color: var(--accent);
        }

        .error-title {
            margin: 28px 0 10px;

            font-size: 28px;
            font-weight: 800;
            letter-spacing: -0.5px;
        }

        .error-text {
            max-width: 430px;
            margin: 0 auto 28px;

            color: var(--ink-soft);

            font-size: 15px;
            line-height: 1.7;
        }

        .home-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;

            padding: 13px 22px;

            border-radius: 10px;

            background: var(--accent);
            color: #ffffff;

            text-decoration: none;

            font-size: 14px;
            font-weight: 700;

            transition:
                background 0.2s ease,
                transform 0.2s ease;
        }

        .home-button:hover {
            background: var(--accent-dark);
            transform: translateY(-1px);
        }

        @media (max-width: 500px) {

            .error-title {
                font-size: 24px;
            }

            .error-code {
                letter-spacing: -5px;
            }

        }
        