:root {
    --bg: #080604;
    --bg-soft: #12100c;
    --panel: #18130d;
    --panel-2: #231b12;
    --text: #f3f6fa;
    --text-2: #b8c2ce;
    --text-3: #8190a1;
    --line: rgba(255, 255, 255, 0.09);
    --line-strong: rgba(255, 255, 255, 0.18);
    --gold: #f4ae3b;
    --gold-2: #ffd695;
    --gold-rgb: 243, 163, 33;
    --green: #17c08f;
    --danger: #ef4444;
    --shadow: 0 16px 36px rgba(0, 0, 0, 0.34);
    --shadow-soft: 0 8px 24px rgba(0, 0, 0, 0.22);
    --gold-fade: rgba(var(--gold-rgb), 0.18);
    --radius: 16px;
    --radius-sm: 11px;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --font-ui: "Manrope", "Segoe UI", sans-serif;
    --font-display: "Space Grotesk", "Manrope", "Segoe UI", sans-serif;
    --space-section: clamp(78px, 8.4vw, 106px);
    --space-section-mobile: 68px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 88px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    margin: 0;
    font-family: var(--font-ui);
    color: var(--text);
    background:
        radial-gradient(1200px 700px at 50% -18%, rgba(var(--gold-rgb), 0.12), transparent 72%),
        radial-gradient(980px 560px at 8% 28%, rgba(198, 119, 45, 0.11), transparent 74%),
        radial-gradient(980px 560px at 92% 72%, rgba(183, 105, 37, 0.1), transparent 74%),
        linear-gradient(180deg, #0b0806 0%, #090705 44%, #080604 100%);
    line-height: 1.7;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 999;
    opacity: 0.008;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    background:
        radial-gradient(620px 360px at 14% 30%, rgba(188, 109, 40, 0.07), transparent 70%),
        radial-gradient(620px 360px at 84% 68%, rgba(var(--gold-rgb), 0.06), transparent 70%);
    animation: ambienceDrift 22s ease-in-out infinite alternate;
}

@keyframes ambienceDrift {
    from { transform: translate3d(0, 0, 0) scale(1); }
    to { transform: translate3d(0, -8px, 0) scale(1.02); }
}

img, svg {
    display: block;
}

a {
    color: inherit;
}

::selection {
    color: #050505;
    background: var(--gold-2);
}

.skip-link {
    position: absolute;
    top: -80px;
    left: 8px;
    z-index: 1001;
    background: var(--gold-2);
    color: #050505;
    padding: 10px 16px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
}

.skip-link:focus {
    top: 8px;
}

:where(a, button, .btn, .nav-link, .plan-tab, .faq-question, .mobile-toggle):focus-visible {
    outline: 2px solid var(--gold-2);
    outline-offset: 2px;
}

.shell {
    width: min(1160px, calc(100% - 2.4rem));
    margin: 0 auto;
}

.page {
    padding-top: 98px;
    opacity: 0;
    transform: translateY(14px) scale(0.996);
    animation: pageEnter 0.6s var(--ease-out) 0.04s forwards;
}

.page.is-leaving {
    animation: pageLeave 0.24s var(--ease) forwards;
}

@keyframes pageEnter {
    from {
        opacity: 0;
        transform: translateY(14px) scale(0.996);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes pageLeave {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(8px);
    }
}

.site-header {
    position: fixed;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: min(1160px, calc(100% - 1.6rem));
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    background: rgba(23, 16, 11, 0.56);
    backdrop-filter: blur(30px) saturate(190%);
    -webkit-backdrop-filter: blur(30px) saturate(190%);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.14);
    overflow: hidden;
    isolation: isolate;
    transition: all 0.35s var(--ease);
    animation: headerDrop 0.58s var(--ease-out) both;
}

@keyframes headerDrop {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.site-header::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(110deg, rgba(var(--gold-rgb), 0.35), transparent 36%, rgba(201, 133, 62, 0.35));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.62;
}

.site-header::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    background: linear-gradient(120deg, transparent 28%, rgba(255, 255, 255, 0.14) 48%, transparent 72%);
    background-size: 220% 100%;
    animation: glassSweep 8s linear infinite;
    opacity: 0.28;
}

.site-header.is-scrolled {
    background: rgba(18, 12, 8, 0.78);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.48), inset 0 -1px 0 rgba(var(--gold-rgb), 0.2);
}

.nav-shell {
    width: 100%;
    padding: 8px 10px 8px 16px;
    min-height: 60px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-link {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-link:hover .logo-mark {
    transform: translateY(-1px) scale(1.02);
    filter: drop-shadow(0 6px 16px rgba(var(--gold-rgb), 0.24));
}

.logo-mark {
    height: 32px;
    width: auto;
    transition: transform 0.24s var(--ease), filter 0.24s var(--ease);
}

.desktop-nav {
    margin-left: 6px;
}

.desktop-nav ul {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 6px;
    list-style: none;
}

.nav-link {
    text-decoration: none;
    color: var(--text-2);
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0.01em;
    padding: 8px 14px;
    border-radius: 999px;
    position: relative;
    transition: color 0.22s var(--ease), background 0.22s var(--ease), transform 0.22s var(--ease);
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 6px;
    height: 1px;
    border-radius: 999px;
    background: rgba(var(--gold-rgb), 0.6);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.22s var(--ease);
}

.nav-link:hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-1px);
}

.nav-link:hover::after,
.nav-link.is-active::after {
    transform: scaleX(1);
}

.nav-link.is-active {
    color: var(--text);
    background: rgba(var(--gold-rgb), 0.18);
    border: 1px solid rgba(var(--gold-rgb), 0.28);
}

.nav-actions {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-utility-link {
    color: var(--text-2);
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.01em;
    padding: 8px 10px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.03);
    transition: color 0.2s var(--ease), border-color 0.2s var(--ease), background 0.2s var(--ease);
}

.nav-utility-link:hover {
    color: var(--text);
    border-color: rgba(var(--gold-rgb), 0.34);
    background: rgba(var(--gold-rgb), 0.1);
}

.site-header .btn-sm {
    font-size: 10px;
    padding: 7px 11px;
    border-radius: 999px;
}

.site-header .btn {
    text-transform: none;
    letter-spacing: 0.01em;
    font-family: var(--font-ui);
}

.mobile-toggle {
    margin-left: auto;
    display: none;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.04);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    position: relative;
}

.mobile-toggle span {
    position: absolute;
    width: 18px;
    height: 2px;
    border-radius: 2px;
    background: var(--gold-2);
    transition: transform 0.25s var(--ease), opacity 0.25s var(--ease), top 0.25s var(--ease);
}

.mobile-toggle span:nth-child(1) { top: 14px; }
.mobile-toggle span:nth-child(2) { top: 20px; }
.mobile-toggle span:nth-child(3) { top: 26px; }

.mobile-toggle.is-active span:nth-child(1) {
    top: 20px;
    transform: rotate(45deg);
}

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

.mobile-toggle.is-active span:nth-child(3) {
    top: 20px;
    transform: rotate(-45deg);
}

.mobile-panel {
    position: fixed;
    top: 84px;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    width: min(1160px, calc(100% - 1.6rem));
    padding: 12px;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background: rgba(16, 11, 8, 0.84);
    backdrop-filter: blur(26px) saturate(165%);
    -webkit-backdrop-filter: blur(26px) saturate(165%);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0.25s;
}

.mobile-panel.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.mobile-links {
    display: grid;
    gap: 6px;
}

.mobile-links a {
    text-decoration: none;
    color: var(--text-2);
    font-weight: 600;
    padding: 12px 14px;
    border-radius: 10px;
}

.mobile-links a:hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.06);
}

.mobile-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 10px;
}

.mobile-action {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    border-radius: 10px;
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.01em;
    transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), border-color 0.2s var(--ease), background 0.2s var(--ease), color 0.2s var(--ease);
}

.mobile-action:hover {
    transform: translateY(-1px);
}

.mobile-action-primary {
    color: #050505;
    background: linear-gradient(135deg, #ffe0af 0%, #ffc66d 48%, #ec9c33 100%);
    box-shadow: 0 6px 16px rgba(var(--gold-rgb), 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.mobile-action-ghost {
    color: #dbe5ef;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.015));
}

.mobile-action-ghost:hover {
    color: #eef4fb;
    border-color: rgba(255, 255, 255, 0.28);
}

.btn {
    appearance: none;
    border: 0;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    white-space: nowrap;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0.01em;
    border-radius: 11px;
    padding: 12px 18px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease), border-color 0.2s var(--ease);
}

.btn:hover {
    transform: translateY(-1px);
}

.btn:active {
    transform: translateY(0);
}

.btn-primary {
    color: #050505;
    background: linear-gradient(135deg, #ffe0af 0%, #ffc66d 48%, #ec9c33 100%);
    box-shadow: 0 8px 20px rgba(var(--gold-rgb), 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.btn-primary::after {
    content: "";
    position: absolute;
    top: -120%;
    left: -28%;
    width: 34%;
    height: 340%;
    transform: rotate(26deg);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.45), rgba(255, 255, 255, 0));
    transition: left 0.55s var(--ease-out);
}

.btn-primary:hover {
    box-shadow: 0 10px 24px rgba(var(--gold-rgb), 0.3), 0 2px 8px rgba(var(--gold-rgb), 0.16);
}

.btn-primary:hover::after {
    left: 112%;
}

.hero .btn-primary,
.final-cta .btn-primary {
    animation: ctaBreath 3.8s ease-in-out infinite;
}

.hero .btn-primary:hover,
.final-cta .btn-primary:hover {
    animation-play-state: paused;
}

@keyframes ctaBreath {
    0%, 100% {
        box-shadow: 0 8px 20px rgba(var(--gold-rgb), 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.35);
    }
    50% {
        box-shadow: 0 12px 28px rgba(var(--gold-rgb), 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.35);
    }
}

.btn-ghost {
    color: var(--text);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--line-strong);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.08);
}

.btn-soft {
    color: var(--text-2);
    background: transparent;
    border: 1px solid transparent;
}

.btn-soft:hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.08);
}

.btn-sm {
    font-size: 12px;
    padding: 10px 14px;
    border-radius: 10px;
}

.btn-lg {
    font-size: 14px;
    padding: 15px 24px;
}

.hero {
    position: relative;
    min-height: clamp(500px, 74vh, 680px);
    display: grid;
    align-items: center;
    overflow: hidden;
    padding: 30px 0 30px;
    background:
        linear-gradient(108deg, rgba(7, 5, 3, 0.9) 12%, rgba(7, 5, 3, 0.68) 46%, rgba(7, 5, 3, 0.9) 100%),
        linear-gradient(180deg, rgba(7, 5, 3, 0.72) 0%, rgba(7, 5, 3, 0.18) 46%, rgba(7, 5, 3, 0.78) 100%),
        image-set(
            url("../images/backgrounds/81e1465f-7db4-4c76-8eeb-1129622c2340.webp") type("image/webp"),
            url("../images/backgrounds/81e1465f-7db4-4c76-8eeb-1129622c2340.png") type("image/png")
        );
    background-size: auto, auto, cover;
    background-position: center, center, 62% 52%;
    background-repeat: no-repeat;
}

.hero-grid-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 34px 34px;
    opacity: 0.24;
    animation: gridDrift 18s linear infinite;
}

.hero-grid-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 72% 64% at 50% 42%, rgba(0, 0, 0, 0) 28%, rgba(8, 6, 4, 0.7) 100%);
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.orb-1 {
    width: 760px;
    height: 760px;
    top: -20%;
    left: 34%;
    background: radial-gradient(circle, rgba(var(--gold-rgb), 0.14) 0%, transparent 70%);
    animation: orbFloat1 18s ease-in-out infinite alternate;
}

.orb-2 {
    width: 520px;
    height: 520px;
    top: 10%;
    right: -8%;
    background: radial-gradient(circle, rgba(214, 138, 61, 0.11) 0%, transparent 68%);
    animation: orbFloat2 22s ease-in-out infinite alternate;
}

.orb-3 {
    width: 500px;
    height: 500px;
    bottom: -14%;
    left: -5%;
    background: radial-gradient(circle, rgba(var(--gold-rgb), 0.06) 0%, transparent 72%);
    animation: orbFloat3 20s ease-in-out infinite alternate;
}

@keyframes gridDrift {
    from { background-position: 0 0; }
    to { background-position: 32px 32px; }
}

@keyframes glassSweep {
    from { background-position: 180% 0; }
    to { background-position: -40% 0; }
}

@keyframes orbFloat1 {
    from { transform: translate(0, 0) scale(1); }
    to { transform: translate(36px, 32px) scale(1.16); }
}

@keyframes orbFloat2 {
    from { transform: translate(0, 0) scale(1); }
    to { transform: translate(-26px, 20px) scale(1.1); }
}

@keyframes orbFloat3 {
    from { transform: translate(0, 0) scale(1); }
    to { transform: translate(20px, -26px) scale(1.12); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    margin: 0;
}

.hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 304px;
    gap: 24px;
    align-items: center;
}

.hero-main {
    max-width: 720px;
    text-align: left;
}

.hero-main .hero-actions,
.hero-main .trust-pills {
    justify-content: flex-start;
}

.hero-main .hero-sub,
.hero-main .hero-note {
    margin-left: 0;
    margin-right: 0;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 16px;
    border-radius: 999px;
    border: 1px solid rgba(var(--gold-rgb), 0.22);
    background: rgba(var(--gold-rgb), 0.1);
    color: var(--gold-2);
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 18px;
}

.dot-live {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 10px rgba(23, 192, 143, 0.6);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.35; }
}

.hero h1,
.section h2,
.page-hero h1,
.page-hero h2 {
    font-family: var(--font-display);
    line-height: 1.06;
}

.hero h1 {
    margin: 0;
    font-size: clamp(38px, 5.6vw, 66px);
    letter-spacing: -0.04em;
}

.accent {
    font-family: var(--font-display);
    font-style: normal;
    font-weight: 700;
    letter-spacing: -0.01em;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-2) 50%, var(--gold) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 7s linear infinite;
}

@keyframes shimmer {
    from { background-position: 0% center; }
    to { background-position: 200% center; }
}

.hero-sub {
    margin: 14px auto 0;
    max-width: 58ch;
    font-size: clamp(15px, 1.8vw, 18px);
    color: var(--text-2);
}

.hero-actions {
    margin-top: 22px;
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-actions .btn-primary,
.final-cta .hero-actions .btn-primary {
    min-width: 196px;
}

.hero-actions .btn-ghost,
.final-cta .hero-actions .btn-ghost {
    color: var(--text-2);
    border-color: rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.02);
}

.hero-actions .btn-ghost:hover,
.final-cta .hero-actions .btn-ghost:hover {
    color: var(--text);
    border-color: rgba(var(--gold-rgb), 0.28);
    background: rgba(255, 255, 255, 0.08);
}

.hero-actions.is-tight {
    margin-top: 24px;
}

.hero-actions.is-roomy {
    margin-top: 28px;
}

.trust-pills {
    margin: 14px auto 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-2);
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.03);
    border-radius: 999px;
    padding: 7px 12px;
    transition: transform 0.22s var(--ease), border-color 0.22s var(--ease), background 0.22s var(--ease);
}

.trust-pill:hover {
    transform: translateY(-1px);
    border-color: var(--line-strong);
    background: rgba(255, 255, 255, 0.06);
}

.trust-pill svg {
    width: 14px;
    height: 14px;
    color: var(--gold-2);
}

.hero-showcase {
    border: 1px solid var(--line);
    border-radius: calc(var(--radius) + 2px);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.01));
    box-shadow: var(--shadow-soft);
    padding: 16px;
    animation: showcaseFloat 7s ease-in-out infinite;
}

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

.hero-showcase-card {
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    padding: 12px;
}

.hero-showcase-kicker {
    margin: 0;
    color: var(--text-3);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 700;
}

.hero-showcase-card ul {
    margin: 10px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
}

.hero-showcase-card li {
    color: var(--text-2);
    font-size: 13px;
    padding-left: 16px;
    position: relative;
}

.hero-showcase-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold-2);
}

.hero-showcase-logos {
    margin-top: 12px;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 10px 0;
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
}

.hero-showcase-logos::before,
.hero-showcase-logos::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 18px;
    pointer-events: none;
    z-index: 1;
}

.hero-showcase-logos::before {
    left: 0;
    background: linear-gradient(90deg, rgba(16, 12, 9, 0.95), rgba(16, 12, 9, 0));
}

.hero-showcase-logos::after {
    right: 0;
    background: linear-gradient(270deg, rgba(16, 12, 9, 0.95), rgba(16, 12, 9, 0));
}

.hero-logo-track {
    display: flex;
    width: max-content;
    animation: heroLogoMarquee 20s linear infinite;
}

.hero-showcase-logos:hover .hero-logo-track {
    animation-play-state: paused;
}

.hero-logo-set {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0 12px;
}

.hero-app-logo {
    width: 56px;
    height: 17px;
    object-fit: contain;
    opacity: 0.68;
    filter: grayscale(1) brightness(1.1) contrast(0.95);
}

@keyframes heroLogoMarquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@media (max-width: 1120px) {
    .hero-layout {
        grid-template-columns: 1fr;
    }

    .hero-showcase {
        display: none;
    }

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

    .page-hero-side {
        display: none;
    }
}

.section {
    position: relative;
    isolation: isolate;
    padding: var(--space-section) 0;
}

.section > .shell {
    position: relative;
    z-index: 1;
}

.section::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(var(--gold-rgb), 0.16), rgba(255, 255, 255, 0));
    pointer-events: none;
    z-index: 0;
    opacity: 0.85;
}

.section.alt {
    position: relative;
    background: transparent;
}

.section.alt::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background:
        radial-gradient(900px 420px at 10% 18%, rgba(194, 126, 53, 0.06), transparent 75%),
        radial-gradient(900px 420px at 90% 82%, rgba(var(--gold-rgb), 0.05), transparent 75%),
        linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.015) 20%, rgba(255, 255, 255, 0.008) 50%, rgba(255, 255, 255, 0.015) 80%, rgba(255, 255, 255, 0) 100%);
    mask-image: linear-gradient(180deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
}

.section-head {
    text-align: center;
    margin-bottom: 50px;
}

.kicker {
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(var(--gold-rgb), 0.18);
    background: rgba(var(--gold-rgb), 0.09);
    color: var(--gold-2);
    border-radius: 999px;
    padding: 7px 12px;
    margin-bottom: 14px;
    font-family: var(--font-display);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 800;
}

.section h2 {
    margin: 0;
    font-size: clamp(30px, 4.2vw, 50px);
    letter-spacing: -0.03em;
}

.section-head p {
    margin: 14px auto 0;
    max-width: 58ch;
    color: var(--text-2);
    font-size: 16px;
}

.proof-row {
    padding: 28px 0 0;
}

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

.proof-card {
    border: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.012));
    border-radius: 14px;
    padding: 20px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.proof-card b {
    display: block;
    font-size: 15px;
    line-height: 1.3;
    margin-bottom: 5px;
}

.proof-card span {
    font-size: 12px;
    color: var(--text-2);
}

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

.step-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.012)), var(--bg-soft);
    padding: 28px;
    text-align: center;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.step-index {
    width: 74px;
    height: 74px;
    margin: 0 auto 18px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    border: 2px solid rgba(var(--gold-rgb), 0.25);
    background: rgba(var(--gold-rgb), 0.09);
    color: var(--gold-2);
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 800;
}

.step-card h3 {
    margin: 0 0 8px;
    font-size: 20px;
    font-family: var(--font-display);
}

.step-card p {
    margin: 0;
    color: var(--text-2);
}

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

.feature-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.012)), var(--bg-soft);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px;
    position: relative;
    overflow: hidden;
    transition: transform 0.24s var(--ease), box-shadow 0.24s var(--ease), border-color 0.24s var(--ease);
}

.feature-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.02), transparent 55%);
    pointer-events: none;
}

.feature-card::before {
    content: none;
    position: absolute;
    inset: 0;
    border-radius: var(--radius);
    padding: 1px;
    background: conic-gradient(from var(--border-angle, 0deg), transparent 28%, rgba(var(--gold-rgb), 0.45) 50%, transparent 72%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s var(--ease);
}

.feature-card:hover {
    transform: translateY(-2px);
    border-color: var(--line-strong);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.24);
}

.proof-card,
.step-card,
.testimonial-card,
.support-card,
.panel-card,
.device-card,
.timeline-item,
.faq-item {
    transition: transform 0.26s var(--ease), box-shadow 0.26s var(--ease), border-color 0.26s var(--ease), background 0.26s var(--ease);
}

.proof-card:hover,
.step-card:hover,
.testimonial-card:hover,
.support-card:hover,
.panel-card:hover,
.device-card:hover,
.timeline-item:hover,
.faq-item:hover {
    transform: translateY(-2px);
    border-color: var(--line-strong);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.24);
}

.feature-card.wide {
    grid-column: span 2;
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(var(--gold-rgb), 0.18);
    background: rgba(var(--gold-rgb), 0.1);
    margin-bottom: 18px;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    color: var(--gold-2);
    stroke: currentColor;
    fill: none;
}

.feature-card h3 {
    margin: 0 0 10px;
    font-size: 20px;
}

.feature-card p {
    margin: 0;
    color: var(--text-2);
}

.mini-tags {
    margin-top: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.mini-tags span {
    font-size: 10px;
    font-weight: 700;
    color: var(--text-3);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 4px 8px;
}

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

.stats-card {
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 20px;
    text-align: center;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.012)), var(--bg-soft);
}

.stats-value {
    font-family: var(--font-display);
    font-size: clamp(30px, 4vw, 42px);
    line-height: 1;
    color: var(--gold-2);
    font-weight: 800;
}

.stats-label {
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 11px;
    color: var(--text-3);
    font-weight: 600;
}

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

.device-card {
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.012)), var(--bg-soft);
    padding: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.device-card svg {
    width: 24px;
    height: 24px;
    color: var(--gold-2);
    stroke: currentColor;
    fill: none;
    flex-shrink: 0;
}

.device-card span {
    font-size: 13px;
    color: var(--text-2);
    font-weight: 600;
}

.compare-wrap {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow-x: auto;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.01)), var(--bg-soft);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}

.compare-wrap::-webkit-scrollbar {
    height: 8px;
}

.compare-wrap::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.04);
}

.compare-wrap::-webkit-scrollbar-thumb {
    background: rgba(var(--gold-rgb), 0.42);
    border-radius: 999px;
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 620px;
}

.compare-table th,
.compare-table td {
    padding: 15px 18px;
    border-bottom: 1px solid var(--line);
    text-align: left;
    font-size: 14px;
}

.compare-table th {
    font-size: 11px;
    color: var(--text-3);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.compare-note {
    margin: 14px 6px 0;
    color: var(--text-3);
    font-size: 12px;
    text-align: center;
}

.compare-table th.col-main {
    color: var(--gold-2);
}

.compare-table td.col-main {
    background: rgba(var(--gold-rgb), 0.09);
    font-weight: 700;
}

.yes {
    color: var(--green);
    font-weight: 700;
}

.no {
    color: #8c96a4;
}

.pricing-widget {
    max-width: 1060px;
    margin: 0 auto;
}

.plan-tabs {
    display: flex;
    justify-content: center;
    gap: 6px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 5px;
    width: fit-content;
    margin: 0 auto 28px;
}

.plan-tab {
    border: 0;
    border-radius: 10px;
    padding: 10px 16px;
    background: transparent;
    color: var(--text-3);
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: color 0.2s var(--ease), background 0.2s var(--ease), transform 0.2s var(--ease);
}

.plan-tab:hover {
    color: var(--text-2);
    transform: translateY(-1px);
}

.plan-tab.is-active {
    background: linear-gradient(135deg, var(--gold), var(--gold-2));
    color: #050505;
}

.plan-badge {
    margin-left: 6px;
    border-radius: 6px;
    font-size: 10px;
    background: rgba(23, 192, 143, 0.2);
    color: var(--green);
    padding: 2px 6px;
}

.plan-tab.is-active .plan-badge {
    color: #111;
    background: rgba(17, 17, 17, 0.22);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    transition: opacity 0.25s var(--ease);
}

.pricing-grid.is-fading {
    opacity: 0;
}

.plan-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.01)), var(--bg-soft);
    padding: 26px 20px;
    text-align: center;
    position: relative;
    transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease), border-color 0.28s var(--ease);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.plan-card:hover {
    transform: translateY(-2px);
    border-color: var(--line-strong);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.24);
}

.plan-card.is-featured {
    border: 2px solid var(--gold);
    background: linear-gradient(180deg, rgba(var(--gold-rgb), 0.18), rgba(255, 255, 255, 0.015) 48%), var(--bg-soft);
    box-shadow: 0 16px 38px rgba(var(--gold-rgb), 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.plan-card.is-featured::after {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    border: 1px solid rgba(var(--gold-rgb), 0.42);
    opacity: 0.42;
    pointer-events: none;
    animation: featuredPulse 3.2s ease-in-out infinite;
}

@keyframes featuredPulse {
    0%, 100% {
        opacity: 0.34;
        transform: scale(1);
    }
    50% {
        opacity: 0.58;
        transform: scale(1.008);
    }
}

.plan-pop {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 999px;
    background: linear-gradient(135deg, var(--gold), var(--gold-2));
    color: #050505;
    font-size: 10px;
    padding: 5px 12px;
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 800;
}

.plan-name {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
}

.plan-sub {
    margin: 4px 0 16px;
    color: var(--text-3);
    font-size: 12px;
}

.plan-price {
    margin: 0;
    font-size: 40px;
    line-height: 1;
    letter-spacing: -0.04em;
    font-family: var(--font-display);
    color: var(--gold-2);
}

.plan-term {
    margin: 6px 0 18px;
    font-size: 12px;
    color: var(--text-3);
}

.plan-card .btn {
    width: 100%;
}

.plan-feats {
    list-style: none;
    margin: 18px 0 0;
    padding: 14px 0 0;
    border-top: 1px solid var(--line);
    text-align: left;
}

.plan-feats li {
    position: relative;
    padding: 7px 0 7px 22px;
    color: var(--text-2);
    font-size: 13px;
}

.plan-feats li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    top: 7px;
    color: var(--green);
    font-weight: 800;
}

.pricing-meta {
    margin-top: 18px;
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.pricing-meta span {
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 6px 10px;
    color: var(--text-3);
    font-size: 12px;
    background: rgba(255, 255, 255, 0.02);
}

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

.testimonial-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.01)), var(--bg-soft);
    padding: 24px;
    display: flex;
    flex-direction: column;
}

.stars {
    color: var(--gold-2);
    letter-spacing: 0.2em;
    font-size: 13px;
    margin-bottom: 12px;
}

.quote {
    margin: 0;
    color: var(--text-2);
    font-size: 15px;
    line-height: 1.7;
    flex: 1;
}

.author {
    margin-top: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.avatar {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--gold), var(--gold-2));
    color: #050505;
    display: grid;
    place-items: center;
    font-family: var(--font-display);
    font-weight: 800;
}

.author-name {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
}

.author-meta {
    margin: 2px 0 0;
    color: var(--text-3);
    font-size: 12px;
}

.faq-list {
    max-width: 820px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--line);
    border-radius: 12px;
    margin-bottom: 10px;
    padding: 0 16px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
}

.faq-item.is-open {
    border-color: rgba(var(--gold-rgb), 0.28);
    background: linear-gradient(180deg, rgba(var(--gold-rgb), 0.09), rgba(255, 255, 255, 0.01));
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

.faq-question {
    width: 100%;
    border: 0;
    background: transparent;
    color: var(--text);
    text-align: left;
    padding: 20px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
}

.faq-question span {
    transition: transform 0.22s var(--ease), color 0.22s var(--ease);
}

.faq-question svg {
    width: 22px;
    height: 22px;
    opacity: 0.45;
    transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
    flex-shrink: 0;
}

.faq-question:hover {
    color: var(--gold-2);
}

.faq-question:hover span {
    transform: translateX(2px);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-6px);
    transition: max-height 0.35s var(--ease), opacity 0.28s var(--ease), transform 0.28s var(--ease);
}

.faq-answer p {
    margin: 0;
    padding: 0 0 18px;
    color: var(--text-2);
    font-size: 14px;
}

.faq-item.is-open .faq-question svg {
    transform: rotate(180deg);
    opacity: 1;
    color: var(--gold-2);
}

.faq-item.is-open .faq-question span {
    color: var(--text);
    transform: translateX(2px);
}

.faq-item.is-open .faq-answer {
    max-height: 560px;
    opacity: 1;
    transform: translateY(0);
}

.page-hero {
    position: relative;
    overflow: hidden;
    padding: 22px 0 10px;
}

.page-hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 276px;
    gap: 16px;
    align-items: stretch;
}

.page-hero .hero-content {
    text-align: left;
    margin: 0;
    max-width: 900px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: calc(var(--radius) + 2px);
    background:
        radial-gradient(680px 260px at 100% 0%, rgba(var(--gold-rgb), 0.1), transparent 68%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.008));
    box-shadow: var(--shadow-soft);
}

.page-hero-side {
    border: 1px solid var(--line);
    border-radius: calc(var(--radius) + 2px);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
    box-shadow: var(--shadow-soft);
    padding: 16px;
}

.page-hero-side-title {
    margin: 0;
    color: var(--text-3);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 700;
}

.page-hero-side ul {
    margin: 12px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
}

.page-hero-side li {
    color: var(--text-2);
    font-size: 13px;
    padding-left: 16px;
    position: relative;
}

.page-hero-side li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.52em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold-2);
}

.page-hero h1 {
    margin: 0;
    font-size: clamp(32px, 4.8vw, 50px);
    letter-spacing: -0.03em;
}

.page-hero p {
    margin: 14px 0 0;
    max-width: 60ch;
    color: var(--text-2);
    font-size: 16px;
}

.page-hero-meta {
    margin: 12px 0 0;
    color: var(--text-3);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
}

.page-hero .hero-actions {
    justify-content: flex-start;
}

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

.panel-card {
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.012)), var(--bg-soft);
    padding: 20px;
}

.panel-card h3 {
    margin: 0 0 7px;
    font-size: 18px;
}

.panel-card p {
    margin: 0;
    color: var(--text-2);
    font-size: 14px;
}

.panel-card ul {
    margin: 12px 0 0;
    padding: 0;
    list-style: none;
}

.panel-card li {
    position: relative;
    padding: 6px 0 6px 20px;
    color: var(--text-2);
    font-size: 13px;
}

.panel-card li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: var(--green);
}

.timeline {
    display: grid;
    gap: 12px;
}

.timeline-item {
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.01)), var(--bg-soft);
    padding: 16px 18px;
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 14px;
}

.timeline-label {
    color: var(--gold-2);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.timeline-copy p {
    margin: 0;
    color: var(--text-2);
    font-size: 14px;
}

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

.support-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.01)), var(--bg-soft);
    padding: 22px;
}

.support-card h3 {
    margin: 0 0 7px;
    font-size: 20px;
}

.support-card p {
    margin: 0;
    color: var(--text-2);
}

.support-card .btn {
    margin-top: 16px;
}

.checklist {
    display: grid;
    gap: 8px;
}

.check-item {
    border: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.048), rgba(255, 255, 255, 0.01)), var(--bg-soft);
    border-radius: 10px;
    padding: 10px 12px;
    color: var(--text-2);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.check-item svg {
    width: 16px;
    height: 16px;
    color: var(--green);
    stroke: currentColor;
    fill: none;
    flex-shrink: 0;
}

.final-cta {
    text-align: center;
}

.final-cta p {
    margin: 12px auto 0;
    max-width: 680px;
    color: var(--text-2);
}

.final-cta .hero-actions {
    margin-top: 26px;
}

.final-guarantees {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.final-guarantees span {
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.03);
    border-radius: 999px;
    padding: 6px 10px;
    color: var(--text-2);
    font-size: 12px;
}

.site-footer {
    margin-top: 20px;
    border-top: 1px solid var(--line);
    padding: 56px 0 28px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 24px;
}

.footer-brand img {
    height: 30px;
    width: auto;
}

.footer-brand p {
    margin: 14px 0 0;
    color: var(--text-3);
    max-width: 300px;
    font-size: 14px;
}

.footer-col h3 {
    margin: 0 0 10px;
    color: var(--text-3);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer-col a {
    display: block;
    color: var(--text-2);
    font-size: 14px;
    text-decoration: none;
    padding: 4px 0;
    position: relative;
    width: fit-content;
}

.footer-col a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: rgba(var(--gold-rgb), 0.6);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.22s var(--ease);
}

.footer-col a:hover {
    color: var(--gold-2);
}

.footer-col a:hover::after {
    transform: scaleX(1);
}

.footer-bottom {
    margin-top: 26px;
    border-top: 1px solid var(--line);
    padding-top: 18px;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    color: var(--text-3);
    font-size: 13px;
}

.footer-bottom a {
    color: inherit;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: var(--text-2);
}

.floating-cta {
    position: fixed;
    left: 50%;
    bottom: 22px;
    transform: translateX(-50%) translateY(120px);
    z-index: 400;
    padding: 10px 10px 10px 16px;
    border: 1px solid var(--line-strong);
    border-radius: 12px;
    background: rgba(11, 15, 22, 0.94);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.44);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.35s var(--ease-out);
}

.floating-cta.is-visible {
    transform: translateX(-50%) translateY(0);
    animation: ctaGlow 3.4s ease-in-out infinite;
}

.floating-cta span {
    color: var(--text-2);
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

.reveal {
    opacity: 0;
    transform: translateY(20px) scale(0.985);
    filter: blur(2px);
    transition: opacity 0.66s var(--ease-out), transform 0.66s var(--ease-out), filter 0.5s var(--ease);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

@keyframes ctaGlow {
    0%, 100% {
        box-shadow: 0 18px 42px rgba(0, 0, 0, 0.44);
    }
    50% {
        box-shadow: 0 22px 52px rgba(0, 0, 0, 0.46), 0 0 0 1px rgba(var(--gold-rgb), 0.22);
    }
}

@media (max-width: 1080px) {
    .pricing-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .feature-grid,
    .support-grid,
    .panel-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .feature-card.wide {
        grid-column: span 2;
    }

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

    .proof-card:nth-child(1),
    .proof-card:nth-child(4) {
        grid-column: span 2;
    }

    .proof-card:nth-child(2),
    .proof-card:nth-child(3) {
        grid-column: span 1;
    }

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

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

@media (max-width: 920px) {
    .desktop-nav,
    .nav-actions {
        display: none;
    }

    .mobile-toggle {
        display: inline-flex;
    }

    .hero {
        min-height: auto;
        padding: 26px 0 26px;
        background-position: center, center, 68% 48%;
    }

    .hero-content {
        text-align: left;
    }

    .hero-actions,
    .trust-pills {
        justify-content: flex-start;
        margin-left: 0;
        margin-right: 0;
    }

    .hero-note {
        margin-left: 0;
        margin-right: 0;
        text-align: left;
    }

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

    .page-hero-side {
        display: none;
    }

    .section {
        padding: var(--space-section-mobile) 0;
    }

    .steps-grid,
    .testimonial-grid,
    .stats-grid,
    .device-grid {
        grid-template-columns: 1fr;
    }

    .feature-grid,
    .panel-grid,
    .support-grid {
        grid-template-columns: 1fr;
    }

    .feature-card.wide {
        grid-column: span 1;
    }

    .timeline-item {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .floating-cta {
        left: 0.7rem;
        right: 0.7rem;
        bottom: 12px;
        width: auto;
        transform: translateY(120px);
        justify-content: space-between;
        padding: 10px;
        border-radius: 12px;
        gap: 8px;
    }

    .floating-cta.is-visible {
        transform: translateY(0);
    }

    .floating-cta span {
        font-size: 11px;
        white-space: normal;
    }

}

@media (max-width: 620px) {
    .shell {
        width: min(1160px, calc(100% - 1.4rem));
    }

    .page {
        padding-top: 92px;
    }

    .site-header {
        top: 10px;
    }

    .section {
        padding: 56px 0;
    }

    .section-head {
        margin-bottom: 38px;
    }

    .section-head p {
        margin-top: 12px;
        font-size: 15px;
    }

    .page-hero {
        padding: 20px 0 8px;
    }

    .page-hero .hero-content {
        padding: 24px;
    }

    .section::before {
        opacity: 0.55;
    }

    .page-hero p {
        font-size: 16px;
    }

    .page-hero-meta {
        font-size: 10px;
    }

    .hero-sub {
        font-size: 16px;
    }

    .hero h1 {
        letter-spacing: -0.03em;
    }

    .hero {
        background-position: center, center, 74% 42%;
    }

    .hero-actions {
        margin-top: 20px;
        gap: 10px;
        flex-direction: column;
    }

    .hero-actions.is-tight,
    .hero-actions.is-roomy {
        margin-top: 20px;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .trust-pill {
        width: 100%;
        justify-content: center;
    }

    .plan-tabs {
        width: 100%;
        flex-wrap: wrap;
    }

    .plan-tab {
        flex: 1 1 calc(50% - 4px);
        text-align: center;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .step-card,
    .feature-card,
    .plan-card,
    .testimonial-card,
    .support-card {
        padding: 20px;
    }

    .panel-card {
        padding: 18px;
    }

    .check-item {
        align-items: flex-start;
    }

    .faq-question {
        font-size: 15px;
        padding: 18px 0;
    }

    .faq-answer p {
        padding: 0 0 18px;
    }

    .compare-table {
        min-width: 560px;
    }

    .compare-table th,
    .compare-table td {
        padding: 12px;
        font-size: 13px;
    }

    .compare-table th {
        font-size: 10px;
    }

    .pricing-meta {
        margin-top: 14px;
        gap: 8px;
    }

    .pricing-meta span {
        font-size: 11px;
    }

    .proof-grid {
        grid-template-columns: 1fr;
    }

    .proof-card:nth-child(1),
    .proof-card:nth-child(2),
    .proof-card:nth-child(3),
    .proof-card:nth-child(4) {
        grid-column: span 1;
    }

    .mobile-actions {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .site-footer {
        padding: 44px 0 22px;
    }

}

@media (max-width: 480px) {
    body::before {
        display: none;
    }

    .orb-2,
    .orb-3 {
        display: none;
    }

    .orb-1 {
        width: 460px;
        height: 460px;
        left: 36%;
        filter: blur(72px);
    }

    .nav-shell {
        min-height: 56px;
        padding: 8px 8px 8px 14px;
    }

    .page-hero .hero-content {
        padding: 18px;
    }

    .section::before {
        opacity: 0.45;
    }
}

/* SaaS Polish Pass */

.site-header {
    border-radius: 14px;
    border-color: rgba(255, 255, 255, 0.16);
    background: rgba(21, 14, 9, 0.72);
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
}

.site-header::after {
    display: none;
}

.site-header.is-scrolled {
    background: rgba(17, 12, 8, 0.84);
}

.hero-layout {
    align-items: center;
}

.hero h1 {
    font-size: clamp(40px, 5.6vw, 70px);
    line-height: 1.04;
}

.hero-sub {
    max-width: 62ch;
}

.kicker {
    font-size: 11px;
    letter-spacing: 0.13em;
}

.section h2 {
    line-height: 1.08;
    letter-spacing: -0.034em;
    text-wrap: balance;
}

.section-head p {
    max-width: 60ch;
    line-height: 1.72;
}

:where(.step-card h3, .feature-card h3, .support-card h3, .panel-card h3, .device-card h3, .faq-question span) {
    letter-spacing: -0.018em;
    line-height: 1.24;
}

:where(.step-card p, .feature-card p, .support-card p, .panel-card p, .device-card p, .timeline-item p, .faq-answer p, .quote) {
    line-height: 1.68;
}

.hero-showcase-card {
    background: linear-gradient(180deg, rgba(255, 238, 214, 0.14), rgba(255, 238, 214, 0.05));
    border-color: rgba(var(--gold-rgb), 0.28);
}

.proof-row {
    margin-top: 4px;
    padding-top: 12px;
}

.proof-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 14px;
    grid-auto-flow: row dense;
}

.proof-card {
    border-color: rgba(var(--gold-rgb), 0.18);
    background: linear-gradient(180deg, rgba(255, 236, 210, 0.12), rgba(255, 236, 210, 0.04));
    padding: 22px;
}

.proof-card:nth-child(1) {
    grid-column: span 7;
    background: linear-gradient(180deg, rgba(255, 236, 210, 0.16), rgba(255, 236, 210, 0.05));
    border-color: rgba(var(--gold-rgb), 0.24);
}

.proof-card:nth-child(2) {
    grid-column: span 5;
}

.proof-card:nth-child(3) {
    grid-column: span 4;
}

.proof-card:nth-child(4) {
    grid-column: span 8;
}

.proof-card b {
    letter-spacing: -0.015em;
}

.proof-card:nth-child(1) b {
    font-size: clamp(19px, 2.3vw, 24px);
    line-height: 1.16;
    margin-bottom: 8px;
}

.proof-note {
    margin: 10px 0 0;
    color: var(--gold-2);
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
}

.section-head {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 44px;
}

.step-card,
.feature-card,
.plan-card,
.testimonial-card,
.support-card,
.panel-card,
.device-card,
.timeline-item,
.faq-item,
.check-item {
    border-color: rgba(var(--gold-rgb), 0.18);
    background: linear-gradient(180deg, rgba(255, 235, 209, 0.11), rgba(255, 235, 209, 0.03));
}

.page-hero {
    position: relative;
    isolation: isolate;
    padding: 28px 0 16px;
}

.page-hero > .shell {
    position: relative;
    z-index: 1;
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background:
        radial-gradient(900px 420px at 10% 24%, rgba(var(--gold-rgb), 0.16), transparent 72%),
        radial-gradient(820px 380px at 88% 72%, rgba(194, 126, 53, 0.14), transparent 74%),
        linear-gradient(180deg, rgba(9, 6, 3, 0.76) 0%, rgba(9, 6, 3, 0.16) 40%, rgba(9, 6, 3, 0.72) 100%);
    opacity: 0.42;
}

.features-page .page-hero::before {
    background:
        linear-gradient(112deg, rgba(9, 6, 4, 0.9) 10%, rgba(9, 6, 4, 0.64) 48%, rgba(9, 6, 4, 0.88) 100%),
        linear-gradient(180deg, rgba(9, 6, 4, 0.64) 0%, rgba(9, 6, 4, 0.22) 42%, rgba(9, 6, 4, 0.78) 100%),
        image-set(
            url("../images/backgrounds/5e3fe049-365b-40ee-9cd5-364a9cfd53d7.webp") type("image/webp"),
            url("../images/backgrounds/5e3fe049-365b-40ee-9cd5-364a9cfd53d7.png") type("image/png")
        );
    background-size: auto, auto, cover;
    background-position: center, center, 58% 48%;
    background-repeat: no-repeat;
    opacity: 0.62;
}

.pricing-page .page-hero::before {
    background:
        linear-gradient(112deg, rgba(9, 6, 4, 0.9) 6%, rgba(9, 6, 4, 0.62) 44%, rgba(9, 6, 4, 0.84) 100%),
        linear-gradient(180deg, rgba(9, 6, 4, 0.64) 0%, rgba(9, 6, 4, 0.24) 42%, rgba(9, 6, 4, 0.76) 100%),
        image-set(
            url("../images/tech images/ChatGPT Image Feb 25, 2026, 07_09_53 AM.webp") type("image/webp"),
            url("../images/tech images/ChatGPT Image Feb 25, 2026, 07_09_53 AM.png") type("image/png")
        );
    background-size: auto, auto, cover;
    background-position: center, center, 62% 44%;
    background-repeat: no-repeat;
    opacity: 0.58;
}

.setup-page .page-hero::before {
    background:
        linear-gradient(112deg, rgba(9, 6, 4, 0.9) 8%, rgba(9, 6, 4, 0.66) 46%, rgba(9, 6, 4, 0.84) 100%),
        linear-gradient(180deg, rgba(9, 6, 4, 0.66) 0%, rgba(9, 6, 4, 0.24) 42%, rgba(9, 6, 4, 0.78) 100%),
        image-set(
            url("../images/tech images/2c2af657-b4e1-42d2-84ee-cd983dc0d672.webp") type("image/webp"),
            url("../images/tech images/2c2af657-b4e1-42d2-84ee-cd983dc0d672.png") type("image/png")
        );
    background-size: auto, auto, cover;
    background-position: center, center, 62% 45%;
    background-repeat: no-repeat;
    opacity: 0.62;
}

.faq-page .page-hero::before {
    background:
        linear-gradient(112deg, rgba(9, 6, 4, 0.9) 8%, rgba(9, 6, 4, 0.64) 44%, rgba(9, 6, 4, 0.8) 100%),
        linear-gradient(180deg, rgba(9, 6, 4, 0.7) 0%, rgba(9, 6, 4, 0.24) 42%, rgba(9, 6, 4, 0.82) 100%),
        image-set(
            url("../images/backgrounds/ChatGPT Image Feb 25, 2026, 06_47_34 AM.webp") type("image/webp"),
            url("../images/backgrounds/ChatGPT Image Feb 25, 2026, 06_47_34 AM.png") type("image/png")
        );
    background-size: auto, auto, cover;
    background-position: center, center, 62% 44%;
    background-repeat: no-repeat;
    opacity: 0.62;
}

.support-page .page-hero::before {
    background:
        linear-gradient(112deg, rgba(9, 6, 4, 0.9) 8%, rgba(9, 6, 4, 0.64) 44%, rgba(9, 6, 4, 0.84) 100%),
        linear-gradient(180deg, rgba(9, 6, 4, 0.66) 0%, rgba(9, 6, 4, 0.22) 42%, rgba(9, 6, 4, 0.78) 100%),
        image-set(
            url("../images/tech images/ChatGPT Image Feb 25, 2026, 07_12_17 AM.webp") type("image/webp"),
            url("../images/tech images/ChatGPT Image Feb 25, 2026, 07_12_17 AM.png") type("image/png")
        );
    background-size: auto, auto, cover;
    background-position: center, center, 56% 44%;
    background-repeat: no-repeat;
    opacity: 0.62;
}

.page-hero .orb,
.page-hero .orb-1,
.page-hero .orb-2,
.page-hero .orb-3 {
    display: none;
}

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

.page-hero .hero-content {
    max-width: 760px;
    border: 0;
    background: transparent;
    box-shadow: none;
    padding: 0;
}

.features-page .page-hero .hero-content,
.pricing-page .page-hero .hero-content,
.setup-page .page-hero .hero-content,
.faq-page .page-hero .hero-content,
.support-page .page-hero .hero-content {
    padding: 18px 22px;
    border: 1px solid rgba(var(--gold-rgb), 0.14);
    border-radius: calc(var(--radius) + 1px);
    background: linear-gradient(180deg, rgba(9, 6, 4, 0.66), rgba(9, 6, 4, 0.36));
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

.page-hero-side {
    display: none;
}

.page-hero h1 {
    font-size: clamp(34px, 4.5vw, 56px);
}

.page-hero p {
    max-width: 64ch;
}

.feature-grid {
    gap: 14px;
}

.plan-tabs {
    width: min(100%, 920px);
}

.plan-tab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex: 1 1 0;
    min-height: 40px;
    white-space: nowrap;
}

.plan-badge {
    margin-left: 0;
}

.plan-math {
    margin: 4px 0 10px;
    color: var(--text-3);
    font-size: 12px;
    line-height: 1.4;
}

.plan-save {
    margin: 0 0 12px;
    color: var(--green);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.4;
}

.pricing-convert-note {
    text-align: center;
    color: var(--text-3);
    margin-top: 14px;
    font-size: 13px;
}

.final-cta .section-head p {
    max-width: 62ch;
}

.site-footer {
    border-top-color: rgba(var(--gold-rgb), 0.2);
}

.floating-cta {
    border-color: rgba(var(--gold-rgb), 0.26);
    background: rgba(17, 12, 8, 0.94);
}

@media (max-width: 920px) {
    .hero {
        padding: 24px 0 18px;
    }

    .page-hero {
        padding: 20px 0 10px;
    }

    .page-hero::before {
        background:
            radial-gradient(560px 300px at 12% 20%, rgba(var(--gold-rgb), 0.18), transparent 72%),
            radial-gradient(520px 260px at 88% 82%, rgba(194, 126, 53, 0.14), transparent 74%),
            linear-gradient(180deg, rgba(9, 6, 3, 0.86) 0%, rgba(9, 6, 3, 0.26) 40%, rgba(9, 6, 3, 0.84) 100%);
    }

    .features-page .page-hero::before {
        background:
            linear-gradient(112deg, rgba(9, 6, 4, 0.92) 12%, rgba(9, 6, 4, 0.72) 52%, rgba(9, 6, 4, 0.88) 100%),
            linear-gradient(180deg, rgba(9, 6, 4, 0.74) 0%, rgba(9, 6, 4, 0.36) 44%, rgba(9, 6, 4, 0.84) 100%),
            image-set(
                url("../images/backgrounds/5e3fe049-365b-40ee-9cd5-364a9cfd53d7.webp") type("image/webp"),
                url("../images/backgrounds/5e3fe049-365b-40ee-9cd5-364a9cfd53d7.png") type("image/png")
            );
        background-size: auto, auto, cover;
        background-position: center, center, 66% 42%;
        background-repeat: no-repeat;
        opacity: 0.66;
    }

    .pricing-page .page-hero::before {
        background:
            linear-gradient(112deg, rgba(9, 6, 4, 0.92) 10%, rgba(9, 6, 4, 0.7) 50%, rgba(9, 6, 4, 0.86) 100%),
            linear-gradient(180deg, rgba(9, 6, 4, 0.74) 0%, rgba(9, 6, 4, 0.36) 44%, rgba(9, 6, 4, 0.84) 100%),
            image-set(
                url("../images/tech images/ChatGPT Image Feb 25, 2026, 07_09_53 AM.webp") type("image/webp"),
                url("../images/tech images/ChatGPT Image Feb 25, 2026, 07_09_53 AM.png") type("image/png")
            );
        background-size: auto, auto, cover;
        background-position: center, center, 64% 40%;
        background-repeat: no-repeat;
        opacity: 0.62;
    }

    .setup-page .page-hero::before {
        background:
            linear-gradient(112deg, rgba(9, 6, 4, 0.92) 10%, rgba(9, 6, 4, 0.72) 50%, rgba(9, 6, 4, 0.88) 100%),
            linear-gradient(180deg, rgba(9, 6, 4, 0.74) 0%, rgba(9, 6, 4, 0.34) 44%, rgba(9, 6, 4, 0.84) 100%),
            image-set(
                url("../images/tech images/2c2af657-b4e1-42d2-84ee-cd983dc0d672.webp") type("image/webp"),
                url("../images/tech images/2c2af657-b4e1-42d2-84ee-cd983dc0d672.png") type("image/png")
            );
        background-size: auto, auto, cover;
        background-position: center, center, 66% 40%;
        background-repeat: no-repeat;
        opacity: 0.66;
    }

    .faq-page .page-hero::before {
        background:
            linear-gradient(112deg, rgba(9, 6, 4, 0.9) 10%, rgba(9, 6, 4, 0.7) 48%, rgba(9, 6, 4, 0.84) 100%),
            linear-gradient(180deg, rgba(9, 6, 4, 0.78) 0%, rgba(9, 6, 4, 0.36) 44%, rgba(9, 6, 4, 0.86) 100%),
            image-set(
                url("../images/backgrounds/ChatGPT Image Feb 25, 2026, 06_47_34 AM.webp") type("image/webp"),
                url("../images/backgrounds/ChatGPT Image Feb 25, 2026, 06_47_34 AM.png") type("image/png")
            );
        background-size: auto, auto, cover;
        background-position: center, center, 70% 42%;
        background-repeat: no-repeat;
        opacity: 0.66;
    }

    .support-page .page-hero::before {
        background:
            linear-gradient(112deg, rgba(9, 6, 4, 0.92) 10%, rgba(9, 6, 4, 0.72) 48%, rgba(9, 6, 4, 0.88) 100%),
            linear-gradient(180deg, rgba(9, 6, 4, 0.76) 0%, rgba(9, 6, 4, 0.34) 44%, rgba(9, 6, 4, 0.84) 100%),
            image-set(
                url("../images/tech images/ChatGPT Image Feb 25, 2026, 07_12_17 AM.webp") type("image/webp"),
                url("../images/tech images/ChatGPT Image Feb 25, 2026, 07_12_17 AM.png") type("image/png")
            );
        background-size: auto, auto, cover;
        background-position: center, center, 64% 42%;
        background-repeat: no-repeat;
        opacity: 0.66;
    }

    .features-page .page-hero .hero-content,
    .pricing-page .page-hero .hero-content,
    .setup-page .page-hero .hero-content,
    .faq-page .page-hero .hero-content,
    .support-page .page-hero .hero-content {
        padding: 16px 16px 18px;
    }

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

    .proof-card:nth-child(1),
    .proof-card:nth-child(4) {
        grid-column: span 2;
    }

    .proof-card:nth-child(2),
    .proof-card:nth-child(3) {
        grid-column: span 1;
    }

    .plan-tab {
        flex: 1 1 calc(50% - 4px);
        padding: 9px 12px;
    }
}

/* Clean Visual Refresh */

/* Hero Consistency Pass */

:root {
    --hero-title-size: clamp(34px, 4.8vw, 56px);
    --hero-title-size-mobile: 34px;
    --hero-sub-size: 16px;
    --hero-shell-bg: linear-gradient(180deg, rgba(9, 6, 4, 0.66), rgba(9, 6, 4, 0.36));
    --hero-shell-border: 1px solid rgba(var(--gold-rgb), 0.14);
    --hero-shell-shadow: 0 14px 32px rgba(0, 0, 0, 0.24);
}

.orb,
.orb-1,
.orb-2,
.orb-3,
.page-hero .orb,
.page-hero .orb-1,
.page-hero .orb-2,
.page-hero .orb-3 {
    display: none !important;
}

.hero,
.page-hero {
    min-height: clamp(430px, 56vh, 520px);
    padding: 24px 0 16px;
}

.hero h1,
.page-hero h1 {
    font-size: var(--hero-title-size);
    line-height: 1.06;
    letter-spacing: -0.03em;
}

.hero-sub,
.page-hero p {
    font-size: var(--hero-sub-size);
    line-height: 1.7;
}

.hero .hero-content,
.page-hero .hero-content {
    max-width: 760px;
    padding: 18px 22px;
    border: var(--hero-shell-border);
    border-radius: calc(var(--radius) + 1px);
    background: var(--hero-shell-bg);
    box-shadow: var(--hero-shell-shadow);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

.hero-main {
    text-align: left;
}

.hero-main .hero-actions,
.hero-main .trust-pills {
    justify-content: flex-start;
}

.hero-main .hero-sub,
.hero-main .hero-note {
    margin-left: 0;
    margin-right: 0;
}

@media (max-width: 920px) {
    .hero,
    .page-hero {
        min-height: 0;
        padding: 20px 0 12px;
    }

    .hero h1,
    .page-hero h1 {
        font-size: var(--hero-title-size-mobile);
    }

    .hero .hero-content,
    .page-hero .hero-content {
        padding: 16px 16px 18px;
    }
}

.site-header {
    top: 10px;
    width: min(1140px, calc(100% - 1.4rem));
    border-radius: 18px;
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(17, 12, 8, 0.78);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.36);
}

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

.nav-shell {
    min-height: 58px;
    padding: 8px 10px 8px 14px;
}

.nav-link {
    font-size: 12px;
    border-radius: 10px;
    padding: 10px 13px;
}

.section {
    padding: clamp(68px, 7.4vw, 94px) 0;
}

.section-head {
    margin-bottom: 38px;
}

.section h2 {
    font-size: clamp(32px, 4vw, 48px);
}

.section-head p {
    margin-top: 12px;
    color: #c9d2dd;
    font-size: 15px;
}

.quick-jump-section {
    padding: 14px 0 0;
}

.quick-jump-section::before {
    display: none;
}

.quick-jump {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(var(--gold-rgb), 0.2);
    border-radius: 14px;
    padding: 9px;
    background: rgba(14, 10, 7, 0.72);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    position: sticky;
    top: 84px;
    z-index: 32;
}

.quick-jump a {
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--text-2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 8px 10px;
    background: rgba(255, 255, 255, 0.02);
    transition: all 0.22s var(--ease);
}

.quick-jump a:hover {
    color: var(--gold-2);
    border-color: rgba(var(--gold-rgb), 0.34);
    background: rgba(var(--gold-rgb), 0.12);
    transform: translateY(-1px);
}

.quick-jump a.is-active {
    color: #0a0705;
    border-color: rgba(var(--gold-rgb), 0.5);
    background: linear-gradient(135deg, var(--gold), var(--gold-2));
}

.proof-row {
    padding-top: 14px;
}

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

.proof-card {
    position: relative;
    border-radius: 18px;
    border: 1px solid rgba(var(--gold-rgb), 0.2);
    background: linear-gradient(180deg, rgba(255, 235, 209, 0.15), rgba(255, 235, 209, 0.05));
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
    padding: 22px 22px 20px;
}

.proof-card::before {
    content: "01";
    display: inline-flex;
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    margin-bottom: 12px;
    font-size: 11px;
    font-family: var(--font-display);
    font-weight: 800;
    letter-spacing: 0.06em;
    color: var(--gold-2);
    border: 1px solid rgba(var(--gold-rgb), 0.35);
    background: rgba(9, 6, 4, 0.56);
}

.proof-card:nth-child(2)::before {
    content: "02";
}

.proof-card:nth-child(3)::before {
    content: "03";
}

.proof-card:nth-child(4)::before {
    content: "04";
}

.proof-card:nth-child(1),
.proof-card:nth-child(2),
.proof-card:nth-child(3),
.proof-card:nth-child(4) {
    grid-column: span 1;
}

.proof-card b {
    margin-bottom: 8px;
    font-size: clamp(18px, 2vw, 22px);
    line-height: 1.2;
}

.proof-card span {
    display: block;
    font-size: 14px;
    line-height: 1.65;
    color: #cad3de;
}

.proof-note {
    margin-top: 10px;
    font-size: 11px;
}

.step-card,
.feature-card,
.stats-card,
.support-card,
.panel-card,
.device-card,
.timeline-item,
.faq-item,
.check-item {
    border-radius: 18px;
    border: 1px solid rgba(var(--gold-rgb), 0.18);
    background: linear-gradient(180deg, rgba(255, 235, 209, 0.12), rgba(255, 235, 209, 0.035));
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.feature-card::after {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), transparent 52%);
}

.proof-card:hover,
.step-card:hover,
.feature-card:hover,
.stats-card:hover,
.support-card:hover,
.panel-card:hover,
.device-card:hover,
.timeline-item:hover,
.faq-item:hover,
.check-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.24);
}

.feature-grid,
.steps-grid,
.stats-grid,
.support-grid,
.device-grid,
.timeline {
    gap: 18px;
}

.page-hero .hero-content {
    border-radius: 18px;
}

.plan-tab {
    border-radius: 11px;
}

@media (max-width: 920px) {
    .quick-jump {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        top: 72px;
    }

    .quick-jump a {
        white-space: nowrap;
    }

    .proof-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .proof-card:nth-child(1),
    .proof-card:nth-child(2),
    .proof-card:nth-child(3),
    .proof-card:nth-child(4) {
        grid-column: span 1;
    }

    .proof-card {
        padding: 18px;
    }
}

/* Wave 1: Conversion + Visual Consistency */

.section {
    padding: clamp(64px, 7vw, 90px) 0;
}

.btn {
    min-height: 44px;
    font-size: 14px;
    padding: 12px 18px;
}

.btn-sm {
    min-height: 38px;
    padding: 9px 14px;
}

.btn-lg {
    min-height: 52px;
    padding: 14px 24px;
}

.hero-actions {
    align-items: center;
}

.hero-actions .btn-primary,
.hero-actions .btn-ghost,
.final-cta .hero-actions .btn-primary,
.final-cta .hero-actions .btn-ghost {
    min-width: 186px;
}

.objection-strip {
    margin-top: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.objection-pill {
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(var(--gold-rgb), 0.22);
    border-radius: 999px;
    padding: 6px 10px;
    color: #d7e0eb;
    background: rgba(255, 255, 255, 0.03);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.support-inline-links {
    margin: 18px 0 0;
    color: var(--text-2);
    font-size: 14px;
    line-height: 1.7;
}

.support-inline-links a {
    color: var(--gold-2);
    text-decoration: none;
    border-bottom: 1px dashed rgba(var(--gold-rgb), 0.45);
}

.support-inline-links a:hover {
    color: #ffd18a;
    border-bottom-style: solid;
}

.feature-grid,
.panel-grid,
.support-grid,
.steps-grid,
.testimonial-grid,
.pricing-grid {
    align-items: stretch;
}

.feature-card,
.panel-card,
.support-card,
.step-card,
.testimonial-card,
.plan-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.feature-card h3,
.panel-card h3,
.support-card h3,
.step-card h3,
.plan-name {
    min-height: 2.4em;
}

.feature-card p,
.panel-card p,
.support-card p,
.step-card p,
.testimonial-card .quote {
    flex: 1;
}

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

.page-hero-side {
    display: none !important;
}

.plan-card.is-featured {
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(var(--gold-rgb), 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.plan-card.is-best-value {
    border-width: 2px;
}

.plan-card.is-best-value .plan-pop {
    background: linear-gradient(135deg, #9cffc3, #35d78f);
    color: #032312;
}

@media (max-width: 920px) {
    .section {
        padding: 54px 0;
    }

    .hero-sub,
    .page-hero p {
        max-width: 35ch;
        line-height: 1.62;
        text-wrap: pretty;
    }

    .hero h1,
    .page-hero h1,
    .section h2 {
        text-wrap: balance;
        line-height: 1.12;
    }

    .objection-strip {
        gap: 7px;
    }

    .objection-pill {
        font-size: 10px;
        padding: 5px 9px;
    }
}

@media (prefers-reduced-motion: reduce) {
    body:not(.force-motion) *, body:not(.force-motion) *::before, body:not(.force-motion) *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }

    body:not(.force-motion) .reveal {
        opacity: 1;
        transform: none;
        filter: none;
    }

    body:not(.force-motion) .page,
    body:not(.force-motion) .page.is-leaving {
        opacity: 1;
        transform: none;
        animation: none;
    }

    body:not(.force-motion) .hero-logo-track {
        animation: none;
    }

}

/* Premium landing cleanup */

.hero-actions.is-clean {
    align-items: center;
    gap: 14px;
}

.hero-actions.is-clean .btn-primary {
    min-width: 210px;
}

.hero-note {
    margin-top: 10px;
    color: #b4c0cd;
    font-size: 12px;
    line-height: 1.6;
}

.hero-reassurance {
    margin-top: 10px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(var(--gold-rgb), 0.22);
}

.hero-reassurance p {
    margin: 0;
    color: #cdd8e4;
    font-size: 12px;
    line-height: 1.45;
}

.hero-reassurance-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(180deg, #f7cc8b, #e49a3b);
    box-shadow: 0 0 0 3px rgba(var(--gold-rgb), 0.15);
}

.hero-secondary-link {
    color: var(--text-2);
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.01em;
    text-decoration: none;
    border-bottom: 1px solid rgba(var(--gold-rgb), 0.35);
    padding-bottom: 2px;
    transition: color 0.2s var(--ease), border-color 0.2s var(--ease), transform 0.2s var(--ease);
}

.hero-secondary-link:hover {
    color: var(--gold-2);
    border-color: rgba(var(--gold-rgb), 0.65);
    transform: translateY(-1px);
}

.hero-secondary-link:focus-visible {
    border-radius: 4px;
    outline-offset: 4px;
}

.home-page .hero,
.start-page .page-hero,
.setup-page .page-hero {
    min-height: clamp(400px, 50vh, 480px);
    padding: 20px 0 10px;
}

.home-page .hero .hero-content,
.start-page .page-hero .hero-content,
.setup-page .page-hero .hero-content {
    padding: 0;
    border: none;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.home-page .section,
.start-page .section,
.setup-page .section {
    padding: clamp(56px, 6vw, 78px) 0;
}

.home-page .quick-jump-section,
.start-page .quick-jump-section,
.setup-page .quick-jump-section {
    padding-top: 8px;
}

.home-page .hero-layout,
.start-page .page-hero-layout,
.setup-page .page-hero-layout {
    gap: 18px;
}

.home-page .proof-row {
    padding-top: 6px;
}

.home-page .section-head,
.start-page .section-head,
.setup-page .section-head {
    margin-bottom: 30px;
}

@media (max-width: 920px) {
    .home-page .hero,
    .start-page .page-hero,
    .setup-page .page-hero {
        min-height: 0;
        padding: 14px 0 8px;
    }

    .home-page .section,
    .start-page .section,
    .setup-page .section {
        padding: 48px 0;
    }

    .hero-actions.is-clean {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions.is-clean .hero-secondary-link {
        text-align: center;
        align-self: center;
    }

}

/* Premium CTA and hero composition pass */

:root {
    --btn-radius-luxe: 14px;
}

.btn {
    border-radius: var(--btn-radius-luxe);
    font-weight: 800;
    letter-spacing: 0.015em;
}

.btn-primary {
    border: 1px solid rgba(241, 173, 74, 0.65);
    background: linear-gradient(138deg, #ffe9c8 0%, #ffc773 44%, #eb9a35 100%);
    box-shadow: 0 10px 22px rgba(var(--gold-rgb), 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.46);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(var(--gold-rgb), 0.3), 0 4px 14px rgba(0, 0, 0, 0.16);
}

.btn-ghost {
    border: 1px solid rgba(255, 255, 255, 0.24);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03));
    color: #ecf2f8;
}

.btn-ghost:hover {
    border-color: rgba(var(--gold-rgb), 0.46);
    background: linear-gradient(180deg, rgba(var(--gold-rgb), 0.18), rgba(var(--gold-rgb), 0.06));
    color: #fff6e8;
}

.btn-luxe-secondary {
    min-width: 200px;
}

.hero-actions.premium-cta-pair {
    gap: 14px;
}

.hero-actions.premium-cta-pair .btn {
    min-width: 204px;
}

.home-page .hero-layout {
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 28px;
    align-items: center;
}

.home-page .hero-main {
    max-width: 700px;
}

.home-page .hero-sub {
    max-width: 56ch;
}

.home-page .hero-note {
    margin-top: 12px;
}

.home-page .hero-showcase {
    gap: 14px;
}

.home-page .hero-showcase-card {
    padding: 16px;
    border-radius: 16px;
}

.home-page .hero-showcase-logos {
    padding: 12px;
    border-radius: 14px;
}

@media (max-width: 1120px) {
    .home-page .hero-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 920px) {
    .hero-actions.premium-cta-pair {
        gap: 10px;
    }

    .hero-actions.premium-cta-pair .btn {
        min-width: 100%;
    }
}

/* Start and trial rhythm refinements */

.start-page .page-hero .hero-content,
.trial-page .page-hero .hero-content {
    max-width: 780px;
}

.start-page .page-hero h1,
.trial-page .page-hero h1 {
    font-size: clamp(36px, 4.8vw, 58px);
    line-height: 1.04;
}

.start-page .page-hero p,
.trial-page .page-hero p {
    max-width: 60ch;
    line-height: 1.68;
}

.start-page .hero-actions,
.trial-page .hero-actions {
    align-items: center;
}

.trial-page .device-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.trial-page .device-card {
    display: block;
    padding: 20px;
}

.trial-page .device-card h3 {
    margin: 0 0 6px;
    font-size: 19px;
}

.trial-page .device-card p {
    margin: 0;
    color: var(--text-2);
    font-size: 14px;
}

.ordered-checklist {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 12px;
    counter-reset: setup-step;
}

.ordered-checklist > li {
    position: relative;
    padding-left: 70px;
}

.ordered-checklist > li::before {
    counter-increment: setup-step;
    content: counter(setup-step);
    position: absolute;
    left: 20px;
    top: 20px;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 800;
    color: #120b02;
    background: linear-gradient(145deg, #ffdca2, #f2a63d);
    box-shadow: 0 6px 14px rgba(var(--gold-rgb), 0.24);
}

@media (max-width: 920px) {
    .start-page .page-hero h1,
    .trial-page .page-hero h1 {
        font-size: 34px;
    }

    .trial-page .device-grid {
        grid-template-columns: 1fr;
    }

    .ordered-checklist > li {
        padding-left: 62px;
    }

    .ordered-checklist > li::before {
        left: 16px;
        top: 18px;
        width: 32px;
        height: 32px;
    }
}

/* Header and footer cleanup */

.nav-actions {
    gap: 10px;
}

.nav-action-secondary {
    padding-inline: 12px;
    font-size: 12px;
    color: #b7c4d2;
    border-color: rgba(255, 255, 255, 0.12);
}

.nav-action-secondary:hover {
    color: #dbe5ef;
    border-color: rgba(255, 255, 255, 0.22);
}

.nav-primary-action {
    min-width: 148px;
}

.site-footer {
    margin-top: 14px;
    padding: 48px 0 24px;
}

.footer-grid {
    grid-template-columns: minmax(0, 1.45fr) repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.footer-brand p {
    max-width: 36ch;
}

.footer-col h3 {
    margin-bottom: 12px;
}

.footer-col a {
    padding: 5px 0;
}

.footer-bottom {
    margin-top: 22px;
}

@media (max-width: 920px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 640px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        grid-column: auto;
    }

    .pricing-page .plan-tabs {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        width: 100%;
        margin-bottom: 18px;
        border: 0;
        border-radius: 0;
        padding: 0;
        background: transparent;
    }

    .pricing-page .plan-tab {
        min-height: 42px;
        padding: 8px 10px;
        border: 1px solid var(--line);
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.03);
        font-size: 11px;
        line-height: 1.2;
        white-space: normal;
    }

    .pricing-page .plan-tab.is-active {
        border-color: rgba(var(--gold-rgb), 0.55);
    }

    .pricing-page .pricing-grid {
        gap: 10px;
    }

    .pricing-page .plan-card {
        padding: 18px 14px;
        text-align: left;
    }

    .pricing-page .plan-pop {
        left: 14px;
        transform: none;
        top: -10px;
        font-size: 9px;
        padding: 4px 9px;
    }

    .pricing-page .plan-name {
        font-size: 14px;
    }

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

    .pricing-page .plan-term,
    .pricing-page .plan-math,
    .pricing-page .plan-save {
        font-size: 11px;
    }

    .pricing-page .plan-card .btn {
        min-height: 42px;
        font-size: 12px;
    }

    .pricing-page .plan-feats {
        margin-top: 12px;
        padding-top: 10px;
    }

    .pricing-page .plan-feats li {
        font-size: 12px;
        padding: 6px 0 6px 18px;
    }

    .pricing-page .compare-wrap {
        margin: 0 -4px;
        overflow-x: auto;
        border: 1px solid var(--line);
        border-radius: 12px;
    }

    .pricing-page .compare-table {
        min-width: 520px;
    }
}

/* Post-deploy premium polish */

.page-hero-meta {
    margin-top: 14px;
    color: #b8c3d0;
    font-size: 12px;
    letter-spacing: 0.02em;
    text-transform: none;
    font-weight: 600;
}

.btn-ghost {
    border-color: rgba(255, 255, 255, 0.18);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.015));
    color: #dbe5ef;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.btn-ghost:hover {
    border-color: rgba(255, 255, 255, 0.28);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.03));
    color: #eef4fb;
}

.btn-luxe-secondary {
    min-width: 194px;
}

.floating-cta {
    bottom: 16px;
    padding: 8px 10px 8px 12px;
    border-color: rgba(var(--gold-rgb), 0.2);
    background: rgba(15, 11, 8, 0.82);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.34);
}

.floating-cta.is-visible {
    animation: none;
}

.floating-cta span {
    font-size: 11px;
    color: #cad5e1;
}

.floating-cta .floating-cta-action {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.015));
    color: #dbe5ef;
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: 0.01em;
    transition: transform 0.2s var(--ease), border-color 0.2s var(--ease), background 0.2s var(--ease), color 0.2s var(--ease);
    min-width: 0;
    padding: 8px 12px;
    font-size: 11px;
}

.floating-cta .floating-cta-action:hover {
    transform: translateY(-1px);
    color: #eef4fb;
    border-color: rgba(255, 255, 255, 0.28);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.03));
}

.start-page .page-hero-layout,
.trial-page .page-hero-layout {
    gap: 24px;
    align-items: start;
}

.start-page .hero-lede-group,
.trial-page .hero-lede-group {
    display: grid;
    gap: 12px;
}

.start-page .hero-lede-group p,
.trial-page .hero-lede-group p {
    margin-top: 0;
}

.start-page .hero-cta-group,
.trial-page .hero-cta-group {
    display: grid;
    gap: 10px;
    padding-top: 4px;
}

.start-page .hero-proof-group,
.trial-page .hero-proof-group {
    display: grid;
    gap: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(var(--gold-rgb), 0.18);
}

.start-page .hero-proof-group .objection-strip,
.trial-page .hero-proof-group .objection-strip {
    margin-top: 0;
}

@media (min-width: 921px) {
    .start-page .page-hero-layout,
    .trial-page .page-hero-layout {
        grid-template-columns: minmax(0, 1fr) 292px;
    }

    .start-page .page-hero-side,
    .trial-page .page-hero-side {
        display: block !important;
    }

    .start-page .hero-side-card,
    .trial-page .hero-side-card {
        padding: 20px 18px;
        border-color: rgba(var(--gold-rgb), 0.24);
        background: linear-gradient(180deg, rgba(255, 235, 209, 0.13), rgba(255, 235, 209, 0.04));
    }
}

@media (max-width: 920px) {
    .start-page .hero-proof-group,
    .trial-page .hero-proof-group {
        gap: 8px;
    }

    .floating-cta {
        bottom: 12px;
    }
}

/* Conversion density polish */

.final-cta .hero-actions {
    gap: 10px;
}

.section-cta-inline {
    margin: 20px 0 0;
    text-align: center;
}

.section-cta-link {
    color: #d7e2ef;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-decoration: none;
    border-bottom: 1px solid rgba(var(--gold-rgb), 0.34);
    padding-bottom: 3px;
    transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.section-cta-link:hover {
    color: var(--gold-2);
    border-color: rgba(var(--gold-rgb), 0.62);
}

.section-cta-link-strong {
    font-size: 14px;
}

.final-cta .btn-primary {
    animation: none;
    box-shadow: 0 7px 16px rgba(var(--gold-rgb), 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.final-cta .btn-primary:hover {
    box-shadow: 0 9px 20px rgba(var(--gold-rgb), 0.24), 0 2px 10px rgba(0, 0, 0, 0.14);
}

.start-page .hero-lede-group h1,
.trial-page .hero-lede-group h1 {
    margin: 0;
}

.start-page .hero-side-card,
.trial-page .hero-side-card {
    margin-top: 8px;
}

.support-card-link {
    margin-top: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #d8e2ee;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid rgba(var(--gold-rgb), 0.35);
    padding-bottom: 3px;
}

.support-card-link:hover {
    color: var(--gold-2);
    border-bottom-color: rgba(var(--gold-rgb), 0.6);
}

.support-card-note {
    margin: 10px 0 0;
    color: var(--text-3);
    font-size: 12px;
    line-height: 1.55;
}

.pricing-teaser-grid .panel-card {
    min-height: 168px;
}

/* Landing pass: pricing mobile readability + CTA calmness */

.pricing-page .hero-actions .hero-secondary-link {
    margin-top: 2px;
}

@media (max-width: 640px) {
    .pricing-page .plan-tab span {
        display: block;
        line-height: 1.12;
    }

    .pricing-page .plan-badge {
        display: inline-flex;
        margin-top: 4px;
        font-size: 9px;
        line-height: 1;
        padding: 2px 5px;
    }

    .pricing-page .plan-sub {
        margin: 4px 0 10px;
    }

    .pricing-page .plan-save {
        margin-bottom: 10px;
    }

    .pricing-page .plan-feats li:nth-child(n + 5) {
        display: none;
    }

    .pricing-page .compare-wrap {
        position: relative;
        padding-bottom: 18px;
    }

    .pricing-page .compare-wrap::after {
        content: "Swipe table for more";
        position: absolute;
        bottom: 2px;
        right: 10px;
        font-size: 10px;
        color: var(--text-3);
        letter-spacing: 0.02em;
    }
}
