body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: #f4f6fb;
}

/* WRAPPER */
.home-wrapper {
    text-align: center;
    padding: 80px 20px;
}

/* LOGO */
.logo-container img {
    width: 340px;
    margin-bottom: 30px;
}

/* TITLE */
h1 {
    font-size: 40px;
    margin-bottom: 10px;
    font-weight: 700;
}

.subtitle {
    color: #666;
    margin-bottom: 30px;
}

/* SEARCH */
.search-bar {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.search-bar input {
    padding: 14px 18px;
    border-radius: 30px;
    border: 1px solid #ddd;
    min-width: 200px;
    font-size: 14px;
}

/* BUTTON */
.search-bar button {
    padding: 14px 24px;
    border-radius: 30px;
    border: none;

    background: linear-gradient(135deg, #2f80ed, #7b2cbf);
    color: white;
    font-weight: bold;
    cursor: pointer;
}

/* CATEGORY */
.category-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px;
}

/* BUTTONS */
.category-row a {
    text-decoration: none;
    padding: 16px 22px;

    background: white;
    border-radius: 30px;

    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    color: #333;

    font-weight: 500;
    transition: 0.3s;
}

.category-row a:hover {
    background: linear-gradient(135deg, #2f80ed, #7b2cbf);
    color: white;
    transform: translateY(-4px);
}

/* ENTERPRISE UI 2026 */
:root {
    --yop-blue: #2563ff;
    --yop-purple: #7c3aed;
    --yop-magenta: #c026d3;
    --yop-bg: #f7f9fc;
    --yop-card: #ffffff;
    --yop-text: #0f172a;
    --yop-muted: #64748b;
    --yop-border: #e5e7eb;
    --yop-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

body:has(.enterprise-home),
body:has(.edu-page) {
    background: var(--yop-bg) !important;
    color: var(--yop-text);
}

.enterprise-home,
.enterprise-shell {
    min-height: 100vh;
    padding: 0 clamp(18px, 5vw, 64px) 56px;
    background: radial-gradient(circle at 76% 2%, rgba(192, 38, 211, .18), transparent 34%), radial-gradient(circle at 0% 18%, rgba(37, 99, 255, .12), transparent 34%), linear-gradient(180deg, #ffffff 0%, #f7f9fc 44%, #ffffff 100%);
    color: var(--yop-text);
}

.enterprise-hero {
    max-width: 1280px;
    margin: 0 auto;
    padding: clamp(42px, 7vw, 86px) 0 46px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
    gap: clamp(28px, 5vw, 64px);
    align-items: center;
}

.enterprise-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 18px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(37, 99, 255, .08);
    color: #2147d8;
    font-weight: 800;
    letter-spacing: .01em;
}

.enterprise-hero h1,
.edu-hero h1 {
    max-width: 760px;
    margin: 0 0 18px;
    color: var(--yop-text);
    font-size: clamp(44px, 7vw, 82px);
    line-height: .98;
    letter-spacing: -.055em;
    font-weight: 800;
}

.enterprise-hero-copy > p:not(.enterprise-kicker),
.edu-hero > div > p:not(.enterprise-kicker) {
    max-width: 680px;
    margin: 0 0 26px;
    color: var(--yop-muted);
    font-size: clamp(17px, 2vw, 21px);
    line-height: 1.62;
}

.enterprise-search {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) minmax(180px, 260px) auto;
    gap: 14px;
    width: min(100%, 860px);
    padding: 16px;
    border: 1px solid rgba(226, 232, 240, .95);
    border-radius: 22px;
    background: rgba(255,255,255,.88);
    box-shadow: var(--yop-shadow);
    backdrop-filter: blur(16px);
}

.edu-hero .enterprise-search {
    grid-template-columns: minmax(220px, 1fr) minmax(180px, 230px) minmax(160px, 220px) auto;
}

.enterprise-search input,
.enterprise-search select {
    width: 100%;
    min-height: 58px;
    border: 1px solid var(--yop-border);
    border-radius: 16px;
    background: #fff;
    color: var(--yop-text);
    padding: 0 18px;
    font-weight: 650;
    font-size: 15px;
    outline: none;
}

.enterprise-search input:focus,
.enterprise-search select:focus {
    border-color: rgba(37,99,255,.55);
    box-shadow: 0 0 0 4px rgba(37,99,255,.12);
}

.enterprise-search button,
.enterprise-newsletter button,
.edu-offer-card a {
    min-height: 58px;
    border: 0;
    border-radius: 16px;
    padding: 0 26px;
    background: linear-gradient(135deg, var(--yop-blue), var(--yop-purple));
    color: white;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 14px 28px rgba(37,99,255,.22);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.enterprise-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.enterprise-pills a {
    padding: 9px 13px;
    border-radius: 999px;
    background: #fff;
    color: #334155;
    border: 1px solid var(--yop-border);
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(15,23,42,.04);
}

.enterprise-pills a:hover,
.enterprise-category-card:hover,
.enterprise-popular-grid a:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 45px rgba(15,23,42,.12);
}

.enterprise-mockup {
    border: 1px solid rgba(226,232,240,.85);
    border-radius: 28px;
    background: rgba(255,255,255,.78);
    box-shadow: 0 24px 70px rgba(37,99,255,.16);
    padding: 22px;
    min-height: 360px;
}

.mockup-window {
    overflow: hidden;
    border-radius: 22px;
    background: #fff;
    border: 1px solid var(--yop-border);
}

.mockup-top {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 18px;
    border-bottom: 1px solid var(--yop-border);
}

.mockup-top strong {
    margin-right: auto;
    color: var(--yop-blue);
    font-size: 24px;
}

.mockup-top span {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: #dbeafe;
}

.mockup-body {
    display: grid;
    grid-template-columns: 130px 1fr;
    min-height: 310px;
}

.mockup-body nav {
    display: grid;
    align-content: start;
    gap: 10px;
    padding: 18px;
    background: #f8fafc;
    border-right: 1px solid var(--yop-border);
}

.mockup-body nav span {
    padding: 10px;
    border-radius: 12px;
    color: #475569;
    font-weight: 700;
}

.mockup-body nav .active {
    background: #eef2ff;
    color: var(--yop-blue);
}

.mockup-body section {
    padding: 22px;
}

.mockup-body h2 {
    margin: 0 0 6px;
}

.mockup-body p {
    margin: 0 0 16px;
    color: var(--yop-muted);
}

.mockup-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.mockup-cards article {
    padding: 10px;
    border: 1px solid var(--yop-border);
    border-radius: 16px;
    background: #fff;
}

.mockup-cards img {
    width: 100%;
    height: 76px;
    object-fit: cover;
    border-radius: 12px;
    background: #eff6ff;
}

.mockup-cards b,
.mockup-cards small {
    display: block;
    margin-top: 8px;
}

.mockup-cards small {
    color: var(--yop-muted);
}

.enterprise-section-head {
    max-width: 1280px;
    margin: 22px auto 20px;
    text-align: center;
}

.enterprise-section-head h2 {
    margin: 0;
    font-size: clamp(28px, 4vw, 44px);
    letter-spacing: -.03em;
}

.enterprise-category-grid,
.enterprise-popular-grid,
.edu-offer-grid {
    max-width: 1280px;
    margin: 0 auto 32px;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 22px;
}

.enterprise-category-card,
.enterprise-popular-grid a,
.edu-offer-card,
.enterprise-why-grid article,
.enterprise-stats article,
.enterprise-reviews article {
    border: 1px solid var(--yop-border);
    border-radius: 22px;
    background: rgba(255,255,255,.9);
    box-shadow: var(--yop-shadow);
    transition: .22s ease;
}

.enterprise-category-card {
    min-height: 190px;
    padding: 24px;
    text-align: center;
    text-decoration: none;
    color: var(--yop-text);
}

.enterprise-category-card span {
    display: inline-grid;
    place-items: center;
    width: 72px;
    height: 72px;
    margin-bottom: 14px;
    border-radius: 22px;
    background: linear-gradient(135deg, #eef2ff, #fdf2ff);
    font-size: 34px;
}

.enterprise-category-card h3,
.edu-offer-card h3 {
    margin: 0 0 8px;
    font-size: 22px;
}

.enterprise-category-card p,
.edu-offer-card p {
    color: var(--yop-muted);
    line-height: 1.5;
}

.enterprise-category-card strong {
    color: var(--yop-blue);
}

.enterprise-why-grid,
.enterprise-stats,
.enterprise-timeline,
.enterprise-reviews > div,
.enterprise-newsletter {
    max-width: 1280px;
    margin: 28px auto;
    display: grid;
    gap: 18px;
}

.enterprise-why-grid {
    grid-template-columns: repeat(3, 1fr);
}

.enterprise-why-grid article {
    padding: 26px;
}

.enterprise-why-grid span,
.enterprise-timeline span {
    display: inline-grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--yop-blue), var(--yop-magenta));
    color: white;
    font-weight: 900;
}

.enterprise-stats {
    grid-template-columns: repeat(4, 1fr);
}

.enterprise-stats article {
    padding: 24px;
    text-align: center;
}

.enterprise-stats strong {
    display: block;
    font-size: 34px;
    color: var(--yop-text);
}

.enterprise-stats span,
.enterprise-timeline p,
.enterprise-reviews p {
    color: var(--yop-muted);
}

.enterprise-popular-grid {
    grid-template-columns: repeat(5, 1fr);
}

.enterprise-popular-grid a {
    min-height: 160px;
    padding: 22px;
    color: var(--yop-text);
    text-decoration: none;
}

.enterprise-popular-grid span,
.edu-offer-card > span {
    display: inline-flex;
    margin-bottom: 14px;
    padding: 7px 10px;
    border-radius: 999px;
    background: #eef2ff;
    color: var(--yop-blue);
    font-weight: 800;
}

.enterprise-timeline {
    grid-template-columns: repeat(4, 1fr);
}

.enterprise-timeline article {
    padding: 20px;
    text-align: center;
}

.enterprise-reviews {
    max-width: 1280px;
    margin: 46px auto 24px;
    text-align: center;
}

.enterprise-reviews > div {
    grid-template-columns: repeat(3, 1fr);
    text-align: left;
}

.enterprise-reviews article {
    padding: 24px;
}

.enterprise-reviews strong {
    color: #f59e0b;
}

.enterprise-newsletter {
    grid-template-columns: 1fr minmax(320px, 520px);
    align-items: center;
    padding: 28px;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--yop-blue), var(--yop-purple), var(--yop-magenta));
    color: white;
}

.enterprise-newsletter strong {
    font-size: 26px;
}

.enterprise-newsletter p {
    margin: 8px 0 0;
    color: rgba(255,255,255,.82);
}

.enterprise-newsletter form {
    display: flex;
    gap: 10px;
}

.enterprise-newsletter input {
    flex: 1;
    min-height: 54px;
    border: 0;
    border-radius: 14px;
    padding: 0 16px;
}

.enterprise-newsletter button {
    background: #fff;
    color: var(--yop-blue);
    box-shadow: none;
}

.edu-advisor-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
}

.edu-advisor-card span {
    align-self: start;
    padding: 8px 12px;
    border-radius: 999px;
    background: #eef2ff;
    color: var(--yop-blue);
    font-weight: 800;
}

.edu-advisor-card strong {
    font-size: 34px;
    line-height: 1.12;
}

.edu-advisor-card p {
    color: var(--yop-muted);
    line-height: 1.6;
}

.edu-offer-grid {
    grid-template-columns: repeat(3, 1fr);
}

.edu-offer-card {
    padding: 24px;
}

.edu-offer-card dl {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 20px 0;
}

.edu-offer-card dt {
    color: var(--yop-muted);
    font-size: 13px;
}

.edu-offer-card dd {
    margin: 3px 0 0;
    font-weight: 800;
}

@media (max-width: 1100px) {
    .enterprise-hero,
    .enterprise-newsletter {
        grid-template-columns: 1fr;
    }
    .enterprise-category-grid,
    .enterprise-popular-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .edu-offer-grid,
    .enterprise-why-grid,
    .enterprise-reviews > div,
    .enterprise-timeline,
    .enterprise-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    .enterprise-search,
    .edu-hero .enterprise-search {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 680px) {
    .enterprise-home,
    .enterprise-shell {
        padding-inline: 14px;
    }
    .enterprise-hero {
        padding-top: 34px;
    }
    .enterprise-search,
    .edu-hero .enterprise-search,
    .enterprise-category-grid,
    .enterprise-popular-grid,
    .edu-offer-grid,
    .enterprise-why-grid,
    .enterprise-reviews > div,
    .enterprise-timeline,
    .enterprise-stats {
        grid-template-columns: 1fr;
    }
    .mockup-body {
        grid-template-columns: 1fr;
    }
    .mockup-body nav {
        display: flex;
        overflow-x: auto;
        border-right: 0;
        border-bottom: 1px solid var(--yop-border);
    }
    .mockup-cards {
        grid-template-columns: 1fr;
    }
    .enterprise-newsletter form {
        flex-direction: column;
    }
}

/* Enterprise unification layer */
.yop-global-nav { position: sticky; top: 0; z-index: 50; background: rgba(247,249,252,.92); backdrop-filter: blur(18px); border-bottom: 1px solid rgba(148,163,184,.22); }
.yop-global-nav .nav-link, .yop-global-nav a { transition: transform .18s ease, box-shadow .18s ease, background .18s ease; }
.yop-global-nav .nav-link:hover, .yop-global-nav a:hover { transform: translateY(-1px); }
.enterprise-shell { background: #f7f9fc; color: #0f172a; min-height: 100vh; padding: clamp(32px, 5vw, 72px) clamp(18px, 5vw, 64px); }
.enterprise-hero, .enterprise-panel, .enterprise-form-card, .enterprise-detail-card, .enterprise-side-card, .enterprise-category-card, .enterprise-listing-card { background: rgba(255,255,255,.92); border: 1px solid #e5e7eb; border-radius: 24px; box-shadow: 0 18px 45px rgba(15,23,42,.08); }
.enterprise-hero { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, 390px); gap: 28px; align-items: stretch; padding: clamp(28px, 5vw, 56px); }
.enterprise-hero h1, .enterprise-section-head h1 { font-size: clamp(42px, 7vw, 86px); line-height: .98; margin: 12px 0; letter-spacing: -.06em; }
.enterprise-kicker { color: #2563ff; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.enterprise-search { display: grid; grid-template-columns: 1.2fr .8fr .8fr auto; gap: 12px; padding: 14px; background: #eef4ff; border: 1px solid #dbe7ff; border-radius: 22px; margin-top: 28px; }
.enterprise-search input, .enterprise-search select, .enterprise-form-card input, .enterprise-form-card select, .enterprise-form-card textarea { width: 100%; border: 1px solid #dbe2ea; border-radius: 16px; padding: 16px 18px; background: #fff; color: #0f172a; font-weight: 700; }
.enterprise-search button, .enterprise-primary-button, .enterprise-link-button { display: inline-flex; align-items: center; justify-content: center; border: 0; border-radius: 16px; padding: 16px 24px; background: linear-gradient(135deg,#2563ff,#c026d3); color: #fff !important; font-weight: 900; text-decoration: none; box-shadow: 0 14px 28px rgba(37,99,255,.22); }
.enterprise-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.enterprise-pills a { color: #2563ff; background: #fff; border: 1px solid #e5e7eb; border-radius: 999px; padding: 9px 14px; text-decoration: none; font-weight: 800; }
.enterprise-section-head { max-width: 1180px; margin: 42px auto 18px; display: flex; align-items: end; justify-content: space-between; gap: 18px; }
.enterprise-section-head h2 { font-size: clamp(28px, 4vw, 48px); margin: 0; letter-spacing: -.04em; }
.enterprise-category-grid, .edu-offer-grid { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 20px; }
.enterprise-category-card, .edu-offer-card { padding: 24px; text-decoration: none; color: #0f172a; }
.enterprise-category-card:hover, .edu-offer-card:hover { transform: translateY(-4px); box-shadow: 0 24px 55px rgba(15,23,42,.12); }
.enterprise-category-card span { font-size: 38px; }
.edu-offer-card dl { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; margin: 18px 0; }
.edu-offer-card dt, .enterprise-data-list dt { color: #64748b; font-size: 12px; font-weight: 800; text-transform: uppercase; }
.edu-offer-card dd, .enterprise-data-list dd { margin: 0; font-weight: 800; }
.enterprise-card-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.enterprise-card-actions a { color: #2563ff; font-weight: 900; }
.enterprise-media-strip, .enterprise-gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 10px; margin-bottom: 18px; }
.enterprise-media-strip img, .enterprise-media-strip video, .enterprise-gallery img, .enterprise-gallery video { width: 100%; aspect-ratio: 16/10; object-fit: cover; border-radius: 16px; border: 1px solid #e5e7eb; }
.enterprise-form-page, .enterprise-detail-page { max-width: 1240px; margin: 0 auto; }
.enterprise-form-card { padding: 28px; }
.enterprise-form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.enterprise-form-grid label span { display: block; margin-bottom: 8px; font-weight: 900; }
.enterprise-form-grid label:has(textarea), .enterprise-form-grid label:nth-last-child(-n+2) { grid-column: 1 / -1; }
.enterprise-upload-box { margin: 22px 0; padding: 22px; background: #f8fafc; border: 1px dashed #cbd5e1; border-radius: 18px; }
.enterprise-detail-page { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 24px; }
.enterprise-detail-card, .enterprise-side-card, .enterprise-panel { padding: 28px; }
.enterprise-stats-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; margin: 24px 0; }
.enterprise-stats-row span { padding: 16px; border-radius: 18px; background: #f1f5ff; font-size: 22px; font-weight: 900; }
.enterprise-stats-row small { display: block; font-size: 12px; color: #64748b; text-transform: uppercase; margin-top: 6px; }
.enterprise-dashboard-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 20px; }
.enterprise-inquiry-card { padding: 18px 0; border-bottom: 1px solid #e5e7eb; }
.enterprise-why-grid { max-width: 1180px; margin: 42px auto 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.enterprise-why-grid article { background: #fff; border: 1px solid #e5e7eb; border-radius: 22px; padding: 24px; box-shadow: 0 10px 30px rgba(0,0,0,.06); }
@media (max-width: 900px) { .enterprise-hero, .enterprise-search, .enterprise-detail-page, .enterprise-dashboard-grid, .enterprise-why-grid { grid-template-columns: 1fr; } .enterprise-form-grid { grid-template-columns: 1fr; } .enterprise-section-head { align-items: flex-start; flex-direction: column; } .enterprise-stats-row { grid-template-columns: repeat(2, 1fr); } }

/* Public homepage final polish */
body:has(.enterprise-home) {
    background: #f5f7fb !important;
}

.enterprise-home {
    background: linear-gradient(180deg, #ffffff 0%, #f5f7fb 42%, #ffffff 100%);
    padding: 0 clamp(18px, 5vw, 64px) 64px;
}

.enterprise-home .enterprise-hero {
    max-width: 1280px;
    margin: 0 auto;
    padding: clamp(36px, 6vw, 72px) 0 44px;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 500px);
    gap: clamp(28px, 5vw, 60px);
    align-items: center;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.enterprise-home .enterprise-hero h1,
.enterprise-home .enterprise-section-head h2 {
    letter-spacing: 0;
}

.enterprise-home .enterprise-hero h1 {
    max-width: 800px;
    font-size: clamp(34px, 4.5vw, 58px);
    line-height: 1.08;
}

.enterprise-home .enterprise-kicker {
    width: fit-content;
    display: inline-flex;
    color: #0f766e;
    background: #ecfdf5;
    border: 1px solid #ccfbf1;
    text-transform: none;
    letter-spacing: 0;
}

.enterprise-home .enterprise-hero-copy {
    display: grid;
    gap: 1rem;
}

.enterprise-home .enterprise-hero-copy > p:not(.enterprise-kicker) {
    max-width: 720px;
    color: #475569;
    font-size: 1.06rem;
    line-height: 1.7;
}

.enterprise-home .enterprise-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
}

.enterprise-home .enterprise-hero-actions a {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 1rem;
    border-radius: 8px;
    border: 1px solid #0f766e;
    color: #0f766e;
    background: #fff;
    font-weight: 850;
    text-decoration: none;
}

.enterprise-home .enterprise-hero-actions a:first-child {
    background: #0f766e;
    color: #fff;
}

.enterprise-home .enterprise-search {
    grid-template-columns: minmax(220px, 1fr) minmax(180px, 260px) auto;
    background: #ffffff;
    border: 1px solid #d9e3f0;
    border-radius: 8px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, .08);
}

.enterprise-home .enterprise-search input,
.enterprise-home .enterprise-search select,
.enterprise-home .enterprise-search button,
.enterprise-home .enterprise-newsletter input,
.enterprise-home .enterprise-newsletter button {
    border-radius: 8px;
}

.enterprise-home .enterprise-search button,
.enterprise-home .enterprise-newsletter {
    background: #1552d4;
}

.enterprise-home .enterprise-trust-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.enterprise-home .enterprise-trust-strip span {
    padding: 8px 12px;
    border-radius: 8px;
    background: #ecfdf5;
    border: 1px solid #bbf7d0;
    color: #166534;
    font-weight: 800;
    font-size: 13px;
}

.enterprise-home .enterprise-mockup,
.enterprise-home .mockup-window,
.enterprise-home .mockup-cards article,
.enterprise-home .enterprise-category-card,
.enterprise-home .enterprise-popular-grid a,
.enterprise-home .enterprise-why-grid article,
.enterprise-home .enterprise-stats article,
.enterprise-home .enterprise-reviews article,
.enterprise-home .enterprise-newsletter {
    border-radius: 8px;
}

.enterprise-home .enterprise-mockup {
    background: #ffffff;
    box-shadow: 0 24px 70px rgba(15, 23, 42, .10);
}

.enterprise-home .enterprise-category-card span,
.enterprise-home .enterprise-why-grid span,
.enterprise-home .enterprise-timeline span {
    border-radius: 8px;
    background: #eef5ff;
    color: #1552d4;
}

.enterprise-home .enterprise-section-head {
    display: block;
    text-align: center;
}

.enterprise-home .enterprise-stats strong {
    color: #1552d4;
}

.enterprise-home .enterprise-reviews strong {
    color: #1552d4;
}

.enterprise-home .enterprise-newsletter {
    background: #0f2e5f;
}

@media (max-width: 1100px) {
    .enterprise-home .enterprise-hero {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .enterprise-home {
        padding-inline: 14px;
    }

    .enterprise-home .enterprise-hero {
        padding-top: 28px;
    }

    .enterprise-home .enterprise-hero h1 {
        font-size: clamp(34px, 11vw, 46px);
    }

    .enterprise-home .enterprise-search,
    .enterprise-home .enterprise-newsletter,
    .enterprise-home .enterprise-newsletter form {
        grid-template-columns: 1fr;
    }

    .enterprise-home .enterprise-category-grid,
    .enterprise-home .enterprise-popular-grid,
    .enterprise-home .enterprise-why-grid,
    .enterprise-home .enterprise-stats,
    .enterprise-home .enterprise-timeline,
    .enterprise-home .enterprise-reviews > div {
        grid-template-columns: 1fr;
    }

    .enterprise-home .mockup-body {
        grid-template-columns: 1fr;
    }

    .enterprise-home .mockup-cards {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 981px) {
    .yop-global-nav {
        grid-template-columns: 110px minmax(0, 1fr) auto;
        gap: .7rem;
        padding-block: .65rem;
    }

    .yop-global-logo img {
        width: 82px;
    }

    .yop-global-links {
        gap: .35rem;
    }

    .yop-global-links a,
    .yop-account-links a {
        min-height: 38px;
        padding: .55rem .78rem;
        font-size: 14px;
    }
}

.yop-cookie-banner {
    left: auto;
    right: 24px;
    bottom: 24px;
    max-width: min(620px, calc(100vw - 32px));
    border-radius: 8px;
    box-shadow: 0 18px 55px rgba(15, 23, 42, .16);
}

@media (max-width: 760px) {
    .yop-cookie-banner {
        left: 12px;
        right: 12px;
        bottom: 12px;
    }
}

/* Homepage redesign aligned with the Claude website concept. Scoped to the web homepage only. */
.home-page {
    --home-blue-50: #eaf4ff;
    --home-blue-100: #d4e8ff;
    --home-blue-300: #5bb8ff;
    --home-blue-500: #2563ff;
    --home-blue-700: #1a3a8c;
    --home-navy: #061b4a;
    --home-text: #0b1b3d;
    --home-muted: #475569;
    --home-soft: #f7faff;
    --home-border: #dce7f3;
    --home-green: #1b873f;
    background: #ffffff !important;
    color: var(--home-text) !important;
}

.home-page .yop-page-main {
    overflow-x: hidden !important;
    background: linear-gradient(180deg, #f7faff 0%, #ffffff 42%, #f7faff 100%) !important;
}

.home-page .yop-global-nav {
    background: rgba(255, 255, 255, .92) !important;
    border-bottom: 1px solid rgba(148, 163, 184, .25) !important;
    backdrop-filter: blur(18px) !important;
}

.home-page .yop-global-links a,
.home-page .yop-account-links a,
.home-page .yop-nav-more summary {
    border-radius: 8px !important;
    color: var(--home-muted) !important;
    background: transparent !important;
}

.home-page .yop-global-links a:hover,
.home-page .yop-account-links a:hover,
.home-page .yop-nav-more summary:hover,
.home-page .yop-global-links a.is-active,
.home-page .yop-account-links a.is-active {
    color: var(--home-blue-500) !important;
    background: var(--home-blue-50) !important;
}

.home-page .yop-account-links a.is-primary {
    color: #ffffff !important;
    background: linear-gradient(135deg, var(--home-blue-500), var(--home-navy)) !important;
}

.home-launch {
    min-height: 100vh;
    color: var(--home-text);
}

.home-hero,
.home-trust-grid,
.home-section-head,
.home-branch-grid,
.home-split-section,
.home-steps,
.home-provider-cta {
    width: min(1180px, calc(100% - 32px));
    margin-inline: auto;
}

.home-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
    gap: 2.25rem;
    align-items: center;
    padding: 4rem 0 2.5rem;
}

.home-hero-copy {
    display: grid;
    gap: 1.1rem;
    min-width: 0;
}

.home-eyebrow {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 .8rem;
    border: 1px solid var(--home-blue-100);
    border-radius: 8px;
    background: var(--home-blue-50);
    color: var(--home-blue-700);
    font-size: .8rem;
    font-weight: 850;
    letter-spacing: 0;
    text-transform: uppercase;
}

.home-hero h1 {
    margin: 0;
    color: var(--home-text);
    font-size: 4.4rem;
    line-height: 1.02;
    letter-spacing: 0;
    font-weight: 900;
}

.home-hero h1 span {
    background: linear-gradient(135deg, var(--home-blue-300), var(--home-blue-500), var(--home-navy));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.home-hero-copy > p,
.home-section-head p,
.home-split-section p,
.home-provider-cta p {
    color: var(--home-muted);
    font-size: 1.08rem;
    line-height: 1.7;
}

.home-hero-copy > p {
    max-width: 680px;
    margin: 0;
}

.home-search {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 220px auto;
    gap: .6rem;
    align-items: end;
    max-width: 850px;
    padding: .65rem;
    border: 1px solid var(--home-border);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 18px 45px rgba(10, 42, 110, .10);
}

.home-search label {
    display: grid;
    gap: .28rem;
    min-width: 0;
}

.home-search label span {
    color: var(--home-muted);
    font-size: .75rem;
    font-weight: 850;
    text-transform: uppercase;
}

.home-search input,
.home-search select,
.home-search button {
    width: 100%;
    min-height: 52px;
    border-radius: 8px;
    font: inherit;
    font-weight: 750;
}

.home-search input,
.home-search select {
    border: 1px solid var(--home-border);
    background: #ffffff;
    color: var(--home-text);
    padding: 0 .95rem;
}

.home-search input:focus,
.home-search select:focus {
    outline: 3px solid rgba(91, 184, 255, .28);
    border-color: var(--home-blue-500);
}

.home-search button,
.home-primary-action {
    border: 0;
    background: linear-gradient(135deg, var(--home-blue-500), var(--home-navy));
    color: #ffffff !important;
    text-decoration: none;
    box-shadow: 0 14px 30px rgba(37, 99, 255, .22);
}

.home-hero-actions,
.home-inline-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    align-items: center;
}

.home-hero-actions a,
.home-inline-actions a,
.home-provider-cta a {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 1rem;
    border: 1px solid var(--home-border);
    border-radius: 8px;
    background: #ffffff;
    color: var(--home-blue-700);
    font-weight: 850;
    text-decoration: none;
}

.home-meta-strip {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
}

.home-meta-strip span {
    padding: .5rem .7rem;
    border-radius: 8px;
    border: 1px solid #bbf7d0;
    background: #ecfdf5;
    color: #166534;
    font-size: .82rem;
    font-weight: 850;
}

.home-product-board {
    display: grid;
    gap: .95rem;
    padding: 1.05rem;
    border: 1px solid var(--home-border);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 24px 70px rgba(10, 42, 110, .14);
}

.home-board-head {
    display: flex;
    align-items: center;
    gap: .8rem;
}

.home-board-head img {
    width: 78px;
    height: auto;
    display: block;
}

.home-board-head strong,
.home-board-main b,
.home-board-score strong,
.home-trust-grid strong,
.home-branch-grid h3,
.home-split-section h2,
.home-steps h3,
.home-provider-cta h2,
.home-section-head h2 {
    color: var(--home-text);
}

.home-board-head small,
.home-board-main small,
.home-board-score span {
    color: var(--home-muted);
}

.home-board-tabs {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: .5rem;
}

.home-board-tabs span {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--home-border);
    border-radius: 8px;
    background: var(--home-soft);
    color: var(--home-muted);
    font-size: .84rem;
    font-weight: 800;
}

.home-board-tabs .is-active {
    color: var(--home-blue-700);
    background: var(--home-blue-50);
    border-color: var(--home-blue-100);
}

.home-board-showcase {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--home-border);
    border-radius: 8px;
    background: var(--home-soft);
    height: clamp(190px, 20vw, 240px);
}

.home-board-showcase-track {
    display: flex;
    width: 300%;
    height: 100%;
    animation: homeBoardShowcase 18s infinite;
}

.home-board-showcase figure {
    position: relative;
    width: 33.3333%;
    flex: 0 0 33.3333%;
    margin: 0;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #ffffff 0%, var(--home-blue-50) 100%);
}

.home-board-showcase img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    padding: .5rem;
}

.home-board-showcase figcaption {
    position: absolute;
    left: .75rem;
    bottom: .75rem;
    min-height: 32px;
    display: inline-flex;
    align-items: center;
    padding: .35rem .65rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, .92);
    color: var(--home-blue-700);
    font-size: .8rem;
    font-weight: 850;
    box-shadow: 0 8px 18px rgba(10, 42, 110, .12);
}

.home-board-main {
    display: grid;
    gap: .7rem;
}

.home-board-main article {
    display: grid;
    grid-template-columns: 74px minmax(0, 1fr);
    gap: .8rem;
    align-items: center;
    padding: .72rem;
    border: 1px solid var(--home-border);
    border-radius: 8px;
    background: #ffffff;
}

.home-board-main img {
    width: 74px;
    height: 58px;
    object-fit: cover;
    border-radius: 8px;
    background: var(--home-blue-50);
}

.home-board-main div {
    display: grid;
    gap: .18rem;
    min-width: 0;
}

.home-board-score {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: .85rem;
    align-items: center;
    padding: .85rem;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--home-blue-50), #ffffff);
    border: 1px solid var(--home-blue-100);
}

.home-board-score strong {
    color: var(--home-blue-700);
    font-size: 1.55rem;
}

.home-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: .85rem;
    margin-top: 1rem;
}

.home-trust-grid article,
.home-branch-grid a,
.home-career-panel article,
.home-steps article {
    border: 1px solid var(--home-border);
    border-radius: 8px;
    background: rgba(255, 255, 255, .95);
    box-shadow: 0 12px 32px rgba(10, 42, 110, .07);
}

.home-trust-grid article {
    display: grid;
    gap: .2rem;
    padding: 1.05rem;
    text-align: center;
}

.home-trust-grid strong {
    font-size: 1.75rem;
    color: var(--home-blue-700);
}

.home-trust-grid span {
    color: var(--home-muted);
    font-weight: 700;
}

.home-section-head {
    display: grid;
    justify-items: center;
    gap: .75rem;
    margin-top: 4rem;
    margin-bottom: 1.2rem;
    text-align: center;
}

.home-section-head h2,
.home-split-section h2,
.home-provider-cta h2 {
    margin: 0;
    font-size: 2.35rem;
    line-height: 1.12;
    letter-spacing: 0;
}

.home-section-head p {
    max-width: 760px;
    margin: 0;
}

.home-branch-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.home-branch-grid a {
    display: grid;
    gap: .7rem;
    min-height: 220px;
    padding: 1.25rem;
    color: var(--home-text);
    text-decoration: none;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.home-branch-grid a:hover,
.home-branch-grid a:focus-visible {
    transform: translateY(-3px);
    border-color: var(--home-blue-300);
    box-shadow: 0 18px 45px rgba(10, 42, 110, .12);
}

.home-branch-grid a > span {
    width: 54px;
    height: 54px;
    display: inline-grid;
    place-items: center;
    border-radius: 8px;
    background: var(--home-blue-50);
    color: var(--home-blue-700);
    font-weight: 900;
}

.home-branch-grid h3 {
    margin: 0;
    font-size: 1.22rem;
}

.home-branch-grid p {
    margin: 0;
    color: var(--home-muted);
    line-height: 1.55;
}

.home-branch-grid strong {
    align-self: end;
    color: var(--home-blue-500);
}

.home-split-section,
.home-provider-cta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, .7fr);
    gap: 1.25rem;
    align-items: center;
    margin-top: 4rem;
    padding: 2rem;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--home-navy), var(--home-blue-700));
    color: #ffffff;
    box-shadow: 0 22px 60px rgba(6, 27, 74, .18);
}

.home-split-section .home-eyebrow,
.home-provider-cta .home-eyebrow {
    border-color: rgba(255, 255, 255, .18);
    background: rgba(255, 255, 255, .10);
    color: #ffffff;
}

.home-split-section h2,
.home-provider-cta h2,
.home-split-section p,
.home-provider-cta p {
    color: #ffffff;
}

.home-career-panel {
    display: grid;
    gap: .75rem;
}

.home-career-panel article {
    display: grid;
    gap: .25rem;
    padding: 1rem;
    background: rgba(255, 255, 255, .10);
    border-color: rgba(255, 255, 255, .18);
    box-shadow: none;
}

.home-career-panel strong {
    color: #ffffff;
    font-size: 1.4rem;
}

.home-career-panel span {
    color: rgba(255, 255, 255, .78);
}

.home-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 4rem;
}

.home-steps article {
    display: grid;
    gap: .65rem;
    padding: 1.25rem;
}

.home-steps span {
    width: 42px;
    height: 42px;
    display: inline-grid;
    place-items: center;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--home-blue-500), var(--home-navy));
    color: #ffffff;
    font-weight: 900;
}

.home-steps h3,
.home-steps p {
    margin: 0;
}

.home-steps p {
    color: var(--home-muted);
    line-height: 1.55;
}

.home-provider-cta {
    grid-template-columns: minmax(0, 1fr) auto;
    margin-bottom: 4rem;
    background: #ffffff;
    border: 1px solid var(--home-border);
    color: var(--home-text);
}

.home-provider-cta h2 {
    color: var(--home-text);
}

.home-provider-cta p {
    max-width: 720px;
    color: var(--home-muted);
}

.home-provider-cta .home-eyebrow {
    background: var(--home-blue-50);
    border-color: var(--home-blue-100);
    color: var(--home-blue-700);
}

@media (max-width: 1120px) {
    .home-hero,
    .home-split-section,
    .home-provider-cta {
        grid-template-columns: 1fr;
    }

    .home-branch-grid,
    .home-trust-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .home-hero,
    .home-trust-grid,
    .home-section-head,
    .home-branch-grid,
    .home-split-section,
    .home-steps,
    .home-provider-cta {
        width: min(100% - 24px, 1180px);
    }

    .home-hero {
        padding-top: 2rem;
    }

    .home-hero h1 {
        font-size: 2.55rem;
    }

    .home-section-head h2,
    .home-split-section h2,
    .home-provider-cta h2 {
        font-size: 1.8rem;
    }

    .home-search,
    .home-branch-grid,
    .home-trust-grid,
    .home-steps,
    .home-board-tabs {
        grid-template-columns: 1fr;
    }

    .home-hero-actions,
    .home-inline-actions {
        display: grid;
    }

    .home-hero-actions a,
    .home-inline-actions a,
    .home-provider-cta a,
    .home-search button {
        width: 100%;
    }

    .home-product-board {
        padding: .85rem;
    }

    .home-board-main article {
        grid-template-columns: 62px minmax(0, 1fr);
    }

    .home-board-main img {
        width: 62px;
        height: 52px;
    }
}

/* App-aligned homepage. Keep this scoped: it changes the web homepage, not the native app. */
.home-app-page {
    --app-primary: #2563FF;
    --app-primary-dark: #1A46CC;
    --app-primary-light: #5E9BFF;
    --app-bg: #F3F6FB;
    --app-surface: #FFFFFF;
    --app-surface-secondary: #F4F7FC;
    --app-text: #13183A;
    --app-text-secondary: #525C77;
    --app-text-tertiary: #94A0BB;
    --app-border: #E2E9F4;
    --app-border-light: #EEF3FA;
    --app-success: #10B981;
    --app-radius-md: 10px;
    --app-radius-lg: 14px;
    --app-radius-xl: 20px;
    --app-shadow-sm: 0 2px 8px rgba(37, 99, 255, .10);
    --app-shadow-md: 0 8px 22px rgba(37, 99, 255, .14);
    background: var(--app-bg) !important;
}

.home-app-page .yop-page-main {
    background: var(--app-bg) !important;
    overflow-x: hidden !important;
}

.home-app-page .yop-global-nav {
    background: var(--app-surface) !important;
    border-bottom: 1px solid var(--app-border-light) !important;
    box-shadow: none !important;
}

.home-app-page .yop-global-logo img {
    width: 78px !important;
}

.home-app-page .yop-global-links a,
.home-app-page .yop-account-links a,
.home-app-page .yop-nav-more summary {
    min-height: 38px !important;
    border-radius: var(--app-radius-lg) !important;
    color: var(--app-text-secondary) !important;
    background: transparent !important;
    border-color: transparent !important;
    font-weight: 600 !important;
}

.home-app-page .yop-global-links a:hover,
.home-app-page .yop-global-links a.is-active,
.home-app-page .yop-account-links a:hover,
.home-app-page .yop-nav-more summary:hover {
    color: var(--app-primary) !important;
    background: rgba(37, 99, 255, .08) !important;
}

.home-app-page .yop-account-links a.is-primary {
    color: var(--app-primary) !important;
    background: rgba(94, 155, 255, .14) !important;
    border-color: var(--app-border) !important;
}

.home-app-shell {
    width: min(1180px, calc(100% - 32px));
    margin-inline: auto;
    padding: 28px 0 56px;
    color: var(--app-text);
}

.home-app-shell,
.home-app-shell *,
.home-app-shell *::before,
.home-app-shell *::after {
    box-sizing: border-box;
}

.home-app-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
    gap: 28px;
    align-items: start;
}

.home-app-main {
    display: grid;
    gap: 14px;
    min-width: 0;
}

.home-app-label {
    width: fit-content;
    display: inline-flex;
    padding: 0;
    color: var(--app-primary);
    background: transparent;
    border: 0;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0;
}

.home-app-main h1 {
    margin: 0;
    color: var(--app-text);
    font-size: 46px;
    line-height: 1.08;
    letter-spacing: 0;
    font-weight: 800;
}

.home-app-slogan {
    margin: 4px 0 0;
    color: var(--app-primary);
    font-size: 17px;
    font-weight: 700;
}

.home-app-subtitle {
    margin: 0 0 2px;
    color: var(--app-text-tertiary);
    font-size: 15px;
    font-weight: 500;
}

.home-app-search-card {
    display: grid;
    gap: 12px;
    width: 100%;
    max-width: 640px;
    margin-top: 4px;
    padding: 16px;
    border-radius: var(--app-radius-xl);
    border: 1px solid var(--app-border-light);
    background: var(--app-surface);
    box-shadow: var(--app-shadow-md);
}

.home-app-search-card label {
    display: grid;
    gap: 7px;
    min-width: 0;
}

.home-app-search-card label span {
    color: var(--app-text-secondary);
    font-size: 13px;
    font-weight: 700;
}

.home-app-search-card input,
.home-app-search-card select {
    width: 100%;
    min-width: 0;
    min-height: 48px;
    border-radius: var(--app-radius-lg);
    border: 1.5px solid var(--app-border);
    background: var(--app-surface-secondary);
    color: var(--app-text);
    padding: 0 14px;
    font: inherit;
    font-size: 15px;
    font-weight: 600;
}

.home-app-search-card input::placeholder {
    color: var(--app-text-tertiary);
}

.home-app-search-card input:focus,
.home-app-search-card select:focus {
    outline: 0;
    border-color: var(--app-primary);
    background: var(--app-surface);
    box-shadow: var(--app-shadow-sm);
}

.home-app-search-card button,
.home-app-phone-card a,
.home-app-promo a {
    width: 100%;
    min-width: 0;
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: var(--app-radius-lg);
    background: linear-gradient(90deg, var(--app-primary), var(--app-primary-dark));
    color: #fff !important;
    font: inherit;
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: var(--app-shadow-sm);
}

.home-app-quick-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    max-width: 680px;
}

.home-app-quick-row a {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 0 12px;
    border-radius: 999px;
    border: 1px solid var(--app-border);
    background: var(--app-surface);
    color: var(--app-text);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: var(--app-shadow-sm);
}

.home-app-quick-row span {
    color: var(--app-primary);
    font-size: 11px;
    font-weight: 800;
}

.home-app-preview {
    min-width: 0;
}

.home-app-phone {
    display: grid;
    gap: 14px;
    padding: 16px;
    border: 1px solid var(--app-border-light);
    border-radius: 28px;
    background: var(--app-surface);
    box-shadow: var(--app-shadow-md);
}

.home-app-phone-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.home-app-phone-head img {
    width: 78px;
    height: auto;
}

.home-app-phone-head a {
    min-height: 30px;
    display: inline-flex;
    align-items: center;
    padding: 0 10px;
    border-radius: 999px;
    background: #E9F2FE;
    color: var(--app-primary);
    font-size: 11px;
    font-weight: 700;
    text-decoration: none;
}

.home-app-phone-card {
    display: grid;
    gap: 8px;
    padding: 16px;
    border-radius: var(--app-radius-xl);
    background: var(--app-primary);
    color: #fff;
}

.home-app-phone-card strong {
    color: #fff;
    font-size: 20px;
}

.home-app-phone-card span {
    color: rgba(255, 255, 255, .82);
    line-height: 1.45;
}

.home-app-phone-card a {
    min-height: 42px;
    margin-top: 4px;
    background: #fff;
    color: var(--app-primary) !important;
    box-shadow: none;
    font-size: 14px;
}

.home-app-phone-list {
    display: grid;
    gap: 10px;
}

.home-app-phone-list article {
    display: grid;
    gap: 2px;
    padding: 14px;
    border: 1px solid var(--app-border-light);
    border-radius: var(--app-radius-lg);
    background: var(--app-surface-secondary);
}

.home-app-phone-list b,
.home-app-section h2,
.home-app-category-grid b,
.home-app-promo h2 {
    color: var(--app-text);
}

.home-app-phone-list small {
    color: var(--app-text-secondary);
}

.home-app-section {
    display: grid;
    gap: 12px;
    margin-top: 28px;
}

.home-app-section h2 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
}

.home-app-category-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 12px;
}

.home-app-category-grid a {
    min-height: 116px;
    display: grid;
    justify-items: center;
    align-content: center;
    gap: 8px;
    padding: 12px 8px;
    color: var(--app-text);
    text-align: center;
    text-decoration: none;
}

.home-app-category-grid span {
    width: 56px;
    height: 56px;
    display: inline-grid;
    place-items: center;
    border-radius: var(--app-radius-lg);
    background: var(--app-surface);
    color: var(--app-primary);
    font-size: 15px;
    font-weight: 800;
    box-shadow: var(--app-shadow-sm);
}

.home-app-category-grid b {
    font-size: 13px;
    font-weight: 600;
}

.home-app-promo {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
    margin-top: 28px;
    padding: 20px;
    border-radius: var(--app-radius-xl);
    background: var(--app-primary);
}

.home-app-promo h2 {
    margin: 0 0 4px;
    color: #fff;
    font-size: 20px;
}

.home-app-promo p {
    margin: 0;
    color: rgba(255, 255, 255, .82);
    line-height: 1.5;
}

.home-app-promo a {
    min-height: 44px;
    padding: 0 18px;
    background: #fff;
    color: var(--app-primary) !important;
    box-shadow: none;
    font-size: 14px;
}

.home-app-chip-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.home-app-chip-grid a {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    padding: 0 13px;
    border-radius: 999px;
    border: 1px solid var(--app-border);
    background: var(--app-surface);
    color: var(--app-primary);
    font-weight: 700;
    text-decoration: none;
    box-shadow: var(--app-shadow-sm);
}

@media (max-width: 980px) {
    .home-app-hero,
    .home-app-promo {
        grid-template-columns: 1fr;
    }

    .home-app-category-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 620px) {
    .home-app-shell {
        width: auto;
        margin-inline: 14px;
        padding-top: 20px;
    }

    .home-app-hero {
        grid-template-columns: minmax(0, 1fr);
    }

    .home-app-main h1 {
        font-size: 30px;
        line-height: 1.14;
    }

    .home-app-search-card {
        margin-inline: 0;
        max-width: 100%;
        overflow: hidden;
    }

    .home-app-category-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 10px;
        max-width: 100%;
    }

    .home-app-category-grid a {
        min-height: 104px;
        min-width: 0;
    }

    .home-app-quick-row,
    .home-app-chip-grid {
        max-width: 100%;
        overflow: hidden;
    }

    .home-app-preview {
        display: none;
    }

    .home-app-promo a,
    .home-app-search-card button {
        width: 100%;
    }
}

html[data-yop-theme="light"] body.home-app-page .yop-page-main {
    background: var(--app-bg) !important;
}

html[data-yop-theme="light"] body.home-app-page .home-app-main h1 {
    font-size: clamp(30px, 4.1vw, 46px) !important;
    line-height: 1.1 !important;
    letter-spacing: 0 !important;
}

html[data-yop-theme="light"] body.home-app-page .home-app-search-card button,
html[data-yop-theme="light"] body.home-app-page .home-app-phone-card,
html[data-yop-theme="light"] body.home-app-page .home-app-promo {
    background: linear-gradient(90deg, var(--app-primary), var(--app-primary-dark)) !important;
}

html[data-yop-theme="light"] body.home-app-page .home-app-phone-card a,
html[data-yop-theme="light"] body.home-app-page .home-app-promo a {
    background: #ffffff !important;
    color: var(--app-primary) !important;
}

html[data-yop-theme="light"] body.home-app-page .home-app-category-grid a,
html[data-yop-theme="light"] body.home-app-page .home-app-quick-row a,
html[data-yop-theme="light"] body.home-app-page .home-app-chip-grid a {
    background: transparent !important;
}

html[data-yop-theme="light"] body.home-app-page .home-app-search-card input,
html[data-yop-theme="light"] body.home-app-page .home-app-search-card select {
    border-radius: var(--app-radius-lg) !important;
    background: var(--app-surface-secondary) !important;
    border-color: var(--app-border) !important;
}

/* Web homepage: aligned with the Claude website mockup, not the native app shell. */
.home-web-page {
    --home-blue-50: #EAF4FF;
    --home-blue-100: #D4E8FF;
    --home-blue-300: #5BB8FF;
    --home-blue-500: #2563FF;
    --home-blue-600: #1F4FCC;
    --home-blue-700: #1A3A8C;
    --home-blue-800: #0A2A6E;
    --home-navy: #061B4A;
    --home-text: #0B1B3D;
    --home-muted: #475569;
    --home-tertiary: #94A3B8;
    --home-soft: #F7FAFF;
    --home-tint: #F2F7FF;
    --home-border: #E2E8F0;
    --home-border-strong: #CBD5E1;
    --home-gradient: linear-gradient(135deg, #5BB8FF 0%, #2563FF 50%, #0A2A6E 100%);
    --home-gradient-dark: linear-gradient(135deg, #1A3A8C 0%, #061B4A 100%);
    --home-shadow: 0 8px 24px rgba(10, 42, 110, .10);
    --home-shadow-lg: 0 16px 48px rgba(10, 42, 110, .14);
}

.home-web-page .yop-page-main {
    background:
        radial-gradient(circle at 86% 8%, rgba(91, 184, 255, .18), transparent 32rem),
        radial-gradient(circle at 0% 34%, rgba(10, 42, 110, .08), transparent 28rem),
        linear-gradient(180deg, var(--home-soft) 0%, #ffffff 42%, #ffffff 100%) !important;
}

.home-web-page .yop-global-nav {
    background: rgba(255, 255, 255, .90) !important;
    border-bottom: 1px solid var(--home-border) !important;
    box-shadow: none !important;
}

.home-web-page .yop-global-logo img {
    width: 94px !important;
}

.home-web-page .yop-account-links a.is-primary {
    background: var(--home-gradient) !important;
    box-shadow: 0 6px 16px rgba(37, 99, 255, .26) !important;
}

.home-web-page .home-hero {
    padding: clamp(3.4rem, 7vw, 5.4rem) 0 2.2rem;
    grid-template-columns: minmax(0, 1.06fr) minmax(360px, .94fr);
    gap: clamp(2rem, 5vw, 4rem);
}

.home-web-page .home-eyebrow {
    min-height: 30px;
    border-radius: 999px;
    padding: 0 .8rem;
    background: var(--home-blue-50);
    color: var(--home-blue-700);
    letter-spacing: .04em;
}

.home-web-page .home-hero h1 {
    max-width: 720px;
    font-size: clamp(3.3rem, 6.2vw, 5.35rem);
    line-height: 1.02;
}

.home-web-page .home-hero h1 span,
.home-web-page .home-section-head h2 span {
    background: var(--home-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.home-web-page .home-hero h1 span {
    display: block;
}

.home-web-page .home-search {
    max-width: 760px;
    grid-template-columns: minmax(0, 1fr) 180px auto;
    gap: .5rem;
    padding: .5rem;
    border-color: var(--home-border);
    border-radius: 16px;
    box-shadow: var(--home-shadow);
}

.home-web-page .home-search input,
.home-web-page .home-search select,
.home-web-page .home-search button {
    min-height: 52px;
    border-radius: 12px;
}

.home-web-page .home-search button {
    background: var(--home-gradient) !important;
    box-shadow: 0 6px 16px rgba(37, 99, 255, .28);
}

.home-web-page .home-hero-actions a,
.home-web-page .home-inline-actions a,
.home-web-page .home-provider-cta a {
    min-height: 44px;
    border-radius: 12px;
    border-color: var(--home-border-strong);
}

.home-web-page .home-meta-strip span {
    border-color: #BBF7D0;
    background: #ECFDF5;
    color: #166534;
}

.home-web-page .home-product-board {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    padding: 1.25rem;
    box-shadow: 0 24px 64px rgba(10, 42, 110, .18);
}

.home-web-page .home-product-board::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 85% 0%, rgba(91, 184, 255, .15), transparent 44%);
    pointer-events: none;
}

.home-web-page .home-product-board > * {
    position: relative;
}

.home-web-page .home-board-head img {
    width: 96px;
}

.home-web-page .home-board-tabs span,
.home-web-page .home-board-main article,
.home-web-page .home-board-main img,
.home-web-page .home-board-score,
.home-web-page .home-trust-grid article,
.home-web-page .home-branch-grid a,
.home-web-page .home-career-panel article,
.home-web-page .home-steps article {
    border-radius: 16px;
}

.home-web-page .home-board-tabs .is-active,
.home-web-page .home-board-score {
    background: var(--home-blue-50);
    border-color: var(--home-blue-100);
}

.home-web-page .home-trust-grid {
    margin-top: 1.5rem;
    padding: 1.25rem 0;
}

.home-web-page .home-trust-grid article {
    box-shadow: none;
}

.home-web-page .home-campaign-window {
    margin: 2rem 0 4.6rem;
    overflow: hidden;
    border: 1px solid var(--home-border);
    border-radius: 28px;
    background: rgba(255, 255, 255, .94);
    box-shadow: var(--home-shadow-lg);
}

.home-web-page .home-campaign-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    padding: clamp(1.25rem, 3vw, 2rem);
    border-bottom: 1px solid var(--home-border);
}

.home-web-page .home-campaign-head h2 {
    margin: .65rem 0 0;
    max-width: 720px;
    color: var(--home-navy);
    font-size: clamp(1.45rem, 3vw, 2.35rem);
    line-height: 1.08;
    letter-spacing: 0;
}

.home-web-page .home-campaign-head > a,
.home-web-page .home-campaign-actions > a,
.home-web-page .home-campaign-copy a {
    min-height: 44px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .75rem 1rem;
    background: var(--home-gradient);
    color: #ffffff;
    font-weight: 750;
    text-decoration: none;
    box-shadow: 0 10px 22px rgba(37, 99, 255, .24);
}

.home-web-page .home-campaign-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: .75rem;
    flex-wrap: wrap;
}

.home-web-page .home-campaign-controls {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    min-height: 44px;
    padding: .25rem;
    border: 1px solid var(--home-border);
    border-radius: 14px;
    background: #F4F7FC;
}

.home-web-page .home-campaign-controls button,
.home-web-page .home-campaign-dots button {
    border: 0;
    cursor: pointer;
    color: var(--home-blue-700);
}

.home-web-page .home-campaign-controls button {
    width: 34px;
    height: 34px;
    border-radius: 11px;
    background: #FFFFFF;
    font-size: 1.35rem;
    line-height: 1;
    box-shadow: 0 6px 14px rgba(37, 99, 255, .10);
}

.home-web-page .home-campaign-controls span {
    min-width: 46px;
    color: var(--home-muted);
    font-size: .82rem;
    font-weight: 800;
    text-align: center;
}

.home-web-page .home-campaign-controls button:hover,
.home-web-page .home-campaign-controls button:focus-visible,
.home-web-page .home-campaign-dots button:hover,
.home-web-page .home-campaign-dots button:focus-visible {
    background: var(--home-blue-50);
    outline: 2px solid rgba(37, 99, 255, .22);
    outline-offset: 2px;
}

.home-web-page .home-campaign-frame {
    overflow: hidden;
}

.home-web-page .home-campaign-track {
    position: relative;
    display: block;
    width: 100%;
}

.home-web-page .home-campaign-window:hover .home-campaign-slide {
    animation-play-state: paused;
}

.home-web-page .home-campaign-slide {
    box-sizing: border-box;
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, .42fr);
    gap: clamp(1rem, 3vw, 2rem);
    align-items: stretch;
    padding: clamp(1rem, 3vw, 2rem);
    opacity: 0;
    visibility: hidden;
    animation: homeCampaignFade 42s infinite;
}

.home-web-page .home-campaign-slide:first-child {
    position: relative;
}

.home-web-page .home-campaign-slide:not(:first-child) {
    position: absolute;
    inset: 0;
}

.home-web-page .home-campaign-slide:nth-child(2) {
    animation-delay: 7s;
}

.home-web-page .home-campaign-slide:nth-child(3) {
    animation-delay: 14s;
}

.home-web-page .home-campaign-slide:nth-child(4) {
    animation-delay: 21s;
}

.home-web-page .home-campaign-slide:nth-child(5) {
    animation-delay: 28s;
}

.home-web-page .home-campaign-slide:nth-child(6) {
    animation-delay: 35s;
}

.home-web-page .home-campaign-window.is-campaign-ready .home-campaign-slide,
.home-web-page .home-campaign-window.is-carousel-ready .home-campaign-slide {
    animation: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity .22s ease, visibility .22s ease;
}

.home-web-page .home-campaign-window.is-campaign-ready .home-campaign-slide.is-active,
.home-web-page .home-campaign-window.is-carousel-ready .home-campaign-slide.is-active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.home-web-page .home-campaign-media {
    min-height: 320px;
    display: grid;
    place-items: center;
    border-radius: 22px;
    background:
        linear-gradient(135deg, rgba(234, 244, 255, .96), rgba(255, 255, 255, .92)),
        radial-gradient(circle at 20% 15%, rgba(91, 184, 255, .22), transparent 22rem);
    border: 1px solid var(--home-border);
}

.home-web-page .home-campaign-media img {
    width: min(100%, 620px);
    max-height: 460px;
    object-fit: contain;
    filter: drop-shadow(0 18px 26px rgba(10, 42, 110, .16));
}

.home-web-page .home-campaign-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: .85rem;
    min-width: 0;
    max-width: 760px;
    color: var(--home-text);
}

.home-web-page .home-campaign-copy span {
    display: inline-flex;
    border-radius: 999px;
    padding: .45rem .75rem;
    background: var(--home-blue-50);
    color: var(--home-blue-700);
    font-weight: 800;
    font-size: .82rem;
}

.home-web-page .home-campaign-copy h3 {
    margin: 0;
    color: var(--home-navy);
    font-size: clamp(1.7rem, 3vw, 2.55rem);
    line-height: 1.06;
    letter-spacing: 0;
    overflow-wrap: anywhere;
}

.home-web-page .home-campaign-copy p {
    margin: 0;
    color: var(--home-muted);
    font-size: 1rem;
    line-height: 1.65;
    overflow-wrap: anywhere;
}

.home-web-page .home-campaign-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: 0 clamp(1rem, 3vw, 2rem) 1.2rem;
}

.home-web-page .home-campaign-dots button {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: #D1DDF0;
    transition: width .18s ease, background .18s ease;
}

.home-web-page .home-campaign-dots button[aria-current="true"] {
    width: 30px;
    background: var(--home-gradient);
}

.home-web-page .home-ad-placement-board {
    display: grid;
    grid-template-columns: minmax(260px, .78fr) minmax(0, 1.22fr);
    gap: 1.25rem;
    align-items: start;
    margin: 0 0 4.4rem;
}

.home-web-page .home-ad-placement-intro {
    display: grid;
    gap: .85rem;
    max-width: 520px;
}

.home-web-page .home-ad-placement-intro h2 {
    margin: 0;
    color: var(--home-navy);
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    line-height: 1.08;
    letter-spacing: 0;
}

.home-web-page .home-ad-placement-intro p {
    margin: 0;
    color: var(--home-muted);
    line-height: 1.65;
}

.home-web-page .home-ad-placement-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .9rem;
}

.home-web-page .home-ad-placement-grid article {
    display: grid;
    align-content: start;
    gap: .7rem;
    min-height: 172px;
    padding: 1rem;
    border: 1px solid var(--home-border);
    border-radius: 18px;
    background: #FFFFFF;
    box-shadow: 0 8px 22px rgba(37, 99, 255, .08);
}

.home-web-page .home-ad-placement-grid span {
    width: fit-content;
    border-radius: 999px;
    padding: .36rem .65rem;
    background: var(--home-blue-50);
    color: var(--home-blue-700);
    font-size: .78rem;
    font-weight: 800;
}

.home-web-page .home-ad-placement-grid strong {
    color: var(--home-navy);
    font-size: 1.05rem;
    line-height: 1.25;
}

.home-web-page .home-ad-placement-grid p {
    margin: 0;
    color: var(--home-muted);
    font-size: .92rem;
    line-height: 1.48;
    overflow-wrap: anywhere;
}

@keyframes homeCampaignFade {
    0%, 13% {
        opacity: 1;
        visibility: visible;
        z-index: 1;
    }

    16.66%, 100% {
        opacity: 0;
        visibility: hidden;
        z-index: 0;
    }
}

@keyframes homeBoardShowcase {
    0%, 27% {
        transform: translateX(0);
    }
    33%, 60% {
        transform: translateX(-33.3333%);
    }
    66%, 93% {
        transform: translateX(-66.6666%);
    }
    100% {
        transform: translateX(0);
    }
}

.home-web-page .home-section-head {
    max-width: 760px;
    margin-top: 4.6rem;
    margin-bottom: 2.2rem;
}

.home-web-page .home-section-head h2,
.home-web-page .home-split-section h2,
.home-web-page .home-provider-cta h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: 0;
}

.home-web-page .home-branch-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.home-web-page .home-branch-grid a {
    min-height: 240px;
    padding: 1.8rem;
    box-shadow: var(--home-shadow);
}

.home-web-page .home-branch-grid a::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--home-gradient);
    opacity: 0;
    transition: opacity .18s ease;
}

.home-web-page .home-branch-grid a {
    position: relative;
    overflow: hidden;
}

.home-web-page .home-branch-grid a:hover::after,
.home-web-page .home-branch-grid a:focus-visible::after {
    opacity: 1;
}

.home-web-page .home-branch-grid a > span {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    color: var(--home-blue-600);
}

.home-web-page .home-split-section {
    border-radius: 24px;
    background: var(--home-gradient-dark);
    box-shadow: var(--home-shadow-lg);
}

.home-web-page .home-split-section .home-inline-actions .home-primary-action {
    background: #ffffff !important;
    color: var(--home-blue-700) !important;
    box-shadow: none;
}

.home-web-page .home-split-section .home-inline-actions a:not(.home-primary-action) {
    background: rgba(255, 255, 255, .10);
    border-color: rgba(255, 255, 255, .24);
    color: #ffffff;
}

.home-web-page .home-steps {
    gap: 1.25rem;
}

.home-web-page .home-steps span {
    border-radius: 999px;
    background: var(--home-gradient);
}

.home-web-page .home-provider-cta {
    border-radius: 24px;
    padding: 2.2rem;
    box-shadow: var(--home-shadow);
}

.home-web-page .home-provider-cta .home-primary-action {
    background: var(--home-gradient) !important;
    color: #ffffff !important;
    border-color: transparent;
    box-shadow: 0 10px 24px rgba(37, 99, 255, .24);
}

@media (min-width: 820px) and (max-width: 980px) {
    .home-web-page .yop-global-nav {
        grid-template-columns: auto minmax(0, 1fr) auto !important;
        justify-content: initial !important;
        gap: .45rem !important;
        padding-inline: .85rem !important;
    }

    .home-web-page .yop-nav-toggle {
        display: none !important;
    }

    .home-web-page .yop-global-links,
    .home-web-page .yop-account-links {
        display: flex !important;
    }

    .home-web-page .yop-global-links {
        gap: .08rem !important;
    }

    .home-web-page .yop-global-links a,
    .home-web-page .yop-account-links a,
    .home-web-page .yop-nav-more summary {
        min-height: 34px !important;
        padding: .45rem .48rem !important;
        font-size: .78rem !important;
    }

    .home-web-page .yop-mobile-menu {
        display: none !important;
    }
}

@media (max-width: 980px) {
    .home-web-page .home-search {
        grid-template-columns: 1fr;
    }

    .home-web-page .home-campaign-head,
    .home-web-page .home-campaign-slide {
        grid-template-columns: 1fr;
    }

    .home-web-page .home-campaign-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .home-web-page .home-campaign-actions {
        width: 100%;
        justify-content: space-between;
    }

    .home-web-page .home-campaign-media {
        min-height: 260px;
    }

    .home-web-page .home-ad-placement-board {
        grid-template-columns: 1fr;
    }

    .home-web-page .home-ad-placement-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 1120px) {
    .home-web-page .home-branch-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .home-web-page .home-search,
    .home-web-page .home-branch-grid,
    .home-web-page .home-trust-grid,
    .home-web-page .home-steps {
        grid-template-columns: 1fr;
    }

    .home-web-page .home-product-board {
        padding: 1rem;
    }

    .home-web-page .home-campaign-window {
        border-radius: 22px;
        margin-bottom: 3rem;
    }

    .home-web-page .home-campaign-slide {
        padding: .9rem;
    }

    .home-web-page .home-campaign-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .home-web-page .home-campaign-actions > a,
    .home-web-page .home-campaign-controls {
        width: 100%;
    }

    .home-web-page .home-campaign-controls {
        justify-content: space-between;
    }

    .home-web-page .home-campaign-media {
        min-height: 220px;
        border-radius: 18px;
    }

    .home-web-page .home-campaign-media img {
        max-height: 310px;
    }

    .home-web-page .home-ad-placement-board {
        margin-bottom: 3rem;
    }

    .home-web-page .home-ad-placement-grid {
        grid-template-columns: 1fr;
    }

    .home-web-page .home-ad-placement-grid article {
        min-height: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-web-page .home-campaign-slide,
    .home-board-showcase-track {
        animation: none;
    }

    .home-web-page .home-campaign-slide {
        opacity: 0;
        visibility: hidden;
    }

    .home-web-page .home-campaign-slide:first-child {
        opacity: 1;
        visibility: visible;
    }
}

/* Final web polish: keep the website aligned with the app palette without touching the app shell. */
.home-web-page {
    --home-blue-50: #EAF4FF;
    --home-blue-100: #D9E8FF;
    --home-blue-300: #5E9BFF;
    --home-blue-500: #2563FF;
    --home-blue-600: #1F4FCC;
    --home-blue-700: #1A46CC;
    --home-blue-800: #13183A;
    --home-navy: #13183A;
    --home-text: #13183A;
    --home-muted: #525C77;
    --home-tertiary: #94A0BB;
    --home-soft: #F3F6FB;
    --home-tint: #F4F7FC;
    --home-border: #E2E9F4;
    --home-border-strong: #D1DDF0;
    --home-gradient: linear-gradient(90deg, #2563FF 0%, #1A46CC 100%);
    --home-gradient-dark: linear-gradient(90deg, #2563FF 0%, #1A46CC 100%);
    --home-shadow: 0 8px 22px rgba(37, 99, 255, .10);
    --home-shadow-lg: 0 18px 46px rgba(37, 99, 255, .12);
}

.home-web-page,
.home-web-page .yop-page-main,
.home-web-page .home-launch {
    background: #F3F6FB !important;
}

html[data-yop-theme="light"] body.home-page.home-web-page,
html[data-yop-theme="light"] body.home-page.home-web-page .yop-page-main,
html[data-yop-theme="light"] body.home-page.home-web-page .home-launch {
    background: #F3F6FB !important;
}

.home-web-page .home-launch {
    padding-bottom: 4rem;
}

.home-web-page .home-hero {
    padding: clamp(1.8rem, 4vw, 3rem) 0 1rem;
}

.home-web-page .home-hero h1 {
    font-size: clamp(2.85rem, 5.2vw, 4.7rem);
}

.home-web-page .home-search,
.home-web-page .home-product-board,
.home-web-page .home-campaign-window,
.home-web-page .home-trust-grid article,
.home-web-page .home-branch-grid a,
.home-web-page .home-career-panel article,
.home-web-page .home-steps article,
.home-web-page .home-provider-cta {
    background: #FFFFFF;
    border-color: var(--home-border);
}

.home-web-page .home-search {
    box-shadow: 0 8px 22px rgba(37, 99, 255, .10);
}

.home-web-page .home-search input,
.home-web-page .home-search select {
    background: #F4F7FC;
}

.home-web-page .home-product-board {
    padding: 1rem;
    box-shadow: 0 18px 44px rgba(37, 99, 255, .12);
}

.home-web-page .home-product-board::before {
    display: none;
}

.home-web-page .home-board-main article {
    padding: .65rem;
    background: #FFFFFF;
}

.home-web-page .home-board-showcase {
    border-radius: 18px;
    background: #EAF4FF;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .65), 0 12px 28px rgba(37, 99, 255, .10);
}

.home-web-page .home-board-showcase img {
    object-position: center;
}

.home-web-page .home-board-showcase figcaption {
    color: #1A46CC;
}

.home-web-page .home-board-main img {
    background: #EAF4FF;
}

.home-web-page .home-board-score,
.home-web-page .home-board-tabs .is-active,
.home-web-page .home-branch-grid a > span,
.home-web-page .home-campaign-copy span,
.home-web-page .home-eyebrow {
    background: #EAF4FF;
    border-color: #D9E8FF;
    color: #1A46CC;
}

.home-web-page .home-meta-strip span {
    border-color: #CDEBDD;
    background: #EEFDF6;
    color: #0E7A4D;
}

.home-web-page .home-campaign-window {
    margin-top: 1.25rem;
}

.home-web-page .home-campaign-media {
    background: #F4F7FC;
}

.home-web-page .home-campaign-media img {
    filter: drop-shadow(0 14px 22px rgba(37, 99, 255, .12));
}

@media (max-width: 1120px) {
    .home-web-page .home-hero {
        padding-top: 1.4rem;
    }
}

@media (max-width: 760px) {
    .home-web-page .home-board-showcase {
        height: 220px;
    }
}

/* Website homepage pass: app-aligned palette, real entry points and first-screen campaign motion. */
.home-web-page .home-hero {
    align-items: start;
    gap: 2rem;
    padding: 1.4rem 0 .85rem;
}

.home-web-page .home-hero-copy {
    gap: .9rem;
}

.home-web-page .home-hero h1 {
    max-width: 620px;
    font-size: 3.35rem;
    line-height: 1.08;
}

.home-web-page .home-hero-copy > p {
    max-width: 660px;
    font-size: 1rem;
}

.home-hero-service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .7rem;
    max-width: 760px;
}

.home-hero-service-grid a {
    display: grid;
    gap: .25rem;
    min-width: 0;
    min-height: 112px;
    padding: .9rem;
    border: 1px solid var(--home-border);
    border-radius: 18px;
    background: #FFFFFF;
    color: var(--home-text);
    text-decoration: none;
    box-shadow: 0 8px 22px rgba(37, 99, 255, .08);
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.home-hero-service-grid a:hover,
.home-hero-service-grid a:focus-visible {
    transform: translateY(-2px);
    border-color: var(--home-blue-300);
    box-shadow: 0 14px 30px rgba(37, 99, 255, .12);
}

.home-hero-service-grid span {
    color: var(--home-blue-700);
    font-size: .78rem;
    font-weight: 800;
}

.home-hero-service-grid strong {
    color: var(--home-text);
    font-size: .98rem;
    line-height: 1.25;
}

.home-hero-service-grid small {
    color: var(--home-muted);
    line-height: 1.35;
}

.home-web-page .home-product-board {
    border-radius: 20px;
    padding: .9rem;
}

.home-web-page .home-board-head img {
    width: 78px;
}

.home-web-page .home-board-showcase {
    height: 218px;
}

.home-web-page .home-board-showcase-track {
    width: 400%;
    animation: homeBoardShowcaseFour 22s infinite;
}

.home-web-page .home-board-showcase figure {
    width: 25%;
    flex: 0 0 25%;
}

.home-web-page .home-board-main {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .55rem;
}

.home-web-page .home-board-main article {
    grid-template-columns: 1fr;
    align-content: start;
    gap: .45rem;
    min-height: 124px;
}

.home-web-page .home-board-main img {
    width: 52px;
    height: 42px;
}

.home-web-page .home-board-main b {
    font-size: .9rem;
    line-height: 1.2;
}

.home-web-page .home-board-main small {
    font-size: .78rem;
    line-height: 1.28;
}

.home-web-page .home-board-score {
    padding: .75rem;
}

.home-web-page .home-campaign-window {
    margin: 1rem auto 2.2rem;
}

.home-web-page .home-trust-grid {
    margin-top: .85rem;
}

@keyframes homeBoardShowcaseFour {
    0%, 19% {
        transform: translateX(0);
    }
    25%, 44% {
        transform: translateX(-25%);
    }
    50%, 69% {
        transform: translateX(-50%);
    }
    75%, 94% {
        transform: translateX(-75%);
    }
    100% {
        transform: translateX(0);
    }
}

@media (max-width: 1120px) {
    .home-web-page .home-hero {
        grid-template-columns: 1fr;
    }

    .home-web-page .home-hero h1 {
        font-size: 3rem;
    }

    .home-web-page .home-product-board {
        width: 100%;
    }
}

@media (max-width: 900px) {
    .home-hero-service-grid {
        grid-template-columns: 1fr;
    }

    .home-hero-service-grid a {
        min-height: 0;
    }
}

@media (max-width: 760px) {
    .home-web-page .home-hero h1 {
        font-size: 2.35rem;
    }

    .home-web-page .home-board-main {
        grid-template-columns: 1fr;
    }

    .home-web-page .home-board-main article {
        min-height: 0;
        grid-template-columns: 52px minmax(0, 1fr);
    }
}

/* Homepage copy pass: keep the first screen focused on the Yop portal brand. */
.home-web-page .home-hero h1 {
    max-width: 760px;
    font-size: 4.2rem;
    line-height: 1;
    letter-spacing: 0;
}

.home-web-page .home-hero-copy > p {
    max-width: 620px;
    font-size: 1.08rem;
    color: #303A58;
}

.home-web-page .home-search {
    border-radius: 16px;
}

.home-web-page .home-search input,
.home-web-page .home-search select,
.home-web-page .home-search button {
    border-radius: 12px;
}

.home-web-page .home-hero-service-grid strong,
.home-web-page .home-hero-service-grid small {
    overflow-wrap: anywhere;
}

@media (max-width: 1120px) {
    .home-web-page .home-hero h1 {
        font-size: 3.4rem;
    }
}

@media (max-width: 760px) {
    .home-web-page .home-hero h1 {
        font-size: 2.55rem;
    }

    .home-web-page .home-hero-copy > p {
        font-size: 1rem;
    }
}

@media (max-width: 420px) {
    .home-web-page .home-hero h1 {
        font-size: 2.25rem;
    }
}

/* Mobile homepage polish: keep entry actions compact like the app, without changing app styles. */
@media (max-width: 760px) {
    .home-web-page .home-hero-actions {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: .65rem;
        width: 100%;
    }

    .home-web-page .home-hero-actions a {
        width: 100%;
        min-height: 48px;
        padding: 0 .75rem;
        border-radius: 16px;
        font-size: .95rem;
        line-height: 1.15;
        text-align: center;
    }

    .home-web-page .home-board-tabs {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: .55rem;
    }

    .home-web-page .home-board-tabs span {
        min-height: 42px;
        border-radius: 16px;
        font-size: .9rem;
    }
}

@media (max-width: 360px) {
    .home-web-page .home-hero-actions {
        grid-template-columns: 1fr;
    }
}

/* Homepage app-style finish: light Yop surface, calm cards, clearer first screen. */
html[data-yop-theme="light"] body.home-page.home-web-page,
html[data-yop-theme="light"] body.home-page.home-web-page .yop-page-main,
html[data-yop-theme="light"] body.home-page.home-web-page .home-launch {
    background: linear-gradient(180deg, #fbfdff 0%, #f1f6ff 48%, #ffffff 100%) !important;
}

.home-web-page .yop-global-nav {
    min-height: 66px !important;
    background: rgba(255, 255, 255, .96) !important;
    border-bottom: 1px solid #e3ebf6 !important;
    box-shadow: 0 8px 22px rgba(37, 99, 255, .06) !important;
}

.home-web-page .yop-global-links a:hover,
.home-web-page .yop-global-links a:focus-visible,
.home-web-page .yop-global-links a.is-active,
.home-web-page .yop-nav-more summary:hover,
.home-web-page .yop-nav-more summary:focus-visible,
.home-web-page .yop-nav-more summary.is-active {
    color: #1a46cc !important;
    background: #eaf4ff !important;
    border-color: #d9e8ff !important;
}

.home-web-page .yop-account-links a.is-primary {
    background: linear-gradient(135deg, #2563ff 0%, #1a46cc 100%) !important;
    color: #ffffff !important;
    border-color: transparent !important;
}

.home-web-page .home-hero {
    width: min(1180px, calc(100% - 28px));
    grid-template-columns: minmax(0, 1.05fr) minmax(340px, .95fr);
    align-items: center;
    gap: clamp(1.2rem, 4vw, 2.6rem);
    padding: clamp(1.1rem, 3vw, 2.2rem) 0 1rem;
}

.home-web-page .home-eyebrow {
    min-height: 30px;
    border-radius: 8px;
    padding: 0 .75rem;
    background: #eaf4ff;
    border: 1px solid #d9e8ff;
    color: #1a46cc;
    font-size: .76rem;
    letter-spacing: 0;
}

.home-web-page .home-hero h1 {
    max-width: 640px;
    color: #071a45;
    font-size: clamp(2.7rem, 5vw, 4.55rem);
    line-height: 1.03;
    letter-spacing: 0;
}

.home-web-page .home-hero h1 span {
    display: inline;
    background: linear-gradient(135deg, #5bb8ff 0%, #2563ff 52%, #0a2a6e 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.home-web-page .home-hero-copy > p {
    max-width: 650px;
    color: #24314f;
    font-size: clamp(1rem, 1.6vw, 1.12rem);
    line-height: 1.6;
}

.home-web-page .home-search {
    max-width: 620px;
    grid-template-columns: 1fr;
    gap: .6rem;
    padding: .8rem;
    border-radius: 8px;
    border: 1px solid #dce7f5;
    background: #ffffff;
    box-shadow: 0 18px 42px rgba(37, 99, 255, .12);
}

.home-web-page .home-search label span {
    color: #4b5875;
    font-size: .72rem;
    letter-spacing: 0;
}

.home-web-page .home-search input,
.home-web-page .home-search select,
.home-web-page .home-search button {
    min-height: 52px;
    border-radius: 8px;
}

.home-web-page .home-search button {
    width: 100%;
}

.home-web-page .home-search input,
.home-web-page .home-search select {
    background: #f4f7fc;
    border-color: #d9e2f1;
}

.home-web-page .home-search button,
.home-web-page .home-primary-action,
.home-web-page .home-campaign-actions > a,
.home-web-page .home-campaign-copy a {
    background: linear-gradient(135deg, #2563ff 0%, #1a46cc 100%) !important;
    box-shadow: 0 12px 26px rgba(37, 99, 255, .22);
}

.home-web-page .home-hero-actions {
    gap: .55rem;
}

.home-web-page .home-hero-actions a,
.home-web-page .home-inline-actions a,
.home-web-page .home-provider-cta a {
    min-height: 42px;
    border-radius: 8px;
    background: #ffffff;
    border-color: #dce7f5;
    color: #2563ff;
    box-shadow: 0 8px 18px rgba(37, 99, 255, .07);
}

.home-web-page .home-meta-strip span {
    border-radius: 8px;
    background: #edfdf5;
    border-color: #cdebdc;
    color: #08734a;
}

.home-web-page .home-product-board,
.home-web-page .home-campaign-window,
.home-web-page .home-ad-placement-grid article,
.home-web-page .home-branch-grid a,
.home-web-page .home-trust-grid article,
.home-web-page .home-split-section,
.home-web-page .home-provider-cta,
.home-web-page .home-steps article {
    border-radius: 8px;
    border-color: #dce7f5;
    background: #ffffff;
    box-shadow: 0 16px 38px rgba(37, 99, 255, .09);
}

.home-web-page .home-product-board {
    padding: 1rem;
}

.home-web-page .home-board-tabs span,
.home-web-page .home-board-main article,
.home-web-page .home-board-main img,
.home-web-page .home-board-score,
.home-web-page .home-board-showcase,
.home-web-page .home-campaign-media,
.home-web-page .home-campaign-controls,
.home-web-page .home-campaign-controls button,
.home-web-page .home-campaign-dots button[aria-current="true"],
.home-web-page .home-branch-grid a > span,
.home-web-page .home-career-panel article,
.home-web-page .home-steps span {
    border-radius: 8px;
}

.home-web-page .home-board-showcase,
.home-web-page .home-campaign-media {
    background: #f4f7fc;
}

.home-web-page .home-board-main article,
.home-web-page .home-career-panel article {
    background: #f7faff;
    box-shadow: none;
}

.home-web-page .home-campaign-window {
    width: min(1180px, calc(100% - 28px));
    margin: 1.2rem auto 2.4rem;
    overflow: hidden;
}

.home-web-page .home-campaign-head {
    padding: clamp(1rem, 2.4vw, 1.45rem);
}

.home-web-page .home-campaign-head h2,
.home-web-page .home-campaign-copy h3,
.home-web-page .home-ad-placement-intro h2,
.home-web-page .home-section-head h2,
.home-web-page .home-split-section h2,
.home-web-page .home-provider-cta h2 {
    color: #071a45;
    letter-spacing: 0;
}

.home-web-page .home-campaign-slide {
    grid-template-columns: minmax(0, 1fr) minmax(280px, .45fr);
    padding: clamp(.9rem, 2.4vw, 1.35rem);
}

.home-web-page .home-campaign-media {
    min-height: 300px;
}

.home-web-page .home-campaign-media img {
    width: min(100%, 640px);
    max-height: 430px;
}

.home-web-page .home-ad-placement-board,
.home-web-page .home-section-head,
.home-web-page .home-branch-grid,
.home-web-page .home-split-section,
.home-web-page .home-steps,
.home-web-page .home-provider-cta {
    width: min(1180px, calc(100% - 28px));
}

.home-web-page .home-split-section {
    color: #071a45;
    background: #ffffff;
}

.home-web-page .home-split-section .home-eyebrow,
.home-web-page .home-provider-cta .home-eyebrow {
    color: #1a46cc;
    background: #eaf4ff;
    border-color: #d9e8ff;
}

.home-web-page .home-split-section h2,
.home-web-page .home-split-section p,
.home-web-page .home-provider-cta h2,
.home-web-page .home-provider-cta p,
.home-web-page .home-career-panel strong,
.home-web-page .home-career-panel span {
    color: inherit;
}

.home-web-page .home-split-section p,
.home-web-page .home-provider-cta p,
.home-web-page .home-career-panel span {
    color: #55617a;
}

.home-web-page .home-split-section .home-inline-actions .home-primary-action {
    background: linear-gradient(135deg, #2563ff 0%, #1a46cc 100%) !important;
    color: #ffffff !important;
    box-shadow: 0 12px 26px rgba(37, 99, 255, .22);
}

.home-web-page .home-split-section .home-inline-actions a:not(.home-primary-action) {
    color: #2563ff;
    background: #ffffff;
    border-color: #dce7f5;
}

@media (max-width: 980px) {
    .home-web-page .home-hero,
    .home-web-page .home-campaign-slide,
    .home-web-page .home-ad-placement-board {
        grid-template-columns: 1fr;
    }

    .home-web-page .home-search {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .home-web-page .home-hero {
        width: min(100% - 20px, 1180px);
        padding-top: .9rem;
    }

    .home-web-page .home-hero h1 {
        font-size: clamp(2.05rem, 10vw, 2.55rem);
    }

    .home-web-page .home-campaign-window,
    .home-web-page .home-ad-placement-board,
    .home-web-page .home-section-head,
    .home-web-page .home-branch-grid,
    .home-web-page .home-split-section,
    .home-web-page .home-steps,
    .home-web-page .home-provider-cta {
        width: min(100% - 20px, 1180px);
    }

    .home-web-page .home-campaign-media {
        min-height: 210px;
    }
}
