:root {
    --bg: #06080d;
    --panel: rgba(10, 15, 24, 0.8);
    --panel-strong: rgba(14, 20, 31, 0.92);
    --panel-soft: rgba(255, 255, 255, 0.04);
    --text: #f7f9fc;
    --muted: #b6c0cf;
    --line: rgba(255, 255, 255, 0.08);
    --line-strong: rgba(116, 156, 223, 0.3);
    --accent: #4e7cd3;
    --accent-strong: #7fa4ff;
    --shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text);
    background-color: var(--bg);
    background-image:
        linear-gradient(180deg, rgba(3, 6, 12, 0.8), rgba(3, 6, 12, 0.95)),
        url('./hero-bg_1hero-bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    padding: max(24px, env(safe-area-inset-top)) 16px max(40px, env(safe-area-inset-bottom));
    overflow-x: hidden;
}

img,
video {
    max-width: 100%;
}

button,
summary {
    font: inherit;
}

.page-shell {
    width: min(1120px, 100%);
    margin: 0 auto;
}

.hidden {
    display: none !important;
}

html.web-auth-loading #accountSignedOutState,
html.web-auth-loading #accountSignedInState,
html.web-auth-loading #accountStatusPill,
body.web-auth-loading #accountSignedOutState,
body.web-auth-loading #accountSignedInState,
body.web-auth-loading #accountStatusPill {
    visibility: hidden;
    pointer-events: none;
}

.site-header {
    margin-bottom: 18px;
    padding: 18px 22px;
    display: flex;
    align-items: center;
}

.site-nav {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(160px, 1fr) auto minmax(160px, 1fr);
    align-items: center;
    gap: 18px;
}

.site-main-links {
    grid-column: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(18px, 3vw, 34px);
}

.nav-link {
    position: relative;
    display: inline-flex;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 700;
    transition: color 260ms ease, text-shadow 260ms ease, filter 260ms ease;
}

.nav-link::after {
    content: attr(data-nav-label);
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: linear-gradient(135deg, #7fa4ff 0%, #3c72d7 54%, #5f8dea 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    opacity: 0;
    filter: drop-shadow(0 0 0 rgba(95, 141, 234, 0));
    transition: opacity 260ms ease, filter 260ms ease;
}

.nav-link-pro::after {
    background-image: linear-gradient(135deg, #fff4c8 0%, #e8c35f 48%, #b88422 100%);
}

.nav-actions {
    grid-column: 3;
    justify-self: end;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.nav-button,
.header-account-link {
    min-height: 46px;
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid transparent;
    font-family: "Montserrat", sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.2s ease, filter 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.nav-button-primary {
    border-color: var(--line-strong);
    background: linear-gradient(135deg, #2956a6, #3c72d7 52%, #5f8dea);
    box-shadow: 0 14px 28px rgba(32, 77, 164, 0.28);
    color: #fff;
}

.nav-button-secondary,
.header-account-link {
    border-color: rgba(127, 164, 255, 0.24);
    background: rgba(255, 255, 255, 0.03);
    color: #f4f7ff;
}

.nav-button-tertiary {
    border-color: rgba(255, 255, 255, 0.1);
    background: transparent;
    color: rgba(255, 255, 255, 0.78);
}

.header-account-link {
    grid-column: 3;
    justify-self: end;
    max-width: min(100%, 280px);
    margin-left: auto;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.site-menu-button,
.site-menu-backdrop,
.site-mobile-menu {
    display: none;
}

.site-mobile-menu-panel {
    width: min(320px, calc(100vw - 34px));
    min-height: 100%;
    margin-left: auto;
    padding: 18px;
    border-radius: 28px 0 0 28px;
}

.site-mobile-menu-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.site-mobile-menu-kicker {
    color: var(--accent-strong);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.72rem;
    font-weight: 800;
}

.site-menu-close-button {
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.35rem;
    cursor: pointer;
}

.site-mobile-menu-nav,
.site-mobile-auth-actions {
    display: grid;
    gap: 10px;
}

.site-mobile-menu-nav {
    margin-top: 24px;
}

.site-mobile-menu-link {
    min-height: 48px;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.035);
    color: #f5f7ff;
    font-family: "Montserrat", sans-serif;
    font-size: 0.95rem;
    font-weight: 750;
    text-decoration: none;
    text-align: left;
    cursor: pointer;
}

.site-mobile-menu-link.primary {
    border-color: var(--line-strong);
    background: linear-gradient(135deg, rgba(41, 86, 166, 0.96), rgba(95, 141, 234, 0.96));
    box-shadow: 0 14px 28px rgba(32, 77, 164, 0.24);
}

.site-mobile-menu-link.pro {
    border-color: rgba(229, 201, 112, 0.3);
    background: linear-gradient(145deg, #caa03a, #9f7723);
    color: #fff8e3;
    box-shadow: 0 18px 30px rgba(117, 82, 13, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.site-mobile-menu-link.pro:hover,
.site-mobile-menu-link.pro:focus-visible {
    border-color: rgba(229, 201, 112, 0.34);
    background: linear-gradient(145deg, #d3aa46, #a87d26);
    color: #fff8e3;
    box-shadow: 0 18px 32px rgba(189, 142, 31, 0.42), inset 0 1px 0 rgba(255, 248, 220, 0.16);
}

.landing-auth-meta {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.95rem;
    line-height: 1.5;
}

.nav-button:hover,
.header-account-link:hover {
    transform: translateY(-1px);
    filter: brightness(1.03);
}

.nav-link:hover,
.nav-link:focus-visible {
    color: rgba(255, 255, 255, 0.18);
    text-shadow: 0 0 14px rgba(95, 141, 234, 0.38);
}

.nav-link:hover::after,
.nav-link:focus-visible::after {
    opacity: 1;
    filter: drop-shadow(0 0 10px rgba(95, 141, 234, 0.72));
}

.nav-link-pro:hover,
.nav-link-pro:focus-visible {
    text-shadow: 0 0 14px rgba(202, 160, 58, 0.38);
}

.nav-link-pro:hover::after,
.nav-link-pro:focus-visible::after {
    filter: drop-shadow(0 0 10px rgba(202, 160, 58, 0.72));
}

.panel {
    background: linear-gradient(180deg, rgba(13, 19, 29, 0.9), rgba(8, 12, 19, 0.94));
    border: 1px solid var(--line);
    border-radius: 28px;
    box-shadow: var(--shadow);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}

.hero,
.content-section,
.final-cta {
    padding: 28px 18px;
}

.hero {
    display: grid;
    gap: 24px;
}

.hero-copy {
    text-align: center;
}

.eyebrow,
.section-kicker,
.step-number {
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

.eyebrow,
.section-kicker {
    color: var(--accent-strong);
    font-size: 12px;
    font-weight: 700;
}

.big-title {
    font-size: clamp(1.75rem, 4.2vw, 3.2rem);
    line-height: 1.05;
    margin-top: 14px;
}

.mini-description,
.final-copy,
.step-card p {
    color: var(--muted);
}

.mini-description {
    font-size: 1rem;
    line-height: 1.6;
    max-width: 42ch;
    margin: 16px auto 0;
}

.hero-actions {
    margin-top: 24px;
    display: grid;
    gap: 12px;
    justify-items: center;
}

.cta-link {
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
}

.get-access-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: min(100%, 320px);
    padding: 16px 28px;
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    background: linear-gradient(135deg, #2956a6, #3c72d7 52%, #5f8dea);
    box-shadow: 0 16px 30px rgba(32, 77, 164, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.18);
    color: #fff;
    cursor: pointer;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.03em;
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
    text-align: center;
}

.get-access-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 38px rgba(32, 77, 164, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.22);
    filter: brightness(1.04);
}

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

.video-shell {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
}

.video-player {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: #05070b;
    aspect-ratio: 16 / 10;
}

.video-poster-button {
    position: absolute;
    inset: 0;
    width: 100%;
    border: 0;
    padding: 0;
    background: none;
    cursor: pointer;
    z-index: 2;
    -webkit-appearance: none;
    appearance: none;
}

.video-poster-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    background: #05070b;
}

.video-play-badge {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 72px;
    height: 72px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(10, 16, 26, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #fff;
    font-size: 22px;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.32);
}

.video {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 24px;
    background: #05070b;
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.35);
    opacity: 0;
    pointer-events: none;
    object-fit: cover;
}

.video-player.is-playing .video {
    opacity: 1;
    pointer-events: auto;
}

.video-player.is-playing .video-poster-button {
    display: none;
}

.content-section,
.final-cta {
    margin-top: 28px;
}

.legal-hero,
.legal-section {
    padding: 28px 18px;
}

.legal-section {
    margin-top: 28px;
}

.legal-title {
    margin-top: 10px;
    font-size: clamp(1.7rem, 4vw, 2.8rem);
    line-height: 1.08;
}

.legal-meta {
    margin-top: 14px;
    color: rgba(255, 255, 255, 0.64);
    font-size: 0.94rem;
    line-height: 1.6;
}

.legal-intro,
.legal-copy {
    margin-top: 14px;
    color: var(--muted);
    font-size: 0.98rem;
    line-height: 1.72;
}

.legal-intro {
    max-width: 72ch;
}

.legal-section h2,
.contact-card h2 {
    font-size: clamp(1.35rem, 2.6vw, 1.85rem);
    line-height: 1.2;
}

.legal-list {
    margin-top: 16px;
    padding-left: 20px;
    display: grid;
    gap: 12px;
}

.legal-list.compact {
    gap: 10px;
}

.legal-list li {
    color: var(--muted);
    font-size: 0.96rem;
    line-height: 1.68;
}

.legal-inline-link,
.footer-text-link {
    color: #dbe6ff;
    text-decoration: none;
    transition: color 0.2s ease, text-shadow 0.2s ease;
}

.legal-inline-link:hover,
.legal-inline-link:focus-visible,
.footer-text-link:hover,
.footer-text-link:focus-visible {
    color: var(--accent-strong);
    text-shadow: 0 0 12px rgba(95, 141, 234, 0.28);
}

.contact-grid {
    margin-top: 28px;
    display: grid;
    gap: 14px;
}

.contact-card {
    padding: 22px 18px;
}

.contact-card-kicker {
    color: var(--accent-strong);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 12px;
    font-weight: 700;
}

.contact-card h2 {
    margin-top: 12px;
}

.contact-action-link {
    margin-top: 18px;
    width: fit-content;
}

.contact-link-list {
    margin-top: 18px;
    display: grid;
    gap: 12px;
}

.section-heading {
    text-align: center;
}

.section-heading h2 {
    font-size: clamp(1.55rem, 3vw, 2.2rem);
    margin-top: 10px;
}

.steps-grid,
.benefits-grid {
    display: grid;
    gap: 14px;
    margin-top: 22px;
}

.step-card,
.benefit-card,
.step-proof {
    background: linear-gradient(180deg, var(--panel-soft), rgba(255, 255, 255, 0.02));
    border: 1px solid var(--line);
    border-radius: 22px;
}

.step-card,
.benefit-card {
    padding: 18px;
}

.step-card {
    display: flex;
    flex-direction: column;
}

.step-number {
    display: inline-block;
    color: var(--accent-strong);
    font-size: 12px;
    font-weight: 700;
}

.step-card h3,
.benefit-card h3 {
    margin-top: 12px;
    font-size: 1.05rem;
    line-height: 1.35;
}

.step-card p {
    margin-top: 10px;
    font-size: 0.96rem;
    line-height: 1.55;
}

.step-proof {
    margin-top: 18px;
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    overflow: hidden;
}

.screenshot-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    background: #0a0f18;
    flex: 1 1 auto;
    min-height: 260px;
}

.step-proof figcaption {
    padding: 14px 16px 16px;
    font-size: 0.95rem;
    color: #e7edf8;
    font-weight: 600;
}

.benefit-card {
    display: flex;
    align-items: center;
    gap: 14px;
}

.benefit-icon {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(78, 124, 211, 0.14);
    color: #9cbcff;
    flex-shrink: 0;
}

.final-cta {
    text-align: center;
    padding-bottom: 34px;
}

.final-copy {
    max-width: 36ch;
    margin: 16px auto 24px;
    line-height: 1.6;
}

.secondary-cta {
    width: min(100%, 340px);
}

.faq-section {
    margin-top: 28px;
    padding: 8px 0 4px;
}

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

.faq-item {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02));
    border: 1px solid var(--line);
    border-radius: 20px;
    overflow: hidden;
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    position: relative;
    padding: 18px 52px 18px 18px;
    color: #f4f7ff;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.45;
    -webkit-tap-highlight-color: transparent;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-strong);
    font-size: 1.2rem;
    font-weight: 700;
}

.faq-item[open] summary::after {
    content: "-";
}

.faq-answer {
    height: 0;
    overflow: hidden;
    opacity: 0;
    padding: 0 18px;
    transition: height 0.32s ease, opacity 0.24s ease, padding 0.32s ease;
}

.faq-answer p {
    padding-bottom: 18px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.96rem;
    line-height: 1.65;
}

.faq-item.is-open .faq-answer {
    opacity: 1;
    padding: 0 18px;
}

.footer {
    margin-top: 0;
    padding: 28px 0 6px;
}

.footer-top,
.footer-bottom {
    display: grid;
    gap: 14px;
}

.footer-links-row {
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
}

.footer-bottom {
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
}

.footer-brand {
    display: grid;
    gap: 8px;
}

.footer-kicker {
    color: var(--accent-strong);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 12px;
    font-weight: 700;
}

.footer-copy,
.footer-meta {
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-text-link {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.94rem;
    font-weight: 650;
}

.footer-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 18px;
    border-radius: 999px;
    border: 1px solid rgba(127, 164, 255, 0.24);
    background: rgba(255, 255, 255, 0.03);
    color: #f4f7ff;
    text-decoration: none;
    font-weight: 700;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.footer-link:hover {
    background: rgba(127, 164, 255, 0.08);
    border-color: rgba(127, 164, 255, 0.42);
    transform: translateY(-1px);
}

.auth-modal {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 16px;
    background: rgba(3, 6, 12, 0.74);
    backdrop-filter: blur(10px);
}

.auth-modal-card {
    position: relative;
    width: min(520px, 100%);
    padding: 28px 18px;
}

.auth-close-button {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.2rem;
    cursor: pointer;
}

.auth-modal-title {
    margin-top: 10px;
    font-size: clamp(1.5rem, 3vw, 2rem);
    line-height: 1.15;
}

.auth-modal-body {
    margin-top: 14px;
    color: var(--muted);
    font-size: 0.98rem;
    line-height: 1.65;
}

.auth-modal-body p + p {
    margin-top: 10px;
}

.auth-alert {
    margin-top: 16px;
    padding: 14px 16px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.95rem;
    line-height: 1.55;
}

.auth-alert.warning {
    background: rgba(146, 54, 31, 0.2);
    border-color: rgba(255, 138, 102, 0.28);
    color: #ffd4c4;
}

.auth-alert.success {
    background: rgba(32, 99, 70, 0.2);
    border-color: rgba(95, 211, 161, 0.24);
    color: #d5f7e6;
}

.auth-form {
    margin-top: 18px;
}

.auth-field {
    display: grid;
    gap: 10px;
}

.auth-field-label {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.9rem;
    font-weight: 700;
}

.auth-input {
    width: 100%;
    min-height: 52px;
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    font-family: "Montserrat", sans-serif;
    font-size: 1rem;
}

.auth-input::placeholder {
    color: rgba(255, 255, 255, 0.38);
}

.auth-input:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.auth-actions {
    margin-top: 18px;
    display: grid;
    gap: 10px;
}

.auth-action-button {
    width: 100%;
}

.pro-mode-modal {
    z-index: 100;
    align-items: flex-start;
    overflow-y: auto;
    padding: max(20px, calc(env(safe-area-inset-top) + 20px)) 16px max(20px, env(safe-area-inset-bottom));
}

.pro-proof-modal {
    z-index: 110;
    align-items: flex-start;
    overflow-y: auto;
    padding: max(20px, calc(env(safe-area-inset-top) + 20px)) 16px max(20px, env(safe-area-inset-bottom));
}

.pro-mode-modal-card,
.pro-proof-modal-card {
    width: min(560px, 100%);
    margin: 0 auto;
    max-height: none;
    overflow: hidden;
    border: 1px solid rgba(229, 201, 112, 0.3);
    border-radius: 28px;
    background:
        radial-gradient(circle at top right, rgba(255, 230, 153, 0.18), transparent 32%),
        linear-gradient(180deg, rgba(58, 45, 18, 0.985), rgba(20, 15, 8, 0.995));
    box-shadow:
        inset 0 1px 0 rgba(255, 248, 222, 0.06),
        0 34px 78px rgba(0, 0, 0, 0.46);
}

.pro-mode-modal-card::before,
.pro-proof-modal-card::before {
    background:
        linear-gradient(135deg, rgba(241, 211, 122, 0.16), transparent 30%),
        linear-gradient(315deg, rgba(168, 121, 32, 0.08), transparent 24%);
}

.pro-mode-kicker {
    color: #ffe6a0;
}

.pro-mode-modal .auth-close-button,
.pro-proof-modal .auth-close-button {
    background: rgba(255, 244, 205, 0.08);
    border: 1px solid rgba(229, 201, 112, 0.18);
    color: #fff1be;
    box-shadow: inset 0 1px 0 rgba(255, 248, 220, 0.08);
}

.pro-mode-title {
    margin-top: 10px;
    font-size: clamp(2rem, 4vw, 2.45rem);
    line-height: 1.08;
    color: #fff7e0;
}

.pro-mode-subtitle {
    margin-top: 10px;
    color: rgba(255, 246, 217, 0.82);
    font-size: 1rem;
    line-height: 1.6;
}

.pro-mode-account-notice {
    margin-top: 18px;
}

.pro-status-card {
    margin-top: 18px;
    padding: 16px;
    border-radius: 20px;
    border: 1px solid rgba(229, 201, 112, 0.18);
    background: rgba(116, 89, 29, 0.12);
}

.pro-status-card.pending {
    border-color: rgba(229, 201, 112, 0.22);
    background: rgba(112, 84, 21, 0.18);
}

.pro-status-card.warning {
    border-color: rgba(229, 201, 112, 0.24);
    background: rgba(112, 84, 21, 0.18);
}

.pro-status-card.active {
    border-color: rgba(110, 215, 156, 0.26);
    background: rgba(32, 99, 70, 0.2);
}

.pro-status-title {
    display: block;
    color: #fff7e0;
    font-size: 1rem;
    line-height: 1.3;
}

.pro-status-body {
    margin-top: 8px;
    color: rgba(255, 246, 217, 0.8);
    line-height: 1.6;
}

.pro-flow-section,
.pro-mode-faq-section {
    margin-top: 24px;
}

.pro-flow-section-kicker {
    color: rgba(255, 230, 160, 0.9);
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.pro-flow-steps {
    margin-top: 14px;
    display: grid;
    gap: 12px;
}

.pro-flow-step-card {
    padding: 16px;
    border-radius: 18px;
    border: 1px solid rgba(229, 201, 112, 0.16);
    background: rgba(116, 89, 29, 0.14);
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 12px;
    align-items: start;
}

.pro-flow-step-number {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid rgba(229, 201, 112, 0.28);
    background: rgba(202, 160, 58, 0.16);
    color: #fff1be;
    font-size: 0.86rem;
    font-weight: 800;
    line-height: 1;
}

.pro-flow-step-copy {
    display: grid;
    gap: 4px;
}

.pro-flow-step-title {
    color: #fff8e3;
    font-size: 1rem;
    line-height: 1.35;
}

.pro-flow-step-body {
    color: rgba(255, 246, 217, 0.74);
    line-height: 1.55;
}

.pro-mode-actions {
    margin-top: 22px;
    display: grid;
    gap: 10px;
}

.pro-mode-primary-button {
    width: 100%;
    min-height: 58px;
    border-radius: 18px;
    border-color: rgba(229, 201, 112, 0.3);
    background: linear-gradient(145deg, #caa03a, #9f7723);
    box-shadow: 0 18px 30px rgba(117, 82, 13, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.14);
    color: #fff8e3;
    animation: glowGold 1.8s infinite alternate;
}

.pro-mode-primary-button:hover,
.pro-mode-primary-button:focus-visible {
    background: linear-gradient(145deg, #d3aa46, #a87d26);
    border-color: rgba(229, 201, 112, 0.34);
    color: #fff8e3;
    box-shadow: 0 18px 32px rgba(189, 142, 31, 0.42), inset 0 1px 0 rgba(255, 248, 220, 0.16);
}

.pro-mode-secondary-button {
    width: 100%;
    min-height: 54px;
    border-radius: 18px;
    border-color: rgba(229, 201, 112, 0.14);
    background: rgba(255, 244, 205, 0.05);
    color: #f9f1dd;
}

.pro-mode-helper {
    color: rgba(255, 244, 206, 0.74);
    text-align: center;
    line-height: 1.55;
}

.pro-mode-helper-secondary {
    margin-top: -2px;
    color: rgba(255, 246, 217, 0.56);
}

.pro-proof-modal-card .auth-actions {
    grid-template-columns: 1fr;
}

.pro-proof-modal-card .auth-action-button {
    min-height: 54px;
}

.pro-mode-faq-section {
    display: grid;
    gap: 10px;
}

.pro-mode-faq-card {
    border-radius: 18px;
    border: 1px solid rgba(229, 201, 112, 0.16);
    background: rgba(116, 89, 29, 0.1);
    overflow: hidden;
}

.pro-mode-faq-card-gold {
    border-color: rgba(229, 201, 112, 0.24);
    background: rgba(126, 95, 24, 0.18);
}

.pro-mode-faq-card summary {
    position: relative;
    padding: 16px 48px 16px 16px;
    list-style: none;
    cursor: pointer;
    color: #fff8e3;
    font-weight: 700;
}

.pro-mode-faq-card summary::-webkit-details-marker {
    display: none;
}

.pro-mode-faq-card summary::after {
    content: "+";
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 246, 217, 0.7);
    font-size: 1.2rem;
    font-weight: 700;
    transition: transform 0.2s ease;
}

.pro-mode-faq-card[open] summary::after {
    transform: translateY(-50%) rotate(45deg);
}

.pro-mode-faq-answer {
    padding: 0 16px 16px;
    color: rgba(255, 246, 217, 0.74);
    line-height: 1.6;
}

.pro-mode-faq-answer-subtle {
    display: block;
    margin-top: 8px;
    color: rgba(255, 246, 217, 0.56);
}

.auth-field-label-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.auth-field-meta {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.88rem;
    font-weight: 600;
}

.auth-file-input::file-selector-button {
    margin-right: 12px;
    padding: 10px 14px;
    border: 0;
    border-radius: 12px;
    background: rgba(202, 160, 58, 0.24);
    color: #fff1be;
    font-family: "Montserrat", sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    cursor: pointer;
}

.proof-field-helper {
    margin-top: 10px;
    color: rgba(255, 246, 217, 0.58);
    line-height: 1.55;
}

.proof-preview {
    margin-top: 14px;
    padding: 10px;
    border-radius: 18px;
    border: 1px solid rgba(229, 201, 112, 0.16);
    background: rgba(116, 89, 29, 0.12);
}

.proof-preview-image {
    display: block;
    width: 100%;
    max-height: 260px;
    object-fit: contain;
    border-radius: 14px;
}

.pro-mode-modal .auth-alert.warning,
.pro-proof-modal .auth-alert.warning {
    background: rgba(112, 84, 21, 0.22);
    border-color: rgba(229, 201, 112, 0.24);
    color: #ffe7b3;
}

.pro-mode-modal .auth-alert.success,
.pro-proof-modal .auth-alert.success {
    background: rgba(79, 112, 55, 0.2);
    border-color: rgba(141, 207, 127, 0.22);
    color: #e3ffd7;
}

.pro-proof-modal .auth-input,
.pro-proof-modal .auth-file-input,
.pro-mode-modal .auth-input {
    border-color: rgba(229, 201, 112, 0.12);
    background: rgba(255, 244, 205, 0.04);
    color: #fff8e3;
}

.pro-proof-modal .auth-input::placeholder,
.pro-mode-modal .auth-input::placeholder {
    color: rgba(255, 244, 205, 0.34);
}

.pro-proof-modal .auth-field-label,
.pro-mode-modal .auth-field-label {
    color: rgba(255, 244, 205, 0.86);
}

.pro-proof-modal .auth-field-meta {
    color: rgba(255, 244, 205, 0.5);
}

.account-hero,
.account-empty,
.account-actions-panel {
    padding: 28px 18px;
}

.account-hero,
.account-actions-panel {
    margin-top: 18px;
}

.account-heading {
    text-align: left;
}

.account-copy {
    margin-top: 16px;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.65;
}

.account-status-pill {
    margin-top: 18px;
    width: fit-content;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.92rem;
    font-weight: 700;
}

.account-status-pill[data-state="signed-in"] {
    border-color: rgba(127, 164, 255, 0.34);
    background: rgba(78, 124, 211, 0.12);
    color: #dbe7ff;
}

.account-status-pill[data-state="premium"] {
    border-color: rgba(255, 222, 136, 0.34);
    background: rgba(255, 226, 137, 0.1);
    color: #fff1be;
}

.account-empty {
    margin-top: 18px;
    display: grid;
    gap: 18px;
}

.account-empty-copy h2,
.account-actions-copy h2 {
    font-size: clamp(1.4rem, 2.8vw, 1.9rem);
    line-height: 1.2;
}

.account-empty-copy p {
    margin-top: 12px;
    color: var(--muted);
    line-height: 1.65;
}

.account-empty-actions,
.account-actions-row {
    display: grid;
    gap: 10px;
}

.account-grid {
    margin-top: 18px;
    display: grid;
    gap: 14px;
}

.account-stat-card {
    padding: 20px 18px;
}

.account-stat-label {
    display: block;
    color: var(--accent-strong);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.75rem;
    font-weight: 700;
}

.account-stat-value {
    display: block;
    margin-top: 14px;
    font-size: clamp(1.15rem, 2.8vw, 1.55rem);
    line-height: 1.25;
    word-break: break-word;
}

.account-actions-copy {
    display: grid;
    gap: 10px;
}

.get-access-btn:focus-visible,
.nav-button:focus-visible,
.nav-link:focus-visible,
.header-account-link:focus-visible,
.site-menu-button:focus-visible,
.site-menu-close-button:focus-visible,
.site-mobile-menu-link:focus-visible,
.footer-link:focus-visible,
.video-poster-button:focus-visible,
.faq-item summary:focus-visible,
.auth-close-button:focus-visible,
.auth-input:focus-visible {
    outline: 2px solid rgba(127, 164, 255, 0.9);
    outline-offset: 3px;
}

@media (max-width: 479px) {
    body {
        padding: max(14px, env(safe-area-inset-top)) 10px max(28px, env(safe-area-inset-bottom));
        background-position: center top;
    }

    body.site-menu-open {
        overflow: hidden;
    }

    .site-header {
        position: relative;
        margin-bottom: 12px;
        min-height: 54px;
        padding: 9px 10px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        border-radius: 19px;
    }

    .site-brand {
        display: none;
    }

    .site-nav {
        min-width: 0;
        width: auto;
        flex: 1 1 auto;
        display: flex;
        gap: 7px;
    }

    .site-main-links {
        display: none;
    }

    .nav-actions {
        flex-wrap: nowrap;
        gap: 7px;
    }

    .nav-button,
    .header-account-link {
        min-height: 36px;
        padding: 0 12px;
        font-size: 0.78rem;
    }

    .header-account-link {
        margin-left: 0;
        max-width: min(190px, calc(100vw - 96px));
    }

    .site-menu-button {
        width: 38px;
        height: 38px;
        padding: 0;
        flex: 0 0 auto;
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        border: 1px solid rgba(127, 164, 255, 0.24);
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.04);
        color: #fff;
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
    }

    .site-menu-button-line {
        width: 15px;
        height: 2px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.86);
    }

    .site-menu-backdrop {
        position: fixed;
        inset: 0;
        z-index: 80;
        display: block;
        background: rgba(2, 5, 10, 0.66);
        opacity: 1;
        backdrop-filter: blur(8px);
    }

    .site-mobile-menu {
        position: fixed;
        inset: 0;
        z-index: 81;
        display: block;
        pointer-events: none;
    }

    .site-mobile-menu.is-open {
        pointer-events: auto;
    }

    .site-mobile-menu-panel {
        width: min(318px, calc(100vw - 32px));
        height: 100%;
        min-height: 100dvh;
        padding: max(18px, env(safe-area-inset-top)) 16px max(18px, env(safe-area-inset-bottom));
        border-radius: 26px 0 0 26px;
        transform: translateX(104%);
        transition: transform 0.34s cubic-bezier(0.22, 0.72, 0.18, 1);
        box-shadow: -24px 0 70px rgba(0, 0, 0, 0.46);
        overflow-y: auto;
    }

    .site-mobile-menu.is-open .site-mobile-menu-panel {
        transform: translateX(0);
    }

    .site-mobile-menu-link {
        min-height: 46px;
        font-size: 0.9rem;
    }

    .hero,
    .content-section,
    .final-cta,
    .account-hero,
    .account-empty,
    .account-actions-panel {
        padding: 20px 14px;
        border-radius: 22px;
    }

    .hero {
        gap: 18px;
    }

    .eyebrow,
    .section-kicker,
    .step-number,
    .footer-kicker,
    .account-stat-label {
        font-size: 10px;
        letter-spacing: 0.14em;
    }

    .big-title {
        margin-top: 10px;
        font-size: clamp(1.58rem, 8.4vw, 1.86rem);
        line-height: 1.06;
    }

    .mini-description {
        margin-top: 12px;
        font-size: 0.88rem;
        line-height: 1.5;
    }

    .hero-actions {
        margin-top: 18px;
        gap: 10px;
    }

    .get-access-btn {
        width: min(100%, 230px);
        min-height: 46px;
        padding: 12px 18px;
        font-size: 0.88rem;
    }

    .landing-auth-meta {
        font-size: 0.82rem;
        line-height: 1.45;
    }

    .video-shell,
    .video-player,
    .video {
        border-radius: 18px;
    }

    .video-player {
        aspect-ratio: 16 / 9;
    }

    .video-play-badge {
        width: 52px;
        height: 52px;
        font-size: 16px;
    }

    .content-section,
    .final-cta,
    .faq-section,
    .account-hero,
    .account-empty,
    .account-actions-panel {
        margin-top: 20px;
    }

    .section-heading h2 {
        margin-top: 8px;
        font-size: clamp(1.28rem, 6.6vw, 1.62rem);
        line-height: 1.15;
    }

    .steps-grid,
    .benefits-grid,
    .faq-list,
    .account-grid {
        gap: 10px;
        margin-top: 16px;
    }

    .step-card,
    .benefit-card,
    .account-stat-card {
        padding: 14px;
        border-radius: 18px;
    }

    .step-card h3,
    .benefit-card h3 {
        margin-top: 9px;
        font-size: 0.98rem;
        line-height: 1.3;
    }

    .step-card p {
        margin-top: 7px;
        font-size: 0.84rem;
        line-height: 1.45;
    }

    .step-proof {
        margin-top: 12px;
        border-radius: 18px;
    }

    .screenshot-image {
        min-height: 320px;
        max-height: 420px;
        object-fit: contain;
    }

    .step-proof figcaption {
        padding: 10px 12px 12px;
        font-size: 0.82rem;
    }

    .benefit-card {
        gap: 12px;
    }

    .benefit-icon {
        width: 38px;
        height: 38px;
        border-radius: 12px;
    }

    .final-copy,
    .account-copy,
    .legal-intro,
    .legal-copy,
    .legal-list li {
        margin-top: 12px;
        font-size: 0.88rem;
        line-height: 1.5;
    }

    .legal-title {
        font-size: 1.56rem;
    }

    .legal-meta,
    .footer-text-link {
        font-size: 0.84rem;
        line-height: 1.5;
    }

    .legal-section h2,
    .contact-card h2 {
        font-size: 1.24rem;
    }

    .contact-card {
        padding: 18px 16px;
    }

    .contact-link-list {
        gap: 10px;
    }

    .faq-item {
        border-radius: 16px;
    }

    .faq-item summary {
        padding: 14px 44px 14px 14px;
        font-size: 0.9rem;
    }

    .faq-item summary::after {
        right: 16px;
    }

    .faq-answer {
        padding: 0 14px;
    }

    .faq-item.is-open .faq-answer {
        padding: 0 14px;
    }

    .faq-answer p {
        padding-bottom: 14px;
        font-size: 0.84rem;
        line-height: 1.5;
    }

    .footer {
        padding-top: 22px;
    }

    .footer-copy,
    .footer-meta {
        font-size: 0.84rem;
        line-height: 1.5;
    }

    .auth-modal {
        align-items: flex-start;
        padding: max(48px, calc(env(safe-area-inset-top) + 38px)) 10px max(18px, env(safe-area-inset-bottom));
    }

    .auth-modal-card {
        padding: 22px 16px 16px;
        border-radius: 22px;
    }

    .pro-mode-modal-card,
    .pro-proof-modal-card {
        padding: 22px 16px 18px;
        border-radius: 22px;
    }

    .auth-modal-title {
        font-size: 1.42rem;
    }

    .pro-mode-title {
        font-size: 1.78rem;
    }

    .auth-modal-body,
    .auth-alert {
        font-size: 0.88rem;
        line-height: 1.5;
    }

    .auth-input {
        min-height: 48px;
        padding: 12px 14px;
        font-size: 0.92rem;
    }

    .auth-action-button {
        min-height: 48px;
    }

    .pro-flow-step-card {
        padding: 14px;
    }

    .pro-flow-step-title {
        font-size: 0.94rem;
    }

    .pro-flow-step-body,
    .pro-mode-subtitle,
    .pro-mode-helper,
    .pro-mode-faq-answer,
    .proof-field-helper {
        font-size: 0.88rem;
        line-height: 1.5;
    }

    .pro-mode-primary-button,
    .pro-mode-secondary-button {
        min-height: 50px;
    }

    .account-status-pill {
        min-height: 34px;
        padding: 0 12px;
        font-size: 0.82rem;
    }

    .account-stat-value {
        margin-top: 10px;
        font-size: 1.05rem;
    }

    .account-empty-actions,
    .account-actions-row,
    .auth-actions {
        gap: 8px;
    }
}

@media (hover: none) {
    .get-access-btn:hover,
    .footer-link:hover {
        transform: none;
        filter: none;
    }
}

@media (min-width: 760px) {
    body {
        padding: 40px 24px 56px;
    }

    .hero,
    .content-section,
    .final-cta,
    .legal-hero,
    .legal-section,
    .account-hero,
    .account-empty,
    .account-actions-panel {
        padding: 36px;
    }

    .site-header {
        align-items: center;
        padding: 20px 24px;
    }

    .hero {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
        align-items: center;
    }

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

    .mini-description,
    .final-copy {
        margin-left: 0;
        margin-right: 0;
    }

    .hero-actions {
        justify-items: flex-start;
    }

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

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

    .auth-modal-card {
        padding: 32px 28px;
    }

    .pro-mode-modal-card,
    .pro-proof-modal-card {
        width: min(640px, 100%);
        padding: 32px 28px;
    }

    .auth-actions,
    .account-empty-actions,
    .account-actions-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .account-actions-panel {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: end;
        gap: 22px;
    }

    .footer {
        padding: 32px 0 8px;
    }

    .footer-top,
    .footer-bottom {
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
    }

}

@media (min-width: 1180px) {
    .page-shell {
        width: min(1180px, 100%);
    }

    .hero,
    .content-section,
    .final-cta,
    .legal-hero,
    .legal-section,
    .account-hero,
    .account-empty,
    .account-actions-panel {
        padding: 40px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation: none !important;
        transition-duration: 0.01ms !important;
        transition-delay: 0ms !important;
    }
}

/* 2.0 Premium Casino Tech overrides */

:root {
    --bg: #04060b;
    --panel: rgba(11, 16, 24, 0.78);
    --panel-strong: rgba(8, 12, 19, 0.94);
    --panel-soft: rgba(255, 255, 255, 0.05);
    --text: #f6f8fd;
    --muted: #9ca9bd;
    --line: rgba(145, 176, 235, 0.14);
    --line-strong: rgba(120, 174, 255, 0.36);
    --accent: #4f8fff;
    --accent-strong: #9dc5ff;
    --accent-warm: #d89d5b;
    --shadow: 0 32px 72px rgba(0, 0, 0, 0.48);
}

body {
    position: relative;
    background-color: #04060b;
    background-image:
        linear-gradient(180deg, rgba(4, 6, 11, 0.82), rgba(4, 6, 11, 0.96)),
        radial-gradient(circle at 18% 14%, rgba(79, 143, 255, 0.18), transparent 28%),
        radial-gradient(circle at 84% 78%, rgba(216, 157, 91, 0.12), transparent 24%),
        url('./hero-bg_1hero-bg.webp');
    background-attachment: fixed;
}

body::before,
body::after {
    content: "";
    position: fixed;
    pointer-events: none;
    z-index: -1;
    filter: blur(18px);
}

body::before {
    width: 420px;
    height: 420px;
    left: -120px;
    top: 56px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(79, 143, 255, 0.18) 0%, rgba(79, 143, 255, 0) 72%);
}

body::after {
    width: 360px;
    height: 360px;
    right: -100px;
    bottom: 40px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(216, 157, 91, 0.12) 0%, rgba(216, 157, 91, 0) 72%);
}

.page-shell {
    width: min(1200px, 100%);
}

.panel {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(16, 22, 33, 0.92), rgba(7, 11, 18, 0.94));
    border: 1px solid rgba(154, 188, 255, 0.12);
    border-radius: 30px;
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.05) inset,
        0 34px 78px rgba(0, 0, 0, 0.44);
    backdrop-filter: blur(14px);
}

.panel::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(135deg, rgba(117, 167, 255, 0.12), transparent 28%),
        linear-gradient(315deg, rgba(216, 157, 91, 0.08), transparent 22%);
    opacity: 0.85;
}

.site-header {
    position: sticky;
    top: max(14px, env(safe-area-inset-top));
    z-index: 20;
    margin-bottom: 20px;
    padding: 16px 18px;
    background: linear-gradient(180deg, rgba(10, 16, 26, 0.9), rgba(8, 12, 19, 0.9));
}

.site-nav {
    grid-template-columns: minmax(150px, 1fr) auto minmax(220px, 1fr);
    gap: 14px;
}

.site-main-links {
    gap: clamp(14px, 2vw, 28px);
}


.nav-button,
.header-account-link {
    min-height: 44px;
    padding: 0 18px;
    border-radius: 16px;
}

.nav-button-primary {
    background: linear-gradient(135deg, #2f63bb 0%, #4482ef 50%, #7ab2ff 100%);
    box-shadow: 0 18px 34px rgba(50, 96, 186, 0.3);
}

.nav-button-secondary,
.header-account-link {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
}

.hero.hero-v2 {
    display: block;
    padding: 24px;
}

.hero.hero-v2 .hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
    gap: 24px;
    justify-items: stretch;
}

.hero.hero-v2 .hero-copy-v2 {
    position: relative;
    z-index: 1;
    width: 100%;
    text-align: center;
}

.hero.hero-v2 .hero-kicker-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.hero.hero-v2 .hero-kicker-row .eyebrow {
    width: 100%;
    text-align: center;
}

.eyebrow-badge {
    padding: 10px 14px;
    border: 1px solid rgba(126, 177, 255, 0.24);
    border-radius: 999px;
    background: rgba(79, 143, 255, 0.1);
    box-shadow: 0 10px 24px rgba(79, 143, 255, 0.12);
}

.hero.hero-v2 .big-title {
    width: 100%;
    max-width: none;
    margin: 14px auto 0;
    font-size: clamp(2.45rem, 4.5vw, 4rem);
    line-height: 1;
    letter-spacing: -0.04em;
    text-align: center;
    text-wrap: balance;
}

.hero.hero-v2 .mini-description {
    width: 100%;
    max-width: none;
    margin: 16px auto 0;
    color: rgba(230, 237, 250, 0.78);
    font-size: 0.96rem;
    line-height: 1.58;
    text-align: center;
}

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

.hero-cta-link,
.hero-auth-button,
.final-cta-link,
.final-auth-button {
    width: min(100%, 240px);
    min-height: 54px;
    padding: 0 20px;
    border-radius: 18px;
}

.hero-cta-link,
.final-cta-link {
    justify-content: center;
}

.hero-auth-button,
.final-auth-button {
    min-width: 0;
}

.hero.hero-v2 .hero-cta-link {
    width: min(100%, 270px);
    min-height: 58px;
    font-size: 1.08rem;
}

.site-header .nav-button,
.site-header .header-account-link,
.hero.hero-v2 .hero-cta-link,
.access-link,
.access-button,
.final-cta-link,
.final-auth-button,
.auth-action-button,
.site-mobile-menu-link {
    font-size: 1.08rem;
}

.hero-signal-card,
.signature-card,
.access-card,
.legal-overview-card,
.contact-highlight-card,
.support-card,
.account-stat-card,
.contact-card,
.legal-section,
.account-actions-panel,
.account-empty,
.account-hero {
    position: relative;
    overflow: hidden;
    padding: 18px;
    border-radius: 24px;
    border: 1px solid rgba(160, 190, 255, 0.12);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018));
}

.hero-signal-card::before,
.signature-card::before,
.access-card::before,
.legal-overview-card::before,
.contact-highlight-card::before,
.support-card::before,
.account-stat-card::before,
.contact-card::before,
.legal-section::before,
.account-actions-panel::before,
.account-empty::before,
.account-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(135deg, rgba(109, 160, 255, 0.12), transparent 32%);
}

.hero-signal-label,
.hero-float-label,
.hero-band-label,
.access-card-kicker {
    display: inline-block;
    color: var(--accent-strong);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.hero-signal-card strong,
.hero-float strong,
.access-card h3,
.legal-overview-card h2,
.contact-highlight-card h2,
.support-card h2,
.signature-card h3,
.account-stat-value,
.legal-section h2,
.contact-card h2 {
    display: block;
    margin-top: 10px;
    font-size: 1.22rem;
    line-height: 1.22;
}

.hero-signal-card p,
.hero-float p,
.signature-card p,
.access-card p,
.legal-overview-card p,
.contact-highlight-card p,
.support-card p,
.section-lead,
.command-bullet,
.account-copy,
.legal-copy,
.legal-intro,
.legal-list li {
    color: rgba(222, 230, 243, 0.72);
}

.hero-signal-card p,
.signature-card p,
.access-card p {
    margin-top: 10px;
    line-height: 1.65;
}

.hero.hero-v2 .hero-media-v2 {
    position: relative;
    min-height: 0;
    width: 100%;
    margin: 0 auto;
}

.hero.hero-v2 .hero-media-v2 .video-player,
.hero.hero-v2 .hero-media-v2 .video {
    border-radius: 30px;
}

.hero.hero-v2 .hero-media-v2 .video-player {
    width: 100%;
    aspect-ratio: 16 / 10;
    border: 1px solid rgba(160, 190, 255, 0.14);
    box-shadow: 0 34px 72px rgba(0, 0, 0, 0.38);
}

.section-heading-left {
    text-align: left;
}

.section-lead {
    max-width: 62ch;
    margin-top: 16px;
    line-height: 1.72;
}

.signature-section,
.flow-section,
.access-section,
.final-cta-v2,
.faq-section-v2,
.legal-hero,
.legal-section,
.account-hero,
.account-empty,
.account-actions-panel {
    margin-top: 28px;
    padding: 32px 22px;
}

.signature-grid,
.access-grid,
.legal-overview-grid,
.contact-highlights-grid,
.account-support-grid {
    margin-top: 24px;
    display: grid;
    gap: 14px;
}

.signature-icon {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(79, 143, 255, 0.2), rgba(79, 143, 255, 0.08));
    color: #b8d4ff;
    font-size: 1.05rem;
}

.signature-card h3,
.access-card h3 {
    margin-top: 16px;
}

.steps-grid-v2 .step-card {
    border-radius: 24px;
    padding: 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.016));
}

.steps-grid-v2 .step-proof {
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(12, 18, 28, 0.9), rgba(9, 13, 20, 0.92));
}

.access-card-featured {
    border-color: rgba(122, 178, 255, 0.34);
    background:
        linear-gradient(180deg, rgba(57, 90, 146, 0.22), rgba(255, 255, 255, 0.03)),
        linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018));
    box-shadow: 0 22px 46px rgba(50, 96, 186, 0.16);
}

.access-card-pro {
    border-color: rgba(229, 201, 112, 0.28);
    background:
        radial-gradient(circle at top right, rgba(255, 230, 153, 0.14), transparent 34%),
        linear-gradient(180deg, rgba(49, 38, 16, 0.98), rgba(22, 17, 10, 0.98));
    box-shadow: inset 0 1px 0 rgba(255, 248, 222, 0.06);
}

.access-card-pro::before {
    background: linear-gradient(135deg, rgba(241, 211, 122, 0.18), transparent 36%);
}

.access-card-pro .access-card-kicker {
    color: #ffe6a0;
}

.access-card-pro h3 {
    color: #fff8e3;
}

.access-card-pro p,
.access-card-pro .access-list {
    color: rgba(255, 246, 217, 0.82);
}

.access-card-pro .access-list li::marker {
    color: #f1d37a;
}

.access-pill {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    margin-top: 12px;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 0.84rem;
    font-weight: 800;
}

.access-pill-success {
    background: rgba(110, 215, 156, 0.14);
    border: 1px solid rgba(110, 215, 156, 0.26);
    color: #c9f8dc;
}

.access-link-pro {
    width: 100%;
    min-width: 0;
    min-height: 46px;
    border-radius: 18px;
    border-color: rgba(229, 201, 112, 0.3);
    background: linear-gradient(145deg, #caa03a, #9f7723);
    color: #fff8e3;
    box-shadow: 0 18px 30px rgba(117, 82, 13, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.14);
    animation: glowGold 1.8s infinite alternate;
}

.access-link-pro:hover,
.access-link-pro:focus-visible {
    border-color: rgba(229, 201, 112, 0.34);
    background: linear-gradient(145deg, #d3aa46, #a87d26);
    color: #fff8e3;
    box-shadow: 0 18px 32px rgba(189, 142, 31, 0.42), inset 0 1px 0 rgba(255, 248, 220, 0.16);
}

.access-list {
    margin-top: 16px;
    padding-left: 18px;
    display: grid;
    gap: 10px;
    color: rgba(222, 230, 243, 0.76);
}

.access-link,
.access-button {
    margin-top: 18px;
    width: fit-content;
    min-width: 186px;
}

.access-card .footer-link,
.access-card .nav-button {
    justify-content: center;
}

.command-layout {
    display: grid;
    gap: 22px;
}

.command-bullets {
    margin-top: 20px;
    display: grid;
    gap: 12px;
}

.command-bullet {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.62;
}

.command-dot {
    width: 9px;
    height: 9px;
    margin-top: 0.42rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #86b8ff, #d89d5b);
    box-shadow: 0 0 16px rgba(116, 174, 255, 0.34);
    flex-shrink: 0;
}

.command-proof-stack {
    display: grid;
    gap: 14px;
}

.command-proof {
    margin-top: 0;
}

.final-cta-v2 {
    background:
        linear-gradient(180deg, rgba(20, 29, 44, 0.94), rgba(9, 14, 22, 0.96)),
        radial-gradient(circle at top left, rgba(122, 178, 255, 0.18), transparent 34%);
    text-align: center;
}

.final-cta-v2 .section-heading {
    text-align: center;
}

.final-cta-v2 .section-heading h2,
.final-cta-v2 .final-copy {
    margin-left: auto;
    margin-right: auto;
}

.final-cta-v2 .final-copy {
    max-width: 34ch;
}

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

.faq-section-v2 .faq-list {
    margin-top: 22px;
}

.faq-item {
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.042), rgba(255, 255, 255, 0.018));
}

.footer {
    margin-top: 30px;
    padding: 12px 0 8px;
}

.footer-top {
    padding-bottom: 2px;
}

.footer-links-row {
    border-top-color: rgba(155, 187, 246, 0.11);
}

.footer-copy,
.footer-meta {
    color: rgba(225, 233, 246, 0.66);
}

.account-hero,
.account-empty,
.account-actions-panel,
.account-stat-card,
.contact-card,
.legal-section {
    background:
        linear-gradient(180deg, rgba(17, 24, 36, 0.9), rgba(8, 12, 18, 0.94));
}

.account-hero {
    display: grid;
    gap: 18px;
}

.account-hero-grid {
    display: grid;
    gap: 20px;
}

.account-hero-aside {
    position: relative;
    z-index: 1;
    padding: 18px;
    border-radius: 24px;
    border: 1px solid rgba(160, 190, 255, 0.12);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018));
}

.account-hero-kicker {
    color: var(--accent-strong);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.72rem;
    font-weight: 700;
}

.account-hero-aside h2 {
    margin-top: 12px;
    font-size: clamp(1.4rem, 2.8vw, 1.95rem);
    line-height: 1.16;
}

.account-hero-notes {
    margin-top: 16px;
    display: grid;
    gap: 10px;
}

.account-hero-note {
    padding: 14px 16px;
    border-radius: 18px;
    border: 1px solid rgba(160, 190, 255, 0.1);
    background: rgba(255, 255, 255, 0.025);
    display: grid;
    gap: 6px;
}

.account-hero-note span {
    color: rgba(164, 181, 210, 0.76);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.68rem;
    font-weight: 700;
}

.account-hero-note strong {
    font-size: 0.98rem;
    line-height: 1.25;
}

.account-grid {
    display: grid;
    gap: 14px;
    margin-top: 28px;
}

.account-stat-label {
    color: rgba(157, 174, 203, 0.78);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.72rem;
    font-weight: 700;
}

.account-status-pill {
    width: fit-content;
    min-height: 40px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid rgba(160, 190, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
}

.account-empty-copy h2,
.account-actions-copy h2 {
    font-size: clamp(1.45rem, 3vw, 2rem);
    line-height: 1.14;
}

.account-empty-actions,
.account-actions-row,
.auth-actions {
    display: grid;
    gap: 12px;
}

.support-card h2,
.legal-overview-card h2,
.contact-highlight-card h2 {
    margin-top: 12px;
}

.support-card .contact-action-link {
    margin-top: 18px;
}

.legal-hero {
    margin-top: 28px;
    padding: 32px 22px;
    background:
        linear-gradient(180deg, rgba(16, 24, 37, 0.92), rgba(8, 12, 19, 0.95)),
        radial-gradient(circle at top left, rgba(79, 143, 255, 0.14), transparent 28%);
}

.legal-title {
    max-width: 14ch;
    letter-spacing: -0.03em;
}

.legal-overview-card,
.contact-highlight-card,
.support-card {
    background:
        linear-gradient(180deg, rgba(17, 24, 36, 0.9), rgba(8, 12, 18, 0.94));
}

@keyframes glowGold {
    0% {
        box-shadow: 0 12px 24px rgba(131, 93, 18, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }

    100% {
        box-shadow: 0 18px 32px rgba(189, 142, 31, 0.42), inset 0 1px 0 rgba(255, 248, 220, 0.16);
    }
}

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

.hero-copy-v2,
.hero-media-v2,
.signature-card,
.access-card,
.legal-overview-card,
.contact-highlight-card,
.support-card,
.command-copy,
.command-proof-stack > * {
    animation: premiumRise 0.55s ease both;
}

@media (min-width: 760px) {
    .site-header {
        padding: 18px 22px;
    }

    .hero.hero-v2,
    .signature-section,
    .flow-section,
    .access-section,
    .final-cta-v2,
    .legal-hero,
    .legal-section,
    .account-hero,
    .account-empty,
    .account-actions-panel {
        padding: 36px 32px;
    }

    .signature-grid,
    .access-grid,
    .legal-overview-grid,
    .contact-highlights-grid,
    .account-support-grid,
    .account-grid,
    .contact-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .account-hero-grid {
        grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
        align-items: start;
    }

    .signature-grid,
    .access-grid,
    .legal-overview-grid,
    .contact-highlights-grid,
    .account-support-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .command-layout {
        grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
        align-items: start;
    }

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

}

@media (min-width: 980px) {
    .hero.hero-v2 {
        padding: 32px 36px 36px;
    }

    .hero.hero-v2 .big-title {
        font-size: clamp(3rem, 4vw, 4.15rem);
    }

    .hero.hero-v2 .mini-description {
        font-size: 1rem;
    }

    .hero.hero-v2 .hero-media-v2 .video-player {
        aspect-ratio: 16 / 9;
    }
}

@media (max-width: 979px) {
    .site-header {
        position: relative;
        top: 0;
    }

    .hero.hero-v2 {
        padding: 24px 18px 28px;
    }

    .hero.hero-v2 .hero-grid {
        gap: 20px;
    }

    .hero.hero-v2 .hero-copy-v2,
    .hero.hero-v2 .hero-media-v2 {
        max-width: none;
    }

    .hero.hero-v2 .big-title {
        margin-top: 14px;
        font-size: clamp(2rem, 9.2vw, 3.15rem);
    }

    .hero.hero-v2 .mini-description,
    .section-lead,
    .legal-copy,
    .legal-intro,
    .legal-list li {
        font-size: 0.9rem;
        line-height: 1.65;
    }

    .hero-actions-v2,
    .final-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-cta-link,
    .hero-auth-button,
    .final-cta-link,
    .final-auth-button,
    .access-link,
    .access-button {
        width: 100%;
        min-width: 0;
    }

    .hero.hero-v2 .hero-cta-link {
        width: min(100%, 248px);
        min-height: 56px;
        font-size: 1rem;
    }

    .site-header .nav-button,
    .site-header .header-account-link,
    .hero.hero-v2 .hero-cta-link,
    .access-link,
    .access-button,
    .final-cta-link,
    .final-auth-button,
    .auth-action-button,
    .site-mobile-menu-link {
        font-size: 1rem;
    }

    .hero.hero-v2 .hero-media-v2 {
        min-height: auto;
        max-width: 620px;
    }

    .hero.hero-v2 .hero-media-v2 .video-player {
        aspect-ratio: 16 / 10;
    }

    .hero-signal-card,
    .signature-card,
    .access-card,
    .legal-overview-card,
    .contact-highlight-card,
    .support-card,
    .account-stat-card,
    .contact-card {
        padding: 16px;
        border-radius: 20px;
    }

    .account-hero-aside {
        padding: 16px;
        border-radius: 20px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-copy-v2,
    .hero-media-v2,
    .signature-card,
    .access-card,
    .legal-overview-card,
    .contact-highlight-card,
    .support-card,
    .access-link-pro,
    .command-copy,
    .command-proof-stack > * {
        animation: none !important;
    }
}
