:root {
  --black: #000000;
  --carbon: #0B0F14;
  --cyan: #00E5FF;
  --silver: #C9D6DF;
  --white: #FFFFFF;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  background-color: var(--black);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

/* header bar */
.topbar {
  position: sticky;
  top: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(0,229,255,0.25);
  padding: 1rem 1.25rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
}
.brand {
  font-family: "Orbitron", sans-serif;
  color: var(--cyan);
  letter-spacing: .2em;
  font-size: .9rem;
  text-transform: uppercase;
  text-shadow: 0 0 12px rgba(0,229,255,0.6);
}
.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.nav a {
  color: var(--silver);
  text-decoration: none;
  font-size: .8rem;
}
.nav a:hover { color: var(--cyan); }

/* hero section */
.hero {
  padding: 3rem 1.25rem 2rem;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(0,229,255,0.25) 0%, transparent 60%),
    linear-gradient(rgba(0,0,0,.6), rgba(0,0,0,.9)),
    url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?auto=format&fit=crop&w=1920&q=80")
      center/cover no-repeat;
  box-shadow: 0 0 24px rgba(0,229,255,0.2);
}
.hero-title {
  font-family: "Orbitron", sans-serif;
  color: var(--white);
  text-shadow: 0 0 12px rgba(0,229,255,0.4);
  letter-spacing: .2em;
  font-size: clamp(1.4rem,2.2vw,2.4rem);
  margin: 0;
  text-transform: uppercase;
}
.hero-text {
  max-width: 700px;
  margin: 1rem auto 0;
  color: var(--silver);
  font-size: .95rem;
}
.cta-row {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  justify-content: center;
}
.btn {
  display: inline-block;
  text-decoration: none;
  font-size: .8rem;
  border-radius: 12px;
  padding: .7rem 1rem;
  text-align: center;
  min-width: 160px;
  box-shadow: 0 0 15px rgba(0,229,255,.4);
}
.glass {
  background: rgba(11,15,20,.6);
  border: 1px solid rgba(0,229,255,.2);
  color: var(--white);
}
.outline {
  border: 1px solid var(--cyan);
  color: var(--cyan);
  background: transparent;
}
.btn:hover {
  box-shadow: 0 0 20px rgba(0,229,255,.65);
}

/* 3-card panel */
.panel {
  max-width: 1100px;
  margin: 2rem auto;
  padding: 0 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
.card {
  background: rgba(11,15,20,.6);
  border: 1px solid rgba(0,229,255,.2);
  border-radius: 16px;
  box-shadow: 0 0 20px rgba(0,229,255,.15);
  min-width: 260px;
  max-width: 340px;
  flex: 1 1 300px;
  padding: 1rem 1.25rem 1.5rem;
}
.card-head {
  font-family: "Orbitron", sans-serif;
  color: var(--cyan);
  letter-spacing: .1em;
  font-size: .8rem;
  margin-bottom: .5rem;
  text-transform: uppercase;
  text-shadow: 0 0 8px rgba(0,229,255,.4);
}
.card-body {
  font-size: .9rem;
  color: var(--silver);
}

/* glowing line */
.separator {
  height: 1px;
  width: 100%;
  background: linear-gradient(90deg, transparent, rgba(0,229,255,.45), transparent);
  margin: 2rem auto;
}

/* investor CTA block */
.investor-block {
  background:
    radial-gradient(circle at 50% 0%, rgba(0,229,255,.25) 0%, transparent 60%),
    linear-gradient(rgba(0,0,0,.6), rgba(0,0,0,.92)),
    url("https://images.unsplash.com/photo-1496307653780-42ee777d4833?auto=format&fit=crop&w=1920&q=80")
      center/cover no-repeat;
  box-shadow: 0 0 24px rgba(0,229,255,.2);
  border-top: 1px solid rgba(0,229,255,.25);
  border-bottom: 1px solid rgba(0,229,255,.25);
  padding: 2rem 1.25rem;
  text-align: center;
}
.investor-inner {
  max-width: 900px;
  margin: 0 auto;
  color: var(--silver);
}
.investor-head {
  color: var(--white);
  font-family: "Orbitron", sans-serif;
  text-transform: uppercase;
  font-size: .9rem;
  letter-spacing: .15em;
  text-shadow: 0 0 8px rgba(0,229,255,.4);
}
.investor-sub {
  font-size: .8rem;
  margin-top: .5rem;
  color: rgba(201,214,223,.8);
}

/* divisions grid */
.divisions-wrap {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 1.25rem 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
  gap: 1rem;
}
.division-tile {
  background: rgba(11,15,20,.6);
  border: 1px solid rgba(0,229,255,.2);
  border-radius: 16px;
  box-shadow: 0 0 20px rgba(0,229,255,.15);
  padding: 1rem 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.division-head {
  font-family: "Orbitron", sans-serif;
  color: var(--cyan);
  letter-spacing: .1em;
  font-size: .8rem;
  text-transform: uppercase;
  text-shadow: 0 0 8px rgba(0,229,255,.4);
  margin-bottom: .5rem;
}
.division-body {
  font-size: .85rem;
  color: var(--silver);
  flex: 1;
  margin-bottom: 1rem;
}
.division-link {
  text-decoration: none;
  font-size: .8rem;
  border-radius: 10px;
  text-align: center;
  padding: .6rem .8rem;
  border: 1px solid var(--cyan);
  color: var(--cyan);
  background: transparent;
  box-shadow: 0 0 15px rgba(0,229,255,.4);
}
.division-link:hover {
  box-shadow: 0 0 20px rgba(0,229,255,.65);
  color: var(--white);
  border-color: var(--white);
}

/* content page wrapper */
.section-wrap {
  max-width: 1000px;
  margin: 2rem auto 4rem;
  padding: 0 1.25rem;
}
.section-title {
  font-family: "Orbitron", sans-serif;
  color: var(--cyan);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: .15em;
  text-shadow: 0 0 8px rgba(0,229,255,.4);
  margin-bottom: 1rem;
  text-align: center;
}
.section-blurb {
  color: var(--silver);
  font-size: .95rem;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 2rem;
}
.section-box {
  background: rgba(11,15,20,.6);
  border: 1px solid rgba(0,229,255,.2);
  border-radius: 16px;
  box-shadow: 0 0 20px rgba(0,229,255,.15);
  padding: 1rem 1.25rem 1.5rem;
  margin-bottom: 1rem;
}
.section-head {
  font-family: "Orbitron", sans-serif;
  font-size: .8rem;
  text-transform: uppercase;
  color: var(--cyan);
  letter-spacing: .1em;
  margin-bottom: .5rem;
  text-shadow: 0 0 8px rgba(0,229,255,.4);
}
.section-body {
  font-size: .85rem;
  color: var(--silver);
  line-height: 1.5;
}

/* footer */
.footer {
  border-top: 1px solid rgba(0,229,255,.25);
  color: var(--silver);
  font-size: .7rem;
  padding: 2rem 1.25rem;
  text-align: center;
  background: rgba(0,0,0,.5);
  margin-top: 2rem;
}
