:root {
  --navy: #0D1F2D;
  --navy2: #142535;
  --navy3: #1B3A4B;
  --blue: #1E6FA0;
  --blueL: #2E8EC4;
  --gold: #C9A227;
  --goldL: #E8C14A;
  --goldD: #9A7A1A;
  --cream: #F8F4ED;
  --white: #FFFFFF;
  --gray: #8A9BAA;
  --grayL: #C8D4DC;
  --dark: #060E14;
  --glass: rgba(255, 255, 255, 0.05);
  --glassBorder: rgba(255, 255, 255, 0.12);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;
  cursor: default;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar {
  width: 4px;
}

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

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

/* ── 3D SCENE LAYER ── */
.scene-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.grid-floor {
  position: absolute;
  bottom: -20%;
  left: -20%;
  width: 140%;
  height: 80%;
  background:
    linear-gradient(rgba(30, 111, 160, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 111, 160, 0.08) 1px, transparent 1px);
  background-size: 60px 60px;
  transform: perspective(800px) rotateX(60deg);
  transform-origin: bottom center;
  opacity: 0.6;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
  animation: orbFloat 12s ease-in-out infinite;
}

.orb1 {
  width: 500px;
  height: 500px;
  background: var(--blue);
  top: -100px;
  right: -100px;
  animation-delay: 0s;
}

.orb2 {
  width: 400px;
  height: 400px;
  background: var(--gold);
  bottom: -50px;
  left: -100px;
  animation-delay: -4s;
}

.orb3 {
  width: 300px;
  height: 300px;
  background: var(--blueL);
  top: 40%;
  left: 30%;
  animation-delay: -8s;
}

@keyframes orbFloat {

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

  50% {
    transform: translateY(-30px) scale(1.05);
  }
}

/* ── NAVIGATION ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 5%;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(6, 14, 20, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glassBorder);
  transition: all 0.3s;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 900;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.5px;
}

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

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  color: var(--grayL);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  background: var(--gold);
  color: var(--dark) !important;
  padding: 8px 20px;
  border-radius: 4px;
  font-weight: 600 !important;
  font-size: 13px !important;
  transition: background 0.2s, transform 0.2s !important;
}

.nav-cta:hover {
  background: var(--goldL) !important;
  transform: translateY(-1px);
}

.nav-cta::after {
  display: none !important;
}

/* ── SECTIONS ── */
section {
  position: relative;
  z-index: 1;
}

.page {
  display: block;
}

/* ── HERO ── */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 5% 80px;
  position: relative;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 162, 39, 0.12);
  border: 1px solid rgba(201, 162, 39, 0.3);
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 24px;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {

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

  50% {
    opacity: 0.5;
    transform: scale(1.3)
  }
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 24px;
}

.hero-title .accent {
  color: var(--gold);
}

.hero-title .line2 {
  display: block;
  color: var(--blueL);
  font-style: italic;
}

.hero-sub {
  font-size: 17px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--dark);
  padding: 14px 32px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  border: none;
  letter-spacing: 0.5px;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
}

.btn-primary:hover {
  background: var(--goldL);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  padding: 14px 32px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  border: 1px solid var(--glassBorder);
  letter-spacing: 0.5px;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
}

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

/* 3D CARD STACK */
.hero-card-stack {
  position: relative;
  height: 520px;
  perspective: 1500px;
  width: 100%;
}

.h-card {
  position: absolute;
  border-radius: 24px;
  padding: 32px;
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.3),
    inset 0 1px 1px rgba(255, 255, 255, 0.1);
}

.h-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent 40%, transparent 60%, rgba(255, 255, 255, 0.05));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.h-card:hover {
  transform: translateY(-15px) scale(1.02) !important;
  border-color: rgba(232, 193, 74, 0.4);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
  z-index: 10;
}

.hc1 {
  background: linear-gradient(135deg, rgba(20, 37, 53, 0.85), rgba(13, 31, 45, 0.95));
  width: 340px;
  top: 0;
  left: 10%;
  transform: rotate(-3deg);
}

.hc2 {
  background: linear-gradient(135deg, rgba(28, 35, 45, 0.9), rgba(10, 15, 25, 0.98));
  width: 290px;
  top: 160px;
  right: 5%;
  transform: rotate(2deg);
  z-index: 2;
}

.hc3 {
  background: linear-gradient(135deg, rgba(14, 25, 36, 0.85), rgba(6, 14, 20, 0.95));
  width: 310px;
  bottom: 10px;
  left: 15%;
  transform: rotate(-2deg);
}

.card-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #E8C14A;
  margin-bottom: 14px;
  display: block;
}

.card-value {
  font-family: 'Playfair Display', serif;
  font-size: 46px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}

.card-desc {
  font-size: 13px;
  color: rgba(200, 212, 220, 0.5);
  margin-top: 10px;
  font-weight: 400;
  letter-spacing: 0.3px;
}

.card-icon {
  width: 48px;
  height: 48px;
  background: rgba(232, 193, 74, 0.1);
  border: 1px solid rgba(232, 193, 74, 0.25);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--glassBorder);
}

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 900;
  color: var(--gold);
}

.stat-label {
  font-size: 12px;
  color: var(--gray);
  margin-top: 2px;
}

/* ── SECTION SHARED ── */
.section {
  padding: 100px 5%;
  max-width: 1200px;
  margin: 0 auto;
}

.section-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}

.section-sub {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.7;
  max-width: 560px;
}

/* ── DIVIDER ── */
.full-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--glassBorder) 20%, var(--glassBorder) 80%, transparent);
  margin: 0 5%;
}

/* ── SERVICES ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  /* background: var(--glassBorder); */
  /* border: 1px solid var(--glassBorder); */
  border-radius: 16px;
  overflow: hidden;
  margin-top: 60px;
}

.service-card {
  background: var(--navy2);
  padding: 36px 32px;
  transition: all 0.3s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s;
}

.service-card:hover {
  background: var(--navy3);
  transform: translateY(-4px);
}

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

.service-num {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  color: var(--gold);
  opacity: 0.6;
  margin-bottom: 16px;
}

.service-icon {
  width: 48px;
  height: 48px;
  background: rgba(201, 162, 39, 0.1);
  border: 1px solid rgba(201, 162, 39, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}

.service-name {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--white);
}

.service-desc {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.7;
}

.service-arrow {
  display: inline-block;
  margin-top: 16px;
  color: var(--gold);
  font-size: 18px;
  transition: transform 0.2s;
}

.service-card:hover .service-arrow {
  transform: translateX(6px);
}

/* ── WHY AIT ── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 60px;
}

.why-visual {
  position: relative;
  height: 480px;
  perspective: 800px;
}

.why-cube {
  position: absolute;
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, var(--navy3), var(--navy2));
  border: 1px solid var(--glassBorder);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(20px);
  animation: float3d 6s ease-in-out infinite;
}

.why-cube:nth-child(1) {
  top: 0;
  left: 0;
  animation-delay: 0s;
  box-shadow: 20px 20px 40px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transform: rotateY(-10deg) rotateX(5deg);
}

.why-cube:nth-child(2) {
  top: 60px;
  right: 0;
  animation-delay: -2s;
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.15), var(--navy2));
  transform: rotateY(10deg) rotateX(-3deg);
}

.why-cube:nth-child(3) {
  bottom: 60px;
  left: 40px;
  animation-delay: -4s;
  background: linear-gradient(135deg, rgba(30, 111, 160, 0.2), var(--navy2));
  transform: rotateY(-5deg) rotateX(8deg);
}

.why-cube:nth-child(4) {
  bottom: 0;
  right: 40px;
  animation-delay: -1s;
  transform: rotateY(8deg) rotateX(-5deg);
}

@keyframes float3d {

  0%,
  100% {
    transform: rotateY(-10deg) rotateX(5deg) translateY(0)
  }

  50% {
    transform: rotateY(-10deg) rotateX(5deg) translateY(-12px)
  }
}

.cube-num {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 900;
  color: var(--gold);
}

.cube-label {
  font-size: 12px;
  color: var(--gray);
  text-align: center;
  padding: 0 12px;
}

.why-points {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.why-point {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  background: var(--glass);
  border: 1px solid var(--glassBorder);
  border-radius: 12px;
  transition: border-color 0.3s;
}

.why-point:hover {
  border-color: rgba(201, 162, 39, 0.4);
}

.wp-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: rgba(201, 162, 39, 0.1);
  border: 1px solid rgba(201, 162, 39, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.wp-title {
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 6px;
}

.wp-desc {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.6;
}

/* ── TESTIMONIALS / PARTNERS ── */
.partners-row {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-top: 48px;
  padding: 32px;
  background: var(--glass);
  border: 1px solid var(--glassBorder);
  border-radius: 12px;
}

.partner-logo {
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  color: var(--gray);
  font-weight: 700;
  letter-spacing: 1px;
  opacity: 0.6;
  transition: opacity 0.2s;
}

.partner-logo:hover {
  opacity: 1;
  color: var(--grayL);
}

/* ── TEAM ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.team-card {
  background: var(--navy2);
  border: 1px solid var(--glassBorder);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.team-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--blueL));
  transform: scaleX(0);
  transition: transform 0.3s;
}

.team-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 162, 39, 0.3);
}

.team-card:hover::after {
  transform: scaleX(1);
}

.team-avatar {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--blue), var(--navy3));
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 900;
  color: var(--gold);
  border: 2px solid rgba(201, 162, 39, 0.3);
}

.team-name {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 4px;
}

.team-role {
  font-size: 12px;
  color: var(--gold);
  margin-bottom: 10px;
}

.team-bio {
  font-size: 12px;
  color: var(--gray);
  line-height: 1.5;
}

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 60px;
}

.contact-form {
  background: var(--navy2);
  border: 1px solid var(--glassBorder);
  border-radius: 16px;
  padding: 40px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--grayL);
  margin-bottom: 8px;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glassBorder);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--gold);
}

.form-textarea {
  height: 120px;
  resize: vertical;
}

.form-select option {
  background: var(--navy);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
  justify-content: center;
}

.ci-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--glass);
  border: 1px solid var(--glassBorder);
  border-radius: 12px;
}

.ci-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: rgba(201, 162, 39, 0.1);
  border: 1px solid rgba(201, 162, 39, 0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.ci-label {
  font-size: 11px;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.ci-val {
  font-size: 14px;
  color: var(--grayL);
  margin-top: 3px;
}

/* ── INVESTORS PAGE ── */
.invest-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  padding: 140px 5% 80px;
  position: relative;
  overflow: hidden;
}

.invest-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.08) 0%, transparent 50%);
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 60px;
}

.metric-box {
  background: var(--navy2);
  border: 1px solid var(--glassBorder);
  border-radius: 12px;
  padding: 28px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}

.metric-box:hover {
  border-color: rgba(201, 162, 39, 0.4);
  transform: translateY(-4px);
}

.metric-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
}

.metric-big {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.metric-unit {
  font-size: 18px;
  color: var(--goldD);
}

.metric-lbl {
  font-size: 12px;
  color: var(--gray);
  margin-top: 8px;
  line-height: 1.4;
}

.timeline {
  position: relative;
  margin-top: 60px;
  padding-left: 40px;
}

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

.tl-item {
  position: relative;
  margin-bottom: 40px;
  padding: 24px 28px;
  background: var(--navy2);
  border: 1px solid var(--glassBorder);
  border-radius: 12px;
  transition: border-color 0.3s;
}

.tl-item:hover {
  border-color: rgba(201, 162, 39, 0.4);
}

.tl-item::before {
  content: '';
  position: absolute;
  left: -34px;
  top: 28px;
  width: 12px;
  height: 12px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(201, 162, 39, 0.5);
}

.tl-year {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  color: var(--gold);
  margin-bottom: 6px;
}

.tl-title {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 6px;
}

.tl-desc {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.6;
}

.funding-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 40px;
}

.funding-table th {
  background: var(--navy3);
  padding: 14px 20px;
  text-align: left;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--glassBorder);
}

.funding-table td {
  padding: 14px 20px;
  font-size: 13px;
  color: var(--grayL);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: background 0.2s;
}

.funding-table tr:hover td {
  background: rgba(255, 255, 255, 0.03);
}

.funding-table .total td {
  font-weight: 700;
  color: var(--white);
  background: rgba(201, 162, 39, 0.08);
}

/* ── PARTNERS PAGE ── */
.partner-tiers {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  margin-top: 60px;
}

.ptier-card {
  background: var(--navy2);
  border: 1px solid var(--glassBorder);
  border-radius: 16px;
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}

.ptier-card.featured {
  border-color: rgba(201, 162, 39, 0.5);
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.08), var(--navy2));
}

.ptier-card:hover {
  transform: translateY(-6px);
}

.ptier-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--gold);
  color: var(--dark);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
}

.ptier-icon {
  font-size: 36px;
  margin-bottom: 16px;
}

.ptier-name {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}

.ptier-sub {
  font-size: 13px;
  color: var(--gold);
  margin-bottom: 16px;
}

.ptier-desc {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 20px;
}

.ptier-list {
  list-style: none;
}

.ptier-list li {
  font-size: 13px;
  color: var(--grayL);
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  gap: 8px;
}

.ptier-list li::before {
  content: '→';
  color: var(--gold);
  font-size: 12px;
}

.why-partner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 48px;
}

.wp-box {
  background: var(--navy2);
  border: 1px solid var(--glassBorder);
  border-radius: 12px;
  padding: 28px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: border-color 0.3s;
}

.wp-box:hover {
  border-color: rgba(201, 162, 39, 0.4);
}

/* ── BLOG ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.blog-card {
  background: var(--navy2);
  border: 1px solid var(--glassBorder);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s;
  cursor: pointer;
}

.blog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 162, 39, 0.3);
}

.blog-img {
  height: 180px;
  background: linear-gradient(135deg, var(--navy3), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  position: relative;
  overflow: hidden;
}

.blog-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(13, 31, 45, 0.8));
}

.blog-content {
  padding: 24px;
}

.blog-tag {
  display: inline-block;
  background: rgba(201, 162, 39, 0.1);
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.blog-title {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 8px;
  line-height: 1.4;
}

.blog-excerpt {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.6;
}

.blog-meta {
  font-size: 11px;
  color: var(--gray);
  margin-top: 16px;
}

/* ── TRAINING ── */
.courses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 24px;
  margin-top: 60px;
}

.course-card {
  background: var(--navy2);
  border: 1px solid var(--glassBorder);
  border-radius: 16px;
  padding: 32px 28px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.course-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gold);
  transform: scaleY(0);
  transition: transform 0.3s;
}

.course-card:hover {
  transform: translateX(8px);
  border-color: rgba(201, 162, 39, 0.3);
}

.course-card:hover::before {
  transform: scaleY(1);
}

.course-header {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 16px;
}

.course-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: rgba(201, 162, 39, 0.1);
  border: 1px solid rgba(201, 162, 39, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.course-name {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
}

.course-dur {
  font-size: 11px;
  color: var(--gold);
  margin-top: 4px;
}

.course-desc {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.course-fee {
  font-family: 'Space Mono', monospace;
  font-size: 18px;
  color: var(--white);
  font-weight: 700;
}

.course-fee span {
  font-size: 12px;
  color: var(--gray);
  font-weight: 400;
}

/* ── FOOTER ── */
footer {
  background: var(--navy);
  border-top: 1px solid var(--glassBorder);
  padding: 60px 5% 32px;
  position: relative;
  z-index: 1;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--glassBorder);
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
}

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

.footer-desc {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.7;
  max-width: 280px;
}

.footer-head {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

/* .footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 13px;
  color: var(--gray);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--white);
} */

.footer-bottom {
  max-width: 1200px;
  margin: 24px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  font-size: 12px;
  color: var(--gray);
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-btn {
  width: 36px;
  height: 36px;
  background: var(--glass);
  border: 1px solid var(--glassBorder);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  color: var(--gray);
}

.social-btn:hover {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}

/* ── MOBILE MENU ── */
.menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.menu-btn span {
  width: 22px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
  display: block;
}

/* ── ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── PORTFOLIO ── */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.portfolio-card {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--glassBorder);
  background: var(--navy2);
  transition: all 0.3s;
  cursor: pointer;
}

.portfolio-card:hover {
  transform: scale(1.02);
  border-color: rgba(201, 162, 39, 0.4);
}

.portfolio-thumb {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
  position: relative;
}

.portfolio-thumb.blue {
  background: linear-gradient(135deg, var(--navy3), var(--blue));
}

.portfolio-thumb.gold {
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.3), var(--navy3));
}

.portfolio-thumb.green {
  background: linear-gradient(135deg, rgba(30, 160, 90, 0.3), var(--navy3));
}

.portfolio-meta {
  padding: 20px 24px;
}

.portfolio-cat {
  font-size: 10px;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.portfolio-name {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 4px;
}

.portfolio-client {
  font-size: 12px;
  color: var(--gray);
}

/* ── ABOUT PAGE ── */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 60px;
}

.story-visual {
  position: relative;
  height: 400px;
}

.story-card {
  position: absolute;
  background: var(--navy2);
  border: 1px solid var(--glassBorder);
  border-radius: 12px;
  padding: 20px 24px;
}

.sc1 {
  top: 0;
  left: 0;
  width: 260px;
  transform: rotateY(-8deg) rotateX(5deg);
  box-shadow: 20px 20px 40px rgba(0, 0, 0, 0.4);
}

.sc2 {
  top: 80px;
  right: 0;
  width: 220px;
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.15), var(--navy2));
  transform: rotateY(5deg) rotateX(-3deg);
}

.sc3 {
  bottom: 0;
  left: 40px;
  width: 240px;
  background: linear-gradient(135deg, rgba(30, 111, 160, 0.2), var(--navy2));
  transform: rotateY(-3deg) rotateX(8deg);
}

.blog-content {
  padding: 24px;
}

.blog-tag {
  display: inline-block;
  background: rgba(201, 162, 39, 0.1);
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.blog-title {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 8px;
  line-height: 1.4;
}

.blog-excerpt {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.6;
}

.blog-meta {
  font-size: 11px;
  color: var(--gray);
  margin-top: 16px;
}

/* ── TRAINING ── */
.courses-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.course-card {
  background: var(--navy2);
  border: 1px solid var(--glassBorder);
  border-radius: 16px;
  padding: 32px 28px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.course-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gold);
  transform: scaleY(0);
  transition: transform 0.3s;
}

.course-card:hover {
  transform: translateX(8px);
  border-color: rgba(201, 162, 39, 0.3);
}

.course-card:hover::before {
  transform: scaleY(1);
}

.course-header {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 16px;
}

.course-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: rgba(201, 162, 39, 0.1);
  border: 1px solid rgba(201, 162, 39, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.course-name {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
}

.course-dur {
  font-size: 11px;
  color: var(--gold);
  margin-top: 4px;
}

.course-desc {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 16px;
}

.course-fee {
  font-family: 'Space Mono', monospace;
  font-size: 18px;
  color: var(--white);
  font-weight: 700;
}

.course-fee span {
  font-size: 12px;
  color: var(--gray);
  font-weight: 400;
}

/* ── FOOTER ── */
footer {
  background: var(--navy);
  border-top: 1px solid var(--glassBorder);
  padding: 60px 5% 32px;
  position: relative;
  z-index: 1;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--glassBorder);
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
}

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

.footer-desc {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.7;
  max-width: 280px;
}

.footer-head {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 13px;
  color: var(--gray);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  max-width: 1200px;
  margin: 24px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  font-size: 12px;
  color: var(--gray);
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-btn {
  width: 36px;
  height: 36px;
  background: var(--glass);
  border: 1px solid var(--glassBorder);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  color: var(--gray);
}

.social-btn:hover {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}

/* ── MOBILE MENU ── */
.menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
  z-index: 2000;
  /* Force to top */
  position: relative;
}

.menu-btn span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
  display: block;
}

.menu-btn.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.menu-btn.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── PORTFOLIO ── */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.portfolio-card {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--glassBorder);
  background: var(--navy2);
  transition: all 0.3s;
  cursor: pointer;
}

.portfolio-card:hover {
  transform: scale(1.02);
  border-color: rgba(201, 162, 39, 0.4);
}

.portfolio-thumb {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
  position: relative;
}

.portfolio-thumb.blue {
  background: linear-gradient(135deg, var(--navy3), var(--blue));
}

.portfolio-thumb.gold {
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.3), var(--navy3));
}

.portfolio-thumb.green {
  background: linear-gradient(135deg, rgba(30, 160, 90, 0.3), var(--navy3));
}

.portfolio-meta {
  padding: 20px 24px;
}

.portfolio-cat {
  font-size: 10px;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.portfolio-name {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 4px;
}

.portfolio-client {
  font-size: 12px;
  color: var(--gray);
}

/* ── ABOUT PAGE ── */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 60px;
}

.story-visual {
  position: relative;
  height: 400px;
}

.story-card {
  position: absolute;
  background: var(--navy2);
  border: 1px solid var(--glassBorder);
  border-radius: 12px;
  padding: 20px 24px;
}

.sc1 {
  top: 0;
  left: 0;
  width: 260px;
  transform: rotateY(-8deg) rotateX(5deg);
  box-shadow: 20px 20px 40px rgba(0, 0, 0, 0.4);
}

.sc2 {
  top: 80px;
  right: 0;
  width: 220px;
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.15), var(--navy2));
  transform: rotateY(5deg) rotateX(-3deg);
}

.sc3 {
  bottom: 0;
  left: 40px;
  width: 240px;
  background: linear-gradient(135deg, rgba(30, 111, 160, 0.2), var(--navy2));
  transform: rotateY(-3deg) rotateX(8deg);
}

.sc-label {
  font-size: 10px;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.sc-val {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 900;
  color: var(--white);
}

.sc-desc {
  font-size: 12px;
  color: var(--gray);
  margin-top: 4px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.value-card {
  background: var(--navy2);
  border: 1px solid var(--glassBorder);
  border-radius: 12px;
  padding: 28px 24px;
  text-align: center;
  transition: all 0.3s;
}

.value-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 162, 39, 0.3);
}

.value-icon {
  font-size: 32px;
  margin-bottom: 12px;
}

.value-name {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 8px;
}

.value-text {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.6;
}

/* ── GOLD LINE ACCENT ── */
.gold-line {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin-bottom: 20px;
  border-radius: 2px;
}

/* ── MOBILE OVERRIDES (ZERO OVERFLOW) ── */
@media (max-width: 768px) {
  * {
    box-sizing: border-box !important;
  }

  html,
  body {
    width: 100% !important;
    overflow-x: hidden !important;
    position: relative !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  #mainNav {
    padding: 0 20px !important;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(6, 14, 20, 0.98);
    backdrop-filter: blur(25px);
    padding: 30px;
    gap: 20px;
    border-bottom: 1px solid var(--glassBorder);
    z-index: 1001;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-btn {
    display: flex !important;
  }

  .hero-inner {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
    text-align: center !important;
  }

  .hero-sub {
    margin-left: auto !important;
    margin-right: auto !important;
    max-width: 100% !important;
    font-size: 15px !important;
  }

  .hero-actions {
    justify-content: center !important;
  }

  .hero-card-stack {
    height: auto !important;
    padding: 20px 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 15px !important;
  }

  .h-card {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    width: 100% !important;
    transform: none !important;
    box-shadow: none !important;
  }

  .hc2,
  .hc3 {
    display: block !important;
  }

  .services-grid {
    grid-template-columns: 1fr !important;
    border: none !important;
    border-radius: 0 !important;
  }

  .service-card {
    padding: 30px 20px !important;
    border-bottom: 1px solid var(--glassBorder) !important;
  }

  .metrics-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .about-story {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }

  .story-visual {
    height: auto !important;
    margin-top: 40px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
  }

  .story-card {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    width: 100% !important;
    transform: none !important;
  }

  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
    text-align: center !important;
  }

  .footer-desc {
    margin: 0 auto !important;
  }

  .footer-bottom {
    flex-direction: column !important;
    gap: 20px !important;
    text-align: center !important;
  }

  /* Tables and Scrollers */
  #tableWrapper {
    width: 100% !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    white-space: nowrap !important;
  }

  .funding-table {
    min-width: 600px !important;
  }

  .partner-tiers,
  .courses-grid,
  .blog-grid,
  .portfolio-grid,
  .contact-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .values-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  /* Section Padding Flush */
  .section,
  .page>div {
    padding-left: 20px !important;
    padding-right: 20px !important;
    width: 100% !important;
  }

  .full-divider {
    width: 100% !important;
    margin: 0 !important;
  }
}