:root {
    --bg: #edf5ff;
    --panel: #ffffff;
    --panel-glass: rgba(255, 255, 255, 0.93);
    --text: #0b172a;
    --muted: #5c6f8a;
    --brand-deep: #061a33;
    --brand-dark: #0b3973;
    --brand: #1f7ce2;
    --brand-bright: #2398ff;
    --accent: #12c2ff;
    --accent-soft: rgba(18, 194, 255, 0.16);
    --border: #cddded;
    --warning-bg: #fff8df;
    --warning-border: #eec45c;
    --error-bg: #fff1f1;
    --error-border: #ef9b9b;
    --success-bg: #eaf8ef;
    --success-border: #9bd7b2;
    --shadow: 0 24px 60px rgba(7, 29, 54, 0.22);
    --shadow-soft: 0 14px 36px rgba(9, 34, 71, 0.13);
    --shadow-card: 0 16px 32px rgba(8, 32, 66, 0.12);
    --frame: min(1120px, calc(100vw - 48px));
    --logo-size: clamp(150px, 15.5vw, 220px);
}

* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
}

body {
    min-height: 100svh;
    margin: 0;
    background:
        linear-gradient(rgba(31, 124, 226, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(31, 124, 226, 0.045) 1px, transparent 1px),
        radial-gradient(circle at 12% 92%, rgba(31, 124, 226, 0.13), transparent 29%),
        radial-gradient(circle at 86% 28%, rgba(18, 194, 255, 0.10), transparent 32%),
        linear-gradient(180deg, #f5faff 0%, var(--bg) 58%, #e8f2fd 100%);
    background-size: 56px 56px, 56px 56px, auto, auto, auto;
    color: var(--text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.43;
}

.site-frame {
    width: var(--frame);
    margin: 0 auto;
}

.site-hero {
    position: relative;
    color: white;
    background:
        radial-gradient(circle at 76% 18%, rgba(18, 194, 255, 0.32), transparent 34%),
        radial-gradient(circle at 26% 8%, rgba(255, 255, 255, 0.10), transparent 24%),
        linear-gradient(112deg, rgba(6, 28, 55, 0.99), rgba(25, 120, 224, 0.99));
    overflow: hidden;
}

.site-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.10) 47%, transparent 48%),
        linear-gradient(rgba(255, 255, 255, 0.052) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
    background-size: 100% 100%, 44px 44px, 44px 44px;
    opacity: 0.65;
}

.site-hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.18);
}

.site-hero > .site-frame {
    position: relative;
    z-index: 1;
}

.hero-grid {
    min-height: calc(var(--logo-size) + 44px);
    padding: 18px 0 28px;
    display: grid;
    grid-template-columns: var(--logo-size) minmax(0, 1fr);
    grid-template-rows: auto 1fr;
    grid-template-areas:
        "logo nav"
        "logo copy";
    gap: 10px 28px;
    align-items: center;
}

.hero-logo-link {
    grid-area: logo;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: var(--logo-size);
    height: var(--logo-size);
    align-self: start;
    text-decoration: none;
}

.hero-logo-img {
    display: block;
    width: var(--logo-size);
    height: var(--logo-size);
    object-fit: contain;
    border-radius: 32px;
    filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.30));
}

.site-nav {
    grid-area: nav;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 24px;
    padding-top: 12px;
    font-weight: 850;
    font-size: 14px;
}

.site-nav a {
    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;
    white-space: nowrap;
}

.site-nav a.active,
.site-nav a:hover {
    color: white;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 6px;
}

.hero-copy {
    grid-area: copy;
    align-self: center;
    max-width: 800px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    margin-bottom: 12px;
    padding: 6px 13px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.10);
    color: rgba(255, 255, 255, 0.94);
    box-shadow: inset 0 0 18px rgba(18, 194, 255, 0.10);
    font-size: 11px;
    font-weight: 950;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    max-width: 760px;
    margin-bottom: 10px;
    font-size: clamp(36px, 4.1vw, 58px);
    line-height: 1.02;
    letter-spacing: -0.044em;
}

.lead {
    max-width: 800px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.89);
    font-size: clamp(15px, 1.3vw, 18px);
    line-height: 1.45;
}

.actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.button,
button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.30);
    border-radius: 12px;
    padding: 10px 16px;
    color: white;
    background: linear-gradient(180deg, var(--brand-bright), var(--brand));
    box-shadow: 0 10px 24px rgba(7, 63, 137, 0.18);
    font: inherit;
    font-size: 14px;
    font-weight: 900;
    text-decoration: none;
    cursor: pointer;
}

.button.light {
    background: white;
    color: var(--brand-dark);
    border-color: white;
}

.button.secondary {
    background: rgba(255, 255, 255, 0.12);
    color: white;
    box-shadow: inset 0 0 18px rgba(18, 194, 255, 0.08);
}

main .button.secondary {
    background: #edf7ff;
    color: var(--brand-dark);
    border-color: var(--border);
    box-shadow: none;
}

.site-hero .button.secondary {
    background: rgba(255, 255, 255, 0.12);
    color: white;
    border-color: rgba(255, 255, 255, 0.30);
    box-shadow: inset 0 0 18px rgba(18, 194, 255, 0.08);
}

button:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

main {
    width: var(--frame);
    margin: 0 auto;
    padding: 22px 0 26px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: -34px;
    margin-bottom: 18px;
    position: relative;
    z-index: 2;
}

.stat-card,
.card,
.section {
    background: var(--panel-glass);
    border: 1px solid rgba(190, 211, 232, 0.92);
    border-radius: 18px;
    box-shadow: var(--shadow-card);
    backdrop-filter: blur(10px);
}

.stat-card {
    min-height: 76px;
    padding: 15px 17px;
    position: relative;
    overflow: hidden;
}

.stat-card::before,
.card::before,
.section::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(18, 194, 255, 0.10), transparent 34%);
    pointer-events: none;
}

.stat-card,
.card,
.section {
    position: relative;
}

.stat-card > *,
.card > *,
.section > * {
    position: relative;
    z-index: 1;
}

.stat-card strong {
    display: block;
    color: var(--brand-dark);
    font-size: 19px;
    line-height: 1.1;
}

.stat-card span {
    display: block;
    margin-top: 5px;
    color: var(--muted);
    font-size: 12.5px;
    line-height: 1.38;
}

.section {
    margin: 16px 0;
    padding: 22px 24px;
}

.section.featured {
    background:
        radial-gradient(circle at top right, rgba(18, 194, 255, 0.14), transparent 40%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.99), rgba(244, 251, 255, 0.98));
}

.section h2 {
    margin-bottom: 11px;
    font-size: clamp(26px, 2.3vw, 34px);
    line-height: 1.08;
    letter-spacing: -0.025em;
}

.section p,
.section li,
.card p {
    font-size: 15px;
    line-height: 1.5;
}

.section p:last-child,
.card p:last-child {
    margin-bottom: 0;
}

.badge {
    display: inline-block;
    padding: 5px 10px;
    margin-bottom: 10px;
    border-radius: 999px;
    background: #e4f4ff;
    color: var(--brand-dark);
    font-size: 12px;
    font-weight: 950;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin: 14px 0;
}

.card {
    padding: 18px;
    overflow: hidden;
}

.card h3 {
    margin-bottom: 8px;
    color: #0c1a2d;
    font-size: 18px;
    line-height: 1.16;
    letter-spacing: -0.015em;
}

.feature-card {
    min-height: 118px;
}

.notice,
.success,
.error {
    border-radius: 14px;
    padding: 13px 15px;
    margin: 14px 0;
    font-size: 14px;
}

.notice {
    background: var(--warning-bg);
    border: 1px solid var(--warning-border);
}

.success {
    background: var(--success-bg);
    border: 1px solid var(--success-border);
    color: #0d5d2e;
}

.error {
    background: var(--error-bg);
    border: 1px solid var(--error-border);
    color: #8a1f1f;
}

.two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.two-columns ul {
    margin: 0;
    padding-left: 22px;
}

.tier-grid {
    grid-template-columns: repeat(3, 1fr);
}

.pricing-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 0.9fr);
    gap: 22px;
    align-items: center;
    background:
        radial-gradient(circle at 92% 20%, rgba(18, 194, 255, 0.19), transparent 36%),
        linear-gradient(135deg, rgba(7, 29, 54, 0.98), rgba(12, 60, 116, 0.97));
    color: white;
    border-color: rgba(18, 194, 255, 0.28);
    box-shadow: var(--shadow);
}

.pricing-panel::before {
    background:
        linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
    background-size: 34px 34px;
}

.pricing-panel p {
    color: rgba(255, 255, 255, 0.82);
}

.pricing-panel .badge {
    background: rgba(18, 194, 255, 0.16);
    color: white;
    border: 1px solid rgba(18, 194, 255, 0.26);
}

.price-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.price-card {
    position: relative;
}

.price-grid .price-card {
    padding: 18px;
    border: 1px solid rgba(149, 213, 255, 0.26);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.10);
    box-shadow: inset 0 0 24px rgba(18, 194, 255, 0.07);
}

.price-grid .price-card h3,
.pricing-panel .price-card p {
    color: white;
}

.price {
    margin: 4px 0 8px;
    color: var(--accent);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 950;
    line-height: 1;
    letter-spacing: -0.04em;
}

.savings-pill {
    display: inline-flex;
    align-items: center;
    margin-top: 6px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(18, 194, 255, 0.13);
    color: var(--brand-dark);
    font-size: 13px;
    font-weight: 950;
}

.pricing-panel .savings-pill,
.counter .savings-pill {
    color: white;
    background: rgba(18, 194, 255, 0.16);
    border: 1px solid rgba(18, 194, 255, 0.22);
}

.tier-card {
    min-height: 220px;
}

.tier-card .price {
    color: var(--brand-dark);
    font-size: 42px;
}

.tier-card.highlighted {
    border-color: rgba(18, 194, 255, 0.40);
    box-shadow: 0 20px 44px rgba(18, 93, 164, 0.18);
}

.tier-note {
    color: var(--muted);
    font-size: 13px !important;
}

.signup-panel {
    display: grid;
    grid-template-columns: minmax(330px, 0.95fr) minmax(420px, 1.05fr);
    gap: 22px;
    align-items: start;
}

.counter {
    min-height: 300px;
    padding: 24px;
    border-radius: 20px;
    color: white;
    background:
        radial-gradient(circle at 80% 20%, rgba(18, 194, 255, 0.27), transparent 34%),
        linear-gradient(145deg, #06182d, #09294a 60%, #071d36);
    box-shadow: var(--shadow);
    overflow: hidden;
    position: relative;
}

.counter::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
    background-size: 32px 32px;
    opacity: 0.6;
}

.counter > * {
    position: relative;
    z-index: 1;
}

.console-label {
    display: inline-flex;
    margin-bottom: 14px;
    padding: 5px 10px;
    border: 1px solid rgba(18, 194, 255, 0.25);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 12px;
    font-weight: 950;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.counter-number {
    color: var(--accent);
    font-size: clamp(48px, 5vw, 72px);
    font-weight: 950;
    line-height: 0.95;
    letter-spacing: -0.05em;
}

.counter p {
    margin: 12px 0 12px;
    font-size: 18px;
}

.counter small {
    color: rgba(255, 255, 255, 0.78);
}

.console-prices {
    display: grid;
    gap: 10px;
    margin-top: 20px;
}

.console-prices div {
    padding: 12px;
    border: 1px solid rgba(18, 194, 255, 0.20);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
}

.console-prices strong,
.console-prices span {
    display: block;
}

.console-prices strong {
    color: white;
    font-size: 16px;
}

.console-prices span {
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 13px;
    line-height: 1.35;
}

form {
    display: grid;
    gap: 11px;
}

label {
    display: grid;
    gap: 5px;
    font-weight: 850;
    font-size: 14px;
}

label span {
    color: var(--muted);
    font-weight: 500;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 11px;
    padding: 10px 12px;
    background: white;
    color: var(--text);
    font: inherit;
}

textarea {
    min-height: 88px;
    resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
    outline: 3px solid rgba(18, 194, 255, 0.24);
    border-color: var(--brand);
}

.form-row {
    display: grid;
    gap: 10px;
}

.two-field-row {
    grid-template-columns: 1fr 1fr;
}

.checkbox-row {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 9px;
    align-items: start;
}

.checkbox-row input {
    width: auto;
    margin-top: 4px;
}

.checkbox-row label {
    font-size: 13px;
    line-height: 1.35;
}

.hidden-field {
    position: absolute;
    left: -5000px;
    height: 1px;
    overflow: hidden;
}

.privacy-compact {
    margin-top: 20px;
    color: var(--text);
}

.signup-form-card h2 {
    margin-bottom: 4px;
}

.manual-shell {
    max-width: 1140px;
}

.manual-wizard {
    min-height: clamp(650px, 66svh, 820px);
    display: grid;
    grid-template-rows: auto 1fr;
    padding: 32px 34px;
}

.manual-top {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: start;
    margin-bottom: 18px;
}

.manual-slide {
    align-self: stretch;
}

.manual-slide h2 {
    font-size: clamp(30px, 2.7vw, 40px);
    margin-bottom: 12px;
}

.manual-slide p,
.manual-slide ul {
    max-width: 930px;
    font-size: 17px;
    line-height: 1.5;
}

.manual-slide ul {
    margin: 14px 0 0;
    padding-left: 22px;
}

.manual-slide li + li {
    margin-top: 7px;
}

.manual-slide.has-media {
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
    gap: 18px;
}

.manual-copy {
    max-width: 980px;
}

.manual-media {
    align-self: stretch;
    display: grid;
    grid-template-rows: minmax(0, 1fr) auto;
    margin: 0;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: #f8fbff;
    box-shadow: 0 16px 34px rgba(20, 70, 120, 0.14);
}

.manual-media img {
    display: block;
    width: 100%;
    max-height: 430px;
    object-fit: contain;
    background: #f8fbff;
}

.manual-media-splash {
    max-width: 560px;
    justify-self: center;
    background: #04111f;
}

.manual-media-splash img {
    width: auto;
    max-width: 100%;
    max-height: 385px;
    margin: 0 auto;
    background: #04111f;
}

.manual-media figcaption {
    padding: 10px 14px;
    border-top: 1px solid var(--border);
    background: rgba(238, 247, 255, 0.94);
    color: var(--muted);
    font-size: 13px;
    line-height: 1.35;
}

.manual-controls {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

.site-footer {
    padding: 10px 0 24px;
    color: var(--muted);
    font-size: 13px;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
}


.page-home .intro-feature {
    padding-top: 21px;
    padding-bottom: 21px;
}

.page-home .pricing-panel {
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 1fr);
    gap: 18px;
    margin-top: 14px;
    padding: 22px 26px;
}

.page-home .pricing-panel .pricing-copy h2 {
    max-width: 560px;
    margin-bottom: 10px;
    font-size: clamp(27px, 2.25vw, 34px);
}

.page-home .pricing-panel .pricing-copy p {
    max-width: 580px;
    margin-bottom: 0;
}

.page-home .pricing-panel .price-grid {
    gap: 11px;
}

.page-home .pricing-panel .price-grid .price-card {
    padding: 15px;
}

.page-home .pricing-panel .price {
    margin: 3px 0 7px;
    font-size: clamp(30px, 3vw, 38px);
}

.page-home .pricing-panel .price-card h3 {
    margin-bottom: 5px;
    font-size: 18px;
}

.page-home .pricing-panel .price-card p {
    font-size: 12.5px;
    line-height: 1.36;
}

.page-home .pricing-panel .savings-pill {
    margin-top: 5px;
    padding: 5px 9px;
    font-size: 12px;
}

.page-home .notice {
    margin-top: 14px;
}

@media (min-width: 1200px) and (max-height: 820px) {
    :root {
        --logo-size: 204px;
    }

    h1 {
        font-size: 50px;
    }

    .hero-grid {
        padding-top: 16px;
        padding-bottom: 24px;
    }

    main {
        padding-top: 20px;
    }

    .section {
        padding: 20px 22px;
    }

    .card {
        padding: 18px;
    }

    .feature-card {
        min-height: 112px;
    }

    .page-home .pricing-panel {
        padding: 20px 24px;
    }

    .page-home .pricing-panel .pricing-copy h2 {
        font-size: 30px;
    }

    .page-home .pricing-panel .price {
        font-size: 34px;
    }

    .manual-wizard {
        min-height: clamp(560px, 62svh, 700px);
        padding: 28px 30px;
    }

    .manual-shell {
        max-width: 100%;
    }

    .manual-media img {
        max-height: 360px;
    }

    .manual-media-splash img {
        max-height: 320px;
    }
}

@media (max-width: 980px) {
    :root {
        --frame: min(100vw - 28px, 860px);
        --logo-size: 150px;
    }

    .hero-grid {
        grid-template-columns: var(--logo-size) 1fr;
        gap: 14px 20px;
    }

    .site-nav {
        flex-wrap: wrap;
        gap: 12px 18px;
        justify-content: flex-start;
        padding-top: 8px;
    }

    .hero-stats,
    .card-grid,
    .tier-grid,
    .signup-panel,
    .two-columns,
    .two-field-row,
    .pricing-panel,
    .price-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    :root {
        --frame: min(100vw - 22px, 520px);
        --logo-size: 124px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        grid-template-areas:
            "logo"
            "nav"
            "copy";
        justify-items: start;
    }

    .site-nav {
        justify-content: flex-start;
        font-size: 14px;
    }

    h1 {
        font-size: 36px;
    }

    .manual-top {
        display: grid;
    }

    .manual-controls {
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .manual-wizard {
        min-height: auto;
        padding: 24px 22px;
    }

    .manual-slide p,
    .manual-slide ul {
        font-size: 16px;
    }
}

@media (max-width: 720px) {
    .manual-wizard {
        min-height: auto;
        padding: 24px 20px;
    }

    .manual-top {
        flex-direction: column;
    }

    .manual-slide p,
    .manual-slide ul {
        font-size: 16px;
    }

    .manual-media img,
    .manual-media-splash img {
        max-height: 300px;
    }
}

/* >>> MusicNote Haven manual hidden slide safety >>> */
.manual-slide[hidden],
.manual-slide.has-media[hidden] {
    display: none !important;
}
/* <<< MusicNote Haven manual hidden slide safety <<< */

/* >>> MusicNote Haven privacy-friendly analytics counter >>> */
.page-home main {
    padding-bottom: 6px;
}

.page-home .notice {
    margin-bottom: 0;
}

.site-footer {
    margin-top: 0;
    padding: 0 0 20px;
    color: var(--muted);
    font-size: 13px;
}

.visitor-stats {
    width: var(--frame);
    margin: 0 auto 7px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.visitor-stats-line {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 5px 10px;
    align-items: center;
    max-width: 100%;
    padding: 8px 12px;
    border: 1px solid rgba(31, 124, 226, 0.22);
    border-radius: 14px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(237, 247, 255, 0.74));
    box-shadow: 0 8px 20px rgba(7, 29, 54, 0.07);
    color: var(--muted);
    font-size: 12px;
    line-height: 1.25;
}

.visitor-stats-line strong {
    color: var(--brand-deep);
    font-weight: 950;
}

.visitor-count-inline {
    color: var(--brand-dark);
    font-weight: 950;
}

.visitor-country-inline {
    color: var(--brand-deep);
    font-weight: 850;
}

.visitor-privacy-inline {
    color: var(--muted);
}

.site-footer .footer-grid {
    padding-top: 0;
}

@media (max-width: 640px) {
    .page-home main {
        padding-bottom: 8px;
    }

    .visitor-stats {
        width: var(--frame);
        margin-bottom: 8px;
    }

    .visitor-stats-line {
        display: grid;
        gap: 4px;
        width: 100%;
    }
}
/* <<< MusicNote Haven privacy-friendly analytics counter <<< */

/* >>> MusicNote Haven mobile pricing and analytics polish 20260625 >>> */
@media (max-width: 980px) {
    .page-home .pricing-panel,
    .pricing-panel {
        display: grid;
        grid-template-columns: 1fr !important;
        gap: 16px;
        align-items: stretch;
        min-width: 0;
    }

    .page-home .pricing-panel .pricing-copy,
    .pricing-panel .pricing-copy,
    .page-home .pricing-panel .price-grid,
    .pricing-panel .price-grid {
        min-width: 0;
        width: 100%;
    }

    .page-home .pricing-panel .price-grid,
    .pricing-panel .price-grid {
        grid-template-columns: 1fr !important;
    }

    .page-home .pricing-panel .price-grid .price-card,
    .pricing-panel .price-grid .price-card {
        width: 100%;
        min-width: 0;
        overflow-wrap: anywhere;
    }

    .page-home .pricing-panel .pricing-copy h2,
    .pricing-panel .pricing-copy h2 {
        max-width: none;
    }

    .page-home .pricing-panel .pricing-copy p,
    .pricing-panel .pricing-copy p {
        max-width: none;
    }
}

@media (max-width: 640px) {
    .page-home .pricing-panel,
    .pricing-panel {
        padding: 20px 18px;
        gap: 18px;
        overflow: hidden;
    }

    .page-home .pricing-panel .pricing-copy h2,
    .pricing-panel .pricing-copy h2 {
        font-size: clamp(34px, 10vw, 46px);
        line-height: 1.06;
        letter-spacing: -0.045em;
    }

    .page-home .pricing-panel .pricing-copy p,
    .pricing-panel .pricing-copy p {
        font-size: 16px;
        line-height: 1.45;
    }

    .page-home .pricing-panel .price-grid .price-card,
    .pricing-panel .price-grid .price-card {
        padding: 16px;
        border-radius: 18px;
    }

    .page-home .pricing-panel .price-card h3,
    .pricing-panel .price-card h3 {
        font-size: 23px;
        line-height: 1.08;
    }

    .page-home .pricing-panel .price,
    .pricing-panel .price {
        font-size: clamp(44px, 15vw, 62px);
    }

    .page-home .pricing-panel .price-card p,
    .pricing-panel .price-card p {
        font-size: 15px;
        line-height: 1.42;
    }

    .page-home .pricing-panel .savings-pill,
    .pricing-panel .savings-pill {
        white-space: normal;
        font-size: 14px;
        line-height: 1.2;
    }
}

@media (max-width: 520px) {
    .visitor-stats-line {
        font-size: 11.5px;
    }

    .visitor-country-inline {
        overflow-wrap: anywhere;
    }
}
/* <<< MusicNote Haven mobile pricing and analytics polish 20260625 <<< */
