:root {
    --bg: #f4f8ff;
    --surface: rgba(255, 255, 255, 0.86);
    --surface-strong: #ffffff;
    --text: #0b1730;
    --muted: #59687f;
    --muted-strong: #3a4b65;
    --line: rgba(101, 132, 170, 0.22);
    --blue: #2391f0;
    --blue-strong: #0c67c8;
    --blue-soft: #d9efff;
    --mint: #19c7b1;
    --navy: #081b35;
    --white: #ffffff;
    --shadow: 0 24px 70px rgba(25, 72, 132, 0.14);
    --shadow-soft: 0 14px 34px rgba(25, 72, 132, 0.10);
    --radius: 8px;
    --header-h: 86px;
}

html[data-theme="dark"] {
    --bg: #0f1726;
    --surface: rgba(20, 31, 50, 0.84);
    --surface-strong: #152138;
    --text: #f7fbff;
    --muted: #a9b9cf;
    --muted-strong: #d6e2f2;
    --line: rgba(164, 196, 232, 0.18);
    --blue: #55b8ff;
    --blue-strong: #8ed0ff;
    --blue-soft: rgba(68, 166, 255, 0.20);
    --mint: #4ce5cf;
    --navy: #f7fbff;
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
    --shadow-soft: 0 14px 34px rgba(0, 0, 0, 0.24);
}

* {
    box-sizing: border-box;
}

html {
    min-width: 320px;
    scroll-behavior: smooth;
    background: var(--bg);
}

body {
    min-height: 100vh;
    margin: 0;
    color: var(--text);
    font-family: "Plus Jakarta Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    letter-spacing: 0;
    background:
        linear-gradient(180deg, rgba(241, 248, 255, 0.98) 0%, rgba(247, 251, 255, 0.96) 38%, rgba(232, 244, 255, 0.92) 100%),
        var(--bg);
    overflow-x: hidden;
}

html[data-theme="dark"] body {
    background:
        linear-gradient(180deg, rgba(15, 23, 38, 0.98) 0%, rgba(17, 28, 47, 0.96) 42%, rgba(13, 31, 48, 0.94) 100%),
        var(--bg);
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -3;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(48, 137, 222, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(48, 137, 222, 0.08) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent 72%);
}

a {
    color: inherit;
    text-decoration: none;
}

img,
svg {
    display: block;
    max-width: 100%;
}

button,
input,
textarea,
select {
    font: inherit;
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.network-canvas {
    position: fixed;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.74;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 30;
    padding: 10px 14px;
    color: var(--white);
    background: var(--blue-strong);
    border-radius: var(--radius);
    transform: translateY(-140%);
    transition: transform 180ms ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.site-header {
    position: sticky;
    top: 16px;
    z-index: 20;
    width: min(1180px, calc(100% - 40px));
    margin: 16px auto 0;
    border: 1px solid rgba(255, 255, 255, 0.76);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.76);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(18px);
}

html[data-theme="dark"] .site-header {
    border-color: rgba(164, 196, 232, 0.16);
    background: rgba(18, 29, 48, 0.78);
}

.header-inner {
    width: 100%;
    min-height: 68px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 22px;
    padding: 0 16px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    font-weight: 900;
    color: var(--navy);
}

.brand-mark {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border: 1px solid rgba(35, 145, 240, 0.22);
    border-radius: var(--radius);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(223, 242, 255, 0.88));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92), 0 8px 18px rgba(35, 145, 240, 0.13);
}

.brand-mark svg {
    width: 34px;
    height: 34px;
}

.brand-name {
    font-size: 1.08rem;
    white-space: nowrap;
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.site-nav a {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    padding: 0 14px;
    border-radius: var(--radius);
    color: var(--muted-strong);
    font-weight: 750;
    transition: color 160ms ease, background 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
    color: var(--blue-strong);
    background: rgba(35, 145, 240, 0.08);
}

.header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.theme-toggle,
.menu-toggle {
    border: 1px solid var(--line);
    color: var(--muted-strong);
    background: var(--surface);
    border-radius: var(--radius);
    cursor: pointer;
}

.theme-toggle {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
}

.theme-toggle svg {
    width: 20px;
    height: 20px;
}

.theme-moon,
html[data-theme="dark"] .theme-sun {
    display: none;
}

html[data-theme="dark"] .theme-moon {
    display: block;
}

.header-cta,
.button {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid transparent;
    border-radius: var(--radius);
    font-weight: 850;
    line-height: 1;
    white-space: nowrap;
}

.header-cta {
    padding: 0 18px;
    color: var(--white);
    background: linear-gradient(180deg, #31a4ff, #1478dd);
    box-shadow: 0 12px 24px rgba(35, 145, 240, 0.22);
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    place-items: center;
    gap: 4px;
    padding: 10px;
}

.menu-toggle span {
    width: 18px;
    height: 2px;
    display: block;
    border-radius: 999px;
    background: currentColor;
}

.hero {
    padding: clamp(54px, 6vw, 82px) 0 34px;
}

.hero-grid {
    min-height: auto;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
    align-items: center;
    gap: clamp(34px, 5vw, 74px);
}

.hero-grid > *,
.page-hero-grid > *,
.app-grid > *,
.support-grid > *,
.account-layout > * {
    min-width: 0;
}

.eyebrow {
    width: fit-content;
    max-width: 100%;
    margin: 0 0 18px;
    padding: 8px 12px;
    color: #075b9f;
    border: 1px solid rgba(35, 145, 240, 0.26);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 10px 24px rgba(35, 145, 240, 0.08);
    font-size: 0.84rem;
    font-weight: 850;
}

html[data-theme="dark"] .eyebrow {
    color: #9dd9ff;
    background: rgba(26, 45, 72, 0.72);
}

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

.hero h1 {
    margin-bottom: 18px;
    color: var(--navy);
    font-size: clamp(3.3rem, 8vw, 7rem);
    line-height: 0.9;
    font-weight: 900;
    letter-spacing: 0;
}

.hero h1::first-letter {
    color: var(--blue);
}

.hero-lede {
    max-width: 650px;
    margin-bottom: 28px;
    color: var(--muted-strong);
    font-size: clamp(1.12rem, 1.8vw, 1.45rem);
    line-height: 1.55;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 30px;
}

.button {
    min-width: 170px;
    padding: 0 22px;
    transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button svg {
    width: 20px;
    height: 20px;
}

.button:hover,
.button:focus-visible,
.header-cta:hover,
.header-cta:focus-visible {
    transform: translateY(-2px);
}

.button-primary {
    color: var(--white);
    background: linear-gradient(180deg, #31a4ff, #1478dd);
    box-shadow: 0 16px 32px rgba(35, 145, 240, 0.22);
}

.button-secondary {
    color: var(--blue-strong);
    border-color: rgba(35, 145, 240, 0.24);
    background: rgba(255, 255, 255, 0.76);
    box-shadow: 0 12px 28px rgba(25, 72, 132, 0.08);
}

html[data-theme="dark"] .button-secondary {
    color: #c7eaff;
    background: rgba(17, 32, 54, 0.76);
}

.hero-metrics {
    max-width: 680px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin: 0;
}

.hero-metrics div {
    min-width: 0;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.66);
}

html[data-theme="dark"] .hero-metrics div {
    background: rgba(22, 36, 59, 0.66);
}

.hero-metrics dt {
    margin-bottom: 6px;
    color: var(--navy);
    font-weight: 900;
}

.hero-metrics dd {
    margin: 0;
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.45;
}

.hero-art {
    position: relative;
    min-height: min(660px, 56vw);
    display: grid;
    place-items: center;
    isolation: isolate;
}

.hero-art::before {
    content: "";
    position: absolute;
    inset: 8% 5% 5% 3%;
    z-index: -1;
    border: 1px solid rgba(255, 255, 255, 0.74);
    border-radius: 18px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.74), rgba(224, 241, 255, 0.46)),
        repeating-linear-gradient(0deg, rgba(35, 145, 240, 0.05) 0 1px, transparent 1px 28px),
        repeating-linear-gradient(90deg, rgba(35, 145, 240, 0.05) 0 1px, transparent 1px 28px);
    box-shadow: var(--shadow);
}

html[data-theme="dark"] .hero-art::before {
    border-color: rgba(164, 196, 232, 0.16);
    background:
        linear-gradient(135deg, rgba(25, 42, 68, 0.82), rgba(16, 31, 52, 0.56)),
        repeating-linear-gradient(0deg, rgba(85, 184, 255, 0.05) 0 1px, transparent 1px 28px),
        repeating-linear-gradient(90deg, rgba(85, 184, 255, 0.05) 0 1px, transparent 1px 28px);
}

.mascot {
    position: relative;
    z-index: 2;
    width: min(76%, 500px);
    max-height: 640px;
    object-fit: contain;
    border-radius: var(--radius);
    filter: drop-shadow(0 34px 34px rgba(35, 145, 240, 0.22));
    animation: floatBrella 5.6s ease-in-out infinite;
}

.pixel-map {
    position: absolute;
    top: 12%;
    right: 2%;
    width: min(45%, 320px);
    aspect-ratio: 1.55;
    opacity: 0.5;
    background-image:
        linear-gradient(90deg, rgba(35, 145, 240, 0.20) 8px, transparent 8px),
        linear-gradient(rgba(35, 145, 240, 0.20) 8px, transparent 8px);
    background-size: 18px 18px;
    mask-image: url("data:image/svg+xml,%3Csvg width='300' height='190' viewBox='0 0 300 190' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M45 30h52v22h26v24h40v22h35v24h34v24h-45v-19h-42v-24h-38V79H75V57H45V30Zm190 25h30v21h-30V55Zm-30 101h63v20h-63v-20Z'/%3E%3C/svg%3E");
    mask-repeat: no-repeat;
    mask-size: contain;
}

.connection-badge {
    position: absolute;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 10px 13px;
    border: 1px solid rgba(35, 145, 240, 0.20);
    border-radius: var(--radius);
    color: var(--navy);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(16px);
    font-weight: 850;
}

html[data-theme="dark"] .connection-badge {
    color: var(--text);
    background: rgba(21, 33, 56, 0.82);
}

.badge-top {
    top: 17%;
    left: 8%;
}

.badge-bottom {
    right: 8%;
    bottom: 12%;
    display: grid;
    gap: 3px;
}

.badge-bottom span {
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 750;
}

.status-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--mint);
    box-shadow: 0 0 0 6px rgba(25, 199, 177, 0.14);
}

.proof-band {
    padding: 0 0 clamp(58px, 7vw, 92px);
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.proof-card,
.step-card,
.plan-card,
.screen-card,
.faq-list details {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(18px);
}

.proof-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 16px;
    min-height: 148px;
    padding: 24px;
}

.proof-card h2,
.step-card h3,
.plan-card h3 {
    margin-bottom: 8px;
    color: var(--navy);
    font-size: 1.08rem;
}

.proof-card p,
.step-card p,
.support-copy p,
.section-heading p,
.app-copy p,
.faq-list p {
    margin-bottom: 0;
    color: var(--muted);
    line-height: 1.65;
}

.icon-tile {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    color: var(--blue);
    border-radius: var(--radius);
    background: rgba(35, 145, 240, 0.10);
}

.icon-tile svg {
    width: 26px;
    height: 26px;
}

.icon-mint {
    color: #0f9d8d;
    background: rgba(25, 199, 177, 0.12);
}

.icon-navy {
    color: var(--navy);
    background: rgba(8, 27, 53, 0.08);
}

.section {
    padding: clamp(58px, 8vw, 108px) 0;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 28px;
}

.section-heading h2,
.app-copy h2,
.support-copy h2 {
    margin-bottom: 14px;
    color: var(--navy);
    font-size: clamp(2rem, 4.6vw, 4.3rem);
    line-height: 1.02;
    letter-spacing: 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.step-card {
    min-height: 210px;
    padding: 26px;
}

.step-card span {
    display: inline-flex;
    margin-bottom: 24px;
    color: var(--blue);
    font-weight: 900;
}

.app-section {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.44), rgba(218, 239, 255, 0.34));
}

html[data-theme="dark"] .app-section {
    background: linear-gradient(180deg, rgba(18, 31, 52, 0.46), rgba(13, 36, 55, 0.34));
}

.app-grid,
.support-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
    gap: clamp(30px, 5vw, 70px);
    align-items: center;
}

.app-copy {
    max-width: 520px;
}

.check-list {
    display: grid;
    gap: 12px;
    margin: 26px 0 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 30px;
    color: var(--muted-strong);
    font-weight: 750;
    line-height: 1.5;
}

.check-list li::before {
    content: "";
    position: absolute;
    top: 0.45em;
    left: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background:
        linear-gradient(135deg, transparent 48%, var(--white) 49% 55%, transparent 56%),
        var(--mint);
    box-shadow: 0 0 0 5px rgba(25, 199, 177, 0.12);
}

.screen-gallery {
    display: grid;
    grid-template-columns: 1.14fr 0.86fr;
    gap: 18px;
    align-items: stretch;
}

.screen-card {
    margin: 0;
    overflow: hidden;
    background: var(--surface-strong);
}

.screen-card img {
    width: 100%;
    height: 100%;
    min-height: 188px;
    object-fit: contain;
}

.screen-card figcaption {
    padding: 12px 14px 14px;
    color: var(--muted-strong);
    border-top: 1px solid var(--line);
    font-size: 0.9rem;
    font-weight: 850;
}

.screen-primary {
    grid-row: span 2;
}

.screen-primary img {
    min-height: 396px;
}

.plans-section {
    background:
        linear-gradient(180deg, rgba(244, 248, 255, 0.30), rgba(255, 255, 255, 0.58));
}

html[data-theme="dark"] .plans-section {
    background:
        linear-gradient(180deg, rgba(17, 28, 47, 0.28), rgba(22, 38, 62, 0.54));
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.plan-card {
    display: flex;
    flex-direction: column;
    min-height: 380px;
    padding: 26px;
}

.plan-card.featured {
    border-color: rgba(35, 145, 240, 0.38);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(226, 243, 255, 0.74)),
        var(--surface-strong);
    box-shadow: 0 24px 60px rgba(35, 145, 240, 0.18);
}

html[data-theme="dark"] .plan-card.featured {
    background:
        linear-gradient(180deg, rgba(26, 48, 78, 0.96), rgba(19, 43, 68, 0.74)),
        var(--surface-strong);
}

.plan-label {
    width: fit-content;
    margin-bottom: 18px;
    padding: 7px 10px;
    color: #087c70;
    border-radius: var(--radius);
    background: rgba(25, 199, 177, 0.12);
    font-size: 0.82rem;
    font-weight: 900;
}

.price {
    margin-bottom: 22px;
    color: var(--navy);
    font-size: clamp(2rem, 3.5vw, 3rem);
    line-height: 1;
    font-weight: 900;
}

.price span {
    display: block;
    margin-top: 8px;
    color: var(--muted);
    font-size: 0.95rem;
    font-weight: 750;
}

.plan-card ul {
    display: grid;
    gap: 10px;
    margin: 0 0 24px;
    padding: 0;
    list-style: none;
}

.plan-card li {
    color: var(--muted-strong);
    font-weight: 700;
}

.plan-card li::before {
    content: "";
    width: 7px;
    height: 7px;
    display: inline-block;
    margin-right: 10px;
    border-radius: 50%;
    background: var(--blue);
    vertical-align: 0.12em;
}

.plan-card .button {
    width: 100%;
    margin-top: auto;
}

.support-grid {
    align-items: start;
}

.support-copy {
    max-width: 560px;
}

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

.faq-list {
    display: grid;
    gap: 12px;
}

.faq-list details {
    padding: 20px 22px;
}

.faq-list summary {
    color: var(--navy);
    cursor: pointer;
    font-weight: 900;
}

.faq-list p {
    padding-top: 12px;
}

.site-footer {
    padding: 34px 0 44px;
    border-top: 1px solid var(--line);
}

.footer-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 18px;
}

.footer-links a {
    color: var(--muted-strong);
    font-weight: 750;
}

.copyright {
    margin: 0;
    color: var(--muted);
    font-size: 0.9rem;
    text-align: right;
}

.page-hero {
    padding: clamp(80px, 9vw, 130px) 0 clamp(40px, 6vw, 78px);
}

.page-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.96fr) minmax(280px, 0.64fr);
    gap: clamp(30px, 5vw, 70px);
    align-items: center;
}

.page-hero h1,
.legal-hero h1 {
    margin-bottom: 18px;
    color: var(--navy);
    font-size: clamp(2.55rem, 6vw, 5.2rem);
    line-height: 0.98;
    font-weight: 900;
    letter-spacing: 0;
}

.page-hero p:not(.eyebrow) {
    max-width: 720px;
    color: var(--muted-strong);
    font-size: clamp(1.05rem, 1.8vw, 1.32rem);
    line-height: 1.6;
}

.page-mascot {
    width: min(100%, 420px);
    max-height: 560px;
    object-fit: contain;
    border-radius: var(--radius);
    justify-self: center;
    filter: drop-shadow(0 30px 34px rgba(35, 145, 240, 0.22));
    animation: floatBrella 5.6s ease-in-out infinite;
}

.compact-section {
    padding-top: clamp(36px, 5vw, 68px);
}

.two-column,
.download-grid,
.account-layout {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

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

.info-panel,
.download-card,
.account-form,
.account-summary,
.legal-card,
.not-found-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(18px);
}

.info-panel,
.account-form,
.account-summary,
.legal-card {
    padding: clamp(24px, 4vw, 36px);
}

.info-panel h2,
.download-card h2,
.account-form h2,
.account-summary h2,
.legal-card h2 {
    margin-bottom: 10px;
    color: var(--navy);
    font-size: clamp(1.35rem, 2.3vw, 2rem);
}

.info-panel p,
.download-card p,
.account-form p,
.legal-card p {
    color: var(--muted);
    line-height: 1.65;
}

.download-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.download-card img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-bottom: 1px solid var(--line);
}

.download-card h2,
.download-card p,
.download-card .button {
    margin-left: 22px;
    margin-right: 22px;
}

.download-card h2 {
    margin-top: 22px;
}

.download-card .button {
    width: auto;
    margin-top: auto;
    margin-bottom: 22px;
}

.account-layout {
    align-items: start;
}

.account-form {
    display: grid;
    gap: 16px;
}

.account-form label {
    display: grid;
    gap: 8px;
    color: var(--muted-strong);
    font-weight: 800;
}

.account-form input {
    width: 100%;
    min-height: 48px;
    padding: 0 14px;
    color: var(--text);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface-strong);
    outline: none;
}

.account-form input:focus {
    border-color: rgba(35, 145, 240, 0.6);
    box-shadow: 0 0 0 4px rgba(35, 145, 240, 0.12);
}

.account-status {
    margin: 0;
    padding: 12px 14px;
    border: 1px solid rgba(62, 147, 222, 0.24);
    border-radius: 12px;
    background: rgba(230, 246, 255, 0.72);
    color: #163153;
    font-size: 0.94rem;
    line-height: 1.45;
}

.account-status.is-error {
    border-color: rgba(212, 91, 91, 0.28);
    background: rgba(255, 239, 239, 0.86);
    color: #7a2323;
}

.text-link,
.legal-card a {
    color: var(--blue-strong);
    font-weight: 850;
}

.legal-card {
    max-width: 880px;
}

.legal-card h2:not(:first-child) {
    margin-top: 30px;
}

.not-found {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 40px 0;
}

.not-found-card {
    max-width: 720px;
    display: grid;
    justify-items: center;
    padding: clamp(28px, 5vw, 54px);
    text-align: center;
}

.not-found-card img {
    width: min(62vw, 280px);
    margin-bottom: 10px;
}

.not-found-card h1 {
    margin-bottom: 12px;
    color: var(--navy);
    font-size: clamp(2rem, 6vw, 4rem);
    line-height: 1;
}

.not-found-card p:not(.eyebrow) {
    max-width: 520px;
    color: var(--muted);
    line-height: 1.6;
}

@keyframes floatBrella {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

@media (max-width: 960px) {
    .site-header {
        top: 10px;
        width: min(100% - 24px, 1180px);
        margin-top: 10px;
    }

    .header-inner {
        grid-template-columns: auto auto 1fr;
    }

    .menu-toggle {
        display: grid;
        order: 2;
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        right: 0;
        display: none;
        justify-content: stretch;
        padding: 10px;
        border: 1px solid var(--line);
        border-radius: var(--radius);
        background: var(--surface-strong);
        box-shadow: var(--shadow-soft);
    }

    .site-nav.is-open {
        display: grid;
    }

    .site-nav a {
        justify-content: center;
    }

    .header-actions {
        order: 3;
    }

    .hero {
        padding-top: 62px;
    }

    .hero-grid,
    .app-grid,
    .support-grid {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        min-height: auto;
    }

    .hero-art {
        min-height: 560px;
    }

    .proof-grid,
    .steps-grid,
    .plans-grid,
    .download-grid,
    .two-column,
    .account-layout,
    .page-hero-grid {
        grid-template-columns: 1fr;
    }

    .page-mascot {
        max-width: 330px;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        justify-items: start;
    }

    .footer-links {
        justify-content: flex-start;
    }

    .copyright {
        text-align: left;
    }
}

@media (max-width: 640px) {
    .container {
        width: calc(100% - 24px);
    }

    .header-inner {
        min-height: 62px;
        gap: 8px;
        padding: 0 10px;
    }

    .brand-name {
        font-size: 0.98rem;
    }

    .brand-mark {
        width: 36px;
        height: 36px;
    }

    .header-cta {
        display: none;
    }

    .hero h1 {
        max-width: 100%;
        font-size: clamp(2.85rem, 12.5vw, 3.45rem);
        overflow-wrap: break-word;
    }

    .hero-copy,
    .hero-lede,
    .hero-actions,
    .hero-metrics {
        width: 100%;
        max-width: calc(100vw - 24px);
    }

    .hero-lede {
        font-size: 1.04rem;
        overflow-wrap: break-word;
    }

    .button {
        width: 100%;
        min-width: 0;
    }

    .hero-actions {
        display: grid;
    }

    .hero-metrics {
        grid-template-columns: 1fr;
    }

    .hero-art {
        min-height: 430px;
    }

    .hero-art::before {
        inset: 7% 0 5%;
    }

    .mascot {
        width: min(92%, 360px);
        max-width: none;
    }

    .badge-top {
        top: 8%;
        left: 3%;
    }

    .badge-bottom {
        right: 3%;
        bottom: 7%;
    }

    .connection-badge {
        padding: 9px 11px;
        font-size: 0.86rem;
    }

    .proof-card {
        grid-template-columns: 1fr;
        min-height: auto;
        padding: 20px;
    }

    .section {
        padding: 56px 0;
    }

    .section-heading h2,
    .app-copy h2,
    .support-copy h2 {
        font-size: clamp(2rem, 11vw, 3.1rem);
    }

    .screen-gallery {
        grid-template-columns: 1fr;
    }

    .screen-primary {
        grid-row: auto;
    }

    .screen-primary img,
    .screen-card img {
        min-height: 210px;
    }

    .plan-card {
        min-height: auto;
    }

    .download-card h2,
    .download-card p,
    .download-card .button {
        margin-left: 18px;
        margin-right: 18px;
    }
}

/* Premium Brella hero system. */
.target-home {
    background:
        radial-gradient(900px 520px at 74% 26%, rgba(149, 210, 255, 0.34), transparent 70%),
        radial-gradient(680px 420px at 14% 36%, rgba(255, 255, 255, 0.92), transparent 68%),
        linear-gradient(180deg, #eff8ff 0%, #f8fcff 47%, #e8f7ff 100%);
}

.target-home::before {
    opacity: 0.68;
    background-image:
        linear-gradient(rgba(111, 181, 239, 0.10) 1px, transparent 1px),
        linear-gradient(90deg, rgba(111, 181, 239, 0.10) 1px, transparent 1px);
    background-size: 58px 58px;
}

.target-home .network-canvas {
    opacity: 0.36;
}

.target-home .site-header {
    top: 24px;
    width: min(1444px, calc(100% - 92px));
    margin-top: 32px;
    border-radius: 22px;
    border-color: rgba(255, 255, 255, 0.86);
    background: rgba(255, 255, 255, 0.70);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.95),
        0 22px 54px rgba(67, 119, 180, 0.16);
}

.target-home .header-inner {
    min-height: 80px;
    grid-template-columns: auto 1fr auto;
    gap: 48px;
    padding: 0 50px;
}

.target-home .brand {
    gap: 10px;
}

.target-home .brand-mark {
    width: 32px;
    height: 32px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.target-home .brand-mark img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.target-home .brand-name {
    color: #07143b;
    font-size: 1.58rem;
    font-weight: 850;
}

.target-home .site-nav {
    justify-content: flex-start;
    gap: 42px;
}

.target-home .site-nav a {
    position: relative;
    min-height: 42px;
    padding: 0 4px;
    color: #06113a;
    background: transparent;
    font-size: 1.18rem;
    font-weight: 500;
    transition: color 180ms ease, transform 180ms ease;
}

.target-home .site-nav a::after {
    content: "";
    position: absolute;
    left: 4px;
    right: 4px;
    bottom: 4px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, #71c9ff, #1287ec);
    opacity: 0;
    transform: scaleX(0.35);
    transform-origin: 0 50%;
    transition: opacity 180ms ease, transform 180ms ease;
}

.target-home .site-nav a:hover,
.target-home .site-nav a:focus-visible {
    color: #117cdb;
    background: transparent;
    transform: translateY(-1px);
}

.target-home .site-nav a:hover::after,
.target-home .site-nav a:focus-visible::after {
    opacity: 1;
    transform: scaleX(1);
}

.target-home .header-actions {
    display: flex;
    justify-self: end;
}

.target-home .hero {
    position: relative;
    isolation: isolate;
    padding: 20px 0 0;
}

.target-home .hero::before {
    display: none;
}

.target-home .hero::after {
    content: "";
    position: absolute;
    inset: -114px 0 auto;
    height: 1024px;
    z-index: -2;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(239, 248, 255, 1) 0%, rgba(247, 252, 255, 0.98) 48%, rgba(232, 246, 255, 0.74) 68%, rgba(226, 244, 255, 0.36) 100%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(231, 246, 255, 0.74) 100%);
    opacity: 1;
    transition: filter 260ms ease, opacity 260ms ease;
}

.target-home .hero:hover::after {
    filter: saturate(1.04) brightness(1.015);
}

.target-home .hero-grid {
    width: min(1320px, calc(100% - 140px));
    grid-template-columns: 560px minmax(0, 1fr);
    gap: clamp(28px, 4vw, 56px);
    align-items: start;
}

.target-home .hero-copy {
    padding-top: 178px;
    position: relative;
    z-index: 2;
}

.target-home .hero h1 {
    margin-bottom: 16px;
    color: #06143a;
    font-size: clamp(4.85rem, 7vw, 7.2rem);
    line-height: 0.94;
    font-weight: 850;
    white-space: nowrap;
}

.target-home .hero h1::first-letter {
    color: #06143a;
}

.target-home .hero h1 span {
    color: #268cf0;
    background: linear-gradient(180deg, #54b5ff 0%, #1a78df 100%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.target-home .hero-lede {
    max-width: 640px;
    margin-bottom: 34px;
    color: #445779;
    font-size: clamp(2.02rem, 2.62vw, 2.78rem);
    line-height: 1.2;
    font-weight: 400;
}

.target-home .hero-lede span {
    color: #2c96f5;
}

.target-home .hero-actions {
    gap: 20px;
    margin-bottom: 0;
}

.target-home .button {
    position: relative;
    overflow: hidden;
    min-width: 248px;
    min-height: 68px;
    padding: 0 30px;
    border-radius: 12px;
    font-size: 1.46rem;
    font-weight: 750;
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background 220ms ease, filter 220ms ease;
}

.target-home .button::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.55) 42%, transparent 58%);
    opacity: 0;
    transform: translateX(-115%);
    transition: opacity 180ms ease, transform 460ms ease;
}

.target-home .button span,
.target-home .button svg {
    position: relative;
    z-index: 1;
}

.target-home .button svg {
    width: 28px;
    height: 28px;
    transition: transform 180ms ease;
}

.target-home .button:hover,
.target-home .button:focus-visible {
    transform: translateY(-4px) scale(1.015);
}

.target-home .button:hover::before,
.target-home .button:focus-visible::before {
    opacity: 1;
    transform: translateX(115%);
}

.target-home .button:hover svg,
.target-home .button:focus-visible svg {
    transform: translateX(4px);
}

.target-home .button-primary {
    background: linear-gradient(180deg, #3eb4ff 0%, #0c84e8 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.78),
        0 18px 36px rgba(13, 128, 231, 0.25);
}

.target-home .button-primary:hover,
.target-home .button-primary:focus-visible {
    filter: saturate(1.06) brightness(1.02);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.78),
        0 24px 48px rgba(13, 128, 231, 0.32);
}

.target-home .button-secondary {
    color: #0a4e9d;
    border-color: rgba(110, 161, 210, 0.34);
    background: rgba(255, 255, 255, 0.72);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.92),
        0 14px 28px rgba(62, 105, 158, 0.10);
}

.target-home .button-secondary:hover,
.target-home .button-secondary:focus-visible {
    background: rgba(255, 255, 255, 0.92);
    border-color: rgba(34, 145, 240, 0.50);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.96),
        0 20px 42px rgba(62, 105, 158, 0.18);
}

.target-home .hero-art {
    min-height: 660px;
    align-items: start;
    transform: translateX(8px);
}

.target-home .hero-art::before,
.target-home .pixel-map,
.target-home .connection-badge {
    display: none;
}

.target-home .hero-scene {
    width: min(100%, 812px);
    max-width: none;
    margin-top: -2px;
    object-fit: contain;
    opacity: 0;
    filter: drop-shadow(0 38px 54px rgba(78, 148, 218, 0.16));
}

.target-home .proof-band {
    position: relative;
    z-index: 2;
    margin-top: -8px;
    padding-bottom: 82px;
}

.target-home .proof-grid {
    width: min(1336px, calc(100% - 198px));
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.target-home .proof-card {
    position: relative;
    overflow: hidden;
    min-height: 238px;
    grid-template-columns: 138px 1fr;
    gap: 28px;
    align-items: center;
    padding: 28px 28px;
    border-radius: 18px;
    border-color: rgba(255, 255, 255, 0.76);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.78)),
        rgba(255, 255, 255, 0.80);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.96),
        0 28px 72px rgba(77, 132, 190, 0.16);
    transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.target-home .proof-card::after {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: 17px;
    pointer-events: none;
    background: linear-gradient(135deg, rgba(80, 185, 255, 0.18), transparent 44%);
    opacity: 0;
    transition: opacity 220ms ease;
}

.target-home .proof-card:hover,
.target-home .proof-card:focus-within {
    border-color: rgba(93, 181, 255, 0.54);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 253, 255, 0.88)),
        rgba(255, 255, 255, 0.90);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.98),
        0 46px 100px rgba(60, 129, 205, 0.24);
    transform: translateY(-10px) scale(1.012);
}

.target-home .proof-card:hover::after,
.target-home .proof-card:focus-within::after {
    opacity: 1;
}

.target-home .card-icon {
    width: 138px;
    height: 138px;
    object-fit: contain;
    border-radius: 20px;
    transition: transform 220ms ease, filter 220ms ease;
}

.target-home .proof-card:hover .card-icon,
.target-home .proof-card:focus-within .card-icon {
    filter: saturate(1.12) brightness(1.03);
    transform: translateY(-5px) scale(1.08);
}

.target-home .proof-card h2 {
    margin-bottom: 12px;
    color: #07143b;
    font-size: 1.18rem;
    line-height: 1.22;
    font-weight: 850;
    transition: color 220ms ease;
}

.target-home .proof-card:hover h2,
.target-home .proof-card:focus-within h2 {
    color: #0c67c8;
}

.target-home .proof-card p {
    max-width: 250px;
    color: #233559;
    font-size: 1rem;
    line-height: 1.5;
}

@media (max-width: 1120px) {
    .target-home .site-header {
        width: min(100% - 24px, 1180px);
        margin-top: 10px;
        top: 10px;
    }

    .target-home .header-inner {
        min-height: 62px;
        grid-template-columns: auto auto 1fr;
        gap: 10px;
        padding: 0 12px;
    }

    .target-home .brand-name {
        font-size: 1rem;
    }

    .target-home .menu-toggle {
        display: grid;
        order: 2;
    }

    .target-home .site-nav {
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        right: 0;
        display: none;
        grid-template-columns: 1fr;
        gap: 4px;
        padding: 10px;
        border: 1px solid var(--line);
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.94);
        box-shadow: var(--shadow-soft);
    }

    .target-home .site-nav.is-open {
        display: grid;
    }

    .target-home .site-nav a {
        justify-content: center;
        min-height: 44px;
        font-size: 1rem;
        font-weight: 750;
    }

    .target-home .header-actions {
        display: flex;
        justify-self: end;
    }

    .target-home .theme-toggle {
        display: grid;
    }

    .target-home .hero {
        padding-top: 72px;
    }

    .target-home .hero::after {
        display: none;
    }

    .target-home .hero-grid {
        width: calc(100% - 24px);
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .target-home .hero-copy {
        padding-top: 0;
    }

    .target-home .hero h1 {
        white-space: normal;
        font-size: clamp(3rem, 12.5vw, 4rem);
        line-height: 0.98;
    }

    .target-home .hero-lede {
        font-size: clamp(1.28rem, 6vw, 2rem);
    }

    .target-home .hero-art {
        min-height: auto;
    }

    .target-home .hero-scene {
        width: min(100%, 620px);
        margin: 0 auto;
        opacity: 1;
    }

    .target-home .proof-band {
        margin-top: 22px;
    }

    .target-home .proof-grid {
        width: calc(100% - 24px);
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .target-home .header-actions {
        display: none;
    }

    .target-home .brand-mark,
    .target-home .brand-mark img {
        width: 30px;
        height: 30px;
    }

    .target-home .hero-lede br {
        display: none;
    }

    .target-home .button {
        min-width: 0;
        min-height: 54px;
        font-size: 1rem;
    }

    .target-home .proof-card {
        grid-template-columns: 96px 1fr;
        min-height: 148px;
        gap: 18px;
        padding: 20px;
    }

    .target-home .card-icon {
        width: 96px;
        height: 96px;
        border-radius: 16px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .target-home .button::before,
    .target-home .site-nav a::after {
        display: none;
    }
}

/* Premium glass pass: calmer motion, cleaner depth and sharper edge light. */
:root {
    --luxe-line: rgba(119, 163, 214, 0.26);
    --luxe-line-strong: rgba(79, 165, 246, 0.42);
    --luxe-glass: rgba(255, 255, 255, 0.78);
    --luxe-glass-strong: rgba(255, 255, 255, 0.94);
    --luxe-shadow: 0 30px 84px rgba(56, 109, 174, 0.18);
    --luxe-shadow-hover: 0 44px 110px rgba(49, 126, 214, 0.26);
    --luxe-blue-glow: rgba(49, 164, 255, 0.25);
    --luxe-sheen: rgba(255, 255, 255, 0.74);
}

html[data-theme="dark"] {
    --luxe-line: rgba(153, 205, 255, 0.16);
    --luxe-line-strong: rgba(95, 184, 255, 0.34);
    --luxe-glass: rgba(19, 32, 54, 0.76);
    --luxe-glass-strong: rgba(23, 38, 64, 0.94);
    --luxe-shadow: 0 30px 84px rgba(0, 0, 0, 0.34);
    --luxe-shadow-hover: 0 44px 110px rgba(0, 0, 0, 0.44);
    --luxe-blue-glow: rgba(85, 184, 255, 0.22);
    --luxe-sheen: rgba(255, 255, 255, 0.12);
}

body {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.74) 0%, rgba(242, 249, 255, 0.92) 42%, rgba(226, 243, 255, 0.96) 100%),
        repeating-linear-gradient(120deg, rgba(255, 255, 255, 0.36) 0 1px, transparent 1px 28px),
        var(--bg);
}

html[data-theme="dark"] body {
    background:
        linear-gradient(180deg, rgba(14, 23, 38, 0.98) 0%, rgba(15, 28, 48, 0.96) 48%, rgba(10, 30, 49, 0.98) 100%),
        repeating-linear-gradient(120deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 30px),
        var(--bg);
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        linear-gradient(115deg, transparent 0 28%, rgba(255, 255, 255, 0.34) 43%, transparent 58%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.38), transparent 34%, rgba(115, 198, 255, 0.10));
    opacity: 0.44;
    transform: translate3d(-7%, 0, 0);
    animation: brellaAmbientSheen 18s ease-in-out infinite alternate;
}

html[data-theme="dark"] body::after {
    opacity: 0.16;
}

.site-header {
    overflow: visible;
    border-color: rgba(255, 255, 255, 0.88);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.66)),
        rgba(255, 255, 255, 0.62);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.98),
        0 18px 46px rgba(55, 103, 162, 0.16),
        0 1px 0 rgba(255, 255, 255, 0.90);
}

.site-header::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 48%;
    border-radius: inherit;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.58), transparent);
}

html[data-theme="dark"] .site-header {
    border-color: rgba(153, 205, 255, 0.15);
    background:
        linear-gradient(180deg, rgba(26, 42, 68, 0.88), rgba(18, 31, 52, 0.70)),
        rgba(18, 29, 48, 0.74);
}

.brand,
.site-nav,
.header-actions {
    position: relative;
    z-index: 1;
}

.brand-mark,
.theme-toggle,
.menu-toggle {
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.92),
        0 10px 24px rgba(58, 125, 198, 0.12);
    transition: transform 190ms ease, box-shadow 190ms ease, border-color 190ms ease;
}

.brand:hover .brand-mark,
.theme-toggle:hover,
.menu-toggle:hover {
    border-color: var(--luxe-line-strong);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.96),
        0 16px 34px rgba(58, 125, 198, 0.18);
    transform: translateY(-2px);
}

.button,
.header-cta {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    transition:
        transform 220ms ease,
        box-shadow 220ms ease,
        border-color 220ms ease,
        background 220ms ease,
        filter 220ms ease;
}

.button::after,
.header-cta::after {
    content: "";
    position: absolute;
    inset: -35% -75%;
    z-index: -1;
    pointer-events: none;
    background: linear-gradient(112deg, transparent 36%, rgba(255, 255, 255, 0.78) 48%, transparent 60%);
    opacity: 0;
    transform: translateX(-26%);
    transition: opacity 180ms ease, transform 520ms ease;
}

.button:hover::after,
.button:focus-visible::after,
.header-cta:hover::after,
.header-cta:focus-visible::after {
    opacity: 0.92;
    transform: translateX(34%);
}

.button-primary,
.header-cta {
    border-color: rgba(153, 215, 255, 0.50);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent 46%),
        linear-gradient(180deg, #45b7ff 0%, #0b7fe7 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.70),
        0 20px 46px rgba(13, 128, 231, 0.28);
}

.button-primary:hover,
.button-primary:focus-visible,
.header-cta:hover,
.header-cta:focus-visible {
    filter: saturate(1.08) brightness(1.02);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.78),
        0 28px 62px rgba(13, 128, 231, 0.34);
}

.button-secondary {
    border-color: rgba(111, 162, 214, 0.34);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.68)),
        rgba(255, 255, 255, 0.74);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.92),
        0 16px 34px rgba(48, 94, 148, 0.11);
}

.button-secondary:hover,
.button-secondary:focus-visible {
    border-color: rgba(35, 145, 240, 0.54);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 252, 255, 0.82)),
        rgba(255, 255, 255, 0.90);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.96),
        0 24px 54px rgba(48, 94, 148, 0.18);
}

.proof-card,
.step-card,
.plan-card,
.screen-card,
.faq-list details,
.info-panel,
.download-card,
.account-form,
.account-summary,
.legal-card,
.not-found-card {
    --tilt-x: 0deg;
    --tilt-y: 0deg;
    position: relative;
    overflow: hidden;
    border-color: var(--luxe-line);
    background:
        linear-gradient(180deg, var(--luxe-glass-strong), var(--luxe-glass)),
        rgba(255, 255, 255, 0.74);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.94),
        var(--luxe-shadow);
    transform-style: preserve-3d;
    transition:
        transform 230ms ease,
        box-shadow 230ms ease,
        border-color 230ms ease,
        background 230ms ease,
        filter 230ms ease;
}

.proof-card::before,
.step-card::before,
.plan-card::before,
.screen-card::before,
.faq-list details::before,
.info-panel::before,
.download-card::before,
.account-form::before,
.account-summary::before,
.legal-card::before,
.not-found-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 46%;
    pointer-events: none;
    background:
        linear-gradient(180deg, var(--luxe-sheen), transparent),
        linear-gradient(90deg, transparent, rgba(110, 198, 255, 0.13), transparent);
    opacity: 0.76;
    transition: opacity 230ms ease;
}

.proof-card::after,
.step-card::after,
.plan-card::after,
.download-card::after,
.info-panel::after,
.account-form::after,
.account-summary::after,
.legal-card::after {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    pointer-events: none;
    border: 1px solid rgba(255, 255, 255, 0.46);
    opacity: 0.74;
}

.proof-card:hover,
.proof-card:focus-within,
.step-card:hover,
.step-card:focus-within,
.plan-card:hover,
.plan-card:focus-within,
.screen-card:hover,
.screen-card:focus-within,
.faq-list details:hover,
.faq-list details:focus-within,
.info-panel:hover,
.info-panel:focus-within,
.download-card:hover,
.download-card:focus-within,
.account-form:hover,
.account-summary:hover,
.legal-card:hover,
.not-found-card:hover {
    border-color: var(--luxe-line-strong);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.98),
        var(--luxe-shadow-hover);
    transform: translateY(-7px) perspective(900px) rotateX(var(--tilt-y)) rotateY(var(--tilt-x));
}

.proof-card:hover::before,
.step-card:hover::before,
.plan-card:hover::before,
.screen-card:hover::before,
.faq-list details:hover::before,
.info-panel:hover::before,
.download-card:hover::before,
.account-form:hover::before,
.account-summary:hover::before,
.legal-card:hover::before,
.not-found-card:hover::before {
    opacity: 0.98;
}

.target-home .hero::after {
    filter: saturate(1.03) contrast(1.01);
    animation: brellaHeroBreath 9s ease-in-out infinite;
}

.target-home .hero-copy {
    transform: translate3d(var(--brella-parallax-x, 0px), var(--brella-parallax-y, 0px), 0);
    transition: transform 180ms ease-out;
}

.target-home .hero h1 {
    text-shadow:
        0 1px 0 rgba(255, 255, 255, 0.74),
        0 24px 52px rgba(17, 77, 151, 0.13);
}

.target-home .hero h1 span {
    color: #2089ec;
    background: none;
    -webkit-text-fill-color: #2089ec;
    text-shadow:
        0 1px 0 rgba(255, 255, 255, 0.72),
        0 18px 32px rgba(35, 145, 240, 0.24);
    filter: none;
}

.target-home .hero-lede {
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.58);
}

.target-home .button {
    border-radius: 14px;
}

.target-home .proof-card {
    border-color: rgba(255, 255, 255, 0.84);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.98),
        0 30px 80px rgba(77, 132, 190, 0.18);
}

.target-home .proof-card:hover,
.target-home .proof-card:focus-within {
    border-color: rgba(93, 181, 255, 0.62);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.98),
        0 52px 114px rgba(60, 129, 205, 0.27);
    transform: translateY(-11px) perspective(900px) rotateX(var(--tilt-y)) rotateY(var(--tilt-x)) scale(1.014);
}

.section-heading h2,
.app-copy h2,
.support-copy h2,
.page-hero h1,
.legal-hero h1 {
    text-shadow:
        0 1px 0 rgba(255, 255, 255, 0.78),
        0 24px 54px rgba(55, 103, 162, 0.10);
}

html[data-theme="dark"] .section-heading h2,
html[data-theme="dark"] .app-copy h2,
html[data-theme="dark"] .support-copy h2,
html[data-theme="dark"] .page-hero h1,
html[data-theme="dark"] .legal-hero h1 {
    text-shadow: 0 20px 54px rgba(85, 184, 255, 0.12);
}

.screen-card img,
.download-card img,
.page-mascot,
.card-icon {
    transition: transform 260ms ease, filter 260ms ease;
}

.screen-card:hover img,
.download-card:hover img {
    filter: saturate(1.08) brightness(1.02);
    transform: scale(1.025);
}

.page-mascot:hover,
.proof-card:hover .card-icon,
.download-card:hover img {
    filter:
        drop-shadow(0 28px 34px rgba(35, 145, 240, 0.22))
        saturate(1.06);
}

.plan-card.featured {
    border-color: rgba(76, 175, 255, 0.46);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(231, 245, 255, 0.82)),
        rgba(255, 255, 255, 0.92);
    box-shadow:
        inset 0 3px 0 rgba(68, 175, 255, 0.72),
        inset 0 1px 0 rgba(255, 255, 255, 0.98),
        0 34px 90px rgba(47, 128, 255, 0.20);
}

.plan-card.featured:hover,
.plan-card.featured:focus-within {
    box-shadow:
        inset 0 3px 0 rgba(68, 175, 255, 0.82),
        inset 0 1px 0 rgba(255, 255, 255, 0.98),
        0 54px 124px rgba(47, 128, 255, 0.28);
}

.eyebrow,
.plan-label {
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.86),
        0 12px 30px rgba(46, 113, 188, 0.10);
}

.account-form input {
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.82),
        0 10px 24px rgba(48, 94, 148, 0.06);
    transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.account-form input:hover {
    border-color: rgba(35, 145, 240, 0.38);
}

.account-form input:focus {
    background: rgba(255, 255, 255, 0.96);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.92),
        0 0 0 4px rgba(35, 145, 240, 0.12),
        0 18px 38px rgba(48, 94, 148, 0.10);
}

.reveal-ready .proof-card,
.reveal-ready .step-card,
.reveal-ready .screen-card,
.reveal-ready .plan-card,
.reveal-ready .faq-list details,
.reveal-ready .info-panel,
.reveal-ready .download-card,
.reveal-ready .account-form,
.reveal-ready .account-summary,
.reveal-ready .legal-card,
.reveal-ready .support-copy,
.reveal-ready .app-copy,
.reveal-ready .section-heading {
    opacity: 0;
    transform: translateY(18px);
}

.reveal-ready .is-visible {
    opacity: 1;
    transition:
        opacity 620ms ease,
        transform 620ms cubic-bezier(0.2, 0.8, 0.2, 1),
        box-shadow 230ms ease,
        border-color 230ms ease,
        background 230ms ease,
        filter 230ms ease;
}

.reveal-ready .is-visible:not(:hover):not(:focus-within) {
    transform: none;
}

@keyframes brellaAmbientSheen {
    0% {
        transform: translate3d(-7%, 0, 0);
    }
    100% {
        transform: translate3d(7%, 0, 0);
    }
}

@keyframes brellaHeroBreath {
    0%,
    100% {
        filter: saturate(1.02) contrast(1.01) brightness(1);
    }
    50% {
        filter: saturate(1.08) contrast(1.015) brightness(1.015);
    }
}

@keyframes brellaEyeBlink {
    0%,
    91%,
    100% {
        transform: scaleY(1);
    }
    94%,
    95.5% {
        transform: scaleY(0.16);
    }
}

@media (prefers-reduced-motion: reduce) {
    .target-home .mascot-eye {
        animation: none;
    }

    .target-home .mascot-eye-core {
        transition: none;
    }
}

@media (max-width: 1120px) {
    .target-home .hero-copy {
        transform: none;
    }
}

@media (max-width: 640px) {
    body::after {
        animation: none;
        opacity: 0.26;
    }

    .proof-card:hover,
    .proof-card:focus-within,
    .step-card:hover,
    .step-card:focus-within,
    .plan-card:hover,
    .plan-card:focus-within,
    .download-card:hover,
    .download-card:focus-within {
        transform: translateY(-4px);
    }
}

@media (prefers-reduced-motion: reduce) {
    body::after,
    .target-home .hero::after {
        animation: none !important;
    }

    .target-home .hero-copy {
        transform: none !important;
    }

    .reveal-ready .proof-card,
    .reveal-ready .step-card,
    .reveal-ready .screen-card,
    .reveal-ready .plan-card,
    .reveal-ready .faq-list details,
    .reveal-ready .info-panel,
    .reveal-ready .download-card,
    .reveal-ready .account-form,
    .reveal-ready .account-summary,
    .reveal-ready .legal-card,
    .reveal-ready .support-copy,
    .reveal-ready .app-copy,
    .reveal-ready .section-heading {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* Premium app pass: friendlier previews, calmer motion and richer typography. */
:root {
    --font-body: "Plus Jakarta Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-display: "Manrope", "Plus Jakarta Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body,
button,
input,
textarea,
select {
    font-family: var(--font-body);
}

h1,
h2,
h3,
.brand-name,
.button,
.header-cta,
.site-nav a,
.eyebrow,
.plan-label,
.price {
    font-family: var(--font-display);
}

body::after {
    opacity: 0.32;
}

.target-home .hero h1,
.section-heading h2,
.app-copy h2,
.support-copy h2,
.page-hero h1,
.legal-hero h1 {
    font-weight: 800;
}

.button:hover,
.button:focus-visible,
.header-cta:hover,
.header-cta:focus-visible {
    transform: translateY(-1px);
}

.proof-card:hover,
.proof-card:focus-within,
.plan-card:hover,
.plan-card:focus-within,
.faq-list details:hover,
.faq-list details:focus-within,
.info-panel:hover,
.info-panel:focus-within,
.download-card:hover,
.download-card:focus-within,
.account-form:hover,
.account-summary:hover,
.legal-card:hover,
.not-found-card:hover {
    transform: translateY(-4px) perspective(900px) rotateX(var(--tilt-y)) rotateY(var(--tilt-x));
}

.target-home .proof-card:hover,
.target-home .proof-card:focus-within {
    transform: translateY(-5px) perspective(900px) rotateX(var(--tilt-y)) rotateY(var(--tilt-x)) scale(1.006);
}

.step-card span {
    display: none !important;
}

.steps-grid {
    gap: 20px;
}

.step-card {
    min-height: 174px;
    padding: 30px;
    border-radius: 20px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(248, 252, 255, 0.82)),
        rgba(255, 255, 255, 0.82);
}

.step-card:hover,
.step-card:focus-within {
    border-color: rgba(88, 174, 248, 0.48);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.98),
        0 30px 78px rgba(64, 119, 180, 0.18);
    transform: translateY(-3px);
}

.step-card h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: clamp(1.05rem, 1.25vw, 1.24rem);
    line-height: 1.25;
}

.step-card h3::before {
    content: "";
    width: 28px;
    height: 28px;
    flex: 0 0 auto;
    border: 1px solid rgba(80, 168, 246, 0.34);
    border-radius: 999px;
    background:
        radial-gradient(circle at 42% 38%, #ffffff 0 18%, transparent 19%),
        linear-gradient(145deg, #dff4ff 0%, #71c8ff 58%, #1685e6 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.92),
        0 12px 24px rgba(35, 145, 240, 0.16);
}

.step-card:nth-child(2) h3::before {
    background:
        radial-gradient(circle at 42% 38%, #ffffff 0 18%, transparent 19%),
        linear-gradient(145deg, #e7fbff 0%, #75dfcf 58%, #19a894 100%);
}

.step-card:nth-child(3) h3::before {
    background:
        radial-gradient(circle at 42% 38%, #ffffff 0 18%, transparent 19%),
        linear-gradient(145deg, #f0f7ff 0%, #9bbfff 58%, #4e82e9 100%);
}

.step-card p {
    max-width: 34ch;
    font-size: 1rem;
    line-height: 1.62;
}

.app-section {
    overflow: hidden;
}

.screen-gallery {
    position: relative;
    isolation: isolate;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    align-items: stretch;
}

.screen-gallery::before {
    content: "";
    position: absolute;
    inset: 8% -8% 4% 10%;
    z-index: -1;
    pointer-events: none;
    border-radius: 999px;
    background:
        radial-gradient(circle at 50% 50%, rgba(81, 181, 255, 0.22), transparent 62%),
        radial-gradient(circle at 72% 20%, rgba(255, 255, 255, 0.70), transparent 38%);
    filter: blur(6px);
}

.screen-card {
    z-index: 1;
    display: flex;
    flex-direction: column;
    padding: 14px;
    border-radius: 22px;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 249, 255, 0.84)),
        rgba(255, 255, 255, 0.86);
}

.screen-card img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    min-height: 0;
    padding: clamp(8px, 1.3vw, 14px);
    border: 1px solid rgba(164, 208, 245, 0.54);
    border-radius: 16px;
    object-fit: contain;
    object-position: center;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(236, 248, 255, 0.80)),
        linear-gradient(90deg, rgba(218, 242, 255, 0.64), rgba(255, 255, 255, 0.94), rgba(218, 242, 255, 0.64));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.96),
        0 18px 34px rgba(54, 120, 190, 0.12);
}

.screen-primary img {
    height: auto;
    aspect-ratio: 16 / 9;
    min-height: 0;
}

.screen-primary {
    grid-column: 1 / -1;
    grid-row: auto;
}

.screen-card figcaption {
    margin-top: 12px;
    padding: 12px 14px;
    border: 1px solid rgba(136, 191, 238, 0.32);
    border-radius: 14px;
    color: #0d4f91;
    background: rgba(242, 249, 255, 0.80);
    font-size: 0.88rem;
    text-align: center;
}

.screen-card:hover,
.screen-card:focus-within {
    transform: translateY(-4px);
}

.screen-card:hover img,
.screen-card:focus-within img {
    filter: saturate(1.04) brightness(1.015);
    transform: translateY(-2px) scale(1.006);
}

.target-home .support-section {
    padding-top: clamp(56px, 6vw, 86px);
    padding-bottom: clamp(58px, 6vw, 88px);
}

.target-home .support-grid {
    align-items: center;
}

.reveal-ready .target-home .support-section .faq-list details,
.target-home .support-section .faq-list details {
    opacity: 1;
    transform: none;
}

html[data-theme="dark"] .step-card,
html[data-theme="dark"] .screen-card {
    background:
        linear-gradient(180deg, rgba(24, 39, 64, 0.96), rgba(18, 34, 56, 0.84)),
        rgba(18, 34, 56, 0.82);
}

html[data-theme="dark"] .screen-card img {
    border-color: rgba(120, 190, 255, 0.24);
    background:
        linear-gradient(180deg, rgba(26, 45, 72, 0.94), rgba(18, 37, 61, 0.82)),
        rgba(18, 37, 61, 0.88);
}

html[data-theme="dark"] .download-card img {
    border-color: rgba(120, 190, 255, 0.24);
    background:
        linear-gradient(180deg, rgba(26, 45, 72, 0.94), rgba(18, 37, 61, 0.82)),
        rgba(18, 37, 61, 0.88);
}

html[data-theme="dark"] .screen-card figcaption {
    color: #bde6ff;
    border-color: rgba(120, 190, 255, 0.20);
    background: rgba(18, 37, 61, 0.72);
}

@media (max-width: 900px) {
    .screen-gallery {
        grid-template-columns: 1fr;
    }

    .screen-primary {
        grid-row: auto;
    }

    .screen-primary img,
    .screen-card img {
        height: clamp(220px, 56vw, 430px);
    }
}

@media (max-width: 640px) {
    .steps-grid {
        gap: 14px;
    }

    .step-card {
        min-height: 0;
        padding: 22px;
    }

    .screen-card {
        padding: 10px;
        border-radius: 18px;
    }

    .screen-primary img,
    .screen-card img {
        height: clamp(190px, 54vw, 300px);
        padding: 8px;
    }
}

/* Premium trust layer: calm motion and stronger commercial polish. */
.network-canvas {
    display: none !important;
}

body {
    background:
        linear-gradient(180deg, #f8fbff 0%, #f3f8ff 48%, #eaf5ff 100%),
        var(--bg);
}

body::after {
    display: none;
}

body::before {
    opacity: 0.36;
    background-size: 96px 96px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.42), transparent 62%);
}

.target-home .hero h1 {
    max-width: 620px;
    color: #08163a;
    font-size: clamp(3rem, 5.15vw, 5.15rem);
    line-height: 0.96;
    text-shadow: 0 22px 54px rgba(36, 86, 150, 0.10);
}

.target-home .hero-copy {
    max-width: 650px;
}

.target-home .hero h1::first-letter {
    color: inherit;
}

.target-home .hero-lede {
    max-width: 620px;
    font-size: clamp(1.18rem, 1.55vw, 1.42rem);
}

.target-home .hero-scene {
    width: min(100%, 640px);
    opacity: 1;
    filter:
        drop-shadow(0 34px 58px rgba(42, 104, 176, 0.18))
        saturate(0.95)
        contrast(1.02);
    -webkit-mask-image: radial-gradient(ellipse at 50% 45%, #000 0 68%, rgba(0, 0, 0, 0.82) 78%, transparent 100%);
    mask-image: radial-gradient(ellipse at 50% 45%, #000 0 68%, rgba(0, 0, 0, 0.82) 78%, transparent 100%);
}

.target-home .mascot-eyes {
    --eye-x: 0px;
    --eye-y: 0px;
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 4;
    width: min(100%, 640px);
    aspect-ratio: 812 / 650;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.target-home .mascot-eye {
    position: absolute;
    width: 4.3%;
    height: 5.1%;
    overflow: hidden;
    border-radius: 50%;
    background:
        radial-gradient(circle at 34% 30%, rgba(255, 255, 255, 0.92) 0 9%, transparent 10%),
        radial-gradient(circle at 50% 54%, #f7fbff 0 58%, #d5ecff 59% 100%);
    box-shadow:
        inset 0 0 0 1px rgba(8, 24, 58, 0.36),
        inset 0 -4px 8px rgba(73, 143, 213, 0.18),
        0 3px 8px rgba(19, 66, 122, 0.12);
    transform-origin: 50% 50%;
    animation: brellaEyeBlink 7.8s ease-in-out infinite;
}

.target-home .mascot-eye::after {
    content: "";
    position: absolute;
    inset: 10% 12% auto;
    height: 24%;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.62);
    filter: blur(2px);
}

.target-home .mascot-eye-core {
    position: absolute;
    left: 50%;
    top: 52%;
    width: 54%;
    aspect-ratio: 1;
    border-radius: 50%;
    background:
        radial-gradient(circle at 34% 28%, #ffffff 0 13%, transparent 14%),
        radial-gradient(circle at 52% 56%, #07152f 0 44%, #0d315c 45% 72%, #5bb8ff 73% 100%);
    box-shadow: 0 1px 3px rgba(9, 25, 56, 0.38);
    transform: translate(calc(-50% + var(--eye-x)), calc(-50% + var(--eye-y)));
    transition: transform 90ms linear;
}

.target-home .mascot-eye-left {
    left: 34.4%;
    top: 30.0%;
}

.target-home .mascot-eye-right {
    left: 49.3%;
    top: 30.3%;
}

.target-home .hero::after {
    animation: none !important;
    filter: saturate(0.96) contrast(1.01);
}

.button::after,
.header-cta::after,
.proof-card::before,
.proof-card::after,
.step-card::before,
.step-card::after,
.plan-card::before,
.plan-card::after,
.screen-card::before,
.faq-list details::before,
.info-panel::before,
.download-card::before,
.account-form::before,
.account-summary::before,
.legal-card::before,
.not-found-card::before,
.screen-gallery::before {
    display: none !important;
}

.proof-card,
.step-card,
.plan-card,
.screen-card,
.faq-list details,
.info-panel,
.download-card,
.account-form,
.account-summary,
.legal-card,
.not-found-card {
    border-color: rgba(124, 159, 203, 0.20);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 252, 255, 0.88)),
        rgba(255, 255, 255, 0.88);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.92),
        0 20px 54px rgba(43, 91, 151, 0.11);
    transform: none !important;
}

.proof-card:hover,
.proof-card:focus-within,
.step-card:hover,
.step-card:focus-within,
.plan-card:hover,
.plan-card:focus-within,
.screen-card:hover,
.screen-card:focus-within,
.faq-list details:hover,
.faq-list details:focus-within,
.info-panel:hover,
.info-panel:focus-within,
.download-card:hover,
.download-card:focus-within,
.account-form:hover,
.account-summary:hover,
.legal-card:hover,
.not-found-card:hover {
    border-color: rgba(70, 145, 219, 0.30);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.94),
        0 24px 64px rgba(43, 91, 151, 0.14);
    transform: translateY(-2px) !important;
}

.step-card {
    min-height: 158px;
    padding: 28px;
}

.step-card h3::before {
    display: none;
}

.step-card h3 {
    margin-bottom: 10px;
    color: #07143b;
    font-size: 1.12rem;
}

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

.app-actions .button {
    width: auto;
    min-width: 178px;
}

.app-copy p {
    max-width: 560px;
    font-size: 1.06rem;
}

.screen-card {
    padding: 12px;
}

.screen-card figcaption {
    display: none;
}

.screen-card img {
    border-color: rgba(147, 194, 235, 0.34);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(241, 248, 255, 0.86));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.94);
}

.screen-card:hover img,
.screen-card:focus-within img {
    transform: none;
    filter: saturate(1.01) brightness(1.01);
}

html[data-theme="dark"] body {
    background:
        linear-gradient(180deg, #111b2c 0%, #0f1b2d 52%, #0d2033 100%),
        var(--bg);
}

html[data-theme="dark"] .proof-card,
html[data-theme="dark"] .step-card,
html[data-theme="dark"] .plan-card,
html[data-theme="dark"] .screen-card,
html[data-theme="dark"] .faq-list details,
html[data-theme="dark"] .info-panel,
html[data-theme="dark"] .download-card,
html[data-theme="dark"] .account-form,
html[data-theme="dark"] .account-summary,
html[data-theme="dark"] .legal-card,
html[data-theme="dark"] .not-found-card {
    background:
        linear-gradient(180deg, rgba(24, 39, 63, 0.94), rgba(18, 31, 52, 0.86)),
        rgba(18, 31, 52, 0.86);
    box-shadow: 0 20px 54px rgba(0, 0, 0, 0.26);
}

@media (max-width: 640px) {
    .app-actions .button {
        width: 100%;
    }
}

/* Brella hero repair: fixes the commercial first viewport after the luxe pass. */
.target-home .hero {
    padding: clamp(86px, 8vh, 118px) 0 clamp(24px, 4vh, 42px);
    overflow: visible;
}

.target-home .hero::after {
    height: min(760px, 72vw);
}

.target-home .hero-grid {
    width: min(1280px, calc(100% - 56px));
    grid-template-columns: minmax(420px, 0.96fr) minmax(420px, 0.86fr);
    gap: clamp(42px, 5.2vw, 92px);
    align-items: center;
}

.target-home .hero-copy {
    max-width: 560px;
    padding-top: 0;
    transform: none !important;
}

.target-home .hero h1 {
    max-width: 560px;
    white-space: normal !important;
    font-size: clamp(3.85rem, 4vw, 4.85rem);
    line-height: 1.02;
    letter-spacing: 0;
}

.target-home .hero-lede {
    max-width: 460px;
    margin-bottom: 26px;
    font-size: clamp(1.16rem, 1.35vw, 1.32rem);
    line-height: 1.45;
}

.target-home .hero-actions {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 14px;
}

.target-home .hero-actions .button {
    min-width: 174px;
    min-height: 56px;
    padding: 0 22px;
    font-size: 1.08rem;
}

.target-home .hero-art {
    width: min(100%, 590px);
    min-height: 470px;
    justify-self: end;
    align-items: start;
    transform: none !important;
}

.target-home .hero-scene {
    width: min(100%, 590px);
    margin: 0;
    opacity: 1;
    -webkit-mask-image: none;
    mask-image: none;
}

.target-home .mascot-eyes {
    --eye-x: 0px;
    --eye-y: 0px;
    display: block !important;
    position: absolute;
    left: 50%;
    top: 0;
    z-index: 5;
    width: min(100%, 590px);
    aspect-ratio: 812 / 650;
    transform: translateX(-50%);
    pointer-events: none;
}

.target-home .mascot-eye {
    width: 3.55%;
    height: 4.15%;
    overflow: hidden;
    border-radius: 50%;
    background:
        radial-gradient(circle at 34% 28%, rgba(255, 255, 255, 0.96) 0 10%, transparent 11%),
        radial-gradient(circle at 62% 70%, rgba(87, 177, 255, 0.88) 0 12%, transparent 13%),
        radial-gradient(circle at 50% 52%, #102d54 0 34%, #071631 35% 66%, #4f95d8 67% 100%);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.48),
        inset 0 -4px 8px rgba(73, 143, 213, 0.22),
        0 2px 6px rgba(9, 25, 56, 0.20);
    animation: brellaEyeBlink 8.4s ease-in-out infinite;
}

.target-home .mascot-eye::after {
    display: none;
}

.target-home .mascot-eye-core {
    top: 53%;
    width: 42%;
    background:
        radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.96) 0 16%, transparent 17%),
        radial-gradient(circle at 50% 56%, #020817 0 68%, #0a1d3a 69% 100%);
    box-shadow: 0 1px 3px rgba(9, 25, 56, 0.34);
}

.target-home .mascot-eye-left {
    left: 34.70%;
    top: 28.15%;
}

.target-home .mascot-eye-right {
    left: 49.85%;
    top: 28.30%;
}

.target-home .proof-band {
    margin-top: 10px;
    padding-bottom: clamp(42px, 5vw, 70px);
}

.target-home .proof-grid {
    width: min(1280px, calc(100% - 56px));
    gap: 18px;
}

.target-home .proof-card {
    min-height: 168px;
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 20px;
    padding: 22px;
    border-radius: 16px;
}

.target-home .card-icon {
    width: 96px;
    height: 96px;
    border-radius: 16px;
}

.target-home .proof-card h2 {
    font-size: 1rem;
}

.target-home .proof-card p {
    max-width: 26ch;
    font-size: 0.9rem;
}

@media (max-width: 1120px) {
    .target-home .hero {
        padding-top: 76px;
    }

    .target-home .hero-grid {
        width: calc(100% - 28px);
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .target-home .hero h1 {
        max-width: 720px;
        font-size: clamp(3rem, 10vw, 4.4rem);
    }

    .target-home .hero-art {
        width: min(100%, 620px);
        min-height: auto;
        justify-self: center;
    }

    .target-home .proof-grid {
        width: calc(100% - 28px);
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .target-home .hero {
        padding-top: 64px;
    }

    .target-home .hero h1 {
        font-size: clamp(2.55rem, 12vw, 3.45rem);
    }

    .target-home .hero-lede {
        font-size: 1.06rem;
    }

    .target-home .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .target-home .hero-actions .button {
        width: 100%;
    }

    .target-home .proof-card {
        grid-template-columns: 82px minmax(0, 1fr);
        min-height: 136px;
        padding: 18px;
    }

    .target-home .card-icon {
        width: 82px;
        height: 82px;
    }
}

/* Brella eye fix: the generated hero art already has the final face. */
.target-home .mascot-eyes {
    display: none !important;
}

html[data-theme="dark"] .target-home .app-section {
    background:
        radial-gradient(circle at 78% 34%, rgba(88, 154, 255, 0.16), transparent 32%),
        radial-gradient(circle at 55% 72%, rgba(25, 199, 177, 0.08), transparent 34%),
        linear-gradient(180deg, #11172b 0%, #151d33 58%, #101827 100%);
}

html[data-theme="dark"] .target-home .screen-gallery::before {
    inset: 2% -3% 0% 4%;
    background:
        radial-gradient(circle at 54% 48%, rgba(88, 154, 255, 0.20), transparent 58%),
        radial-gradient(circle at 78% 22%, rgba(255, 255, 255, 0.09), transparent 34%);
    filter: blur(14px);
}

html[data-theme="dark"] .target-home .screen-card {
    border: 1px solid rgba(137, 176, 245, 0.22);
    background:
        linear-gradient(180deg, rgba(31, 42, 75, 0.82), rgba(20, 31, 55, 0.72)),
        rgba(18, 27, 48, 0.86);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.10),
        0 26px 72px rgba(0, 0, 0, 0.26),
        0 0 0 1px rgba(90, 146, 255, 0.08);
}

html[data-theme="dark"] .target-home .screen-card img {
    border-color: rgba(150, 190, 255, 0.28);
    background:
        linear-gradient(180deg, rgba(217, 235, 255, 0.08), rgba(86, 134, 206, 0.09)),
        rgba(13, 22, 40, 0.68);
    filter: saturate(1.02) brightness(1.03) contrast(1.02);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.14),
        0 18px 42px rgba(0, 0, 0, 0.22);
}

html[data-theme="dark"] .target-home .screen-card figcaption {
    color: #dbeaff;
    border-color: rgba(150, 190, 255, 0.22);
    background: rgba(15, 25, 45, 0.74);
}

html[data-theme="dark"] .target-home .brand,
html[data-theme="dark"] .target-home .brand-name,
html[data-theme="dark"] .target-home .site-nav a {
    color: rgba(247, 251, 255, 0.92);
}

html[data-theme="dark"] .target-home .site-nav a:hover,
html[data-theme="dark"] .target-home .site-nav a:focus-visible {
    color: #ffffff;
    background: rgba(85, 184, 255, 0.12);
}

html[data-theme="dark"] .target-home .app-copy p {
    color: rgba(219, 234, 255, 0.78);
}

html[data-theme="dark"] .target-home .app-actions .button-secondary {
    color: rgba(238, 247, 255, 0.92);
    border-color: rgba(158, 197, 255, 0.30);
    background: rgba(13, 22, 40, 0.42);
}

.target-home .section,
.target-home #apps,
.target-home #plans,
.target-home #support,
.target-home #trust {
    scroll-margin-top: calc(var(--header-h) + 28px);
}

@media (max-width: 640px) {
    .target-home .section,
    .target-home #apps,
    .target-home #plans,
    .target-home #support,
    .target-home #trust {
        scroll-margin-top: 104px;
    }
}

/* Liquid glass v13: global polish and dark-theme contrast repair. */
:root {
    --glass-light: rgba(255, 255, 255, 0.62);
    --glass-light-strong: rgba(255, 255, 255, 0.78);
    --glass-light-line: rgba(255, 255, 255, 0.78);
    --glass-dark: rgba(26, 37, 68, 0.58);
    --glass-dark-strong: rgba(33, 48, 86, 0.72);
    --glass-dark-line: rgba(205, 226, 255, 0.30);
    --glass-blue: rgba(87, 171, 255, 0.22);
}

.target-home .site-header,
.target-home .proof-card,
.target-home .step-card,
.target-home .plan-card,
.target-home .screen-card,
.target-home .faq-list details,
.target-home .info-panel,
.target-home .download-card,
.target-home .account-form,
.target-home .account-summary,
.target-home .legal-card {
    border: 1px solid rgba(255, 255, 255, 0.72);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.48) 42%, rgba(229, 244, 255, 0.58)),
        var(--glass-light);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.96),
        inset 0 -1px 0 rgba(255, 255, 255, 0.28),
        0 24px 70px rgba(54, 107, 176, 0.14);
    -webkit-backdrop-filter: blur(24px) saturate(1.2);
    backdrop-filter: blur(24px) saturate(1.2);
}

.target-home .button,
.target-home .header-cta,
.target-home .theme-toggle,
.target-home .menu-toggle {
    -webkit-backdrop-filter: blur(18px) saturate(1.18);
    backdrop-filter: blur(18px) saturate(1.18);
}

.target-home .proof-card:hover,
.target-home .step-card:hover,
.target-home .plan-card:hover,
.target-home .screen-card:hover,
.target-home .faq-list details:hover,
.target-home .info-panel:hover,
.target-home .download-card:hover {
    border-color: rgba(139, 199, 255, 0.64);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.96),
        0 34px 92px rgba(54, 107, 176, 0.20);
}

html[data-theme="dark"] body {
    color: #f7fbff;
    background:
        radial-gradient(circle at 18% 12%, rgba(89, 166, 255, 0.20), transparent 30%),
        radial-gradient(circle at 86% 18%, rgba(111, 229, 255, 0.13), transparent 32%),
        radial-gradient(circle at 48% 76%, rgba(65, 219, 196, 0.08), transparent 34%),
        linear-gradient(180deg, #10172c 0%, #121a31 52%, #0d1528 100%),
        #0d1528;
}

html[data-theme="dark"] body::before {
    opacity: 0.46;
    background-image:
        linear-gradient(rgba(140, 190, 255, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(140, 190, 255, 0.07) 1px, transparent 1px);
}

html[data-theme="dark"] .target-home .site-header,
html[data-theme="dark"] .target-home .proof-card,
html[data-theme="dark"] .target-home .step-card,
html[data-theme="dark"] .target-home .plan-card,
html[data-theme="dark"] .target-home .screen-card,
html[data-theme="dark"] .target-home .faq-list details,
html[data-theme="dark"] .target-home .info-panel,
html[data-theme="dark"] .target-home .download-card,
html[data-theme="dark"] .target-home .account-form,
html[data-theme="dark"] .target-home .account-summary,
html[data-theme="dark"] .target-home .legal-card {
    border-color: var(--glass-dark-line);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.05) 40%, rgba(86, 151, 255, 0.10)),
        var(--glass-dark);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.24),
        inset 0 -1px 0 rgba(255, 255, 255, 0.08),
        0 30px 86px rgba(0, 0, 0, 0.34),
        0 0 0 1px rgba(97, 161, 255, 0.06);
    -webkit-backdrop-filter: blur(28px) saturate(1.28);
    backdrop-filter: blur(28px) saturate(1.28);
}

html[data-theme="dark"] .target-home .site-header {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.20), rgba(255, 255, 255, 0.06) 46%, rgba(104, 174, 255, 0.10)),
        rgba(18, 25, 47, 0.56);
}

html[data-theme="dark"] .target-home .brand,
html[data-theme="dark"] .target-home .brand-name,
html[data-theme="dark"] .target-home .site-nav a,
html[data-theme="dark"] .target-home .hero h1,
html[data-theme="dark"] .target-home .hero h1 span,
html[data-theme="dark"] .target-home .proof-card h2,
html[data-theme="dark"] .target-home .step-card h3,
html[data-theme="dark"] .target-home .plan-card h3,
html[data-theme="dark"] .target-home .plan-card .price,
html[data-theme="dark"] .target-home .faq-list summary,
html[data-theme="dark"] .target-home .info-panel h2,
html[data-theme="dark"] .target-home .download-card h2,
html[data-theme="dark"] .target-home .account-summary h2,
html[data-theme="dark"] .target-home .legal-card h2 {
    color: #f7fbff !important;
}

html[data-theme="dark"] .target-home .hero h1 {
    text-shadow:
        0 1px 0 rgba(255, 255, 255, 0.08),
        0 28px 80px rgba(73, 151, 255, 0.20);
}

html[data-theme="dark"] .target-home .hero-lede span {
    color: #8dccff !important;
}

html[data-theme="dark"] .target-home .proof-card p,
html[data-theme="dark"] .target-home .step-card p,
html[data-theme="dark"] .target-home .plan-card li,
html[data-theme="dark"] .target-home .faq-list p,
html[data-theme="dark"] .target-home .info-panel p,
html[data-theme="dark"] .target-home .download-card p,
html[data-theme="dark"] .target-home .account-summary p,
html[data-theme="dark"] .target-home .legal-card p,
html[data-theme="dark"] .target-home .section-heading p,
html[data-theme="dark"] .target-home .hero-lede,
html[data-theme="dark"] .target-home .app-copy p,
html[data-theme="dark"] .target-home .support-copy p {
    color: rgba(221, 235, 255, 0.82) !important;
}

html[data-theme="dark"] .target-home .card-icon,
html[data-theme="dark"] .target-home .screen-card img,
html[data-theme="dark"] .target-home .download-card img {
    border-color: rgba(148, 196, 255, 0.34);
    background:
        linear-gradient(135deg, rgba(94, 154, 255, 0.18), rgba(101, 217, 255, 0.06)),
        rgba(10, 18, 36, 0.74);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.14),
        0 18px 42px rgba(0, 0, 0, 0.24);
    filter: none;
}

html[data-theme="dark"] .target-home .button-secondary,
html[data-theme="dark"] .target-home .app-actions .button-secondary {
    color: #f7fbff !important;
    border-color: rgba(215, 234, 255, 0.36);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04)),
        rgba(19, 29, 53, 0.54);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.18),
        0 16px 40px rgba(0, 0, 0, 0.24);
}

html[data-theme="dark"] .target-home .button-primary,
html[data-theme="dark"] .target-home .header-cta {
    color: #ffffff !important;
    border-color: rgba(185, 219, 255, 0.48);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.42),
        0 22px 56px rgba(49, 113, 255, 0.34);
}

html[data-theme="dark"] .target-home .proof-card:hover,
html[data-theme="dark"] .target-home .step-card:hover,
html[data-theme="dark"] .target-home .plan-card:hover,
html[data-theme="dark"] .target-home .screen-card:hover,
html[data-theme="dark"] .target-home .faq-list details:hover,
html[data-theme="dark"] .target-home .info-panel:hover,
html[data-theme="dark"] .target-home .download-card:hover {
    border-color: rgba(189, 222, 255, 0.48);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.26),
        0 38px 102px rgba(0, 0, 0, 0.40),
        0 0 42px rgba(85, 184, 255, 0.10);
}

/* Dark asset pass v15: keep the first viewport dark when theme-specific images are active. */
html[data-theme="dark"] .target-home .hero {
    background:
        radial-gradient(circle at 78% 26%, rgba(85, 184, 255, 0.16), transparent 34%),
        radial-gradient(circle at 24% 78%, rgba(77, 222, 205, 0.08), transparent 36%),
        linear-gradient(180deg, #10172c 0%, #111b31 58%, #0d1528 100%) !important;
}

html[data-theme="dark"] .target-home .hero::after {
    background:
        radial-gradient(circle at 72% 34%, rgba(87, 151, 255, 0.20), transparent 38%),
        radial-gradient(circle at 18% 26%, rgba(255, 255, 255, 0.05), transparent 30%),
        linear-gradient(90deg, rgba(14, 22, 42, 0.98), rgba(15, 27, 50, 0.92) 48%, rgba(14, 31, 52, 0.84) 100%),
        linear-gradient(180deg, rgba(14, 22, 42, 1), rgba(13, 21, 40, 0.94)) !important;
    opacity: 1 !important;
    filter: none !important;
}

html[data-theme="dark"] .target-home .hero h1,
html[data-theme="dark"] .target-home .hero h1::first-letter {
    color: #f7fbff !important;
    text-shadow:
        0 1px 0 rgba(255, 255, 255, 0.10),
        0 28px 80px rgba(73, 151, 255, 0.22) !important;
}

html[data-theme="dark"] .target-home .hero-lede {
    color: rgba(221, 235, 255, 0.86) !important;
    text-shadow: none !important;
}

html[data-theme="dark"] .target-home .hero-lede span {
    color: #8dccff !important;
}

html[data-theme="dark"] .target-home .hero-scene {
    opacity: 1 !important;
    filter:
        drop-shadow(0 34px 64px rgba(0, 0, 0, 0.26))
        drop-shadow(0 0 34px rgba(85, 184, 255, 0.08)) !important;
}

/* Clean dark product visuals v17: dark renders should stay untouched inside glass cards. */
html[data-theme="dark"] body::before {
    opacity: 0.16 !important;
    background-image: none !important;
}

html[data-theme="dark"] .target-home .app-section {
    background:
        radial-gradient(circle at 74% 22%, rgba(88, 164, 255, 0.18), transparent 31%),
        radial-gradient(circle at 28% 68%, rgba(70, 224, 205, 0.08), transparent 32%),
        linear-gradient(180deg, #10172b 0%, #131c33 52%, #0d1427 100%) !important;
}

html[data-theme="dark"] .target-home .screen-gallery {
    gap: clamp(16px, 2vw, 24px);
}

html[data-theme="dark"] .target-home .screen-gallery::before {
    display: block !important;
    inset: 6% -5% 0 10% !important;
    background:
        radial-gradient(circle at 50% 48%, rgba(85, 184, 255, 0.20), transparent 58%),
        radial-gradient(circle at 76% 22%, rgba(255, 255, 255, 0.08), transparent 36%) !important;
    filter: blur(20px) !important;
    opacity: 0.8;
}

html[data-theme="dark"] .target-home .screen-card {
    padding: clamp(10px, 1.45vw, 16px) !important;
    border-radius: 26px !important;
    border-color: rgba(201, 225, 255, 0.32) !important;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.045) 48%, rgba(85, 154, 255, 0.12)),
        rgba(18, 27, 50, 0.58) !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.28),
        inset 0 -1px 0 rgba(255, 255, 255, 0.07),
        0 34px 86px rgba(0, 0, 0, 0.36),
        0 0 0 1px rgba(92, 162, 255, 0.08) !important;
    -webkit-backdrop-filter: blur(28px) saturate(1.22);
    backdrop-filter: blur(28px) saturate(1.22);
}

html[data-theme="dark"] .target-home .screen-card img,
html[data-theme="dark"] .download-card img[data-dark-src] {
    padding: 0 !important;
    border: 0 !important;
    border-radius: 20px !important;
    background: transparent !important;
    box-shadow:
        0 24px 58px rgba(0, 0, 0, 0.24),
        0 0 0 1px rgba(176, 211, 255, 0.10) !important;
    filter: none !important;
    transform: none !important;
}

html[data-theme="dark"] .target-home .screen-card:hover img,
html[data-theme="dark"] .target-home .screen-card:focus-within img,
html[data-theme="dark"] .download-card:hover img[data-dark-src],
html[data-theme="dark"] .download-card:focus-within img[data-dark-src] {
    filter: none !important;
    transform: none !important;
}

/* Apps composition v18: remove anchor bleed and align the showcase like a finished product section. */
.target-home #apps {
    scroll-margin-top: 0 !important;
}

.target-home .app-section {
    min-height: 100svh;
    display: flex;
    align-items: center;
}

.target-home .app-grid {
    width: min(1180px, calc(100% - 40px));
    min-height: min(760px, calc(100svh - 56px));
    align-items: center !important;
}

.target-home .app-copy {
    transform: translateY(-18px);
}

.target-home .app-copy h2 {
    max-width: 10.6ch;
    font-size: clamp(3rem, 5.2vw, 5.15rem);
    line-height: 0.98;
}

.target-home .screen-gallery {
    width: min(100%, 690px);
    justify-self: end;
}

.target-home .screen-card {
    border-radius: 24px;
}

.target-home .screen-card img {
    display: block;
}

html[data-theme="dark"] .target-home .app-section {
    min-height: 100svh;
}

html[data-theme="dark"] .target-home .app-grid {
    padding-top: clamp(88px, 8svh, 112px);
    padding-bottom: clamp(56px, 7svh, 88px);
}

html[data-theme="dark"] .target-home .app-copy {
    transform: translateY(-8px);
}

html[data-theme="dark"] .target-home .app-copy h2 {
    letter-spacing: 0;
}

@media (max-width: 900px) {
    .target-home .app-section {
        min-height: auto;
        display: block;
    }

    .target-home .app-grid,
    html[data-theme="dark"] .target-home .app-grid {
        min-height: 0;
        padding-top: 76px;
        padding-bottom: 78px;
    }

    .target-home .app-copy,
    html[data-theme="dark"] .target-home .app-copy {
        transform: none;
    }

    .target-home .app-copy h2 {
        max-width: 11ch;
        font-size: clamp(2.35rem, 10vw, 3.2rem);
        line-height: 1.04;
    }

    .target-home .screen-gallery {
        width: 100%;
        justify-self: stretch;
    }
}

/* Liquid glass polish v19: calmer premium header in dark mode. */
html[data-theme="dark"] .target-home .site-header {
    border-color: rgba(210, 231, 255, 0.28) !important;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.045) 42%, rgba(95, 165, 255, 0.08)),
        rgba(18, 27, 49, 0.68) !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.28),
        inset 0 -1px 0 rgba(255, 255, 255, 0.08),
        0 26px 72px rgba(0, 0, 0, 0.30),
        0 0 0 1px rgba(95, 165, 255, 0.06) !important;
}

html[data-theme="dark"] .target-home .theme-toggle,
html[data-theme="dark"] .target-home .header-cta,
html[data-theme="dark"] .target-home .menu-toggle {
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.28),
        0 16px 34px rgba(0, 0, 0, 0.24);
}

/* Production polish: clean chrome, strong contrast and no hidden panels. */
.reveal-ready .proof-card,
.reveal-ready .step-card,
.reveal-ready .screen-card,
.reveal-ready .plan-card,
.reveal-ready .faq-list details,
.reveal-ready .info-panel,
.reveal-ready .download-card,
.reveal-ready .account-form,
.reveal-ready .account-summary,
.reveal-ready .legal-card,
.reveal-ready .support-copy,
.reveal-ready .app-copy,
.reveal-ready .section-heading {
    opacity: 1 !important;
    transform: none !important;
}

.site-header::before {
    opacity: 0.22;
}

html[data-theme="dark"] .site-header,
html[data-theme="dark"] .target-home .site-header {
    border-color: rgba(202, 225, 255, 0.24) !important;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.035) 45%, rgba(82, 155, 255, 0.075)),
        rgba(15, 25, 48, 0.74) !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.22),
        0 24px 62px rgba(0, 0, 0, 0.30),
        0 0 0 1px rgba(92, 162, 255, 0.06) !important;
}

html[data-theme="dark"] .site-header::before {
    display: none !important;
}

html[data-theme="dark"] .page-mascot {
    border-radius: 22px;
    filter:
        drop-shadow(0 34px 68px rgba(0, 0, 0, 0.32))
        drop-shadow(0 0 34px rgba(68, 166, 255, 0.13));
}

html[data-theme="dark"] .target-home .hero-scene {
    width: min(100%, 650px);
    border-radius: 24px;
    filter:
        drop-shadow(0 34px 76px rgba(0, 0, 0, 0.34))
        drop-shadow(0 0 42px rgba(74, 169, 255, 0.12)) !important;
}

html[data-theme="dark"] .plan-card {
    color: #f7fbff;
    border-color: rgba(187, 218, 255, 0.28) !important;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.035) 45%, rgba(82, 155, 255, 0.09)),
        rgba(18, 29, 54, 0.72) !important;
}

html[data-theme="dark"] .plan-card h3,
html[data-theme="dark"] .plan-card .price {
    color: #f7fbff !important;
}

html[data-theme="dark"] .plan-card .price span,
html[data-theme="dark"] .plan-card li,
html[data-theme="dark"] .plan-card p {
    color: rgba(221, 235, 255, 0.84) !important;
}

html[data-theme="dark"] .plan-label,
html[data-theme="dark"] .eyebrow {
    color: #bceeff;
    border: 1px solid rgba(135, 205, 255, 0.26);
    background: rgba(37, 111, 174, 0.28);
}

@media (max-width: 640px) {
    html[data-theme="dark"] .target-home .hero-scene,
    html[data-theme="dark"] .page-mascot {
        border-radius: 18px;
    }
}
