/* ============================================================
   AXIOM BRIDGE — /home3 "Lux" theme
   Palette: Deep Navy #0A1F44 | Steel Grey #5A6A7A | Gold #C9A14A
   ============================================================ */

:root {
    --navy: #0a1f44;
    --navy-deep: #071633;
    --navy-soft: #12305e;
    --steel: #5a6a7a;
    --gold: #c9a14a;
    --gold-light: #e6c87e;
    --ink: #1c2733;
    --bg: #ffffff;
    --bg-soft: #f4f6fa;
    --line: #e3e8f0;
    --radius: 18px;
    --shadow-sm: 0 4px 18px rgba(10, 31, 68, 0.07);
    --shadow-md: 0 14px 40px rgba(10, 31, 68, 0.12);
    --font-head: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

.lux-body {
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--bg);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.lux-container {
    width: min(1200px, 92%);
    margin-inline: auto;
}

h1, h2, h3, h4 { font-family: var(--font-head); color: var(--navy); line-height: 1.2; }

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---------- Buttons ---------- */
.lux-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 15px 30px;
    border-radius: 999px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease;
    cursor: pointer;
    white-space: nowrap;
}
.lux-btn svg { width: 18px; height: 18px; transition: transform 0.3s ease; }
.lux-btn:hover svg { transform: translateX(4px); }
.lux-btn--sm { padding: 10px 22px; font-size: 0.85rem; }
.lux-btn--gold {
    background: linear-gradient(135deg, var(--gold), #b28a37);
    color: #fff;
    box-shadow: 0 8px 24px rgba(201, 161, 74, 0.35);
}
.lux-btn--gold:hover { transform: translateY(-3px); box-shadow: 0 14px 34px rgba(201, 161, 74, 0.5); }
.lux-btn--ghost {
    border: 1.5px solid rgba(255, 255, 255, 0.45);
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(6px);
}
.lux-btn--ghost:hover { background: rgba(255, 255, 255, 0.15); transform: translateY(-3px); }
.lux-btn--navy { background: var(--navy); color: #fff; box-shadow: var(--shadow-sm); }
.lux-btn--navy:hover { background: var(--navy-soft); transform: translateY(-3px); box-shadow: var(--shadow-md); }

/* ---------- Kicker / section head ---------- */
.lux-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-head);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}
.lux-kicker::before { content: ''; width: 34px; height: 2px; background: var(--gold); border-radius: 2px; }
.lux-kicker--gold { color: var(--gold-light); }
.lux-kicker--gold::before { background: var(--gold-light); }

.lux-section { padding: 110px 0; position: relative; }

.lux-section__head { max-width: 720px; margin: 0 auto 64px; text-align: center; }
.lux-section__head .lux-kicker { justify-content: center; }
.lux-section__head .lux-kicker::before { display: none; }
.lux-section__head h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); font-weight: 800; margin-bottom: 18px; }
.lux-section__head h2 em { font-style: normal; color: var(--gold); position: relative; }
.lux-section__head p { color: var(--steel); font-size: 1.05rem; }
.lux-section__head--light h2 { color: #fff; }
.lux-section__head--light p { color: #b8c4d8; }

/* ---------- Reveal on scroll ---------- */
.lux-reveal { opacity: 0; transform: translateY(34px); transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1); }
.lux-reveal.is-visible { opacity: 1; transform: none; }

/* ============================================================
   HEADER
   ============================================================ */
.lux-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 100;
    padding: 18px 0;
    transition: background 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
}
.lux-header.is-scrolled {
    background: rgba(7, 22, 51, 0.92);
    backdrop-filter: blur(14px);
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.25);
    padding: 10px 0;
}
.lux-header__inner { display: flex; align-items: center; gap: 32px; }

.lux-brand { display: flex; align-items: center; gap: 12px; }
.lux-brand__logo { width: 46px; height: 46px; object-fit: contain; filter: drop-shadow(0 2px 6px rgba(0,0,0,0.3)); }
.lux-brand__text { display: flex; flex-direction: column; line-height: 1.15; }
.lux-brand__text strong { font-family: var(--font-head); font-weight: 800; letter-spacing: 0.06em; color: #fff; font-size: 1.02rem; }
.lux-brand__text small { font-size: 0.66rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-light); }

.lux-nav { display: flex; gap: 28px; margin-left: auto; }
.lux-nav a {
    font-family: var(--font-head);
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.82);
    position: relative;
    padding: 6px 0;
    transition: color 0.25s ease;
}
.lux-nav a::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 0; height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
    border-radius: 2px;
}
.lux-nav a:hover { color: #fff; }
.lux-nav a:hover::after { width: 100%; }

.lux-header__cta { margin-left: 8px; }

.lux-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: 0;
    cursor: pointer;
    padding: 6px;
    margin-left: auto;
}
.lux-burger span { width: 26px; height: 2.5px; background: #fff; border-radius: 2px; transition: transform 0.3s ease, opacity 0.3s ease; }
.lux-burger.is-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.lux-burger.is-open span:nth-child(2) { opacity: 0; }
.lux-burger.is-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.lux-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 55%, #0d2a5c 100%);
    color: #fff;
    overflow: hidden;
    padding: 140px 0 90px;
}

.lux-hero__bg { position: absolute; inset: 0; pointer-events: none; }
.lux-hero__grid {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(90, 134, 200, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(90, 134, 200, 0.07) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse 90% 80% at 50% 40%, #000 30%, transparent 75%);
}
.lux-hero__glow { position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.5; animation: lux-drift 14s ease-in-out infinite alternate; }
.lux-hero__glow--1 { width: 480px; height: 480px; background: #14418f; top: -120px; right: -80px; }
.lux-hero__glow--2 { width: 380px; height: 380px; background: rgba(201, 161, 74, 0.35); bottom: -140px; left: -100px; animation-delay: -7s; }

@keyframes lux-drift {
    from { transform: translate(0, 0) scale(1); }
    to { transform: translate(40px, -30px) scale(1.12); }
}

/* floating particles (JS generated) */
.lux-particles { position: absolute; inset: 0; }
.lux-particle {
    position: absolute;
    border-radius: 50%;
    background: var(--gold-light);
    opacity: 0;
    animation: lux-float linear infinite;
}
@keyframes lux-float {
    0% { transform: translateY(0); opacity: 0; }
    12% { opacity: 0.7; }
    88% { opacity: 0.7; }
    100% { transform: translateY(-45vh); opacity: 0; }
}

.lux-hero__inner {
    position: relative;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 48px;
}

.lux-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold-light);
    border: 1px solid rgba(201, 161, 74, 0.4);
    border-radius: 999px;
    padding: 8px 18px;
    margin-bottom: 28px;
    background: rgba(201, 161, 74, 0.08);
}
.lux-eyebrow-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); animation: lux-blink 2s ease-in-out infinite; }
@keyframes lux-blink { 0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(201,161,74,0.6); } 50% { opacity: 0.5; box-shadow: 0 0 0 6px rgba(201,161,74,0); } }

.lux-hero__title {
    font-size: clamp(2.2rem, 4.6vw, 3.7rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 26px;
    letter-spacing: -0.01em;
}
.lux-hero__line { display: block; overflow: hidden; }
.lux-hero__line span { display: inline-block; transform: translateY(110%); animation: lux-rise 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards; }
.lux-hero__line:nth-child(2) span { animation-delay: 0.18s; }
@keyframes lux-rise { to { transform: translateY(0); } }
.lux-text-gold { background: linear-gradient(100deg, var(--gold-light), var(--gold)); -webkit-background-clip: text; background-clip: text; color: transparent; }

.lux-hero__sub { color: #c3cee2; font-size: 1.06rem; max-width: 560px; margin-bottom: 36px; }
.lux-hero__sub strong { color: #fff; font-weight: 600; }

.lux-hero__actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 38px; }

.lux-hero__flags { display: flex; align-items: center; gap: 10px; font-size: 1.35rem; }
.lux-hero__flags span { transition: transform 0.25s ease; cursor: default; }
.lux-hero__flags span:hover { transform: translateY(-5px) scale(1.2); }
.lux-hero__flags em { font-style: normal; font-size: 0.8rem; color: #8fa0bd; margin-left: 8px; letter-spacing: 0.08em; text-transform: uppercase; }

/* stagger the .lux-reveal inside hero (handled by JS delay) */

/* ---------- Globe visual ---------- */
.lux-hero__visual { display: flex; justify-content: center; }
.lux-globe { position: relative; width: min(480px, 100%); animation: lux-globe-in 1.2s cubic-bezier(0.22, 1, 0.36, 1) both 0.25s; }
@keyframes lux-globe-in { from { opacity: 0; transform: scale(0.85); } to { opacity: 1; transform: scale(1); } }
.lux-globe__svg { width: 100%; height: auto; }
.lux-globe__spin { transform-origin: 250px 250px; animation: lux-spin 26s linear infinite; }
@keyframes lux-spin { to { transform: rotate(360deg); } }

.lux-arc { stroke-dasharray: 340; stroke-dashoffset: 340; animation: lux-arc-draw 5s ease-in-out infinite; }
.lux-arc--d1 { animation-delay: 1.2s; }
.lux-arc--d2 { animation-delay: 2.4s; }
.lux-arc--d3 { animation-delay: 3.6s; }
@keyframes lux-arc-draw {
    0% { stroke-dashoffset: 340; opacity: 0; }
    15% { opacity: 1; }
    55% { stroke-dashoffset: 0; opacity: 1; }
    80% { opacity: 0; }
    100% { stroke-dashoffset: 0; opacity: 0; }
}

.lux-node__core { fill: var(--gold-light); }
.lux-node__pulse {
    fill: none;
    stroke: var(--gold);
    stroke-width: 1.4;
    opacity: 0;
    animation: lux-pulse 3s ease-out infinite;
    transform-origin: center;
    transform-box: fill-box;
}
.lux-node__pulse--d1 { animation-delay: 0.6s; }
.lux-node__pulse--d2 { animation-delay: 1.2s; }
.lux-node__pulse--d3 { animation-delay: 1.8s; }
.lux-node__pulse--d4 { animation-delay: 2.4s; }
@keyframes lux-pulse {
    0% { transform: scale(0.25); opacity: 0.9; }
    100% { transform: scale(1.3); opacity: 0; }
}

.lux-globe__chip {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 7px;
    font-family: var(--font-head);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: #e8eefb;
    background: rgba(10, 31, 68, 0.75);
    border: 1px solid rgba(201, 161, 74, 0.45);
    border-radius: 999px;
    padding: 6px 13px;
    backdrop-filter: blur(8px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
    animation: lux-bob 5s ease-in-out infinite;
    white-space: nowrap;
}
.lux-globe__chip span { font-size: 0.95rem; }
.lux-globe__chip--us { top: 30%; left: -4%; }
.lux-globe__chip--bd { top: 34%; right: -6%; animation-delay: -1s; }
.lux-globe__chip--jp { bottom: 32%; left: 0%; animation-delay: -2s; }
.lux-globe__chip--pl { bottom: 34%; right: -2%; animation-delay: -3s; }
.lux-globe__chip--bo { bottom: 12%; right: 22%; animation-delay: -4s; }
@keyframes lux-bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

.lux-hero__scroll {
    position: absolute;
    bottom: 26px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 0.68rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #8fa0bd;
}
.lux-hero__scroll-line { width: 1.5px; height: 42px; background: linear-gradient(var(--gold), transparent); position: relative; overflow: hidden; }
.lux-hero__scroll-line::after {
    content: '';
    position: absolute;
    top: -40%; left: 0;
    width: 100%; height: 40%;
    background: #fff;
    animation: lux-scroll-hint 1.8s ease-in-out infinite;
}
@keyframes lux-scroll-hint { to { top: 110%; } }

/* ============================================================
   TRUST BAR
   ============================================================ */
.lux-trustbar { background: #fff; border-bottom: 1px solid var(--line); position: relative; z-index: 2; }
.lux-trustbar__inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 44px 0;
    gap: 24px;
}
.lux-trustbar__item { text-align: center; position: relative; }
.lux-trustbar__item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -12px; top: 50%;
    transform: translateY(-50%);
    width: 1px; height: 44px;
    background: var(--line);
}
.lux-trustbar__item strong {
    display: block;
    font-family: var(--font-head);
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    font-weight: 800;
    color: var(--navy);
}
.lux-trustbar__item span { font-size: 0.82rem; color: var(--steel); letter-spacing: 0.06em; text-transform: uppercase; font-weight: 500; }

/* ============================================================
   ECOSYSTEM
   ============================================================ */
.lux-ecosystem { background: var(--bg-soft); }

/* two-column centerpiece: network diagram left, live world map right */
.lux-network-duo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    align-items: center;
    margin-bottom: 78px;
}

.lux-network { position: relative; margin: 0 auto; width: 100%; }
.lux-network__svg { position: relative; width: 100%; height: auto; overflow: visible; }

/* soft golden halo behind the hub */
.lux-network__halo {
    position: absolute;
    top: 50%; left: 50%;
    width: 58%;
    aspect-ratio: 1;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(201, 161, 74, 0.16) 0%, rgba(10, 31, 68, 0.05) 45%, transparent 68%);
    animation: lux-halo-breathe 10s ease-in-out infinite;
    pointer-events: none;
}
@keyframes lux-halo-breathe {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.85; }
    50% { transform: translate(-50%, -50%) scale(1.18); opacity: 1; }
}

/* converging paths: draw in on reveal, then dashes keep flowing to center */
.lux-netbase {
    stroke: rgba(10, 31, 68, 0.14);
    stroke-width: 1.6;
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    transition: stroke-dashoffset 1.6s cubic-bezier(0.22, 1, 0.36, 1) 0.3s;
}
.lux-network.is-visible .lux-netbase { stroke-dashoffset: 0; }

.lux-netflow {
    stroke: url(#netFlow);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-dasharray: 2.5 5.5;
    opacity: 0;
    transition: opacity 0.8s ease 1.4s;
    animation: lux-net-flow 2s linear infinite;
}
.lux-network.is-visible .lux-netflow { opacity: 1; }
.lux-netflow--d1 { animation-delay: -0.4s; }
.lux-netflow--d2 { animation-delay: -0.8s; }
.lux-netflow--d3 { animation-delay: -1.2s; }
.lux-netflow--d4 { animation-delay: -1.6s; }
@keyframes lux-net-flow { to { stroke-dashoffset: -8; } }

/* energy dots (SMIL animateMotion carries them along the paths) */
.lux-netdots { opacity: 0; transition: opacity 0.6s ease 1.6s; }
.lux-network.is-visible .lux-netdots { opacity: 1; }
.lux-netdot { fill: var(--gold-light); }
.lux-netdot--soft { fill: #fff; opacity: 0.85; }

/* satellite nodes */
.lux-netsat { cursor: default; }
.lux-netsat .lux-netnode,
.lux-netsat .lux-netflag,
.lux-netsat .lux-netlabel,
.lux-netsat .lux-netsub { transition: transform 0.35s ease; transform-box: fill-box; transform-origin: center; }
.lux-netsat:hover .lux-netnode { transform: scale(1.14); }
.lux-netsat:hover .lux-netflag { transform: scale(1.14); }
.lux-netnode {
    fill: #fff;
    stroke: var(--line);
    stroke-width: 1.5;
    filter: drop-shadow(0 8px 18px rgba(10, 31, 68, 0.16));
}
.lux-netsat:hover .lux-netnode { stroke: var(--gold); }
.lux-netsat__pulse {
    fill: none;
    stroke: var(--gold);
    stroke-width: 1.3;
    opacity: 0;
    transform-box: fill-box;
    transform-origin: center;
    animation: lux-pulse 4.6s ease-out infinite;
}
.lux-netsat__pulse--d1 { animation-delay: 0.9s; }
.lux-netsat__pulse--d2 { animation-delay: 1.8s; }
.lux-netsat__pulse--d3 { animation-delay: 2.7s; }
.lux-netsat__pulse--d4 { animation-delay: 3.6s; }
.lux-netflag { font-size: 26px; }
.lux-netlabel { fill: var(--navy); font-size: 16px; font-weight: 700; letter-spacing: 0.03em; }
.lux-netsub {
    fill: var(--gold);
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}
.lux-netlabel--hub { fill: var(--steel); font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; }

/* gentle float for satellites (on inner group so the SVG translate position stays intact) */
.lux-netsat__float { animation: lux-net-bob 6s ease-in-out infinite; }
.lux-network__sat > g:nth-child(2) .lux-netsat__float { animation-delay: -1.5s; }
.lux-network__sat > g:nth-child(3) .lux-netsat__float { animation-delay: -3s; }
.lux-network__sat > g:nth-child(4) .lux-netsat__float { animation-delay: -4.5s; }
.lux-network__sat > g:nth-child(5) .lux-netsat__float { animation-delay: -2.2s; }
@keyframes lux-net-bob {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-7px); }
}

/* central hub */
.lux-nethub-wrap { opacity: 0; transition: opacity 0.9s ease 0.15s; }
.lux-network.is-visible .lux-nethub-wrap { opacity: 1; }
.lux-nethub {
    stroke: var(--gold);
    stroke-width: 1.5;
    filter: drop-shadow(0 14px 34px rgba(10, 31, 68, 0.4));
}
.lux-nethub__breathe {
    fill: none;
    stroke: rgba(201, 161, 74, 0.55);
    stroke-width: 2;
    transform-box: fill-box;
    transform-origin: center;
    animation: lux-hub-breathe 5s ease-in-out infinite;
}
@keyframes lux-hub-breathe {
    0%, 100% { transform: scale(1); opacity: 0.9; }
    50% { transform: scale(1.06); opacity: 0.35; }
}
.lux-nethub__ring {
    fill: none;
    stroke: var(--gold);
    stroke-width: 1.1;
    stroke-dasharray: 4 7;
    animation: lux-ring-spin 32s linear infinite;
    transform-origin: center;
    transform-box: fill-box;
}
@keyframes lux-ring-spin { to { transform: rotate(360deg); } }
.lux-nethub__text { fill: var(--gold-light); letter-spacing: 0.12em; }
.lux-nethub__logo { filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.45)); }

/* rings collapsing INTO the hub — the "everything converges here" beat */
.lux-hub-absorb {
    fill: none;
    stroke: var(--gold);
    stroke-width: 1.4;
    opacity: 0;
    transform-box: fill-box;
    transform-origin: center;
    animation: lux-absorb 4.8s cubic-bezier(0.3, 0, 0.5, 1) infinite;
}
.lux-hub-absorb--d1 { animation-delay: 1.6s; }
.lux-hub-absorb--d2 { animation-delay: 3.2s; }
@keyframes lux-absorb {
    0% { transform: scale(2.1); opacity: 0; }
    25% { opacity: 0.55; }
    100% { transform: scale(0.92); opacity: 0; }
}

/* orbiting particles around the hub */
.lux-hub-orbit-ring {
    fill: none;
    stroke: rgba(10, 31, 68, 0.1);
    stroke-width: 1;
}
.lux-hub-orbit__dot { fill: var(--gold); filter: drop-shadow(0 0 6px rgba(201, 161, 74, 0.8)); }
.lux-hub-orbit__dot--soft { fill: var(--navy-soft); }

/* ---------- Live world map (right panel) ---------- */
.lux-worldmap { position: relative; }

.lux-worldmap__frame {
    position: relative;
    aspect-ratio: 784 / 459;
    border-radius: var(--radius);
    overflow: hidden;
    background:
        radial-gradient(ellipse at 40% 44%, rgba(201, 161, 74, 0.1), transparent 42%),
        linear-gradient(155deg, #081a3a 0%, var(--navy) 55%, #0d2a5c 100%);
    border: 1px solid rgba(201, 161, 74, 0.3);
    box-shadow: var(--shadow-md);
}
/* lat/long graticule for the "live map" feel */
.lux-worldmap__frame::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(120, 160, 220, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(120, 160, 220, 0.07) 1px, transparent 1px);
    background-size: 11.11% 16.66%;
    pointer-events: none;
    z-index: 1;
}

.lux-worldmap__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: fill;
    opacity: 0.92;
    animation: lux-map-pan 26s ease-in-out infinite alternate;
}
@keyframes lux-map-pan {
    from { transform: scale(1) translate(0, 0); }
    to { transform: scale(1.06) translate(-1.4%, 1%); }
}

/* slow flux of light drifting over the map */
.lux-worldmap__flux {
    position: absolute;
    width: 46%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 161, 74, 0.2), rgba(90, 134, 200, 0.08) 45%, transparent 68%);
    filter: blur(14px);
    mix-blend-mode: screen;
    animation: lux-flux-drift 24s ease-in-out infinite alternate;
    top: 6%;
    left: -10%;
    pointer-events: none;
    z-index: 2;
}
.lux-worldmap__flux--2 {
    width: 34%;
    background: radial-gradient(circle, rgba(120, 170, 255, 0.16), transparent 62%);
    top: 48%;
    left: 68%;
    animation: lux-flux-drift-2 30s ease-in-out infinite alternate;
}
@keyframes lux-flux-drift {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(90%, 34%) scale(1.25); }
    100% { transform: translate(170%, 6%) scale(0.95); }
}
@keyframes lux-flux-drift-2 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-160%, -46%) scale(1.3); }
}

/* radar-style sweep line */
.lux-worldmap__scan {
    position: absolute;
    inset: 0 auto 0 -12%;
    width: 10%;
    background: linear-gradient(90deg, transparent, rgba(201, 161, 74, 0.12), rgba(255, 255, 255, 0.07), transparent);
    animation: lux-map-scan 14s linear infinite;
    pointer-events: none;
    z-index: 2;
}
@keyframes lux-map-scan { to { transform: translateX(1250%); } }

/* connection lines + flowing dots */
.lux-worldmap__lines {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}
.lux-mapline {
    stroke: rgba(201, 161, 74, 0.5);
    stroke-width: 1.3;
    stroke-linecap: round;
    stroke-dasharray: 2 5;
    animation: lux-net-flow 2.4s linear infinite;
}
.lux-mapline:nth-child(2) { animation-delay: -0.5s; }
.lux-mapline:nth-child(3) { animation-delay: -1s; }
.lux-mapline:nth-child(4) { animation-delay: -1.5s; }
.lux-mapline:nth-child(5) { animation-delay: -2s; }
.lux-mapdot { fill: var(--gold-light); }

/* country pins with ripple waves */
.lux-map-pin {
    position: absolute;
    left: var(--x);
    top: var(--y);
    transform: translate(-50%, -50%);
    z-index: 4;
    display: grid;
    place-items: center;
}
.lux-map-pin__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gold-light);
    border: 2px solid #fff;
    box-shadow: 0 0 10px rgba(201, 161, 74, 0.9);
    grid-area: 1 / 1;
}
.lux-map-pin__wave {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1.5px solid var(--gold);
    grid-area: 1 / 1;
    opacity: 0;
    animation: lux-map-wave 3.8s ease-out infinite;
}
.lux-map-pin__wave--d { animation-delay: 1.9s; }
@keyframes lux-map-wave {
    0% { transform: scale(1); opacity: 0.9; }
    100% { transform: scale(5); opacity: 0; }
}
.lux-map-pin:nth-child(odd) .lux-map-pin__wave { animation-duration: 4.4s; }
.lux-map-pin__label {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-head);
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #e8eefb;
    background: rgba(7, 22, 51, 0.78);
    border: 1px solid rgba(201, 161, 74, 0.4);
    border-radius: 999px;
    padding: 3px 10px;
    white-space: nowrap;
    backdrop-filter: blur(4px);
}
.lux-map-pin--flip .lux-map-pin__label {
    left: auto;
    right: calc(50% + 12px);
    top: 50%;
    transform: translateY(-50%);
}

/* central AXIOM BRIDGE hub on the map */
.lux-map-hub {
    position: absolute;
    left: var(--x);
    top: var(--y);
    transform: translate(-50%, -50%);
    z-index: 5;
    display: grid;
    place-items: center;
}
.lux-map-hub__core {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: radial-gradient(circle at 36% 30%, #1a3f7e, var(--navy-deep));
    border: 1.5px solid var(--gold);
    box-shadow: 0 0 26px rgba(201, 161, 74, 0.55), 0 10px 26px rgba(0, 0, 0, 0.45);
    grid-area: 1 / 1;
    animation: lux-hub-glowpulse 5s ease-in-out infinite;
}
@keyframes lux-hub-glowpulse {
    0%, 100% { box-shadow: 0 0 20px rgba(201, 161, 74, 0.45), 0 10px 26px rgba(0, 0, 0, 0.45); }
    50% { box-shadow: 0 0 38px rgba(201, 161, 74, 0.8), 0 10px 26px rgba(0, 0, 0, 0.45); }
}
.lux-map-hub__core img { width: 32px; height: 32px; object-fit: contain; filter: drop-shadow(0 2px 5px rgba(0,0,0,0.5)); }
.lux-map-hub__wave {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    border: 1.5px solid var(--gold);
    grid-area: 1 / 1;
    opacity: 0;
    animation: lux-map-wave 4.6s ease-out infinite;
}
.lux-map-hub__wave--d { animation-delay: 2.3s; }
.lux-map-hub__label {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-head);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    color: var(--gold-light);
    background: rgba(7, 22, 51, 0.85);
    border: 1px solid rgba(201, 161, 74, 0.55);
    border-radius: 999px;
    padding: 4px 14px;
    white-space: nowrap;
}

/* caption under the map */
.lux-worldmap__caption {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 16px;
    font-family: var(--font-head);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--steel);
    text-transform: uppercase;
}
.lux-worldmap__live {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    color: #d64545;
}
.lux-worldmap__live i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d64545;
    animation: lux-blink 1.6s ease-in-out infinite;
}

/* ---------- Ecosystem step-flow cards ---------- */
.lux-eco-grid {
    --eco-gap-x: 44px;
    --eco-gap-y: 52px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--eco-gap-y) var(--eco-gap-x);
    counter-reset: eco-step;
}
/* cards converge toward the center on reveal */
.lux-eco-grid .lux-eco-card.lux-reveal {
    transform: translate(0, 44px) scale(0.96);
    transition: opacity 0.85s ease, transform 0.85s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}
.lux-eco-grid .lux-eco-card.lux-reveal:nth-child(3n + 1) { transform: translate(-56px, 30px) scale(0.96); }
.lux-eco-grid .lux-eco-card.lux-reveal:nth-child(3n) { transform: translate(56px, 30px) scale(0.96); }
.lux-eco-grid .lux-eco-card.lux-reveal.is-visible { transform: translate(0, 0) scale(1); }
.lux-eco-grid .lux-eco-card.lux-reveal.is-visible:hover { transform: translateY(-10px); }

.lux-eco-card {
    background: linear-gradient(165deg, #ffffff, #fafbfe);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 38px 30px 32px;
    position: relative;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.lux-eco-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 48px rgba(10, 31, 68, 0.14), 0 0 0 1px rgba(201, 161, 74, 0.35), 0 0 30px rgba(201, 161, 74, 0.18);
    border-color: rgba(201, 161, 74, 0.55);
}

/* sequential glow sweeping through the steps (9s cycle) */
.lux-eco-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 22px;
    border: 1.6px solid var(--gold);
    box-shadow: 0 0 26px rgba(201, 161, 74, 0.4), inset 0 0 20px rgba(201, 161, 74, 0.1);
    opacity: 0;
    pointer-events: none;
    animation: lux-eco-live 9s linear infinite;
}
@keyframes lux-eco-live {
    0%, 16.5%, 100% { opacity: 0; }
    5% { opacity: 1; }
    11% { opacity: 0.85; }
}
.lux-eco-grid > .lux-eco-card:nth-child(1)::before { animation-delay: 0s; }
.lux-eco-grid > .lux-eco-card:nth-child(2)::before { animation-delay: 1.5s; }
.lux-eco-grid > .lux-eco-card:nth-child(3)::before { animation-delay: 3s; }
.lux-eco-grid > .lux-eco-card:nth-child(6)::before { animation-delay: 4.5s; }
.lux-eco-grid > .lux-eco-card:nth-child(5)::before { animation-delay: 6s; }
.lux-eco-grid > .lux-eco-card:nth-child(4)::before { animation-delay: 7.5s; }

/* step number badge */
.lux-eco-card__step {
    position: absolute;
    top: -17px;
    left: 26px;
    z-index: 3;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    font-family: var(--font-head);
    font-size: 0.78rem;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(140deg, var(--gold-light), #b28a37);
    border: 2.5px solid #fff;
    box-shadow: 0 6px 16px rgba(201, 161, 74, 0.45);
    animation: lux-eco-step 9s linear infinite;
}
@keyframes lux-eco-step {
    0%, 16.5%, 100% { transform: scale(1); box-shadow: 0 6px 16px rgba(201, 161, 74, 0.45); }
    5% { transform: scale(1.22); box-shadow: 0 0 0 9px rgba(201, 161, 74, 0.22), 0 6px 22px rgba(201, 161, 74, 0.65); }
    11% { transform: scale(1.05); }
}
.lux-eco-grid > .lux-eco-card:nth-child(1) .lux-eco-card__step { animation-delay: 0s; }
.lux-eco-grid > .lux-eco-card:nth-child(2) .lux-eco-card__step { animation-delay: 1.5s; }
.lux-eco-grid > .lux-eco-card:nth-child(3) .lux-eco-card__step { animation-delay: 3s; }
.lux-eco-grid > .lux-eco-card:nth-child(6) .lux-eco-card__step { animation-delay: 4.5s; }
.lux-eco-grid > .lux-eco-card:nth-child(5) .lux-eco-card__step { animation-delay: 6s; }
.lux-eco-grid > .lux-eco-card:nth-child(4) .lux-eco-card__step { animation-delay: 7.5s; }

/* ghost step number watermark */
.lux-eco-card__ghost {
    position: absolute;
    top: 14px;
    right: 20px;
    font-family: var(--font-head);
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1.3px rgba(10, 31, 68, 0.1);
    pointer-events: none;
}

/* serpentine connectors: 01→02→03 ↓ 06→05→04 */
.lux-eco-card::after {
    pointer-events: none;
    z-index: 1;
}
.lux-eco-grid > .lux-eco-card:nth-child(1)::after,
.lux-eco-grid > .lux-eco-card:nth-child(2)::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 100%;
    width: var(--eco-gap-x);
    height: 3px;
    transform: translateY(-50%);
    background: repeating-linear-gradient(90deg, var(--gold) 0 7px, transparent 7px 15px);
    filter: drop-shadow(0 0 5px rgba(201, 161, 74, 0.8));
    animation: lux-conn-flow-x 1.7s linear infinite;
}
.lux-eco-grid > .lux-eco-card:nth-child(3)::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    width: 3px;
    height: var(--eco-gap-y);
    transform: translateX(-50%);
    background: repeating-linear-gradient(180deg, var(--gold) 0 7px, transparent 7px 15px);
    filter: drop-shadow(0 0 5px rgba(201, 161, 74, 0.8));
    animation: lux-conn-flow-y 1.7s linear infinite;
}
.lux-eco-grid > .lux-eco-card:nth-child(5)::after,
.lux-eco-grid > .lux-eco-card:nth-child(6)::after {
    content: '';
    position: absolute;
    top: 50%;
    left: calc(-1 * var(--eco-gap-x));
    width: var(--eco-gap-x);
    height: 3px;
    transform: translateY(-50%);
    background: repeating-linear-gradient(90deg, var(--gold) 0 7px, transparent 7px 15px);
    filter: drop-shadow(0 0 5px rgba(201, 161, 74, 0.8));
    animation: lux-conn-flow-x 1.7s linear infinite reverse;
}
@keyframes lux-conn-flow-x { to { background-position-x: 15px; } }
@keyframes lux-conn-flow-y { to { background-position-y: 15px; } }

.lux-eco-card__flag {
    font-size: 1.6rem;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: radial-gradient(circle at 32% 28%, rgba(201, 161, 74, 0.18), rgba(10, 31, 68, 0.05));
    border: 1px solid rgba(201, 161, 74, 0.3);
    margin-bottom: 18px;
    transition: transform 0.35s ease;
}
.lux-eco-card:hover .lux-eco-card__flag { transform: rotate(-6deg) scale(1.1); }
.lux-eco-card h3 { font-size: 1.12rem; font-weight: 700; margin-bottom: 6px; }
.lux-eco-card__role {
    display: block;
    font-family: var(--font-head);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
}
.lux-eco-card p { color: var(--steel); font-size: 0.92rem; }

.lux-eco-card--impact { background: linear-gradient(160deg, var(--navy-deep), var(--navy) 70%); border-color: rgba(201, 161, 74, 0.4); }
.lux-eco-card--impact .lux-eco-card__ghost { -webkit-text-stroke: 1.3px rgba(255, 255, 255, 0.16); }
.lux-eco-card--impact h3 { color: var(--gold-light); margin-bottom: 18px; }
.lux-eco-card--impact ul li {
    color: #c3cee2;
    font-size: 0.9rem;
    padding: 8px 0 8px 26px;
    position: relative;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.12);
}
.lux-eco-card--impact ul li:last-child { border-bottom: 0; }
.lux-eco-card--impact ul li::before {
    content: '\2726';
    position: absolute;
    left: 0;
    color: var(--gold);
}

/* ============================================================
   ACHIEVEMENTS (dark)
   ============================================================ */
.lux-achievements { background: linear-gradient(165deg, var(--navy-deep), var(--navy) 60%, #0d2a5c); color: #fff; overflow: hidden; }
.lux-achievements__bg {
    position: absolute; inset: 0;
    background-image: radial-gradient(rgba(201, 161, 74, 0.14) 1px, transparent 1.5px);
    background-size: 34px 34px;
    mask-image: radial-gradient(ellipse at 50% 0%, #000 20%, transparent 75%);
    pointer-events: none;
}

.lux-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    position: relative;
}
.lux-stat {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: var(--radius);
    padding: 36px 30px;
    backdrop-filter: blur(6px);
    transition: transform 0.35s ease, background 0.35s ease, border-color 0.35s ease;
}
.lux-stat:hover { transform: translateY(-8px); background: rgba(255, 255, 255, 0.07); border-color: rgba(201, 161, 74, 0.5); }
.lux-stat__num {
    font-family: var(--font-head);
    font-size: clamp(2rem, 3.4vw, 2.8rem);
    font-weight: 800;
    background: linear-gradient(100deg, var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 12px;
    line-height: 1.1;
}
.lux-stat__num small { color: rgba(255,255,255,0.35); -webkit-text-fill-color: rgba(255,255,255,0.35); font-weight: 400; }
.lux-stat__num--icon { -webkit-text-fill-color: initial; background: none; color: initial; }
.lux-stat h3 { color: #fff; font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.lux-stat p { color: #a9b8d2; font-size: 0.9rem; }

.lux-footprint {
    margin-top: 64px;
    border: 1px solid rgba(201, 161, 74, 0.3);
    border-radius: var(--radius);
    padding: 28px 32px;
    background: rgba(201, 161, 74, 0.05);
    text-align: center;
}
.lux-footprint__title {
    display: block;
    font-family: var(--font-head);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 18px;
}
.lux-footprint__items { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 28px; }
.lux-footprint__items span { color: #c3cee2; font-size: 0.88rem; }

/* ============================================================
   SERVICES
   ============================================================ */
.lux-svc-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.lux-svc {
    position: relative;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 38px 28px 30px;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.lux-svc::after {
    content: '';
    position: absolute;
    inset: auto 0 0 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}
.lux-svc:hover { transform: translateY(-10px); box-shadow: var(--shadow-md); }
.lux-svc:hover::after { transform: scaleX(1); }
.lux-svc__icon {
    width: 58px; height: 58px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: linear-gradient(140deg, var(--navy), var(--navy-soft));
    color: var(--gold-light);
    margin-bottom: 22px;
    transition: transform 0.35s ease;
}
.lux-svc:hover .lux-svc__icon { transform: rotate(-6deg) scale(1.08); }
.lux-svc__icon svg { width: 28px; height: 28px; }
.lux-svc h3 { font-size: 1.04rem; font-weight: 700; margin-bottom: 10px; }
.lux-svc p { color: var(--steel); font-size: 0.9rem; }
.lux-svc__num {
    position: absolute;
    top: 18px; right: 22px;
    font-family: var(--font-head);
    font-size: 2rem;
    font-weight: 800;
    color: var(--bg-soft);
    -webkit-text-stroke: 1px var(--line);
}

/* ============================================================
   WHY / TRUST PILLARS
   ============================================================ */
.lux-why { background: var(--bg-soft); }
.lux-pillar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.lux-pillar {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 34px 28px;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.lux-pillar:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: rgba(201, 161, 74, 0.45); }
.lux-pillar__icon {
    font-size: 1.7rem;
    width: 60px; height: 60px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 30%, rgba(201, 161, 74, 0.22), rgba(201, 161, 74, 0.07));
    border: 1px solid rgba(201, 161, 74, 0.35);
    margin-bottom: 20px;
}
.lux-pillar h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.lux-pillar p { color: var(--steel); font-size: 0.9rem; }

.lux-message-bar {
    margin-top: 56px;
    background: var(--navy);
    border-radius: var(--radius);
    padding: 44px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.lux-message-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 80% 10%, rgba(201, 161, 74, 0.2), transparent 55%);
}
.lux-message-bar strong {
    position: relative;
    display: block;
    font-family: var(--font-head);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--gold-light);
    margin-bottom: 12px;
}
.lux-message-bar p { position: relative; color: #c3cee2; max-width: 760px; margin-inline: auto; font-size: 0.96rem; }

/* ============================================================
   OPPORTUNITIES
   ============================================================ */
.lux-opp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.lux-opp {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 30px 28px;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.lux-opp:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: rgba(10, 31, 68, 0.35); }
.lux-opp header { display: flex; align-items: center; gap: 14px; margin-bottom: 12px; }
.lux-opp__flag {
    font-size: 1.4rem;
    width: 48px; height: 48px;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    border-radius: 13px;
    background: var(--bg-soft);
    border: 1px solid var(--line);
}
.lux-opp h3 { font-size: 1rem; font-weight: 700; }
.lux-opp > p { color: var(--steel); font-size: 0.88rem; margin-bottom: 14px; }
.lux-opp ul li {
    font-size: 0.86rem;
    color: var(--ink);
    padding: 6px 0 6px 22px;
    position: relative;
}
.lux-opp ul li::before {
    content: '';
    position: absolute;
    left: 2px; top: 13px;
    width: 8px; height: 8px;
    border-radius: 2px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    transform: rotate(45deg);
}

/* ---------- Sectors marquee ---------- */
.lux-marquee {
    margin-top: 80px;
    border-block: 1px solid var(--line);
    padding: 22px 0;
    overflow: hidden;
    background: #fff;
}
.lux-marquee__track {
    display: flex;
    align-items: center;
    gap: 34px;
    width: max-content;
    animation: lux-marquee 30s linear infinite;
}
.lux-marquee:hover .lux-marquee__track { animation-play-state: paused; }
.lux-marquee__track span {
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: 0.04em;
    white-space: nowrap;
}
.lux-marquee__track i { color: var(--gold); font-style: normal; font-size: 0.7rem; }
@keyframes lux-marquee { to { transform: translateX(-50%); } }

/* ============================================================
   LEADERSHIP (dark navy + gold)
   ============================================================ */
.lux-leader { background: linear-gradient(150deg, var(--navy-deep) 0%, var(--navy) 70%); color: #fff; overflow: hidden; }
.lux-leader__bg {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(90, 134, 200, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(90, 134, 200, 0.05) 1px, transparent 1px);
    background-size: 54px 54px;
    pointer-events: none;
}
.lux-leader__grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 56px;
    position: relative;
}
.lux-leader__profile {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(201, 161, 74, 0.28);
    border-radius: var(--radius);
    padding: 44px 38px;
    text-align: center;
}
.lux-leader__avatar {
    position: relative;
    width: 128px; height: 128px;
    margin: 0 auto 24px;
    display: grid;
    place-items: center;
}
.lux-leader__avatar span {
    width: 108px; height: 108px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-family: var(--font-head);
    font-size: 2rem;
    font-weight: 800;
    color: var(--navy);
    background: linear-gradient(140deg, var(--gold-light), var(--gold));
    box-shadow: 0 12px 34px rgba(201, 161, 74, 0.4);
}
.lux-leader__avatar-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1.5px dashed rgba(201, 161, 74, 0.6);
    animation: lux-ring-spin 16s linear infinite;
}
.lux-leader__profile h3 { color: #fff; font-size: 1.5rem; font-weight: 800; margin-bottom: 4px; }
.lux-leader__role {
    display: block;
    font-family: var(--font-head);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 20px;
}
.lux-leader__profile p { color: #b8c4d8; font-size: 0.92rem; margin-bottom: 24px; text-align: left; }
.lux-leader__profile blockquote {
    font-family: var(--font-head);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gold-light);
    border-top: 1px solid rgba(201, 161, 74, 0.3);
    padding-top: 20px;
}

.lux-leader__ownership h4 {
    color: #fff;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 24px;
}
.lux-own { margin-bottom: 18px; }
.lux-own__row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 8px;
}
.lux-own__row span { color: #e8eefb; font-weight: 600; font-size: 0.94rem; }
.lux-own__row span small { color: #8fa0bd; font-weight: 400; margin-left: 8px; font-size: 0.78rem; }
.lux-own__row em { font-style: normal; font-family: var(--font-head); font-weight: 800; color: var(--gold-light); }
.lux-own__bar {
    height: 7px;
    border-radius: 99px;
    background: rgba(255, 255, 255, 0.09);
    overflow: hidden;
}
.lux-own__bar i {
    display: block;
    height: 100%;
    width: 0;
    border-radius: 99px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transition: width 1.4s cubic-bezier(0.22, 1, 0.36, 1) 0.2s;
}
.is-visible .lux-own__bar i, .lux-own__bar.is-animated i { width: var(--w); }

.lux-leader__focus-title { margin-top: 36px; }
.lux-focus-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.lux-focus-tags span {
    font-size: 0.8rem;
    font-weight: 500;
    color: #c3cee2;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    padding: 7px 16px;
    transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease;
}
.lux-focus-tags span:hover { border-color: var(--gold); color: var(--gold-light); background: rgba(201, 161, 74, 0.08); }

/* ============================================================
   USA EXPANSION
   ============================================================ */
.lux-usa { background: #fff; }
.lux-usa__grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 64px;
    align-items: center;
}
.lux-usa__content h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); font-weight: 800; margin-bottom: 18px; }
.lux-usa__content h2 em { font-style: normal; color: var(--gold); }
.lux-usa__content > p { color: var(--steel); margin-bottom: 26px; }
.lux-usa__list { margin-bottom: 34px; }
.lux-usa__list li {
    padding: 12px 0 12px 34px;
    position: relative;
    color: var(--steel);
    font-size: 0.94rem;
    border-bottom: 1px solid var(--line);
}
.lux-usa__list li strong { color: var(--navy); }
.lux-usa__list li::before {
    content: '\2713';
    position: absolute;
    left: 0; top: 12px;
    width: 22px; height: 22px;
    display: grid;
    place-items: center;
    font-size: 0.7rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, var(--gold), #b28a37);
    border-radius: 50%;
}

.lux-usa__visual { display: flex; flex-direction: column; gap: 20px; }
.lux-usa__card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 24px 28px;
    box-shadow: var(--shadow-sm);
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    column-gap: 18px;
    align-items: center;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.lux-usa__card:hover { transform: translateX(10px); box-shadow: var(--shadow-md); }
.lux-usa__card--1 { margin-right: 48px; }
.lux-usa__card--2 { margin-left: 24px; margin-right: 24px; }
.lux-usa__card--3 { margin-left: 48px; }
.lux-usa__card-icon {
    grid-row: span 2;
    font-size: 1.5rem;
    width: 54px; height: 54px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: var(--bg-soft);
    border: 1px solid var(--line);
}
.lux-usa__card strong { font-family: var(--font-head); color: var(--navy); font-size: 0.98rem; }
.lux-usa__card p { color: var(--steel); font-size: 0.84rem; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.lux-cta {
    position: relative;
    background: linear-gradient(140deg, var(--navy-deep), var(--navy) 55%, #123a7d);
    padding: 110px 0;
    overflow: hidden;
    text-align: center;
    color: #fff;
}
.lux-cta__glow {
    position: absolute;
    top: 50%; left: 50%;
    width: 720px; height: 720px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(201, 161, 74, 0.18), transparent 60%);
    animation: lux-cta-pulse 6s ease-in-out infinite;
    pointer-events: none;
}
@keyframes lux-cta-pulse { 0%, 100% { transform: translate(-50%, -50%) scale(1); } 50% { transform: translate(-50%, -50%) scale(1.15); } }
.lux-cta__inner { position: relative; max-width: 780px; }
.lux-cta__inner .lux-kicker { justify-content: center; }
.lux-cta__inner .lux-kicker::before { display: none; }
.lux-cta h2 { color: #fff; font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; margin-bottom: 20px; }
.lux-cta h2 em { font-style: normal; color: var(--gold-light); }
.lux-cta p { color: #c3cee2; margin-bottom: 40px; font-size: 1.02rem; }
.lux-cta__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }

/* ============================================================
   FOOTER
   ============================================================ */
.lux-footer { background: var(--navy-deep); color: #b8c4d8; padding-top: 74px; }
.lux-footer__grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
    gap: 44px;
    padding-bottom: 54px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.lux-brand--footer { margin-bottom: 18px; }
.lux-footer__col--brand p { font-size: 0.9rem; max-width: 320px; margin-bottom: 12px; }
.lux-footer__tagline { font-family: var(--font-head); color: var(--gold-light) !important; font-weight: 600; font-size: 0.86rem !important; letter-spacing: 0.06em; }
.lux-footer__col h4 {
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.lux-footer__col a, .lux-footer__col span {
    display: block;
    font-size: 0.9rem;
    padding: 6px 0;
    transition: color 0.25s ease, transform 0.25s ease;
}
.lux-footer__col a:hover { color: var(--gold-light); transform: translateX(5px); }
.lux-footer__bottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    padding: 24px 0;
    font-size: 0.8rem;
    color: #7385a3;
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
.lux-totop {
    position: fixed;
    right: 28px;
    bottom: 28px;
    z-index: 90;
    width: 56px;
    height: 56px;
    border: 0;
    padding: 0;
    border-radius: 50%;
    cursor: pointer;
    display: grid;
    place-items: center;
    background: linear-gradient(150deg, var(--navy-soft), var(--navy-deep));
    color: var(--gold-light);
    box-shadow: 0 10px 30px rgba(10, 31, 68, 0.35), 0 0 0 1px rgba(201, 161, 74, 0.25);
    opacity: 0;
    transform: translateY(24px) scale(0.8);
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease;
}
.lux-totop.is-show {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}
.lux-totop:hover {
    box-shadow: 0 16px 40px rgba(10, 31, 68, 0.45), 0 0 0 1px rgba(201, 161, 74, 0.6), 0 0 26px rgba(201, 161, 74, 0.35);
}
.lux-totop:hover .lux-totop__arrow { animation: lux-totop-hop 0.7s ease infinite; }
@keyframes lux-totop-hop {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

.lux-totop__ring {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}
.lux-totop__track {
    fill: none;
    stroke: rgba(255, 255, 255, 0.12);
    stroke-width: 2.5;
}
.lux-totop__progress {
    fill: none;
    stroke: var(--gold);
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    filter: drop-shadow(0 0 4px rgba(201, 161, 74, 0.7));
    transition: stroke-dashoffset 0.15s linear;
}
.lux-totop__arrow {
    width: 22px;
    height: 22px;
    position: relative;
    z-index: 1;
}

@media (max-width: 640px) {
    .lux-totop { right: 16px; bottom: 16px; width: 48px; height: 48px; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
    .lux-network-duo { grid-template-columns: 1fr; gap: 48px; }
    .lux-eco-grid > .lux-eco-card::after { display: none; }
    .lux-hero__inner { grid-template-columns: 1fr; text-align: center; }
    .lux-hero__content { display: flex; flex-direction: column; align-items: center; }
    .lux-hero__visual { margin-top: 20px; }
    .lux-svc-grid { grid-template-columns: repeat(2, 1fr); }
    .lux-eco-grid, .lux-stats-grid, .lux-pillar-grid, .lux-opp-grid { grid-template-columns: repeat(2, 1fr); }
    .lux-leader__grid { grid-template-columns: 1fr; }
    .lux-usa__grid { grid-template-columns: 1fr; gap: 44px; }
    .lux-footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
    .lux-nav {
        position: fixed;
        top: 0; right: 0;
        height: 100vh;
        width: min(320px, 82vw);
        background: var(--navy-deep);
        flex-direction: column;
        gap: 8px;
        padding: 110px 36px 40px;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
        box-shadow: -20px 0 60px rgba(0, 0, 0, 0.4);
        margin-left: 0;
    }
    .lux-nav.is-open { transform: translateX(0); }
    .lux-nav a { font-size: 1.05rem; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
    .lux-header__cta { display: none; }
    .lux-burger { display: flex; z-index: 110; }
}

@media (max-width: 640px) {
    .lux-section { padding: 72px 0; }
    .lux-hero { padding: 120px 0 80px; }
    .lux-trustbar__inner { grid-template-columns: repeat(2, 1fr); gap: 30px 12px; }
    .lux-trustbar__item:nth-child(2)::after { display: none; }
    .lux-svc-grid, .lux-eco-grid, .lux-stats-grid, .lux-pillar-grid, .lux-opp-grid { grid-template-columns: 1fr; }
    .lux-globe__chip--us { left: 0; }
    .lux-globe__chip--bd { right: 0; }
    .lux-message-bar { padding: 34px 24px; }
    .lux-usa__card--1, .lux-usa__card--2, .lux-usa__card--3 { margin: 0; }
    .lux-footer__grid { grid-template-columns: 1fr; gap: 32px; }
    .lux-footer__bottom { justify-content: center; text-align: center; }
    .lux-hero__scroll { display: none; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
    html { scroll-behavior: auto; }
    .lux-reveal { opacity: 1; transform: none; }
}
