/* ── Reset & Variables ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --bg:       #07071a;
    --bg2:      #0d0d24;
    --card:     #10102a;
    --card2:    #171735;
    --border:   #22224a;
    --purple:   #7c3aed;
    --purple2:  #9c5cf5;
    --accent:   #a78bfa;
    --text:     #f1f0ff;
    --text2:    #7878a8;
    --success:  #10b981;
    --error:    #ef4444;
    --radius:   14px;
    --radius-sm: 10px;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text);
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 clamp(16px, 4vw, 32px);
}

.hidden { display: none !important; }
.accent { color: var(--accent); }

/* ── Header ── */
header {
    position: sticky;
    top: 0;
    z-index: 200;
    background: rgba(7, 7, 26, 0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
}

.logo {
    font-size: clamp(18px, 3vw, 22px);
    font-weight: 800;
    letter-spacing: -0.5px;
    text-decoration: none;
    color: var(--text);
    user-select: none;
    flex-shrink: 0;
}

.lang-switcher { display: flex; gap: 6px; }

.lang-btn {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text2);
    padding: 5px 11px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2px;
    transition: all 0.15s;
    font-family: inherit;
    white-space: nowrap;
}

.lang-btn:hover  { border-color: var(--purple); color: var(--text); }
.lang-btn.active { background: var(--purple); border-color: var(--purple); color: #fff; }

/* ── Ticker ── */
.ticker-wrap {
    overflow: hidden;
    background: var(--bg2);
    border-bottom: 1px solid var(--border);
    padding: 9px 0;
    cursor: default;
}

.ticker-wrap:hover .ticker-track { animation-play-state: paused; }

.ticker-track {
    display: flex;
    width: max-content;
    animation: ticker-scroll 50s linear infinite;
}

.ticker-items {
    display: flex;
    flex-shrink: 0;
}

.ticker-items span {
    display: inline-block;
    padding: 0 18px;
    font-size: 11px;
    font-weight: 700;
    color: var(--text2);
    letter-spacing: 0.8px;
    border-right: 1px solid var(--border);
    line-height: 1;
}

.ticker-items span:last-child { border-right: none; }

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

/* ── Hero ── */
.hero {
    padding: clamp(48px, 8vw, 96px) 0 clamp(40px, 6vw, 72px);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -40%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 600px;
    background: radial-gradient(ellipse, rgba(124,58,237,0.14) 0%, transparent 70%);
    pointer-events: none;
}

.hero-layout {
    display: flex;
    align-items: center;
    gap: clamp(32px, 5vw, 72px);
}

.hero-text { flex: 1; min-width: 0; }

.hero-title {
    font-size: clamp(28px, 4.5vw, 52px);
    font-weight: 800;
    line-height: 1.12;
    margin-bottom: 18px;
    background: linear-gradient(135deg, #ffffff 30%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(14px, 1.8vw, 18px);
    color: var(--text2);
    line-height: 1.6;
    max-width: 420px;
}

.trust-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 24px;
    margin-top: 28px;
}

.trust-list li {
    font-size: 13px;
    color: var(--text2);
    display: flex;
    align-items: center;
    gap: 7px;
}

.trust-list li::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--purple2);
    flex-shrink: 0;
}

/* ── Widget Wrap ── */
.widget-wrap {
    flex: 0 0 clamp(320px, 42vw, 460px);
    max-width: 460px;
    width: 100%;
}

/* ── Exchange Card ── */
.exchange-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: clamp(20px, 3vw, 32px);
    box-shadow: 0 0 60px rgba(124,58,237,0.1), 0 2px 20px rgba(0,0,0,0.4);
}

.exchange-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.exchange-field { width: 100%; }

.exchange-field label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    color: var(--text2);
    text-transform: uppercase;
    letter-spacing: 0.9px;
    margin-bottom: 8px;
}

.input-group {
    display: flex;
    align-items: stretch;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--bg2);
    transition: border-color 0.2s, box-shadow 0.2s;
    min-height: 58px;
}

.input-group:focus-within {
    border-color: var(--purple);
    box-shadow: 0 0 0 3px rgba(124,58,237,0.12);
}

.input-group input {
    flex: 1;
    min-width: 0;
    background: transparent;
    border: none;
    outline: none;
    padding: 15px 16px;
    color: var(--text);
    font-size: clamp(15px, 2vw, 19px);
    font-weight: 600;
    font-family: inherit;
    width: 0;
    -moz-appearance: textfield;
    appearance: textfield;
}

.input-group input::placeholder { color: var(--text2); font-weight: 400; }

/* hide native number spinners */
.input-group input::-webkit-inner-spin-button,
.input-group input::-webkit-outer-spin-button { -webkit-appearance: none; margin: 0; }

.coin-selector {
    display: flex;
    align-items: center;
    gap: 9px;
    background: var(--card2);
    border: none;
    border-left: 1px solid var(--border);
    padding: 12px 16px;
    cursor: pointer;
    color: var(--text);
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
    min-width: 150px;
    transition: background 0.15s;
    font-family: inherit;
    flex-shrink: 0;
    align-self: stretch;
}

.coin-selector:hover { background: rgba(124,58,237,0.12); }

.coin-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    flex-shrink: 0;
    background: var(--bg2);
    object-fit: cover;
}

.coin-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
    flex: 1;
    min-width: 0;
}

.coin-name {
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    color: var(--text);
}

.coin-net {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.4px;
    padding: 2px 6px;
    border-radius: 4px;
    background: rgba(255,255,255,0.06);
    line-height: 1.4;
}

.chevron {
    width: 10px;
    height: 6px;
    stroke: var(--text2);
    flex-shrink: 0;
}

.sub-label {
    display: block;
    font-size: 11px;
    color: var(--text2);
    margin-top: 6px;
    min-height: 16px;
    line-height: 1.4;
}

.rate-label { color: var(--accent); }

/* ── Two-box field layout ── */
.field-row {
    display: flex;
    gap: 10px;
    align-items: stretch;
}

.amount-box {
    flex: 1;
    min-width: 0;
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: border-color 0.2s, box-shadow 0.2s;
    display: flex;
    align-items: center;
}

.amount-box:focus-within {
    border-color: var(--purple);
    box-shadow: 0 0 0 3px rgba(124,58,237,0.12);
}

.amount-box--readonly { background: var(--bg); }
.amount-box--readonly:focus-within { border-color: var(--border); box-shadow: none; }

.amount-box input {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    padding: 16px 18px;
    color: var(--text);
    font-size: clamp(18px, 2.5vw, 22px);
    font-weight: 600;
    font-family: inherit;
    -moz-appearance: textfield;
    appearance: textfield;
}

.amount-box input::placeholder { color: var(--text2); font-weight: 400; }
.amount-box input::-webkit-inner-spin-button,
.amount-box input::-webkit-outer-spin-button { -webkit-appearance: none; margin: 0; }

.coin-box {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--card2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 14px 18px;
    cursor: pointer;
    color: var(--text);
    font-size: 15px;
    font-weight: 700;
    white-space: nowrap;
    min-width: 150px;
    transition: border-color 0.15s, background 0.15s;
    font-family: inherit;
    flex-shrink: 0;
}

.coin-box:hover {
    border-color: var(--purple);
    background: rgba(124,58,237,0.1);
}

/* Swap button */
.swap-btn {
    align-self: center;
    width: 36px;
    height: 36px;
    background: var(--card2);
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--accent);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.25s;
    margin: 2px 0;
}

.swap-btn svg { width: 16px; height: 16px; }

.swap-btn:hover {
    background: var(--purple);
    border-color: var(--purple);
    color: #fff;
    transform: rotate(180deg);
}

/* Buttons */
.btn-primary {
    display: block;
    width: 100%;
    padding: 14px 20px;
    background: linear-gradient(135deg, var(--purple), var(--purple2));
    border: none;
    border-radius: var(--radius);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.18s, box-shadow 0.18s, opacity 0.18s;
    font-family: inherit;
    letter-spacing: 0.2px;
    text-align: center;
}

.btn-primary:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(124,58,237,0.4);
}

.btn-primary:active:not(:disabled) { transform: translateY(0); }

.btn-primary:disabled { opacity: 0.45; cursor: not-allowed; }

.btn-ghost {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text2);
}

.btn-ghost:hover:not(:disabled) {
    background: var(--card2);
    box-shadow: none;
    border-color: var(--purple);
    color: var(--text);
}

.btn-inline {
    width: auto;
    display: inline-block;
    padding: 13px 28px;
}

/* ── Step 2 ── */
.back-btn {
    background: transparent;
    border: none;
    color: var(--text2);
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 20px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: inherit;
    transition: color 0.15s;
}

.back-btn:hover { color: var(--text); }

.step-title {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 20px;
}

.address-field { margin-bottom: 14px; }

.address-field label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    color: var(--text2);
    text-transform: uppercase;
    letter-spacing: 0.9px;
    margin-bottom: 8px;
}

.optional { font-weight: 400; text-transform: none; letter-spacing: 0; font-size: 11px; }

.address-field input {
    width: 100%;
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 13px 14px;
    color: var(--text);
    font-size: 13px;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    font-family: monospace;
}

.address-field input:focus {
    border-color: var(--purple);
    box-shadow: 0 0 0 3px rgba(124,58,237,0.12);
}

.summary-box {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 14px 16px;
    margin: 18px 0;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--text2);
    padding: 5px 0;
}

.summary-row:not(:last-child) {
    border-bottom: 1px solid var(--border);
    padding-bottom: 10px;
    margin-bottom: 5px;
}

.summary-row strong { color: var(--text); font-size: 15px; }

/* ── Step 3 ── */
.tx-status {
    text-align: center;
    padding-bottom: 24px;
    margin-bottom: 22px;
    border-bottom: 1px solid var(--border);
}

.status-ring {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.status-ring::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2.5px solid var(--border);
    border-top-color: var(--purple);
    animation: spin 1s linear infinite;
}

.status-ring.success::before { border-color: var(--success); animation: none; }
.status-ring.error::before   { border-color: var(--error);   animation: none; }

.ring-check { color: var(--success); }
.ring-x     { color: var(--error); }

.tx-status h3 { font-size: 16px; font-weight: 600; }

.tx-details {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 18px;
    margin-bottom: 18px;
}

.tx-instruction {
    font-size: 13px;
    color: var(--text2);
    margin-bottom: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    align-items: baseline;
}

.tx-instruction strong { color: var(--text); font-size: 15px; }

.deposit-address-box {
    background: var(--card);
    border: 1px solid var(--purple);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

#txDepositAddress {
    font-family: monospace;
    font-size: 12px;
    color: var(--text);
    word-break: break-all;
    line-height: 1.5;
    flex: 1;
}

.copy-btn {
    flex-shrink: 0;
    background: var(--purple);
    border: none;
    border-radius: 7px;
    color: #fff;
    padding: 6px 13px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    transition: background 0.15s;
    font-family: inherit;
}

.copy-btn:hover { background: var(--purple2); }


/* ── Stats ── */
.stats {
    padding: clamp(36px, 5vw, 60px) 0;
    background: var(--bg2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    align-items: center;
    gap: 0;
}

.stat-div {
    width: 1px;
    height: 56px;
    background: var(--border);
    margin: 0 clamp(16px, 3vw, 40px);
}

.stat-item { text-align: center; }

.stat-value {
    font-size: clamp(26px, 3.5vw, 38px);
    font-weight: 800;
    line-height: 1.1;
    background: linear-gradient(135deg, #fff, var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    margin: 6px 0 4px;
}

.stat-desc {
    font-size: 11px;
    color: var(--text2);
    line-height: 1.5;
    max-width: 160px;
    margin: 0 auto;
}

/* ── Features ── */
.features {
    padding: clamp(56px, 8vw, 96px) 0;
}

.section-title {
    font-size: clamp(22px, 3.5vw, 36px);
    font-weight: 800;
    text-align: center;
    margin-bottom: clamp(32px, 5vw, 56px);
    color: var(--text);
}

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

.feature-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: clamp(20px, 2.5vw, 28px);
    transition: border-color 0.2s, transform 0.2s;
}

.feature-card:hover {
    border-color: rgba(124,58,237,0.5);
    transform: translateY(-3px);
}

.feature-icon {
    width: 42px;
    height: 42px;
    border: 1px solid var(--border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--accent);
    background: var(--bg2);
}

.feature-icon svg { width: 20px; height: 20px; }

.feature-card h3 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text);
}

.feature-card p {
    font-size: 13px;
    color: var(--text2);
    line-height: 1.65;
}

/* ── Limitless ── */
.limitless {
    padding: clamp(56px, 8vw, 100px) 0;
    background: linear-gradient(135deg, rgba(124,58,237,0.07) 0%, transparent 55%);
    border-top: 1px solid var(--border);
}

.limitless-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(32px, 6vw, 80px);
}

.limitless-text { flex: 1; max-width: 480px; }

.section-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--accent);
    border: 1px solid rgba(167,139,250,0.3);
    border-radius: 20px;
    padding: 4px 13px;
    margin-bottom: 16px;
}

.limitless-text h2 {
    font-size: clamp(24px, 3.5vw, 42px);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 18px;
    color: var(--text);
}

.limitless-text p {
    font-size: clamp(14px, 1.5vw, 16px);
    color: var(--text2);
    line-height: 1.75;
    margin-bottom: 32px;
}

.limitless-visual {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.range-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 22px 28px;
    text-align: center;
    min-width: 110px;
}

.range-card--accent { border-color: rgba(167,139,250,0.35); }

.range-label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--text2);
    margin-bottom: 8px;
}

.range-value {
    display: block;
    font-size: 30px;
    font-weight: 800;
    color: var(--text);
}

.range-inf {
    color: var(--accent);
    font-size: 42px;
    line-height: 0.9;
}

.range-arrow { color: var(--text2); width: 64px; flex-shrink: 0; }

/* ── Footer ── */
footer {
    border-top: 1px solid var(--border);
    padding: clamp(24px, 3vw, 36px) 0;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

footer p {
    font-size: 12px;
    color: var(--text2);
}

/* ── Modal ── */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.72);
    z-index: 300;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.modal {
    position: fixed;
    inset: 0;
    margin: auto;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 20px;
    width: min(420px, calc(100vw - 32px));
    height: min(560px, calc(100dvh - 48px));
    z-index: 400;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(0,0,0,0.6);
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 22px 16px;
    border-bottom: 1px solid var(--border);
    flex-shrink: 0;
}

.modal-header h3 { font-size: 15px; font-weight: 700; }

.close-btn {
    background: transparent;
    border: none;
    color: var(--text2);
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: color 0.15s, background 0.15s;
}

.close-btn:hover { color: var(--text); background: var(--card2); }

.coin-search-input {
    margin: 12px 14px 4px;
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 10px 13px;
    color: var(--text);
    font-size: 13px;
    outline: none;
    width: calc(100% - 28px);
    flex-shrink: 0;
    font-family: inherit;
    transition: border-color 0.2s;
}

.coin-search-input:focus { border-color: var(--purple); }
.coin-search-input::placeholder { color: var(--text2); }

.coin-list {
    overflow-y: auto;
    padding: 6px 6px 8px;
    flex: 1;
    overscroll-behavior: contain;
}

.coin-list::-webkit-scrollbar { width: 3px; }
.coin-list::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }

.coin-item {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 9px 12px;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.1s;
}

.coin-item:hover { background: var(--card2); }

.coin-item img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    flex-shrink: 0;
    background: var(--bg2);
    object-fit: cover;
}

.coin-item-ticker { font-weight: 700; font-size: 14px; }
.coin-item-sub    { display: flex; align-items: center; gap: 6px; margin-top: 2px; }
.coin-item-name   { font-size: 11px; color: var(--text2); }
.coin-item-net    { font-size: 10px; font-weight: 700; padding: 1px 5px; border-radius: 3px; background: rgba(255,255,255,0.06); }

/* ── Animations ── */
@keyframes spin { to { transform: rotate(360deg); } }

/* Countup — numbers fade in with a subtle glow when triggered */
.stat-value { transition: color 0.3s; }
.stats.counted .stat-value {
    animation: stat-glow 0.6s ease forwards;
}

@keyframes stat-glow {
    0%   { filter: brightness(1); }
    50%  { filter: brightness(1.5) drop-shadow(0 0 8px var(--accent)); }
    100% { filter: brightness(1); }
}

/* Limitless arrow draw */
.arrow-line {
    stroke: var(--accent);
    stroke-dasharray: 56;
    stroke-dashoffset: 56;
}

.arrow-head {
    stroke: var(--accent);
    stroke-dasharray: 18;
    stroke-dashoffset: 18;
}

.limitless.in-view .arrow-line {
    animation: draw-line 0.9s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.limitless.in-view .arrow-head {
    animation: draw-head 0.35s cubic-bezier(0.4, 0, 0.2, 1) 0.85s forwards;
}

@keyframes draw-line { to { stroke-dashoffset: 0; } }
@keyframes draw-head { to { stroke-dashoffset: 0; } }

/* ── Responsive ── */
@media (max-width: 960px) {
    .hero-layout {
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
    }

    .widget-wrap {
        flex: none;
        width: 100%;
        max-width: 100%;
    }

    .hero-subtitle { max-width: 100%; }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }

    .stat-div { display: none; }

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

    .limitless-layout {
        flex-direction: column;
        align-items: flex-start;
    }

    .limitless-text { max-width: 100%; }
}

@media (max-width: 600px) {

    .coin-box { min-width: 110px; padding: 12px; gap: 7px; }

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

    .limitless-visual {
        flex-wrap: wrap;
        width: 100%;
    }

    .range-card { flex: 1; }

    .range-arrow { display: none; }

    .stats-grid { grid-template-columns: 1fr; gap: 24px; }

    .stat-desc { max-width: none; }

    .footer-inner { flex-direction: column; align-items: flex-start; gap: 8px; }

    .lang-btn { padding: 5px 8px; }
}
