:root {
    --primary: #0052ff;
    --primary-dark: #003ec7;
    --primary-soft: rgba(0, 82, 255, 0.09);
    --ink: #101319;
    --text: #3e4653;
    --muted: #737d8c;
    --line: rgba(20, 33, 61, 0.09);
    --surface: rgba(255, 255, 255, 0.78);
    --surface-strong: rgba(255, 255, 255, 0.93);
    --background: #f6f8fc;
    --success: #16a36a;
    --shadow: 0 24px 70px rgba(34, 63, 115, 0.11);
    --shadow-soft: 0 12px 36px rgba(34, 63, 115, 0.08);
    --radius-card: 20px;
    --radius-button: 12px;
    --content-width: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    color: var(--text);
    background: var(--background);
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button,
input {
    font: inherit;
}

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

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

.ui-icon {
    width: 1em;
    height: 1em;
    flex: 0 0 auto;
    object-fit: contain;
}

.ambient-glow {
    position: fixed;
    z-index: -1;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(0, 82, 255, 0.12);
    filter: blur(80px);
    pointer-events: none;
}

.ambient-glow-one {
    top: 90px;
    right: 6%;
}

.ambient-glow-two {
    top: 720px;
    left: -130px;
    opacity: 0.55;
}

.section-shell {
    width: min(calc(100% - 40px), var(--content-width));
    margin-inline: auto;
}

.glass-panel,
.glass-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.7), rgba(238, 246, 255, 0.5));
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow:
        0 20px 52px rgba(34, 63, 115, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.96),
        inset 0 -1px 0 rgba(0, 82, 255, 0.06);
    backdrop-filter: blur(28px) saturate(150%);
    -webkit-backdrop-filter: blur(28px) saturate(150%);
}

.glass-card {
    border-radius: var(--radius-card);
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    padding: 18px 20px 0;
}

.nav-shell {
    width: min(100%, 1240px);
    min-height: 66px;
    margin: 0 auto;
    padding: 9px 11px 9px 18px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.scrolled .nav-shell {
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 14px 40px rgba(34, 63, 115, 0.13);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--ink);
    font-size: 17px;
    font-weight: 760;
    letter-spacing: -0.02em;
    white-space: nowrap;
}

.brand img {
    width: 43px;
    height: 31px;
    object-fit: contain;
}

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

.main-nav a,
.text-link {
    padding: 10px 13px;
    border-radius: 10px;
    color: #4d5664;
    font-size: 14px;
    font-weight: 600;
    transition: color 160ms ease, background 160ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.text-link:hover,
.text-link:focus-visible {
    color: var(--primary);
    background: var(--primary-soft);
    outline: none;
}

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

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    margin-left: auto;
    border: 0;
    border-radius: 12px;
    color: var(--ink);
    background: rgba(245, 247, 252, 0.92);
    font-size: 22px;
    cursor: pointer;
}

.button {
    min-height: 44px;
    padding: 0 18px;
    border: 1px solid var(--primary);
    border-radius: var(--radius-button);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #fff;
    background: var(--primary);
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    box-shadow: 0 10px 24px rgba(0, 82, 255, 0.2);
    cursor: pointer;
    transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.button:hover,
.button:focus-visible {
    color: #fff;
    background: var(--primary-dark);
    box-shadow: 0 14px 30px rgba(0, 82, 255, 0.28);
    transform: translateY(-2px);
    outline: none;
}

.button-small {
    min-height: 44px;
    padding-inline: 17px;
}

.button-large {
    min-height: 52px;
    padding-inline: 22px;
    font-size: 15px;
}

.button-secondary {
    color: var(--ink);
    background: rgba(255, 255, 255, 0.74);
    border-color: rgba(20, 33, 61, 0.1);
    box-shadow: none;
}

.button-secondary:hover,
.button-secondary:focus-visible {
    color: var(--primary);
    background: #fff;
    border-color: rgba(0, 82, 255, 0.22);
    box-shadow: var(--shadow-soft);
}

.hero {
    min-height: 800px;
    padding-top: 162px;
    padding-bottom: 100px;
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(460px, 1.08fr);
    align-items: center;
    gap: clamp(48px, 7vw, 94px);
}

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 760;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.eyebrow {
    padding: 8px 12px;
    border: 1px solid rgba(0, 82, 255, 0.11);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.76);
    box-shadow: 0 8px 24px rgba(34, 63, 115, 0.06);
}

.hero h1 {
    max-width: 640px;
    margin: 25px 0 22px;
    color: var(--ink);
    font-size: clamp(48px, 5.5vw, 76px);
    font-weight: 760;
    letter-spacing: -0.055em;
    line-height: 1.02;
}

.hero h1 span {
    color: var(--primary);
}

.hero-description {
    max-width: 610px;
    margin: 0;
    color: #596271;
    font-size: 18px;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.hero-assurances {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
    margin-top: 28px;
    color: #657080;
    font-size: 13px;
    font-weight: 600;
}

.hero-assurances span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.hero-assurances .ui-icon {
    width: 15px;
    height: 15px;
}

.hero-product {
    position: relative;
    padding: 26px;
}

.hero-product::before {
    content: "";
    position: absolute;
    inset: 10% 8%;
    z-index: -1;
    border-radius: 50%;
    background: rgba(0, 82, 255, 0.16);
    filter: blur(75px);
}

.product-window {
    position: relative;
    z-index: 2;
    padding: 22px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(235, 244, 255, 0.52));
    box-shadow:
        0 34px 90px rgba(26, 56, 110, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.98);
}

.restored-btc-chart {
    margin-top: 18px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.96);
    border-radius: 16px;
    background: rgba(247, 250, 255, 0.92);
    box-shadow: inset 0 0 0 1px rgba(0, 82, 255, 0.03);
}

.restored-btc-chart .chart-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 18px;
}

.restored-btc-chart .chart-title {
    margin-top: 3px;
    color: var(--ink);
    font-size: 16px;
    font-weight: 720;
}

.restored-btc-chart .chart-price {
    display: grid;
    justify-items: end;
    gap: 5px;
}

.restored-btc-chart .price {
    color: var(--ink);
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 760;
    letter-spacing: -0.04em;
    line-height: 1;
    transition: color 0.3s ease, transform 0.3s ease;
}

.restored-btc-chart .change {
    padding: 4px 8px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 750;
}

.restored-btc-chart .change.profit {
    color: #059669;
    background: #ecfdf5;
}

.restored-btc-chart .change.loss {
    color: #dc2626;
    background: #fef2f2;
}

.restored-btc-chart .kline-chart {
    display: flex;
    height: 220px;
    margin-bottom: 10px;
}

.restored-btc-chart .price-axis {
    width: 70px;
    padding: 7px 10px 7px 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.restored-btc-chart .price-label {
    color: #8c96a8;
    font-size: 10px;
    text-align: right;
}

.restored-btc-chart .chart-area {
    position: relative;
    flex: 1;
    overflow: hidden;
    border: 1px solid rgba(0, 82, 255, 0.08);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.74);
}

.restored-btc-chart .grid-lines,
.restored-btc-chart .kline-container {
    position: absolute;
    inset: 0;
}

.restored-btc-chart .grid-lines {
    pointer-events: none;
}

.restored-btc-chart .grid-line.horizontal {
    position: absolute;
    width: 100%;
    height: 1px;
    background: rgba(12, 23, 51, 0.06);
}

.restored-btc-chart .grid-line.horizontal:nth-child(1) { top: 20%; }
.restored-btc-chart .grid-line.horizontal:nth-child(2) { top: 40%; }
.restored-btc-chart .grid-line.horizontal:nth-child(3) { top: 60%; }
.restored-btc-chart .grid-line.horizontal:nth-child(4) { top: 80%; }

.restored-btc-chart .kline-container {
    z-index: 1;
    padding: 12px 10px;
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
}

.restored-btc-chart .kline {
    position: relative;
    width: 10px;
    min-height: 20px;
    border-radius: 2px;
    transition: height 0.35s ease, bottom 0.35s ease, background 0.35s ease;
}

.restored-btc-chart .kline::before {
    content: "";
    position: absolute;
    left: 50%;
    top: -10px;
    bottom: -10px;
    width: 2px;
    border-radius: 2px;
    background: inherit;
    transform: translateX(-50%);
    opacity: 0.72;
}

.restored-btc-chart .kline.green {
    background: #10b981;
}

.restored-btc-chart .kline.red {
    background: #ef4444;
}

.restored-btc-chart .chart-footer {
    padding-top: 2px;
}

.restored-btc-chart .time-labels {
    padding-left: 70px;
    display: flex;
    justify-content: space-between;
    color: #8c96a8;
    font-size: 10px;
}

.product-topbar,
.balance-heading,
.balance-meta,
.opportunity-card,
.range-row,
.referral-card-header,
.commission-row,
.invite-code,
.security-status {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-topbar > div,
.referral-card-header > div {
    display: grid;
    gap: 2px;
}

.product-topbar strong,
.referral-card-header strong {
    color: var(--ink);
    font-size: 17px;
}

.product-label,
.level-caption {
    color: var(--muted);
    font-size: 12px;
    font-weight: 650;
}

.status-badge,
.level-state,
.month-chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 10px;
    border-radius: 999px;
    color: var(--success);
    background: rgba(22, 163, 106, 0.09);
    font-size: 12px;
    font-weight: 700;
}

.status-badge span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--success);
    box-shadow: 0 0 0 4px rgba(22, 163, 106, 0.11);
}

.balance-card {
    margin-top: 18px;
    padding: 20px;
    border-radius: 16px;
    color: #fff;
    background: #0c1733;
    box-shadow: 0 18px 36px rgba(12, 23, 51, 0.18);
}

.balance-heading {
    color: rgba(255, 255, 255, 0.68);
    font-size: 12px;
    font-weight: 600;
}

.balance-value {
    margin: 18px 0 15px;
    color: #fff;
    font-size: 36px;
    font-weight: 720;
    letter-spacing: -0.04em;
}

.balance-value small,
.estimate small,
.level-balance small,
.referral-total small {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0;
}

.balance-meta {
    padding-top: 13px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 13px;
}

.balance-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.68);
}

.level-switch {
    margin: 18px 0;
    padding: 5px;
    border: 1px solid var(--line);
    border-radius: 13px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: rgba(243, 246, 251, 0.82);
}

.level-tab {
    min-height: 38px;
    border: 0;
    border-radius: 9px;
    color: #7a8494;
    background: transparent;
    font-weight: 750;
    cursor: pointer;
    transition: color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.level-tab.active {
    color: var(--primary);
    background: #fff;
    box-shadow: 0 6px 16px rgba(34, 63, 115, 0.09);
}

.opportunity-card {
    padding: 16px;
    border-radius: 14px;
    background: rgba(0, 82, 255, 0.06);
}

.estimate {
    margin-top: 4px;
    color: var(--primary);
    font-size: 27px;
    font-weight: 760;
    letter-spacing: -0.03em;
}

.rate-summary {
    display: grid;
    gap: 3px;
    text-align: right;
}

.rate-summary span,
.range-row span {
    color: var(--muted);
    font-size: 12px;
}

.rate-summary strong,
.range-row strong {
    color: var(--ink);
    font-size: 13px;
}

.range-row {
    padding: 15px 2px 14px;
}

.participate-button {
    width: 100%;
}

.product-note {
    margin: 10px 0 0;
    color: #8b94a2;
    font-size: 11px;
    text-align: center;
}

.floating-card {
    position: absolute;
    z-index: 3;
    min-width: 174px;
    padding: 12px 14px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.9);
}

.floating-icon {
    width: 36px;
    height: 36px;
    border-radius: 11px;
    display: grid;
    place-items: center;
    color: var(--primary);
    background: var(--primary-soft);
    font-size: 18px;
}

.floating-icon .ui-icon {
    width: 19px;
    height: 19px;
}

.floating-card div {
    display: grid;
}

.floating-card span {
    color: var(--muted);
    font-size: 11px;
}

.floating-card strong {
    color: var(--ink);
    font-size: 13px;
}

.floating-income {
    right: -25px;
    top: 38%;
}

.floating-level {
    left: -22px;
    bottom: 16%;
}

.metrics {
    margin-top: -20px;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.66), rgba(230, 241, 255, 0.43));
    box-shadow:
        0 18px 46px rgba(34, 63, 115, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(26px) saturate(145%);
}

.brand-showcase {
    padding-top: 54px;
}

.brand-showcase-card {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    min-height: 500px;
    padding: clamp(24px, 4vw, 54px);
    border: 1px solid rgba(255, 255, 255, 0.88);
    border-radius: 28px;
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    align-items: center;
    gap: clamp(34px, 6vw, 82px);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.58), rgba(222, 237, 255, 0.34));
    box-shadow:
        0 34px 90px rgba(26, 56, 110, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 1),
        inset 0 -1px 0 rgba(0, 82, 255, 0.08);
    backdrop-filter: blur(34px) saturate(160%);
    -webkit-backdrop-filter: blur(34px) saturate(160%);
}

.brand-showcase-card::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: -30%;
    background:
        radial-gradient(circle at 24% 44%, rgba(0, 82, 255, 0.28), transparent 23%),
        radial-gradient(circle at 73% 26%, rgba(88, 174, 255, 0.2), transparent 20%),
        radial-gradient(circle at 55% 78%, rgba(255, 255, 255, 0.92), transparent 28%);
    filter: blur(34px);
    opacity: 0.9;
}

.brand-showcase-card::after {
    content: "";
    position: absolute;
    z-index: 3;
    inset: -35% -60%;
    background: linear-gradient(116deg, transparent 35%, rgba(255, 255, 255, 0.55) 46%, transparent 57%);
    transform: rotate(-7deg);
    opacity: 0.48;
    pointer-events: none;
}

.brand-render {
    position: relative;
    z-index: 1;
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.82);
    border-radius: 24px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.55), rgba(194, 222, 255, 0.22));
    box-shadow:
        0 26px 64px rgba(31, 80, 164, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 1),
        inset 0 -1px 0 rgba(0, 82, 255, 0.13);
    backdrop-filter: blur(28px) saturate(165%);
    -webkit-backdrop-filter: blur(28px) saturate(165%);
}

.brand-render::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background:
        linear-gradient(128deg, rgba(255, 255, 255, 0.48), transparent 28%),
        linear-gradient(315deg, rgba(0, 82, 255, 0.08), transparent 36%);
    box-shadow: inset 0 0 30px rgba(255, 255, 255, 0.32);
    pointer-events: none;
}

.brand-render img {
    display: block;
    width: 100%;
    aspect-ratio: 1.3;
    object-fit: cover;
    transform: scale(1.035);
    filter: saturate(1.16) contrast(1.025);
}

.brand-showcase-copy {
    position: relative;
    z-index: 1;
}

.brand-showcase-copy h2 {
    margin: 14px 0 18px;
    color: var(--ink);
    font-size: clamp(34px, 4vw, 54px);
    font-weight: 750;
    letter-spacing: -0.05em;
    line-height: 1.04;
}

.brand-showcase-copy > p {
    margin: 0;
    color: #657080;
    font-size: 16px;
}

.brand-detail-list {
    margin-top: 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.brand-detail-list span {
    padding: 9px 12px;
    border: 1px solid rgba(255, 255, 255, 0.92);
    border-radius: 11px;
    color: var(--primary);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.7), rgba(221, 237, 255, 0.42));
    box-shadow:
        0 9px 24px rgba(31, 80, 164, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    font-size: 11px;
    font-weight: 720;
}

.metrics article {
    min-height: 78px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.metrics article + article {
    border-left: 1px solid var(--line);
}

.metric-icon {
    width: 40px;
    height: 40px;
    flex: 0 0 auto;
    border-radius: 12px;
    display: grid;
    place-items: center;
    color: var(--primary);
    background: var(--primary-soft);
    font-size: 19px;
}

.metrics article div {
    display: grid;
    line-height: 1.35;
}

.metrics strong {
    color: var(--ink);
    font-size: 14px;
}

.metrics article div span {
    color: var(--muted);
    font-size: 11px;
}

.content-section {
    padding-top: 132px;
    padding-bottom: 132px;
}

.section-heading {
    margin-bottom: 54px;
}

.section-heading.centered {
    max-width: 680px;
    margin-inline: auto;
    text-align: center;
}

.section-heading h2,
.referral-copy h2,
.security-copy h2,
.cta-card h2 {
    margin: 13px 0 16px;
    color: var(--ink);
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 740;
    letter-spacing: -0.045em;
    line-height: 1.1;
}

.section-heading p,
.referral-copy > p,
.security-copy > p {
    margin: 0;
    color: #657080;
    font-size: 16px;
}

.split-heading {
    display: grid;
    grid-template-columns: 1.1fr 0.7fr;
    align-items: end;
    gap: 70px;
}

.split-heading h2 {
    margin-bottom: 0;
}

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

.feature-card {
    position: relative;
    min-height: 330px;
    padding: 28px;
    overflow: hidden;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.feature-card.featured {
    border-color: rgba(0, 82, 255, 0.2);
    background: rgba(255, 255, 255, 0.9);
}

.feature-number {
    position: absolute;
    top: 26px;
    right: 26px;
    color: rgba(16, 19, 25, 0.16);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.feature-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 28px;
    border-radius: 15px;
    display: grid;
    place-items: center;
    color: var(--primary);
    background: var(--primary-soft);
    font-size: 25px;
}

.feature-card h3 {
    margin: 0 0 12px;
    color: var(--ink);
    font-size: 21px;
    letter-spacing: -0.02em;
}

.feature-card p {
    margin: 0;
    color: #687282;
    font-size: 14px;
}

.feature-detail {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 26px;
    padding-top: 15px;
    border-top: 1px solid var(--line);
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
}

.level-section,
.security-section {
    width: 100%;
    background: rgba(255, 255, 255, 0.52);
    border-top: 1px solid rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(255, 255, 255, 0.92);
}

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

.level-card {
    padding: 26px;
    background: rgba(255, 255, 255, 0.78);
}

.level-card:first-child {
    border-color: rgba(0, 82, 255, 0.22);
    box-shadow: 0 20px 60px rgba(0, 82, 255, 0.11);
}

.level-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
}

.level-name {
    color: var(--ink);
    font-size: 19px;
    font-weight: 800;
}

.level-state {
    color: var(--muted);
    background: rgba(115, 125, 140, 0.09);
}

.level-state.active {
    color: var(--primary);
    background: var(--primary-soft);
}

.level-balance {
    display: block;
    margin-top: 5px;
    color: var(--ink);
    font-size: 31px;
    letter-spacing: -0.035em;
}

.level-line {
    height: 1px;
    margin: 22px 0 16px;
    background: var(--line);
}

.level-row {
    padding: 7px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
}

.level-row span {
    color: var(--muted);
}

.level-row strong {
    color: var(--ink);
}

.disclaimer {
    max-width: 720px;
    margin: 20px auto 0;
    color: #8a93a1;
    font-size: 11px;
    text-align: center;
}

.referral-section {
    display: grid;
    grid-template-columns: 0.85fr 1fr;
    align-items: center;
    gap: clamp(54px, 8vw, 110px);
}

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

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #606a79;
    font-size: 14px;
}

.list-check {
    width: 23px;
    height: 23px;
    flex: 0 0 auto;
    margin-top: 1px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    color: var(--primary);
    background: var(--primary-soft);
}

.list-check .ui-icon {
    width: 15px;
    height: 15px;
}

.check-list strong {
    color: var(--ink);
}

.text-cta {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--primary);
    font-size: 14px;
    font-weight: 750;
}

.text-cta:hover .ui-icon {
    transform: translateX(3px);
}

.text-cta .ui-icon {
    width: 16px;
    height: 16px;
    transition: transform 160ms ease;
}

.referral-card {
    padding: 28px;
    background: rgba(255, 255, 255, 0.84);
    box-shadow: var(--shadow);
}

.month-chip {
    color: var(--primary);
    background: var(--primary-soft);
}

.referral-total {
    margin: 22px 0 18px;
    padding: 22px;
    border-radius: 16px;
    display: grid;
    background: #0c1733;
}

.referral-total span {
    color: rgba(255, 255, 255, 0.65);
    font-size: 12px;
}

.referral-total strong {
    margin-top: 5px;
    color: #fff;
    font-size: 29px;
}

.commission-row {
    padding: 14px 4px;
    border-bottom: 1px solid var(--line);
}

.commission-icon {
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    border-radius: 13px;
    display: grid;
    place-items: center;
    color: var(--primary);
    background: var(--primary-soft);
}

.commission-row > div {
    flex: 1;
    margin-left: 12px;
    display: grid;
}

.commission-row > div strong {
    color: var(--ink);
    font-size: 13px;
}

.commission-row > div span {
    color: var(--muted);
    font-size: 11px;
}

.commission-row b {
    color: var(--primary);
    font-size: 14px;
}

.invite-code {
    margin-top: 18px;
    padding: 13px 14px;
    border: 1px solid rgba(0, 82, 255, 0.1);
    border-radius: 14px;
    background: rgba(0, 82, 255, 0.045);
}

.invite-code > div {
    display: grid;
}

.invite-code > div span {
    color: var(--muted);
    font-size: 11px;
}

.invite-code > div strong {
    color: var(--ink);
    font-size: 14px;
    letter-spacing: 0.07em;
}

.copy-button {
    min-height: 37px;
    padding: 0 13px;
    border: 0;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    background: #fff;
    box-shadow: 0 6px 18px rgba(34, 63, 115, 0.08);
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
}

.security-layout {
    display: grid;
    grid-template-columns: 0.78fr 1fr;
    align-items: center;
    gap: clamp(60px, 8vw, 110px);
}

.security-visual {
    min-height: 400px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.78);
}

.security-orbit {
    position: relative;
    width: 260px;
    height: 260px;
    margin: 16px auto 0;
    border: 1px solid rgba(0, 82, 255, 0.12);
    border-radius: 50%;
}

.security-orbit::before {
    content: "";
    position: absolute;
    inset: 48px;
    border: 1px solid rgba(0, 82, 255, 0.1);
    border-radius: 50%;
}

.security-center,
.orbit-item {
    position: absolute;
    display: grid;
    place-items: center;
    color: var(--primary);
    background: #fff;
    box-shadow: 0 12px 30px rgba(0, 82, 255, 0.12);
}

.security-center {
    inset: 50%;
    width: 82px;
    height: 82px;
    margin: -41px;
    border-radius: 25px;
    font-size: 38px;
}

.orbit-item {
    width: 45px;
    height: 45px;
    border-radius: 14px;
    font-size: 20px;
}

.orbit-one {
    top: -2px;
    left: 50%;
    margin-left: -22px;
}

.orbit-two {
    right: 7px;
    bottom: 43px;
}

.orbit-three {
    left: 5px;
    bottom: 43px;
}

.security-status {
    padding: 14px 16px;
    border-radius: 14px;
    background: rgba(22, 163, 106, 0.07);
}

.security-status span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #4e5a69;
    font-size: 13px;
}

.security-status strong {
    color: var(--success);
}

.security-status .ui-icon {
    width: 17px;
    height: 17px;
}

.security-points {
    margin-top: 30px;
    display: grid;
    gap: 20px;
}

.security-points article {
    display: grid;
    grid-template-columns: 46px 1fr;
    gap: 14px;
}

.security-point-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    color: var(--primary);
    background: var(--primary-soft);
    font-size: 21px;
}

.security-point-icon .ui-icon {
    width: 21px;
    height: 21px;
}

.security-points article div {
    display: grid;
    gap: 3px;
}

.security-points strong {
    color: var(--ink);
    font-size: 14px;
}

.security-points span {
    color: #6c7685;
    font-size: 12px;
}

.cta-section {
    padding-top: 110px;
    padding-bottom: 110px;
}

.cta-card {
    min-height: 290px;
    padding: clamp(36px, 6vw, 70px);
    border-radius: 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    color: #fff;
    background: var(--primary);
    box-shadow: 0 30px 80px rgba(0, 82, 255, 0.24);
}

.cta-card > div {
    max-width: 690px;
}

.section-kicker.light {
    color: rgba(255, 255, 255, 0.7);
}

.cta-card h2 {
    margin-top: 10px;
    color: #fff;
}

.cta-card p {
    max-width: 610px;
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
}

.button-light {
    flex: 0 0 auto;
    color: var(--primary);
    background: #fff;
    border-color: #fff;
    box-shadow: 0 12px 28px rgba(0, 27, 100, 0.18);
}

.button-light:hover,
.button-light:focus-visible {
    color: var(--primary-dark);
    background: #fff;
}

.site-footer {
    padding: 76px 0 26px;
    border-top: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.55);
}

.footer-layout {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 70px;
}

.footer-brand {
    max-width: 330px;
}

.footer-brand p {
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 13px;
}

.footer-links {
    display: flex;
    gap: clamp(60px, 8vw, 100px);
}

.footer-links > div {
    min-width: 110px;
    display: grid;
    gap: 9px;
}

.footer-links strong {
    margin-bottom: 5px;
    color: var(--ink);
    font-size: 13px;
}

.footer-links a {
    color: var(--muted);
    font-size: 13px;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #8992a0;
    font-size: 11px;
}

.footer-bottom a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.profit-value {
    color: #39d696 !important;
}

.loss-value {
    color: #dc2626 !important;
}

.strategy-tab {
    min-height: 38px;
    border: 0;
    border-radius: 9px;
    color: #7a8494;
    background: transparent;
    font-weight: 750;
    cursor: pointer;
    transition: color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.strategy-tab.active {
    color: var(--primary);
    background: #fff;
    box-shadow: 0 6px 16px rgba(34, 63, 115, 0.09);
}

.bot-preview-card {
    padding: 16px;
    border-radius: 14px;
    background: rgba(0, 82, 255, 0.055);
}

.bot-preview-heading,
.bot-preview-row,
.bot-list-header,
.bot-list-row,
.market-making-addon,
.review-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.bot-preview-heading > div,
.bot-list-header > div {
    display: grid;
    gap: 2px;
}

.bot-preview-heading strong,
.bot-list-header strong {
    color: var(--ink);
    font-size: 14px;
}

.bot-state,
.new-badge {
    padding: 5px 9px;
    border-radius: 999px;
    color: var(--success);
    background: rgba(22, 163, 106, 0.09);
    font-size: 11px;
    font-weight: 750;
}

.bot-preview-row {
    margin-top: 14px;
    padding-top: 13px;
    border-top: 1px solid var(--line);
}

.bot-preview-row > div {
    display: grid;
    gap: 2px;
}

.bot-preview-row > div:last-child {
    text-align: right;
}

.bot-preview-row span {
    color: var(--muted);
    font-size: 11px;
}

.bot-preview-row strong {
    color: var(--ink);
    font-size: 13px;
}

.platform-feature-grid .feature-card {
    min-height: 320px;
}

.process-section,
.automation-section,
.about-section {
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(255, 255, 255, 0.92);
    background: rgba(255, 255, 255, 0.52);
}

.process-grid {
    display: grid;
    grid-template-columns: 1fr 46px 1fr 46px 1fr;
    align-items: center;
    gap: 12px;
}

.process-card {
    min-height: 280px;
    padding: 27px;
    background: rgba(255, 255, 255, 0.8);
}

.process-card > span {
    color: var(--primary);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.process-icon {
    width: 50px;
    height: 50px;
    margin: 32px 0 22px;
    border-radius: 15px;
    display: grid;
    place-items: center;
    background: var(--primary-soft);
}

.process-icon .ui-icon {
    width: 24px;
    height: 24px;
}

.process-card h3 {
    margin: 0 0 10px;
    color: var(--ink);
    font-size: 20px;
    letter-spacing: -0.02em;
}

.process-card p {
    margin: 0;
    color: #687282;
    font-size: 13px;
}

.process-arrow {
    color: rgba(0, 82, 255, 0.36);
    font-size: 28px;
    display: grid;
    place-items: center;
}

.process-arrow .ui-icon {
    width: 25px;
    height: 25px;
    opacity: 0.48;
}

.exchange-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.exchange-card {
    min-height: 112px;
    padding: 19px;
    display: flex;
    align-items: center;
    gap: 13px;
    background: rgba(255, 255, 255, 0.82);
}

.exchange-card > img {
    width: 43px;
    height: 43px;
    border-radius: 13px;
    object-fit: contain;
}

.exchange-card > div {
    min-width: 0;
    flex: 1;
    display: grid;
    gap: 2px;
}

.exchange-card strong {
    color: var(--ink);
    font-size: 14px;
}

.exchange-card div span {
    color: var(--muted);
    font-size: 10px;
}

.exchange-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #c9d0dc;
}

.exchange-dot.active {
    background: var(--success);
    box-shadow: 0 0 0 5px rgba(22, 163, 106, 0.09);
}

.muted-card {
    opacity: 0.72;
}

.automation-layout {
    display: grid;
    grid-template-columns: 0.82fr 1fr;
    align-items: center;
    gap: clamp(60px, 8vw, 110px);
}

.automation-visual-stack {
    display: grid;
    gap: 18px;
}

.automation-glass-visual {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    margin: 0;
    border: 1px solid rgba(255, 255, 255, 0.86);
    border-radius: 20px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.56), rgba(210, 231, 255, 0.3));
    box-shadow:
        0 26px 66px rgba(31, 80, 164, 0.17),
        inset 0 1px 0 rgba(255, 255, 255, 1),
        inset 0 -1px 0 rgba(0, 82, 255, 0.1);
    backdrop-filter: blur(28px) saturate(160%);
    -webkit-backdrop-filter: blur(28px) saturate(160%);
}

.automation-glass-visual::after {
    content: "";
    position: absolute;
    z-index: 2;
    inset: 0;
    border-radius: inherit;
    background:
        linear-gradient(122deg, rgba(255, 255, 255, 0.46), transparent 25%),
        linear-gradient(310deg, rgba(0, 82, 255, 0.08), transparent 36%);
    box-shadow: inset 0 0 26px rgba(255, 255, 255, 0.34);
    pointer-events: none;
}

.automation-glass-visual img {
    display: block;
    width: 100%;
    aspect-ratio: 1.96;
    object-fit: cover;
    filter: saturate(1.15) contrast(1.025);
}

.automation-glass-visual figcaption {
    position: absolute;
    z-index: 3;
    left: 16px;
    right: 16px;
    bottom: 15px;
    padding: 11px 13px;
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 13px;
    display: grid;
    gap: 1px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.68), rgba(221, 237, 255, 0.44));
    box-shadow:
        0 12px 30px rgba(26, 56, 110, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px) saturate(150%);
}

.automation-glass-visual figcaption span {
    color: var(--primary);
    font-size: 10px;
    font-weight: 760;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.automation-glass-visual figcaption strong {
    color: var(--ink);
    font-size: 12px;
}

.automation-copy h2,
.about-layout h2,
.review-heading h2 {
    margin: 13px 0 16px;
    color: var(--ink);
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 740;
    letter-spacing: -0.045em;
    line-height: 1.1;
}

.automation-copy > p,
.about-layout > div:first-child > p {
    margin: 0;
    color: #657080;
    font-size: 16px;
}

.strategy-tags {
    margin: 27px 0 29px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.strategy-tags span {
    padding: 8px 11px;
    border: 1px solid rgba(0, 82, 255, 0.1);
    border-radius: 10px;
    color: var(--primary);
    background: rgba(255, 255, 255, 0.7);
    font-size: 11px;
    font-weight: 700;
}

.bot-list-card {
    padding: 27px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: var(--shadow);
}

.bot-list-row {
    padding: 16px 3px;
    border-bottom: 1px solid var(--line);
}

.bot-list-icon {
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    border-radius: 13px;
    display: grid;
    place-items: center;
    background: var(--primary-soft);
}

.bot-list-icon .ui-icon {
    width: 20px;
    height: 20px;
}

.bot-list-row > div,
.market-making-addon > div {
    min-width: 0;
    flex: 1;
    margin-left: 12px;
    display: grid;
    gap: 2px;
}

.bot-list-row strong,
.market-making-addon strong {
    color: var(--ink);
    font-size: 13px;
}

.bot-list-row span,
.market-making-addon div span {
    color: var(--muted);
    font-size: 10px;
}

.bot-list-row b {
    font-size: 13px;
}

.market-making-addon {
    margin-top: 17px;
    padding: 14px;
    border: 1px solid rgba(0, 82, 255, 0.1);
    border-radius: 15px;
    background: rgba(0, 82, 255, 0.045);
}

.new-badge {
    color: var(--primary);
    background: #fff;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    align-items: stretch;
}

.pricing-card {
    position: relative;
    min-height: 430px;
    padding: 26px;
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.8);
}

.popular-plan {
    border-color: rgba(0, 82, 255, 0.24);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 24px 65px rgba(0, 82, 255, 0.12);
    transform: translateY(-10px);
}

.popular-label {
    position: absolute;
    top: -12px;
    right: 18px;
    padding: 5px 10px;
    border-radius: 999px;
    color: #fff;
    background: var(--primary);
    font-size: 10px;
    font-weight: 750;
}

.plan-name {
    color: var(--primary);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.plan-price {
    margin-top: 15px;
    color: var(--ink);
    font-size: 34px;
    letter-spacing: -0.04em;
}

.plan-price small {
    color: var(--muted);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0;
}

.pricing-card > p {
    min-height: 67px;
    margin: 13px 0 19px;
    color: #6a7483;
    font-size: 12px;
}

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

.pricing-card li {
    position: relative;
    padding-left: 17px;
    color: #566171;
    font-size: 12px;
}

.pricing-card li::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 1px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
}

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

.review-heading {
    margin-bottom: 44px;
    gap: 60px;
}

.review-heading > div:first-child {
    max-width: 650px;
}

.rating-summary {
    min-width: 150px;
    padding: 16px 19px;
    border: 1px solid var(--line);
    border-radius: 16px;
    display: grid;
    background: rgba(255, 255, 255, 0.72);
    text-align: center;
}

.rating-summary strong {
    color: var(--ink);
    font-size: 27px;
}

.rating-summary span {
    color: var(--primary);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.rating-summary small {
    color: var(--muted);
    font-size: 9px;
}

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

.review-card {
    min-height: 260px;
    padding: 26px;
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.8);
}

.review-mark {
    color: rgba(0, 82, 255, 0.22);
    font-family: Georgia, serif;
    font-size: 52px;
    line-height: 0.7;
}

.review-card > p {
    flex: 1;
    margin: 23px 0;
    color: #5f6978;
    font-size: 14px;
}

.review-card > div {
    display: flex;
    align-items: center;
    gap: 10px;
}

.review-avatar {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    color: var(--primary);
    background: var(--primary-soft);
    font-size: 11px;
    font-weight: 800;
}

.review-card > div strong {
    color: var(--ink);
    font-size: 12px;
}

.about-layout {
    display: grid;
    grid-template-columns: 0.9fr 1fr;
    align-items: center;
    gap: clamp(60px, 8vw, 110px);
}

.about-stat-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.about-stat-grid article {
    min-height: 135px;
    padding: 23px;
    display: grid;
    align-content: center;
    gap: 3px;
    background: rgba(255, 255, 255, 0.8);
}

.about-stat-grid strong {
    color: var(--primary);
    font-size: 24px;
    letter-spacing: -0.03em;
}

.about-stat-grid span {
    color: var(--muted);
    font-size: 11px;
}

.cta-actions {
    flex: 0 0 auto;
    display: grid;
    gap: 10px;
    justify-items: center;
}

.cta-contact {
    color: rgba(255, 255, 255, 0.76);
    font-size: 11px;
}

@media (max-width: 1040px) {
    .main-nav {
        gap: 0;
    }

    .main-nav a {
        padding-inline: 9px;
    }

    .hero {
        grid-template-columns: 1fr 1fr;
        gap: 38px;
    }

    .floating-income {
        right: 0;
    }

    .floating-level {
        left: 0;
    }

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

    .metrics article:nth-child(3) {
        border-left: 0;
        border-top: 1px solid var(--line);
    }

    .metrics article:nth-child(4) {
        border-top: 1px solid var(--line);
    }

    .exchange-grid,
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .popular-plan {
        transform: none;
    }
}

@media (max-width: 860px) {
    .site-header {
        padding: 12px 12px 0;
    }

    .nav-shell {
        position: relative;
        min-height: 60px;
        padding: 8px 9px 8px 14px;
        border-radius: 16px;
    }

    .menu-toggle {
        display: grid;
        place-items: center;
    }

    .main-nav {
        position: absolute;
        top: calc(100% + 9px);
        left: 0;
        right: 0;
        padding: 10px;
        border: 1px solid rgba(255, 255, 255, 0.94);
        border-radius: 16px;
        display: grid;
        gap: 2px;
        background: rgba(255, 255, 255, 0.96);
        box-shadow: var(--shadow);
        backdrop-filter: blur(20px);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px);
        transition: opacity 160ms ease, visibility 160ms ease, transform 160ms ease;
    }

    .main-nav.open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .main-nav a {
        padding: 12px 14px;
    }

    .nav-actions .text-link {
        display: none;
    }

    .nav-actions {
        margin-left: 7px;
    }

    .hero {
        min-height: auto;
        padding-top: 134px;
        grid-template-columns: 1fr;
        gap: 52px;
        text-align: center;
    }

    .hero-copy {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-actions,
    .hero-assurances {
        justify-content: center;
    }

    .hero-product {
        width: min(100%, 570px);
        margin-inline: auto;
    }

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

    .feature-card {
        min-height: 300px;
    }

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

    .referral-section,
    .security-layout {
        grid-template-columns: 1fr;
    }

    .referral-card {
        order: 2;
    }

    .security-visual {
        width: min(100%, 560px);
        margin-inline: auto;
    }

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

    .process-arrow {
        display: none;
    }

    .automation-layout,
    .about-layout {
        grid-template-columns: 1fr;
    }

    .brand-showcase-card {
        grid-template-columns: 1fr;
    }

    .brand-render {
        width: min(100%, 620px);
        margin-inline: auto;
    }

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

    .review-heading {
        align-items: flex-start;
    }

    .cta-card {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 600px) {
    .section-shell {
        width: min(calc(100% - 28px), var(--content-width));
    }

    .brand span {
        font-size: 15px;
    }

    .brand img {
        width: 38px;
    }

    .nav-actions {
        display: none;
    }

    .hero {
        padding-top: 120px;
        padding-bottom: 70px;
    }

    .hero h1 {
        margin-top: 20px;
        font-size: clamp(40px, 13vw, 54px);
    }

    .hero-description {
        font-size: 16px;
        line-height: 1.65;
    }

    .hero-actions {
        width: 100%;
        display: grid;
    }

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

    .hero-assurances {
        display: grid;
        justify-items: start;
    }

    .hero-product {
        padding: 0;
    }

    .product-window {
        padding: 16px;
    }

    .restored-btc-chart {
        padding: 14px;
    }

    .restored-btc-chart .chart-header {
        display: grid;
        gap: 12px;
    }

    .restored-btc-chart .chart-price {
        justify-items: start;
    }

    .restored-btc-chart .kline-chart {
        height: 180px;
    }

    .restored-btc-chart .price-axis {
        width: 56px;
    }

    .restored-btc-chart .time-labels {
        padding-left: 56px;
    }

    .balance-value {
        font-size: 30px;
    }

    .floating-card {
        display: none;
    }

    .metrics {
        grid-template-columns: 1fr;
        padding: 8px;
    }

    .metrics article + article,
    .metrics article:nth-child(3) {
        border-left: 0;
        border-top: 1px solid var(--line);
    }

    .brand-showcase {
        padding-top: 34px;
    }

    .brand-showcase-card {
        min-height: 0;
        padding: 18px;
        border-radius: 22px;
        gap: 28px;
    }

    .brand-render {
        border-radius: 18px;
    }

    .brand-showcase-copy {
        padding: 0 4px 8px;
    }

    .brand-showcase-copy h2 {
        font-size: 34px;
    }

    .automation-glass-visual {
        border-radius: 17px;
    }

    .automation-glass-visual figcaption {
        left: 10px;
        right: 10px;
        bottom: 10px;
        padding: 9px 10px;
    }

    .content-section {
        padding-top: 92px;
        padding-bottom: 92px;
    }

    .section-heading {
        margin-bottom: 34px;
    }

    .section-heading h2,
    .referral-copy h2,
    .security-copy h2,
    .cta-card h2 {
        font-size: 34px;
    }

    .feature-card,
    .level-card,
    .referral-card,
    .security-visual {
        padding: 22px;
    }

    .feature-card {
        min-height: 320px;
    }

    .referral-section {
        gap: 42px;
    }

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

    .pricing-card {
        min-height: 390px;
    }

    .review-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 22px;
    }

    .rating-summary {
        width: 100%;
    }

    .about-stat-grid {
        grid-template-columns: 1fr 1fr;
    }

    .commission-row {
        align-items: flex-start;
    }

    .commission-row b {
        padding-top: 4px;
    }

    .security-visual {
        min-height: 360px;
    }

    .security-orbit {
        width: 230px;
        height: 230px;
    }

    .cta-section {
        padding-top: 78px;
        padding-bottom: 78px;
    }

    .cta-card {
        min-height: 0;
        padding: 34px 24px;
        border-radius: 22px;
        gap: 30px;
    }

    .cta-card .button {
        width: 100%;
    }

    .cta-actions {
        width: 100%;
    }

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

    .footer-links {
        width: 100%;
        gap: 45px;
    }

    .footer-bottom {
        gap: 12px;
    }
}

@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;
    }
}
