/* =========================================================
   LUMIVEX — Ultra Premium Design System
   ========================================================= */

:root {
  --gold: #D4AF37;
  --gold-light: #F0D78C;
  --gold-dark: #A8892A;
  --gold-glow: rgba(212, 175, 55, 0.35);
  --bg: #050505;
  --bg-2: #111111;
  --bg-3: #1a1a1a;
  --text: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.62);
  --text-dim: rgba(255, 255, 255, 0.38);
  --border: rgba(212, 175, 55, 0.18);
  --glass: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(255, 255, 255, 0.1);
  --radius: 20px;
  --radius-sm: 12px;
  --radius-lg: 28px;
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Inter", system-ui, sans-serif;
  --font-num: "Manrope", "Inter", sans-serif;
  --shadow-gold: 0 20px 60px rgba(212, 175, 55, 0.15);
  --shadow-soft: 0 30px 80px rgba(0, 0, 0, 0.55);
  --header-h: 80px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --container: min(1240px, calc(100% - 3rem));
  --hero-max: min(1400px, calc(100% - 3rem));
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: auto;
  -webkit-text-size-adjust: 100%;
}

html.lenis,
html.lenis body {
  height: auto;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button,
input {
  font: inherit;
  border: none;
  background: none;
  color: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 10000;
  background: var(--gold);
  color: #000;
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  font-weight: 600;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.font-num {
  font-family: var(--font-num);
  font-variant-numeric: tabular-nums;
}

.section {
  padding: clamp(5rem, 10vw, 9rem) 0;
  position: relative;
}

.section-header {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  max-width: 640px;
}

.section-header.center {
  text-align: center;
  margin-inline: auto;
}

.eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1.25rem;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2.1rem, 4.2vw, 3.5rem);
  margin-bottom: 1rem;
}

.section-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 52ch;
}

.up { color: #6dcf8a; }
.down { color: #e87878; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), background 0.4s var(--ease), border-color 0.4s var(--ease), color 0.4s var(--ease);
  cursor: pointer;
  white-space: nowrap;
}

.btn-sm { padding: 0.65rem 1.25rem; font-size: 0.85rem; }
.btn-lg { padding: 1rem 1.85rem; }
.btn-xl { padding: 1.2rem 2.5rem; font-size: 1.05rem; }

.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 45%, var(--gold-dark));
  color: #0a0a0a;
  box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.4), 0 8px 32px var(--gold-glow);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.6), 0 16px 48px rgba(212, 175, 55, 0.45);
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  transform: translateY(-2px);
}

.btn-ghost {
  color: var(--text-muted);
}

.btn-ghost:hover {
  color: var(--gold);
}

.link-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--gold);
  font-weight: 500;
  font-size: 0.95rem;
  margin-top: 1.25rem;
  transition: gap 0.35s var(--ease), color 0.3s;
}

.link-gold:hover {
  gap: 0.75rem;
  color: var(--gold-light);
}

/* ---------- Glass ---------- */
.glass-panel {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

/* ---------- Loader ---------- */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg);
  display: grid;
  place-items: center;
  transition: opacity 0.6s var(--ease), visibility 0.6s;
}

.page-loader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-brand {
  font-family: var(--font-display);
  font-size: 2.5rem;
  background: linear-gradient(90deg, var(--gold-light), var(--gold), var(--gold-light));
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 2s linear infinite;
  display: block;
  text-align: center;
  margin-bottom: 1.5rem;
}

.loader-bar {
  width: 160px;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
  margin-inline: auto;
}

.loader-bar span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  animation: loadBar 1.4s var(--ease) forwards;
}

@keyframes shimmer {
  to { background-position: 200% center; }
}

@keyframes loadBar {
  to { width: 100%; }
}

/* ---------- Cursor glow ---------- */
.cursor-glow {
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold-glow), transparent 65%);
  pointer-events: none;
  z-index: 1;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.4s;
  mix-blend-mode: screen;
}

body:hover .cursor-glow {
  opacity: 0.55;
}

@media (pointer: coarse) {
  .cursor-glow { display: none; }
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  transition: background 0.4s, border-color 0.4s, backdrop-filter 0.4s;
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(5, 5, 5, 0.72);
  backdrop-filter: blur(20px);
  border-bottom-color: rgba(212, 175, 55, 0.12);
}

.header-inner {
  width: var(--container);
  margin-inline: auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  z-index: 2;
}

.logo-mark {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  box-shadow: 0 0 24px var(--gold-glow);
  position: relative;
}

.logo-mark::after {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1.5px solid rgba(0, 0, 0, 0.35);
  border-radius: 3px;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.nav-desktop {
  display: flex;
  gap: 2rem;
}

.nav-desktop a {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color 0.3s;
  position: relative;
}

.nav-desktop a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.35s var(--ease);
}

.nav-desktop a:hover {
  color: #fff;
}

.nav-desktop a:hover::after {
  width: 100%;
}

.nav-desktop a[aria-current="page"] {
  color: #fff;
}

.nav-desktop a[aria-current="page"]::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: #fff;
  transition: transform 0.35s var(--ease);
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.75px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.75px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(5, 5, 5, 0.96);
  backdrop-filter: blur(24px);
  display: grid;
  place-items: center;
  padding: 2rem;
}

.mobile-nav[hidden] {
  display: none;
}

.mobile-nav nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
  font-family: var(--font-display);
  font-size: 1.75rem;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--header-h) + 1.5rem) 0 3.5rem;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 55% at 15% 40%, rgba(212, 175, 55, 0.14), transparent 55%),
    radial-gradient(ellipse 55% 50% at 85% 55%, rgba(212, 175, 55, 0.08), transparent 50%),
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(17, 17, 17, 0.9), transparent 45%),
    linear-gradient(165deg, #0a0a0a 0%, #050505 40%, #0c0a06 100%);
}

.hero-atmosphere {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  will-change: transform;
}

.hero-orb-a {
  width: 480px;
  height: 480px;
  top: -10%;
  left: -5%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.35), transparent 70%);
  animation: orbDrift 18s ease-in-out infinite;
}

.hero-orb-b {
  width: 360px;
  height: 360px;
  bottom: 5%;
  right: 5%;
  background: radial-gradient(circle, rgba(240, 215, 140, 0.2), transparent 70%);
  animation: orbDrift 22s ease-in-out infinite reverse;
}

.hero-orb-c {
  width: 280px;
  height: 280px;
  top: 40%;
  left: 45%;
  background: radial-gradient(circle, rgba(168, 137, 42, 0.18), transparent 70%);
  animation: orbDrift 26s ease-in-out 2s infinite;
}

.hero-particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.7;
}

.hero-vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 40%, rgba(5, 5, 5, 0.55) 100%);
}

@keyframes orbDrift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -25px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.96); }
}

.hero-shell {
  position: relative;
  z-index: 2;
  width: var(--hero-max);
  margin-inline: auto;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  width: 100%;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1.1rem;
}

.hero-eyebrow-mark {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  box-shadow: 0 0 20px var(--gold-glow);
}

.hero-title {
  font-size: clamp(2.75rem, 5.2vw, 5rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin-bottom: 1.15rem;
  max-width: 11ch;
}

.hero-title em {
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(120deg, var(--gold-light), var(--gold), var(--gold-dark));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-line {
  display: block;
  overflow: hidden;
}

.hero-line > span {
  display: inline-block;
}

.hero-sub {
  color: var(--text-muted);
  font-size: clamp(1.05rem, 1.35vw, 1.25rem);
  line-height: 1.65;
  max-width: 36ch;
  margin-bottom: 1.6rem;
  font-weight: 400;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.4rem;
}

.hero-ctas .btn-gold:hover {
  box-shadow:
    0 0 0 1px rgba(212, 175, 55, 0.7),
    0 12px 40px rgba(212, 175, 55, 0.5),
    0 0 60px rgba(212, 175, 55, 0.25);
}

.hero-badges {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-bottom: 1.4rem;
}

.hero-badges li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.badge-check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.7rem;
  color: #0a0a0a;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 0 16px var(--gold-glow);
}

.hero-badges strong {
  color: #fff;
  font-family: var(--font-num);
  font-weight: 600;
}

.hero-partners {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.partners-label {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.partner-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem 1.75rem;
}

.partner-logo {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.32);
  letter-spacing: 0.04em;
  transition: color 0.3s;
}

.partner-logo:hover {
  color: rgba(212, 175, 55, 0.75);
}

/* Hero visual — right column */
.hero-right {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual {
  position: relative;
  width: 100%;
  max-width: 560px;
  aspect-ratio: 4 / 5;
  margin-inline: auto;
}

.hero-visual-frame {
  position: absolute;
  inset: 0;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.45);
  box-shadow:
    0 0 0 1px rgba(212, 175, 55, 0.12),
    0 40px 80px rgba(0, 0, 0, 0.65),
    0 0 60px rgba(212, 175, 55, 0.12);
  background: var(--bg-2);
}

.hero-visual-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.12);
  will-change: transform;
}

.hero-visual-glass {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, rgba(5, 5, 5, 0.15) 0%, rgba(5, 5, 5, 0.45) 55%, rgba(5, 5, 5, 0.7) 100%),
    linear-gradient(to top, rgba(5, 5, 5, 0.55), transparent 40%);
  pointer-events: none;
}

.hero-visual-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg, rgba(255, 255, 255, 0.12) 0%, transparent 35%, transparent 65%, rgba(212, 175, 55, 0.08) 100%);
  pointer-events: none;
}

.hero-float {
  position: absolute;
  z-index: 4;
  padding: 0.95rem 1.15rem;
  min-width: 148px;
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  will-change: transform;
}

.hf-label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 0.3rem;
}

.hf-value {
  display: block;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.hf-change {
  display: block;
  font-style: normal;
  font-size: 0.8rem;
  font-weight: 600;
  margin-top: 0.2rem;
}

.hf-1 {
  top: 7%;
  left: -4%;
  animation: floatY 6s ease-in-out infinite;
}

.hf-1 .hf-value {
  font-size: 1.55rem;
  background: linear-gradient(90deg, #fff, var(--gold-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hf-2 {
  top: 26%;
  right: -5%;
  animation: floatY 7s ease-in-out 0.4s infinite reverse;
}

.hf-3 {
  bottom: 26%;
  left: -3%;
  animation: floatY 5.5s ease-in-out 0.8s infinite;
}

.hf-4 {
  bottom: 8%;
  right: -2%;
  animation: floatY 6.5s ease-in-out 1.2s infinite reverse;
}

.pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #6dcf8a;
  box-shadow: 0 0 0 0 rgba(109, 207, 138, 0.6);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  70% { box-shadow: 0 0 0 10px rgba(109, 207, 138, 0); }
  100% { box-shadow: 0 0 0 0 rgba(109, 207, 138, 0); }
}

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.hero-scroll {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-dim);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.7); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ---------- Trust ---------- */
.trust {
  padding: clamp(3rem, 6vw, 5rem) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.5), transparent);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
  text-align: center;
}

.trust-num {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  background: linear-gradient(135deg, #fff 20%, var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
}

.trust-label {
  font-size: 0.85rem;
  color: var(--text-dim);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ---------- Solutions ---------- */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.solution-card {
  background: var(--bg-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow-soft);
  transition: border-color 0.4s, box-shadow 0.4s;
  transform-style: preserve-3d;
  will-change: transform;
}

.solution-card:hover {
  border-color: rgba(212, 175, 55, 0.35);
  box-shadow: var(--shadow-gold), var(--shadow-soft);
}

.solution-media {
  height: 280px;
  overflow: hidden;
  position: relative;
}

.solution-media img {
  width: 100%;
  height: 120%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
  will-change: transform;
}

.solution-card:hover .solution-media img {
  transform: scale(1.08) translateY(-4%);
}

.solution-body {
  padding: 1.75rem 1.75rem 2rem;
}

.solution-body h3 {
  font-size: 1.65rem;
  margin-bottom: 0.75rem;
}

.solution-body p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ---------- Why ---------- */
.why-rows {
  display: flex;
  flex-direction: column;
  gap: clamp(4rem, 8vw, 7rem);
}

.why-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.why-row.reverse {
  direction: rtl;
}

.why-row.reverse > * {
  direction: ltr;
}

.why-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow-soft);
}

.why-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.feature-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  align-items: start;
}

.feat-icon {
  font-family: var(--font-num);
  font-size: 0.8rem;
  color: var(--gold);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  background: rgba(212, 175, 55, 0.06);
}

.feature-list h3 {
  font-size: 1.2rem;
  margin-bottom: 0.35rem;
}

.feature-list p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ---------- Timeline ---------- */
.timeline {
  position: relative;
  padding-top: 1rem;
}

.timeline-line {
  position: absolute;
  top: 28px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.timeline-progress {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  box-shadow: 0 0 16px var(--gold-glow);
}

.timeline-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.timeline-step {
  text-align: center;
  padding: 0 0.5rem;
}

.step-num {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 1rem;
  color: var(--gold);
  background: var(--bg);
  border: 1px solid var(--border);
  box-shadow: 0 0 0 8px var(--bg), 0 0 32px var(--gold-glow);
}

.timeline-step h3 {
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
}

.timeline-step p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ---------- Markets ---------- */
.markets-board {
  padding: 1.5rem;
}

.market-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.market-card {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  transition: border-color 0.35s, transform 0.35s var(--ease);
}

.market-card:hover {
  border-color: rgba(212, 175, 55, 0.35);
  transform: translateY(-4px);
}

.m-name {
  display: block;
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-bottom: 0.5rem;
  letter-spacing: 0.04em;
}

.m-price {
  display: block;
  font-size: 1.45rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.m-change {
  font-size: 0.85rem;
  font-family: var(--font-num);
  font-weight: 600;
}

.mini-chart {
  width: 100%;
  height: 48px;
  margin-top: 0.75rem;
  display: block;
}

/* ---------- Performance ---------- */
.perf-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.perf-copy p {
  color: var(--text-muted);
  margin-bottom: 1.75rem;
  max-width: 44ch;
}

.perf-highlights {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.perf-highlights li {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.perf-highlights strong {
  color: var(--gold);
  margin-right: 0.75rem;
  font-size: 1.1rem;
}

.perf-chart-wrap {
  padding: 1.5rem;
}

.perf-chart-header {
  display: flex;
  justify-content: space-between;
  color: var(--text-dim);
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

#perfChart {
  width: 100%;
  height: auto;
}

/* ---------- Testimonials ---------- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  padding: 2rem;
  transition: transform 0.4s var(--ease), border-color 0.4s;
}

.testimonial-card:hover {
  border-color: rgba(212, 175, 55, 0.3);
}

.t-stars {
  color: var(--gold);
  letter-spacing: 0.15em;
  margin-bottom: 1.25rem;
  font-size: 0.9rem;
}

.testimonial-card blockquote {
  font-family: var(--font-display);
  font-size: 1.2rem;
  line-height: 1.45;
  font-style: italic;
  margin-bottom: 1.75rem;
  color: rgba(255, 255, 255, 0.9);
}

.t-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.t-author img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(212, 175, 55, 0.4);
}

.t-author strong {
  display: block;
  font-size: 0.95rem;
  font-family: var(--font-body);
  font-weight: 600;
}

.t-author span {
  font-size: 0.8rem;
  color: var(--text-dim);
}

/* ---------- Global map ---------- */
.map-wrap {
  position: relative;
}

.world-map {
  position: relative;
  background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.06), transparent 60%), var(--bg-2);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 2rem;
  overflow: hidden;
  min-height: 420px;
}

.map-svg {
  width: 100%;
  height: auto;
  display: block;
}

.m-pulse {
  animation: mapPulse 2.8s ease-out infinite;
  transform-origin: center;
}

@keyframes mapPulse {
  0% { opacity: 0.8; transform: scale(0.6); }
  100% { opacity: 0; transform: scale(1.8); }
}

.office-float {
  position: absolute;
  padding: 0.85rem 1.15rem;
  pointer-events: none;
}

.office-float strong {
  display: block;
  font-family: var(--font-body);
  font-size: 0.9rem;
}

.office-float span {
  font-size: 0.75rem;
  color: var(--text-dim);
}

.of-1 { top: 22%; left: 12%; animation: floatY 6s ease-in-out infinite; }
.of-2 { top: 18%; left: 42%; animation: floatY 7s ease-in-out 0.4s infinite; }
.of-3 { top: 48%; right: 12%; animation: floatY 5.5s ease-in-out 0.8s infinite; }

/* ---------- Insights ---------- */
.insights-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.5rem;
}

.insight-card {
  background: var(--bg-2);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  transition: border-color 0.4s, box-shadow 0.4s;
}

.insight-card:hover {
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: var(--shadow-gold);
}

.insight-card.large {
  grid-row: span 2;
}

.insight-media {
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.insight-card.large .insight-media {
  aspect-ratio: 4 / 3;
  flex: 1;
}

.insight-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.insight-card:hover .insight-media img {
  transform: scale(1.06);
}

.insight-body {
  padding: 1.5rem;
}

.tag {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.insight-body h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.insight-card.large h3 {
  font-size: 1.75rem;
}

.insight-body p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ---------- App ---------- */
.app-section {
  background: linear-gradient(180deg, transparent, rgba(17, 17, 17, 0.8), transparent);
}

.app-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.app-copy p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 42ch;
}

.app-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.25rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.04);
  transition: border-color 0.3s, background 0.3s;
}

.store-btn:hover {
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.08);
}

.store-btn small {
  display: block;
  font-size: 0.65rem;
  color: var(--text-dim);
}

.store-btn span {
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.2;
}

.app-phones {
  position: relative;
  min-height: 440px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.phone {
  width: 220px;
  border-radius: 32px;
  padding: 12px;
  position: absolute;
  box-shadow: var(--shadow-soft), 0 0 40px var(--gold-glow);
}

.phone-ios {
  left: 18%;
  bottom: 0;
  z-index: 2;
  animation: floatY 6s ease-in-out infinite;
}

.phone-android {
  right: 18%;
  bottom: 40px;
  z-index: 1;
  width: 200px;
  animation: floatY 7s ease-in-out 0.5s infinite reverse;
}

.phone-notch {
  width: 90px;
  height: 18px;
  background: #000;
  border-radius: 0 0 12px 12px;
  margin: 0 auto 8px;
}

.phone-screen {
  background: linear-gradient(160deg, #1a1a1a, #0a0a0a);
  border-radius: 22px;
  padding: 1.5rem 1.15rem;
  min-height: 360px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.ps-label {
  font-size: 0.7rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.ps-value {
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0.5rem 0 1.5rem;
  color: var(--gold-light);
}

.ps-bars {
  display: flex;
  align-items: flex-end;
  gap: 0.65rem;
  height: 140px;
}

.ps-bars div {
  flex: 1;
  height: var(--h);
  background: linear-gradient(to top, var(--gold-dark), var(--gold-light));
  border-radius: 6px 6px 2px 2px;
  position: relative;
  opacity: 0.85;
}

.ps-bars span {
  position: absolute;
  bottom: -1.4rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.6rem;
  color: var(--text-dim);
  white-space: nowrap;
}

.ps-list {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ps-list li {
  display: flex;
  justify-content: space-between;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.9rem;
}

.ps-list em {
  font-style: normal;
  font-family: var(--font-num);
  font-weight: 600;
}

/* ---------- Final CTA ---------- */
.final-cta {
  position: relative;
  text-align: center;
  padding: clamp(6rem, 12vw, 10rem) 0;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 50%, rgba(212, 175, 55, 0.18), transparent),
    linear-gradient(180deg, var(--bg), var(--bg-2), var(--bg));
}

.cta-bg::before {
  content: "";
  position: absolute;
  inset: 20% 10%;
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 50%;
  filter: blur(1px);
  animation: ctaRing 8s ease-in-out infinite;
}

@keyframes ctaRing {
  0%, 100% { transform: scale(1); opacity: 0.4; }
  50% { transform: scale(1.05); opacity: 0.8; }
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.cta-inner h2 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  margin-bottom: 1.25rem;
}

.cta-inner p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
}

/* ---------- Footer ---------- */
.site-footer {
  background: #080808;
  padding: 4rem 0 2rem;
  position: relative;
}

.footer-gold-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin-bottom: 3.5rem;
  opacity: 0.7;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 1.25rem 0 1.5rem;
  max-width: 36ch;
}

.newsletter {
  display: flex;
  gap: 0.5rem;
  max-width: 360px;
}

.newsletter input {
  flex: 1;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  outline: none;
  transition: border-color 0.3s;
}

.newsletter input:focus {
  border-color: var(--gold);
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.footer-cols h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  font-weight: 600;
}

.footer-cols a {
  display: block;
  color: var(--text-muted);
  font-size: 0.9rem;
  padding: 0.3rem 0;
  transition: color 0.3s;
}

.footer-cols a:hover {
  color: #fff;
}

.footer-offices {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 1.5rem;
  color: var(--text-dim);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-dim);
}

.socials {
  display: flex;
  gap: 0.75rem;
}

.socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  place-items: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}

.socials a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(212, 175, 55, 0.08);
}

/* ---------- Reveal defaults ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(36px);
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .hero {
    min-height: auto;
    padding-top: calc(var(--header-h) + 2rem);
    padding-bottom: 3rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-title {
    max-width: none;
    font-size: clamp(2.6rem, 7vw, 4rem);
  }

  .hero-sub {
    max-width: 48ch;
  }

  .hero-visual {
    max-width: 480px;
    aspect-ratio: 5 / 6;
  }

  .hf-1 { left: -2%; }
  .hf-2 { right: -2%; }
  .hf-3 { left: 0; }
  .hf-4 { right: 0; }

  .trust-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem 1rem;
  }

  .solutions-grid,
  .testimonial-grid,
  .market-cards {
    grid-template-columns: 1fr 1fr;
  }

  .market-cards .market-card:nth-child(5),
  .market-cards .market-card:nth-child(6) {
    grid-column: span 1;
  }

  .why-row,
  .why-row.reverse,
  .perf-layout,
  .app-layout,
  .footer-top {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .timeline-steps {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem 1.5rem;
  }

  .timeline-line {
    display: none;
  }

  .insights-grid {
    grid-template-columns: 1fr;
  }

  .insight-card.large {
    grid-row: auto;
  }

  .phone-ios { left: 8%; }
  .phone-android { right: 8%; }

  .footer-cols {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --header-h: 68px;
    --container: min(100% - 2rem, 1240px);
    --hero-max: min(100% - 1.5rem, 1400px);
  }

  .nav-desktop,
  .header-actions .btn-ghost {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    align-items: flex-start;
    padding-bottom: 2.5rem;
  }

  .hero-scroll {
    display: none;
  }

  .hero-title {
    font-size: clamp(2.35rem, 9vw, 3.25rem);
  }

  .hero-badges li {
    font-size: 0.875rem;
  }

  .hero-visual {
    max-width: 100%;
    aspect-ratio: 4 / 5;
  }

  .hero-float {
    padding: 0.75rem 0.9rem;
    min-width: 120px;
  }

  .hf-value {
    font-size: 1.05rem;
  }

  .hf-1 .hf-value {
    font-size: 1.2rem;
  }

  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }

  .trust-item:last-child {
    grid-column: span 2;
  }

  .solutions-grid,
  .testimonial-grid,
  .market-cards {
    grid-template-columns: 1fr;
  }

  .timeline-steps {
    grid-template-columns: 1fr;
  }

  .app-phones {
    min-height: 380px;
  }

  .phone-ios {
    left: 50%;
    transform: translateX(-55%);
  }

  .phone-android {
    right: auto;
    left: 50%;
    transform: translateX(10%);
    bottom: 20px;
  }

  .office-float {
    display: none;
  }

  .footer-cols {
    grid-template-columns: 1fr 1fr;
  }

  .newsletter {
    flex-direction: column;
  }
}

@media (max-height: 860px) and (min-width: 1101px) {
  .hero {
    padding-top: calc(var(--header-h) + 0.75rem);
    padding-bottom: 2rem;
  }

  .hero-title {
    font-size: clamp(2.5rem, 4.2vw, 3.75rem);
  }

  .hero-visual {
    max-width: 460px;
  }

  .hero-scroll {
    display: none;
  }

  .hero-partners {
    padding-top: 0.85rem;
  }
}

@media (max-width: 480px) {
  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-ctas .btn {
    width: 100%;
  }

  .hf-2,
  .hf-4 {
    display: none;
  }

  .hf-1 {
    top: 6%;
    left: 4%;
  }

  .hf-3 {
    bottom: 8%;
    left: auto;
    right: 4%;
  }

  .partner-logos {
    gap: 1rem 1.25rem;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .trust-item:last-child {
    grid-column: auto;
  }

  .footer-cols {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .cursor-glow {
    display: none;
  }
}

/* Focus styles */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
