/* --- THEME: soft purple → soft green flow --- */
:root {
  --pink-soft: #efe8fb;
  --pink-mid: #e2d5f6;
  --pink-rose: #7b5fc7;
  --pink-blush: #b8a4e8;
  --pink-surface: rgba(239, 232, 251, 0.38);
  --green-soft: #e3f2e4;
  --green-mid: #c5e6c8;
  --green-deep: #b8dcc0;
  --header-green: #1f5c3a;
  --header-green-muted: #2d7a52;
  --btn-accent: #7cb97a;
  --btn-text: #1a3d28;
  --text-dark: #2c2c2c;
  --font-heading: "Playfair Display", serif;
  --font-body: "Inter", sans-serif;
  --font-hero-title: "DM Sans", sans-serif;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-soft: 0 8px 32px rgba(31, 92, 58, 0.08);
  --shadow-pink: 0 10px 36px rgba(123, 95, 199, 0.14);
}

html {
  scroll-behavior: smooth;
}

/* --- BASE --- */
body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--text-dark);
  /* Animated mesh-like gradient */
  background:
    radial-gradient(
      120% 90% at 8% 8%,
      rgba(241, 236, 252, 0.78) 0%,
      transparent 55%
    ),
    radial-gradient(
      110% 85% at 85% 10%,
      rgba(232, 246, 234, 0.75) 0%,
      transparent 58%
    ),
    radial-gradient(
      95% 80% at 40% 48%,
      rgba(232, 224, 252, 0.55) 0%,
      transparent 60%
    ),
    radial-gradient(
      120% 95% at 75% 85%,
      rgba(197, 230, 200, 0.72) 0%,
      transparent 62%
    ),
    linear-gradient(180deg, #fcfbff 0%, #f3eefb 35%, #edf3ee 65%, #dceede 100%);
  background-size:
    130% 130%,
    130% 130%,
    150% 150%,
    150% 150%,
    100% 100%;
  animation: mesh-shift 26s ease-in-out infinite alternate;
  background-attachment: fixed;
  position: relative;
  overflow-x: hidden;
}

@keyframes mesh-shift {
  0% {
    background-position:
      0% 0%,
      100% 0%,
      50% 45%,
      100% 100%,
      50% 50%;
  }
  50% {
    background-position:
      8% 4%,
      94% 8%,
      46% 54%,
      92% 92%,
      50% 50%;
  }
  100% {
    background-position:
      12% 10%,
      88% 14%,
      40% 62%,
      82% 86%,
      50% 50%;
  }
}

/* Very soft purple haze (low opacity so it stays gentle) */
body::before {
  content: "";
  position: fixed;
  top: -25%;
  left: -20%;
  width: 85%;
  height: 75%;
  background: radial-gradient(
    ellipse 85% 70% at 35% 25%,
    rgba(242, 238, 252, 0.28) 0%,
    rgba(246, 244, 250, 0.12) 48%,
    transparent 72%
  );
  pointer-events: none;
  z-index: -1;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url('data:image/svg+xml,%3Csvg viewBox="0 0 400 400" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="n"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23n)"/%3E%3C/svg%3E');
  opacity: 0.035;
  pointer-events: none;
  z-index: 10;
}

.container {
  padding: 72px 12%;
  max-width: 1200px;
  margin: 0 auto;
}

h1,
h2,
h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.85rem, 4vw, 2.5rem);
  color: var(--text-dark);
}

h4 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
}

.accent-text {
  color: var(--pink-rose);
}

/* --- HEADER: green type + oval nav --- */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  padding: 26px 7%;
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(
    180deg,
    rgba(239, 232, 251, 0.92) 0%,
    rgba(239, 232, 251, 0.75) 100%
  );
  backdrop-filter: blur(16px) saturate(1.1);
  -webkit-backdrop-filter: blur(16px) saturate(1.1);
  border-bottom: 1px solid rgba(184, 164, 232, 0.35);
  transition: box-shadow var(--transition);
}

header.is-scrolled {
  box-shadow: var(--shadow-soft);
}

.logo {
  font-size: clamp(0.78rem, 2.1vw, 0.95rem);
  font-weight: 600;
  font-family: var(--font-body);
  color: var(--header-green);
  letter-spacing: 0.01em;
  line-height: 1.3;
  max-width: min(22rem, 72vw);
}

nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 14px;
}

nav a {
  text-decoration: none;
  color: var(--header-green);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 11px 22px;
  border-radius: 999px;
  border: 1.5px solid rgba(184, 164, 232, 0.45);
  background: var(--pink-surface);
  transition:
    background var(--transition),
    color var(--transition),
    border-color var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
}

nav a.nav-cta {
  margin-left: auto;
  background: var(--header-green);
  color: #fff;
  border-color: var(--header-green);
  box-shadow: 0 10px 24px rgba(31, 92, 58, 0.2);
}

nav a.nav-cta:hover {
  background: var(--header-green-muted);
  color: #fff;
  border-color: var(--header-green-muted);
  box-shadow: 0 14px 28px rgba(31, 92, 58, 0.24);
}

nav a::after {
  display: none;
}

nav a:hover {
  background: #fff;
  border-color: var(--pink-blush);
  color: var(--header-green);
  transform: translateY(-2px);
  box-shadow: var(--shadow-pink);
}

nav a:focus-visible {
  outline: 2px solid var(--header-green);
  outline-offset: 3px;
}

/* --- BUTTONS --- */
.btn-circular {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--btn-accent), #9ad498);
  color: var(--btn-text);
  padding: 16px 32px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border: 2px solid transparent;
  transition: var(--transition);
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(31, 92, 58, 0.18);
}

.btn-circular:hover {
  background: #fff;
  color: var(--btn-text);
  border-color: var(--btn-accent);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 36px rgba(31, 92, 58, 0.2);
}

.btn-circular:active {
  transform: translateY(-1px) scale(1.01);
}

/* --- HERO --- */
#hero-landing {
  text-align: center;
  position: relative;
  padding: 30px 5% 5px;
  background:
    radial-gradient(
      ellipse 120% 80% at 50% -20%,
      rgba(242, 238, 252, 0.42) 0%,
      transparent 58%
    ),
    radial-gradient(
      ellipse 100% 60% at 50% 100%,
      rgba(227, 242, 228, 0.4) 0%,
      transparent 52%
    );
}

.main-title {
  font-family: var(--font-hero-title);
  font-size: clamp(3.7rem, 11.5vw, 6.4rem);
  font-weight: 800;
  margin-top: 0;
  margin-bottom: 12px;
  letter-spacing: -0.06em;
  animation: fade-up 0.8s ease-out both;
  color: var(--pink-rose);
  text-shadow:
    0 2px 10px rgba(123, 95, 199, 0.2),
    0 0 18px rgba(31, 92, 58, 0.1);
}

@supports (background-clip: text) or (-webkit-background-clip: text) {
  .main-title {
    background: linear-gradient(
      115deg,
      var(--pink-rose) 0%,
      #6f56b5 28%,
      var(--header-green) 72%,
      #163d28 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
}

/* Soften heading on Meet the Team page only */
.meet-team-page .main-title {
  color: #8f7dc7;
  text-shadow:
    0 1px 8px rgba(143, 125, 199, 0.14),
    0 0 10px rgba(31, 92, 58, 0.06);
}

@supports (background-clip: text) or (-webkit-background-clip: text) {
  .meet-team-page .main-title {
    background: linear-gradient(118deg, #9a88d1 0%, #8e7cc9 35%, #5f8f74 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-image {
  height: min(600px, 100vh);
  width: min(100%, 640px);
  margin: 28px auto 0;
  border-radius: 36px;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
  box-shadow:
    var(--shadow-soft),
    0 0 0 1px rgba(184, 164, 232, 0.35),
    0 12px 40px rgba(123, 95, 199, 0.08);
  backdrop-filter: blur(14px) saturate(1.08);
  -webkit-backdrop-filter: blur(14px) saturate(1.08);
  background: linear-gradient(
    140deg,
    rgba(255, 255, 255, 0.45) 0%,
    rgba(242, 238, 252, 0.28) 50%,
    rgba(227, 242, 228, 0.25) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(184, 164, 232, 0.35);
  filter: brightness(0.75);
    box-shadow:
        var(--shadow-soft),
        0 0 0 1px rgba(184, 164, 232, 0.2),
        0 12px 40px rgba(123, 95, 199, 0.06);
}

.hero-image:hover {
  transform: scale(1.01);
  box-shadow:
    0 16px 48px rgba(31, 92, 58, 0.1),
    0 0 0 1px rgba(184, 164, 232, 0.5),
    0 18px 44px rgba(123, 95, 199, 0.12);
}

/* --- ABOUT --- */
#about-mission {
  position: relative;
}

#about-mission h2::after {
  content: "";
  display: block;
  width: 3.5rem;
  height: 4px;
  margin-top: 14px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--pink-blush), var(--green-mid));
}

.mission-statement {
  font-size: clamp(0.98rem, 1.9vw, 1.06rem);
  line-height: 1.85;
  max-width: none;
  width: 100%;
  color: #444;
  margin-bottom: 40px;
  text-wrap: pretty;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
}

.value-card {
  padding: 22px 20px;
  border-radius: 20px;
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.9) 0%,
    var(--pink-surface) 100%
  );
  border: 1px solid rgba(184, 164, 232, 0.35);
  text-align: center;
  cursor: default;
}

.value-card h4 {
  color: var(--pink-rose);
}

/* --- SOLARA --- */
#solara-details {
  padding: 80px 0;
}

.solara-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.solara-visuals {
  position: relative;
  z-index: 1;
  filter: brightness(0.85);
}

.solara-visuals .design-placeholder {
  height: 450px;
  border-radius: 36px;
  transition: var(--transition);
}

.solara-visuals .design-placeholder:hover {
  box-shadow: var(--shadow-soft);
}

.solara-text {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(241, 236, 252, 0.75) 100%
  );
  padding: 48px 44px;
  border-radius: 36px;
  margin-left: -80px;
  z-index: 2;
  box-shadow: var(--shadow-soft), var(--shadow-pink);
  border: 1px solid rgba(184, 164, 232, 0.3);
  border-left: 4px solid var(--pink-blush);
  backdrop-filter: blur(8px);
}

.spec-list {
  margin: 20px 0 28px;
  padding-left: 1.2rem;
  line-height: 1.8;
  color: #555;
}

.spec-list li::marker {
  color: var(--pink-blush);
}

@media (max-width: 900px) {
  .solara-split {
    grid-template-columns: 1fr;
  }
  .solara-text {
    margin-left: 0;
    margin-top: -40px;
  }
}

/* --- SUBTEAMS --- */
.subteam-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 36px;
}

.team-card {
  padding: 36px 32px;
  border: 1px solid rgba(184, 164, 232, 0.25);
  background: rgba(255, 255, 255, 0.85);
  border-radius: 28px;
  transition: var(--transition);
  text-align: center;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

a.team-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

a.team-card-link:focus-visible {
  outline: 2px solid var(--header-green);
  outline-offset: 4px;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(31, 92, 58, 0.12);
  border-color: rgba(31, 92, 58, 0.15);
  background: #fff;
}

.card-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
  filter: grayscale(0.2);
  transition: transform var(--transition);
}

.team-card:hover .card-icon {
  transform: scale(1.1);
}

.team-card h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: var(--header-green);
}

.team-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #5a5a5a;
}

.center-link {
  text-align: center;
  margin-top: 40px;
}

.text-link {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 999px;
  text-decoration: none;
  color: var(--pink-rose);
  font-weight: 600;
  font-size: 0.95rem;
  border: 1.5px solid rgba(184, 164, 232, 0.55);
  background: var(--pink-surface);
  transition: var(--transition);
}

.text-link:hover {
  background: var(--pink-rose);
  color: #fff;
  border-color: var(--pink-rose);
  transform: translateY(-2px);
  box-shadow: var(--shadow-pink);
}

/* --- DASHBOARD: green anchor of the gradient --- */
#live-data-map {
  padding: 40px 0 100px;
  position: relative;
}

#live-data-map .container {
  padding-top: 48px;
  padding-bottom: 48px;
}

#live-data-map h2 {
  color: var(--header-green);
}

.dashboard-wrapper {
  margin-top: 8px;
  border-radius: 32px;
  padding: 4px;
  background: linear-gradient(
    135deg,
    rgba(184, 164, 232, 0.55) 0%,
    rgba(236, 224, 252, 0.4) 35%,
    rgba(197, 230, 200, 0.75) 100%
  );
  box-shadow:
    0 12px 40px rgba(31, 92, 58, 0.12),
    0 8px 32px rgba(123, 95, 199, 0.1);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

.dashboard-wrapper:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 56px rgba(31, 92, 58, 0.18);
}

.dashboard-frame {
  min-height: 420px;
  border-radius: 28px;
  border: none;
  background: rgba(255, 255, 255, 0.92);
}

/* --- MEET THE TEAM PAGE --- */
.logo-link {
  text-decoration: none;
  color: inherit;
}

.team-page-intro {
  padding-bottom: 5px;
}

.team-photo-banner {
  width: 100%;
  min-height: 140px;
  border-radius: 28px;
  margin-top: 0;
}

.team-photo-banner span {
  font-size: 0.95rem;
}

.subteam-roster-section {
  padding: 48px 0 64px;
}

.subteam-roster-section + .subteam-roster-section {
  padding-top: 0;
}

.roster-subteam-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.5vw, 2.1rem);
  color: var(--header-green);
  margin-bottom: 28px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(184, 164, 232, 0.35);
}

.roster-row {
  display: grid;
  gap: 24px;
  margin-bottom: 24px;
}

.roster-row--three {
  grid-template-columns: repeat(3, 1fr);
}

.roster-row--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 24px;
}

.member-card {
  background: #fff;
  border: 1px solid rgba(184, 164, 232, 0.25);
  border-radius: 24px;
  padding: 24px 20px 28px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.member-headshot {
  width: 120px;
  height: 120px;
  margin: 0 auto 16px;
  border-radius: 50%;
  padding: 0;
  font-size: 0.75rem;
  object-fit: cover;
  object-position: center 20%;
}

.member-headshot span {
  padding: 12px;
}

.member-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin: 0 0 6px;
  color: var(--text-dark);
}

.member-role {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--header-green-muted);
  margin: 0 0 12px;
}

.member-bio {
  font-size: 0.9rem;
  line-height: 1.65;
  color: #555;
  margin: 0;
  text-align: left;
}

@media (max-width: 900px) {
  .roster-row--three {
    grid-template-columns: 1fr;
  }

  .roster-row--two {
    grid-template-columns: 1fr;
    max-width: none;
  }
}

#funding {
  padding: 0 0 80px;
}

#funding h2 {
  color: var(--header-green);
}

#funding h2::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  background: var(--btn-accent);
  border-radius: 999px;
  margin-top: 10px;
}

/* --- FOOTER --- */
#footer {
  text-align: center;
  padding: 32px 5% 48px;
  color: var(--header-green-muted);
  font-size: 0.9rem;
  border-top: 1px solid rgba(184, 164, 232, 0.3);
  background: linear-gradient(
    180deg,
    rgba(241, 236, 252, 0.4) 0%,
    rgba(184, 220, 192, 0.45) 100%
  );
}

/* --- PLACEHOLDERS --- */
.design-placeholder {
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.52) 0%,
    rgba(242, 238, 252, 0.34) 45%,
    rgba(240, 246, 241, 0.32) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6f7f74;
  font-style: italic;
  font-weight: 500;
  text-align: center;
  padding: 24px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.45),
    0 12px 34px rgba(31, 92, 58, 0.08);
  backdrop-filter: blur(12px) saturate(1.08);
  -webkit-backdrop-filter: blur(12px) saturate(1.08);
}

/* ── Timeline page styles ── */
#timeline-section {
  padding: 48px 0 100px;
}

.timeline-wrapper {
  position: relative;
  max-width: 780px;
  margin: 0 auto;
  padding: 0 12%;
}

/* Vertical spine */
.timeline-spine {
  position: absolute;
  left: calc(12% + 22px);
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(184, 164, 232, 0.6) 6%,
    rgba(124, 185, 122, 0.5) 70%,
    rgba(184, 164, 232, 0.15) 100%
  );
  border-radius: 999px;
}

/* Each event */
.timeline-event {
  position: relative;
  padding: 0 0 52px 56px;
  opacity: 0;
  transform: translateX(-18px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}

.timeline-event.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.timeline-event:last-child {
  padding-bottom: 0;
}

/* Dot on the spine */
.timeline-dot {
  position: absolute;
  left: 13px;
  top: 5px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  border: 2.5px solid var(--pink-blush);
  box-shadow: 0 0 0 4px rgba(184, 164, 232, 0.15);
  transition:
    border-color 0.3s,
    box-shadow 0.3s,
    transform 0.3s;
  z-index: 2;
}

.timeline-event:hover .timeline-dot {
  border-color: var(--header-green);
  box-shadow: 0 0 0 6px rgba(31, 92, 58, 0.1);
  transform: scale(1.15);
}

/* "Coming soon" dot style */
.timeline-event.is-pending .timeline-dot {
  background: rgba(184, 164, 232, 0.15);
  border-style: dashed;
  border-color: rgba(184, 164, 232, 0.5);
}

/* Card */
.timeline-card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(184, 164, 232, 0.28);
  border-radius: 20px;
  padding: 22px 26px;
  box-shadow: 0 4px 20px rgba(31, 92, 58, 0.06);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
  cursor: default;
}

.timeline-event:hover .timeline-card {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(31, 92, 58, 0.1);
  border-color: rgba(184, 164, 232, 0.5);
}

.timeline-event.is-pending .timeline-card {
  background: rgba(255, 255, 255, 0.55);
  border-style: dashed;
  border-color: rgba(184, 164, 232, 0.35);
  box-shadow: none;
}

.timeline-date {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--pink-rose);
  background: rgba(123, 95, 199, 0.07);
  border: 1px solid rgba(123, 95, 199, 0.18);
  border-radius: 999px;
  padding: 4px 12px;
  margin-bottom: 10px;
}

.timeline-event.is-pending .timeline-date {
  color: #aaa;
  background: rgba(0, 0, 0, 0.03);
  border-color: rgba(0, 0, 0, 0.1);
}

.timeline-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}

.timeline-event.is-pending .timeline-title {
  color: #aaa;
}

.timeline-desc {
  font-size: 0.92rem;
  line-height: 1.7;
  color: #555;
  margin: 0;
}

.timeline-event.is-pending .timeline-desc {
  color: #bbb;
  font-style: italic;
}

/* "More to come" tail */
.timeline-more {
  padding-left: 56px;
  position: relative;
  opacity: 0;
  transform: translateX(-18px);
  transition:
    opacity 0.55s ease 0.1s,
    transform 0.55s ease 0.1s;
}

.timeline-more.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.timeline-more-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #aaa;
  letter-spacing: 0.04em;
}

.timeline-more-label::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 2px dashed #ccc;
  flex-shrink: 0;
  position: absolute;
  left: 16px;
}

.timeline-subteam {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 999px;
    padding: 4px 12px;
    margin-bottom: 8px;
    margin-right: 6px;
}

.timeline-subteam--software {
    color: #1a6b8a;
    background: rgba(26, 107, 138, 0.07);
    border: 1px solid rgba(26, 107, 138, 0.22);
}

.timeline-subteam--mechanical {
    color: #8a5a1a;
    background: rgba(138, 90, 26, 0.07);
    border: 1px solid rgba(138, 90, 26, 0.22);
}

.timeline-subteam--electrical {
    color: #5a8a1a;
    background: rgba(90, 138, 26, 0.07);
    border: 1px solid rgba(90, 138, 26, 0.22);
}
