:root {
  --bg: #060816;
  --surface: #0d1226;
  --surface-2: #121936;
  --text: #edf2ff;
  --muted: rgba(237, 242, 255, 0.72);
  --line: rgba(255, 255, 255, 0.10);
  --line-strong: rgba(255, 255, 255, 0.18);
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
  --shadow-soft: 0 16px 42px rgba(0, 0, 0, 0.26);
  --c1: #63f3ff;
  --c2: #8f7cff;
  --c3: #20f3c4;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(1200px 800px at 15% -10%, rgba(99, 243, 255, 0.16), transparent 56%),
    radial-gradient(1000px 720px at 95% 8%, rgba(143, 124, 255, 0.16), transparent 56%),
    radial-gradient(900px 650px at 55% 110%, rgba(32, 243, 196, 0.08), transparent 58%),
    var(--bg);
}

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

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

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

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(6, 8, 22, 0.68);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.headerRow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 0;
}

.brand img {
  height: 42px;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav a {
  padding: 10px 12px;
  border-radius: 14px;
  color: rgba(237, 242, 255, 0.86);
  font-weight: 700;
  font-size: 14px;
}

.nav a:hover {
  background: rgba(255, 255, 255, 0.05);
}

.menuBtn {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.menuBtn span {
  display: block;
  width: 18px;
  height: 2px;
  background: #eef2ff;
  margin: 5px auto;
  border-radius: 2px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(135deg, rgba(99, 243, 255, 0.18), rgba(143, 124, 255, 0.16));
  box-shadow: var(--shadow-soft);
  color: var(--text);
  font-weight: 800;
}

.btn.ghost {
  background: rgba(255, 255, 255, 0.03);
  box-shadow: none;
}

.btn.small {
  padding: 10px 12px;
}

.hero {
  position: relative;
  padding: 52px 0 42px;
  overflow: hidden;
}

.heroGrid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 28px;
  align-items: start;
}

.eyebrow {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.03);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Only change made: font-size reduced to half */
h1 {
  margin: 18px 0 14px;
  font-size: clamp(20px, 2.5vw, 34px);
  line-height: 0.98;
  letter-spacing: -0.04em;
  max-width: 22ch;
}

.grad {
  background: linear-gradient(90deg, var(--c1), var(--c2), var(--c3));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead {
  margin: 0 0 18px;
  color: rgba(237, 242, 255, 0.82);
  line-height: 1.8;
  font-size: 17px;
  max-width: 42rem;
}
.eeLogo{
  display:block;
  margin-top:10px;
  height:40px;
  width:auto;
}
.ctaRow {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.partnerPill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px;
  border-radius: 22px;
  border: 1px solid var(--line-strong);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025));
  box-shadow: var(--shadow-soft);
}

.pillTitle,
.microK,
.badge,
.miniTitle,
.metaK {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(237, 242, 255, 0.62);
}

.pillName,
.microV,
.metaV,
.cTitle,
.careerDetailTitle {
  font-weight: 800;
}

.pillName {
  margin-top: 4px;
  font-size: 16px;
}

.pillLink,
.miniLink {
  padding: 10px 14px;
  border-radius: 14px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.04);
  font-weight: 800;
}

.microRow {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.microCard {
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
}

.microV {
  margin-top: 6px;
  font-size: 15px;
}

.heroRight {
  position: relative;
  min-height: 560px;
  display: flex;
  justify-content: flex-end;
}

.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(30px);
  pointer-events: none;
  opacity: 0.95;
  animation: floaty 7s ease-in-out infinite;
}

.orbA {
  width: 250px;
  height: 250px;
  left: -24px;
  top: 90px;
  background: radial-gradient(circle at 30% 30%, rgba(99, 243, 255, 0.88), rgba(99, 243, 255, 0) 60%);
}

.orbB {
  width: 340px;
  height: 340px;
  right: -70px;
  top: -10px;
  background: radial-gradient(circle at 35% 30%, rgba(143, 124, 255, 0.88), rgba(143, 124, 255, 0) 60%);
  animation-delay: -2s;
}

@keyframes floaty {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

.hiringPanel {
  position: relative;
  width: min(560px, 100%);
  min-height: 560px;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid var(--line-strong);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03)),
    linear-gradient(90deg, rgba(99, 243, 255, 0.04), rgba(143, 124, 255, 0.08));
  box-shadow: var(--shadow);
}

.hiringTop {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
}

.panelDots {
  display: flex;
  gap: 8px;
}

.panelDots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(237, 242, 255, 0.22);
}

.panelTitle {
  font-size: 18px;
  font-weight: 800;
}

.jobDeck {
  position: relative;
  padding: 24px 28px 56px;
  min-height: 460px;
}

.jobActiveCard {
  position: relative;
  z-index: 4;
  padding: 20px 20px 16px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(7, 12, 28, 0.24);
  backdrop-filter: blur(3px);
}

.jobStackBack {
  position: absolute;
  left: 28px;
  right: 28px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.stack1 {
  top: 56px;
  left: 40px;
  right: 16px;
  height: 280px;
  opacity: 0.18;
}

.stack2 {
  top: 84px;
  left: 54px;
  right: 2px;
  height: 250px;
  opacity: 0.12;
}

.stack3 {
  top: 112px;
  left: 68px;
  right: -12px;
  height: 220px;
  opacity: 0.08;
}

.jobMain {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.jobRole {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 10px;
}

.jobMeta {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(237, 242, 255, 0.88);
}

.jobPreviewSummary {
  margin-top: 18px;
  color: rgba(237, 242, 255, 0.68);
  line-height: 1.65;
  font-size: 14px;
  max-width: 92%;
}

.jobStepper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
}

.jobNav {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-weight: 800;
  cursor: pointer;
}

.jobDots {
  display: flex;
  gap: 8px;
  flex: 1;
  justify-content: center;
}

.jobDots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  padding: 0;
}

.jobDots button.active {
  background: linear-gradient(90deg, var(--c1), var(--c2));
}

.applyBtn {
  min-width: 122px;
  padding: 12px 18px;
  cursor: pointer;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font: 800 18px Georgia, serif;
}

.hiringGraph {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 108px;
  background: linear-gradient(90deg, rgba(99, 243, 255, 0.2), rgba(143, 124, 255, 0.28));
  clip-path: polygon(0 80%, 10% 74%, 18% 78%, 28% 60%, 40% 64%, 52% 42%, 62% 47%, 74% 28%, 86% 34%, 100% 14%, 100% 100%, 0 100%);
}

.heroFade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 90px;
  background: linear-gradient(180deg, rgba(6, 8, 22, 0), rgba(6, 8, 22, 1));
}

.section {
  padding: 74px 0;
}

.section.alt {
  background: rgba(255, 255, 255, 0.018);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.sectionHead {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.sectionHead h2 {
  margin: 0;
  font-size: 30px;
  letter-spacing: -0.02em;
}

.sectionHead p,
.p,
.card p,
.project p,
.cText,
.careerSection p {
  color: rgba(237, 242, 255, 0.74);
  line-height: 1.72;
}

.cards,
.projectGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.card,
.project,
.partnerCard,
.form,
.careerList,
.careerDetail {
  border-radius: 24px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.025));
  box-shadow: var(--shadow-soft);
}

.card,
.project {
  padding: 18px;
}

.card h3,
.project h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.card ul {
  margin: 0;
  padding-left: 18px;
  color: rgba(237, 242, 255, 0.70);
}

.card li {
  margin: 7px 0;
}

.twoCol,
.contactGrid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 16px;
  align-items: start;
}

.badge {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.04);
  margin-bottom: 10px;
  color: rgba(237, 242, 255, 0.88);
}

.callouts,
.meta {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.callout,
.metaItem {
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.024);
  padding: 12px 14px;
}

.partnerCard {
  padding: 0;
  overflow: hidden;
}

.partnerTop {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px;
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
}

.partnerTop img {
  height: 56px;
  width: auto;
}

.partnerBody {
  padding: 16px;
}

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

.ticks li {
  position: relative;
  padding-left: 26px;
  margin: 10px 0;
  color: rgba(237, 242, 255, 0.74);
  line-height: 1.6;
}

.ticks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--c1);
  font-weight: 800;
}

.projTag {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.04);
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 10px;
  color: rgba(237, 242, 255, 0.9);
}

.gallery {
  display: grid;
  grid-template-columns: 1.16fr 0.84fr;
  gap: 14px;
  align-items: stretch;
}

.gMain,
.gSide img,
.featureLarge {
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.gMain img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 10;
}

.gSide {
  display: grid;
  gap: 14px;
}

.gSide img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.featureStrip {
  margin-top: 14px;
}

.featureLarge img {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
}

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

.careerList {
  padding: 10px;
  display: grid;
  gap: 10px;
  align-self: start;
  position: sticky;
  top: 90px;
}

.careerItem {
  padding: 14px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  cursor: pointer;
  text-align: left;
  color: var(--text);
}

.careerItem:hover,
.careerItem.active {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.05);
}

.careerItemTitle {
  font-weight: 800;
  font-size: 14px;
}

.careerItemMeta {
  margin-top: 6px;
  color: rgba(237, 242, 255, 0.68);
  font-size: 13px;
  line-height: 1.5;
}

.careerDetail {
  padding: 20px;
}

.careerDetailTop {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.careerDetailTitle {
  font-size: 28px;
  letter-spacing: -0.02em;
}

.careerDetailMeta {
  margin-top: 6px;
  color: rgba(237, 242, 255, 0.72);
  font-size: 14px;
}

.careerActions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.careerSection {
  margin-top: 18px;
}

.careerSection h3 {
  margin: 0 0 10px;
  font-size: 18px;
}

.careerSection ul {
  margin: 0;
  padding-left: 18px;
  color: rgba(237, 242, 255, 0.76);
}

.careerSection li {
  margin: 8px 0;
  line-height: 1.6;
}

label {
  display: block;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 12px;
}

input,
textarea {
  width: 100%;
  margin-top: 8px;
  padding: 12px 13px;
  border-radius: 16px;
  border: 1px solid var(--line-strong);
  background: rgba(7, 10, 24, 0.65);
  color: var(--text);
  outline: none;
}

input:focus,
textarea:focus {
  border-color: rgba(99, 243, 255, 0.55);
  box-shadow: 0 0 0 4px rgba(99, 243, 255, 0.14);
}

.form {
  padding: 18px;
}

.formActions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.hint {
  margin: 10px 2px 0;
  color: rgba(237, 242, 255, 0.68);
  font-size: 13px;
  line-height: 1.6;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 26px 0;
}

.footerRow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.footLeft {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footerLogo {
  height: 34px;
  width: auto;
}

.muted {
  font-size: 13px;
  color: rgba(237, 242, 255, 0.58);
}

.footRight {
  display: flex;
  gap: 10px;
}

.footRight a {
  padding: 10px 12px;
  border-radius: 14px;
}

.footRight a:hover {
  background: rgba(255, 255, 255, 0.05);
}

@media (max-width: 980px) {
  .heroGrid,
  .twoCol,
  .contactGrid,
  .gallery,
  .careersLayout {
    grid-template-columns: 1fr;
  }

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

  .heroRight {
    min-height: 520px;
    justify-content: flex-start;
  }

  h1 {
    max-width: none;
  }
}

@media (max-width: 500px) {
  .menuBtn {
    display: block;
  }

  .nav {
    display: none;
    position: absolute;
    right: 20px;
    top: 64px;
    width: min(320px, calc(100% - 40px));
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 10px;
    border-radius: 18px;
    border: 1px solid var(--line);
    background: rgba(6, 8, 22, 0.94);
  }

  .nav.open {
    display: flex;
  }

  .microRow,
  .cards,
  .projectGrid {
    grid-template-columns: 1fr;
  }

  .heroRight,
  .hiringPanel,
  .jobDeck {
    min-height: auto;
  }

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

  .jobPreviewSummary {
    max-width: 100%;
  }

  .stack1,
  .stack2,
  .stack3 {
    display: none;
  }
}