:root {
    --landing-font-family: "Montserrat", sans-serif;
    --landing-bg: #f5f8fa;
    --landing-surface: #ffffff;
    --landing-surface-strong: #ffffff;
    --landing-ink: #1c2b3f;
    --landing-muted: #7590aa;
    --landing-accent: #002c6a;
    --landing-accent-strong: #0a3d8a;
    --landing-accent-soft: #eef4fd;
    --landing-accent-soft-strong: #deeaf4;
    --landing-gold: #f5cc67;
    --landing-gold-strong: #a07d00;
    --landing-gold-soft: #fefaed;
    --landing-success: #1a6b3c;
    --landing-error: #a93226;
    --landing-line: rgba(0, 44, 106, 0.12);
    --landing-line-strong: rgba(0, 44, 106, 0.18);
    --landing-shadow: 0 20px 44px rgba(6, 26, 58, 0.08);
    --landing-shadow-strong: 0 30px 72px rgba(6, 26, 58, 0.12);
    --landing-accent-rgb: 0, 44, 106;
    --landing-gold-rgb: 245, 204, 103;
    --landing-ink-rgb: 28, 43, 63;
    --landing-radius-xl: 28px;
    --landing-radius-lg: 22px;
    --landing-radius-md: 18px;
    --landing-radius-sm: 14px;
    --landing-max-width: 1200px;
}

html[data-theme="dark"] {
    --landing-bg: #07121f;
    --landing-surface: #0f2133;
    --landing-surface-strong: #13293f;
    --landing-ink: #edf6ff;
    --landing-muted: #a9c0d6;
    --landing-accent: #ffd76e;
    --landing-accent-strong: #ffe7a3;
    --landing-accent-soft: rgba(255, 215, 110, 0.14);
    --landing-accent-soft-strong: rgba(255, 215, 110, 0.2);
    --landing-gold: #ffd76e;
    --landing-gold-strong: #ffe7a3;
    --landing-gold-soft: rgba(255, 215, 110, 0.14);
    --landing-success: #86e5ac;
    --landing-error: #ff9b8d;
    --landing-line: rgba(190, 221, 248, 0.18);
    --landing-line-strong: rgba(190, 221, 248, 0.3);
    --landing-shadow: 0 20px 44px rgba(0, 0, 0, 0.28);
    --landing-shadow-strong: 0 30px 72px rgba(0, 0, 0, 0.36);
    --landing-accent-rgb: 255, 215, 110;
    --landing-gold-rgb: 255, 215, 110;
    --landing-ink-rgb: 237, 246, 255;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    font-family: var(--landing-font-family);
    color: var(--landing-ink);
    background:
        radial-gradient(circle at 14% 10%, rgba(var(--landing-gold-rgb), 0.34) 0%, transparent 32%),
        radial-gradient(circle at 86% 4%, rgba(var(--landing-accent-rgb), 0.14) 0%, transparent 26%),
        linear-gradient(180deg, #fbfcfe 0%, var(--landing-bg) 100%);
    overflow-x: hidden;
}

html[data-theme="dark"] body {
    background:
        radial-gradient(circle at 14% 10%, rgba(var(--landing-gold-rgb), 0.16) 0%, transparent 32%),
        radial-gradient(circle at 86% 4%, rgba(var(--landing-accent-rgb), 0.18) 0%, transparent 26%),
        linear-gradient(180deg, #091827 0%, var(--landing-bg) 100%);
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -2;
    opacity: 0.08;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.92' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.25'/%3E%3C/svg%3E");
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

.landing-shell {
    position: relative;
    isolation: isolate;
}

.landing-shell::before,
.landing-shell::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
    filter: blur(58px);
    opacity: 0.58;
    z-index: -1;
    animation: landing-drift 12s ease-in-out infinite;
}

.landing-shell::before {
    width: 320px;
    height: 320px;
    top: 40px;
    right: -70px;
    background: rgba(var(--landing-accent-rgb), 0.18);
}

.landing-shell::after {
    width: 360px;
    height: 360px;
    left: -110px;
    top: 840px;
    background: rgba(var(--landing-gold-rgb), 0.24);
    animation-delay: -5s;
}

.landing-container {
    width: min(var(--landing-max-width), calc(100% - 40px));
    margin: 0 auto;
}

.landing-link {
    transition: color 0.2s ease;
}

.landing-link:hover {
    color: var(--landing-ink);
}

.landing-nav-wrap {
    position: sticky;
    top: 0;
    z-index: 40;
    padding: 16px 0 0;
}

.landing-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 16px 22px;
    border: 1px solid var(--landing-line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 18px 40px rgba(6, 26, 58, 0.08);
    backdrop-filter: blur(14px);
}

html[data-theme="dark"] .landing-nav {
    background: rgba(10, 24, 38, 0.9);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.landing-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.landing-brand-mark {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    overflow: hidden;
    border: 0;
    border-radius: 16px;
    background: transparent;
    box-shadow: none;
}

.landing-brand-mark img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.landing-brand-copy {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.landing-brand-title {
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.01em;
}

.landing-brand-subtitle {
    font-size: 0.8rem;
    color: var(--landing-muted);
}

.landing-nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex: 1;
    color: var(--landing-muted);
}

.landing-nav-links a {
    position: relative;
    font-size: 0.95rem;
    font-weight: 600;
}

.landing-nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--landing-accent) 0%, var(--landing-gold) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.22s ease;
}

.landing-nav-links a:hover::after,
.landing-nav-links a:focus-visible::after {
    transform: scaleX(1);
}

.landing-nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.landing-nav-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-left: 4px;
}

.landing-support-link {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 12px;
    border: 1px solid var(--landing-line);
    border-radius: 999px;
    color: var(--landing-muted);
    font-size: 0.78rem;
    font-weight: 700;
    white-space: nowrap;
    background: rgba(255, 255, 255, 0.56);
}

.landing-support-link strong {
    color: var(--landing-ink);
    font-weight: 800;
}

.landing-social-links {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.landing-social-link {
    display: inline-grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border: 1px solid var(--landing-line);
    border-radius: 999px;
    color: var(--landing-accent);
    background: rgba(255, 255, 255, 0.56);
    transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.landing-social-link:hover,
.landing-social-link:focus-visible {
    color: var(--landing-ink);
    border-color: var(--landing-line-strong);
    background: rgba(255, 255, 255, 0.86);
    transform: translateY(-1px);
}

.landing-social-link svg {
    width: 18px;
    height: 18px;
}

html[data-theme="dark"] .landing-support-link,
html[data-theme="dark"] .landing-social-link {
    background: rgba(15, 33, 51, 0.8);
}

html[data-theme="dark"] .landing-support-link,
html[data-theme="dark"] .landing-support-link strong {
    color: var(--landing-gold);
}

html[data-theme="dark"] .landing-social-link:hover,
html[data-theme="dark"] .landing-social-link:focus-visible {
    background: rgba(24, 48, 72, 0.94);
}

html[data-theme="dark"] .landing-btn--primary {
    color: #18314b;
}

.theme-toggle {
    position: relative;
    display: inline-flex;
    align-items: center;
    width: 66px;
    height: 34px;
    padding: 3px;
    border: 1px solid rgba(255, 209, 92, 0.42);
    border-radius: 999px;
    background: linear-gradient(135deg, #f7d64f 0%, #62b6e8 100%);
    box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.45), 0 8px 22px rgba(6, 26, 58, 0.12);
    cursor: pointer;
    transition: background 0.22s ease, border-color 0.22s ease;
}

.theme-toggle__thumb {
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    color: #d59a00;
    background: #ffd83d;
    box-shadow: 0 3px 9px rgba(6, 26, 58, 0.22);
    transform: translateX(0);
    transition: transform 0.22s ease, color 0.22s ease, background 0.22s ease;
}

.theme-toggle__icon {
    position: absolute;
    width: 15px;
    height: 15px;
    transition: opacity 0.18s ease, transform 0.18s ease;
}

.theme-toggle__moon {
    opacity: 0;
    transform: scale(0.72);
}

html[data-theme="dark"] .theme-toggle {
    border-color: rgba(190, 221, 248, 0.24);
    background: linear-gradient(135deg, #172332 0%, #364657 100%);
}

html[data-theme="dark"] .theme-toggle__thumb {
    color: #31506c;
    background: #eef4f8;
    transform: translateX(31px);
}

html[data-theme="dark"] .theme-toggle__sun {
    opacity: 0;
    transform: scale(0.72);
}

html[data-theme="dark"] .theme-toggle__moon {
    opacity: 1;
    transform: scale(1);
}

.landing-nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid var(--landing-line);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.7);
    color: var(--landing-ink);
    cursor: pointer;
}

html[data-theme="dark"] .landing-nav-toggle {
    background: rgba(15, 33, 51, 0.8);
}

.landing-nav-toggle-bars {
    display: inline-grid;
    gap: 4px;
}

.landing-nav-toggle-bars span {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.landing-nav-toggle[aria-expanded="true"] .landing-nav-toggle-bars span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.landing-nav-toggle[aria-expanded="true"] .landing-nav-toggle-bars span:nth-child(2) {
    opacity: 0;
}

.landing-nav-toggle[aria-expanded="true"] .landing-nav-toggle-bars span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.landing-mobile-nav {
    position: fixed;
    inset: 0;
    z-index: 70;
    display: none;
    pointer-events: none;
}

.landing-mobile-nav.is-open {
    display: block;
    pointer-events: auto;
}

.landing-mobile-nav-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(6, 26, 58, 0.32);
    opacity: 0;
    transition: opacity 0.22s ease;
}

.landing-mobile-nav-panel {
    position: absolute;
    top: 0;
    right: 0;
    display: grid;
    align-content: start;
    width: min(320px, calc(100vw - 24px));
    height: 100%;
    padding: 88px 18px 24px;
    border-left: 1px solid var(--landing-line);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: -16px 0 44px rgba(6, 26, 58, 0.14);
    backdrop-filter: blur(12px);
    transform: translateX(100%);
    transition: transform 0.24s ease;
}

html[data-theme="dark"] .landing-mobile-nav-panel {
    background: rgba(10, 24, 38, 0.98);
    box-shadow: -16px 0 44px rgba(0, 0, 0, 0.32);
}

.landing-mobile-nav.is-open .landing-mobile-nav-backdrop {
    opacity: 1;
}

.landing-mobile-nav.is-open .landing-mobile-nav-panel {
    transform: translateX(0);
}

.landing-mobile-nav-links {
    display: grid;
    gap: 12px;
}

.landing-mobile-nav-links a {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 14px 16px;
    border: 1px solid rgba(var(--landing-gold-rgb), 0.46);
    border-radius: 16px;
    text-align: left;
    color: var(--landing-muted);
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0) 46%),
        linear-gradient(180deg, rgba(255, 250, 240, 0.9) 0%, rgba(255, 246, 221, 0.76) 100%);
    font-weight: 600;
    box-shadow: 0 12px 26px rgba(166, 128, 16, 0.08);
}

html[data-theme="dark"] .landing-mobile-nav-links a {
    color: #dbe9f7;
    background:
        radial-gradient(circle at top left, rgba(255, 215, 110, 0.16) 0%, rgba(255, 215, 110, 0) 46%),
        linear-gradient(180deg, rgba(19, 41, 63, 0.96) 0%, rgba(11, 26, 42, 0.96) 100%);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.24);
}

.landing-mobile-nav-links .landing-btn {
    justify-content: flex-start;
}

.landing-mobile-nav-links .theme-toggle {
    margin: 0 0 8px;
}

.landing-mobile-nav-support {
    display: grid;
    gap: 12px;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(var(--landing-gold-rgb), 0.34);
}

.landing-mobile-nav-links a:hover {
    color: var(--landing-ink);
    border-color: rgba(var(--landing-gold-rgb), 0.76);
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0) 46%),
        linear-gradient(180deg, #fffaf0 0%, #fff1c9 100%);
}

html[data-theme="dark"] .landing-mobile-nav-links a:hover {
    color: #ffffff;
    background:
        radial-gradient(circle at top left, rgba(255, 215, 110, 0.22) 0%, rgba(255, 215, 110, 0) 46%),
        linear-gradient(180deg, rgba(24, 52, 80, 0.98) 0%, rgba(14, 33, 53, 0.98) 100%);
}

body.landing-mobile-nav-open {
    overflow: hidden;
}

.landing-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 0 24px;
    border: 1px solid transparent;
    border-radius: 999px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.01em;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease;
    overflow: hidden;
}

.landing-btn::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 -145%;
    width: 44%;
    transform: skewX(-22deg);
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.5) 50%, transparent 100%);
    pointer-events: none;
}

.landing-btn--primary {
    color: var(--landing-accent);
    background: linear-gradient(135deg, var(--landing-gold) 0%, #f0c24c 100%);
    box-shadow: 0 16px 34px rgba(var(--landing-gold-rgb), 0.3);
}

.landing-btn--primary:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #f8d67f 0%, var(--landing-gold) 100%);
    box-shadow: 0 20px 40px rgba(var(--landing-gold-rgb), 0.36);
}

.landing-btn--primary:hover::before {
    animation: landing-shine 0.8s ease forwards;
}

.landing-btn--secondary {
    color: var(--landing-accent);
    border-color: rgba(var(--landing-gold-rgb), 0.58);
    background: var(--landing-gold-soft);
}

.landing-btn--secondary:hover {
    transform: translateY(-2px);
    background: #fff6dd;
    box-shadow: 0 14px 28px rgba(var(--landing-gold-rgb), 0.2);
    border-color: rgba(var(--landing-gold-rgb), 0.74);
}

.landing-btn--ghost {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
}

.landing-btn--ghost:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.58);
}

body.landing-modal-open {
    overflow: hidden;
}

.landing-video-modal {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: grid;
    place-items: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
        opacity 0.22s ease,
        visibility 0.22s ease;
}

.landing-video-modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.landing-video-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(4, 16, 35, 0.78);
    backdrop-filter: blur(10px);
}

.landing-video-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(920px, 100%);
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 30px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.97) 0%, rgba(241, 247, 255, 0.96) 100%);
    box-shadow: 0 28px 80px rgba(4, 16, 35, 0.28);
    outline: none;
}

.landing-video-modal__close {
    position: absolute;
    top: 14px;
    right: 14px;
    display: inline-grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 999px;
    background: rgba(6, 26, 58, 0.08);
    color: var(--landing-ink);
    font-size: 1.2rem;
    font-weight: 700;
    transition:
        transform 0.2s ease,
        background 0.2s ease;
}

.landing-video-modal__close:hover {
    transform: scale(1.05);
    background: rgba(6, 26, 58, 0.14);
}

.landing-video-modal__close:focus-visible {
    outline: 3px solid rgba(var(--landing-accent-rgb), 0.3);
    outline-offset: 2px;
}

.landing-video-modal__copy {
    padding: 6px 56px 14px 4px;
    text-align: center;
}

.landing-video-modal__title {
    margin: 0;
    color: var(--landing-ink);
    font-size: clamp(1.45rem, 2.4vw, 2rem);
    line-height: 1.12;
}

.landing-video-modal__text {
    max-width: 56ch;
    color: var(--landing-muted);
    font-size: 0.98rem;
}

.landing-video-modal__player {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 24px;
    background: #000000;
    object-fit: contain;
    box-shadow: 0 18px 36px rgba(4, 16, 35, 0.18);
}

.landing-hero {
    padding: 36px 0 10px;
}

.landing-hero-card {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.94fr);
    gap: 34px;
    align-items: center;
    padding: clamp(28px, 4vw, 52px);
    border: 1px solid var(--landing-line);
    border-radius: var(--landing-radius-xl);
    background: linear-gradient(
        130deg,
        rgba(255, 255, 255, 0.94) 0%,
        rgba(254, 250, 237, 0.92) 54%,
        rgba(238, 244, 253, 0.92) 100%
    );
    box-shadow: var(--landing-shadow-strong);
}

.landing-hero-card::before,
.landing-hero-card::after {
    content: "";
    position: absolute;
    inset: auto;
    border-radius: 999px;
    pointer-events: none;
    filter: blur(42px);
}

.landing-hero-card::before {
    top: -70px;
    right: -20px;
    width: 200px;
    height: 200px;
    background: rgba(var(--landing-accent-rgb), 0.12);
}

.landing-hero-card::after {
    left: -30px;
    bottom: -70px;
    width: 220px;
    height: 220px;
    background: rgba(var(--landing-gold-rgb), 0.18);
}

.landing-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    padding: 0.42rem 0.86rem;
    border: 1px solid rgba(var(--landing-gold-rgb), 0.86);
    border-radius: 999px;
    background: var(--landing-gold-soft);
    color: var(--landing-gold-strong);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.landing-badge-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--landing-gold);
    box-shadow: 0 0 0 0 rgba(var(--landing-gold-rgb), 0.42);
    animation: landing-pulse 1.9s ease infinite;
}

.landing-kicker {
    margin: 22px 0 12px;
    color: var(--landing-accent);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.landing-heading {
    margin: 0;
    max-width: 12ch;
    color: var(--landing-accent);
    font-size: clamp(2.15rem, 3.9vw, 3.4rem);
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -0.04em;
}

.landing-heading .landing-muted-word {
    color: inherit;
}

.landing-heading .landing-accent-word {
    color: inherit;
}

.landing-copy {
    margin: 18px 0 0;
    max-width: 60ch;
    color: var(--landing-muted);
    font-size: 1.02rem;
    line-height: 1.78;
}

.landing-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 28px 0 0;
}

.landing-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0.72rem 0.96rem;
    border: 1px solid var(--landing-line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    color: var(--landing-ink);
    font-size: 0.92rem;
    font-weight: 700;
    box-shadow: 0 12px 22px rgba(6, 26, 58, 0.07);
}

.landing-trust-check {
    display: inline-grid;
    place-items: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--landing-accent) 0%, #1a52a8 100%);
    color: #ffffff;
    font-size: 0.7rem;
}

.landing-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 30px 0 0;
}

.landing-subnote {
    margin: 16px 0 0;
    color: var(--landing-muted);
    font-size: 0.92rem;
}

.landing-proof-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 30px;
}

.landing-proof-card,
.landing-card,
.landing-info-card,
.landing-pricing-card,
.landing-download,
.landing-authority-card {
    position: relative;
    border: 1px solid var(--landing-line);
    border-radius: var(--landing-radius-md);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(238, 244, 253, 0.74) 100%);
    box-shadow: var(--landing-shadow);
}

.landing-proof-card {
    padding: 18px 18px 16px;
}

.landing-proof-value {
    display: inline-flex;
    gap: 2px;
    align-items: baseline;
    font-size: clamp(1.9rem, 2.6vw, 2.45rem);
    font-weight: 800;
    line-height: 1;
    color: var(--landing-accent-strong);
}

.landing-proof-label {
    margin-top: 10px;
    color: var(--landing-ink);
    font-size: 0.98rem;
    font-weight: 700;
}

.landing-proof-caption {
    margin-top: 4px;
    color: var(--landing-muted);
    font-size: 0.86rem;
}

.landing-stage {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 14px;
}

.landing-device {
    padding: 20px;
}

.landing-device-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    color: var(--landing-muted);
    font-size: 0.85rem;
}

.landing-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    background: var(--landing-accent-soft);
    color: var(--landing-accent);
    font-weight: 800;
    font-size: 0.82rem;
}

.landing-question {
    margin-top: 16px;
    padding: 16px;
    border: 1px solid var(--landing-line);
    border-radius: 14px;
    background: var(--landing-surface-strong);
    color: var(--landing-ink);
    line-height: 1.65;
    font-size: 0.92rem;
}

.landing-answer-list {
    display: grid;
    gap: 8px;
    margin-top: 14px;
}

.landing-answer {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border: 1px solid var(--landing-line);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.96);
    color: var(--landing-muted);
    font-size: 0.88rem;
}

.landing-answer::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(var(--landing-accent-rgb), 0.18);
    flex: 0 0 auto;
}

.landing-answer.is-correct {
    border-color: rgba(var(--landing-accent-rgb), 0.18);
    background: rgba(238, 244, 253, 0.92);
    color: var(--landing-accent);
}

.landing-answer.is-correct::before {
    background: var(--landing-accent);
}

.landing-answer.is-incorrect {
    border-color: rgba(169, 50, 38, 0.18);
    background: rgba(169, 50, 38, 0.08);
    color: var(--landing-error);
}

.landing-answer.is-incorrect::before {
    background: var(--landing-error);
}

.landing-ai-note {
    margin-top: 14px;
    padding: 14px 16px;
    border-left: 4px solid var(--landing-accent);
    border-radius: 14px;
    background: rgba(var(--landing-accent-rgb), 0.08);
}

.landing-ai-note-title {
    margin: 0 0 6px;
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--landing-accent-strong);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.landing-ai-note-copy {
    margin: 0;
    color: var(--landing-muted);
    font-size: 0.88rem;
    line-height: 1.65;
}

.landing-stage-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.landing-info-card {
    padding: 18px;
}

.landing-info-label {
    color: var(--landing-muted);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.landing-bar-chart {
    display: flex;
    align-items: end;
    gap: 5px;
    height: 56px;
    margin-top: 14px;
}

.landing-bar-chart span {
    flex: 1;
    border-radius: 999px 999px 4px 4px;
    background: rgba(var(--landing-accent-rgb), 0.14);
}

.landing-bar-chart span.is-strong {
    background: linear-gradient(180deg, #1a52a8 0%, var(--landing-accent) 100%);
}

.landing-readiness {
    display: flex;
    align-items: end;
    gap: 4px;
    margin-top: 14px;
}

.landing-readiness-value {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
    color: var(--landing-accent-strong);
}

.landing-readiness-scale {
    margin-bottom: 4px;
    color: var(--landing-muted);
    font-size: 0.9rem;
}

.landing-progress {
    margin-top: 12px;
    width: 100%;
    height: 8px;
    border-radius: 999px;
    overflow: hidden;
    background: rgba(var(--landing-accent-rgb), 0.08);
}

.landing-progress span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--landing-accent) 0%, #1a52a8 100%);
}

.landing-section {
    padding: 92px 0;
}

.landing-section--soft {
    background: linear-gradient(180deg, rgba(254, 250, 237, 0.86) 0%, rgba(255, 255, 255, 0.82) 100%);
}

.landing-section--wash {
    background: linear-gradient(180deg, rgba(238, 244, 253, 0.96) 0%, rgba(254, 250, 237, 0.9) 100%);
}

.landing-section--tight {
    padding-top: 78px;
    padding-bottom: 78px;
}

.landing-section.landing-section--consistency {
    padding-bottom: 34px;
}

.landing-section.landing-section--founder-footer {
    padding-top: 0;
}

.landing-section-header {
    display: grid;
    gap: 18px;
    margin-bottom: 36px;
}

.landing-section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--landing-accent);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.landing-section-label::before {
    content: "";
    width: 34px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--landing-gold) 0%, rgba(var(--landing-gold-rgb), 0) 100%);
}

.landing-section-heading {
    margin: 0;
    max-width: 18ch;
    font-size: clamp(2rem, 4vw, 3.4rem);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -0.04em;
}

.landing-section-heading--wide {
    max-width: 24ch;
}

.landing-section-copy {
    max-width: 66ch;
    margin: 0;
    color: var(--landing-muted);
    font-size: 1rem;
    line-height: 1.78;
}

.landing-grid {
    display: grid;
    gap: 18px;
}

.landing-grid--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.landing-grid--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.landing-grid--4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.landing-grid--6 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.landing-card {
    padding: 24px;
    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease,
        border-color 0.22s ease;
}

.landing-card:hover,
.landing-pricing-card:hover,
.landing-download:hover {
    transform: translateY(-4px);
    border-color: rgba(var(--landing-accent-rgb), 0.2);
    box-shadow: 0 24px 44px rgba(6, 26, 58, 0.14);
}

.landing-card-icon {
    display: inline-grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 15px;
    background: var(--landing-accent-soft);
    color: var(--landing-accent);
    box-shadow: 0 12px 26px rgba(var(--landing-accent-rgb), 0.12);
}

.landing-card-title {
    margin: 18px 0 8px;
    font-size: 1.08rem;
    font-weight: 800;
}

.landing-card-copy {
    margin: 0;
    color: var(--landing-muted);
    font-size: 0.95rem;
    line-height: 1.72;
}

.landing-flow {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.landing-flow-step {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border: 1px solid var(--landing-line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 12px 24px rgba(6, 26, 58, 0.08);
    font-weight: 700;
    color: var(--landing-ink);
}

#features .landing-flow-step {
    border-color: rgba(var(--landing-gold-rgb), 0.54);
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0) 48%),
        linear-gradient(180deg, #fffaf0 0%, #fff4d7 100%);
    box-shadow:
        0 16px 28px rgba(166, 128, 16, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.landing-flow-step-number {
    display: inline-grid;
    place-items: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--landing-accent) 0%, #1a52a8 100%);
    color: #ffffff;
    font-size: 0.9rem;
    box-shadow: 0 12px 24px rgba(var(--landing-accent-rgb), 0.2);
}

#features .landing-flow-step-number {
    background: linear-gradient(135deg, #e0ad2f 0%, #c78f10 100%);
    color: #fffdf7;
    box-shadow: 0 12px 24px rgba(166, 128, 16, 0.2);
}

.landing-marquee--features .landing-marquee-card {
    border-color: rgba(var(--landing-gold-rgb), 0.56);
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0) 42%),
        linear-gradient(180deg, #fffaf0 0%, #fff1c9 100%);
    box-shadow:
        0 20px 40px rgba(166, 128, 16, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.landing-marquee--features .landing-marquee-card:hover {
    border-color: rgba(var(--landing-gold-rgb), 0.82);
    box-shadow:
        0 24px 48px rgba(166, 128, 16, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.landing-marquee--features .landing-card-icon {
    background: rgba(var(--landing-accent-rgb), 0.12);
    color: var(--landing-accent-strong);
    box-shadow: 0 12px 26px rgba(var(--landing-accent-rgb), 0.14);
}

.landing-marquee--features .landing-card-title {
    color: var(--landing-accent);
}

.landing-marquee--features .landing-card-copy {
    color: #5475a0;
}

.landing-section--consistency .landing-card {
    border-color: rgba(var(--landing-gold-rgb), 0.56);
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0) 42%),
        linear-gradient(180deg, #fffaf0 0%, #fff1c9 100%);
    box-shadow:
        0 20px 40px rgba(166, 128, 16, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.landing-section--consistency .landing-card:hover {
    border-color: rgba(var(--landing-gold-rgb), 0.82);
    box-shadow:
        0 24px 48px rgba(166, 128, 16, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.landing-section--consistency .landing-card-icon {
    background: rgba(var(--landing-accent-rgb), 0.12);
    color: var(--landing-accent-strong);
    box-shadow: 0 12px 26px rgba(var(--landing-accent-rgb), 0.14);
}

.landing-section--consistency .landing-card-title {
    color: var(--landing-accent);
}

.landing-section--consistency .landing-card-copy {
    color: #5475a0;
}

.landing-domain-card {
    padding: 28px 24px;
    text-align: center;
}

.landing-domain-card--blue {
    background: linear-gradient(180deg, #f4f8fe 0%, #e5eefb 100%);
    border-color: rgba(var(--landing-accent-rgb), 0.14);
}

.landing-domain-card--green {
    background: linear-gradient(180deg, #eef4fd 0%, #deeaf4 100%);
    border-color: rgba(var(--landing-accent-rgb), 0.16);
}

.landing-domain-card--warm {
    background: linear-gradient(180deg, #fefcf3 0%, #fef0c9 100%);
    border-color: rgba(var(--landing-gold-rgb), 0.42);
}

.landing-domain-icon {
    display: inline-grid;
    place-items: center;
    width: 62px;
    height: 62px;
    margin-bottom: 16px;
    border-radius: 18px;
    color: #ffffff;
}

.landing-domain-card--blue .landing-domain-icon {
    background: var(--landing-accent-strong);
}

.landing-domain-card--green .landing-domain-icon {
    background: var(--landing-accent);
}

.landing-domain-card--warm .landing-domain-icon {
    background: var(--landing-gold);
}

.landing-domain-title {
    margin: 0 0 8px;
    font-size: 1.08rem;
    font-weight: 800;
}

.landing-domain-copy {
    margin: 0;
    color: var(--landing-muted);
    line-height: 1.7;
}

.landing-authority {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    padding: clamp(32px, 4vw, 52px);
    background: linear-gradient(145deg, var(--landing-accent) 0%, var(--landing-accent-strong) 100%);
    box-shadow: 0 26px 54px rgba(var(--landing-accent-rgb), 0.22);
    color: rgba(255, 255, 255, 0.94);
}

.landing-authority::before {
    content: "";
    position: absolute;
    inset: auto -60px -120px auto;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0) 72%);
    pointer-events: none;
}

.landing-authority-header {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin-bottom: 26px;
}

.landing-authority-label {
    color: rgba(255, 255, 255, 0.72);
}

.landing-authority-heading {
    color: #ffffff;
}

.landing-authority-copy {
    color: rgba(255, 255, 255, 0.82);
}

.landing-authority-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.landing-authority-card {
    padding: 24px 22px;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.16);
    color: rgba(255, 255, 255, 0.96);
}

.landing-authority-card .landing-card-icon {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    box-shadow: none;
}

.landing-authority-card .landing-card-copy {
    color: rgba(255, 255, 255, 0.76);
}

.landing-how-list {
    display: grid;
    gap: 14px;
    max-width: 780px;
}

.landing-how-step {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 18px;
    padding: 20px 22px;
    border: 1px solid var(--landing-line);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--landing-shadow);
}

.landing-how-step-number {
    display: inline-grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--landing-accent) 0%, #1a52a8 100%);
    color: #ffffff;
    font-size: 1rem;
    font-weight: 800;
}

.landing-how-step-title {
    margin: 0 0 6px;
    font-size: 1.02rem;
    font-weight: 800;
}

.landing-how-step-copy {
    margin: 0;
    color: var(--landing-muted);
    line-height: 1.72;
}

.landing-pricing {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    max-width: 840px;
    margin-top: 34px;
}

.landing-pricing-toolbar {
    display: flex;
    align-items: end;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.landing-pricing-country {
    display: grid;
    gap: 8px;
    min-width: min(100%, 240px);
    color: var(--landing-muted);
    font-size: 0.82rem;
    font-weight: 800;
    text-align: left;
}

.landing-pricing-country select {
    min-height: 48px;
    padding: 0 42px 0 14px;
    border: 1px solid var(--landing-line);
    border-radius: 14px;
    background: var(--landing-surface);
    color: var(--landing-ink);
    font: inherit;
}

.landing-pricing-status {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    padding: 0 16px;
    border: 1px solid rgba(var(--landing-accent-rgb), 0.18);
    border-radius: 14px;
    background: rgba(var(--landing-accent-rgb), 0.08);
    color: var(--landing-muted);
    font-size: 0.88rem;
    font-weight: 700;
}

.landing-pricing-status.is-error {
    border-color: rgba(169, 50, 38, 0.24);
    background: rgba(169, 50, 38, 0.08);
    color: var(--landing-error);
}

.landing-razorpay-details {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    width: min(100%, 840px);
    margin-top: 18px;
}

.landing-razorpay-details[hidden] {
    display: none;
}

.landing-razorpay-details label {
    display: grid;
    gap: 8px;
    color: var(--landing-muted);
    font-size: 0.82rem;
    font-weight: 800;
    text-align: left;
}

.landing-razorpay-details input {
    min-height: 48px;
    padding: 0 14px;
    border: 1px solid var(--landing-line);
    border-radius: 14px;
    background: var(--landing-surface);
    color: var(--landing-ink);
    font: inherit;
}

@media (max-width: 760px) {
    .landing-razorpay-details {
        grid-template-columns: 1fr;
    }
}

.landing-countdown {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    width: min(100%, 720px);
    margin-top: 18px;
}

.landing-countdown-item {
    padding: 16px 14px;
    border: 1px solid rgba(var(--landing-gold-rgb), 0.56);
    border-radius: 22px;
    background:
       radial-gradient(circle at top left, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0) 42%),
        linear-gradient(180deg, #fffaf0 0%, #fff1c9 100%);
    box-shadow:
        0 18px 30px rgba(166, 128, 16, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.84);
}

.landing-countdown-value {
    display: block;
    font-size: clamp(1.75rem, 4vw, 2.4rem);
    font-weight: 800;
    line-height: 1;
    color: var(--landing-ink);
}

.landing-countdown-label {
    display: block;
    margin-top: 8px;
    color: #8e7b52;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.landing-pricing-card {
    padding: 28px;
    text-align: center;
    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease,
        border-color 0.22s ease;
}

.landing-pricing-card.is-featured {
    border: 2px solid rgba(var(--landing-accent-rgb), 0.2);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(238, 244, 253, 0.9) 100%);
}

.landing-pricing-badge {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 12px;
    border-radius: 999px;
    background: var(--landing-gold-soft);
    color: var(--landing-gold-strong);
    font-size: 0.8rem;
    font-weight: 800;
}

.landing-pricing-plan {
    margin-top: 16px;
    color: var(--landing-muted);
    font-weight: 700;
}

.landing-pricing-amount {
    margin-top: 12px;
    font-size: clamp(2.3rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1;
}

.landing-pricing-period {
    margin-top: 8px;
    color: var(--landing-muted);
}

.landing-pricing-processor-line,
.landing-pricing-note {
    margin-top: 10px;
    color: var(--landing-muted);
    font-size: 0.84rem;
    font-weight: 700;
    line-height: 1.5;
}

.landing-pricing-note {
    margin-bottom: 0;
}

.landing-pricing-divider {
    margin: 22px 0;
    border: 0;
    border-top: 1px solid var(--landing-line);
}

.landing-pricing-feature-list {
    display: grid;
    gap: 12px;
    text-align: left;
}

.landing-pricing-feature {
    display: flex;
    align-items: start;
    gap: 12px;
    color: var(--landing-muted);
    line-height: 1.6;
}

.landing-pricing-feature::before {
    content: "";
    width: 18px;
    height: 18px;
    margin-top: 2px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.96) 0 22%, rgba(255, 255, 255, 0) 23%),
        linear-gradient(135deg, rgba(var(--landing-accent-rgb), 0.18) 0%, rgba(var(--landing-accent-rgb), 0.12) 100%);
    box-shadow:
        inset 0 0 0 1px rgba(var(--landing-accent-rgb), 0.18),
        0 8px 18px rgba(var(--landing-accent-rgb), 0.12);
    flex: 0 0 auto;
}

.landing-banner {
    display: grid;
    gap: 4px;
    margin-top: 18px;
    max-width: 560px;
    padding: 14px 16px;
    border: 1px solid rgba(var(--landing-gold-rgb), 0.62);
    border-radius: 16px;
    background: var(--landing-gold-soft);
    color: var(--landing-gold-strong);
    font-weight: 700;
    line-height: 1.45;
}

.landing-banner span,
.landing-banner small {
    display: block;
}

.landing-banner small {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    opacity: 0.76;
    text-transform: uppercase;
}

.landing-banner--alert {
    border-color: rgba(169, 50, 38, 0.24);
    background: rgba(169, 50, 38, 0.08);
    color: var(--landing-error);
}

.landing-checkout-form {
    display: flex;
    width: 100%;
}

.landing-checkout-form .landing-btn {
    width: 100%;
}

.landing-testimonial-card {
    display: grid;
    gap: 14px;
    padding: 24px;
    border-color: rgba(var(--landing-gold-rgb), 0.58);
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0) 42%),
        linear-gradient(180deg, #fffaf0 0%, #fff1c9 100%);
    box-shadow:
        0 20px 40px rgba(166, 128, 16, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.landing-testimonial-card:hover {
    border-color: rgba(var(--landing-gold-rgb), 0.82);
    box-shadow:
        0 24px 48px rgba(166, 128, 16, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.landing-testimonial-rating {
    color: var(--landing-gold-strong);
    font-size: 0.94rem;
    letter-spacing: 0.16em;
}

.landing-testimonial-review {
    margin: 0;
    color: var(--landing-ink);
    font-size: 0.98rem;
    font-weight: 600;
    line-height: 1.75;
}

.landing-testimonial-name {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    color: #8a6400;
    font-size: 0.95rem;
    font-weight: 800;
}

.landing-testimonial-name::before {
    content: "";
    width: 28px;
    height: 2px;
    border-radius: 999px;
    background: rgba(var(--landing-gold-rgb), 0.72);
}

.landing-download-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 26px;
    width: min(720px, 100%);
    margin-inline: auto;
    justify-content: center;
    align-items: stretch;
}

.landing-download {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-width: 230px;
    padding: 16px 18px;
    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease,
        border-color 0.22s ease;
}

.landing-download--image {
    justify-content: center;
    min-width: 0;
    width: 100%;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.landing-download--image:hover {
    transform: none;
    border-color: transparent;
    box-shadow: none;
}

.landing-download-badge-image {
    display: block;
    width: min(100%, 280px);
    height: auto;
}

.landing-download-copy {
    display: grid;
    gap: 4px;
}

.landing-download-label {
    color: var(--landing-muted);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.landing-download-title {
    font-size: 1rem;
    font-weight: 800;
}

.landing-final {
    padding-bottom: 116px;
}

.landing-final-card {
    position: relative;
    overflow: hidden;
    padding: clamp(32px, 4vw, 56px);
    border-radius: 30px;
    background: linear-gradient(145deg, var(--landing-accent) 0%, var(--landing-accent-strong) 100%);
    box-shadow: 0 28px 58px rgba(var(--landing-accent-rgb), 0.24);
    color: #ffffff;
}

.landing-final-card::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -70px;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0) 72%);
}

.landing-final-heading {
    position: relative;
    z-index: 1;
    margin: 0;
    font-size: clamp(2.1rem, 4vw, 3.5rem);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -0.04em;
    text-align: center;
}

.landing-final-copy {
    position: relative;
    z-index: 1;
    max-width: 56ch;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.84);
    line-height: 1.78;
}

.landing-final-actions {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.landing-final-note {
    position: relative;
    z-index: 1;
    margin-top: 14px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.9rem;
}

.landing-final-pricing {
    margin-top: 36px;
}

.landing-founder-cta {
    position: relative;
    overflow: hidden;
    display: grid;
    justify-items: center;
    gap: 18px;
    width: min(860px, 100%);
    margin: 0 auto;
    padding: clamp(26px, 4vw, 42px);
    border: 1px solid rgba(var(--landing-gold-rgb), 0.58);
    border-radius: 28px;
    text-align: center;
    background:
        radial-gradient(circle at top left, rgba(var(--landing-gold-rgb), 0.22) 0%, rgba(var(--landing-gold-rgb), 0) 46%),
        linear-gradient(135deg, rgba(var(--landing-accent-rgb), 0.12) 0%, rgba(var(--landing-gold-rgb), 0.16) 100%);
    box-shadow: 0 22px 48px rgba(var(--landing-accent-rgb), 0.12);
}

.landing-founder-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.36);
}

.landing-founder-cta__title {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 0;
    color: var(--landing-ink);
    font-size: clamp(1.45rem, 3vw, 2.35rem);
    font-weight: 800;
    line-height: 1.14;
}

.landing-founder-cta .landing-btn {
    position: relative;
    z-index: 1;
}

html[data-theme="dark"] .landing-founder-cta {
    border-color: rgba(var(--landing-gold-rgb), 0.46);
    background:
        radial-gradient(circle at top left, rgba(255, 215, 110, 0.16) 0%, rgba(255, 215, 110, 0) 44%),
        linear-gradient(145deg, #12385f 0%, #0a1d30 100%);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.28);
}

.landing-footer {
    margin-top: 26px;
    padding: 26px 0 36px;
    border-top: 1px solid rgba(var(--landing-accent-rgb), 0.08);
}

.landing-footer-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    text-align: center;
}

.landing-footer-copy {
    display: grid;
    gap: 6px;
    color: var(--landing-muted);
    justify-items: center;
}

.landing-footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.landing-footer-logo {
    display: inline-flex;
    width: 40px;
    height: 40px;
    overflow: hidden;
    border: 0;
    border-radius: 12px;
    background: transparent;
}

.landing-footer-logo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.landing-footer-title {
    font-size: 1rem;
    font-weight: 800;
    color: var(--landing-ink);
}

.landing-footer-owner {
    display: block;
    max-width: 760px;
    color: #18314b;
    font-size: 0.82rem;
    font-weight: 800;
    line-height: 1.5;
}

.landing-footer-address {
    display: block;
    max-width: 760px;
    margin-top: -2px;
    color: #18314b;
    font-size: 0.74rem;
    font-weight: 800;
    line-height: 1.45;
}

html[data-theme="dark"] .landing-footer-owner,
html[data-theme="dark"] .landing-footer-address {
    color: #ffffff;
}

.landing-footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    color: var(--landing-muted);
    font-weight: 700;
    justify-content: center;
}

html[data-theme="dark"] .landing-footer-copy,
html[data-theme="dark"] .landing-footer-title,
html[data-theme="dark"] .landing-footer-links {
    color: var(--landing-gold);
}

.landing-sticky-cta {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 35;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 12px;
    border: 1px solid rgba(var(--landing-accent-rgb), 0.12);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 20px 36px rgba(6, 26, 58, 0.12);
    backdrop-filter: blur(16px);
}

html[data-theme="dark"] .landing-sticky-cta {
    background: rgba(10, 24, 38, 0.94);
    box-shadow: 0 20px 36px rgba(0, 0, 0, 0.32);
}

html[data-theme="dark"] .landing-trust-item,
html[data-theme="dark"] .landing-answer,
html[data-theme="dark"] .landing-flow-step {
    background: rgba(15, 33, 51, 0.86);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.22);
}

html[data-theme="dark"] .landing-proof-card,
html[data-theme="dark"] .landing-card,
html[data-theme="dark"] .landing-info-card,
html[data-theme="dark"] .landing-pricing-card,
html[data-theme="dark"] .landing-download,
html[data-theme="dark"] .landing-authority-card {
    background: linear-gradient(180deg, rgba(19, 41, 63, 0.96) 0%, rgba(12, 28, 44, 0.9) 100%);
}

html[data-theme="dark"] .landing-card:hover,
html[data-theme="dark"] .landing-pricing-card:hover,
html[data-theme="dark"] .landing-download:hover {
    box-shadow: 0 24px 44px rgba(0, 0, 0, 0.32);
}

html[data-theme="dark"] #features .landing-flow-step,
html[data-theme="dark"] .landing-marquee--features .landing-marquee-card,
html[data-theme="dark"] .landing-section--consistency .landing-card,
html[data-theme="dark"] .landing-domain-card--warm {
    background:
        radial-gradient(circle at top left, rgba(255, 215, 110, 0.16) 0%, rgba(255, 215, 110, 0) 48%),
        linear-gradient(180deg, rgba(50, 41, 20, 0.94) 0%, rgba(22, 28, 34, 0.94) 100%);
}

html[data-theme="dark"] .landing-domain-card--blue,
html[data-theme="dark"] .landing-domain-card--green {
    background: linear-gradient(180deg, rgba(20, 48, 74, 0.96) 0%, rgba(11, 29, 47, 0.92) 100%);
}

html[data-theme="dark"] .landing-marquee--features .landing-card-copy,
html[data-theme="dark"] .landing-section--consistency .landing-card-copy {
    color: var(--landing-muted);
}

html[data-theme="dark"] .landing-section--soft {
    background:
        radial-gradient(circle at 15% 0%, rgba(var(--landing-gold-rgb), 0.08) 0%, transparent 34%),
        linear-gradient(180deg, #0b1a2a 0%, #081523 100%);
}

html[data-theme="dark"] .landing-section--wash {
    background:
        radial-gradient(circle at 82% 6%, rgba(var(--landing-accent-rgb), 0.12) 0%, transparent 32%),
        linear-gradient(180deg, #0a1827 0%, #0d1f31 100%);
}

html[data-theme="dark"] .landing-hero-card {
    background:
        radial-gradient(circle at top right, rgba(127, 197, 255, 0.2) 0%, transparent 38%),
        radial-gradient(circle at bottom left, rgba(255, 215, 110, 0.22) 0%, transparent 34%),
        linear-gradient(130deg, #f9fbf8 0%, #f7f1df 54%, #eef6ff 100%);
    border-color: rgba(255, 215, 110, 0.36);
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.34);
}

html[data-theme="dark"] .landing-hero-card .landing-heading,
html[data-theme="dark"] .landing-hero-card .landing-copy,
html[data-theme="dark"] .landing-hero-card .landing-proof-label,
html[data-theme="dark"] .landing-hero-card .landing-question,
html[data-theme="dark"] .landing-hero-card .landing-card-title {
    color: #18314b;
}

html[data-theme="dark"] .landing-hero-card .landing-copy,
html[data-theme="dark"] .landing-hero-card .landing-proof-caption,
html[data-theme="dark"] .landing-hero-card .landing-device-top,
html[data-theme="dark"] .landing-hero-card .landing-answer {
    color: #526b82;
}

html[data-theme="dark"] .landing-hero-card .landing-badge {
    background: rgba(255, 246, 221, 0.92);
    color: #8c6800;
}

html[data-theme="dark"] .landing-hero-card .landing-trust-item {
    color: #edf6ff;
    background: linear-gradient(180deg, #213c57 0%, #152d45 100%);
    border-color: rgba(24, 49, 75, 0.14);
    box-shadow: 0 16px 26px rgba(24, 49, 75, 0.22);
}

html[data-theme="dark"] .landing-hero-card .landing-device,
html[data-theme="dark"] .landing-hero-card .landing-question,
html[data-theme="dark"] .landing-hero-card .landing-answer,
html[data-theme="dark"] .landing-hero-card .landing-ai-note {
    background: #132b43;
    color: #d8e7f6;
    border-color: rgba(127, 197, 255, 0.24);
}

html[data-theme="dark"] .landing-hero-card .landing-question {
    color: #f4f9ff;
}

html[data-theme="dark"] .landing-hero-card .landing-answer.is-correct {
    background: rgba(127, 197, 255, 0.14);
    color: #8ed0ff;
}

html[data-theme="dark"] .landing-hero-card .landing-answer.is-incorrect {
    background: rgba(255, 155, 141, 0.12);
    color: #ffb2a7;
}

html[data-theme="dark"] .landing-section-heading,
html[data-theme="dark"] .landing-section-copy,
html[data-theme="dark"] .landing-card-title,
html[data-theme="dark"] .landing-how-step-title,
html[data-theme="dark"] .landing-pricing-plan,
html[data-theme="dark"] .landing-download-title {
    color: #edf6ff;
}

html[data-theme="dark"] .landing-section-copy,
html[data-theme="dark"] .landing-card-copy,
html[data-theme="dark"] .landing-how-step-copy,
html[data-theme="dark"] .landing-domain-copy,
html[data-theme="dark"] .landing-pricing-period,
html[data-theme="dark"] .landing-download-copy {
    color: #b8cadd;
}

html[data-theme="dark"] .landing-how-step,
html[data-theme="dark"] .landing-countdown-item {
    background:
        radial-gradient(circle at top left, rgba(127, 197, 255, 0.12) 0%, rgba(127, 197, 255, 0) 42%),
        linear-gradient(180deg, rgba(19, 41, 63, 0.96) 0%, rgba(11, 26, 42, 0.94) 100%);
    border-color: rgba(190, 221, 248, 0.18);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.28);
}

html[data-theme="dark"] .landing-marquee--testimonials .landing-marquee-card,
html[data-theme="dark"] .landing-marquee--issues .landing-marquee-card {
    background:
        radial-gradient(circle at top left, rgba(127, 197, 255, 0.12) 0%, rgba(127, 197, 255, 0) 42%),
        linear-gradient(180deg, rgba(20, 43, 66, 0.98) 0%, rgba(12, 29, 47, 0.98) 100%);
    border-color: rgba(255, 215, 110, 0.38);
}

html[data-theme="dark"] .landing-authority {
    background:
        radial-gradient(circle at top right, rgba(255, 215, 110, 0.12) 0%, transparent 34%),
        linear-gradient(145deg, #0f2d4d 0%, #0a1b2d 100%);
    box-shadow: 0 26px 54px rgba(0, 0, 0, 0.34);
}

html[data-theme="dark"] .landing-final-card {
    background:
        radial-gradient(circle at top right, rgba(255, 215, 110, 0.16) 0%, transparent 38%),
        linear-gradient(145deg, #12385f 0%, #0a1d30 100%);
    box-shadow: 0 28px 58px rgba(0, 0, 0, 0.34);
}

section[id] {
    scroll-margin-top: 112px;
}

.landing-proof-section {
    padding-top: 28px;
}

.landing-proof-grid--section {
    max-width: 1040px;
    margin-inline: auto;
}

.landing-section-header--centered {
    justify-items: center;
    text-align: center;
}

.landing-section-header--centered .landing-section-heading,
.landing-section-header--centered .landing-section-copy {
    margin-inline: auto;
}

.landing-section--centered .landing-flow,
.landing-section--centered .landing-pricing,
.landing-section--centered .landing-grid,
.landing-section--centered .landing-authority-grid,
.landing-section--centered .landing-how-list {
    margin-inline: auto;
}

.landing-section--centered .landing-flow,
.landing-section--centered .landing-actions,
.landing-section--centered .landing-final-actions {
    justify-content: center;
}

.landing-section--centered .landing-banner,
.landing-section--centered .landing-final-copy,
.landing-section--centered .landing-final-note {
    margin-inline: auto;
    text-align: center;
}

.landing-section--centered .landing-authority-header {
    margin-inline: auto;
    text-align: center;
}

.landing-section--centered .landing-authority-card,
.landing-section--centered .landing-how-step {
    text-align: center;
}

.landing-section--centered .landing-how-step {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 14px;
    max-width: 760px;
}

.landing-section--centered .landing-how-step > div:last-child {
    max-width: 46ch;
}

.landing-marquee {
    position: relative;
    overflow: hidden;
    margin-top: 30px;
    mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.landing-marquee-track {
    --marquee-gap: 18px;
    display: flex;
    gap: var(--marquee-gap);
    width: max-content;
    animation: landing-marquee 34s linear infinite;
    will-change: transform;
}

.landing-marquee-group {
    display: flex;
    gap: var(--marquee-gap);
}

.landing-marquee--issues .landing-marquee-track {
    animation-duration: 26s;
}

.landing-marquee--testimonials .landing-marquee-track {
    animation-duration: 30s;
}

.landing-marquee--features .landing-marquee-track {
    animation-duration: 34s;
}

.landing-marquee:hover .landing-marquee-track {
    animation-play-state: paused;
}

.landing-marquee-card {
    flex: 0 0 320px;
    width: 320px;
    text-align: left;
}

@keyframes landing-marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-50% - (var(--marquee-gap) / 2)));
    }
}

[data-reveal] {
    opacity: 0;
    filter: blur(8px);
    transform: translateY(28px);
    will-change: opacity, filter, transform;
    transition:
        opacity 0.72s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.72s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--reveal-delay, 0ms);
}

[data-reveal].is-visible {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
}

@keyframes landing-drift {
    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(10px, -12px) scale(1.04);
    }
}

@keyframes landing-shine {
    from {
        left: -145%;
    }

    to {
        left: 145%;
    }
}

@keyframes landing-pulse {
    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(var(--landing-gold-rgb), 0.42);
        opacity: 1;
    }

    50% {
        box-shadow: 0 0 0 10px rgba(var(--landing-gold-rgb), 0);
        opacity: 0.75;
    }
}

@media (max-width: 1100px) {
    .landing-hero-card,
    .landing-grid--2,
    .landing-grid--3,
    .landing-grid--4,
    .landing-grid--6,
    .landing-authority-grid,
    .landing-pricing {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .landing-hero-card {
        grid-template-columns: 1fr;
    }

    .landing-heading {
        max-width: none;
    }
}

@media (max-width: 900px) {
    .landing-container {
        width: min(var(--landing-max-width), calc(100% - 28px));
    }

    .landing-nav {
        border-radius: 26px;
    }

    .landing-nav-actions {
        display: none;
    }

    .landing-nav-toggle {
        display: inline-flex;
    }

    .landing-mobile-nav {
        display: block;
    }

    .landing-mobile-nav .landing-btn {
        width: 100%;
    }

    .landing-proof-grid,
    .landing-stage-grid,
    .landing-grid--2,
    .landing-grid--3,
    .landing-grid--4,
    .landing-grid--6,
    .landing-authority-grid,
    .landing-pricing {
        grid-template-columns: 1fr;
    }

    .landing-countdown {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .landing-authority {
        padding: 32px 24px;
    }

    .landing-marquee {
        mask-image: none;
    }

    .landing-video-modal__dialog {
        width: min(760px, 100%);
    }

    .landing-marquee-card {
        flex-basis: 280px;
        width: 280px;
    }
}

@media (max-width: 1140px) {
    .landing-support-link {
        display: none;
    }
}

@media (max-width: 700px) {
    #download.landing-section {
        padding: 42px 0;
    }

    #download .landing-section-header {
        margin-bottom: 24px;
    }

    .landing-countdown {
        gap: 12px;
    }

    .landing-countdown-item {
        padding: 14px 12px;
        border-radius: 18px;
    }

    .landing-countdown-value {
        font-size: 1.6rem;
    }

    .landing-nav-wrap {
        padding-top: 10px;
    }

    .landing-nav {
        padding: 12px 14px;
        gap: 14px;
    }

    .landing-brand-mark {
        width: 38px;
        height: 38px;
        border-radius: 12px;
    }

    .landing-brand-subtitle {
        display: none;
    }

    .landing-nav-toggle {
        width: 42px;
        height: 42px;
    }

    .landing-heading {
        font-size: clamp(1.95rem, 7.2vw, 2.75rem);
    }

    .landing-copy,
    .landing-section-copy,
    .landing-final-copy {
        font-size: 0.96rem;
    }

    .landing-actions,
    .landing-final-actions {
        flex-direction: column;
    }

    .landing-btn,
    .landing-download {
        width: 100%;
    }

    .landing-btn {
        min-height: 52px;
    }

    .landing-video-modal {
        padding: 14px;
    }

    .landing-video-modal__dialog {
        padding: 16px;
        border-radius: 24px;
    }

    .landing-video-modal__copy {
        padding: 2px 48px 12px 2px;
    }

    .landing-video-modal__player {
        border-radius: 18px;
    }

    .landing-section {
        padding: 74px 0;
    }

    .landing-flow {
        flex-direction: column;
    }

    .landing-flow-step,
    .landing-how-step {
        width: 100%;
    }

    .landing-how-step {
        padding: 18px;
    }

    .landing-proof-card,
    .landing-card,
    .landing-pricing-card,
    .landing-info-card {
        padding: 20px;
    }

    .landing-footer-grid {
        flex-direction: column;
        align-items: center;
    }

    .landing-marquee-track,
    .landing-marquee-group {
        gap: 14px;
    }

    .landing-marquee-card {
        flex-basis: min(260px, calc(100vw - 72px));
        width: min(260px, calc(100vw - 72px));
    }

    .landing-sticky-cta {
        display: flex;
    }

    .landing-final {
        padding-bottom: 148px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }

    [data-reveal] {
        opacity: 1;
        filter: none;
        transform: none;
    }

    .landing-marquee {
        overflow: visible;
        mask-image: none;
    }

    .landing-marquee-track,
    .landing-marquee-group {
        width: 100%;
        flex-wrap: wrap;
        justify-content: center;
        animation: none;
    }

    .landing-marquee-group[aria-hidden="true"] {
        display: none;
    }
}
