/* ============================================================
   GLOBAL TRADE EXCHANGE GROUP — Luxury Institutional CSS
   Palette: Ivory / White / Navy + Brass Gold accents
   ============================================================ */

/* ---------- TOKENS ---------- */
:root {
    --black:      #0a0a0a;
    --surface:    #111111;
    --surface-2:  #191919;
    --surface-3:  #222222;
    --border:     rgba(255,255,255,0.07);
    --border-mid: rgba(255,255,255,0.12);

    --gold:       #b8913a;
    --gold-light: #c9aa71;
    --gold-dim:   rgba(184,145,58,0.14);
    --gold-glow:  rgba(184,145,58,0.06);

    --navy:       #1b2d4f;
    --navy-light: #2a4270;

    --text:       #e8e4dc;
    --text-muted: #8a8580;
    --text-dim:   #5a5550;

    --up:   #27ae60;
    --down: #e74c3c;

    --font-sans:  Helvetica, 'Helvetica Neue', Arial, sans-serif;
    --font-serif: Helvetica, 'Helvetica Neue', Arial, sans-serif;

    --radius-sm: 4px;
    --radius:    8px;
    --radius-lg: 14px;

    --header-h: 72px;
    --ease:      cubic-bezier(.25,.8,.25,1);
    --ease-out:  cubic-bezier(.16,1,.3,1);
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-sans);
    background: var(--black);
    color: var(--text);
    line-height: 1.65;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ---------- UTILITY ---------- */
.wrap {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}
.section { padding: 120px 0; }
.section-head { margin-bottom: 64px; }
.section-head.centered { text-align: center; }
.label {
    display: inline-block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}
.section-head h2 {
    font-family: var(--font-serif);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -.02em;
}
.eyebrow {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    display: block;
}

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .06em;
    text-transform: uppercase;
    transition: all .25s var(--ease);
    position: relative;
    overflow: hidden;
}
.btn.large { padding: 16px 36px; font-size: 13px; }

.btn-gold {
    background: var(--gold);
    color: #0d0b09;
}
.btn-gold::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.18) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform .6s var(--ease-out);
}
.btn-gold:hover::before { transform: translateX(100%); }
.btn-gold:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
    box-shadow: 0 8px 32px rgba(201,170,113,.25);
}

.btn-ghost {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border-mid);
}
.btn-ghost:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.btn-outline {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: 12px 24px;
}
.btn-outline:hover {
    background: var(--gold);
    color: #0d0b09;
}

/* ---------- SCROLL REVEAL ---------- */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .75s var(--ease-out), transform .75s var(--ease-out);
}
.reveal.in-view {
    opacity: 1;
    transform: translateY(0);
}
.fade-in {
    animation: fadeUp .9s var(--ease-out) both;
}
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(32px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ---------- HEADER ---------- */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    height: var(--header-h);
    border-bottom: 1px solid transparent;
    transition: background .3s, border-color .3s, backdrop-filter .3s;
}
.header.scrolled {
    background: rgba(10,10,10,.92);
    backdrop-filter: blur(16px);
    border-color: var(--border);
}
.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 48px;
}
.logo {
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .12em;
    color: var(--text);
    white-space: nowrap;
}
.logo span { color: var(--gold); }
.nav {
    display: flex;
    gap: 36px;
    margin-right: auto;
}
.nav a {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--text-muted);
    transition: color .2s;
}
.nav a:hover { color: var(--text); }
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}
.nav-link-subtle {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--text-muted);
    transition: color .2s;
}
.nav-link-subtle:hover { color: var(--text); }
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 6px;
}
.menu-toggle span {
    display: block;
    width: 22px; height: 1.5px;
    background: var(--text);
    transition: .3s;
}

/* ---------- HERO ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--header-h);
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, #0a0a0a 0%, #111111 50%, #161616 100%);
}
.hero-banner-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.12;
    display: block;
}
.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0,0,0,0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,0,0.06) 1px, transparent 1px);
    background-size: 80px 80px;
    -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 40%, black 40%, transparent 100%);
    mask-image: radial-gradient(ellipse 80% 80% at 50% 40%, black 40%, transparent 100%);
}
.hero-glow {
    position: absolute;
    width: 600px; height: 600px;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
}
.hero-glow.left {
    top: -100px; left: -200px;
    background: radial-gradient(circle, rgba(184,145,58,.12) 0%, transparent 70%);
}
.hero-glow.right {
    bottom: -100px; right: -200px;
    background: radial-gradient(circle, rgba(27,45,79,.1) 0%, transparent 70%);
}
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    padding-top: 80px;
    padding-bottom: 120px;
}
.hero-content h1 {
    font-family: var(--font-serif);
    font-size: clamp(42px, 5.5vw, 76px);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -.03em;
    margin-bottom: 32px;
    background: linear-gradient(160deg, #e8e4dc 0%, #b8913a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
/* ── Hero Large Logo ── */
.hero-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    margin: 0 auto 64px auto;
}

/* Big GTE monogram */
.hero-logo-emblem {
    font-family: var(--font-sans);
    font-size: clamp(80px, 15vw, 200px);
    font-weight: 200;
    letter-spacing: .25em;
    padding-left: .25em; /* Offset for letter-spacing */
    line-height: 1;
    background: linear-gradient(130deg, var(--navy) 0%, var(--gold) 55%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    margin-bottom: 24px;
}
.hero-logo-emblem::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 10%;
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold) 50%, transparent);
}

/* Two-line full name */
.hero-logo-wordmark {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    margin-top: 12px;
}
.hero-logo-wordmark span {
    display: block;
    font-family: var(--font-sans);
    font-size: clamp(12px, 1.4vw, 18px);
    font-weight: 400;
    letter-spacing: .45em;
    padding-left: .45em;
    text-transform: uppercase;
    color: var(--text-muted);
}
.hero-logo-wordmark span:first-child {
    color: var(--gold-light);
}

/* Hero logo image */
.hero-logo-img {
    width: clamp(220px, 40vw, 420px);
    height: auto;
    margin: 0 auto;
    filter: drop-shadow(0 0 40px rgba(201,170,113,.25));
}

/* Decorative rule */
.hero-logo-rule {
    display: block;
    width: 56px;
    height: 1px;
    background: linear-gradient(90deg, var(--gold), transparent);
    margin-top: 6px;
}

.hero-sub {
    font-size: 17px;
    font-weight: 300;
    line-height: 1.75;
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 48px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ---------- TRUST STRIP ---------- */
.trust-strip {
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 18px 0;
}
.trust-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}
.trust-wrap span {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--text-muted);
}
.trust-wrap .sep { color: var(--text-dim); }

/* ---------- SHARED CARD BASE ---------- */
.serve-card, .market-card, .report-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px;
    transition: border-color .3s, transform .3s, box-shadow .3s;
    position: relative;
    overflow: hidden;
}
.serve-card:hover, .market-card:hover {
    border-color: rgba(201,170,113,.3);
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(0,0,0,.4);
}
.serve-card::after, .market-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(140deg, var(--gold-glow) 0%, transparent 60%);
    opacity: 0;
    transition: opacity .4s;
}
.serve-card:hover::after, .market-card:hover::after { opacity: 1; }

/* ---------- WHO WE SERVE ---------- */
.serve { background: var(--black); }
.serve-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}
.gold-bar {
    width: 32px; height: 2px;
    background: var(--gold);
    margin-bottom: 24px;
}
.serve-card h3 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 12px;
}
.serve-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ---------- MARKETS ---------- */
.markets { background: var(--surface); }
.markets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}
.market-card { padding: 40px 36px; }
.mkt-num {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .2em;
    color: var(--gold);
    margin-bottom: 12px;
}
.market-card h3 {
    font-size: 22px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 16px;
    font-family: var(--font-sans);
}
.market-card p { font-size: 14px; color: var(--text-muted); margin-bottom: 24px; line-height: 1.7; }
/* Live quote widget inside market cards */
.mkt-live {
    margin: 0 0 20px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 4px 0;
}
.mkt-live .tradingview-widget-container {
    min-height: 60px;
}

/* Live ticker grid inside cards */
.mkt-tickers {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
}
.mkt-tick-item {
    background: var(--surface-2);
    padding: 12px 14px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    transition: background .2s;
    position: relative;
}
.mkt-tick-item:hover { background: var(--surface-3); }
.mkt-tick-item:hover .tick-name { color: var(--gold); }
.tick-name {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--text-dim);
    transition: color .2s;
}
.tick-price {
    font-size: 15px;
    font-weight: 500;
    font-family: 'Courier New', monospace;
    color: var(--text);
    letter-spacing: .02em;
}
.tick-change {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .04em;
}
.tick-change.up   { color: var(--up); }
.tick-change.down { color: var(--down); }
.tick-change.flat { color: var(--text-dim); }

/* Subtle live dot on active tickers */
.mkt-tick-item::after {
    content: '';
    position: absolute;
    top: 8px; right: 8px;
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--up);
    opacity: 0;
    transition: opacity .3s;
}
.mkt-tick-item.live::after { opacity: 1; }

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.tag-list li {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--gold);
    background: var(--gold-dim);
    border: 1px solid rgba(201,170,113,.2);
    border-radius: 3px;
    padding: 4px 10px;
}

/* ---------- WHY GTE ---------- */
.why-gte { background: var(--black); }
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px,1fr));
    gap: 1px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.pillar {
    background: var(--surface);
    padding: 48px 40px;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    transition: background .3s;
}
.pillar:last-child { border-right: none; }
.pillar:hover { background: var(--surface-2); }
.pillar-icon {
    display: block;
    font-size: 20px;
    color: var(--gold);
    margin-bottom: 24px;
    opacity: .7;
}
.pillar h3 { font-size: 17px; font-weight: 500; margin-bottom: 12px; }
.pillar p { font-size: 13px; color: var(--text-muted); line-height: 1.75; }

/* ---------- PLATFORM PREVIEW ---------- */
.platform-section { background: var(--surface); }
.platform-wrap {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
}
.platform-copy .label { margin-bottom: 16px; }
.platform-copy h2 {
    font-family: var(--font-serif);
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 400;
    margin-bottom: 20px;
    line-height: 1.2;
}
.platform-copy p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 32px;
}

/* Terminal Mockup */
.terminal-mockup {
    background: var(--surface-3);
    border: 1px solid var(--border-mid);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(0,0,0,.5);
}
.t-header {
    background: var(--surface-2);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid var(--border);
}
.t-dots { display: flex; gap: 6px; }
.t-dots span {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: var(--border-mid);
}
.t-title {
    font-size: 10px;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-left: auto;
}
.t-body { display: flex; height: 280px; }

/* Live chart replaces static mockup body */
.t-live-chart {
    height: 420px;
    width: 100%;
    overflow: hidden;
}
.t-sidebar {
    width: 48px;
    background: var(--surface-2);
    border-right: 1px solid var(--border);
    padding: 20px 12px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.t-nav-item {
    height: 28px;
    background: var(--surface-3);
    border-radius: 4px;
    transition: background .2s;
}
.t-nav-item.active { background: rgba(27,45,79,0.15); }
.t-content { flex: 1; padding: 20px; display: flex; flex-direction: column; gap: 16px; }
.t-chart {
    height: 100px;
    background: var(--surface-2);
    border-radius: var(--radius-sm);
    position: relative;
    overflow: hidden;
}
.chart-line {
    position: absolute;
    bottom: 20px; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold) 20%, var(--gold-light) 60%, var(--up) 80%, var(--up));
    border-radius: 2px;
}
.chart-line::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 60px;
    transform: translateY(-60px);
    background: linear-gradient(to bottom, transparent, rgba(201,170,113,.06));
}
.t-metrics { display: flex; gap: 12px; }
.t-metric {
    flex: 1;
    background: var(--surface-2);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.m-label { font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: var(--text-dim); }
.m-val { font-size: 12px; font-weight: 600; font-family: 'Courier New', monospace; }
.m-val.up { color: var(--up); }
.m-val.down { color: var(--down); }
.t-orderbook { display: flex; flex-direction: column; gap: 4px; }
.ob-row {
    height: 8px;
    border-radius: 2px;
}
.ob-row.ask { background: rgba(224,85,85,.15); }
.ob-row.mid { background: var(--border-mid); height: 1px; }
.ob-row.bid { background: rgba(76,175,122,.15); }
.ob-w1 { width: 72%; }
.ob-w2 { width: 58%; }
.ob-w3 { width: 65%; }
.ob-w4 { width: 80%; }

/* ---------- HOW IT WORKS ---------- */
.process-section { background: var(--black); }
.steps {
    display: flex;
    align-items: flex-start;
    gap: 0;
    flex-wrap: wrap;
}
.step {
    flex: 1;
    min-width: 180px;
    padding: 40px 32px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    position: relative;
    background: var(--surface);
    transition: border-color .3s;
}
.step:hover { border-color: rgba(201,170,113,.3); }
.step-connector {
    flex: 0 0 48px;
    height: 1px;
    background: linear-gradient(90deg, var(--border-mid), var(--gold), var(--border-mid));
    margin-top: 60px;
    margin-left: -1px;
    margin-right: -1px;
    position: relative;
    z-index: 1;
}
.step-num {
    font-size: 40px;
    font-weight: 300;
    color: var(--gold);
    opacity: .35;
    line-height: 1;
    margin-bottom: 16px;
    font-family: var(--font-serif);
}
.step h3 { font-size: 16px; font-weight: 500; margin-bottom: 10px; }
.step p { font-size: 13px; color: var(--text-muted); line-height: 1.7; }

/* ---------- INTELLIGENCE ---------- */
.intel-section { background: var(--surface); }
.intel-wrap {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}
.intel-copy h2 { font-family: var(--font-serif); font-size: clamp(28px,3.5vw,42px); font-weight: 400; margin-bottom: 20px; line-height: 1.2; }
.intel-copy p { font-size: 15px; color: var(--text-muted); line-height: 1.8; }
.intel-cards { display: flex; flex-direction: column; gap: 20px; }
.report-card { padding: 32px; }
.report-card:hover { border-color: rgba(201,170,113,.3); }
.report-tag {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--gold);
    background: var(--gold-dim);
    padding: 4px 10px;
    border-radius: 3px;
    display: inline-block;
    margin-bottom: 16px;
}
.report-card h4 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
    line-height: 1.4;
}
.report-card p { font-size: 13px; color: var(--text-muted); line-height: 1.7; margin-bottom: 16px; }
.report-date { font-size: 11px; color: var(--text-dim); letter-spacing: .1em; text-transform: uppercase; }

/* ---------- ABOUT + FAQ ---------- */
.about-faq { background: var(--black); }
.about-faq-wrap {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: start;
}
.about-col .label { margin-bottom: 16px; }
.about-col h2 { font-family: var(--font-serif); font-size: clamp(28px,3.5vw,40px); font-weight: 400; margin-bottom: 20px; }
.ceo-profile {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    margin-top: 24px;
}
.ceo-image {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    flex-shrink: 0;
}
.ceo-bio p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 16px;
}
.ceo-bio p:last-child {
    margin-bottom: 0;
}
@media (max-width: 768px) {
    .ceo-profile {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}
.faq-col .label { margin-bottom: 24px; }

/* Accordion */
.accordion { border-top: 1px solid var(--border); }
.acc-item { border-bottom: 1px solid var(--border); }
.acc-header {
    width: 100%;
    text-align: left;
    padding: 20px 0;
    font-size: 14px;
    font-weight: 400;
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    transition: color .2s;
}
.acc-header:hover { color: var(--gold); }
.acc-arrow {
    font-size: 18px;
    color: var(--gold);
    transition: transform .3s, color .2s;
    flex-shrink: 0;
}
.acc-item.open .acc-arrow { transform: rotate(45deg); }
.acc-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height .45s var(--ease-out);
}
.acc-body p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.75;
    padding-bottom: 20px;
}

/* ---------- FINAL CTA ---------- */
.final-cta {
    position: relative;
    overflow: hidden;
    background: var(--surface);
    text-align: center;
}
.final-cta-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 80% at 50% 100%, rgba(27,45,79,.08) 0%, transparent 70%);
    pointer-events: none;
}
.final-cta-content {
    position: relative;
    z-index: 1;
}
.final-cta-content h2 {
    font-family: var(--font-serif);
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 400;
    letter-spacing: -.03em;
    margin-bottom: 20px;
    line-height: 1.1;
}
.final-cta-content p {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 520px;
    margin: 0 auto 40px;
    line-height: 1.75;
}

/* ---------- FOOTER ---------- */
.footer {
    background: var(--surface);
    border-top: 1px solid var(--border);
}
.footer-inner {
    padding-top: 80px;
    padding-bottom: 60px;
    display: flex;
    gap: 80px;
    flex-wrap: wrap;
}
.footer-brand { max-width: 280px; }
.footer-brand .logo { font-size: 16px; font-weight: 600; letter-spacing: .12em; }
.footer-brand p { font-size: 13px; color: var(--text-dim); margin-top: 12px; line-height: 1.6; }
.footer-brand-img {
    margin-top: 20px;
    width: 100%;
    max-width: 220px;
    height: auto;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    opacity: 0.85;
}
.footer-links {
    display: flex;
    gap: 60px;
    flex: 1;
    justify-content: flex-end;
    flex-wrap: wrap;
}
.link-col { display: flex; flex-direction: column; gap: 12px; }
.link-col h4 { font-size: 11px; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 4px; }
.link-col a { font-size: 13px; color: var(--text-dim); transition: color .2s; }
.link-col a:hover { color: var(--gold); }
.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 24px 0;
}
.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}
.footer-bottom p { font-size: 12px; color: var(--text-dim); }
.footer-badges { display: flex; gap: 16px; }
.footer-badges span {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--text-dim);
    border: 1px solid var(--border);
    padding: 5px 12px;
    border-radius: 3px;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
    .platform-wrap { grid-template-columns: 1fr; gap: 48px; }
    .intel-wrap { grid-template-columns: 1fr; gap: 48px; }
    .about-faq-wrap { grid-template-columns: 1fr; gap: 60px; }
    .step-connector { display: none; }
    .steps { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
    .pillars-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .wrap { padding: 0 24px; }
    .section { padding: 80px 0; }
    .hero-content h1 { font-size: 38px; }
    .hero-sub { font-size: 15px; }
    .nav, .header-actions { display: none; }
    .nav.mobile-open, .header-actions.mobile-open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: var(--header-h);
        left: 0; right: 0;
        background: rgba(10,10,10,.98);
        -webkit-backdrop-filter: blur(20px);
        backdrop-filter: blur(20px);
        padding: 32px 24px;
        gap: 24px;
        border-bottom: 1px solid var(--border);
        z-index: 99;
    }
    .header-actions.mobile-open { top: calc(var(--header-h) + 180px); }
    .menu-toggle { display: flex; margin-left: auto; }
    .trust-wrap { flex-direction: column; gap: 10px; text-align: center; }
    .trust-wrap .sep { display: none; }
    .serve-grid { grid-template-columns: 1fr; }
    .markets-grid { grid-template-columns: 1fr; }
    .pillars-grid { grid-template-columns: 1fr; }
    .steps { grid-template-columns: 1fr; }
    .intel-cards { gap: 16px; }
    .footer-inner { flex-direction: column; gap: 40px; }
    .footer-links { justify-content: flex-start; }
    .footer-bottom-inner { flex-direction: column; align-items: flex-start; }
    .header-inner { gap: 16px; }
}

/* ---------- INTERNATIONAL OFFICES — 50/50 split ---------- */
.intl-offices {
    background: var(--black);
    overflow: hidden;
}

.intl-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 640px;
}

/* ── LEFT: text panel ── */
.intl-split-text {
    padding: 80px 64px 80px 40px;
    max-width: 680px;
    margin-left: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0;
}
.intl-split-text .label { margin-bottom: 16px; }
.intl-split-text h2 {
    font-family: var(--font-serif);
    font-size: clamp(28px, 2.8vw, 42px);
    font-weight: 400;
    margin-bottom: 24px;
    line-height: 1.2;
}
.intl-split-text p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.85;
    margin-bottom: 16px;
}
.intl-split-text p:last-of-type { margin-bottom: 36px; }

.intl-regions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 32px;
    border-top: 1px solid var(--border);
    padding-top: 28px;
}
.intl-region-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
}
.region-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 2px;
}
.region-item {
    font-size: 13px;
    color: var(--text-muted);
    padding-left: 12px;
    position: relative;
}
.region-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gold);
    opacity: .5;
}

/* ── RIGHT: image panel ── */
.intl-split-img {
    position: relative;
    overflow: hidden;
}
.intl-map-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform .7s var(--ease-out);
}
.intl-split-img:hover .intl-map-img { transform: scale(1.03); }

/* Gradient edge blending left side into background */
.intl-split-img::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--black) 0%, transparent 18%);
    z-index: 1;
    pointer-events: none;
}

/* Badge */
.intl-badge {
    position: absolute;
    top: 28px;
    right: 28px;
    background: rgba(10,10,10,.82);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(184,145,58,.35);
    border-radius: var(--radius);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 2;
}
.badge-num {
    font-size: 42px;
    font-weight: 200;
    color: var(--gold);
    line-height: 1;
    font-family: var(--font-serif);
}
.badge-text {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Tag bottom */
.intl-map-tag {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px 28px;
    background: linear-gradient(to top, rgba(0,0,0,.75) 0%, transparent 100%);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold-light);
    z-index: 2;
}

@media (max-width: 1024px) {
    .intl-split { grid-template-columns: 1fr; min-height: 0; }
    .intl-split-text { padding: 64px 40px; max-width: 100%; margin-left: 0; }
    .intl-split-img { min-height: 420px; }
    .intl-split-img::before { background: linear-gradient(to bottom, var(--black) 0%, transparent 15%); }
}
@media (max-width: 768px) {
    .intl-split-text { padding: 48px 24px; }
    .intl-regions { grid-template-columns: 1fr 1fr; gap: 16px; }
    .intl-split-img { min-height: 300px; }
    .intl-badge { top: 14px; right: 14px; padding: 10px 14px; }
    .badge-num { font-size: 32px; }
}

/* ---------- MARKET MODAL ---------- */
.market-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 200;
    align-items: center;
    justify-content: center;
}
.market-modal.active { display: flex; }
.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.85);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
}
.modal-content {
    position: relative;
    z-index: 1;
    background: #111111;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius-lg);
    width: min(92vw, 980px);
    height: min(85vh, 720px);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0,0,0,.8);
}
.modal-close {
    position: absolute;
    top: 16px; right: 20px;
    font-size: 22px;
    color: var(--text-dim);
    z-index: 2;
    transition: color .2s;
}
.modal-close:hover { color: var(--gold); }
.modal-header {
    padding: 20px 28px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #191919;
}
.modal-title-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}
.modal-title-wrap h2 {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: .06em;
    color: var(--text);
}
.live-pulse {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--up);
    box-shadow: 0 0 6px var(--up);
    animation: pulse 1.8s infinite;
}
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50%       { transform: scale(.7); }
}
.modal-meta {
    font-size: 10px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--text-dim);
}
.modal-body {
    flex: 1;
    overflow: hidden;
}
#tradingview_widget {
    width: 100%;
    height: 100%;
}
