:root {
  --gold: #9b7a3a;
  --gold-light: #c4a05a;
  --gold-pale: #f7f0e3;
  --gold-border: rgba(155, 122, 58, 0.2);
  --bg: #ffffff;
  --bg-soft: #fafaf8;
  --bg-warm: #f5f2ed;
  --bg-card: #ffffff;
  --border: #e8e4dc;
  --border-soft: #f0ede8;
  --text: #1a1814;
  --text-mid: #4a4540;
  --text-muted: #8a857c;
  --text-dim: #b8b3aa;
  --navy: #12203a;
  --green: #1a9e72;
  --font-display: 'Cormorant Garamond', serif;
  --font-mono: 'DM Mono', monospace;
  --font-body: 'DM Sans', sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.07), 0 2px 6px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.08), 0 8px 24px rgba(0, 0, 0, 0.05);
  --shadow-gold: 0 8px 30px rgba(155, 122, 58, 0.18);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  cursor: none;
}

.cursor {
  position: fixed;
  width: 9px;
  height: 9px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: width .3s var(--ease), height .3s var(--ease);
}

.cursor-ring {
  position: fixed;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(155, 122, 58, 0.4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: width .4s var(--ease), height .4s var(--ease), opacity .3s;
}

body:has(a:hover) .cursor {
  width: 14px;
  height: 14px;
}

body:has(a:hover) .cursor-ring {
  width: 48px;
  height: 48px;
  opacity: .5;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  background: none;
}

::-webkit-scrollbar {
  width: 3px;
}

::-webkit-scrollbar-track {
  background: var(--bg-soft);
}

::-webkit-scrollbar-thumb {
  background: var(--gold-border);
  border-radius: 2px;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes pulse-ring {
  0% {
    transform: scale(1);
    opacity: .5;
  }

  100% {
    transform: scale(2.4);
    opacity: 0;
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes ticker {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes kenBurns {
  0% {
    transform: scale(1) translate(0, 0);
  }

  100% {
    transform: scale(1.07) translate(-1%, -.5%);
  }
}

@keyframes shimmerBar {

  0%,
  100% {
    opacity: .55;
  }

  50% {
    opacity: 1;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: scale(1);
}

.reveal-delay-1 {
  transition-delay: .1s;
}

.reveal-delay-2 {
  transition-delay: .2s;
}

.reveal-delay-3 {
  transition-delay: .3s;
}

.reveal-delay-4 {
  transition-delay: .4s;
}

/* TICKER */
.ticker {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 30px;
  background: var(--navy);
  z-index: 9001;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.ticker__track {
  display: flex;
  animation: ticker 28s linear infinite;
  white-space: nowrap;
}

.ticker__item {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
  padding: 0 36px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.ticker__item::before {
  content: '◆';
  color: var(--gold-light);
  font-size: 5px;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 30px;
  left: 0;
  right: 0;
  z-index: 9000;
  padding: 0 56px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0);
  backdrop-filter: blur(0px);
  border-bottom: 1px solid transparent;
  transition: background .5s, border-color .5s, box-shadow .5s;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--border-soft);
  box-shadow: var(--shadow-md);
}

/* White links while hero visible */
.navbar.hero-active .navbar__logo {
  color: #fff;
}

.navbar.hero-active .navbar__logo-mark {
  border-color: rgba(255, 255, 255, .5);
  color: #fff;
}

.navbar.hero-active .navbar__logo span {
  color: var(--gold-light);
}

.navbar.hero-active .navbar__nav a {
  color: rgba(255, 255, 255, .75);
}

.navbar.hero-active .navbar__nav a:hover {
  color: #fff;
}

.navbar.hero-active .navbar__toggle span {
  background: #fff;
}

.navbar__logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: .06em;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color .4s;
}

.navbar__logo-mark {
  width: 30px;
  height: 30px;
  border: 1.5px solid var(--gold);
  border-radius: 5px;
  display: grid;
  place-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--gold);
  font-weight: 500;
  transition: border-color .4s, color .4s;
}

.navbar__logo span {
  color: var(--gold);
  transition: color .4s;
}

.navbar__nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.navbar__nav a {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  ;
  transition: color .3s;
  position: relative;
}

.navbar__nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width .3s var(--ease);
}

.navbar__nav a:hover {
  color: var(--gold);
}

.navbar__nav a:hover::after {
  width: 100%;
}

.btn-cta {
  background: var(--gold);
  color: #fff;
  padding: 10px 22px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: 3px;
  transition: background .3s, box-shadow .3s;
  display: inline-block;
}

.btn-cta:hover {
  background: var(--gold-light);
  box-shadow: var(--shadow-gold);
  color: #fff;
}

.navbar.hero-active .btn-cta {
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .35);
  backdrop-filter: blur(8px);
}

.navbar.hero-active .btn-cta:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.navbar__toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  transition: .3s;
}

/* ════════════════════════
       HERO BANNER
    ════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

/* Photo — slow Ken Burns zoom */
.hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  z-index: 0;
  animation: kenBurns 20s ease-in-out infinite alternate;
}

/* Cinematic gradient overlay:
       strong dark at bottom (text anchor),
       lighter vignette top & sides */
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to top,
      rgba(6, 11, 22, .92) 0%,
      rgba(6, 11, 22, .60) 28%,
      rgba(6, 11, 22, .22) 55%,
      rgba(6, 11, 22, .08) 100%),
    linear-gradient(to right,
      rgba(6, 11, 22, .65) 0%,
      rgba(6, 11, 22, .28) 42%,
      rgba(6, 11, 22, .04) 100%);
}

/* Fine gold dot texture */
.hero__grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image: radial-gradient(circle, rgba(196, 160, 90, .055) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

/* Shimmering gold hairline at bottom */
.hero__bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  z-index: 4;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 20%, var(--gold-light) 50%, var(--gold) 80%, transparent 100%);
  animation: shimmerBar 3s ease-in-out infinite;
}

/* Scroll hint */
.hero__scroll {
  position: absolute;
  bottom: 36px;
  right: 60px;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .35);
}

.hero__scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(196, 160, 90, .8), transparent);
}

/* Content */
.hero__content {
  position: relative;
  z-index: 3;
  max-width: 1300px;
  margin: 0 auto;
  width: 100%;
  padding: 140px 56px 90px;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 60px;
  align-items: flex-end;
}

.hero__eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: fadeUp .7s var(--ease) .15s both;
}

.hero__eyebrow::before {
  content: '';
  width: 36px;
  height: 1px;
  background: var(--gold-light);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(52px, 6vw, 86px);
  font-weight: 300;
  line-height: 1.02;
  color: #fff;
  margin-bottom: 24px;
  animation: fadeUp .7s var(--ease) .28s both;
}

.hero__title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero__description {
  font-size: 17px;
  line-height: 1.85;
  color: rgba(255, 255, 255, .62);
  max-width: 520px;
  margin-bottom: 44px;
  animation: fadeUp .7s var(--ease) .4s both;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 20px;
  animation: fadeUp .7s var(--ease) .52s both;
}

.btn-primary {
  background: var(--gold);
  color: #fff;
  padding: 15px 36px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 3px;
  display: inline-block;
  transition: background .3s, transform .3s var(--ease), box-shadow .3s;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-outline-white {
  color: rgba(255, 255, 255, .68);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, .28);
  padding-bottom: 2px;
  transition: color .3s, border-color .3s;
}

.btn-outline-white:hover {
  color: #fff;
  border-color: var(--gold-light);
}

.btn-outline-white::after {
  content: '→';
  transition: transform .3s var(--ease);
}

.btn-outline-white:hover::after {
  transform: translateX(4px);
}

/* Glass status card */
.hero__card-wrap {
  position: relative;
}

.hero__card {
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 20px;
  padding: 32px 30px;
  position: relative;
  overflow: hidden;
  animation: fadeIn .9s var(--ease) .6s both;
  box-shadow: 0 24px 64px rgba(0, 0, 0, .25), inset 0 1px 0 rgba(255, 255, 255, .12);
}

.hero__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 12%;
  right: 12%;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
}

.hero__card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.hero__card-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .42);
}

.live-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(26, 158, 114, .15);
  border: 1px solid rgba(26, 158, 114, .35);
  border-radius: 20px;
  padding: 5px 12px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .08em;
  color: #4ecba0;
}

.live-dot {
  width: 6px;
  height: 6px;
  background: #4ecba0;
  border-radius: 50%;
  position: relative;
}

.live-dot::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1px solid #4ecba0;
  animation: pulse-ring 2s ease-out infinite;
}

.hero__big-stat-value {
  font-family: var(--font-display);
  font-size: 62px;
  font-weight: 300;
  color: #fff;
  line-height: 1;
}

.hero__big-stat-value span {
  color: var(--gold-light);
}

.hero__big-stat-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .1em;
  color: rgba(255, 255, 255, .38);
  margin-top: 8px;
}

.hero__mini-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.hero__mini-stat {
  text-align: center;
  padding: 0 10px;
  border-right: 1px solid rgba(255, 255, 255, .1);
}

.hero__mini-stat:last-child {
  border-right: none;
}

.hero__mini-stat-value {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 300;
  color: #fff;
}

.hero__mini-stat-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .35);
  margin-top: 4px;
}

/* Floating pill */
.hero__float-card {
  position: absolute;
  bottom: -16px;
  left: -32px;
  background: rgba(255, 255, 255, .1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 14px;
  padding: 13px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .2);
  animation: float 4s ease-in-out infinite;
}

.float-card__icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(184, 146, 74, .25);
  border: 1px solid rgba(184, 146, 74, .3);
  display: grid;
  place-items: center;
  font-size: 16px;
  flex-shrink: 0;
}

.float-card__text strong {
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  display: block;
}

.float-card__text span {
  font-family: var(--font-mono);
  font-size: 10px;
  color: #4ecba0;
  letter-spacing: .06em;
}

/* STATS BAR */
.stats {
  background: var(--navy);
  padding: 56px 0;
}

.stats__inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stats__item {
  text-align: center;
  padding: 16px 24px;
  border-right: 1px solid rgba(255, 255, 255, .08);
}

.stats__item:last-child {
  border-right: none;
}

.stats__value {
  font-family: var(--font-display);
  font-size: 46px;
  font-weight: 300;
  color: #fff;
  line-height: 1;
}

.stats__value span {
  color: var(--gold-light);
}

.stats__label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .35);
  margin-top: 10px;
}

/* SECTION COMMON */
.section {
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}

.section__inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 56px;
}

.section__eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section__eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 18px;
}

.section__title em {
  font-style: italic;
  color: var(--gold);
}

.section__subtitle {
  font-size: 16px;
  line-height: 1.85;
  color: var(--text-muted);
  max-width: 520px;
}

/* SERVICES */
.services {
  background: var(--bg-soft);
}

.services__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 64px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--border);
}

.services__layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
}

.services__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: box-shadow .4s var(--ease), transform .4s var(--ease), border-color .3s;
}

.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--gold-border);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card__num {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .14em;
  color: var(--text-dim);
  margin-bottom: 18px;
}

.service-card__icon {
  width: 44px;
  height: 44px;
  background: var(--gold-pale);
  border: 1px solid var(--gold-border);
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 20px;
  margin-bottom: 18px;
}

.service-card__title {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.2;
}

.service-card__list {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.service-card__list li {
  font-size: 13px;
  color: var(--text-muted);
  padding-left: 14px;
  position: relative;
  line-height: 1.5;
}

.service-card__list li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--gold);
}

.network-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
}

.network-info-card__title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-soft);
}

.benefit-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-soft);
}

.benefit-row:last-of-type {
  border-bottom: none;
}

.benefit-row__dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  margin-top: 7px;
  flex-shrink: 0;
}

.benefit-row__text {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
}

.hub-chip {
  margin-top: 20px;
  background: var(--bg-warm);
  border: 1px solid var(--gold-border);
  border-radius: 10px;
  padding: 16px 18px;
}

.hub-chip__label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.hub-chip__text {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ABOUT */
.about {
  background: var(--bg);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about__body {
  font-size: 17px;
  line-height: 1.9;
  color: var(--text-muted);
  margin-bottom: 36px;
}

.about__values {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
}

.value-tag {
  border: 1px solid var(--border);
  padding: 7px 16px;
  border-radius: 2px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: border-color .3s, color .3s, background .3s;
}

.value-tag:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-pale);
}

.about__cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.about__card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 30px 28px;
  position: relative;
  overflow: hidden;
  transition: box-shadow .3s, border-color .3s;
}

.about__card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--gold-border);
}

.about__card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--gold), transparent);
}

.about__card-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 12px;
}

.about__card-body {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-muted);
}

.about__card--accent {
  background: var(--navy);
  border-color: transparent;
}

.about__card--accent::before {
  background: var(--gold-light);
}

.about__card--accent .about__card-title {
  color: #fff;
}

.about__card--accent .about__card-body {
  color: rgba(255, 255, 255, .55);
}

/* NETWORK */
.network-section {
  background: var(--bg-warm);
  position: relative;
}

.network-section::before {
  content: '';
  position: absolute;
  left: -10%;
  top: 10%;
  width: 40%;
  height: 80%;
  /* background: radial-gradient(ellipse, var(--gold-pale) 0%, transparent 65%); */
  pointer-events: none;
}

.network__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.network__globe-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.network__globe-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 30%, var(--gold-pale) 0%, transparent 60%);
  opacity: .6;
  pointer-events: none;
}

.globe-viz {
  position: relative;
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}

.globe-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--gold-border);
}

.globe-ring:nth-child(1) {
  width: 260px;
  height: 260px;
}

.globe-ring:nth-child(2) {
  width: 180px;
  height: 180px;
  border-color: rgba(155, 122, 58, .15);
  animation: pulse-ring 3.5s ease-out infinite;
}

.globe-ring:nth-child(3) {
  width: 110px;
  height: 110px;
  border-color: rgba(155, 122, 58, .25);
  animation: pulse-ring 3.5s ease-out 1.2s infinite;
}

.globe-center {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #c4a05a, var(--gold));
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 22px;
  z-index: 1;
  box-shadow: 0 0 0 8px var(--gold-pale), 0 0 30px rgba(155, 122, 58, .3);
}

.globe-node {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  z-index: 2;
}

.globe-node::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  animation: pulse-ring 2.2s ease-out infinite;
}

.globe-node:nth-child(4) {
  top: 18%;
  left: 14%;
  background: var(--green);
  box-shadow: 0 0 10px var(--green);
}

.globe-node:nth-child(4)::after {
  border: 1px solid var(--green);
}

.globe-node:nth-child(5) {
  top: 32%;
  right: 16%;
  background: var(--green);
  box-shadow: 0 0 10px var(--green);
}

.globe-node:nth-child(5)::after {
  border: 1px solid var(--green);
}

.globe-node:nth-child(6) {
  bottom: 22%;
  left: 28%;
  background: var(--green);
  box-shadow: 0 0 10px var(--green);
}

.globe-node:nth-child(6)::after {
  border: 1px solid var(--green);
}

.globe-node:nth-child(7) {
  top: 52%;
  right: 22%;
  background: var(--gold-light);
  box-shadow: 0 0 10px var(--gold);
}

.globe-node:nth-child(7)::after {
  border: 1px solid var(--gold-light);
}

.network__hubs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.hub-pill {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 16px;
}

.hub-pill__value {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}

.hub-pill__label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 4px;
}

.network__features-list {
  margin: 32px 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.network__feature {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--border-soft);
  background: var(--bg-card);
  transition: background .3s;
}

.network__feature:last-child {
  border-bottom: none;
}

.network__feature:hover {
  background: var(--gold-pale);
}

.network__feature-check {
  width: 26px;
  height: 26px;
  border: 1.5px solid var(--gold-border);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 11px;
  color: var(--gold);
  flex-shrink: 0;
  background: var(--gold-pale);
}

.network__feature-text {
  font-size: 14px;
  color: var(--text-mid);
}

/* PARTNERS */
.partners {
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.partners__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 56px;
}

.partners__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}

.partner-cell {
  padding: 32px 20px;
  display: grid;
  place-items: center;
  border-right: 1px solid var(--border);
  transition: background .3s;
  background: var(--bg-card);
}

.partner-cell:last-child {
  border-right: none;
}

.partner-cell:hover {
  background: var(--gold-pale);
}

.partner-name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 300;
  color: var(--text-dim);
  text-align: center;
  transition: color .3s;
}

.partner-type {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 4px;
  transition: color .3s;
}

.partner-cell:hover .partner-name,
.partner-cell:hover .partner-type {
  color: var(--gold);
}

/* CTA */
.cta-section {
  background: var(--navy);
  padding: 110px 0;
}

.cta__box {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 0 32px;
}

.cta__eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(196, 160, 90, .7);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.cta__eyebrow::before,
.cta__eyebrow::after {
  content: '';
  width: 28px;
  height: 1px;
  background: rgba(196, 160, 90, .4);
}

.cta__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 300;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
}

.cta__title em {
  font-style: italic;
  color: var(--gold-light);
}

.cta__body {
  font-size: 16px;
  line-height: 1.85;
  color: rgba(255, 255, 255, .45);
  margin-bottom: 44px;
}

.cta__actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-white {
  background: #fff;
  color: var(--navy);
  padding: 14px 34px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-radius: 3px;
  display: inline-block;
  transition: background .3s;
}

.btn-white:hover {
  background: var(--gold-light);
  color: #fff;
}

.btn-ghost-light {
  border: 1px solid rgba(255, 255, 255, .15);
  color: rgba(255, 255, 255, .6);
  padding: 14px 34px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-radius: 3px;
  display: inline-block;
  transition: border-color .3s, color .3s;
}

.btn-ghost-light:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
}

/* MAP */
.map-section {
  position: relative;
}

.map-section iframe {
  width: 100%;
  height: 360px;
  display: block;
  border: none;
}

.map-label {
  position: absolute;
  top: 20px;
  /* left: 1650px; */
  background: rgba(255, 255, 255, .95);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 18px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  box-shadow: var(--shadow-sm);
  z-index: 10;
}

/* FOOTER */
.footer {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  padding: 80px 0 40px;
}

.footer__inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 56px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 36px;
}

.footer__brand {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 300;
  color: var(--text);
  margin-bottom: 14px;
}

.footer__brand span {
  color: var(--gold);
}

.footer__tagline {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 340px;
  margin-bottom: 28px;
}

.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.footer__contact-icon {
  width: 14px;
  color: var(--gold);
  font-size: 13px;
  flex-shrink: 0;
}

.footer__col-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 22px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__links a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color .3s, padding-left .3s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer__links a::before {
  content: '→';
  font-size: 11px;
  color: var(--gold);
  opacity: 0;
  transition: opacity .3s, transform .3s;
  transform: translateX(-6px);
}

.footer__links a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer__links a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.footer__social {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.footer__social a {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: 6px;
  display: grid;
  place-items: center;
  font-size: 14px;
  color: var(--text-muted);
  transition: border-color .3s, color .3s, background .3s;
}

.footer__social a:hover {
  border-color: var(--gold-border);
  color: var(--gold);
  background: var(--gold-pale);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__copy {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .08em;
  color: var(--text-dim);
}

.footer__reg {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .06em;
  color: var(--text-dim);
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 98px;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, .98);
  border-bottom: 1px solid var(--border);
  padding: 28px 48px;
  z-index: 8990;
  backdrop-filter: blur(16px);
  flex-direction: column;
  gap: 20px;
  box-shadow: var(--shadow-md);
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color .3s;
}

.mobile-menu a:hover {
  color: var(--gold);
}

/* RESPONSIVE */
@media(max-width:1024px) {
  .hero__content {
    grid-template-columns: 1fr;
    padding: 120px 32px 72px;
  }

  .hero__float-card {
    display: none;
  }

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

  .services__header {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .about__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .network__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .partners__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .partners__header {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .stats__inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats__item:nth-child(2) {
    border-right: none;
  }

  .stats__item:nth-child(3) {
    border-top: 1px solid rgba(255, 255, 255, .06);
  }

  .stats__item:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, .06);
    border-right: none;
  }
}

@media(max-width:768px) {
  .navbar {
    padding: 0 24px;
  }

  .navbar__nav {
    display: none;
  }

  .navbar__toggle {
    display: flex;
  }

  .section__inner {
    padding: 0 24px;
  }

  .stats__inner {
    padding: 0 24px;
  }

  .hero__content {
    padding: 100px 24px 60px;
  }

  .hero__scroll {
    display: none;
  }

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

  .partners__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer__inner {
    padding: 0 24px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .cta__box {
    padding: 0 20px;
  }

  .map-label {
    left: 16px;
    top: 12px;
  }
}



/* =========================================
   HERO SECTION
========================================= */

.hero-section,
#hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 160px;
  /* keeps space for transparent navbar */
  padding-bottom: 80px;
  overflow: hidden;
}

/* HERO CONTENT */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

/* BADGE */
.hero-badge {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

/* MAIN TITLE */
.hero-title,
#hero h1 {
  font-size: 56px;
  line-height: 1.15;
  font-weight: 600;
  margin-bottom: 25px;

  /* Prevent overflow globally */
  white-space: normal;
  overflow-wrap: break-word;
  word-break: break-word;
}

/* SUBTITLE */
.hero-description {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 600px;
}

/* =========================================
   MOBILE OPTIMIZATION (ONLY FIXES ISSUES)
========================================= */

@media (max-width: 480px) {

  .hero-section,
  #hero {
    min-height: auto;
    height: auto;
    padding-top: 110px;
    /* reduced top gap */
    padding-bottom: 60px;
  }

  .hero-content {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-title,
  #hero h1 {
    font-size: clamp(30px, 9vw, 40px);
    line-height: 1.2;
    letter-spacing: -0.5px;
  }

  .hero-description {
    font-size: 16px;
    line-height: 1.6;
  }

}

/* =========================================
   EXTRA SMALL DEVICES (320px SAFETY)
========================================= */

@media (max-width: 360px) {

  .hero-title,
  #hero h1 {
    font-size: clamp(28px, 9vw, 34px);
  }

}

/* =========================
   WRAPPER FIX
========================= */
.hero__card-wrap{
  width:100%;
  display:flex;
  justify-content:center;
  align-items:center;
  padding:20px;
  box-sizing:border-box;
}

/* =========================
   CARD
========================= */
.hero__card{
  width:100%;
  max-width:520px;
  padding:40px;
  border-radius:24px;
  box-sizing:border-box;
}

/* =========================
   HEADER
========================= */
.hero__card-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  flex-wrap:wrap; /* prevents overflow */
  margin-bottom:28px;
}

/* Prevent badge overflow */
.live-badge{
  white-space:nowrap;
}

/* =========================
   BIG STAT
========================= */
.hero__big-stat-value{
  font-size:72px;
  line-height:1;
  word-break:break-word;
}

.hero__big-stat-label{
  font-size:14px;
  line-height:1.5;
}

/* =========================
   MINI STATS DESKTOP
========================= */
.hero__mini-stats{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
  margin-top:30px;
}

/* =========================
   TABLET
========================= */
@media (max-width:992px){

  .hero__card{
    max-width:100%;
  }

  .hero__big-stat-value{
    font-size:60px;
  }
}

/* =========================
   SMALL TABLET
========================= */
@media (max-width:768px){

  .hero__card{
    padding:30px;
  }

  .hero__big-stat-value{
    font-size:52px;
  }

  .hero__mini-stats{
    grid-template-columns:repeat(2,1fr);
    gap:18px;
  }
}

/* =========================
   MOBILE
========================= */
@media (max-width:480px){

  .hero__card{
    padding:24px;
    border-radius:18px;
  }

  .hero__card-header{
    flex-direction:column;
    align-items:flex-start;
  }

  .live-badge{
    margin-top:8px;
  }

  .hero__big-stat-value{
    font-size:44px;
  }

  .hero__mini-stats{
    grid-template-columns:1fr;
    gap:16px;
    text-align:center;
  }
}


.navbar-logo {
  height: 40px;
  width: auto;
  object-fit: contain;
}

@media (max-width: 768px) {
  .navbar-logo {
    height: 40px;
  }
}



.footer__logo {
  height: 50px;
  width: auto;
  object-fit: contain;
  display: block;
}

@media (max-width: 768px) {
  .footer__logo {
    height: 50px;
  }
}