:root {
    --bg: #141414;
    --bg-soft: #1c1c1c;
    --bg-card: rgba(28, 28, 28, 0.85);
    --line: #333333;
    --text: #f5f5f5;
    --text-soft: #e0e0e0;
    --text-muted: #bdbdbd;
    --primary: #ffc107;
    --primary-soft: #fff9e6;
    --success: #4caf50;
    --danger: #d32f2f;
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --container: 1224px;
    --shadow-card: 0 32px 24px -16px rgba(0, 0, 0, 0.45), inset 0 0 0 1px rgba(248, 248, 248, 0.035);
    --shadow-glow: 0 0 0 1px rgba(255, 193, 7, 0.08), 0 20px 80px rgba(255, 193, 7, 0.08);
}

* {
    box-sizing: border-box;
}

a {
    outline: none;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: "Poppins", sans-serif;
    line-height: 1.45;
    overflow-x: hidden;
}

.site-main {
    min-height: calc(100vh - 180px);
}

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

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

button {
    font: inherit;
}

.site-bg, .grid-noise {
    position: fixed;
    inset: 0;
    pointer-events: none;
}

.site-bg {
    background: radial-gradient(circle at 82% 10%, rgba(255, 193, 7, 0.08), transparent 32%),
    radial-gradient(circle at 20% 22%, rgba(255, 193, 7, 0.04), transparent 18%),
    linear-gradient(180deg, #101010 0%, #141414 40%, #111111 100%);
    z-index: -3;
}

.grid-noise {
    background-image: linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
    background-size: 120px 120px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 78%);
    opacity: 0.28;
    z-index: -2;
}

.container {
    width: min(var(--container), calc(100% - 32px));
    margin: 0 auto;
}

.section {
    padding: 80px 0;
}

.section-tight {
    padding: 10px 0 28px;
}

.glass {
    background: linear-gradient(180deg, rgba(28, 28, 28, 0.92), rgba(23, 23, 23, 0.88));
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-card);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: linear-gradient(180deg, rgba(15, 15, 15, 0.85), rgba(15, 15, 15, 0.35));
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.site-header.is-scrolled {
    background: rgba(15, 15, 15, 0.92);
    border-color: rgba(255, 255, 255, 0.08);
}

.nav {
    min-height: 96px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 15px 0px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
}

.logo img {
    max-width: 100px;
}

.logo-mark {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    color: #111;
    font-weight: 700;
    background: linear-gradient(135deg, #ffd758, #ffc107 60%, #7d5f00);
    box-shadow: 0 0 30px rgba(255, 193, 7, 0.28);
}

.logo-text {
    font-size: 24px;
    line-height: 1;
    color: var(--primary);
}

.logo-text b {
    color: var(--text);
}

.nav-menu, .nav-actions {
    display: flex;
    align-items: center;
}

.nav-menu {
    gap: 6px;
}

.nav-menu a {
    color: var(--text-muted);
    font-size: 16px;
    padding: 12px 14px;
    border-radius: 16px;
    transition: color 0.25s ease, background 0.25s ease;
}

.nav-menu a:hover, .nav-menu a:focus-visible {
    color: var(--text);
    background: rgba(255, 255, 255, 0.04);
}

.nav-actions {
    gap: 12px;
}

.btn, .burger {
    border: 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    border-radius: 999px;
    padding: 0 24px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease, color 0.25s ease;
    white-space: nowrap;
}

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

.btn-primary, .hero-cta {
    color: #111;
    font-weight: 600;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0) 45%), linear-gradient(90deg, #ffd34d, #ffc107);
    box-shadow: 0 0 0 1px rgba(255, 193, 7, 0.08), 0 16px 40px rgba(255, 193, 7, 0.18);
}

.btn-ghost, .btn-ghost-light {
    color: var(--text);
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.02);
}

.btn-ghost:hover, .btn-ghost-light:hover {
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.05);
}

.btn-small {
    min-height: 40px;
    padding-inline: 16px;
    font-size: 14px;
}

.burger {
    display: none;
    width: 48px;
    height: 48px;
    background: transparent;
    border-radius: 16px;
    position: relative;
    cursor: pointer;
}

.burger span {
    position: absolute;
    left: 13px;
    right: 13px;
    height: 2px;
    border-radius: 999px;
    background: var(--text);
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.burger span:nth-child(1) {
    top: 16px;
}

.burger span:nth-child(2) {
    top: 23px;
}

.burger span:nth-child(3) {
    top: 30px;
}

.hero {
    padding-top: 74px;
    padding-bottom: 38px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 36px;
}

.eyebrow {
    margin: 0 0 18px;
    font-size: 14px;
    color: var(--text-muted);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.hero h1, .community-copy h2 {
    margin: 0;
    font-size: clamp(42px, 6vw, 64px);
    line-height: 1.02;
    font-weight: 600;
}

.hero h1 span, .community-copy h2 span, .section-heading span, .trust-copy h3 span, .feature-copy h3 span {
    color: var(--primary);
}

.hero-text {
    margin: 20px 0 0;
    max-width: 620px;
    color: var(--text-muted);
    font-size: 18px;
}

.hero-actions {
    margin-top: 28px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-visual {
    min-height: 620px;
    display: grid;
    place-items: center;
}

.planet-stage {
    position: relative;
    width: min(100%, 620px);
    aspect-ratio: 1 / 1;
    display: grid;
    place-items: center;
}

.planet-glow {
    position: absolute;
    inset: 10%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.18), rgba(255, 193, 7, 0.04) 35%, rgba(255, 193, 7, 0) 70%);
    filter: blur(32px);
}

.planet-layer {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: contain;
    user-select: none;
    pointer-events: none;
}

.layer-back {
    opacity: 0.8;
    animation: spin-clockwise 40s linear infinite;
}

.layer-mid {
    width: 88%;
    height: 88%;
    opacity: 0.55;
    animation: spin-counter 28s linear infinite;
}

.layer-front {
    width: 62%;
    height: 62%;
    filter: drop-shadow(0 0 40px rgba(255, 193, 7, 0.16));
    animation: float-planet 8s ease-in-out infinite;
}

.orbit {
    position: absolute;
    inset: 14%;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.orbit-one {
    transform: rotate(18deg);
}

.orbit-two {
    inset: 23%;
    transform: rotate(-16deg);
}

.planet-badges span {
    position: absolute;
    min-width: 62px;
    width: 62px;
    height: 62px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 14px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(18, 18, 18, 0.42);
    backdrop-filter: blur(16px);
    color: var(--text);
    font-size: 13px;
    font-weight: 500;
    box-shadow: var(--shadow-card);
}

.planet-badges span:nth-child(1) {
    top: 16%;
    right: 2%;
}

.planet-badges span:nth-child(2) {
    bottom: 24%;
    left: 1%;
}

.planet-badges span:nth-child(3) {
    bottom: 9%;
    right: 14%;
}

.stats-grid {
    border-radius: var(--radius-xl);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: hidden;
}

.stat-card {
    padding: 28px 16px;
    text-align: center;
    position: relative;
}

.stat-card + .stat-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 22px;
    bottom: 22px;
    width: 1px;
    background: rgba(255, 255, 255, 0.07);
}

.stat-card h3 {
    margin: 0 0 6px;
    font-size: clamp(34px, 4vw, 40px);
    font-weight: 500;
    line-height: 1;
}

.stat-card p {
    margin: 0;
    font-size: 15px;
    color: var(--text-muted);
}

.section-heading {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.section-heading span, .section-heading h2, .trust-copy h3, .feature-copy h3, .faq summary, .site-footer h4 {
    margin: 0;
}

.section-heading span, .section-heading h2 {
    font-size: clamp(26px, 4vw, 32px);
    font-weight: 500;
}

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

.feature-card, .comment-card, .faq-item, .market-table, .trust-panel, .ghost-panel {
    border-radius: var(--radius-xl);
    background: linear-gradient(180deg, rgba(28, 28, 28, 0.92), rgba(22, 22, 22, 0.92));
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: var(--shadow-card);
}

.feature-card {
    min-height: 500px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.section-inner-pageText .feature-card {
    min-height: auto;
}

.section.section-moneta-padding {
    padding-top: 0px;
}
.section.section-inner-pageText {
    padding: 40px 0px;
}

.feature-card:hover, .comment-card:hover, .faq-item:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 193, 7, 0.18);
    box-shadow: var(--shadow-card), var(--shadow-glow);
}

.feature-media {
    position: relative;
    height: 320px;
    overflow: hidden;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.feature-chart {
    padding: 24px;
}

.mini-value {
    font-family: "Rubik", sans-serif;
    font-size: 40px;
    line-height: 1;
}

.mini-value small {
    display: block;
    margin-top: 8px;
    font-size: 14px;
    color: var(--text-muted);
    letter-spacing: 0.08em;
}

.chart-svg {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 12px;
    width: calc(100% - 32px);
    height: 62%;
}

.chart-tooltip, .transfer-chip, .panel-badge {
    position: absolute;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(12, 12, 12, 0.48);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-card);
    font-size: 10px;
}

.chart-tooltip {
    right: 34px;
    top: 132px;
}

.feature-network .node, .trust-orbit .coin, .center-coin {
    position: absolute;
    border-radius: 50%;
}

.feature-network {
    background: radial-gradient(circle at center, rgba(255, 193, 7, 0.12), transparent 24%), linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
}

.feature-network .node {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: radial-gradient(circle at 30% 30%, rgba(255, 193, 7, 0.8), rgba(255, 193, 7, 0.12) 28%, rgba(255, 255, 255, 0.02) 29%);
    box-shadow: 0 0 0 12px rgba(255, 193, 7, 0.035);
}

.feature-network .center {
    left: calc(50% - 20px);
    top: calc(50% - 20px);
}

.feature-network .n1 {
    left: 56px;
    top: calc(50% - 20px);
}

.feature-network .n2 {
    right: 56px;
    top: calc(50% - 20px);
}

.feature-network .n3 {
    left: calc(50% - 20px);
    top: 44px;
}

.feature-network .link {
    position: absolute;
    height: 1.5px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), rgba(255, 193, 7, 0.8), rgba(255, 255, 255, 0.1));
    transform-origin: left center;
}

.feature-network .l1 {
    left: 93px;
    top: 50%;
    width: calc(50% - 93px);
}

.feature-network .l2 {
    left: 50%;
    top: 50%;
    width: calc(50% - 94px);
}

.feature-network .l3 {
    left: 50%;
    top: 76px;
    width: 1.5px;
    height: calc(50% - 76px);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 193, 7, 0.85), rgba(255, 255, 255, 0.1));
}

.transfer-chip {
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
}

.feature-bars {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: end;
    gap: 18px;
    padding: 28px;
}

.feature-bars .bar {
    position: relative;
    height: 68%;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
    overflow: hidden;
}

.feature-bars .bar::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 56%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
}

.feature-bars .bar-1 {
    height: 52%;
}

.feature-bars .bar-2 {
    height: 88%;
}

.feature-bars .bar-3 {
    height: 64%;
}

.feature-bars .bar-4 {
    height: 46%;
}

.feature-bars .active::after {
    height: 82%;
    background: linear-gradient(180deg, #ffd95c, #ffc107 65%, rgba(255, 193, 7, 0.18));
    box-shadow: 0 0 32px rgba(255, 193, 7, 0.45);
}

.panel-badge {
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%);
}

.feature-copy h3, .trust-copy h3 {
    font-size: 24px;
    font-weight: 500;
}

.feature-copy p, .trust-copy p, .comment-card p, .faq-content, .site-footer a, .site-footer p {
    color: var(--text-muted);
}

.trust-panel {
    margin-top: 24px;
    min-height: 360px;
    padding: 32px;
    display: grid;
    grid-template-columns: 340px 1fr;
    align-items: center;
    gap: 24px;
}

.trust-orbit {
    position: relative;
    min-height: 320px;
}

.trust-ring {
    position: absolute;
    left: 50%;
    top: 50%;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.trust-ring-lg {
    width: 320px;
    height: 320px;
    animation: spin-clockwise 28s linear infinite;
}

.trust-ring-md {
    width: 238px;
    height: 238px;
    animation: spin-counter 22s linear infinite;
}

.trust-ring-sm {
    width: 158px;
    height: 158px;
}

.coin, .center-coin, .coin-icon {
    display: grid;
    place-items: center;
    color: #ffe9a0;
    background: rgba(19, 19, 19, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-card);
}

.trust-orbit .coin, .center-coin {
    width: 54px;
    height: 54px;
    font-size: 22px;
}

.center-coin {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle at 30% 30%, #ffdb71, #ffc107 45%, #473400 100%);
    color: #111;
}

.c1 {
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}

.c2 {
    right: 9%;
    top: 18%;
}

.c3 {
    right: 4%;
    top: 50%;
    transform: translateY(-50%);
}

.c4 {
    right: 16%;
    bottom: 11%;
}

.c5 {
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
}

.c6 {
    left: 12%;
    bottom: 18%;
}

.c7 {
    left: 3%;
    top: 50%;
    transform: translateY(-50%);
}

.c8 {
    left: 16%;
    top: 11%;
}

.market-table {
    padding: 26px;
    overflow: hidden;
}

.row {
    display: grid;
    grid-template-columns: 48px 1.3fr 1.1fr 1fr 0.9fr 0.8fr;
    align-items: center;
    gap: 16px;
}

.market-head {
    padding: 0 14px 16px;
    color: var(--text-muted);
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.market-body {
    display: grid;
    gap: 16px;
    padding-top: 22px;
}

.market-row {
    min-height: 64px;
    padding: 8px 14px;
    border-radius: 999px;
    background: #141414;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.market-row.alt {
    background: #191919;
}

.market-row:hover {
    transform: translateX(4px);
    border-color: rgba(255, 193, 7, 0.18);
}

.coin-name {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.coin-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 16px;
}

.coin-icon.btc {
    color: #111;
    background: linear-gradient(135deg, #ffd76b, #ffc107);
}

.coin-icon.eth {
    color: #f5f5f5;
}

.coin-icon.usdt {
    color: #5de0a8;
}

.coin-icon.xrp {
    color: #cdd4ff;
}

.coin-icon.doge {
    color: #f9d26b;
}

.table-link {
    color: var(--primary);
    font-weight: 500;
}

.community-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 24px;
    align-items: center;
}

.testimonials-mosaic {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.comment-card, .ghost-panel {
    min-height: 212px;
    padding: 28px;
}

.comment-card p {
    margin: 0 0 18px;
    font-size: 14px;
}

.comment-card strong, .comment-card span {
    display: block;
}

.comment-card strong {
    font-size: 15px;
    font-weight: 500;
}

.comment-card span {
    margin-top: 4px;
    font-size: 13px;
    color: var(--text-muted);
}

.ghost-panel {
    background: linear-gradient(90deg, rgba(25, 25, 25, 0.04), rgba(30, 30, 30, 0.75));
}

.faq-list {
    display: grid;
    gap: 18px;
}

.faq-item {
    overflow: clip;
}

.faq-item[open] {
    border-color: rgba(255, 249, 230, 0.8);
}

.faq summary {
    list-style: none;
    cursor: pointer;
    padding: 28px 32px;
    font-size: 22px;
    font-weight: 500;
    position: relative;
}

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

.faq summary::after {
    content: "+";
    position: absolute;
    right: 28px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    color: var(--text-muted);
    font-size: 24px;
    transition: transform 0.25s ease, color 0.25s ease;
}

.faq-item[open] summary::after {
    content: "−";
    color: var(--primary);
}

.faq-content {
    padding: 0 32px 28px;
    font-size: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: -4px;
    padding-top: 18px;
}

.site-footer {
    padding-top: 36px;
    padding-bottom: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-top, .footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.footer-socials a {
    width: 44px;
    height: 44px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.footer-socials a img {
    max-width: 40px;
    border-radius: 50%;
}

.social-max img {
    max-width: 36px !important;
}

.footer-socials a:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 193, 7, 0.22);
}

.footer-grid {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.site-footer h4 {
    margin-bottom: 16px;
    font-size: 18px;
    color: var(--text);
}

.site-footer a {
    display: block;
    margin: 10px 0;
    font-size: 14px;
}

.footer-bottom {
    margin-top: 24px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-bottom p {
    margin: 0;
    width: 100%;
    text-align: center;
    font-size: 13px;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
}

@keyframes spin-clockwise {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes spin-counter {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(-360deg);
    }
}

@keyframes float-planet {
    0%, 100% {
        transform: translateY(0px) scale(1);
    }
    50% {
        transform: translateY(-10px) scale(1.015);
    }
}

@media (max-width: 1100px) {
    .hero-grid, .community-grid, .trust-panel, .feature-grid {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        min-height: 480px;
    }

    .trust-copy {
        max-width: 620px;
    }

    .market-table {
        overflow-x: auto;
    }
}

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

    .burger {
        display: block;
    }

    .site-header.menu-open .nav {
        align-items: flex-start;
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .site-header.menu-open .nav-menu, .site-header.menu-open .nav-actions {
        display: flex;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .site-header.menu-open .nav {
        flex-wrap: wrap;
    }

    .site-header.menu-open .nav-menu {
        order: 4;
        gap: 6px;
    }

    .site-header.menu-open .nav-actions {
        order: 5;
        gap: 10px;
        padding-top: 6px;
    }

    .stats-grid, .footer-grid, .testimonials-mosaic {
        grid-template-columns: 1fr 1fr;
    }

    .feature-card {
        min-height: auto;
    }

    .faq summary {
        padding: 24px 22px;
        font-size: 18px;
    }

    .faq-content {
        padding: 18px 22px 24px;
    }
}

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

    .hero {
        padding-top: 40px;
    }

    .hero-grid {
        gap: 10px;
    }

    .hero h1, .community-copy h2 {
        font-size: 38px;
    }

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

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

    .stats-grid, .footer-grid, .testimonials-mosaic {
        grid-template-columns: 1fr;
    }

    .stat-card + .stat-card::before {
        width: auto;
        height: 1px;
        left: 20px;
        right: 20px;
        top: 0;
        bottom: auto;
    }

    .feature-card, .market-table, .trust-panel, .comment-card, .faq-item, .ghost-panel {
        padding-inline: 20px;
    }

    .feature-media {
        height: 250px;
    }

    .trust-orbit {
        min-height: 280px;
        transform: scale(0.88);
        transform-origin: center;
    }

    .community-copy {
        display: grid;
        gap: 16px;
    }
}

@media (max-width: 992px) {
    .trust-orbit {
        display: none !important;
    }

    .footer-top {
        flex-wrap: wrap;
    }
}

@media (max-width: 568px) {
    .logo img {
        max-width: 70px;
    }
    .transfer-chip {
        min-width: 150px;
    }
    #forecast-app .ghost,
    #forecast-app .share-wrap {
        min-width: auto;
        width: 100%;
    }
}

body, html {
    overflow-x: hidden;
}

.logo-mark.logo-mark-image {
    padding: 0;
    overflow: hidden;
    background: transparent;
    box-shadow: none;
}

.logo-mark.logo-mark-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 12px;
}
.site-header.is-scrolled .logo img {
    max-width: 80px;
}
.community-copy h2 {
    margin-bottom: 20px;
}
