/* ============================================================
   R-IT3 — GLOBAL STYLESHEET  (Cross-Browser Fixed)
   Colors: Navy-Black | Silver-Teal/Gold Glass Blue | Vibrant Teal/Mint Green
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@300;400;500;600;700&family=Exo+2:ital,wght@0,100..900;1,100..900&family=Share+Tech+Mono&display=swap');

/* ── CSS Variables ─────────────────────────────────────────── */
:root {
  --bg-void:        #050a14;
  --bg-deep:        #080d1c;
  --bg-card:        #0c1428;
  --bg-raised:      #101a30;
  --teal-vivid:     #54be73;
  --teal-mid:       #e6be4d;
  --teal-soft:      #4ecdc4;
  --mint-glow:      #00ffbf;
  --silver-teal:    #a8d8d4;
  --text-primary:   #e8f0f2;
  --text-secondary: #dedede;
  --text-muted:     #73a6b6;
  --border-glow:    rgba(0,229,204,0.35);
  --border-subtle:  rgba(126,202,195,0.15);
  --font-display:   'Rajdhani', sans-serif;
  --font-body:      'Exo 2', sans-serif;
  --font-mono:      'Share Tech Mono', monospace;
  --nav-h:          72px;
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

/* IMPORTANT: No body::before pseudo-element — it rendered as
   a solid black rectangle in Firefox and Edge */
body {
  background-color: #050a14;
  color: #e8f0f2;
  font-family: 'Exo 2', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a   { color: #3ca62c; text-decoration: none; transition: color .2s; }
a:hover { color: #e6be4d; }
ul  { list-style: none; }

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.15;
}

.section-eyebrow {
  font-family: 'Share Tech Mono', monospace;
  font-size: 1rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #000000;
  display: block;
  margin-bottom: 12px;font-weight: 600;
}

/* ── Layout ─────────────────────────────────────────────────── */
.container {
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
}

.section {
  padding-top: 60px;
  padding-bottom: 80px;
  position: relative;
}

/* ── Navigation ─────────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 110px;
  z-index: 200;
  /* solid fallback for browsers without backdrop-filter */
  background-color: rgba(5,10,20,0.97);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(126,202,195,0.15);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.nav-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}

.nav-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo-mark {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #54be73, #e6be4d);
  border-radius: 6px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  color: #050a14;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  letter-spacing: 0.05em;
}

.nav-logo-text {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.12em;
  color: #e8f0f2;
}
.nav-logo-text span { color: #54be73; }

.nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2px;
  list-style: none;
}

.nav-links a {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #dedede;
  padding: 8px 20px;
  border-radius: 4px;
  transition: color .2s, background-color .2s;
  display: block;
}

.nav-links a:hover,
.nav-links a.active {
  color: #ffffff;
  background-color: rgba(60, 166, 44,0.3);
}

.nav-cta {
  color: #ffffff !important;
  background-color: #3ca62c !important;
  padding: 9px 20px !important;
  border-radius: 4px !important;
}
.nav-cta:hover {
  background-color: #e6be4d !important;
  color: #0a0a0a !important;
}

/* Hamburger */
.nav-toggle {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #3ca62c;
  border-radius: 2px;
}

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 13px 28px;
  border-radius: 3px;
  cursor: pointer;
  border: none;
  transition: all .25s;
  text-decoration: none;
  line-height: 1;
}

.btn-primary { background-color: #3ca62c; color: #ffffff; font-weight: 700;}
.btn-primary:hover {
  background-color: #e6be4d;
  color: #020b00;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  color: #3ca62c;
  border: 2px solid #3ca62c;
}
.btn-outline:hover {
  background-color: #3ca62c;
  color: #ffffff;
  border-color: #3ca62c;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.btn-outline2 {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}
.btn-outline2:hover {
  background-color: #3ca62c;
  color: #0a0a0a;
  border-color: #0a0a0a;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

/* ── Divider ─────────────────────────────────────────────────── */
.divider-glow {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #ebebeb, transparent);
  opacity: 0.6;
}

/* ── Pillar Cards ───────────────────────────────────────────── */
.pillars-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

.pillar-card {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background-color: #ebebeb;
  border: 1px solid color: #ebebeb;;
  border-radius: 6px;
  padding: 36px 28px;
  text-align: center;
  transition: border-color .35s, -webkit-transform .35s, transform .35s, box-shadow .35s;
  cursor: default;
}

.pillar-card.featured {
  border-color: #D4AF37;
  box-shadow: 0 0 40px rgba(0,229,204,0.12);
}

.pillar-card:hover {
  border-color: #D4AF37;
  -webkit-transform: translateY(-6px);
          transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,229,204,0.15);
}

.pillar-icon {
  width: 60px;
  height: 60px;
  border: 2px solid #3ca62c;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
  transition: background-color .3s, box-shadow .3s;
}

.pillar-card:hover .pillar-icon {
  background-color: rgba(60,166,54,0.12);
  box-shadow: 0 0 20px rgba(0,229,204,0.25);
}

.pillar-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #3ca62c;
  margin-bottom: 10px;
}

.pillar-desc {
  font-size: 0.92rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #000000;
  line-height: 1.6;
	font-weight: 700;
}

.pillar-body {
  font-size: 1.01rem;
  color: #000000;
  margin-top: 16px;
  line-height: 1.6;
  text-align: left;
	font-weight: 500;
}

/* ── Footer ─────────────────────────────────────────────────── */
.site-footer {
  background-color: rgba(5,10,20,0.97);
  border-top: 1px solid rgba(224, 224, 224,0.15);
  padding: 60px 0 30px;
}

.footer-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
  margin-bottom: 48px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.footer-brand {
  -webkit-box-flex: 2;
      -ms-flex: 2 1 220px;
          flex: 2 1 220px;
}

.footer-col {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 130px;
          flex: 1 1 130px;
}

.footer-brand-text {
  font-size: 1rem;
  color: #dedede;
  line-height: 1.5;
  margin-top: 12px;
}

.footer-col h4 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #e8f0f2;
  margin-bottom: 16px;
}

.footer-col ul li { margin-bottom: 8px; }

.footer-col ul li a {
  font-size: 0.93rem;
  color: #ebebeb;
  transition: color .2s;
}
.footer-col ul li a:hover { color: #e6be4d; }

.footer-bottom {
  border-top: 1px solid rgba(224, 224, 224,0.15);
  padding-top: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 0.95rem;
  color: #d0d0d0;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 12px;
}

.footer-cert {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.85rem;
  letter-spacing: 0.10em;
  color: #e6be4d;
}

/* ── Animations ─────────────────────────────────────────────── */
@-webkit-keyframes fadeInUp {
  from { opacity: 0; -webkit-transform: translateY(28px); transform: translateY(28px); }
  to   { opacity: 1; -webkit-transform: translateY(0);    transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@-webkit-keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@-webkit-keyframes scanLine {
  0%   { top: -5%; }
  100% { top: 105%; }
}
@keyframes scanLine {
  0%   { top: -5%; }
  100% { top: 105%; }
}

/* ── Scrollbar ──────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background-color: #050a14; }
::-webkit-scrollbar-thumb { background-color: #e6be4d; border-radius: 3px; }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  .pillars-grid {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media (max-width: 680px) {
  .container { padding-left: 20px; padding-right: 20px; }
  .section   { padding-top: 60px; padding-bottom: 60px; }
  .nav-links { display: none; }
  .nav-toggle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .nav-links.open {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background-color: rgba(5,10,20,0.99);
    padding: 20px;
    border-bottom: 1px solid rgba(126,202,195,0.15);
    gap: 4px;
    z-index: 199;
  }
  .footer-grid {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .page-hero h1 { font-size: 2rem; }
}
