:root {
    --bg: #080507;
    --bg-2: #120a10;
    --panel: rgba(24, 11, 18, 0.74);
    --panel-solid: #160d14;
    --text: #fff7ef;
    --muted: #c8aeb1;
    --soft: #8d7378;
    --red: #ff263d;
    --red-2: #a40d22;
    --cyan: #26f3ef;
    --gold: #f4ba54;
    --green: #28d89c;
    --line: rgba(255, 255, 255, 0.13);
    --line-strong: rgba(255, 255, 255, 0.22);
    --shadow: 0 28px 80px rgba(0, 0, 0, 0.5);
    --radius-lg: 32px;
    --radius-md: 22px;
    --radius-sm: 14px;
    --content: 1180px;
    --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font);
    color: var(--text);
    background:
        radial-gradient(circle at 12% 0%, rgba(255, 38, 61, 0.25), transparent 32rem),
        radial-gradient(circle at 90% 8%, rgba(38, 243, 239, 0.16), transparent 28rem),
        linear-gradient(145deg, #050405 0%, #11060b 42%, #060406 100%);
    line-height: 1.72;
    min-height: 100vh;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.014) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: radial-gradient(circle at center, black, transparent 78%);
    z-index: -1;
}

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

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

p {
    margin: 0 0 1rem;
    color: rgba(255, 247, 239, 0.82);
}

h1,
h2,
h3 {
    line-height: 1.08;
    margin: 0;
    letter-spacing: -0.035em;
}

h1 {
    font-size: clamp(2.6rem, 7vw, 6.4rem);
    max-width: 980px;
}

h2 {
    font-size: clamp(2rem, 4vw, 4.05rem);
}

h3 {
    font-size: clamp(1.25rem, 2vw, 1.8rem);
}

button,
input {
    font: inherit;
}

.skip-link {
    position: fixed;
    top: 14px;
    left: 14px;
    transform: translateY(-160%);
    padding: 0.75rem 1rem;
    background: var(--cyan);
    color: #061113;
    border-radius: 999px;
    z-index: 200;
    transition: transform 0.2s ease;
}

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

.site-topbar {
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid transparent;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.site-topbar.is-sticky {
    background: rgba(5, 4, 5, 0.82);
    border-color: rgba(255, 255, 255, 0.11);
    backdrop-filter: blur(18px);
}

.topbar-inner {
    width: min(var(--content), calc(100% - 32px));
    margin: 0 auto;
    min-height: 82px;
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.brand-mark,
.footer-logo {
    display: inline-flex;
    align-items: center;
    min-width: 148px;
}

.desktop-nav {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.34rem;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 999px;
    background: rgba(255,255,255,0.035);
}

.desktop-nav a,
.mobile-nav a,
.footer-links a {
    color: rgba(255, 247, 239, 0.78);
    transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.desktop-nav a {
    padding: 0.52rem 0.78rem;
    border-radius: 999px;
    font-size: 0.91rem;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
    color: #fff;
    background: rgba(255, 38, 61, 0.15);
}

.header-cta,
.primary-action,
.ghost-action,
.floating-cta,
.cookie-accept {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: 0;
    cursor: pointer;
    min-height: 46px;
    border-radius: 999px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.header-cta,
.primary-action,
.cookie-accept {
    background: linear-gradient(135deg, var(--red), #ff714b 45%, var(--gold));
    color: #160305;
    padding: 0.72rem 1.05rem;
    box-shadow: 0 14px 32px rgba(255, 38, 61, 0.22);
}

.header-cta:hover,
.primary-action:hover,
.cookie-accept:hover,
.floating-cta:hover,
.ghost-action:hover {
    transform: translateY(-2px);
}

.ghost-action {
    color: var(--text);
    border: 1px solid rgba(255,255,255,0.18);
    padding: 0.72rem 1.05rem;
    background: rgba(255,255,255,0.05);
}

.ghost-action:hover {
    border-color: rgba(38, 243, 239, 0.45);
    box-shadow: 0 12px 26px rgba(38, 243, 239, 0.1);
}

.menu-toggle {
    display: none;
    margin-left: auto;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 50%;
    background: rgba(255,255,255,0.045);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.menu-toggle span {
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: var(--text);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

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

.menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
    width: min(var(--content), calc(100% - 32px));
    margin: 0 auto 1rem;
    padding: 0.7rem;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 24px;
    background: rgba(10, 6, 8, 0.94);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow);
}

.mobile-nav a {
    display: block;
    padding: 0.85rem 0.95rem;
    border-radius: 16px;
}

.mobile-nav a:hover {
    background: rgba(255,255,255,0.06);
    color: #fff;
}

.hero-rift {
    position: relative;
    padding: 5.5rem 0 3.25rem;
    isolation: isolate;
}

.hero-glow {
    position: absolute;
    filter: blur(22px);
    pointer-events: none;
    opacity: 0.5;
    z-index: -1;
}

.hero-glow-red {
    width: 42vw;
    height: 42vw;
    left: -12vw;
    top: 7rem;
    background: radial-gradient(circle, rgba(255,38,61,0.52), transparent 64%);
}

.hero-glow-cyan {
    width: 28vw;
    height: 28vw;
    right: 4vw;
    bottom: 3vw;
    background: radial-gradient(circle, rgba(38,243,239,0.33), transparent 63%);
}

.hero-grid {
    width: min(var(--content), calc(100% - 32px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 0.98fr) minmax(360px, 0.82fr);
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}

.eyebrow,
.section-label,
.dock-title {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    gap: 0.45rem;
    color: var(--cyan);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.76rem;
    margin-bottom: 1.1rem;
}

.eyebrow::before,
.section-label::before,
.dock-title::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--red);
    box-shadow: 0 0 16px rgba(255,38,61,0.8);
}

.hero-copy h1 {
    text-wrap: balance;
    text-shadow: 0 0 34px rgba(255, 38, 61, 0.18);
}

.hero-lead {
    margin-top: 1.4rem;
    max-width: 780px;
    font-size: clamp(1.02rem, 1.35vw, 1.16rem);
}

.hero-lead p:nth-child(3) {
    padding-left: 1.1rem;
    border-left: 3px solid rgba(244, 186, 84, 0.9);
    color: rgba(255, 232, 201, 0.9);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 1.6rem;
}

.responsible-note {
    margin-top: 1.35rem;
    max-width: 680px;
    padding: 1rem 1.15rem;
    border: 1px solid rgba(244, 186, 84, 0.25);
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, rgba(244, 186, 84, 0.08), rgba(255, 38, 61, 0.05));
    color: rgba(255, 240, 220, 0.82);
}

.hero-device {
    position: relative;
    margin: 0;
    border-radius: 38px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.14);
    background: rgba(255,255,255,0.04);
    box-shadow: var(--shadow), 0 0 0 1px rgba(255, 38, 61, 0.1) inset;
    transform: rotate(1.5deg);
}

.hero-device::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(125deg, rgba(255,255,255,0.18), transparent 35%, rgba(38,243,239,0.12) 78%, transparent);
    pointer-events: none;
    mix-blend-mode: screen;
}

.hero-device img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.hero-device figcaption,
.media-frame figcaption {
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    padding: 0.72rem 0.85rem;
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 18px;
    color: rgba(255,255,255,0.88);
    background: rgba(8, 5, 7, 0.72);
    backdrop-filter: blur(18px);
    font-size: 0.87rem;
    line-height: 1.45;
}

.navigation-dock,
.signal-lab,
.image-proof,
.article-stack,
.faq-hangar,
.last-call,
.site-footer {
    width: min(var(--content), calc(100% - 32px));
    margin-left: auto;
    margin-right: auto;
}

.navigation-dock {
    margin-top: 1rem;
    margin-bottom: 2rem;
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 1rem;
    align-items: center;
    padding: 1rem;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-md);
    background: rgba(255,255,255,0.045);
    backdrop-filter: blur(16px);
}

.dock-title {
    margin: 0;
}

.dock-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.dock-links a {
    padding: 0.62rem 0.8rem;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.78);
    background: rgba(255,255,255,0.035);
}

.dock-links a:hover,
.dock-links a:focus-visible {
    color: #061113;
    background: var(--cyan);
    border-color: transparent;
}

.signal-lab {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(280px, 0.62fr) minmax(300px, 0.72fr);
    gap: 1rem;
    align-items: stretch;
}

.lab-copy,
.counter-deck,
.tab-console,
.proof-card,
.proof-text,
.article-band,
.faq-hangar,
.last-call {
    border: 1px solid rgba(255,255,255,0.12);
    background: linear-gradient(145deg, rgba(255,255,255,0.074), rgba(255,255,255,0.028));
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 70px rgba(0,0,0,0.28);
    backdrop-filter: blur(18px);
}

.lab-copy,
.tab-console,
.proof-text {
    padding: clamp(1.25rem, 2vw, 2rem);
}

.lab-copy h2,
.proof-text h2,
.last-call h2 {
    font-size: clamp(1.7rem, 2.7vw, 3rem);
}

.counter-deck {
    padding: 1rem;
    display: grid;
    gap: 0.8rem;
}

.counter-card {
    min-height: 116px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1rem;
    border-radius: 24px;
    background: rgba(0,0,0,0.24);
    border: 1px solid rgba(255,255,255,0.09);
}

.counter-card span {
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1;
    letter-spacing: -0.08em;
    color: var(--gold);
}

.counter-card small {
    margin-top: 0.4rem;
    color: var(--muted);
}

.tab-console {
    display: flex;
    flex-direction: column;
}

.tab-buttons {
    display: flex;
    gap: 0.4rem;
    padding: 0.35rem;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 999px;
    background: rgba(0,0,0,0.24);
}

.tab-button {
    flex: 1;
    min-height: 42px;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    color: rgba(255,255,255,0.72);
    background: transparent;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.tab-button.is-active {
    color: #061113;
    background: var(--cyan);
}

.tab-panel {
    padding: 1.1rem 0.2rem 0;
}

.image-proof {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: minmax(0, 0.98fr) minmax(300px, 0.52fr);
    gap: 1rem;
    align-items: stretch;
}

.proof-card {
    position: relative;
    padding: 0.6rem;
    overflow: hidden;
}

.proof-card::after {
    content: "";
    position: absolute;
    inset: auto 1rem 1rem auto;
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, rgba(38,243,239,0.28), transparent 70%);
    pointer-events: none;
}

.proof-card img {
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
    border-radius: 26px;
}

.proof-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.article-stack {
    margin-top: 1rem;
    display: grid;
    gap: 1rem;
}

.article-band {
    position: relative;
    overflow: hidden;
    padding: clamp(1.35rem, 3vw, 2.65rem);
}

.article-band::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255,38,61,0.8), rgba(38,243,239,0.72), transparent);
    opacity: 0.7;
}

.band-heading {
    display: grid;
    grid-template-columns: minmax(210px, 0.45fr) minmax(0, 1fr);
    gap: 1rem;
    align-items: start;
    margin-bottom: clamp(1.2rem, 3vw, 2.2rem);
}

.band-heading .section-label {
    position: sticky;
    top: 102px;
}

.rich-flow {
    max-width: 100%;
}

.rich-flow > p,
.rich-flow > ul,
.rich-flow > ol,
.rich-flow > .table-scroll,
.rich-flow > .media-frame {
    margin-left: clamp(0rem, 21vw, 250px);
}

.rich-flow > p,
.rich-flow li {
    color: rgba(255,247,239,0.82);
}

.rich-flow a {
    color: var(--cyan);
    border-bottom: 1px solid rgba(38,243,239,0.35);
}

.rich-flow .subline {
    margin: 1.9rem 0 0.9rem clamp(0rem, 21vw, 250px);
    color: #fff;
}

.mark-list,
.step-list {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 0.64rem;
}

.mark-list li,
.step-list li {
    position: relative;
    padding: 0.8rem 0.9rem 0.8rem 2.45rem;
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 18px;
    background: rgba(255,255,255,0.035);
}

.mark-list li::before,
.step-list li::before {
    content: "";
    position: absolute;
    left: 0.9rem;
    top: 1.22rem;
    width: 0.72rem;
    height: 0.72rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--red), var(--gold));
    box-shadow: 0 0 14px rgba(255,38,61,0.42);
}

.step-list li::before {
    border-radius: 4px;
    background: linear-gradient(135deg, var(--cyan), var(--green));
}

.table-scroll {
    overflow-x: auto;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(0,0,0,0.18);
}

.audit-table {
    width: 100%;
    min-width: 680px;
    border-collapse: collapse;
}

.audit-table th,
.audit-table td {
    padding: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    vertical-align: top;
    text-align: left;
}

.audit-table th {
    color: var(--cyan);
    background: rgba(38,243,239,0.08);
    letter-spacing: 0.03em;
}

.audit-table tr:last-child td {
    border-bottom: 0;
}

.audit-table td:first-child {
    color: #fff;
    width: 24%;
}

.media-frame {
    position: relative;
    margin-top: 1.4rem;
    margin-bottom: 1.4rem;
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.14);
    background: rgba(255,255,255,0.04);
    box-shadow: 0 24px 70px rgba(0,0,0,0.32);
}

.media-frame img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.section-summary {
    background:
        linear-gradient(145deg, rgba(244,186,84,0.13), rgba(255,255,255,0.035)),
        rgba(255,255,255,0.04);
}

.section-authority,
.section-kyc {
    background:
        radial-gradient(circle at 100% 0%, rgba(38,243,239,0.16), transparent 32rem),
        linear-gradient(145deg, rgba(255,255,255,0.07), rgba(255,255,255,0.026));
}

.section-bonus,
.section-payment {
    background:
        radial-gradient(circle at 0% 12%, rgba(255,38,61,0.17), transparent 30rem),
        linear-gradient(145deg, rgba(255,255,255,0.07), rgba(255,255,255,0.026));
}

.section-responsible {
    border-color: rgba(244,186,84,0.32);
    background:
        linear-gradient(145deg, rgba(244,186,84,0.12), rgba(164,13,34,0.08)),
        rgba(255,255,255,0.035);
}

.faq-hangar {
    margin-top: 1rem;
    padding: clamp(1.35rem, 3vw, 2.65rem);
    background:
        radial-gradient(circle at 90% 10%, rgba(38,243,239,0.15), transparent 28rem),
        linear-gradient(145deg, rgba(255,255,255,0.078), rgba(255,255,255,0.026));
}

.faq-hangar > p {
    max-width: 760px;
    margin-top: 1rem;
}

.faq-grid {
    margin-top: 1.5rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
}

.faq-item {
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 22px;
    background: rgba(0,0,0,0.22);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    min-height: 72px;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    color: #fff;
    background: transparent;
    border: 0;
    text-align: left;
    cursor: pointer;
}

.faq-icon {
    flex: 0 0 auto;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.16);
    position: relative;
}

.faq-icon::before,
.faq-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 13px;
    height: 2px;
    background: var(--cyan);
    border-radius: 999px;
    transform: translate(-50%, -50%);
    transition: transform 0.2s ease;
}

.faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-question[aria-expanded="true"] .faq-icon::after {
    transform: translate(-50%, -50%) rotate(0deg);
}

.faq-answer {
    padding: 0 1rem 1rem;
}

.faq-answer p {
    margin: 0;
    color: rgba(255,247,239,0.78);
}

.last-call {
    margin-top: 1rem;
    margin-bottom: 1rem;
    padding: clamp(1.35rem, 3vw, 2.3rem);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1.5rem;
    align-items: center;
    background:
        linear-gradient(120deg, rgba(255,38,61,0.2), rgba(38,243,239,0.07)),
        rgba(255,255,255,0.04);
}

.floating-cta {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 90;
    padding: 0.8rem 1rem;
    color: #061113;
    background: var(--cyan);
    box-shadow: 0 18px 45px rgba(38,243,239,0.24);
    transform: translateY(120px);
}

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

.cookie-note {
    position: fixed;
    left: 18px;
    bottom: 18px;
    z-index: 110;
    width: min(420px, calc(100% - 36px));
    padding: 1rem;
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 24px;
    background: rgba(8,5,7,0.93);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow);
}

.cookie-note p {
    margin-bottom: 0.85rem;
    font-size: 0.93rem;
}

.cookie-accept {
    min-height: 42px;
    width: 100%;
}

.site-footer {
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding: 1.2rem;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 30px;
    background: rgba(0,0,0,0.24);
}

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

.footer-grid p {
    margin: 0;
    max-width: 720px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: flex-end;
}

.footer-links a {
    padding: 0.58rem 0.75rem;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 999px;
}

.footer-links a:hover {
    color: #fff;
    border-color: rgba(38,243,239,0.5);
}

.footer-bottom {
    margin-top: 1rem;
    padding-top: 1rem;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: var(--soft);
    font-size: 0.9rem;
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

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

@media (max-width: 1100px) {
    .desktop-nav,
    .header-cta {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .hero-grid,
    .signal-lab,
    .image-proof {
        grid-template-columns: 1fr;
    }

    .hero-device {
        transform: none;
    }

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

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

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

@media (max-width: 820px) {
    .topbar-inner {
        min-height: 70px;
    }

    .hero-rift {
        padding-top: 3rem;
    }

    .navigation-dock,
    .band-heading,
    .last-call {
        grid-template-columns: 1fr;
    }

    .band-heading .section-label {
        position: static;
    }

    .rich-flow > p,
    .rich-flow > ul,
    .rich-flow > ol,
    .rich-flow > .table-scroll,
    .rich-flow > .media-frame,
    .rich-flow .subline {
        margin-left: 0;
    }

    .counter-deck,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .hero-device figcaption,
    .media-frame figcaption {
        position: static;
        border-radius: 0;
        border-left: 0;
        border-right: 0;
        border-bottom: 0;
        background: rgba(8,5,7,0.88);
    }

    .proof-card img {
        min-height: 240px;
    }

    .footer-bottom {
        flex-direction: column;
    }
}

@media (max-width: 560px) {
    h1 {
        font-size: clamp(2.15rem, 13vw, 3.2rem);
    }

    .topbar-inner,
    .navigation-dock,
    .signal-lab,
    .image-proof,
    .article-stack,
    .faq-hangar,
    .last-call,
    .site-footer,
    .mobile-nav {
        width: min(100% - 22px, var(--content));
    }

    .brand-mark img,
    .footer-logo img {
        width: 142px;
        height: auto;
    }

    .hero-actions {
        flex-direction: column;
    }

    .primary-action,
    .ghost-action {
        width: 100%;
    }

    .tab-buttons {
        border-radius: 22px;
        flex-direction: column;
    }

    .article-band,
    .faq-hangar,
    .last-call {
        border-radius: 24px;
    }

    .floating-cta {
        right: 11px;
        bottom: 11px;
        font-size: 0.9rem;
    }
}

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

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}
