/* Guest site home — tokens aligned with portal style.css; scoped ym-home-* */

:root {
    /* Align with portal style.css tokens where guest pages mirror portal UI */
    --ym-muted: #6f7b8a;
    /* Page + chrome surfaces — match portal style.css body / .ym-header */
    --ym-home-deep: #050b10;
    --ym-home-header-bg: #050b10;
    --ym-home-header-active: linear-gradient(135deg, rgba(30, 167, 255, 0.15), rgba(30, 167, 255, 0.08));
    --ym-home-header-link: rgba(226, 232, 240, 0.88);
    --ym-home-landing-cyan: #2ec5ff;
    --ym-accent: #1ea7ff;
    --ym-accent-soft: rgba(30, 167, 255, 0.15);
    --ym-radius-card: 12px;
    --ym-radius-pill: 999px;
    --ym-shadow-soft: 0 14px 30px rgba(15, 23, 42, 0.14);

    --ym-fc-text: #e2e8f0;
    --ym-fc-surface: rgba(15, 23, 42, 0.6);
    --ym-fc-cell-strong: rgba(15, 23, 42, 0.8);

    --ym-form-control-color: var(--ym-fc-text);
    --ym-form-control-bg: var(--ym-fc-surface);
    --ym-form-control-bg-focus: var(--ym-fc-cell-strong);

    /* Marketing / guest pages: one column width for header, main, footers */
    --ym-home-content-max: 1180px;
    /* Space between major blocks inside <main> (sections, pricing bands) */
    --ym-home-stack: clamp(36px, 5vw, 48px);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

.ym-home-body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Inter", sans-serif;
    background: radial-gradient(circle at top left, #163a5a, var(--ym-home-deep));
    color: var(--ym-fc-text);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.ym-home-visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Header */
.ym-home-header {
    background: linear-gradient(135deg, rgba(11, 42, 60, 0.95) 0%, rgba(5, 16, 26, 0.98) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #fff;
    /* Match portal .ym-header: 16px vertical, 36px horizontal on wide viewports */
    padding: 16px clamp(16px, 4vw, 36px);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}

/* .ym-home-header--site: class hook for mobile overrides only (see max-width:900px) */

.ym-home-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--ym-home-content-max);
    margin: 0 auto;
    gap: 16px;
    flex-wrap: wrap;
}

.ym-home-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: inherit;
    text-decoration: none;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.ym-home-header--site .ym-home-logo:hover {
    transform: translateY(-1px);
}

.ym-home-header--site .ym-home-logo:active {
    transform: translateY(0);
}

.ym-home-logo-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
}

.ym-home-logo-mark img {
    display: block;
    filter: drop-shadow(0 2px 4px rgba(30, 167, 255, 0.3));
}

.ym-home-header--site .ym-home-logo-mark {
    animation: ym-home-logo-float 3s ease-in-out infinite;
}

@keyframes ym-home-logo-float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-3px);
    }
}

.ym-home-logo-text {
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.02em;
    line-height: 1.2;
}

.ym-home-header--site .ym-home-logo-text {
    background: linear-gradient(135deg, #ffffff 0%, rgba(30, 167, 255, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Main — all guest pages using layouts/home */
.ym-home-main {
    flex: 1;
    width: 100%;
    max-width: var(--ym-home-content-max);
    margin: 0 auto;
    padding: clamp(22px, 4vw, 30px) clamp(16px, 3.5vw, 28px) clamp(28px, 4vw, 48px);
}

.ym-home-section {
    margin-bottom: var(--ym-home-stack);
}

.ym-home-badge {
    display: inline-block;
    margin: 0 0 16px;
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--ym-accent);
    border: 1px solid rgba(30, 167, 255, 0.45);
    border-radius: var(--ym-radius-pill);
    background: rgba(30, 167, 255, 0.08);
}

.ym-home-title {
    margin: 0 0 16px;
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    letter-spacing: -0.02em;
}

.ym-home-lead {
    margin: 0 auto;
    max-width: 42rem;
    font-size: 1.05rem;
    line-height: 1.6;
    color: rgba(226, 232, 240, 0.82);
}

/* Site footer — brand + nav + get started in one grid */
.ym-home-footer {
    margin-top: auto;
    padding: clamp(24px, 3.5vw, 36px) 0 clamp(18px, 2.5vw, 24px);
    border-top: 1px solid rgba(148, 163, 184, 0.12);
    font-size: 14px;
    color: rgba(148, 163, 184, 0.88);
}

.ym-home-footer-shell {
    box-sizing: border-box;
    max-width: var(--ym-home-content-max);
    margin: 0 auto;
    padding: 0 clamp(16px, 3.5vw, 28px);
}

.ym-home-footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px 20px;
    padding-bottom: clamp(20px, 2.5vw, 26px);
    border-bottom: 1px solid rgba(148, 163, 184, 0.1);
    align-items: start;
}

.ym-home-footer-col {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.ym-home-footer-col--brand {
    max-width: 20rem;
}

.ym-home-footer-col-title {
    flex: 0 0 auto;
    min-height: 13.2px;
}

.ym-home-footer-col-body {
    flex: 1 1 auto;
    min-width: 0;
}

@media (min-width: 1024px) {
    .ym-home-footer-col--brand .ym-home-footer-col-body {
        padding-top: calc(13.2px + 12px);
    }
}

.ym-home-footer-compact {
    margin: 0 0 10px;
    font-size: 14px;
    line-height: 1.5;
    color: rgba(203, 213, 225, 0.82);
}

.ym-home-footer-account-line {
    margin: 14px 0 0;
    padding-top: 12px;
    border-top: 1px solid rgba(148, 163, 184, 0.15);
    font-size: 13px;
    line-height: 1.45;
    color: rgba(148, 163, 184, 0.88);
}

.ym-home-footer-account-line .ym-home-footer-link {
    font-size: 13px;
}

.ym-home-footer-account-line [aria-hidden="true"] {
    margin: 0 0.2em;
    color: rgba(148, 163, 184, 0.55);
    user-select: none;
}

.ym-home-footer-account-line--standalone {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

/* Mobile: CTA first, then brand, then nav columns */
@media (max-width: 767px) {
    .ym-home-footer-col--cta {
        order: 1;
    }

    .ym-home-footer-col--brand {
        order: 2;
        max-width: none;
    }

    .ym-home-footer-col:not(.ym-home-footer-col--brand):not(.ym-home-footer-col--cta) {
        order: 3;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .ym-home-footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px 28px;
    }

    .ym-home-footer-col--brand {
        grid-column: 1 / -1;
        max-width: none;
    }

    .ym-home-footer-col--brand .ym-home-footer-col-body {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 12px 20px;
    }

    .ym-home-footer-col--brand .ym-home-logo--footer {
        margin-bottom: 0;
    }

    .ym-home-footer-col--brand .ym-home-footer-tagline {
        flex: 1 1 16rem;
        margin: 0;
    }

    .ym-home-footer-col--cta {
        grid-column: 1 / -1;
    }

    .ym-home-footer-col--cta .ym-home-walkthrough-card {
        max-width: min(100%, 380px);
    }
}

@media (min-width: 1024px) {
    .ym-home-footer-grid {
        grid-template-columns: minmax(220px, 2fr) minmax(140px, 1.15fr) minmax(160px, 1.15fr) 380px;
        gap: 20px 28px;
        width: 100%;
    }

    .ym-home-footer-col--brand {
        max-width: none;
        padding-right: 0;
    }

    .ym-home-footer-col--brand .ym-home-footer-tagline {
        max-width: 28rem;
    }

    .ym-home-footer-col--cta {
        width: 380px;
        max-width: 380px;
        justify-self: end;
    }

    .ym-home-footer-col--cta .ym-home-walkthrough-card {
        width: 100%;
        max-width: 380px;
    }
}

.ym-home-footer-col-title {
    margin: 0 0 12px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(148, 163, 184, 0.72);
    line-height: 1.2;
}

.ym-home-footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ym-home-footer-link {
    color: rgba(226, 232, 240, 0.88);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.35;
    text-decoration: none;
    transition: color 0.15s ease;
}

.ym-home-footer-link:hover {
    color: #fff;
    text-decoration: underline;
}

.ym-home-footer-link:focus-visible {
    outline: 2px solid var(--ym-accent);
    outline-offset: 2px;
    border-radius: 2px;
}

.ym-home-footer-link.is-active {
    color: var(--ym-home-landing-cyan);
}

.ym-home-footer-bar {
    padding-top: clamp(16px, 2vw, 20px);
    text-align: center;
}

.ym-home-footer-note {
    margin: 0;
    font-size: 12px;
    color: #64748b;
    line-height: 1.5;
}

/* Site header: logo — desktop nav — mobile toggle (≤900px matches portal) */
.ym-home-header-inner--site {
    align-items: center;
    max-width: var(--ym-home-content-max);
    flex-wrap: nowrap;
    gap: 12px 16px;
}

.ym-home-header-spacer {
    flex: 1 1 auto;
    min-width: 8px;
}

.ym-home-header-desktop {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px 18px;
    flex-wrap: wrap;
    min-width: 0;
}

.ym-home-header-divider {
    display: none;
    width: 1px;
    height: 26px;
    flex-shrink: 0;
    background: rgba(148, 163, 184, 0.22);
}

@media (min-width: 901px) {
    .ym-home-header-divider {
        display: block;
    }
}

.ym-home-site-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2px;
    justify-content: flex-end;
    max-width: 100%;
}

.ym-home-site-link {
    color: var(--ym-home-header-link);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 999px;
    transition: background 0.18s ease, color 0.18s ease;
    white-space: nowrap;
}

.ym-home-site-link:hover {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
}

.ym-home-site-link:focus-visible {
    outline: none;
    box-shadow: 0 0 0 2px var(--ym-home-header-bg), 0 0 0 4px rgba(56, 189, 248, 0.55);
}

.ym-home-site-link.is-active {
    background: var(--ym-home-header-active);
    color: var(--ym-accent);
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(30, 167, 255, 0.2);
}

/* Mobile menu toggle (portal .ym-mobile-toggle) */
.ym-home-mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: rgba(30, 167, 255, 0.1);
    border: 1px solid rgba(30, 167, 255, 0.2);
    border-radius: 8px;
    cursor: pointer;
    padding: 10px;
    margin-left: auto;
    flex-shrink: 0;
    transition: background 0.25s ease, border-color 0.25s ease;
}

.ym-home-mobile-toggle:hover {
    background: rgba(30, 167, 255, 0.15);
    border-color: rgba(30, 167, 255, 0.3);
}

.ym-home-mobile-toggle span {
    width: 22px;
    height: 2.5px;
    background: #e2e8f0;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
    border-radius: 2px;
}

.ym-home-mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.ym-home-mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.ym-home-mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile slide-down nav (portal .ym-mobile-nav) */
.ym-home-mobile-nav {
    display: none;
    flex-direction: column;
    gap: 4px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s ease;
}

.ym-home-mobile-nav.open {
    max-height: 720px;
    opacity: 1;
    padding-bottom: 10px;
}

.ym-home-mobile-nav-link {
    display: block;
    padding: 9px 20px;
    margin: 0 8px;
    color: rgba(226, 232, 240, 0.85);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    position: relative;
    transition: background 0.25s cubic-bezier(0.4, 0, 0.2, 1), color 0.25s ease, padding-left 0.25s ease, transform 0.25s ease;
}

.ym-home-mobile-nav-link::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background: var(--ym-accent);
    border-radius: 0 2px 2px 0;
    transition: height 0.3s ease;
}

.ym-home-mobile-nav-link:hover {
    background: rgba(30, 167, 255, 0.1);
    color: #fff;
    padding-left: 28px;
    transform: translateX(4px);
}

.ym-home-mobile-nav-link:hover::before {
    height: 60%;
}

.ym-home-mobile-nav-link.is-active {
    background: linear-gradient(135deg, rgba(30, 167, 255, 0.15), rgba(30, 167, 255, 0.08));
    color: var(--ym-accent);
    font-weight: 600;
    padding-left: 28px;
    box-shadow: 0 2px 8px rgba(30, 167, 255, 0.15);
}

.ym-home-mobile-nav-link.is-active::before {
    height: 60%;
}

.ym-home-mobile-nav-divider {
    height: 1px;
    background: rgba(148, 163, 184, 0.15);
    margin: 6px 8px 8px;
}

.ym-home-mobile-nav-cta {
    margin: 4px 8px;
    width: calc(100% - 16px);
    box-sizing: border-box;
}

@media (max-width: 900px) {
    .ym-home-header--site {
        padding-bottom: 0;
        padding: 14px 24px;
    }

    .ym-home-header--site .ym-home-logo-mark img {
        height: 22px;
    }

    .ym-home-header--site .ym-home-logo-text {
        font-size: 13px;
    }

    .ym-home-header-spacer {
        display: none;
    }

    .ym-home-header-desktop {
        display: none;
    }

    .ym-home-mobile-toggle {
        display: flex;
    }

    .ym-home-mobile-nav {
        display: flex;
    }
}

@media (min-width: 901px) {
    .ym-home-mobile-toggle {
        display: none !important;
    }

    .ym-home-mobile-nav {
        display: none !important;
    }
}

/* Contact form */
.ym-home-flash {
    margin: 0 0 24px;
    padding: 14px 18px;
    font-size: 14px;
    border-radius: 10px;
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.35);
    color: rgba(226, 252, 236, 0.95);
}

.ym-home-flash--error {
    background: rgba(220, 53, 69, 0.15);
    border-color: rgba(220, 53, 69, 0.35);
    color: rgba(254, 226, 226, 0.95);
}

.ym-home-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.ym-home-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.ym-home-label {
    font-size: 13px;
    font-weight: 600;
    color: rgba(226, 232, 240, 0.9);
}

.ym-home-input,
.ym-home-textarea {
    width: 100%;
    padding: 10px 12px;
    font-size: 15px;
    font-family: inherit;
    color: var(--ym-form-control-color);
    background: var(--ym-form-control-bg);
    border: 1px solid rgba(148, 163, 184, 0.25);
    border-radius: 8px;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.ym-home-input:focus,
.ym-home-textarea:focus {
    outline: none;
    border-color: rgba(30, 167, 255, 0.55);
    box-shadow: 0 0 0 3px var(--ym-accent-soft);
    background: var(--ym-form-control-bg-focus);
}

.ym-home-textarea {
    resize: vertical;
    min-height: 120px;
}

.ym-home-input.is-invalid,
.ym-home-textarea.is-invalid {
    border-color: rgba(248, 113, 113, 0.55);
}

.ym-home-field-error {
    margin: 0;
    font-size: 13px;
    color: #fca5a5;
}

/* -------------------------------------------------------------------------
   Home — hero, showcase, landing footer
   ------------------------------------------------------------------------- */

.ym-home-title--hero {
    font-size: clamp(2rem, 5.2vw, 3.25rem);
    letter-spacing: -0.035em;
    line-height: 1.08;
    margin-bottom: 20px;
}

.ym-home-lead--hero {
    margin: 0 0 24px;
    max-width: 36rem;
    font-size: 1.08rem;
    line-height: 1.65;
    color: rgba(203, 213, 225, 0.88);
}

.ym-home-preview-stack {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* Portal-style shell: mirrors .ym-card (style.css) */
.ym-home-preview-card {
    background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 0.9));
    border-radius: var(--ym-radius-card);
    border: 1px solid rgba(148, 163, 184, 0.35);
    padding: 16px 16px 14px;
    color: #e5e7eb;
    box-shadow: var(--ym-shadow-soft);
}

.ym-home-preview-card--accent {
    background:
        linear-gradient(135deg, rgba(30, 167, 255, 0.1) 0%, rgba(30, 167, 255, 0.05) 100%),
        radial-gradient(circle at top left, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 0.9));
    border-color: rgba(30, 167, 255, 0.3);
}

.ym-home-preview-head {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin: 0 0 14px;
}

.ym-home-preview-kicker {
    margin: 0;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #94a3b8;
}

.ym-home-preview-title {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.25;
    color: #f9fafb;
}

.ym-home-preview-body {
    display: grid;
    margin: 0;
    border-radius: var(--ym-radius-card);
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.22);
    background: rgba(2, 6, 23, 0.45);
    aspect-ratio: 16 / 9;
}

@media (max-width: 959px) {
    .ym-home-preview-body {
        max-height: min(46vh, 360px);
    }
}

.ym-home-preview-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Showcase audience cards */
.ym-home-showcase-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    align-items: stretch;
}

@media (min-width: 900px) {
    .ym-home-showcase-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
}

.ym-home-showcase-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 26px 24px 28px;
    border-radius: 22px;
    background: linear-gradient(160deg, rgba(15, 23, 42, 0.72) 0%, rgba(15, 23, 42, 0.45) 100%);
    border: 1px solid rgba(148, 163, 184, 0.16);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.ym-home-showcase-card > .ym-home-btn-pill {
    margin-top: auto;
    align-self: flex-start;
}

.ym-home-showcase-card--highlight {
    border-color: rgba(46, 197, 255, 0.28);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(46, 197, 255, 0.06);
}

.ym-home-showcase-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    color: var(--ym-home-landing-cyan);
    background: rgba(46, 197, 255, 0.12);
    border: 1px solid rgba(46, 197, 255, 0.25);
}

.ym-home-showcase-icon--people {
    color: #a5f3fc;
    background: rgba(46, 197, 255, 0.18);
}

.ym-home-showcase-title {
    margin: 0 0 12px;
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #fff;
    line-height: 1.25;
}

.ym-home-showcase-lead {
    margin: 0 0 22px;
    font-size: 15px;
    line-height: 1.6;
    color: rgba(203, 213, 225, 0.85);
}

.ym-home-checklist {
    list-style: none;
    margin: 0 0 26px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ym-home-checklist li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(226, 232, 240, 0.92);
    background: rgba(2, 6, 23, 0.35);
    border-radius: 12px;
    border: 1px solid rgba(148, 163, 184, 0.1);
}

.ym-home-check {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(46, 197, 255, 0.2);
    border: 1px solid rgba(46, 197, 255, 0.45);
    position: relative;
}

.ym-home-check::after {
    content: "";
    position: absolute;
    left: 6px;
    top: 3px;
    width: 6px;
    height: 10px;
    border: solid var(--ym-home-landing-cyan);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.ym-home-btn-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.ym-home-btn-pill:hover {
    transform: translateY(-2px);
}

.ym-home-btn-pill:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px var(--ym-accent-soft);
}

.ym-home-btn-pill-outline {
    color: #fff;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.55);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.ym-home-btn-pill-outline:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.06);
}

.ym-home-btn-pill-solid {
    color: #030712;
    background: linear-gradient(135deg, var(--ym-home-landing-cyan) 0%, var(--ym-accent) 100%);
    border: none;
    box-shadow: 0 8px 28px rgba(46, 197, 255, 0.35);
}

.ym-home-btn-pill-solid:hover {
    box-shadow: 0 10px 32px rgba(46, 197, 255, 0.45);
}

.ym-home-header .ym-home-btn-pill-solid{
    box-shadow: none;
}
.ym-home-btn-pill-wide {
    width: 100%;
}

/* Site header CTA: compact pill aligned with nav links */
.ym-home-header-cta {
    flex-shrink: 0;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.2;
}

.ym-home-header-cta:hover {
    transform: translateY(-1px);
}

a.ym-home-mobile-nav-cta.ym-home-btn-pill {
    width: 100%;
    box-sizing: border-box;
    justify-content: center;
    margin:0 !important;
}

.ym-home-logo--footer {
    flex-direction: row;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

@media (max-width: 767px) {
    .ym-home-logo--footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

.ym-home-logo-text--footer {
    background: none;
    -webkit-text-fill-color: #fff;
    color: #fff;
}

.ym-home-footer-tagline {
    margin: 0;
    font-size: 14px;
    line-height: 1.55;
    color: rgba(148, 163, 184, 0.88);
}

.ym-home-walkthrough-card {
    padding: 20px 20px 22px;
    border-radius: 16px;
    background: linear-gradient(155deg, rgba(15, 23, 42, 0.85) 0%, rgba(8, 15, 30, 0.95) 100%);
    border: 1px solid rgba(148, 163, 184, 0.18);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
}

.ym-home-walkthrough-card--footer {
    padding: 16px 18px 18px;
}

.ym-home-walkthrough-title {
    margin: 0 0 8px;
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
}

.ym-home-walkthrough-card--footer .ym-home-walkthrough-title {
    font-size: 0.98rem;
    line-height: 1.25;
}

.ym-home-walkthrough-text {
    margin: 0 0 16px;
    font-size: 14px;
    line-height: 1.5;
    color: rgba(203, 213, 225, 0.82);
}

.ym-home-walkthrough-card--footer .ym-home-walkthrough-text {
    margin-bottom: 14px;
    font-size: 13px;
}

.ym-home-walkthrough-card--footer .ym-home-footer-account-line {
    margin-bottom: 0;
}

.ym-home-footer--legal .ym-home-footer-account-line--standalone {
    margin-top: 10px;
}

@media (prefers-reduced-motion: reduce) {
    .ym-home-header--site .ym-home-logo-mark {
        animation: none;
    }

    .ym-home-header--site .ym-home-logo:hover {
        transform: none;
    }
}

/* -------------------------------------------------------------------------
   About page (select-style layout)
   ------------------------------------------------------------------------- */

.ym-home-title--about {
    font-size: clamp(1.65rem, 3.8vw, 2.5rem);
    letter-spacing: -0.03em;
    line-height: 1.15;
    text-align: left;
    margin: 0;
    color: #fff;
}

.ym-home-about-intro {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.65;
    color: rgba(203, 213, 225, 0.9);
}

.ym-home-about-dual {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 768px) {
    .ym-home-about-dual {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
}

.ym-home-tag-cyan {
    margin: 0 0 14px;
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ym-home-landing-cyan);
}

.ym-home-about-panel {
    padding: 26px 24px 28px;
    border-radius: 20px;
    background: linear-gradient(165deg, rgba(13, 21, 38, 0.92) 0%, rgba(8, 14, 28, 0.88) 100%);
    border: 1px solid rgba(148, 163, 184, 0.14);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
}

.ym-home-about-panel-headline {
    margin: 0 0 14px;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.35;
    color: #fff;
}

.ym-home-about-panel-text {
    margin: 0;
    font-size: 15px;
    line-height: 1.65;
    color: rgba(203, 213, 225, 0.88);
}

.ym-home-about-audience-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 640px) {
    .ym-home-about-audience-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .ym-home-about-audience-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 18px;
    }
}

.ym-home-about-audience-card {
    padding: 22px 20px 24px;
    border-radius: 16px;
    background: rgba(13, 21, 38, 0.75);
    border: 1px solid rgba(148, 163, 184, 0.12);
    min-height: 100%;
}

.ym-home-about-audience-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--ym-home-landing-cyan);
    background: rgba(46, 197, 255, 0.1);
    border: 1px solid rgba(46, 197, 255, 0.22);
}

.ym-home-about-audience-title {
    margin: 0 0 10px;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.01em;
}

.ym-home-about-audience-text {
    margin: 0;
    font-size: 13px;
    line-height: 1.55;
    color: rgba(148, 163, 184, 0.95);
}

.ym-home-about-cta-inner {
    display: flex;
    flex-direction: column;
    gap: 22px;
    align-items: stretch;
    padding: 26px 24px 28px;
    border-radius: 20px;
    background: rgba(8, 14, 28, 0.65);
    border: 1px solid rgba(46, 197, 255, 0.35);
    box-shadow: 0 0 32px rgba(46, 197, 255, 0.06);
}

@media (min-width: 768px) {
    .ym-home-about-cta-inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 32px;
        padding: 28px 32px;
    }
}

.ym-home-about-cta-title {
    margin: 0 0 10px;
    font-size: clamp(1.2rem, 2.5vw, 1.45rem);
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.02em;
}

.ym-home-about-cta-text {
    margin: 0;
    font-size: 15px;
    line-height: 1.55;
    color: rgba(203, 213, 225, 0.85);
}

.ym-home-about-cta-action {
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .ym-home-about-cta-action {
        text-align: right;
    }
}

/* -------------------------------------------------------------------------
   Contact page (select-style layout)
   ------------------------------------------------------------------------- */

.ym-home-title--contact {
    font-size: clamp(1.55rem, 3.5vw, 2.35rem);
    letter-spacing: -0.03em;
    line-height: 1.15;
    text-align: left;
    margin: 0;
    color: #fff;
}

.ym-home-contact-intro {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.65;
    color: rgba(203, 213, 225, 0.9);
}

.ym-home-contact-shell {
    padding: 28px 22px 32px;
    margin-bottom: 44px;
    border-radius: 22px;
    background: linear-gradient(165deg, rgba(17, 28, 48, 0.85) 0%, rgba(10, 17, 32, 0.75) 100%);
    border: 1px solid rgba(148, 163, 184, 0.14);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

@media (min-width: 640px) {
    .ym-home-contact-shell {
        padding: 32px 28px 36px;
    }
}

.ym-home-contact-split {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px 36px;
    align-items: start;
}

@media (min-width: 900px) {
    .ym-home-contact-split {
        grid-template-columns: minmax(200px, 0.95fr) minmax(0, 1.25fr);
    }
}

.ym-home-contact-aside-text {
    margin: 0;
    font-size: 15px;
    line-height: 1.65;
    color: rgba(203, 213, 225, 0.88);
}

.ym-home-register-aside-lead {
    margin: 0 0 20px;
}

.ym-home-register-aside-dynamic {
    margin-bottom: 18px;
}

.ym-home-register-aside-heading {
    margin: 0 0 10px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: rgba(248, 250, 252, 0.95);
}

.ym-home-register-aside-features {
    margin: 0;
    padding: 0 0 0 1.15em;
    font-size: 14px;
    line-height: 1.58;
    color: rgba(203, 213, 225, 0.88);
}

.ym-home-register-aside-features li + li {
    margin-top: 8px;
}

.ym-home-register-aside-foot {
    margin: 0;
}

.ym-home-contact-form-panel {
    padding: 24px 20px 26px;
    border-radius: 18px;
    background: rgba(5, 10, 22, 0.72);
    border: 1px solid rgba(148, 163, 184, 0.12);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

@media (min-width: 640px) {
    .ym-home-contact-form-panel {
        padding: 26px 24px 28px;
    }
}

.ym-home-contact-form-panel .ym-home-tag-cyan {
    margin-bottom: 18px;
}

.ym-home-contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.ym-home-contact-form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px 18px;
}

@media (min-width: 560px) {
    .ym-home-contact-form-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.ym-home-register-form-grid > .ym-home-register-grid-full {
    grid-column: 1 / -1;
}

.ym-home-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 40px;
}

.ym-home-btn-pill-submit {
    width: 100%;
    max-width: 100%;
    padding: 14px 28px;
    font-size: 15px;
    border: none;
    cursor: pointer;
}

@media (min-width: 560px) {
    .ym-home-btn-pill-submit {
        width: auto;
        min-width: 200px;
    }
}

/* -------------------------------------------------------------------------
   Register page (signup on marketing layout)
   ------------------------------------------------------------------------- */

.ym-home-register-trial-highlight {
    display: block;
    max-width: 100%;
    margin: 0.85rem auto 0;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.98em;
    line-height: 1.4;
    color: var(--ym-home-landing-cyan);
}

.ym-home-contact-aside-text a {
    color: var(--ym-accent);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.ym-home-contact-aside-text a:hover {
    color: var(--ym-home-landing-cyan);
}

.ym-home-fieldset {
    border: 0;
    margin: 0;
    padding: 0;
    min-width: 0;
}

.ym-home-fieldset > .ym-home-label {
    display: block;
    padding: 0;
    margin: 0 0 10px;
}

.ym-home-choice-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 4px;
}

@media (min-width: 560px) {
    .ym-home-choice-grid--pair {
        grid-template-columns: 1fr 1fr;
    }
}

.ym-home-choice {
    position: relative;
    display: block;
    cursor: pointer;
}

.ym-home-choice-input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.ym-home-choice-card {
    display: grid;
    gap: 6px;
    padding: 12px 12px;
    border-radius: var(--ym-radius-card);
    border: 1px solid rgba(148, 163, 184, 0.22);
    background: rgba(15, 23, 42, 0.55);
    transition: transform 0.16s ease-out, border-color 0.16s ease-out, background 0.16s ease-out, box-shadow 0.16s ease-out;
    position: relative;
    overflow: hidden;
}

.ym-home-choice-card::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0;
    background: radial-gradient(600px 220px at 25% 0%, rgba(30, 167, 255, 0.24), transparent 60%);
    transition: opacity 0.16s ease-out;
}

.ym-home-choice-title,
.ym-home-choice-desc,
.ym-home-choice-meta {
    position: relative;
    z-index: 1;
}

.ym-home-choice-title {
    color: #f8fafc;
    font-weight: 650;
    letter-spacing: -0.01em;
    font-size: 14px;
}

.ym-home-choice-desc {
    color: rgba(203, 213, 225, 0.88);
    font-size: 12px;
    line-height: 1.55;
}

.ym-home-choice-meta {
    color: rgba(148, 163, 184, 0.92);
    font-size: 12px;
}

.ym-home-choice-card:hover {
    transform: translateY(-1px);
    border-color: rgba(30, 167, 255, 0.32);
    background: rgba(15, 23, 42, 0.65);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.26);
}

.ym-home-choice-input:focus-visible + .ym-home-choice-card {
    outline: none;
    box-shadow: 0 0 0 3px var(--ym-accent-soft);
    border-color: rgba(30, 167, 255, 0.45);
}

.ym-home-choice-input:checked + .ym-home-choice-card {
    border-color: rgba(30, 167, 255, 0.52);
    box-shadow: 0 0 0 1px rgba(30, 167, 255, 0.1), 0 14px 34px rgba(0, 0, 0, 0.28);
    background: rgba(15, 23, 42, 0.72);
}

.ym-home-choice-input:checked + .ym-home-choice-card::before {
    opacity: 1;
}

.ym-home-choice-input:checked + .ym-home-choice-card::after {
    content: "";
    position: absolute;
    top: 12px;
    right: 12px;
    width: 18px;
    height: 18px;
    border-radius: 999px;
    background: rgba(30, 167, 255, 0.15);
    border: 1px solid rgba(30, 167, 255, 0.5);
    box-shadow: 0 0 0 3px rgba(30, 167, 255, 0.12);
}

.ym-home-register-hint {
    margin: 0 0 12px;
    font-size: 14px;
    line-height: 1.55;
    color: rgba(203, 213, 225, 0.82);
}

.ym-home-register-legal {
    margin: 0;
    font-size: 13px;
    line-height: 1.55;
    color: rgba(148, 163, 184, 0.9);
}

.ym-home-register-signin {
    margin: 0;
    text-align: center;
}

.ym-home-register-signin a {
    color: rgba(203, 213, 225, 0.92);
    font-size: 14px;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.ym-home-register-signin a:hover {
    color: var(--ym-home-landing-cyan);
}

.ym-home-register-vessel-row--hidden {
    display: none;
}

/* Register: one form spans contact split; billing + price summary in the right panel */
.ym-home-register-form {
    gap: 0;
}

.ym-home-register-details-panel {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.ym-home-register-details-panel > .ym-home-tag-cyan {
    margin-bottom: 0;
}

.ym-home-register-fieldset-compact > legend.ym-home-label {
    margin-bottom: 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(148, 163, 184, 0.92);
}

.ym-home-register-account-choices {
    gap: 8px;
    margin-top: 0;
    align-items: stretch;
}

.ym-home-register-account-choices .ym-home-choice {
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.ym-home-register-account-choices .ym-home-choice-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 8px 10px;
    gap: 4px;
    min-height: 100%;
}

.ym-home-register-account-choices .ym-home-choice-title {
    font-size: 13px;
}

.ym-home-register-account-choices .ym-home-choice-desc {
    flex: 1;
    font-size: 11px;
    line-height: 1.35;
}

.ym-home-register-account-choices .ym-home-choice-input:checked + .ym-home-choice-card::after {
    top: 8px;
    right: 8px;
    width: 16px;
    height: 16px;
}

.ym-home-register-fieldset-compact .ym-home-register-billing-wrap {
    margin-top: 0;
}

.ym-home-register-fieldset-compact .ym-pricing-toggle {
    padding: 3px;
}

.ym-home-register-fieldset-compact .ym-pricing-toggle-opt {
    padding: 8px 12px;
    font-size: 13px;
}

.ym-home-register-vessel-compact .ym-home-label {
    margin-bottom: 4px;
}

.ym-home-register-hint--compact {
    margin: 0 0 6px;
    font-size: 11px;
    line-height: 1.35;
    color: rgba(203, 213, 225, 0.78);
}

.ym-home-register-hint--compact a {
    color: var(--ym-accent);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.ym-home-register-hint--compact a:hover {
    color: var(--ym-home-landing-cyan);
}

.ym-home-register-billing-wrap {
    position: relative;
    margin-top: 4px;
}

.ym-home-register-billing-wrap .ym-pricing-toggle {
    width: 100%;
    box-sizing: border-box;
}

.ym-home-register-billing-wrap .ym-pricing-toggle-opt {
    flex: 1;
    justify-content: center;
    text-align: center;
}

#register-billing-monthly:checked ~ .ym-pricing-toggle .ym-pricing-toggle-opt[for="register-billing-monthly"],
#register-billing-annual:checked ~ .ym-pricing-toggle .ym-pricing-toggle-opt[for="register-billing-annual"] {
    background: linear-gradient(135deg, var(--ym-home-landing-cyan) 0%, var(--ym-accent) 100%);
    color: #030712;
    box-shadow: 0 4px 14px rgba(46, 197, 255, 0.35);
}

.ym-home-register-quote {
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid rgba(148, 163, 184, 0.14);
}

.ym-home-register-bottom {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
}

.ym-home-register-bottom .ym-home-register-quote {
    margin-top: 0;
}

.ym-home-register-bottom .ym-home-register-signin {
    text-align: center;
}

.ym-home-register-quote-label {
    margin: 0 0 6px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(148, 163, 184, 0.9);
}

.ym-home-register-quote-total {
    margin: 0;
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #f8fafc;
}

.ym-home-register-quote-note {
    margin: 6px 0 0;
    font-size: 13px;
    line-height: 1.45;
    color: rgba(203, 213, 225, 0.78);
}

/* -------------------------------------------------------------------------
   Hub marketing sections (features, owners, managers, shared components)
   ------------------------------------------------------------------------- */

.ym-home-tag-cyan--center {
    display: block;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

/* Hub hero: copy | visual (home, hub pages, about, contact, pricing) */
.ym-home-hub-hero {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(28px, 5vw, 36px);
    align-items: center;
    margin-bottom: clamp(40px, 5vw, 52px);
}

@media (min-width: 960px) {
    .ym-home-hub-hero {
        grid-template-columns: minmax(0, 11fr) minmax(0, 9fr);
        gap: 32px 44px;
    }

    .ym-home-hub-hero-visual {
        max-width: none;
        margin-inline: 0;
    }
}

/* Single-column, centered hub hero (register, contact, about, pricing, …) */
.ym-home-hub-hero.ym-home-hub-hero--centered {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
}

.ym-home-hub-hero.ym-home-hub-hero--centered .ym-home-hub-hero-copy,
.ym-home-hub-hero.ym-home-hub-hero--centered .ym-home-hub-hero-visual {
    text-align: center;
    max-width: 40rem;
    width: 100%;
}

.ym-home-hub-hero.ym-home-hub-hero--centered .ym-home-hub-hero-copy .ym-home-title,
.ym-home-hub-hero.ym-home-hub-hero--centered .ym-home-hub-hero-copy .ym-pricing-title {
    text-align: center;
}

@media (min-width: 960px) {
    .ym-home-hub-hero.ym-home-hub-hero--centered {
        grid-template-columns: 1fr;
    }

    .ym-home-hub-hero.ym-home-hub-hero--centered .ym-home-hub-hero-visual {
        max-width: 40rem;
        margin-inline: auto;
    }
}

.ym-home-hub-hero-copy {
    text-align: left;
    min-width: 0;
}

.ym-home-hub-title {
    margin: 0 0 16px;
    font-size: clamp(1.65rem, 3.6vw, 2.45rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.12;
    color: #fff;
}

.ym-home-hub-lead {
    margin: 0 0 24px;
    font-size: 1.05rem;
    line-height: 1.65;
    color: rgba(203, 213, 225, 0.88);
    max-width: 38rem;
}

.ym-home-hub-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.ym-home-hub-hero-visual {
    min-width: 0;
    width: 100%;
    max-width: 520px;
    margin-inline: auto;
}

.ym-home-hub-hero-preview {
    width: 100%;
    max-width: 560px;
    margin-inline: auto;
    box-shadow: 0 28px 56px rgba(0, 0, 0, 0.35);
}

/* Centered band */
.ym-home-hub-band {
    text-align: center;
    max-width: 44rem;
    margin: 0 auto 48px;
    padding: 0 8px;
}

.ym-home-hub-band .ym-home-tag-cyan {
    margin-bottom: 12px;
}

.ym-home-hub-band-title {
    margin: 0 0 14px;
    font-size: clamp(1.25rem, 2.8vw, 1.65rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #fff;
    line-height: 1.25;
}

.ym-home-hub-band-text {
    margin: 0;
    font-size: 16px;
    line-height: 1.65;
    color: rgba(203, 213, 225, 0.82);
}

/* Feature grid 3x2 */
.ym-home-hub-feature-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 640px) {
    .ym-home-hub-feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .ym-home-hub-feature-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }
}

.ym-home-hub-feature-card {
    padding: 22px 20px 24px;
    border-radius: 18px;
    background: rgba(13, 21, 38, 0.72);
    border: 1px solid rgba(148, 163, 184, 0.12);
    min-height: 100%;
}

.ym-home-hub-feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    color: var(--ym-home-landing-cyan);
    background: rgba(46, 197, 255, 0.1);
    border: 1px solid rgba(46, 197, 255, 0.22);
}

.ym-home-hub-feature-title {
    margin: 0 0 8px;
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
}

.ym-home-hub-feature-desc {
    margin: 0;
    font-size: 14px;
    line-height: 1.55;
    color: rgba(148, 163, 184, 0.92);
}

/* Spotlight row */
.ym-home-hub-spotlight-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 900px) {
    .ym-home-hub-spotlight-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 22px;
    }
}

.ym-home-hub-spotlight {
    padding: 0 4px;
}

.ym-home-hub-spotlight-mock {
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    height: 140px;
    border-radius: 14px;
    padding: 14px;
    margin-bottom: 16px;
    background: rgba(8, 14, 28, 0.75);
    border: 1px solid rgba(148, 163, 184, 0.12);
}

.ym-home-hub-spotlight-mock-bar {
    flex-shrink: 0;
    height: 8px;
    border-radius: 6px;
    background: linear-gradient(90deg, rgba(46, 197, 255, 0.35), transparent);
    margin-bottom: 12px;
}

.ym-home-hub-spotlight-mock-bar--accent {
    background: linear-gradient(90deg, var(--ym-home-landing-cyan), rgba(30, 167, 255, 0.3));
}

.ym-home-hub-spotlight-mock-lines {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
    min-height: 0;
    justify-content: flex-start;
}

.ym-home-hub-spotlight-mock-lines span {
    height: 8px;
    border-radius: 4px;
    background: rgba(148, 163, 184, 0.15);
}

.ym-home-hub-spotlight-mock-lines span:nth-child(1) {
    width: 100%;
}

.ym-home-hub-spotlight-mock-lines span:nth-child(2) {
    width: 85%;
}

.ym-home-hub-spotlight-mock-lines span:nth-child(3) {
    width: 65%;
}

.ym-home-hub-spotlight-mock-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    flex: 1;
    min-height: 0;
    align-content: start;
}

.ym-home-hub-spotlight-mock-grid span {
    height: 36px;
    border-radius: 8px;
    background: rgba(148, 163, 184, 0.1);
    border: 1px solid rgba(148, 163, 184, 0.08);
}

.ym-home-hub-spotlight-mock-note {
    flex: 1;
    min-height: 48px;
    border-radius: 8px;
    background: rgba(46, 197, 255, 0.08);
    border: 1px dashed rgba(46, 197, 255, 0.25);
}

.ym-home-hub-spotlight-title {
    margin: 0 0 8px;
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
}

.ym-home-hub-spotlight-text {
    margin: 0;
    font-size: 14px;
    line-height: 1.55;
    color: rgba(148, 163, 184, 0.9);
}

/* Before / After (management) */
.ym-home-hub-compare-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

@media (min-width: 768px) {
    .ym-home-hub-compare-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.ym-home-hub-compare-card {
    padding: 24px 22px 26px;
    border-radius: 18px;
    border: 1px solid rgba(148, 163, 184, 0.14);
    background: rgba(13, 21, 38, 0.65);
}

.ym-home-hub-compare-card--before {
    border-color: rgba(251, 113, 133, 0.35);
    box-shadow: 0 0 28px rgba(251, 113, 133, 0.06);
}

.ym-home-hub-compare-card--after {
    border-color: rgba(46, 197, 255, 0.35);
    box-shadow: 0 0 28px rgba(46, 197, 255, 0.08);
}

.ym-home-hub-compare-title {
    margin: 0 0 16px;
    font-size: 1.1rem;
    font-weight: 700;
}

.ym-home-hub-compare-card--before .ym-home-hub-compare-title {
    color: #fda4af;
}

.ym-home-hub-compare-card--after .ym-home-hub-compare-title {
    color: var(--ym-home-landing-cyan);
}

.ym-home-hub-compare-list {
    margin: 0;
    padding-left: 1.15rem;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(226, 232, 240, 0.88);
}

.ym-home-hub-compare-list li {
    margin-bottom: 10px;
}

.ym-home-hub-compare-list li:last-child {
    margin-bottom: 0;
}

/* Bottom CTA banner */
.ym-home-hub-cta-inner {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
    padding: 26px 22px 28px;
    border-radius: 20px;
    background: rgba(8, 14, 28, 0.65);
    border: 1px solid rgba(148, 163, 184, 0.14);
}

@media (min-width: 768px) {
    .ym-home-hub-cta-inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 28px;
        padding: 28px 32px;
    }
}

.ym-home-hub-cta-title {
    margin: 0 0 8px;
    font-size: clamp(1.15rem, 2.4vw, 1.4rem);
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.02em;
}

.ym-home-hub-cta-text {
    margin: 0;
    font-size: 15px;
    line-height: 1.55;
    color: rgba(203, 213, 225, 0.82);
}

.ym-home-hub-cta-btn {
    flex-shrink: 0;
    white-space: nowrap;
}

.ym-home-hub-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

@media (min-width: 768px) {
    .ym-home-hub-cta-btn {
        align-self: center;
    }

    .ym-home-hub-cta-actions {
        justify-content: flex-end;
    }
}

/* -------------------------------------------------------------------------
   Pricing page
   ------------------------------------------------------------------------- */

.ym-pricing-title {
    margin: 0;
    font-size: clamp(1.65rem, 3.5vw, 2.45rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.12;
    color: #fff;
}

.ym-pricing-lead {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.65;
    color: rgba(203, 213, 225, 0.88);
}

.ym-pricing-billing {
    display: flex;
    justify-content: center;
}

.ym-pricing-radio {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.ym-pricing-toggle {
    display: inline-flex;
    padding: 4px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.75);
    border: 1px solid rgba(148, 163, 184, 0.2);
    gap: 4px;
}

.ym-pricing-toggle-opt {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    color: rgba(203, 213, 225, 0.85);
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

#billing-monthly:checked ~ .ym-pricing-toggle .ym-pricing-toggle-opt[for="billing-monthly"],
#billing-annual:checked ~ .ym-pricing-toggle .ym-pricing-toggle-opt[for="billing-annual"] {
    background: linear-gradient(135deg, var(--ym-home-landing-cyan) 0%, var(--ym-accent) 100%);
    color: #030712;
    box-shadow: 0 4px 14px rgba(46, 197, 255, 0.35);
}

.ym-pricing-price--annual {
    display: none;
}

.ym-home-main:has(#billing-annual:checked) .ym-pricing-price--monthly {
    display: none;
}

.ym-home-main:has(#billing-annual:checked) .ym-pricing-price--annual {
    display: block;
}

.ym-pricing-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
    align-items: stretch;
}

@media (min-width: 1024px) {
    .ym-pricing-cards {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        align-items: start;
    }

    .ym-pricing-card--featured {
        transform: translateY(-6px);
    }
}

.ym-pricing-card {
    position: relative;
    padding: 26px 22px 28px;
    border-radius: 20px;
    background: rgba(17, 24, 39, 0.85);
    border: 1px solid rgba(148, 163, 184, 0.14);
    display: flex;
    flex-direction: column;
}

.ym-pricing-card--featured {
    border-color: rgba(46, 197, 255, 0.45);
    box-shadow:
        0 0 0 1px rgba(46, 197, 255, 0.15),
        0 24px 48px rgba(0, 0, 0, 0.35),
        0 0 48px rgba(46, 197, 255, 0.12);
    z-index: 1;
}

.ym-pricing-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
}

.ym-pricing-card-kicker {
    display: inline-block;
    margin: 0 0 10px;
    padding: 6px 12px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ym-home-landing-cyan);
    background: rgba(46, 197, 255, 0.1);
    border: 1px solid rgba(46, 197, 255, 0.25);
    border-radius: 999px;
}

.ym-pricing-card-tags .ym-pricing-card-kicker {
    margin-bottom: 0;
}

.ym-pricing-card-kicker--popular {
    background: rgba(46, 197, 255, 0.2);
    border-color: rgba(46, 197, 255, 0.45);
    color: #ecfeff;
}

.ym-pricing-card-title {
    margin: 0 0 8px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.02em;
}

.ym-pricing-price-block {
    margin-bottom: 12px;
    min-height: 3.2rem;
}

.ym-pricing-price {
    margin: 0;
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
}

.ym-pricing-currency {
    font-size: 1.25rem;
    vertical-align: super;
    font-weight: 700;
}

.ym-pricing-period {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(148, 163, 184, 0.9);
}

.ym-pricing-price-custom {
    margin: 0;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--ym-home-landing-cyan);
}

.ym-pricing-card-desc {
    margin: 0 0 18px;
    font-size: 14px;
    line-height: 1.55;
    color: rgba(148, 163, 184, 0.95);
}

.ym-pricing-features {
    margin: 0 0 22px;
    padding: 0;
    list-style: none;
    flex: 1;
}

.ym-pricing-features li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.45;
    color: rgba(226, 232, 240, 0.9);
}

.ym-pricing-features li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 3px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(46, 197, 255, 0.15);
    border: 1px solid rgba(46, 197, 255, 0.4);
}

.ym-pricing-features li::after {
    content: "";
    position: absolute;
    left: 6px;
    top: 6px;
    width: 5px;
    height: 9px;
    border: solid var(--ym-home-landing-cyan);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.ym-pricing-calc {
    margin-bottom: 20px;
    padding: 14px 14px 16px;
    border-radius: 14px;
    background: rgba(2, 6, 23, 0.45);
    border: 1px solid rgba(148, 163, 184, 0.12);
}

.ym-pricing-calc-label {
    margin: 0 0 10px;
    font-size: 12px;
    font-weight: 600;
    color: rgba(226, 232, 240, 0.9);
}

.ym-pricing-calc-hint {
    display: block;
    font-weight: 400;
    color: rgba(148, 163, 184, 0.85);
}

.ym-pricing-calc-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 16px;
}

.ym-pricing-calc-input {
    width: 72px;
    padding: 10px 12px;
    font-size: 15px;
    font-weight: 600;
    color: var(--ym-form-control-color);
    background: var(--ym-form-control-bg);
    border: 1px solid rgba(148, 163, 184, 0.25);
    border-radius: 10px;
}

.ym-pricing-calc-out {
    margin: 0;
    font-size: 14px;
    color: rgba(203, 213, 225, 0.9);
}

.ym-pricing-calc-out strong {
    color: var(--ym-home-landing-cyan);
}

.ym-pricing-card-btn {
    margin-top: auto;
    align-self: stretch;
    text-align: center;
    justify-content: center;
}

.ym-pricing-compare-bar {
    padding: 22px 24px;
    border-radius: 16px;
    background: rgba(17, 24, 39, 0.65);
    border: 1px solid rgba(148, 163, 184, 0.12);
    text-align: center;
}

.ym-pricing-compare-title {
    margin: 0 0 10px;
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
}

.ym-pricing-compare-text {
    margin: 0 auto;
    max-width: 52rem;
    font-size: 15px;
    line-height: 1.6;
    color: rgba(148, 163, 184, 0.92);
}

.ym-pricing-wide-cta-inner {
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
    padding: 24px 22px 26px;
    border-radius: 20px;
    background: rgba(8, 14, 28, 0.75);
    border: 1px solid rgba(46, 197, 255, 0.22);
}

@media (min-width: 768px) {
    .ym-pricing-wide-cta-inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 28px;
        padding: 26px 28px;
    }
}

.ym-pricing-wide-cta-title {
    margin: 0 0 8px;
    font-size: clamp(1.1rem, 2.2vw, 1.35rem);
    font-weight: 700;
    color: #fff;
}

.ym-pricing-wide-cta-text {
    margin: 0;
    font-size: 14px;
    line-height: 1.55;
    color: rgba(203, 213, 225, 0.82);
}

.ym-pricing-wide-cta-btn {
    flex-shrink: 0;
    white-space: nowrap;
}
