/* ============================================================
   AXELION V9 — Editorial Minimal, refined
   ============================================================ */

/* 1 ─ Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400;1,600&family=Inter:wght@300;400;500;600&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

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

/* 3 ─ Design Tokens ─────────────────────────────────────────── */
:root {
  /* palette — V9: softened black for premium feel */
  --white:      #ffffff;
  --off:        #f7f6f3;
  --black:      #1a1a1d;
  --dark:       #232327;
  --darker:     #141417;
  --mid:        #777777;
  --light-rule: #e4e0da;
  --dark-rule:  rgba(255,255,255,0.08);
  --blue:       #1a3a8f;
  --blue-lt:    #3d6ed9;
  --gold:       #b8925a;
  --gold-lt:    #d4b07a;

  /* typography */
  --f-display: 'Cormorant Garamond', Georgia, serif;
  --f-body:    'Inter', system-ui, sans-serif;
  --f-label:   'Space Grotesk', system-ui, sans-serif;

  /* fluid type */
  --fs-hero:  clamp(52px, 9vw, 140px);
  --fs-h2:    clamp(40px, 6.5vw, 96px);
  --fs-h3:    clamp(24px, 3.5vw, 48px);
  --fs-h4:    clamp(18px, 2.5vw, 28px);
  --fs-label: 11px;
  --fs-body:  16px;
  --fs-lg:    18px;

  /* spacing */
  --max-w:    1360px;
  --gutter:   clamp(24px, 5vw, 80px);
  --sec-v:    clamp(80px, 12vw, 140px);
}

/* 4 ─ Custom Cursor — V9: gold accent, always visible ──────── */
#cursorRing {
  position: fixed; z-index: 9999; pointer-events: none;
  top: 0; left: 0;
  width: 34px; height: 34px;
  border: 1.5px solid var(--gold);
  background: rgba(184, 146, 90, 0.04);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;                          /* hidden until first mouse move */
  transition: width .35s cubic-bezier(.22,1,.36,1),
              height .35s cubic-bezier(.22,1,.36,1),
              border-color .25s, background .25s,
              opacity .25s ease;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.06),
              0 2px 12px rgba(0,0,0,0.12);
}
#cursorDot {
  position: fixed; z-index: 9999; pointer-events: none;
  top: 0; left: 0;
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;                          /* hidden until first mouse move */
  transition: transform .1s, opacity .25s ease;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.4),
              0 0 8px rgba(184,146,90,0.5);
}
/* Shown only once the pointer is actually moving inside the window */
body.cursor-active #cursorRing,
body.cursor-active #cursorDot { opacity: 1; }
#cursorRing.hover  { width: 64px; height: 64px; background: rgba(184,146,90,0.1); }
#cursorRing.click  { width: 26px; height: 26px; }

/* 5 ─ Loader ────────────────────────────────────────────────── */
#loader {
  position: fixed; inset: 0; z-index: 8000;
  background: var(--black);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .8s ease .1s;
}
#loader.done { opacity: 0; pointer-events: none; }
/* V9: loader uses mark + wordmark */
.loader-mark {
  display: flex; flex-direction: column; align-items: center; gap: 18px;
  color: var(--white);
  animation: loaderFade 1.2s cubic-bezier(.22,1,.36,1) both;
}
.loader-logo {
  width: clamp(200px, 32vw, 320px);
  height: auto;
  display: block;
}
@keyframes loaderFade {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* 6 ─ Nav ───────────────────────────────────────────────────── */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 600;
  height: 68px;
  display: flex; align-items: center;
  padding: 0 var(--gutter);
  transition: background .4s, border-color .4s;
  border-bottom: 1px solid transparent;
}
#nav.scrolled {
  background: rgba(10,10,10,.94);
  border-color: rgba(255,255,255,.08);
  backdrop-filter: blur(12px);
}
.nav-inner {
  width: 100%; max-width: var(--max-w);
  margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
}
/* V10: nav logo = white PNG (mark + wordmark) */
.nav-logo {
  display: flex; align-items: center;
  line-height: 1;
}
.nav-logo-img {
  height: 30px;
  width: auto;
  display: block;
}
.nav-links {
  display: flex; align-items: center; gap: 36px;
}
.nav-links a {
  font-family: var(--f-label);
  font-size: var(--fs-label);
  font-weight: 400;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  transition: color .2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--white);
  transition: width .3s;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  font-family: var(--f-label);
  font-size: var(--fs-label);
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--white) !important;
  border: 1px solid rgba(255,255,255,.35);
  padding: 9px 20px;
  border-radius: 2px;
  transition: background .25s, border-color .25s !important;
}
.nav-cta:hover { background: rgba(255,255,255,.1); border-color: var(--white) !important; }
.nav-cta::after { display: none !important; }

/* V10: language switch (EN / TL) */
.lang-switch {
  display: flex; align-items: center; gap: 6px;
  padding-left: 22px;
  margin-left: 4px;
  border-left: 1px solid rgba(255,255,255,.18);
}
.lang-btn {
  font-family: var(--f-label);
  font-size: var(--fs-label);
  font-weight: 500;
  letter-spacing: .12em;
  color: rgba(255,255,255,.4);
  cursor: none;
  transition: color .2s;
  padding: 2px 1px;
}
.lang-btn:hover { color: rgba(255,255,255,.8); }
.lang-btn.active { color: var(--gold); }
.lang-sep { color: rgba(255,255,255,.25); font-size: 11px; }

#navToggle {
  display: none;
  flex-direction: column; gap: 5px;
  width: 28px; cursor: none; padding: 4px 0;
}
#navToggle span {
  display: block; height: 1px; background: var(--white);
  transition: transform .3s, opacity .3s;
}
#navToggle.active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
#navToggle.active span:nth-child(2) { opacity: 0; }
#navToggle.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* 7 ─ Shared / Utility ──────────────────────────────────────── */
.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s cubic-bezier(.22,1,.36,1),
              transform .7s cubic-bezier(.22,1,.36,1);
}
.reveal.in { opacity: 1; transform: none; }

/* Section tag label — "— 01  VISION" */
.sec-tag {
  font-family: var(--f-label);
  font-size: var(--fs-label);
  font-weight: 500;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--mid);
  display: flex; align-items: center; gap: 14px;
  margin-bottom: clamp(40px, 6vw, 72px);
}
.sec-tag::before {
  content: '';
  flex-shrink: 0;
  width: 36px; height: 1px;
  background: currentColor;
}
.dark .sec-tag { color: rgba(255,255,255,.4); }

/* Display headlines */
.sec-h2 {
  font-family: var(--f-display);
  font-size: var(--fs-h2);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -.015em;
}
.dark .sec-h2 { color: var(--white); }

.sec-h3 {
  font-family: var(--f-display);
  font-size: var(--fs-h3);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -.01em;
}
.dark .sec-h3 { color: var(--white); }

/* Rule lines */
.rule { border: none; border-top: 1px solid var(--light-rule); }
.dark .rule, .rule.dk { border-color: var(--dark-rule); }

/* Body text */
.body-text {
  font-family: var(--f-body);
  font-size: var(--fs-body);
  line-height: 1.75;
  color: #444;
}
.dark .body-text { color: rgba(255,255,255,.6); }

/* Section photo */
.sec-photo {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

/* Buttons */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-label);
  font-size: var(--fs-label);
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--white);
  border: 1px solid var(--black);
  padding: 16px 36px;
  border-radius: 2px;
  transition: background .25s, color .25s;
}
.btn-primary:hover { background: var(--black); color: var(--white); }
.btn-primary.inv { background: var(--black); color: var(--white); border-color: var(--white); }
.btn-primary.inv:hover { background: var(--white); color: var(--black); }

.btn-text {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--f-label);
  font-size: var(--fs-label);
  font-weight: 400;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--white);
  position: relative;
}
.btn-text::after {
  content: '';
  position: absolute; bottom: -2px; left: 0; right: 0;
  height: 1px; background: currentColor;
  transform: scaleX(0); transform-origin: right;
  transition: transform .35s;
}
.btn-text:hover::after { transform: scaleX(1); transform-origin: left; }

/* 8 ─ Hero — V9: fixed cutoff, no parallax ─────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding-top: 110px;            /* room below the fixed nav */
  overflow: hidden;
  color: var(--white);
}
.hero-media {
  position: absolute; inset: 0; z-index: 0;
}
.hero-photo {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 50%;
  filter: brightness(.78) contrast(1.05);
  /* Static — no scale, no parallax */
}
.hero-veil {
  position: absolute; inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10,10,10,.3) 0%,
    rgba(10,10,10,.55) 40%,
    rgba(10,10,10,.82) 100%
  );
}
.hero-inner {
  position: relative; z-index: 2;
  padding: 0 var(--gutter) clamp(60px, 9vw, 120px);
  max-width: var(--max-w); margin: 0 auto; width: 100%;
}
.hero-eyebrow {
  font-family: var(--f-label);
  font-size: var(--fs-label);
  font-weight: 400;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-bottom: clamp(20px, 3vw, 36px);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .6s, transform .6s;
}
.hero-eyebrow.in { opacity: 1; transform: none; }

.hero-h1 {
  font-family: var(--f-display);
  font-size: var(--fs-hero);
  font-weight: 300;
  line-height: 1.08;            /* V9: room for italic descenders */
  letter-spacing: -.02em;
  color: var(--white);
  margin-bottom: clamp(28px, 4vw, 48px);
  padding-bottom: 0.06em;       /* extra space for "g" descender */
}
.hero-h1 em { font-style: italic; }

.ht-line {
  display: block;
  /* V9: negative clip-path values let italic descenders (g, y) breathe */
  clip-path: inset(-12% 0 100% 0);
  transition: clip-path .8s cubic-bezier(.22,1,.36,1);
}
.ht-line.in { clip-path: inset(-12% 0 -20% 0); }

.hero-lead {
  max-width: 540px;
  font-size: var(--fs-lg);
  line-height: 1.7;
  color: rgba(255,255,255,.7);
  margin-bottom: clamp(28px, 4vw, 44px);
}
.hero-cta-row {
  display: flex; align-items: center; gap: 32px;
  margin-bottom: clamp(44px, 7vw, 80px);
}
.hero-stats-row {
  display: flex; align-items: flex-start; gap: clamp(24px, 5vw, 60px);
  padding-top: clamp(24px, 3vw, 36px);
  border-top: 1px solid rgba(255,255,255,.15);
}
.hstat-val {
  font-family: var(--f-display);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 300;
  line-height: 1;
  color: var(--white);
  margin-bottom: 6px;
}
.hstat-num { display: inline; }
.hstat-key {
  font-family: var(--f-label);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  max-width: 140px;
  line-height: 1.5;
}
.hero-scroll {
  position: absolute; bottom: clamp(20px, 3vw, 36px); right: var(--gutter);
  z-index: 3;
  writing-mode: vertical-rl;
  font-family: var(--f-label);
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  display: flex; align-items: center; gap: 12px;
}
.hero-scroll::after {
  content: '';
  display: block; width: 1px; height: 40px;
  background: rgba(255,255,255,.3);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: .3; transform: scaleY(.8); }
  50%       { opacity: 1;  transform: scaleY(1); }
}

/* 9 ─ Vision ────────────────────────────────────────────────── */
.vision {
  background: var(--white);
  padding: var(--sec-v) 0;
}
.vision-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: clamp(40px, 7vw, 100px);
  align-items: start;
}
.vision-left { padding-top: 0; }
.vision-left .sec-h2 { margin-bottom: clamp(24px, 3vw, 36px); }
.vision-left .body-text { max-width: 500px; margin-bottom: clamp(44px, 6vw, 72px); }

.vision-stats { display: flex; flex-direction: column; gap: 0; }
.vstat {
  padding: clamp(20px, 3vw, 32px) 0;
  border-top: 1px solid var(--light-rule);
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 24px;
  align-items: baseline;
}
.vstat:last-child { border-bottom: 1px solid var(--light-rule); }
.vstat-num {
  font-family: var(--f-display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 300;
  line-height: 1;
  color: var(--black);
}
.vstat-desc {
  font-family: var(--f-body);
  font-size: 14px;
  line-height: 1.6;
  color: #666;
}
.vs-num { display: inline; }

/* V10: image fixed (sticky) while the text column scrolls past it */
.vision-right {
  position: sticky;
  top: 96px;
  align-self: start;
}
.vision-photo-wrap {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--off);
}
.vision-photo-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
}

/* 10 ─ Solutions ─────────────────────────────────────────────── */
.solutions {
  background: var(--black);
  padding: var(--sec-v) 0;
}
.sol-header { margin-bottom: clamp(40px, 6vw, 60px); }
.sol-header .sec-h2 { color: var(--white); }

.sol-list { margin-top: 0; }
.sol-rule { border: none; border-top: 1px solid var(--dark-rule); }

.sol-row {
  display: grid;
  grid-template-columns: 72px 1fr 40px;
  align-items: center;
  padding: clamp(20px, 3vw, 32px) 0;
  gap: clamp(16px, 3vw, 40px);
  cursor: none;
  transition: background .2s;
}
.sol-row:hover { background: rgba(255,255,255,.03); }
.sol-row:hover .sol-arrow { opacity: 1; transform: none; }

.sol-letter {
  font-family: var(--f-display);
  font-size: clamp(20px, 2.5vw, 32px);
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,.35);
  line-height: 1;
}
.sol-body { min-width: 0; }
.sol-title {
  font-family: var(--f-label);
  font-size: clamp(14px, 1.8vw, 22px);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.3;
}
.sol-desc {
  font-family: var(--f-body);
  font-size: 13px;
  color: rgba(255,255,255,.4);
  line-height: 1.5;
  letter-spacing: .02em;
}
.sol-arrow {
  font-size: 18px;
  color: rgba(255,255,255,.3);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity .25s, transform .25s, color .25s;
  justify-self: end;
}
.sol-row:hover .sol-arrow { color: var(--gold); }

/* 11 ─ Ventures ─────────────────────────────────────────────── */
.ventures {
  background: var(--off);
  padding: var(--sec-v) 0;
}
.ventures-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1px, 0.2vw, 2px);
  margin-top: clamp(40px, 6vw, 64px);
}
.v-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--dark);
  cursor: none;
}
.v-card-photo {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .75;
  transition: opacity .6s, transform .7s cubic-bezier(.22,1,.36,1);
}
.v-card:hover .v-card-photo { opacity: .45; transform: scale(1.06); }
.v-card-veil {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(10,10,10,.9) 100%);
}
.v-card-body {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: clamp(20px, 3vw, 36px);
  transform: translateY(8px);
  transition: transform .4s;
}
.v-card:hover .v-card-body { transform: none; }
.v-card-tag {
  font-family: var(--f-label);
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.v-card-title {
  font-family: var(--f-display);
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 12px;
}
.v-card-desc {
  font-size: 13px;
  color: rgba(255,255,255,.55);
  line-height: 1.6;
  max-width: 280px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .4s .05s, transform .4s .05s;
}
.v-card:hover .v-card-desc { opacity: 1; transform: none; }
.v-card-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--f-label);
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-top: 16px;
  opacity: 0;
  transition: opacity .4s .1s, color .2s;
}
.v-card:hover .v-card-link { opacity: 1; }
.v-card-link:hover { color: var(--white); }

/* 12 ─ Infrastructure ───────────────────────────────────────── */
.infrastructure {
  position: relative;
  background: var(--black);
  overflow: hidden;
}
.infra-photo-full {
  position: absolute; inset: 0;
  z-index: 0;
}
/* V10: darker photo + overlay so partner panel reads clearly */
.infra-photo-full img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .32;
}
.infra-photo-full::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(110deg, var(--black) 35%, rgba(26,26,29,.55) 100%);
}
.infra-inner {
  position: relative; z-index: 2;
  padding: var(--sec-v) 0;
}
.infra-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 8vw, 120px);
  align-items: start;
  margin-top: clamp(40px, 6vw, 64px);
}
.infra-left .sec-h2 { color: var(--white); }
.infra-left .body-text { margin-top: 28px; }
.infra-right { padding-top: 4px; }

/* V10: glass panel for readability over the photo */
.partner-panel {
  background: rgba(20,20,23,.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 4px;
  padding: clamp(24px, 3vw, 40px);
}
.partner-tier-label {
  font-family: var(--f-label);
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 14px;
}
.partner-tier-spaced { margin-top: 34px; }
.partner-item {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  padding: clamp(16px, 2vw, 22px) 0;
  border-top: 1px solid rgba(255,255,255,.12);
}
.partner-item:last-child { border-bottom: none; }
.partner-name {
  font-family: var(--f-label);
  font-size: clamp(15px, 2vw, 21px);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}
.partner-role {
  font-size: 12.5px;
  color: rgba(255,255,255,.62);
  letter-spacing: .02em;
  line-height: 1.45;
}
.partner-badge {
  flex-shrink: 0;
  font-family: var(--f-label);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #7ad17a;
  background: rgba(122,209,122,.1);
  border: 1px solid rgba(122,209,122,.4);
  padding: 5px 11px;
  border-radius: 2px;
  white-space: nowrap;
}
.partner-badge.badge-tba {
  color: rgba(255,255,255,.5);
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.18);
}
.partner-tba .partner-name { color: rgba(255,255,255,.55); }
.partner-tba .partner-role { color: rgba(255,255,255,.4); }

/* 13 ─ Compliance ───────────────────────────────────────────── */
.compliance {
  background: var(--white);
  padding: var(--sec-v) 0;
}
.compliance-grid {
  display: grid;
  grid-template-columns: 480px 1fr;
  gap: clamp(40px, 7vw, 100px);
  align-items: start;
  margin-top: clamp(40px, 6vw, 64px);
}
/* V10: image fixed (sticky) while the cards column scrolls past it */
.compliance-photo-wrap {
  position: sticky;
  top: 96px;
  align-self: start;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #eee;
}
.compliance-photo-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.compliance-cards { display: flex; flex-direction: column; gap: 0; }
.comp-card {
  padding: clamp(24px, 3vw, 40px) 0;
  border-top: 1px solid var(--light-rule);
}
.comp-card:last-child { border-bottom: 1px solid var(--light-rule); }
.comp-jurisdiction {
  font-family: var(--f-label);
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 12px;
}
.comp-title {
  font-family: var(--f-display);
  font-size: clamp(20px, 2.5vw, 32px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--black);
  margin-bottom: 12px;
}
.comp-desc {
  font-size: 14px;
  line-height: 1.7;
  color: #555;
}
.comp-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.comp-tag {
  font-family: var(--f-label);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue);
  border: 1px solid rgba(26,58,143,.2);
  padding: 5px 12px;
  border-radius: 2px;
}

/* 14 ─ Audience ─────────────────────────────────────────────── */
.audience {
  background: var(--dark);
  padding: var(--sec-v) 0;
}
.aud-intro { max-width: 720px; margin-bottom: clamp(44px, 7vw, 80px); }
.aud-intro .sec-h2 { color: var(--white); }
.aud-intro .body-text { margin-top: 24px; }

.aud-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.08);
}
.aud-item {
  background: var(--dark);
  padding: clamp(28px, 4vw, 48px) clamp(20px, 3vw, 36px);
  transition: background .3s;
  position: relative;
  overflow: hidden;
}
.aud-item:hover { background: rgba(255,255,255,.04); }
.aud-photo-wrap {
  width: 100%; height: 200px;
  overflow: hidden;
  margin-bottom: 24px;
  background: rgba(255,255,255,.04);
}
.aud-photo-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .6;
  transition: opacity .4s, transform .5s;
}
.aud-item:hover .aud-photo-wrap img { opacity: .9; transform: scale(1.05); }
.aud-num {
  font-family: var(--f-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,.08);
  line-height: 1;
  position: absolute; top: clamp(28px, 4vw, 48px); right: clamp(20px, 3vw, 36px);
}
.aud-title {
  font-family: var(--f-label);
  font-size: clamp(13px, 1.5vw, 16px);
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 10px;
}
.aud-desc {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255,255,255,.45);
}

/* 15 ─ Why Axelion — V9: restructured layout ───────────────── */
.why {
  background: var(--white);
  padding: var(--sec-v) 0 0;     /* V9: bottom padding handled by banner */
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 7vw, 100px);
  margin-top: clamp(40px, 6vw, 64px);
  align-items: start;
}
.why-left .sec-h2 { margin-bottom: 28px; }
.why-left .body-text { max-width: 460px; margin-bottom: 0; }

/* V9: full-width banner photo at bottom of Why section */
.why-banner {
  width: 100%;
  height: clamp(240px, 32vw, 420px);
  overflow: hidden;
  margin-top: clamp(60px, 8vw, 100px);
  position: relative;
}
.why-banner img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.why-banner::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(255,255,255,0.5) 100%);
  pointer-events: none;
}

.why-list { display: flex; flex-direction: column; gap: 0; }
.why-item {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 16px;
  padding: clamp(20px, 2.5vw, 28px) 0;
  border-top: 1px solid var(--light-rule);
  align-items: start;
}
.why-item:last-child { border-bottom: 1px solid var(--light-rule); }
.why-n {
  font-family: var(--f-display);
  font-size: 18px;
  font-weight: 300;
  font-style: italic;
  color: #bbb;
  padding-top: 3px;
}
.why-body {}
.why-title {
  font-family: var(--f-label);
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 6px;
  letter-spacing: .04em;
}
.why-desc { font-size: 13px; line-height: 1.65; color: #666; }

/* 16 ─ Roadmap removed in V10 */

/* 17 ─ Contact ───────────────────────────────────────────────── */
.contact {
  background: var(--black);
  padding: var(--sec-v) 0;
  border-top: 1px solid var(--dark-rule);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: clamp(40px, 7vw, 100px);
  align-items: start;
  margin-top: clamp(40px, 6vw, 64px);
}
.contact-left {}
.contact-intro {
  font-family: var(--f-display);
  font-size: clamp(28px, 4.5vw, 64px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: clamp(32px, 5vw, 52px);
}
.contact-intro em { font-style: italic; color: rgba(255,255,255,.5); }

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 0; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 1px;
  background: var(--dark-rule);
}
.form-row.full { grid-template-columns: 1fr; background: none; }
.field {
  position: relative;
  background: var(--black);
  border-bottom: 1px solid rgba(255,255,255,.1);
  transition: border-color .25s;
}
.field:focus-within { border-color: rgba(255,255,255,.4); }
.form-row { background: none; }
.field-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.field-group .field { border-bottom: none; border-right: 1px solid rgba(255,255,255,.08); }
.field-group .field:last-child { border-right: none; }
.field label {
  display: block;
  font-family: var(--f-label);
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  padding: 20px 20px 0;
  transition: color .2s;
}
.field:focus-within label { color: rgba(255,255,255,.6); }
.field input,
.field textarea,
.field select {
  display: block; width: 100%;
  background: none; border: none; outline: none;
  font-family: var(--f-body);
  font-size: var(--fs-body);
  color: var(--white);
  padding: 8px 20px 18px;
  resize: none;
  appearance: none;
  -webkit-appearance: none;
  cursor: none;
}
.field input::placeholder,
.field textarea::placeholder { color: rgba(255,255,255,.2); }
.field textarea { min-height: 120px; }

/* Native dropdown list: dark text on light background so options are readable.
   (The closed select keeps white text on the dark field.) */
.field select option {
  color: #1a1a1d;
  background: #ffffff;
}
.field select option:checked,
.field select option:hover {
  color: #ffffff;
  background: var(--blue);
}
/* When nothing is chosen yet, dim the placeholder option in the closed field */
.field select:invalid,
.field select.is-empty { color: rgba(255,255,255,.45); }
.field.border-top { border-top: 1px solid rgba(255,255,255,.08); }

.form-submit-row {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 28px;
}
.btn-submit {
  font-family: var(--f-label);
  font-size: var(--fs-label);
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--white);
  border: 1px solid var(--white);
  padding: 16px 40px;
  border-radius: 2px;
  cursor: none;
  transition: background .25s, color .25s;
}
.btn-submit:hover { background: transparent; color: var(--white); }
.btn-submit:disabled { opacity: .4; }
#formNote {
  font-size: 13px; color: rgba(255,255,255,.4);
}
#formNote.success { color: #6ec26e; }
#formNote.error   { color: #e07070; }
.hp-field { display: none !important; }

/* Contact photo — V9: not sticky */
.contact-photo-wrap {
  position: relative;
  aspect-ratio: 2/3;
  overflow: hidden;
  background: #111;
}
.contact-photo-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .8;
}
.contact-info {
  margin-top: 28px;
  border-top: 1px solid var(--dark-rule);
  padding-top: 24px;
}
.contact-info-row {
  display: flex; justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--dark-rule);
}
.ci-label {
  font-family: var(--f-label);
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
}
.ci-val {
  font-size: 13px;
  color: rgba(255,255,255,.65);
}
.ci-val a:hover { color: var(--white); }

/* 18 ─ Footer ───────────────────────────────────────────────── */
footer {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,.08);
  padding: clamp(48px, 7vw, 80px) 0 clamp(28px, 4vw, 44px);
}
.footer-inner {
  display: grid;
  grid-template-columns: 200px 1fr 1fr 1fr;
  gap: clamp(24px, 5vw, 60px);
  margin-bottom: clamp(40px, 6vw, 64px);
}
/* V9: footer logo — mark + serif italic wordmark */
.footer-brand .f-logo-stack {
  display: flex; align-items: center;
  margin-bottom: 16px;
}
.footer-brand .f-logo-img {
  height: 34px;
  width: auto;
  display: block;
}
.footer-brand .f-tagline {
  font-size: 12px;
  color: rgba(255,255,255,.35);
  line-height: 1.6;
  max-width: 220px;
}
.footer-col-title {
  font-family: var(--f-label);
  font-size: 10px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,.5);
  transition: color .2s;
  position: relative;
  width: fit-content;
}
.footer-links a::after {
  content: '';
  position: absolute; bottom: -1px; left: 0; right: 0;
  height: 1px; background: rgba(255,255,255,.5);
  transform: scaleX(0); transform-origin: right;
  transition: transform .3s;
}
.footer-links a:hover { color: var(--white); }
.footer-links a:hover::after { transform: scaleX(1); transform-origin: left; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: clamp(20px, 3vw, 32px);
  border-top: 1px solid rgba(255,255,255,.08);
}
.footer-copy, .footer-legal {
  font-family: var(--f-label);
  font-size: 11px;
  letter-spacing: .08em;
  color: rgba(255,255,255,.25);
}
.footer-legal a { color: inherit; transition: color .2s; }
.footer-legal a:hover { color: rgba(255,255,255,.5); }

/* 19 ─ Cookie Consent — V10: stylish floating card ──────────── */
#cookieBar {
  position: fixed;
  bottom: clamp(20px, 3vw, 36px);
  left: clamp(20px, 3vw, 36px);
  z-index: 700;
  width: min(420px, calc(100vw - 40px));
  transform: translateY(calc(100% + 60px));
  opacity: 0;
  transition: transform .65s cubic-bezier(.22,1,.36,1), opacity .5s ease;
}
#cookieBar.visible    { transform: translateY(0); opacity: 1; }
#cookieBar.dismissing { transform: translateY(calc(100% + 60px)); opacity: 0; }

.cookie-card {
  position: relative;
  display: flex;
  gap: 18px;
  background: rgba(26,26,29,.86);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  padding: 26px 26px 24px;
  box-shadow: 0 24px 60px -12px rgba(0,0,0,.6),
              0 0 0 1px rgba(255,255,255,.02);
}
.cookie-icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  color: var(--gold);
  display: flex; align-items: flex-start;
}
.cookie-icon svg { width: 40px; height: 40px; }
.cookie-body { flex: 1; min-width: 0; }
.cookie-title {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 400;
  font-style: italic;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.1;
}
.cookie-text {
  font-size: 13px;
  color: rgba(255,255,255,.6);
  line-height: 1.6;
  margin-bottom: 18px;
}
.cookie-actions { display: flex; gap: 10px; margin-bottom: 14px; }
.cookie-btn {
  font-family: var(--f-label);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 11px 18px;
  border-radius: 3px;
  cursor: none;
  transition: background .2s, color .2s, border-color .2s;
}
.cookie-accept { background: var(--gold); color: #1a1a1d; border: 1px solid var(--gold); }
.cookie-accept:hover { background: var(--gold-lt); border-color: var(--gold-lt); }
.cookie-decline {
  background: transparent;
  border: 1px solid rgba(255,255,255,.22);
  color: rgba(255,255,255,.7);
}
.cookie-decline:hover { border-color: rgba(255,255,255,.5); color: var(--white); }
.cookie-link {
  display: inline-block;
  font-family: var(--f-label);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  transition: color .2s;
}
.cookie-link:hover { color: var(--gold-lt); }
.cookie-close {
  position: absolute; top: 14px; right: 16px;
  width: 22px; height: 22px;
  font-size: 13px;
  color: rgba(255,255,255,.4);
  cursor: none;
  transition: color .2s;
  display: flex; align-items: center; justify-content: center;
}
.cookie-close:hover { color: var(--white); }

/* 20 ─ Media Queries ────────────────────────────────────────── */
@media (max-width: 1100px) {
  .vision-grid { grid-template-columns: 1fr; }
  .vision-right { position: static; max-width: 480px; }
  .vision-photo-wrap { aspect-ratio: 16/9; }

  .compliance-grid { grid-template-columns: 1fr; }
  .compliance-photo-wrap { position: static; max-width: 480px; aspect-ratio: 16/9; }

  .contact-grid { grid-template-columns: 1fr; }
  .contact-photo-wrap { position: static; aspect-ratio: 16/9; max-width: 480px; }

  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  body { cursor: auto; }
  #cursorRing, #cursorDot { display: none; }

  .nav-links {
    position: fixed; inset: 0 0 0 auto;
    width: min(300px, 80vw);
    background: rgba(10,10,10,.97);
    flex-direction: column;
    align-items: flex-start;
    padding: 90px 32px 32px;
    gap: 28px;
    transform: translateX(100%);
    transition: transform .4s cubic-bezier(.22,1,.36,1);
  }
  .nav-links.open { transform: none; }
  .lang-switch {
    border-left: none;
    padding-left: 0;
    margin-left: 0;
    margin-top: 8px;
    gap: 10px;
  }
  .lang-btn { font-size: 13px; }
  .nav-links a { font-size: 14px; }

  #navToggle { display: flex; }

  .ventures-grid { grid-template-columns: 1fr 1fr; }
  .aud-grid { grid-template-columns: 1fr; }
  .aud-photo-wrap { height: 160px; }

  .infra-grid { grid-template-columns: 1fr; }

  .why-grid { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  .hero-stats-row { flex-direction: column; gap: 20px; }
  .vstat { grid-template-columns: 1fr; gap: 4px; }
}

@media (max-width: 600px) {
  .ventures-grid { grid-template-columns: 1fr; }
  .v-card { aspect-ratio: 4/3; }
  .field-group { grid-template-columns: 1fr; }
  .field-group .field { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
  .form-submit-row { flex-direction: column; align-items: flex-start; gap: 16px; }
}
@media (max-width: 768px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .compliance-grid { grid-template-columns: 1fr; }
}


/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}
