:root {
  --black: #070707;
  --black-2: #0d0d0e;
  --black-3: #151517;
  --surface: #111113;
  --surface-2: #18181b;
  --gold: #ffc400;
  --gold-2: #ff9f00;
  --gold-soft: rgba(255,196,0,.16);
  --white: #f8f8f4;
  --muted: #a7a7a9;
  --line: rgba(255,255,255,.11);
  --success: #55dc8a;
  --danger: #ff6262;
  --radius: 24px;
  --shadow: 0 24px 80px rgba(0,0,0,.35);
  --font: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --display: "Montserrat", var(--font);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--white);
  background: var(--black);
  font-family: var(--font);
  line-height: 1.6;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
::selection { color: var(--black); background: var(--gold); }

.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  left: 16px; top: 16px;
  transform: translateY(-150%);
  background: var(--gold);
  color: #000;
  padding: 10px 16px;
  border-radius: 10px;
}
.skip-link:focus { transform: translateY(0); }

/* NAV */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  transition: background .25s ease, border-color .25s ease, backdrop-filter .25s ease;
}
.site-header.scrolled {
  background: rgba(6,6,7,.82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}
.nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: .04em;
}
.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 0;
  filter: none;
}
.brand > span > span { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 27px;
  font-size: .93rem;
  color: #d4d4d4;
}
.nav-links a { transition: color .2s ease; }
.nav-links a:hover { color: var(--gold); }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
  border-radius: 12px;
}
.nav-toggle span:not(.sr-only) {
  width: 20px; height: 2px;
  background: var(--white);
  border-radius: 99px;
}

/* BUTTONS */
.btn {
  min-height: 50px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: #080808;
  background: linear-gradient(135deg, #ffe16a, var(--gold) 48%, var(--gold-2));
  box-shadow: 0 12px 38px rgba(255,183,0,.22);
}
.btn-primary:hover { box-shadow: 0 18px 50px rgba(255,183,0,.34); }
.btn-ghost {
  border-color: rgba(255,255,255,.22);
  background: rgba(255,255,255,.04);
}
.btn-ghost:hover, .btn-outline:hover {
  border-color: var(--gold);
  background: var(--gold-soft);
}
.btn-outline {
  min-height: 42px;
  border-color: rgba(255,255,255,.2);
  background: transparent;
}
.btn-small { min-height: 42px; padding-inline: 17px; }
.btn-large { min-height: 58px; padding-inline: 30px; }

/* TYPOGRAPHY */
.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
h1, h2, h3 { font-family: var(--display); line-height: 1.12; }
h1 {
  max-width: 790px;
  margin: 0;
  font-size: clamp(2.7rem, 6.5vw, 6rem);
  letter-spacing: -.055em;
}
h1 span, h2 span { color: var(--gold); }
h2 {
  margin: 0;
  font-size: clamp(2rem, 4.5vw, 4.2rem);
  letter-spacing: -.045em;
}
h3 { margin: 0; }
.lead {
  max-width: 770px;
  margin: 26px 0 0;
  color: #c8c8c8;
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
}
.lead-small {
  max-width: 650px;
  color: #c2c2c3;
  font-size: 1.08rem;
}
.section-heading { max-width: 720px; }
.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}
.section-heading > p:not(.eyebrow) {
  max-width: 720px;
  margin: 22px auto 0;
  color: var(--muted);
}

/* HERO */
.hero {
  min-height: 100svh;
  position: relative;
  isolation: isolate;
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 25%, rgba(255,184,0,.09), transparent 31%),
    radial-gradient(circle at 15% 80%, rgba(255,255,255,.055), transparent 26%),
    linear-gradient(145deg, #030303 0%, #0b0b0d 56%, #030303 100%);
}
#networkCanvas,
.hero-grid,
.hero-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
#networkCanvas { z-index: -2; opacity: .7; }
.hero-grid {
  z-index: -3;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, black 0%, rgba(0,0,0,.8) 65%, transparent);
}
.hero-glow {
  z-index: -1;
  width: 360px; height: 360px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: .13;
}
.hero-glow-a { inset: 10% auto auto 7%; background: var(--gold); }
.hero-glow-b { inset: auto 8% 4% auto; background: white; }

.hero-content {
  padding-top: 120px;
  padding-bottom: 90px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(330px, .8fr);
  gap: 56px;
  align-items: center;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }
.trust-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 34px;
}
.trust-row span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #a9a9aa;
  font-size: .78rem;
  background: rgba(255,255,255,.02);
}
.hero-brand-card {
  position: relative;
  min-height: 500px;
  padding: 24px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,196,0,.22);
  border-radius: 32px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 35%, rgba(255,196,0,.06), transparent 42%),
    #050505;
  box-shadow: var(--shadow), inset 0 0 80px rgba(255,196,0,.035);
  transform: perspective(1000px) rotateY(-3deg) rotateX(1deg);
}
.hero-brand-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg, transparent 25%, rgba(255,255,255,.07), transparent 55%);
  transform: translateX(-120%);
  animation: shine 6s ease-in-out infinite 1.5s;
}
.hero-brand-card img {
  width: 100%;
  height: 100%;
  max-height: 500px;
  object-fit: contain;
  object-position: center;
}
.live-chip {
  position: absolute;
  left: 18px; bottom: 18px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 11px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.13);
  background: rgba(5,5,5,.74);
  backdrop-filter: blur(12px);
  color: #d9d9d9;
  font-size: .72rem;
}
.live-chip span {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 18px var(--success);
  animation: live 1.5s infinite;
}
.scroll-hint {
  position: absolute;
  bottom: 24px; left: 50%;
  width: 28px; height: 45px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 99px;
  transform: translateX(-50%);
}
.scroll-hint span {
  position: absolute;
  top: 9px; left: 50%;
  width: 4px; height: 8px;
  border-radius: 99px;
  background: var(--gold);
  transform: translateX(-50%);
  animation: scroll 1.8s ease infinite;
}

/* SECTIONS */
.section { padding: 120px 0; }
.section-dark {
  background:
    linear-gradient(180deg, rgba(255,255,255,.015), transparent 24%),
    var(--black-2);
  border-top: 1px solid rgba(255,255,255,.055);
  border-bottom: 1px solid rgba(255,255,255,.055);
}
.two-columns {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 90px;
  align-items: start;
}
.story { color: #c9c9ca; font-size: 1.04rem; }
.story p:first-child { margin-top: 0; }
.metric-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 12px;
  margin-top: 42px;
}
.metric-grid article {
  min-height: 126px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.025);
}
.metric-grid strong {
  display: block;
  color: var(--gold);
  font-family: var(--display);
  font-size: 1.35rem;
}
.metric-grid span { color: var(--muted); font-size: .82rem; }

/* ECOSYSTEM */
.ecosystem-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 43%, rgba(255,196,0,.085), transparent 34%),
    var(--black);
}
.ecosystem-layout {
  width: min(100%, 1040px);
  aspect-ratio: 1.31;
  position: relative;
  margin: 70px auto 0;
}
.orbit {
  position: absolute;
  left: 50%; top: 50%;
  border: 1px solid rgba(255,196,0,.14);
  border-radius: 50%;
  transform: translate(-50%,-50%);
}
.orbit-one { width: 32%; height: 42%; }
.orbit-two { width: 62%; height: 70%; border-color: rgba(255,255,255,.08); }
.orbit-three { width: 92%; height: 94%; border-color: rgba(255,196,0,.09); }
.connections { position: absolute; inset: 0; width: 100%; height: 100%; }

.ecosystem-core {
  position: absolute;
  left: 50%; top: 50%;
  z-index: 3;
  width: 210px; height: 210px;
  padding: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 50%;
  transform: translate(-50%,-50%);
  border: 1px solid rgba(255,196,0,.45);
  background:
    radial-gradient(circle at 36% 27%, rgba(255,196,0,.18), transparent 23%),
    linear-gradient(145deg, #1b1b1d, #050505);
  box-shadow: 0 0 0 13px rgba(255,196,0,.025), 0 0 70px rgba(255,196,0,.15), var(--shadow);
  text-align: center;
  transition: transform .25s ease, box-shadow .25s ease;
}
.ecosystem-core:hover {
  transform: translate(-50%,-50%) scale(1.04);
  box-shadow: 0 0 0 16px rgba(255,196,0,.04), 0 0 100px rgba(255,196,0,.24), var(--shadow);
}
.ecosystem-core img {
  width: 82px; height: 70px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 6px;
}
.ecosystem-core strong { font-family: var(--display); letter-spacing: .06em; }
.ecosystem-core small { color: var(--gold); font-size: .68rem; margin-top: 4px; }
.core-pulse {
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  border: 1px solid rgba(255,196,0,.24);
  animation: corePulse 2.5s ease-out infinite;
}

.eco-node {
  position: absolute;
  z-index: 4;
  width: 178px;
  min-height: 88px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 17px;
  color: var(--white);
  background: rgba(15,15,17,.84);
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 34px rgba(0,0,0,.25);
  text-align: left;
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.eco-node:hover, .eco-node.active {
  z-index: 5;
  transform: translateY(-4px);
  border-color: rgba(255,196,0,.56);
  background: rgba(35,30,12,.92);
}
.eco-node strong, .eco-node small { display: block; }
.eco-node strong { margin-top: 6px; font-family: var(--display); font-size: .83rem; }
.eco-node small { color: var(--muted); font-size: .67rem; }
.node-icon {
  min-width: 30px;
  height: 30px;
  padding: 0 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  color: #000;
  background: var(--gold);
  font-size: .72rem;
  font-weight: 900;
}
.node-1 { left: 50%; top: 0; transform: translateX(-50%); }
.node-2 { left: 72%; top: 8%; }
.node-3 { right: 0; top: 29%; }
.node-4 { right: 0; bottom: 22%; }
.node-5 { right: 18%; bottom: 0; }
.node-6 { left: 50%; bottom: -2%; transform: translateX(-50%); }
.node-7 { left: 18%; bottom: 0; }
.node-8 { left: 0; bottom: 22%; }
.node-9 { left: 0; top: 29%; }
.node-10 { left: 12%; top: 8%; }

.service-detail {
  max-width: 800px;
  min-height: 160px;
  margin: 42px auto 0;
  padding: 28px 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255,255,255,.045), rgba(255,255,255,.015));
  text-align: center;
}
.detail-kicker {
  color: var(--gold);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.service-detail h3 { margin-top: 9px; font-size: 1.45rem; }
.service-detail p { max-width: 650px; margin: 12px auto; color: var(--muted); }
.service-detail a { color: var(--gold); font-weight: 800; }

/* SERVICES */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 58px;
}
.service-card {
  min-height: 390px;
  padding: 30px;
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 100% 0, rgba(255,196,0,.07), transparent 27%),
    rgba(255,255,255,.025);
  overflow: hidden;
  transition: transform .25s ease, border-color .25s ease;
}
.service-card:hover { transform: translateY(-7px); border-color: rgba(255,196,0,.32); }
.card-number {
  color: rgba(255,196,0,.64);
  font-family: var(--display);
  font-weight: 800;
  font-size: .78rem;
}
.service-card h3 { margin-top: 42px; font-size: 1.35rem; }
.service-card p, .service-card li { color: var(--muted); }
.service-card ul { padding-left: 18px; margin-top: 24px; }
.service-card li { margin: 8px 0; font-size: .89rem; }

/* DATA */
.data-section {
  background:
    radial-gradient(circle at 75% 42%, rgba(255,196,0,.08), transparent 28%),
    linear-gradient(135deg, #090909, #111113 62%, #080808);
}
.feature-layout {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 70px;
  align-items: center;
}
.feature-list { margin-top: 35px; }
.feature-list div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}
.feature-list span {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border-radius: 10px;
  color: #000;
  background: var(--gold);
  font-size: .74rem;
  font-weight: 900;
}
.feature-list p { margin: 0; color: var(--muted); }
.feature-list strong { color: var(--white); }
.text-link { display: inline-block; margin-top: 27px; color: var(--gold); font-weight: 800; }

.dashboard-mockup {
  overflow: hidden;
  border: 1px solid rgba(255,196,0,.18);
  border-radius: 26px;
  background: #09090a;
  box-shadow: 0 35px 90px rgba(0,0,0,.46);
  transform: perspective(1200px) rotateY(-4deg) rotateX(2deg);
}
.mockup-topbar {
  height: 48px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  gap: 7px;
  border-bottom: 1px solid var(--line);
  background: #141416;
}
.mockup-topbar > span {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #555;
}
.mockup-topbar > span:first-child { background: var(--gold); }
.mockup-topbar p { margin-left: 10px; color: #8f8f92; font-size: .62rem; letter-spacing: .11em; }
.dashboard-body { min-height: 470px; display: grid; grid-template-columns: 58px 1fr; }
.dashboard-body aside {
  padding-top: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  border-right: 1px solid var(--line);
  background: #0c0c0d;
}
.dash-logo {
  width: 30px; height: 30px;
  display: grid; place-items: center;
  color: #000; background: var(--gold);
  border-radius: 9px;
  font-family: var(--display); font-weight: 900;
}
.dashboard-body aside span {
  width: 19px; height: 4px;
  border-radius: 99px;
  background: #3a3a3d;
}
.dashboard-body aside span.active { background: var(--gold); box-shadow: 0 0 15px rgba(255,196,0,.4); }
.dash-main { padding: 26px; }
.dash-head { display: flex; align-items: center; justify-content: space-between; }
.dash-head small, .chart-title small { display: block; color: #77777b; font-size: .58rem; letter-spacing: .12em; }
.dash-head strong { font-family: var(--display); font-size: 1.05rem; }
.status-online { color: var(--success); font-size: .68rem; }
.kpi-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-top: 24px; }
.kpi-row div, .chart-card, .mini-panels div {
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 13px;
  background: #101012;
}
.kpi-row div { padding: 14px; }
.kpi-row small, .kpi-row i { display: block; color: #7e7e81; font-size: .58rem; font-style: normal; }
.kpi-row strong { display: block; margin: 6px 0; font-family: var(--display); font-size: 1.2rem; }
.chart-card { margin-top: 12px; padding: 17px; }
.chart-title { display: flex; justify-content: space-between; font-size: .75rem; }
.bars {
  height: 145px;
  margin-top: 20px;
  display: flex;
  align-items: flex-end;
  gap: 9px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.bars i {
  flex: 1;
  display: block;
  min-height: 12%;
  border-radius: 5px 5px 0 0;
  background: linear-gradient(to top, #7e5a00, var(--gold));
  box-shadow: 0 0 20px rgba(255,196,0,.1);
}
.mini-panels { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-top: 12px; }
.mini-panels div { min-height: 80px; padding: 12px; display: grid; place-items: center; }
.mini-panels small { color: #77777b; font-size: .58rem; }
.radar {
  width: 37px; height: 37px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  background: conic-gradient(from 45deg, rgba(255,196,0,.5), transparent 24%);
}
.ring {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border: 4px solid var(--gold);
  border-left-color: #333;
  border-radius: 50%;
  font-size: .55rem;
}
.pulse-line {
  width: 48px; height: 20px;
  background: linear-gradient(transparent 47%, var(--gold) 48%, var(--gold) 52%, transparent 53%);
  clip-path: polygon(0 45%, 19% 45%, 29% 0, 42% 100%, 56% 33%, 68% 56%, 100% 56%, 100% 64%, 65% 64%, 57% 47%, 42% 100%, 28% 21%, 21% 55%, 0 55%);
}

/* OPERATORS */
.journey {
  display: grid;
  grid-template-columns: repeat(6,1fr);
  gap: 12px;
  margin-top: 60px;
}
.journey article {
  min-height: 230px;
  padding: 23px 19px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255,255,255,.025);
}
.journey article > span {
  width: 34px; height: 34px;
  display: grid; place-items: center;
  color: #000; background: var(--gold);
  border-radius: 50%;
  font-weight: 900;
}
.journey h3 { margin-top: 38px; font-size: 1rem; }
.journey p { color: var(--muted); font-size: .85rem; }
.cta-panel {
  margin-top: 25px;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border: 1px solid rgba(255,196,0,.22);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255,196,0,.08), rgba(255,255,255,.02));
}
.cta-panel h3 { max-width: 760px; font-size: 1.25rem; }

/* COMPANIES */
.company-layout {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 72px;
  align-items: start;
}
.company-products { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
.company-card {
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #101012;
}
.company-card.featured {
  grid-row: span 3;
  position: relative;
  background:
    radial-gradient(circle at 85% 5%, rgba(255,196,0,.15), transparent 28%),
    linear-gradient(145deg, #15130b, #0d0d0f);
  border-color: rgba(255,196,0,.28);
}
.company-card h3 { font-size: 1.25rem; }
.company-card p, .company-card li { color: var(--muted); }
.company-card ul { padding-left: 18px; margin: 27px 0; }
.company-card li { margin: 9px 0; font-size: .88rem; }
.badge {
  display: inline-block;
  margin-bottom: 27px;
  padding: 7px 10px;
  border: 1px solid rgba(255,196,0,.24);
  border-radius: 999px;
  color: var(--gold);
  font-size: .7rem;
  font-weight: 800;
}

/* MARKETPLACE */
.marketplace-section {
  background:
    radial-gradient(circle at 15% 20%, rgba(255,196,0,.055), transparent 25%),
    var(--black-2);
}
.market-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 15px;
  margin-top: 52px;
}
.market-card {
  min-height: 210px;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255,255,255,.02);
}
.market-card > span {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 12px;
  color: #000; background: var(--gold);
  font-size: .72rem; font-weight: 900;
}
.market-card h3 { margin-top: 28px; font-size: 1.05rem; }
.market-card p { color: var(--muted); font-size: .88rem; }
.market-note {
  margin-top: 20px;
  padding: 25px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border: 1px solid var(--line);
  border-radius: 20px;
}
.market-note p { margin: 0; max-width: 760px; color: var(--muted); }
.market-note a { color: var(--gold); font-weight: 800; white-space: nowrap; }

/* PARTNERS */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 14px;
  margin-top: 55px;
}
.partner-card {
  min-height: 245px;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(145deg, #121214, #0c0c0e);
}
.partner-card small { color: var(--gold); font-weight: 800; text-transform: uppercase; font-size: .66rem; letter-spacing: .08em; }
.partner-card h3 { margin-top: 35px; }
.partner-card p { color: var(--muted); font-size: .88rem; }
.legal-note {
  max-width: 900px;
  margin: 28px auto 0;
  color: #77777a;
  font-size: .76rem;
  text-align: center;
}

/* CTA */
.final-cta {
  padding: 80px 0;
  background:
    linear-gradient(120deg, rgba(255,196,0,.15), transparent 48%),
    #111113;
  border-top: 1px solid rgba(255,196,0,.2);
  border-bottom: 1px solid rgba(255,196,0,.16);
}
.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 45px;
}
.final-cta h2 { font-size: clamp(2rem, 4vw, 3.6rem); }

/* CONTACT */
.contact-layout {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 75px;
}
.contact-copy > p:not(.eyebrow) { color: var(--muted); }
address {
  display: grid;
  gap: 12px;
  margin-top: 36px;
  font-style: normal;
}
address a { color: #d1d1d2; }
address a:hover { color: var(--gold); }

.contact-form {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.025);
}
.field-row { display: grid; grid-template-columns: repeat(2,1fr); gap: 15px; }
.contact-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 15px;
  color: #c7c7c9;
  font-size: .82rem;
  font-weight: 700;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  color: var(--white);
  background: #09090a;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 13px;
  outline: none;
  padding: 14px 15px;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(255,196,0,.09);
}
.contact-form textarea { resize: vertical; }
.check-field {
  display: flex !important;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px !important;
}
.check-field input { width: 17px; height: 17px; padding: 0; accent-color: var(--gold); }
.form-status { min-height: 24px; margin: 12px 0 0; color: var(--success); font-size: .82rem; }

/* FOOTER */
.footer { padding: 65px 0 22px; background: #050505; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3,1fr);
  gap: 45px;
}
.footer-grid > div { display: flex; flex-direction: column; align-items: flex-start; gap: 9px; }
.footer-grid p, .footer-grid a { color: #88888b; font-size: .82rem; }
.footer-grid a:hover { color: var(--gold); }
.footer-grid h3 { margin-bottom: 10px; font-size: .86rem; }
.footer-bottom {
  margin-top: 45px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  color: #6f6f72;
  font-size: .74rem;
}

/* FLOAT */
.whatsapp-float {
  position: fixed;
  z-index: 950;
  right: 22px; bottom: 22px;
  width: 55px; height: 55px;
  display: grid; place-items: center;
  color: #080808;
  background: var(--gold);
  border: 3px solid #080808;
  border-radius: 50%;
  box-shadow: 0 14px 35px rgba(0,0,0,.35);
  font-weight: 900;
  font-size: .75rem;
  transition: transform .2s ease;
}
.whatsapp-float:hover { transform: translateY(-4px) scale(1.04); }

/* MODAL */
.modal {
  width: min(760px, calc(100% - 30px));
  max-height: min(92vh, 920px);
  padding: 0;
  color: var(--white);
  border: 1px solid rgba(255,196,0,.28);
  border-radius: 25px;
  background: #111113;
  box-shadow: 0 30px 100px rgba(0,0,0,.72);
  overflow: hidden;
}
.modal::backdrop {
  background: rgba(0,0,0,.82);
  backdrop-filter: blur(9px);
}
.modal-close {
  position: absolute;
  z-index: 4;
  right: 16px;
  top: 13px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(17,17,19,.88);
  cursor: pointer;
  font-size: 1.4rem;
}
.modal-body {
  max-height: min(92vh, 920px);
  padding: 42px 36px 34px;
  overflow-y: auto;
}
.modal-body h2 {
  margin-bottom: 16px;
  font-size: clamp(1.9rem, 5vw, 2.65rem);
}
.modal-body p,
.modal-body li {
  color: var(--muted);
}
.modal-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 25px;
}

.auth-intro {
  max-width: 620px;
  margin: 0 0 28px;
}
.auth-form {
  display: grid;
  gap: 17px;
}
.auth-form fieldset {
  margin: 0;
  padding: 22px;
  display: grid;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.018);
}
.auth-form legend {
  padding: 0 9px;
  color: var(--gold);
  font-family: var(--display);
  font-size: .83rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.auth-form label {
  display: grid;
  gap: 8px;
  color: #d4d4d5;
  font-size: .82rem;
  font-weight: 700;
}
.auth-form input,
.auth-form select {
  width: 100%;
  min-height: 50px;
  padding: 13px 14px;
  color: var(--white);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 13px;
  outline: none;
  background: #09090a;
}
.auth-form input:focus,
.auth-form select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(255,196,0,.09);
}
.auth-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 14px;
}
.password-wrap {
  position: relative;
}
.password-wrap input {
  padding-right: 78px;
}
.password-toggle {
  position: absolute;
  right: 9px;
  top: 50%;
  min-width: 56px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 9px;
  color: var(--gold);
  background: rgba(255,255,255,.035);
  transform: translateY(-50%);
  cursor: pointer;
  font-size: .72rem;
  font-weight: 800;
}
.auth-options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.compact-check {
  margin: 0 !important;
}
.link-button {
  padding: 0;
  color: var(--gold);
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: .8rem;
  font-weight: 800;
}
.security-check {
  padding: 17px;
  border: 1px solid rgba(255,196,0,.18);
  border-radius: 16px;
  background: rgba(255,196,0,.045);
}
.security-check small {
  display: block;
  margin: 8px 0 0 28px;
  color: #858588;
  font-size: .7rem;
}
.legal-check {
  margin: 0 !important;
  padding: 2px 0;
  color: #aaa !important;
  font-weight: 500 !important;
}
.auth-submit,
.auth-switch {
  width: 100%;
}
.auth-submit:disabled {
  cursor: wait;
  opacity: .65;
}
.auth-status {
  min-height: 22px;
  margin: 0;
  font-size: .79rem;
}
.auth-status[data-type="success"] { color: var(--success); }
.auth-status[data-type="error"] { color: var(--danger); }
.auth-status[data-type="warning"] { color: var(--gold); }
.auth-status[data-type="info"] { color: #a7a7aa; }
.auth-divider {
  position: relative;
  margin: 25px 0 18px;
  text-align: center;
}
.auth-divider::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: var(--line);
}
.auth-divider span {
  position: relative;
  padding: 0 12px;
  color: #858588;
  background: #111113;
  font-size: .75rem;
}
.contact-person {
  margin-top: 35px;
  padding-left: 16px;
  border-left: 3px solid var(--gold);
}
.contact-person strong,
.contact-person span {
  display: block;
}
.contact-person strong {
  font-family: var(--display);
  font-size: 1rem;
}
.contact-person span {
  margin-top: 3px;
  color: var(--gold);
  font-size: .78rem;
  font-weight: 700;
}

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ANIMATIONS */
@keyframes shine {
  0%, 70% { transform: translateX(-120%); }
  100% { transform: translateX(135%); }
}
@keyframes live {
  50% { transform: scale(.72); opacity: .55; }
}
@keyframes scroll {
  0% { transform: translate(-50%, 0); opacity: 0; }
  25% { opacity: 1; }
  100% { transform: translate(-50%, 18px); opacity: 0; }
}
@keyframes corePulse {
  0% { transform: scale(.94); opacity: .85; }
  100% { transform: scale(1.17); opacity: 0; }
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .nav-links { gap: 17px; }
  .hero-content { grid-template-columns: 1fr 420px; gap: 30px; }
  .cards-grid { grid-template-columns: repeat(2,1fr); }
  .journey { grid-template-columns: repeat(3,1fr); }
  .partners-grid { grid-template-columns: repeat(2,1fr); }
  .ecosystem-layout { transform: scale(.9); margin-top: 25px; margin-bottom: -30px; }
}

@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    inset: 82px 12px auto;
    padding: 22px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 6px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(9,9,10,.96);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .nav-links a, .nav-links button { width: 100%; padding: 12px; text-align: left; }

  .hero { min-height: auto; }
  .hero-content {
    padding-top: 130px;
    grid-template-columns: 1fr;
  }
  .hero-brand-card { max-width: 610px; transform: none; }
  .two-columns, .feature-layout, .company-layout, .contact-layout {
    grid-template-columns: 1fr;
    gap: 46px;
  }
  .ecosystem-layout {
    aspect-ratio: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    transform: none;
    margin-top: 45px;
  }
  .orbit, .connections { display: none; }
  .ecosystem-core {
    position: relative;
    left: auto; top: auto;
    grid-column: 1/-1;
    width: 210px; height: 210px;
    margin: 0 auto 22px;
    transform: none;
  }
  .ecosystem-core:hover { transform: scale(1.03); }
  .eco-node {
    position: static;
    width: 100%;
    min-height: 110px;
    transform: none !important;
  }
  .service-detail { margin-top: 18px; }
  .market-grid { grid-template-columns: repeat(2,1fr); }
  .final-cta-inner { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 28px, 1180px); }
  .section { padding: 82px 0; }
  .nav { min-height: 72px; }
  .nav-links { inset: 72px 8px auto; }

  h1 { font-size: clamp(2.55rem, 14vw, 4.2rem); }
  h2 { font-size: clamp(2rem, 10vw, 3rem); }
  .hero-content { padding-top: 105px; padding-bottom: 80px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .hero-brand-card {
    min-height: 390px;
    padding: 16px;
    border-radius: 22px;
  }
  .live-chip { display: none; }

  .metric-grid, .cards-grid, .journey, .company-products, .market-grid,
  .partners-grid, .footer-grid, .field-row {
    grid-template-columns: 1fr;
  }
  .service-card { min-height: auto; }
  .journey article { min-height: 185px; }
  .cta-panel, .market-note { align-items: flex-start; flex-direction: column; }
  .company-card.featured { grid-row: auto; }
  .kpi-row { grid-template-columns: 1fr; }
  .mini-panels { grid-template-columns: 1fr 1fr 1fr; }
  .dashboard-body { grid-template-columns: 44px 1fr; }
  .dash-main { padding: 14px; }
  .dashboard-body { min-height: 430px; }
  .ecosystem-layout { grid-template-columns: 1fr; }
  .ecosystem-core { grid-column: 1; }
  .footer-bottom { flex-direction: column; }

  .auth-grid { grid-template-columns: 1fr; }
  .modal-body { padding: 38px 20px 25px; }
  .auth-form fieldset { padding: 17px; }
  .auth-options { align-items: flex-start; flex-direction: column; }
}

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


/* Registration professional choices */
.choice-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:10px}
.choice-card{min-height:105px;padding:15px;display:flex!important;grid-template-columns:auto 1fr!important;
align-items:flex-start;gap:10px!important;border:1px solid var(--line);border-radius:14px;
background:rgba(255,255,255,.02);cursor:pointer}
.choice-card:has(input:checked){border-color:rgba(255,196,0,.58);background:rgba(255,196,0,.07)}
.choice-card input{width:17px;height:17px;min-height:0;margin-top:2px;padding:0;accent-color:var(--gold)}
.choice-card strong,.choice-card small{display:block}.choice-card strong{color:var(--white);font-size:.78rem}
.choice-card small{margin-top:5px;color:var(--muted);font-size:.67rem;font-weight:500}
.auth-form textarea{width:100%;padding:13px 14px;color:var(--white);border:1px solid rgba(255,255,255,.14);
border-radius:13px;outline:none;background:#09090a;resize:vertical}
.auth-form textarea:focus{border-color:var(--gold);box-shadow:0 0 0 3px rgba(255,196,0,.09)}
@media(max-width:620px){.choice-grid{grid-template-columns:1fr}}
