/* =========================================================
   Nuqd — the GCC everything-money platform.
   Nexo-family branding: deep navy + royal blue + sky highlight.
   Display: Space Grotesk · Body: Inter. SVG icons only.
   ========================================================= */
:root {
  --bg: #060a13;
  --bg-2: #0b1120;
  --surface: rgba(148, 178, 255, 0.045);
  --surface-2: rgba(148, 178, 255, 0.08);
  --border: rgba(148, 178, 255, 0.12);
  --border-2: rgba(148, 178, 255, 0.22);
  --text: #f2f5fb;
  --muted: #9fabc4;
  --muted-2: #67718c;
  --brand: #2563ff;        /* royal blue — primary */
  --brand-hi: #5b9dff;     /* sky highlight */
  --brand-deep: #1a44d8;
  --cyan: #22d3ee;         /* self-custody / DeFi accent */
  --green: #35d49a;
  --red: #f0616b;
  --grad-brand: linear-gradient(135deg, #6aa6ff 0%, #2563ff 55%, #1a44d8 100%);
  --grad-cyan: linear-gradient(135deg, #67e8f9 0%, #22d3ee 60%, #0ea5c4 100%);
  --shadow-brand: 0 12px 40px -12px rgba(37, 99, 255, 0.5);
  --radius: 20px;
  --pad: clamp(1.25rem, 4vw, 3rem);
  --maxw: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font-body: 'Inter', system-ui, sans-serif;
  --font-display: 'Space Grotesk', 'Inter', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; }
::selection { background: rgba(37, 99, 255, 0.35); color: #fff; }
:focus-visible { outline: 2px solid var(--brand-hi); outline-offset: 3px; border-radius: 6px; }

.skip-link { position: absolute; left: -999px; top: 0; z-index: 200; background: var(--brand); color: #fff; padding: .6rem 1rem; border-radius: 0 0 10px 0; font-weight: 700; }
.skip-link:focus { left: 0; }

h1, h2, h3, .brand__name { font-family: var(--font-display); letter-spacing: -0.03em; }
.grad-brand {
  background: linear-gradient(120deg, #7cb3ff 0%, #3d7bff 60%, #6ee7ff 115%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* inline icon default */
.i { width: 1.15em; height: 1.15em; stroke: currentColor; fill: none; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }

/* ---------- ambient background ---------- */
.bg-glow, .bg-grid { position: fixed; inset: 0; z-index: -2; pointer-events: none; }
.bg-glow {
  background:
    radial-gradient(55% 45% at 78% -8%, rgba(37, 99, 255, 0.22), transparent 62%),
    radial-gradient(48% 42% at 4% 0%, rgba(34, 211, 238, 0.10), transparent 58%),
    radial-gradient(42% 38% at 94% 58%, rgba(37, 99, 255, 0.08), transparent 62%);
}
.bg-grid {
  z-index: -1;
  background-image:
    linear-gradient(rgba(148,178,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148,178,255,0.04) 1px, transparent 1px);
  background-size: 66px 66px;
  mask-image: radial-gradient(ellipse 100% 55% at 50% 0%, #000 30%, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse 100% 55% at 50% 0%, #000 30%, transparent 72%);
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--font-body); font-weight: 600; font-size: .95rem; letter-spacing: -0.01em;
  min-height: 44px; padding: .7rem 1.3rem; border-radius: 100px; cursor: pointer;
  border: 1px solid transparent; transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease), border-color .2s var(--ease);
  white-space: nowrap;
}
.btn--lg { min-height: 52px; padding: .9rem 1.8rem; font-size: 1.02rem; }
.btn--primary { background: var(--grad-brand); color: #fff; box-shadow: var(--shadow-brand), inset 0 1px 0 rgba(255,255,255,0.22); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 18px 50px -12px rgba(37,99,255,0.65), inset 0 1px 0 rgba(255,255,255,0.22); }
.btn--ghost { background: var(--surface); color: var(--text); border-color: var(--border-2); }
.btn--ghost:hover { border-color: var(--muted); background: var(--surface-2); }
.btn .i { width: 1.05em; height: 1.05em; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .84rem; font-weight: 600; color: var(--muted);
  padding: .42rem .9rem; border: 1px solid var(--border); border-radius: 100px; background: var(--surface);
}
.eyebrow .stars { color: var(--brand-hi); letter-spacing: .05em; }

/* ---------- nav ---------- */
.nav { position: sticky; top: 0; z-index: 100; padding: .9rem var(--pad); transition: background .3s, border-color .3s, padding .3s; border-bottom: 1px solid transparent; }
.nav.is-scrolled { background: rgba(6,10,19,0.8); backdrop-filter: blur(16px); border-color: var(--border); padding-top: .65rem; padding-bottom: .65rem; }
.nav__inner { max-width: var(--maxw); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.brand { display: inline-flex; align-items: center; gap: .6rem; font-weight: 700; font-size: 1.32rem; }
.brand__mark { border-radius: 10px; }
.nav__links { display: flex; gap: 1.9rem; }
.nav__links a { font-size: .93rem; color: var(--muted); font-weight: 500; transition: color .2s; }
.nav__links a:hover { color: var(--text); }
.nav__cta { display: flex; gap: .6rem; align-items: center; }
.nav__burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 10px; min-width: 44px; min-height: 44px; align-items: center; justify-content: center; }
.nav__burger span { width: 22px; height: 2px; background: var(--text); border-radius: 2px; }
.menu { display: none; }

/* ---------- hero ---------- */
.hero { max-width: var(--maxw); margin: 0 auto; padding: clamp(2.5rem, 7vw, 5.5rem) var(--pad) clamp(2.5rem, 5vw, 4rem); display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.hero__title { font-size: clamp(2.8rem, 7.2vw, 5rem); font-weight: 700; line-height: 1.02; margin: 1.4rem 0; letter-spacing: -0.04em; }
.hero__lede { font-size: clamp(1.02rem, 1.6vw, 1.16rem); color: var(--muted); max-width: 34rem; }
.hero__lede b { color: var(--text); font-weight: 600; }
.hero__actions { display: flex; gap: .8rem; margin: 2rem 0 1.5rem; flex-wrap: wrap; }
.hero__badges { list-style: none; display: flex; flex-wrap: wrap; gap: 1.1rem; font-size: .86rem; color: var(--muted); }
.hero__badges li { display: inline-flex; align-items: center; gap: .4rem; }
.hero__badges .i { color: var(--brand-hi); width: 1.05rem; height: 1.05rem; }

/* hero visual */
.hero__visual { position: relative; display: grid; place-items: center; min-height: 480px; }
.halo { position: absolute; width: 116%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle at 45% 35%, rgba(37,99,255,0.42), rgba(34,211,238,0.12) 46%, transparent 70%); filter: blur(34px); animation: float 8s var(--ease) infinite; }
.coin { position: absolute; width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center; font-size: 1.5rem; font-weight: 800; background: var(--bg-2); border: 1px solid var(--border-2); box-shadow: 0 12px 30px -8px rgba(0,0,0,.7); z-index: 3; }
.coin--a { top: 8%; left: 6%; color: #f7931a; animation: float 6s var(--ease) infinite; }
.coin--b { bottom: 12%; right: 4%; color: #14f195; animation: float 7s var(--ease) .5s infinite; }
.phone { position: relative; width: min(320px, 78vw); aspect-ratio: 320/640; border-radius: 42px; background: linear-gradient(160deg, #131a2c, #080c16); padding: 12px; border: 1px solid var(--border-2); box-shadow: 0 44px 100px -34px rgba(0,0,0,0.85), inset 0 1px 0 rgba(255,255,255,0.08); animation: float 8s var(--ease) infinite; z-index: 2; }
.phone__notch { position: absolute; top: 12px; left: 50%; transform: translateX(-50%); width: 38%; height: 22px; background: #04060c; border-radius: 0 0 14px 14px; z-index: 2; }
.phone__screen { height: 100%; border-radius: 32px; background: linear-gradient(180deg, #0a1020, #070a12); padding: 2.5rem 1rem 1rem; display: flex; flex-direction: column; gap: .5rem; overflow: hidden; border: 1px solid rgba(148,178,255,0.07); }
.pcard { background: var(--grad-brand); color: #fff; border-radius: 16px; padding: 1rem 1.1rem; display: flex; flex-direction: column; gap: .1rem; box-shadow: 0 12px 30px -10px rgba(37,99,255,0.65); }
.pcard__label { font-size: .68rem; font-weight: 600; opacity: .85; }
.pcard__value { font-family: var(--font-display); font-size: 1.75rem; font-weight: 700; letter-spacing: -0.02em; }
.pcard__cents { opacity: .65; font-size: 1.1rem; }
.pcard__delta { font-size: .72rem; font-weight: 700; color: #b9f7dd; }
.prow { display: flex; align-items: center; gap: .55rem; background: var(--surface-2); border: 1px solid var(--border); border-radius: 14px; padding: .55rem .65rem; }
.prow__ic { width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; font-size: .95rem; font-weight: 700; flex-shrink: 0; }
.ic-btc { background: rgba(247,147,26,0.16); color: #f7931a; }
.ic-eth { background: rgba(120,140,255,0.18); color: #8ea2ff; }
.ic-sol { background: rgba(20,241,149,0.15); color: #14f195; }
.ic-usdc { background: rgba(38,161,255,0.16); color: #4aa8ff; }
.ic-stock { background: rgba(37,99,255,0.16); color: var(--brand-hi); }
.ic-re { background: rgba(34,211,238,0.14); color: var(--cyan); }
.prow__meta { flex: 1; display: flex; flex-direction: column; line-height: 1.2; min-width: 0; }
.prow__meta b { font-size: .8rem; }
.prow__meta small { font-size: .66rem; color: var(--muted-2); }
.prow__amt { font-size: .8rem; font-weight: 700; text-align: right; display: flex; flex-direction: column; }
.prow__amt em { font-style: normal; font-size: .64rem; font-weight: 600; }
.up { color: var(--green); } .down { color: var(--red); }
.pactions { display: flex; gap: .45rem; margin-top: auto; }
.pbtn { flex: 1; text-align: center; font-size: .76rem; font-weight: 700; padding: .6rem; border-radius: 12px; background: var(--surface-2); border: 1px solid var(--border); color: var(--muted); }
.pbtn--brand { background: var(--grad-brand); color: #fff; border-color: transparent; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-13px); } }

/* ---------- trust strip ---------- */
.strip { max-width: var(--maxw); margin: 0 auto; padding: 1rem var(--pad) 2.5rem; text-align: center; }
.strip__label { font-size: .82rem; color: var(--muted-2); }
.strip__items { list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: .8rem 1.6rem; margin-top: 1rem; font-family: var(--font-display); font-weight: 600; color: var(--muted); font-size: clamp(1rem, 2vw, 1.3rem); }
.strip__items li { opacity: .75; }

/* ---------- sections ---------- */
.section { max-width: var(--maxw); margin: 0 auto; padding: clamp(3.5rem, 8vw, 6rem) var(--pad); }
.section__head { max-width: 46rem; margin: 0 auto clamp(2.2rem, 5vw, 3.4rem); text-align: center; }
.section__eyebrow { font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: .14em; color: var(--brand-hi); margin-bottom: .9rem; }
.section__title { font-size: clamp(2rem, 4.6vw, 3.3rem); font-weight: 700; line-height: 1.05; }
.section__sub { margin-top: 1rem; color: var(--muted); font-size: 1.05rem; }

/* ---------- markets (crypto / stocks / real estate) ---------- */
.mkt { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.mkt__card { position: relative; border: 1px solid var(--border); background: var(--surface); border-radius: 24px; padding: 2rem 1.7rem; overflow: hidden; transition: transform .35s var(--ease), border-color .35s; }
.mkt__card::before { content: ''; position: absolute; inset: 0; background: radial-gradient(80% 55% at 50% -10%, rgba(37,99,255,0.14), transparent 65%); }
.mkt__card:hover { transform: translateY(-6px); border-color: var(--border-2); }
.mkt__card > * { position: relative; }
.mkt__ic { display: grid; place-items: center; width: 54px; height: 54px; border-radius: 16px; background: rgba(37,99,255,0.12); border: 1px solid rgba(91,157,255,0.3); color: var(--brand-hi); margin-bottom: 1.2rem; }
.mkt__ic svg { width: 26px; height: 26px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.mkt__tag { display: inline-block; font-size: .72rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--brand-hi); margin-bottom: .5rem; }
.mkt__card h3 { font-size: 1.45rem; margin-bottom: .55rem; }
.mkt__card p { color: var(--muted); font-size: .95rem; }

/* ---------- dual wallet ---------- */
.duo { display: grid; grid-template-columns: 1fr 1fr; gap: 1.3rem; }
.duo__card { position: relative; border: 1px solid var(--border); background: var(--surface); border-radius: 24px; padding: clamp(1.6rem, 3vw, 2.4rem); overflow: hidden; transition: transform .35s var(--ease), border-color .35s; }
.duo__card::before { content: ''; position: absolute; inset: 0; background: radial-gradient(70% 60% at 100% 0%, rgba(37,99,255,0.14), transparent 60%); }
.duo__card--wallet::before { background: radial-gradient(70% 60% at 100% 0%, rgba(34,211,238,0.13), transparent 60%); }
.duo__card:hover { transform: translateY(-5px); border-color: var(--border-2); }
.duo__card > * { position: relative; }
.duo__tag { display: inline-block; font-size: .74rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--brand-hi); background: rgba(37,99,255,0.12); border: 1px solid rgba(91,157,255,0.32); padding: .32rem .7rem; border-radius: 100px; margin-bottom: 1.1rem; }
.duo__tag--alt { color: #7ee7f5; background: rgba(34,211,238,0.1); border-color: rgba(34,211,238,0.32); }
.duo__card h3 { font-size: clamp(1.6rem, 3vw, 2.1rem); margin-bottom: .6rem; }
.duo__lede { color: var(--muted); font-size: 1rem; margin-bottom: 1.3rem; }
.ticks { list-style: none; display: flex; flex-direction: column; gap: .7rem; margin-bottom: 1.6rem; }
.ticks li { position: relative; padding-left: 1.9rem; font-size: .96rem; color: var(--text); }
.ticks li::before { content: ''; position: absolute; left: 0; top: 2px; width: 20px; height: 20px; border-radius: 50%; background: var(--grad-brand); -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M9.5 16.2 5.3 12l-1.4 1.4 5.6 5.6 12-12-1.4-1.4z'/%3E%3C/svg%3E") center/70% no-repeat; mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M9.5 16.2 5.3 12l-1.4 1.4 5.6 5.6 12-12-1.4-1.4z'/%3E%3C/svg%3E") center/70% no-repeat; }
.duo__card--wallet .ticks li::before { background: var(--grad-cyan); }
.duo__go { display: inline-flex; align-items: center; gap: .5rem; font-weight: 600; color: var(--brand-hi); }
.duo__card--wallet .duo__go { color: var(--cyan); }
.duo__go .i { transition: transform .2s var(--ease); }
.duo__go:hover .i { transform: translateX(4px); }

/* ---------- stats ---------- */
.stats { max-width: var(--maxw); margin: 0 auto; padding: 1rem var(--pad) 2rem; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.stat { border: 1px solid var(--border); background: var(--surface); border-radius: var(--radius); padding: 1.6rem 1.3rem; text-align: center; }
.stat__num, .stat__lit { display: block; font-family: var(--font-display); font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 700; letter-spacing: -0.03em; background: linear-gradient(120deg, #7cb3ff, #3d7bff); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stat span { font-size: .85rem; color: var(--muted); }

/* ---------- products grid ---------- */
.prod { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; }
.prod__card { position: relative; border: 1px solid var(--border); background: var(--surface); border-radius: var(--radius); padding: 1.6rem; transition: transform .35s var(--ease), border-color .35s, background .35s; overflow: hidden; }
.prod__card:hover { transform: translateY(-5px); border-color: var(--border-2); }
.prod__card--feat { background: linear-gradient(160deg, rgba(37,99,255,0.1), var(--surface)); border-color: rgba(91,157,255,0.3); }
.prod__ic { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 14px; background: var(--surface-2); border: 1px solid var(--border); color: var(--brand-hi); margin-bottom: 1rem; }
.prod__ic svg { width: 23px; height: 23px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.prod__card h3 { font-size: 1.2rem; margin-bottom: .45rem; }
.prod__card p { color: var(--muted); font-size: .9rem; margin-bottom: .9rem; }
.prod__card a { font-weight: 600; color: var(--brand-hi); font-size: .9rem; }
.prod__pill { position: absolute; top: 1.2rem; right: 1.2rem; font-size: .72rem; font-weight: 800; color: var(--green); background: rgba(53,212,154,0.12); border: 1px solid rgba(53,212,154,0.3); padding: .26rem .55rem; border-radius: 100px; }
.prod__pill--alt { color: var(--brand-hi); background: rgba(37,99,255,0.12); border-color: rgba(91,157,255,0.3); }

/* ---------- NUQD coin ---------- */
.coinx__wrap { border: 1px solid var(--border-2); border-radius: 28px; background: linear-gradient(150deg, rgba(37,99,255,0.12), rgba(34,211,238,0.05)), var(--bg-2); padding: clamp(2rem, 5vw, 3.6rem); position: relative; overflow: hidden; }
.coinx__wrap::before { content: ''; position: absolute; top: -50%; right: -18%; width: 60%; aspect-ratio: 1; background: radial-gradient(circle, rgba(37,99,255,0.35), transparent 65%); filter: blur(46px); }
.coinx__wrap > * { position: relative; }
.coinx__head { max-width: 44rem; margin-bottom: 2.2rem; }
.coinx__head .section__eyebrow, .coinx__head .section__title { text-align: left; }
.coinx__head .section__sub { color: var(--muted); }
.coinx__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-bottom: 2.2rem; }
.pillar { border: 1px solid var(--border); background: rgba(6,10,19,0.55); border-radius: 18px; padding: 1.4rem; }
.pillar h3 { font-size: 1.08rem; margin-bottom: .4rem; color: var(--brand-hi); }
.pillar p { color: var(--muted); font-size: .92rem; }
.flow { display: grid; grid-template-columns: repeat(4, 1fr); gap: .8rem; counter-reset: fl; }
.flow__step { position: relative; border: 1px solid var(--border); background: rgba(6,10,19,0.55); border-radius: 16px; padding: 1.1rem 1.1rem 1.1rem 1.1rem; font-size: .88rem; color: var(--muted); counter-increment: fl; }
.flow__step::before { content: counter(fl, decimal-leading-zero); display: block; font-family: var(--font-display); font-weight: 700; font-size: .95rem; color: var(--cyan); margin-bottom: .4rem; }
.coinx__disc { margin-top: 1.6rem; font-size: .76rem; color: var(--muted-2); }

/* ---------- GCC ---------- */
.gcc__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.gcc__card { border: 1px solid var(--border); background: var(--surface); border-radius: var(--radius); padding: 1.6rem 1.4rem; transition: transform .3s var(--ease), border-color .3s; }
.gcc__card:hover { transform: translateY(-4px); border-color: var(--border-2); }
.gcc__card h3 { font-size: 1.06rem; margin-bottom: .45rem; }
.gcc__card p { color: var(--muted); font-size: .9rem; }
.gcc__flags { display: flex; flex-wrap: wrap; justify-content: center; gap: .6rem; margin-top: 2rem; }
.gcc__flags span { font-size: .82rem; font-weight: 600; color: var(--muted); border: 1px solid var(--border); background: var(--surface); padding: .45rem .9rem; border-radius: 100px; }

/* ---------- Gulf Asset Exchange ---------- */
.ax__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.ax__card { position: relative; border: 1px solid var(--border); background: var(--surface); border-radius: var(--radius); padding: 1.7rem; transition: transform .35s var(--ease), border-color .35s; overflow: hidden; }
.ax__card::before { content: ''; position: absolute; inset: 0; background: radial-gradient(75% 55% at 50% -10%, rgba(37,99,255,0.1), transparent 62%); }
.ax__card:hover { transform: translateY(-5px); border-color: var(--border-2); }
.ax__card > * { position: relative; }
.ax__ic { display: grid; place-items: center; width: 50px; height: 50px; border-radius: 14px; background: rgba(37,99,255,0.12); border: 1px solid rgba(91,157,255,0.3); color: var(--brand-hi); margin-bottom: 1.1rem; }
.ax__ic svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.ax__pill { position: absolute; top: 1.3rem; right: 1.3rem; font-size: .7rem; font-weight: 800; letter-spacing: .03em; color: var(--cyan); background: rgba(34,211,238,0.1); border: 1px solid rgba(34,211,238,0.28); padding: .26rem .55rem; border-radius: 100px; }
.ax__card h3 { font-size: 1.22rem; margin-bottom: .45rem; }
.ax__card p { color: var(--muted); font-size: .92rem; }

.ax__pipe { margin-top: 2.4rem; border: 1px solid var(--border-2); border-radius: 24px; padding: clamp(1.6rem, 4vw, 2.4rem); background: linear-gradient(150deg, rgba(37,99,255,0.1), transparent 60%), var(--bg-2); }
.ax__pipe h3 { font-family: var(--font-display); font-size: 1.3rem; margin-bottom: 1.3rem; }

.issuer { margin-top: 1.3rem; border: 1px solid var(--border); border-radius: 24px; padding: clamp(1.6rem, 4vw, 2.4rem); background: var(--surface); display: grid; grid-template-columns: 1.5fr auto; gap: 1.5rem; align-items: center; }
.issuer h3 { font-size: clamp(1.3rem, 2.6vw, 1.7rem); margin-bottom: .5rem; }
.issuer p { color: var(--muted); font-size: .96rem; }
.issuer__sell { margin-top: .8rem; font-size: .86rem; color: var(--muted-2); display: flex; align-items: flex-start; gap: .45rem; }
.issuer__sell .i { color: var(--cyan); margin-top: .2rem; }

/* ---------- earn highlight ---------- */
.earn__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.earn__copy .section__eyebrow, .earn__copy .section__title { text-align: left; }
.earn__copy .section__title { font-size: clamp(2rem, 4.2vw, 3rem); }
.earn__copy .btn { margin-top: 1.6rem; }
.earn__rates { border: 1px solid var(--border); background: var(--surface); border-radius: 24px; padding: 1.6rem; display: flex; flex-direction: column; gap: .7rem; }
.rate { display: flex; align-items: center; gap: .8rem; background: var(--surface-2); border: 1px solid var(--border); border-radius: 14px; padding: .85rem 1rem; }
.rate__ic { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; font-size: 1.1rem; font-weight: 700; flex-shrink: 0; }
.rate__meta { flex: 1; display: flex; flex-direction: column; }
.rate__meta b { font-size: .96rem; } .rate__meta small { font-size: .74rem; color: var(--muted-2); }
.rate__apr { font-family: var(--font-display); font-weight: 700; color: var(--green); font-size: 1.05rem; }
.rate__note { font-size: .74rem; color: var(--muted-2); text-align: center; margin-top: .3rem; }

/* ---------- security ---------- */
.secgrid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.1rem; }
.sec { display: flex; gap: 1.1rem; border: 1px solid var(--border); background: var(--surface); border-radius: var(--radius); padding: 1.6rem; transition: border-color .3s, transform .3s var(--ease); }
.sec:hover { border-color: var(--border-2); transform: translateY(-3px); }
.sec__ic { flex-shrink: 0; display: grid; place-items: center; width: 48px; height: 48px; border-radius: 14px; background: rgba(37,99,255,0.12); border: 1px solid rgba(91,157,255,0.3); color: var(--brand-hi); }
.sec__ic svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.sec h3 { font-size: 1.15rem; margin-bottom: .4rem; }
.sec p { color: var(--muted); font-size: .93rem; }

/* ---------- showcase ---------- */
.showcase__phones { display: flex; justify-content: center; align-items: flex-end; gap: clamp(.6rem, 2vw, 1.5rem); flex-wrap: wrap; }
.mini { width: clamp(150px, 24vw, 200px); aspect-ratio: 200/380; border-radius: 26px; background: linear-gradient(170deg, #121a2e, #080c16); border: 1px solid var(--border-2); padding: 1.1rem; display: flex; flex-direction: column; gap: .8rem; box-shadow: 0 30px 70px -30px rgba(0,0,0,0.9); }
.mini--c { transform: translateY(-24px) scale(1.04); border-color: rgba(91,157,255,0.4); }
.mini__hd { font-family: var(--font-display); font-weight: 600; font-size: 1rem; color: var(--muted); }
.mini__hd.lit { color: var(--brand-hi); }
.mini__b { font-size: .8rem; color: var(--muted); line-height: 1.7; margin-top: auto; }
.mini__b b { display: block; font-family: var(--font-display); font-size: 1.4rem; color: var(--text); letter-spacing: -0.02em; }
.mini__b em { font-style: normal; font-weight: 700; }
.mini__cta { text-align: center; font-size: .8rem; font-weight: 700; padding: .55rem; border-radius: 12px; background: var(--surface-2); border: 1px solid var(--border); color: var(--muted); }
.mini__cta.lit { background: var(--grad-brand); color: #fff; border-color: transparent; }

/* ---------- ratings ---------- */
.rate-head { display: grid; place-items: center; margin-bottom: 2.2rem; }
.rate-badge { display: flex; flex-direction: column; align-items: center; gap: .2rem; }
.rate-badge b { font-family: var(--font-display); font-size: 3rem; font-weight: 700; letter-spacing: -0.03em; }
.rate-badge .stars { color: var(--brand-hi); font-size: 1.3rem; letter-spacing: .1em; }
.rate-badge small { color: var(--muted); font-size: .85rem; margin-top: .3rem; }
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.quotes blockquote { border: 1px solid var(--border); background: var(--surface); border-radius: var(--radius); padding: 1.6rem; }
.quotes p { font-size: 1rem; }
.quotes cite { display: block; margin-top: 1rem; font-style: normal; color: var(--muted); font-size: .9rem; }

/* ---------- CTA ---------- */
.cta { max-width: var(--maxw); margin: 0 auto; padding: 2rem var(--pad) 4rem; }
.cta__inner { border-radius: 28px; padding: clamp(2.6rem, 6vw, 4.6rem); text-align: center; position: relative; overflow: hidden; background: linear-gradient(120deg, rgba(37,99,255,0.16), rgba(34,211,238,0.08)), var(--bg-2); border: 1px solid var(--border-2); box-shadow: 0 40px 100px -40px rgba(37,99,255,0.45); }
.cta__inner::before { content: ''; position: absolute; top: -55%; left: 50%; transform: translateX(-50%); width: 70%; aspect-ratio: 1; background: radial-gradient(circle, rgba(37,99,255,0.45), transparent 65%); filter: blur(40px); }
.cta__inner > * { position: relative; }
.cta h2 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 700; }
.cta p { color: var(--muted); margin: 1rem auto 1.8rem; max-width: 34rem; font-size: 1.05rem; }
.cta__actions { display: flex; flex-direction: column; align-items: center; gap: 1.2rem; }
.badges { display: flex; gap: .7rem; flex-wrap: wrap; justify-content: center; }
.store { display: inline-flex; align-items: center; gap: .6rem; padding: .6rem 1.1rem; border-radius: 12px; background: #01030a; border: 1px solid var(--border-2); min-height: 48px; }
.store .i { width: 22px; height: 22px; fill: #fff; stroke: none; }
.store span { display: flex; flex-direction: column; line-height: 1.1; text-align: left; }
.store small { font-size: .62rem; color: var(--muted); }
.store b { font-family: var(--font-display); font-size: .98rem; }
.cta__soon { font-size: .82rem; color: var(--muted-2); }

/* ---------- FAQ ---------- */
.faq__list { max-width: 46rem; margin: 0 auto; display: flex; flex-direction: column; gap: .7rem; }
.faq details { border: 1px solid var(--border); background: var(--surface); border-radius: 16px; overflow: hidden; transition: border-color .3s, background .3s; }
.faq details[open] { border-color: var(--border-2); background: var(--surface-2); }
.faq summary { cursor: pointer; list-style: none; padding: 1.15rem 1.4rem; font-weight: 600; font-size: 1.02rem; display: flex; justify-content: space-between; align-items: center; gap: 1rem; min-height: 44px; }
.faq summary::-webkit-details-marker { display: none; }
.faq__x { position: relative; width: 16px; height: 16px; flex-shrink: 0; }
.faq__x::before, .faq__x::after { content: ''; position: absolute; background: var(--brand-hi); border-radius: 2px; transition: transform .3s var(--ease), opacity .3s; }
.faq__x::before { top: 7px; left: 0; width: 16px; height: 2px; }
.faq__x::after { top: 0; left: 7px; width: 2px; height: 16px; }
.faq details[open] .faq__x::after { transform: scaleY(0); opacity: 0; }
.faq details p { padding: 0 1.4rem 1.25rem; color: var(--muted); font-size: .96rem; }
.faq details p b { color: var(--text); }

/* ---------- footer ---------- */
.footer { border-top: 1px solid var(--border); margin-top: 2rem; }
.footer__top { max-width: var(--maxw); margin: 0 auto; padding: 3.5rem var(--pad) 2.5rem; display: grid; grid-template-columns: 1.3fr 2.2fr; gap: 2.5rem; }
.footer__brand p { color: var(--muted); font-size: .92rem; max-width: 24rem; margin-top: 1rem; }
.footer__cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.footer__cols h4 { font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted-2); margin-bottom: .9rem; }
.footer__cols a { display: block; color: var(--muted); font-size: .9rem; padding: .28rem 0; transition: color .2s; }
.footer__cols a:hover { color: var(--brand-hi); }
.footer__bar { border-top: 1px solid var(--border); }
.footer__bar { max-width: var(--maxw); margin: 0 auto; padding: 1.4rem var(--pad); display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: .78rem; color: var(--muted-2); }
.footer__disc { max-width: 46rem; }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

/* ---------- responsive ---------- */
@media (max-width: 1024px) {
  .prod { grid-template-columns: repeat(2, 1fr); }
  .flow { grid-template-columns: repeat(2, 1fr); }
  .gcc__grid { grid-template-columns: repeat(2, 1fr); }
  .ax__grid { grid-template-columns: repeat(2, 1fr); }
  .issuer { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .menu { display: flex; flex-direction: column; gap: .2rem; padding: 1rem var(--pad) 1.5rem; position: fixed; inset: 60px 0 auto 0; background: rgba(6,10,19,0.97); backdrop-filter: blur(16px); border-bottom: 1px solid var(--border); transform: translateY(-120%); transition: transform .35s var(--ease); z-index: 99; }
  .menu.is-open { transform: none; }
  .menu a { padding: .9rem .4rem; color: var(--muted); font-weight: 500; border-bottom: 1px solid var(--border); }
  .menu .btn { margin-top: .7rem; }
  .hero { grid-template-columns: 1fr; text-align: center; }
  .hero__lede { margin-inline: auto; }
  .hero__actions, .hero__badges { justify-content: center; }
  .hero__visual { order: -1; min-height: 400px; }
  .mkt, .duo, .earn__grid, .secgrid, .coinx__grid { grid-template-columns: 1fr; }
  .earn__copy .section__eyebrow, .earn__copy .section__title,
  .coinx__head .section__eyebrow, .coinx__head .section__title { text-align: center; }
  .coinx__head { margin-inline: auto; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .quotes { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .mini--c { transform: none; }
}
@media (max-width: 560px) {
  .stats { grid-template-columns: 1fr; }
  .prod { grid-template-columns: 1fr; }
  .flow { grid-template-columns: 1fr; }
  .gcc__grid { grid-template-columns: 1fr; }
  .ax__grid { grid-template-columns: 1fr; }
  .hero__badges { flex-direction: column; align-items: center; gap: .5rem; }
  .footer__cols { grid-template-columns: 1fr 1fr; }
  .showcase__phones { gap: 1rem; }
  .mini--r { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ===================== LIVE MARKET TICKER (ptk) ===================== */
.ptk { max-width: var(--maxw); margin: clamp(1rem, 3vw, 2rem) auto 0; padding: 0 var(--pad); }
.ptk__head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: .7rem; }
.ptk__live { display: inline-flex; align-items: center; gap: .5rem; font-size: .78rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--text); }
.ptk__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 0 rgba(53,212,154,.6); animation: ptk-pulse 1.8s infinite; }
@keyframes ptk-pulse { 0% { box-shadow: 0 0 0 0 rgba(53,212,154,.55); } 70% { box-shadow: 0 0 0 7px rgba(53,212,154,0); } 100% { box-shadow: 0 0 0 0 rgba(53,212,154,0); } }
.ptk__src { font-size: .74rem; color: var(--muted-2); letter-spacing: .03em; }
.ptk__viewport { position: relative; overflow: hidden; border: 1px solid var(--border); border-radius: 16px; background: linear-gradient(180deg, var(--bg-2), rgba(11,17,32,.5)); padding: .1rem 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.ptk__track { display: inline-flex; align-items: stretch; gap: .55rem; padding: .7rem .3rem; white-space: nowrap; will-change: transform; animation: ptk-scroll 46s linear infinite; }
.ptk__viewport:hover .ptk__track { animation-play-state: paused; }
@keyframes ptk-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .ptk__track { animation: none; flex-wrap: nowrap; overflow-x: auto; } }
.ptk__loading { color: var(--muted); font-size: .9rem; padding: .4rem 1rem; }
.ptk__chip { display: inline-flex; align-items: center; gap: .6rem; padding: .55rem .85rem; border-radius: 12px; background: var(--surface); border: 1px solid var(--border); }
.ptk__sym { display: grid; place-items: center; width: 30px; height: 30px; border-radius: 9px; font-weight: 800; font-size: .85rem; background: rgba(37,99,255,.14); color: var(--brand-hi); border: 1px solid rgba(91,157,255,.28); }
.ptk__name { font-size: .82rem; font-weight: 700; color: var(--muted); letter-spacing: .02em; }
.ptk__px { font-family: var(--font-display); font-weight: 700; font-size: .95rem; color: var(--text); font-variant-numeric: tabular-nums; }
.ptk__ch { font-size: .78rem; font-weight: 700; font-variant-numeric: tabular-nums; }
.ptk__ch.up { color: var(--green); } .ptk__ch.down { color: var(--red); }
.ptk__ch::before { content: "▲ "; font-size: .62rem; } .ptk__ch.down::before { content: "▼ "; }
