/* Golden Bull — Trading Platform */

:root {
    --bg-primary: #FAFAF8;
    --bg-secondary: #FFFFFF;
    --bg-dark: #1A1A1F;
    --bg-terminal: #12121A;

    --gold-dark: #8B6914;
    --gold-mid: #C9A227;
    --gold-tradeeu: #DCAD65;
    --gold-light: #E8D48B;
    --gold-glow: rgba(201, 162, 39, 0.25);
    --gradient-gold: linear-gradient(135deg, #8B6914, #C9A227, #E8D48B);

    --text-primary: #2D2A26;
    --text-secondary: #667085;
    --text-muted: #98A2B3;
    --text-light: #F4F0E6;

    --border-subtle: rgba(201, 162, 39, 0.15);
    --border-glow: rgba(220, 173, 101, 0.35);

    --up: #22C55E;
    --down: #EF4444;

    --font-display: 'Barlow', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --font-mono: 'IBM Plex Mono', monospace;

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.06);
    --shadow-gold: 0 4px 20px rgba(201, 162, 39, 0.15);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --container: 1200px;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4,
.hero__title,
.universal-list__title,
.accounts-level__title,
.live-markets__title,
.markets-preview__title,
.footer__cta-title,
.footer__nav-title,
.btn {
    font-family: var(--font-display);
}

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

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

ul { list-style: none; }

.mono { font-family: var(--font-mono); font-variant-numeric: tabular-nums; }

.sr-only {
    position: absolute; width: 1px; height: 1px;
    padding: 0; margin: -1px; overflow: hidden;
    clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 1.25rem;
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.75rem;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn--fill-gold {
    background: var(--gradient-gold);
    color: var(--text-primary);
    border-color: var(--gold-mid);
    box-shadow: var(--shadow-gold);
}

.btn--fill-gold:hover {
    filter: brightness(1.08);
    transform: translateY(-1px);
}

.btn--stroke-gold {
    background: transparent;
    color: var(--text-primary);
    border-color: var(--gold-mid);
}

.btn--stroke-gold:hover {
    background: var(--gold-glow);
    border-color: var(--gold-dark);
}

.btn--lg {
    padding: 0.9rem 2rem;
    font-size: 0.95rem;
}

.btn--stroke-light {
    background: transparent;
    color: var(--text-light);
    border-color: rgba(232, 212, 139, 0.5);
}

.btn--stroke-light:hover {
    background: rgba(201, 162, 39, 0.15);
    border-color: var(--gold-light);
    color: var(--gold-light);
}

/* LOGO */
.logo {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.logo__img {
    height: 48px;
    width: auto;
    display: block;
    object-fit: contain;
}

.footer__logo-img {
    height: 72px;
    width: auto;
    object-fit: contain;
}

/* HEADER */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-subtle);
}

.header__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 0.875rem;
    padding-bottom: 0.875rem;
}

.header__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.toggle__bar {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}

.header__controls {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.header__actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.btn--mob { display: none; }

/* MENU */
.menu__list--top {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.menu__item { position: relative; }

.menu__link {
    display: block;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-primary);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.menu__link:hover { color: var(--gold-dark); background: var(--gold-glow); }

.menu__sub {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: var(--transition);
    z-index: 50;
}

.menu__item:hover .menu__sub {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.menu__sub a {
    display: block;
    padding: 0.6rem 1.25rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
    transition: var(--transition);
}

.menu__sub a:hover { color: var(--gold-dark); background: var(--gold-glow); }

/* HERO SLIDER */
.hero--slider {
    position: relative;
    background: var(--bg-secondary);
    overflow: hidden;
}

.swiper--hero {
    width: 100%;
    padding-bottom: 5rem;
    position: relative;
}

.hero-slide {
    position: relative;
    height: auto;
}

.hero-slide .hero__copy,
.hero-slide .hero__media {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.swiper-slide-active .hero__copy {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.1s;
}

.swiper-slide-active .hero__media {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.22s;
}

.hero-slide__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 1;
}

.hero-slide--community .hero-slide__bg {
    background:
        radial-gradient(ellipse 80% 60% at 90% 20%, rgba(201, 162, 39, 0.08) 0%, transparent 55%),
        linear-gradient(180deg, #FFFFFF 0%, #FAFAF8 100%);
}

.hero-slide--trust .hero-slide__bg {
    background:
        radial-gradient(ellipse 70% 50% at 85% 30%, rgba(34, 197, 94, 0.05) 0%, transparent 50%),
        linear-gradient(180deg, #FFFFFF 0%, #F8F9FA 100%);
}

.hero-slide--fees .hero-slide__bg {
    background:
        radial-gradient(ellipse 75% 55% at 88% 25%, rgba(201, 162, 39, 0.1) 0%, transparent 52%),
        linear-gradient(180deg, #FFFFFF 0%, #FAFAF8 100%);
}

.hero__container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
    min-height: clamp(480px, 72vh, 580px);
    padding-top: clamp(2.5rem, 5vw, 3.5rem);
    padding-bottom: clamp(2rem, 4vw, 3rem);
}

.hero__copy {
    max-width: 560px;
}

.hero__meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.hero__slide-index {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gold-dark);
    padding: 0.35rem 0.65rem;
    background: var(--gold-glow);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    letter-spacing: 0.05em;
}

.hero__eyebrow {
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold-dark);
}

.hero__title {
    font-size: clamp(1.85rem, 4.2vw, 2.85rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    color: var(--text-primary);
    text-wrap: balance;
}

.hero__text {
    font-size: clamp(0.95rem, 1.8vw, 1.08rem);
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 1.5rem;
    max-width: 520px;
}

.hero__highlights {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    margin-bottom: 2rem;
    padding: 1.25rem 1.25rem 1.25rem 0;
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.hero__highlights li {
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1.4;
}

.hero__highlights li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.45em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gradient-gold);
    box-shadow: 0 0 0 3px var(--gold-glow);
}

.hero__actions {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.hero__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.hero__footnote {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.02em;
}

.hero__media {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 360px;
}

/* Hero visual panels */
.hero-panel {
    position: relative;
    width: 100%;
    max-width: 380px;
    padding: 2rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card), 0 0 0 1px rgba(255, 255, 255, 0.8) inset;
}

.hero-panel__glow {
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.15), transparent 50%);
    pointer-events: none;
}

.hero-panel--brand {
    text-align: center;
    padding: 1.75rem 1.75rem 1.5rem;
}

.hero-panel__logo-wrap {
    position: relative;
    z-index: 1;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 1.25rem;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.hero-panel__logo {
    width: 100%;
    height: auto;
    display: block;
}

.hero-panel__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    position: relative;
    z-index: 1;
}

.hero-panel__stat {
    padding: 0.85rem;
    background: var(--bg-primary);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    text-align: center;
}

.hero-panel__stat-value {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gold-dark);
    line-height: 1.2;
}

.hero-panel__stat-label {
    display: block;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-top: 0.2rem;
}

.hero-panel--trust {
    padding: 2rem 1.75rem;
}

.hero-panel__icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-gold);
    border-radius: 50%;
    color: white;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-gold);
}

.hero-panel__icon svg { width: 32px; height: 32px; }

.hero-panel__checklist {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hero-panel__checklist li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-primary);
    padding: 0.65rem 0.85rem;
    background: var(--bg-primary);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-subtle);
}

.hero-panel__check {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(34, 197, 94, 0.12);
    color: var(--up);
    border-radius: 50%;
    font-size: 0.7rem;
    font-weight: 700;
}

.hero-panel--fees {
    text-align: center;
    padding: 2rem 1.5rem 1.5rem;
}

.hero-panel__fee {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-subtle);
}

.hero-panel__fee-value {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 4rem);
    font-weight: 800;
    line-height: 1;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-panel__fee-label {
    display: block;
    margin-top: 0.35rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-secondary);
}

.hero-panel__fee-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.65rem;
}

.hero-panel__fee-item {
    padding: 0.75rem 0.5rem;
    background: var(--bg-primary);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
}

.hero-panel__fee-item span {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--gold-dark);
}

.hero-panel__fee-item small {
    display: block;
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    margin-top: 0.2rem;
}

/* Hero controls */
.hero__controls {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    width: 100%;
    max-width: var(--container);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}

.hero__nav {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}

.hero__arrow {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: 50%;
    color: var(--text-primary);
    cursor: pointer;
    transition: var(--transition);
}

.hero__arrow svg { width: 20px; height: 20px; }

.hero__arrow:hover {
    border-color: var(--gold-mid);
    background: var(--gold-glow);
    color: var(--gold-dark);
}

.hero__progress-wrap {
    flex: 1;
    min-width: 0;
    max-width: 280px;
}

.hero__fraction {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    letter-spacing: 0.08em;
}

.hero__fraction-current { color: var(--gold-dark); }

.hero__progress {
    height: 3px;
    background: rgba(201, 162, 39, 0.15);
    border-radius: 3px;
    overflow: hidden;
}

.hero__progress-bar {
    height: 100%;
    width: 0%;
    background: var(--gradient-gold);
    border-radius: 3px;
    transition: width 0.1s linear;
}

.hero__pagination {
    position: static !important;
    width: auto !important;
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}

.hero__pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: var(--gold-mid);
    opacity: 0.25;
    margin: 0 !important;
    transition: var(--transition);
}

.hero__pagination .swiper-pagination-bullet-active {
    opacity: 1;
    width: 24px;
    border-radius: 4px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* TICKER */
.m-ticker {
    background: var(--bg-dark);
    border-top: 1px solid rgba(201, 162, 39, 0.2);
    border-bottom: 1px solid rgba(201, 162, 39, 0.2);
    padding: 0.75rem 0;
    overflow: hidden;
}

.m-ticker__body {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.m-ticker__live {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    flex-shrink: 0;
    padding-right: 1rem;
    border-right: 1px solid rgba(255,255,255,0.1);
}

.live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--up);
    box-shadow: 0 0 8px var(--up);
    animation: pulse 2s ease-in-out infinite;
}

.live-dot--off { background: var(--down); box-shadow: 0 0 8px var(--down); animation: none; }

.live-label {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--gold-light);
}

.m-ticker__marquee {
    flex: 1;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, black 5%, black 95%, transparent);
}

.m-ticker__list {
    display: flex;
    gap: 2.5rem;
    animation: marquee 40s linear infinite;
    width: max-content;
}

.m-ticker__list:hover { animation-play-state: paused; }

.m-ticker__item {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
    font-size: 0.8rem;
}

.m-ticker__label {
    font-weight: 600;
    color: var(--text-light);
    min-width: 80px;
}

.m-ticker__value {
    font-family: var(--font-mono);
    color: var(--gold-light);
    min-width: 90px;
}

.m-ticker__percent { font-family: var(--font-mono); font-size: 0.75rem; }
.m-ticker__item--up .m-ticker__percent { color: var(--up); }
.m-ticker__item--down .m-ticker__percent { color: var(--down); }

.m-ticker__value.flash-up { animation: flashUp 0.4s ease; }
.m-ticker__value.flash-down { animation: flashDown 0.4s ease; }

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

@keyframes flashUp {
    0%, 100% { color: var(--gold-light); }
    50% { color: var(--up); }
}

@keyframes flashDown {
    0%, 100% { color: var(--gold-light); }
    50% { color: var(--down); }
}

/* TRUST BAR */
.trust-bar {
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-subtle);
    padding: 1.75rem 0;
}

.trust-bar__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    text-align: center;
}

.trust-bar__item {
    position: relative;
    padding: 0.5rem 1rem;
}

.trust-bar__item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 40px;
    width: 1px;
    background: var(--border-subtle);
}

.trust-bar__value {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.trust-bar__label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-secondary);
    margin-top: 0.25rem;
}

/* MARKETS PREVIEW */
.markets-preview {
    padding: 4rem 0;
    background: var(--bg-primary);
}

.markets-preview__header {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 2rem;
}

.markets-preview__title {
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.markets-preview__link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gold-dark);
    transition: var(--transition);
}

.markets-preview__link:hover { color: var(--gold-mid); }

.markets-preview__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.market-card {
    display: block;
    padding: 1.5rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.market-card:hover {
    border-color: var(--border-glow);
    box-shadow: var(--shadow-gold);
    transform: translateY(-3px);
}

.market-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--gold-glow);
    border-radius: var(--radius-sm);
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--gold-dark);
    margin-bottom: 1rem;
}

.market-card__name {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.market-card__desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* UNIVERSAL LIST */
.universal-list {
    padding: 5rem 0;
    background: var(--bg-secondary);
}

.universal-list--2 { background: var(--bg-primary); }

.universal-list__title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
}

.universal-list__description {
    text-align: center;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 3rem;
    font-size: 1.05rem;
}

.universal-list__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.universal-list__grid--reverse .universal-list__list { order: -1; }

.universal-list__list { display: flex; flex-direction: column; gap: 1.5rem; }

.universal-list__item {
    display: flex;
    gap: 1.25rem;
    padding: 1.5rem;
    background: var(--bg-primary);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.universal-list__item:hover {
    border-color: var(--border-glow);
    box-shadow: var(--shadow-gold);
    transform: translateY(-2px);
}

.universal-list__item-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-glow);
    border-radius: var(--radius-sm);
    color: var(--gold-dark);
}

.universal-list__item-icon svg { width: 26px; height: 26px; }

.universal-list__item-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
}

.universal-list__item-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* PLATFORM MOCKUP */
.platform-mockup {
    background: var(--bg-terminal);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(201, 162, 39, 0.2);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.platform-mockup__bar {
    display: flex;
    gap: 6px;
    padding: 12px 16px;
    background: rgba(255,255,255,0.03);
}

.platform-mockup__bar span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gold-mid);
    opacity: 0.5;
}

.platform-mockup__chart {
    height: 120px;
    padding: 1rem;
}

.platform-mockup__chart svg { width: 100%; height: 100%; }

.platform-mockup__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.platform-mockup__stat {
    padding: 1rem;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.06);
}

.platform-mockup__stat:last-child { border-right: none; }

.platform-mockup__stat span {
    display: block;
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.25rem;
}

.platform-mockup__stat strong {
    font-family: var(--font-mono);
    font-size: 1rem;
    color: var(--gold-light);
}

/* LIVE MARKETS */
.live-markets {
    padding: 5rem 0;
    background: var(--bg-terminal);
    color: var(--text-light);
}

.live-markets__header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
    gap: 2rem;
    margin-bottom: 2rem;
}

.live-markets__title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.live-markets__subtitle {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.live-markets__global {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.global-stat {
    padding: 0.75rem 1.25rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(201, 162, 39, 0.15);
    border-radius: var(--radius-sm);
    text-align: center;
}

.global-stat__label {
    display: block;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 0.2rem;
}

.global-stat__value {
    font-family: var(--font-mono);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gold-light);
}

.live-markets__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 1.5rem;
}

.chart-panel {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(201, 162, 39, 0.15);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.chart-panel__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.chart-panel__pair {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--gold-light);
}

.chart-panel__price {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-light);
}

.chart-panel__body { height: 320px; }

.coins-panel {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(201, 162, 39, 0.15);
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
}

.coins-panel__header {
    display: flex;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.coins-list { flex: 1; overflow-y: auto; max-height: 220px; }

.coin-row {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 0.75rem;
    align-items: center;
    padding: 0.75rem 1.25rem;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    transition: background var(--transition);
}

.coin-row:hover { background: rgba(201, 162, 39, 0.06); }

.coin-row__name { font-weight: 600; font-size: 0.85rem; }
.coin-row__symbol { font-size: 0.7rem; color: var(--text-muted); }

.coin-row__price {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    text-align: right;
}

.coin-row__change {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
    min-width: 70px;
    text-align: center;
}

.coin-row__change--up { background: rgba(34, 197, 94, 0.15); color: var(--up); }
.coin-row__change--down { background: rgba(239, 68, 68, 0.15); color: var(--down); }

.volume-bars {
    padding: 1rem 1.25rem;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.volume-bars__title {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.volume-bar-item {
    display: grid;
    grid-template-columns: 60px 1fr 50px;
    gap: 0.5rem;
    align-items: center;
    margin-bottom: 0.5rem;
    font-size: 0.75rem;
}

.volume-bar-item__track {
    height: 6px;
    background: rgba(255,255,255,0.06);
    border-radius: 3px;
    overflow: hidden;
}

.volume-bar-item__fill {
    height: 100%;
    background: var(--gradient-gold);
    border-radius: 3px;
    transition: width 0.6s ease;
}

.volume-bar-item__pct {
    font-family: var(--font-mono);
    color: var(--text-muted);
    text-align: right;
}

/* ACCOUNTS */
.accounts-level {
    padding: 5rem 0;
    background: var(--bg-secondary);
}

.accounts-level__title {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 700;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.accounts-status { padding: 0 1.25rem; }

.swiper--accounts { padding-bottom: 3rem !important; }

.account-card {
    position: relative;
    padding: 2.5rem 2rem;
    background: var(--bg-primary);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    text-align: center;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: var(--transition);
}

.account-card:hover {
    border-color: var(--border-glow);
    box-shadow: var(--shadow-gold);
    transform: translateY(-4px);
}

.account-card__decor {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    opacity: 0.08;
}

.account-card--silver .account-card__decor { background: #C0C0C0; }
.account-card--gold .account-card__decor { background: var(--gold-mid); }
.account-card--platinum .account-card__decor { background: #E5E4E2; }
.account-card--islamic .account-card__decor { background: #2D6A4F; }

.account-card__icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--gradient-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.25rem;
    box-shadow: var(--shadow-gold);
}

.account-card__title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.account-card__title span {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
}

.account-card__text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    max-width: 280px;
}

.account-card__buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
    max-width: 220px;
}

.accounts-status__pagination .swiper-pagination-bullet { background: var(--gold-mid); }

/* TRUST VISUAL */
.trust-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    padding: 1rem;
}

.trust-visual__card {
    padding: 1.5rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    text-align: center;
    transition: var(--transition);
}

.trust-visual__card:hover { box-shadow: var(--shadow-gold); }

.trust-visual__card--gold {
    background: var(--gradient-gold);
    border-color: var(--gold-mid);
    grid-column: span 2;
}

.trust-visual__check, .trust-visual__num {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.trust-visual__card span:last-child {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-secondary);
}

.trust-visual__card--gold span:last-child { color: var(--text-primary); }

/* NOTIFY */
.notify-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold-mid));
}

.notify-section__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.notify-section__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.35rem;
}

.notify-section__text { color: rgba(255,255,255,0.85); font-size: 0.95rem; }

.notify-form { flex: 1; min-width: 280px; max-width: 480px; }

.notify-form__group {
    display: flex;
    gap: 0.5rem;
}

.notify-form__group input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: var(--radius-sm);
    background: rgba(255,255,255,0.95);
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition);
}

.notify-form__group input:focus { border-color: white; }

.form-message {
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: white;
}

.form-message--error { color: #fecaca; }
.form-message--success { color: #bbf7d0; }

/* PAYMENTS */
.payments {
    padding: 2rem 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-subtle);
}

.payments__item {
    display: flex !important;
    align-items: center;
    justify-content: center;
    height: 60px;
}

.payment-logo {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    padding: 0.5rem 1.25rem;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
}

/* FOOTER */
.footer {
    background: #0C0C0F;
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-gold);
}

.footer::after {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.footer__cta {
    position: relative;
    z-index: 1;
    padding: 3.5rem 0;
    background: linear-gradient(135deg, rgba(139, 105, 20, 0.25) 0%, rgba(12, 12, 15, 0) 60%);
    border-bottom: 1px solid rgba(201, 162, 39, 0.12);
}

.footer__cta-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.footer__cta-eyebrow {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 0.5rem;
}

.footer__cta-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 0.75rem;
    max-width: 520px;
}

.footer__cta-text {
    font-size: 0.95rem;
    color: rgba(244, 240, 230, 0.65);
    max-width: 480px;
    line-height: 1.6;
}

.footer__cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer__main {
    position: relative;
    z-index: 1;
    padding: 3.5rem 0 2.5rem;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.6fr repeat(4, 1fr);
    gap: 2.5rem 2rem;
}

.footer__brand {
    padding-right: 1rem;
}

.footer__logo-link {
    display: inline-block;
    margin-bottom: 1.25rem;
    transition: opacity var(--transition);
}

.footer__logo-link:hover { opacity: 0.9; }

.footer__tagline {
    font-size: 0.9rem;
    color: rgba(244, 240, 230, 0.55);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    max-width: 320px;
}

.footer__contact {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    margin-bottom: 1.5rem;
}

.footer__contact-link,
.footer__contact-hours {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: rgba(244, 240, 230, 0.7);
}

.footer__contact-link:hover { color: var(--gold-light); }

.footer__contact-link svg,
.footer__contact-hours svg {
    flex-shrink: 0;
    color: var(--gold-mid);
}

.footer__social {
    display: flex;
    gap: 0.65rem;
    margin-bottom: 1.5rem;
}

.footer__social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(201, 162, 39, 0.2);
    color: rgba(244, 240, 230, 0.7);
    transition: var(--transition);
}

.footer__social-btn svg { width: 18px; height: 18px; }

.footer__social-btn:hover {
    background: var(--gold-glow);
    border-color: var(--gold-mid);
    color: var(--gold-light);
    transform: translateY(-2px);
}

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

.footer__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.75rem;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(244, 240, 230, 0.6);
    background: rgba(201, 162, 39, 0.08);
    border: 1px solid rgba(201, 162, 39, 0.15);
    border-radius: 100px;
}

.footer__badge svg { color: var(--gold-mid); flex-shrink: 0; }

.footer__nav-title {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--gold-light);
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(201, 162, 39, 0.15);
}

.footer__nav ul {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.footer__nav a {
    font-size: 0.875rem;
    color: rgba(244, 240, 230, 0.55);
    transition: var(--transition);
    display: inline-block;
}

.footer__nav a:hover {
    color: var(--gold-light);
    transform: translateX(4px);
}

.footer__bottom {
    position: relative;
    z-index: 1;
    padding: 1.25rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(0, 0, 0, 0.3);
}

.footer__bottom-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.footer__copy {
    font-size: 0.8rem;
    color: rgba(244, 240, 230, 0.4);
}

.footer__legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
}

.footer__legal-links a {
    font-size: 0.75rem;
    color: rgba(244, 240, 230, 0.45);
    transition: var(--transition);
}

.footer__legal-links a:hover { color: var(--gold-light); }

/* DISCLAIMER */
.disclaimer {
    background: #111;
    padding: 2rem 0;
    border-top: 1px solid rgba(201, 162, 39, 0.15);
}

.disclaimer p {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.disclaimer a { color: var(--gold-light); text-decoration: underline; }

/* COOKIE */
.cookie-policy {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-subtle);
    box-shadow: 0 -4px 24px rgba(0,0,0,0.1);
    padding: 1.25rem 0;
}

.cookie-policy__container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    position: relative;
}

.cookie-policy__description {
    flex: 1;
    font-size: 0.85rem;
    color: var(--text-secondary);
    min-width: 200px;
}

.cookie-policy__description a { color: var(--gold-dark); text-decoration: underline; }

.cookie-policy__buttons { display: flex; gap: 0.75rem; flex-wrap: wrap; }

.cookie-policy__close {
    position: absolute;
    top: -8px;
    right: 0;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-muted);
    cursor: pointer;
    line-height: 1;
}

/* RISK ALERT */
.risk-alert {
    position: fixed;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    max-width: 480px;
    z-index: 150;
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 0.875rem 2.5rem 0.875rem 1rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(201, 162, 39, 0.2);
    font-size: 0.8rem;
    box-shadow: var(--shadow-card);
}

.risk-alert[hidden] { display: none; }

.risk-alert a { color: var(--gold-light); text-decoration: underline; }

.risk-alert__close {
    position: absolute;
    top: 50%;
    right: 0.75rem;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.25rem;
    cursor: pointer;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .live-markets__grid { grid-template-columns: 1fr; }
    .hero__container {
        grid-template-columns: 1fr;
        text-align: left;
        min-height: auto;
    }
    .hero__copy { max-width: none; }
    .hero__text { max-width: none; }
    .hero__media {
        order: -1;
        min-height: auto;
        margin-bottom: 0.5rem;
    }
    .hero-panel { max-width: 320px; margin: 0 auto; }
    .hero__controls {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    .hero__progress-wrap { max-width: 100%; order: 3; width: 100%; }
    .universal-list__grid { grid-template-columns: 1fr; }
    .universal-list__grid--reverse .universal-list__list { order: 0; }
    .trust-bar__grid { grid-template-columns: repeat(2, 1fr); }
    .trust-bar__item:nth-child(2)::after { display: none; }
    .markets-preview__grid { grid-template-columns: repeat(2, 1fr); }
    .footer__grid { grid-template-columns: 1fr 1fr; }
    .footer__brand { grid-column: span 2; }
}

@media (max-width: 768px) {
    .header__toggle { display: flex; }

    .header__controls {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: var(--bg-secondary);
        flex-direction: column;
        padding: 1.5rem;
        gap: 1.5rem;
        border-bottom: 1px solid var(--border-subtle);
        box-shadow: var(--shadow-card);
        transform: translateY(-120%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }

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

    .menu__list--top { flex-direction: column; width: 100%; }

    .menu__sub {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        padding-left: 1rem;
        display: none;
    }

    .menu__item.is-open .menu__sub { display: block; }

    .header__actions { width: 100%; flex-direction: column; }
    .header__actions .btn { width: 100%; }

    .btn--mob { display: inline-flex; }
    .header__actions .btn--stroke-gold:first-child { display: none; }

    .hero__container { padding-top: 2rem; padding-bottom: 1rem; }
    .swiper--hero { padding-bottom: 6.5rem; }
    .hero__buttons { flex-direction: column; }
    .hero__buttons .btn { width: 100%; justify-content: center; }
    .hero-panel__fee-grid { grid-template-columns: 1fr; }
    .hero__nav { display: none; }

    .live-markets__header { flex-direction: column; align-items: flex-start; }
    .live-markets__global { width: 100%; justify-content: space-between; }

    .notify-form__group { flex-direction: column; }
    .notify-form__group .btn { width: 100%; }

    .trust-bar__grid { grid-template-columns: 1fr 1fr; }
    .trust-bar__item::after { display: none !important; }

    .markets-preview__grid { grid-template-columns: 1fr; }

    .footer__grid { grid-template-columns: 1fr; }
    .footer__brand { grid-column: span 1; }
    .footer__cta-inner { flex-direction: column; align-items: flex-start; }
    .footer__cta-actions { width: 100%; }
    .footer__cta-actions .btn { flex: 1; min-width: 140px; }
    .footer__bottom-inner { flex-direction: column; text-align: center; }
    .footer__legal-links { justify-content: center; }

    .risk-alert { left: 0.75rem; right: 0.75rem; max-width: none; }
}

@media (max-width: 480px) {
    .trust-bar__grid { grid-template-columns: 1fr; }
    .logo__img { height: 40px; }
}
