@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500&display=swap');

:root {
  --black: #050505;
  --charcoal: #0f0d0c;
  --deep: #1a1210;
  --panel: #16110f;
  --panel-soft: #231a17;
  --cream: #f5ece3;
  --muted: #b8b0a4;
  --line: rgba(245,236,227,.12);
  --acid: #e87c3e;
  --text: #f5f1e8;
  --serif: Georgia, 'Times New Roman', serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--black);
  color: var(--text);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 24px auto 0;
  width: min(94vw, 1680px);
  padding: 14px 18px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 999px;
  background: rgba(8, 10, 10, .78);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 26px;
  font-weight: 650;
  letter-spacing: -.04em;
}

.brand-mark {
  width: 32px;
  height: 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}
.brand-mark span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--acid);
  opacity: .95;
}
.brand-mark span:nth-child(odd) { background: var(--cream); opacity: .75; }

.nav { display: flex; align-items: center; gap: 34px; font-size: 16px; color: rgba(245,241,232,.84); }
.nav a:not(.nav-cta):hover { color: var(--acid); }
.nav-cta {
  padding: 14px 24px;
  border-radius: 999px;
  color: var(--black);
  background: var(--acid);
  font-weight: 650;
}

main { width: min(94vw, 1680px); margin: 18px auto 0; }
.section-card, .feature-section, .cards-section, .mission-banner {
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.06);
}

.hero {
  min-height: 780px;
  position: relative;
  display: grid;
  place-items: center;
  isolation: isolate;
  background: #111;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(5,6,6,.08), rgba(5,6,6,.35) 45%, rgba(5,6,6,.8)),
    radial-gradient(circle at 76% 13%, rgba(232,124,62,.55), transparent 10%),
    linear-gradient(135deg, #191412 0%, #382824 48%, #100d0c 100%);
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 28%, rgba(255,255,255,.28) 0 1px, transparent 2px),
    radial-gradient(circle at 70% 20%, rgba(232,124,62,.25) 0 1px, transparent 2px),
    radial-gradient(circle at 48% 68%, rgba(255,255,255,.22) 0 1px, transparent 2px);
  background-size: 70px 70px, 120px 120px, 90px 90px;
  opacity: .45;
}
.hero-content {
  position: relative;
  text-align: center;
  max-width: 1120px;
  padding: 110px 24px;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 34px;
  color: rgba(245,241,232,.86);
  font-size: clamp(15px, 1.2vw, 21px);
  font-weight: 560;
}
.hero .eyebrow { justify-content: center; }
.eyebrow span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 30px rgba(223,255,188,.75);
}
h1, h2, h3 { margin: 0; font-family: 'Quicksand', sans-serif; font-weight: 300; letter-spacing: -.02em; }
h1 { font-size: clamp(54px, 5.5vw, 110px); line-height: 1.0; }
h2 { font-size: clamp(50px, 6vw, 104px); line-height: .96; }
h3 { font-size: clamp(42px, 3.8vw, 72px); line-height: .96; }
.hero-text {
  width: min(820px, 90vw);
  margin: 34px auto 0;
  color: rgba(245,241,232,.82);
  font-size: clamp(20px, 1.7vw, 30px);
  line-height: 1.38;
}
.scroll-dot {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.10);
  color: var(--acid);
}

.split-card {
  position: relative;
  min-height: 430px;
  margin-top: 28px;
  padding: clamp(36px, 5vw, 78px);
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 70px;
  background: var(--panel);
}
.text-columns {
  display: grid;
  gap: 44px;
  align-content: center;
  font-size: clamp(22px, 1.7vw, 30px);
  line-height: 1.48;
  color: rgba(245,241,232,.82);
}
.glow {
  position: absolute;
  width: 380px;
  height: 190px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,124,62,.4), transparent 65%);
  filter: blur(24px);
  pointer-events: none;
}
.glow-left { left: -50px; bottom: -80px; }

/* Founders Section */
.founders-section {
  padding: 80px clamp(24px, 5vw, 60px);
  background-color: var(--deep);
  color: var(--text);
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: 40px;
}

.founders-section h2 {
  color: var(--text);
}

.founders-section p {
  color: var(--muted);
}

.founders-section .eyebrow {
  color: rgba(245, 241, 232, 0.86);
}

.founders-section .eyebrow span {
  background: var(--acid);
  box-shadow: 0 0 30px rgba(223, 255, 188, 0.75);
}

.founders-intro {
  margin-bottom: 50px;
  max-width: 800px;
}

.founders-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1040px;
  margin: 0 auto;
}

.founder-card-container {
  position: relative;
  aspect-ratio: 0.72 / 1;
  max-width: 320px;
  margin: 0 auto;
  width: 100%;
  perspective: 1200px;
  cursor: pointer;
  border-radius: 24px;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s ease;
}

.founder-card-container:hover {
  transform: translateY(-14px);
}

.founder-card {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.founder-card.flipped {
  transform: rotateY(180deg);
}

.founder-card-front, .founder-card-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 24px;
  border: 1px solid var(--border-color);
  overflow: hidden;
}

.founder-card-front {
  background-color: var(--charcoal);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  pointer-events: auto;
}

.founder-card-back {
  background-color: #0b0d10;
  border-color: rgba(232, 124, 62, 0.25);
  transform: rotateY(180deg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 10px 30px rgba(232, 124, 62, 0.08);
  pointer-events: none;
}

.founder-card.flipped .founder-card-front {
  pointer-events: none;
}

.founder-card.flipped .founder-card-back {
  pointer-events: auto;
}


.founder-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.founder-card-front::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.3) 55%, rgba(0, 0, 0, 0) 100%);
  z-index: 1;
  transition: opacity 0.4s ease;
}


.founder-card-content {
  position: relative;
  z-index: 2;
  padding: 32px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
}

.founder-meta {
  max-width: 75%;
}

.founder-card h3 {
  font-size: clamp(20px, 1.8vw, 28px);
  color: var(--text);
  margin: 0 0 6px 0;
  letter-spacing: -0.03em;
  font-style: normal;
}

.founder-card p {
  font-family: var(--sans);
  font-size: 15px;
  color: var(--muted);
  margin: 0;
  line-height: 1.4;
}

.founder-plus-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--text);
  color: var(--black);
  display: grid;
  place-items: center;
  font-size: 24px;
  font-weight: 300;
  transition: var(--transition-smooth);
}

.founder-card:hover .founder-plus-btn {
  background-color: var(--acid);
  color: var(--black);
  transform: rotate(90deg);
}

.feature-section {
  margin-top: 28px;
  padding: clamp(36px, 5vw, 78px);
  display: grid;
  grid-template-columns: .95fr 1fr;
  gap: 90px;
  background: #0a0c0c;
}
.accordion-list { margin-top: 40px; }
.accordion-item {
  border-bottom: 1px solid var(--line);
}
.accordion-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  border: 0;
  background: transparent;
  color: var(--text);
  font: 500 clamp(18px, 1.4vw, 24px)/1.2 var(--sans);
  text-align: left;
  cursor: pointer;
  outline: none;
  transition: color 0.3s ease;
}
.accordion-trigger:hover {
  color: var(--acid);
}
.accordion-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(245,241,232,.08);
  color: var(--acid);
  font-size: 24px;
  font-weight: 300;
  transition: all 0.3s ease;
}
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
  opacity: 0;
}
.accordion-item.active .accordion-content {
  max-height: 120px;
  opacity: 1;
  padding-bottom: 24px;
}
.accordion-content p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.5;
  margin: 0;
}
.media-card {
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  background: #f7f2e8;
  align-self: start;
}
.media-placeholder {
  aspect-ratio: 1.12 / .78;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 28% 35%, rgba(223,255,188,.25), transparent 22%),
    linear-gradient(145deg, #171b1c, #314448 48%, #0c0f0f 100%);
  color: rgba(245,241,232,.74);
  font-family: var(--serif);
  font-size: clamp(50px, 6vw, 98px);
  letter-spacing: -.06em;
}
.media-card figcaption {
  padding: 12px 18px 16px;
  color: #0b2428;
  font-size: 15px;
}

.cards-section {
  margin-top: 28px;
  padding: clamp(36px, 5vw, 78px);
  background: var(--deep);
}
.section-lead {
  max-width: 760px;
  margin: 28px 0 82px;
  font-size: clamp(20px, 1.5vw, 28px);
  line-height: 1.42;
  color: rgba(245,241,232,.78);
}
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.service-card {
  min-height: 420px;
  position: relative;
  padding: 42px;
  border-radius: 18px;
  background: rgba(245,241,232,.10);
  border: 1px solid rgba(245,241,232,.08);
}
.card-number { color: rgba(245,241,232,.8); font-size: 20px; font-weight: 700; }
.service-card h3 { margin-top: 122px; }
.service-card p { color: rgba(245,241,232,.76); font-size: 18px; line-height: 1.46; max-width: 390px; }

.product-badge {
  position: absolute;
  top: 42px;
  right: 42px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--acid);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-card.offboard-card {
  background: var(--cream);
  border-color: rgba(3, 6, 14, 0.12);
  color: var(--black);
}
.service-card.offboard-card .card-number {
  color: rgba(3, 6, 14, 0.55);
}
.service-card.offboard-card h3 {
  color: var(--black);
}
.service-card.offboard-card p {
  color: rgba(3, 6, 14, 0.7);
}
.service-card.offboard-card .product-badge {
  color: var(--black);
}
.line-icon {
  position: absolute;
  top: 50px;
  right: 42px;
  width: 120px;
  height: 120px;
  opacity: .85;
}
.atom {
  animation: pulseIcon 3s ease-in-out infinite;
}
.atom::before, .rings::before, .nodes::before {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(245,241,232,.72);
  border-radius: 50%;
}
.atom::after {
  content: '';
  position: absolute;
  inset: 34px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 0 12px rgba(255,255,255,.75) inset;
}
.rings::before { 
  box-shadow: 0 0 0 8px rgba(245,241,232,.18), 0 0 0 18px rgba(245,241,232,.14), 0 0 0 30px rgba(245,241,232,.10);
  animation: cycleRings 4s linear infinite;
}
.rings::after {
  content: '';
  position: absolute;
  inset: 46px;
  border-radius: 50%;
  background: var(--acid);
}
.nodes::after {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--cream);
  box-shadow: 78px 52px 0 var(--cream), 20px 92px 0 var(--cream);
  animation: moveDots 6s ease-in-out infinite;
}

@keyframes pulseIcon {
  0%, 100% { transform: scale(1); filter: brightness(1); }
  50% { transform: scale(1.08); filter: brightness(1.2); }
}

@keyframes cycleRings {
  0% {
    box-shadow: 0 0 0 8px rgba(245,241,232,.18), 0 0 0 18px rgba(245,241,232,.14), 0 0 0 30px rgba(245,241,232,.10);
  }
  33% {
    box-shadow: 0 0 0 12px rgba(245,241,232,.10), 0 0 0 22px rgba(245,241,232,.18), 0 0 0 34px rgba(245,241,232,.14);
  }
  66% {
    box-shadow: 0 0 0 16px rgba(245,241,232,.14), 0 0 0 26px rgba(245,241,232,.10), 0 0 0 38px rgba(245,241,232,.18);
  }
  100% {
    box-shadow: 0 0 0 8px rgba(245,241,232,.18), 0 0 0 18px rgba(245,241,232,.14), 0 0 0 30px rgba(245,241,232,.10);
  }
}

@keyframes moveDots {
  0%, 100% {
    transform: translate(0, 0);
    box-shadow: 78px 52px 0 var(--cream), 20px 92px 0 var(--cream);
  }
  33% {
    transform: translate(3px, -2px);
    box-shadow: 74px 54px 0 var(--cream), 22px 90px 0 var(--cream);
  }
  66% {
    transform: translate(-2px, 3px);
    box-shadow: 80px 50px 0 var(--cream), 18px 94px 0 var(--cream);
  }
}

.minimal-section {
  min-height: 650px;
  margin-top: 28px;
  position: relative;
  padding: clamp(36px, 5vw, 78px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #0b0b0b;
}
.minimal-section h2 { max-width: 900px; }
.orb {
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,124,62,.28) 0%, rgba(232,124,62,.08) 55%, transparent 70%);
  box-shadow: 0 0 100px rgba(232,124,62,.3);
  animation: pulseGlow 8s ease-in-out infinite alternate, floatOrb 12s ease-in-out infinite;
}

.orb::before {
  content: '';
  position: absolute;
  inset: -30px;
  border: 1px dashed rgba(232, 124, 62, 0.25);
  border-radius: 50%;
  animation: rotateRing 20s linear infinite;
  pointer-events: none;
}

.orb::after {
  content: '';
  position: absolute;
  inset: -60px;
  border: 1px solid rgba(232, 124, 62, 0.1);
  border-radius: 50%;
  animation: rotateRing 30s linear infinite reverse;
  pointer-events: none;
}

@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 80px rgba(232, 124, 62, 0.25), inset 0 0 30px rgba(255, 255, 255, 0.05);
    background: radial-gradient(circle at 35% 35%, rgba(232,124,62,.32) 0%, rgba(232,124,62,.08) 60%, transparent 75%);
  }
  100% {
    box-shadow: 0 0 140px rgba(232, 124, 62, 0.45), inset 0 0 50px rgba(255, 255, 255, 0.1);
    background: radial-gradient(circle at 35% 35%, rgba(232,124,62,.42) 0%, rgba(232,124,62,.12) 50%, transparent 70%);
  }
}

@keyframes floatOrb {
  0%, 100% {
    transform: translateY(-50%) translate(0, 0);
  }
  50% {
    transform: translateY(-50%) translate(-15px, -15px);
  }
}

@keyframes rotateRing {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.mission-banner {
  min-height: 430px;
  margin-top: 28px;
  position: relative;
  display: grid;
  grid-template-columns: .35fr .65fr;
  gap: 40px;
  padding: clamp(36px, 5vw, 78px);
  background: var(--deep);
}
.mission-copy { position: relative; z-index: 2; }
.mission-copy h2 { font-size: clamp(42px, 4.4vw, 78px); max-width: 980px; }
.button {
  display: inline-flex;
  margin-top: 84px;
  padding: 22px 54px;
  border-radius: 999px;
  background: var(--acid);
  color: #091416;
  font-weight: 650;
  font-size: 20px;
}
.moon-shape {
  position: absolute;
  left: -95px;
  bottom: -140px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(245,241,232,.08);
  box-shadow: 0 0 120px rgba(245,241,232,.08);
}

.footer {
  width: min(94vw, 1680px);
  margin: 38px auto;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: rgba(245,241,232,.64);
}
.footer a { color: var(--acid); }

.careers-grid-new {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Mobile Menu Toggle Button */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 30;
}
.menu-toggle span {
  width: 100%;
  height: 2px;
  background-color: var(--text);
  transition: all 0.3s ease;
  border-radius: 2px;
}

@media (max-width: 980px) {
  .menu-toggle {
    display: flex;
  }
  
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 12px;
    background: rgba(8, 10, 10, 0.94);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 24px;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    z-index: 25;
  }
  
  .nav.active {
    display: flex;
  }

  .nav a:not(.nav-cta) {
    display: block !important;
    font-size: 18px;
    font-weight: 550;
    color: var(--text);
  }
  
  .nav-cta {
    width: 100%;
    text-align: center;
  }
  
  .menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .hero { min-height: 640px; }
  .split-card, .feature-section, .mission-banner { grid-template-columns: 1fr; }
  .cards-grid, .founders-grid, .careers-grid-new { grid-template-columns: 1fr; }
  .service-card h3 { margin-top: 90px; }
  .orb { opacity: .4; right: -60px; }
  .text-columns { font-size: 17px !important; line-height: 1.55 !important; gap: 24px !important; }
}

@media (max-width: 640px) {
  .site-header { margin-top: 12px; width: 94vw; padding: 10px 14px; }
  .brand { font-size: 18px; }
  .brand img { height: 22px !important; }
  .nav-cta { padding: 8px 14px; font-size: 13px; }
  h1 { font-size: clamp(28px, 8vw, 38px) !important; line-height: 1.1 !important; }
  h2 { font-size: 46px; }
  .text-columns { font-size: 14px !important; line-height: 1.5 !important; gap: 14px !important; }
  .hero { min-height: 500px; }
  .hero-content { padding: 60px 16px !important; }
  .hero-logo-wrap { margin-bottom: 1.5rem !important; }
  .hero-logo-wrap img { height: 45px !important; width: auto !important; }
  .hero .button { font-size: 15px !important; padding: 14px 32px !important; margin-top: 2rem !important; }
  .split-card, .feature-section, .cards-section, .minimal-section, .mission-banner { padding: 30px 22px; border-radius: 18px; }
  .service-card { padding: 24px !important; }
  .footer { flex-direction: column; }
  .cta-actions-wrap { flex-direction: column !important; justify-content: center !important; align-items: center !important; text-align: center; gap: 20px !important; }
  .linkedin-cta-link { width: 70px !important; height: 70px !important; }
  .linkedin-cta-link svg { width: 34px !important; height: 34px !important; }
}

/* Lighter Careers Styling */
.careers-section {
  padding: 60px 0;
}
.jobs-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 30px;
}
.job-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.03);
  text-decoration: none;
  color: inherit;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.job-row:hover {
  background: rgba(232, 124, 62, 0.03);
  border-color: rgba(232, 124, 62, 0.2);
  transform: translateY(-2px);
}
.job-info {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.job-title {
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 550;
  margin: 0;
  color: var(--text);
  transition: color 0.3s ease;
}
.job-row:hover .job-title {
  color: var(--acid);
}
.job-meta {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--muted);
}
.job-arrow {
  font-size: 18px;
  color: var(--muted);
  transition: all 0.3s ease;
}
.job-row:hover .job-arrow {
  transform: translateX(4px);
  color: var(--acid);
}

/* Product Suite Scroll Container & Custom Scrollbar */
.products-scroll-container {
  scrollbar-color: rgba(232, 124, 62, 0.4) rgba(255, 255, 255, 0.02);
}

.products-scroll-container::-webkit-scrollbar {
  height: 8px;
}

.products-scroll-container::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 10px;
}

.products-scroll-container::-webkit-scrollbar-thumb {
  background: rgba(232, 124, 62, 0.35);
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  transition: background 0.3s ease;
}

.products-scroll-container::-webkit-scrollbar-thumb:hover {
  background: rgba(232, 124, 62, 0.7);
}

/* ── LATEST NEWS (MISSION LOG) ── */
#news-large {
  position: relative;
  width: 100%;
  background: #000000;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 80px 0;
  overflow: hidden;
}

.news-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(232, 124, 62, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232, 124, 62, 0.05) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 0%, #000 45%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 0%, #000 45%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

.news-inner {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
}

.news-header { margin-bottom: 3rem; }

.news-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1rem;
}

#news-large .section-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 0;
}

.news-index {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--acid);
  text-decoration: none;
  padding: 0.7rem 1.1rem;
  border: 1px solid rgba(232, 124, 62, 0.3);
  border-radius: 4px;
  transition: all 0.3s ease;
}
.news-index:hover {
  background: rgba(232, 124, 62, 0.08);
  border-color: var(--acid);
}
.news-index span { margin-left: 0.4rem; transition: transform 0.3s; display: inline-block; }
.news-index:hover span { transform: translateX(4px); }

/* ── BLOG CAROUSEL ── */
.blog-carousel-viewport {
  overflow: hidden;
  width: 100%;
  position: relative;
  margin-top: 2rem;
}

.blog-carousel-track {
  display: flex;
  gap: 24px;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.blog-carousel-track .ncard {
  flex: 0 0 calc((100% - 48px) / 3);
  box-sizing: border-box;
}

.blog-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.blog-carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  line-height: 1;
  padding-bottom: 3px;
}

.blog-carousel-btn:hover {
  background: rgba(232, 124, 62, 0.12);
  border-color: var(--acid);
  color: var(--acid);
  transform: scale(1.05);
}

.blog-carousel-indicators {
  display: flex;
  gap: 8px;
  align-items: center;
}

.blog-carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: width 0.3s, background 0.3s, border-radius 0.3s;
}

.blog-carousel-dot.active {
  width: 22px;
  border-radius: 4px;
  background: var(--acid);
}

.ncard {
  display: flex;
  flex-direction: column;
  background: transparent !important;
  border: none !important;
  border-radius: 14px !important;
  box-shadow: none !important;
  text-decoration: none;
  color: inherit;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  overflow: hidden;
}

.ncard:hover {
  transform: translateY(-4px);
}

/* Media - perfectly square image! */
.ncard-media {
  position: relative;
  aspect-ratio: 1 / 1 !important;
  overflow: hidden;
  background: #000;
  width: 100%;
  border-radius: 14px;
}

.ncard-img {
  position: absolute;
  inset: -15%;
  background-size: cover;
  background-position: center;
  transition: transform 0.15s ease-out;
  will-change: transform;
}

.ncard:hover .ncard-img {
  /* scale is combined in js or handled directly */
}

/* Body */
.ncard-body {
  padding: 1.2rem 0 0 0 !important;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}

.ncard-body::before {
  display: none !important;
}

.ncard-meta-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 0.2rem;
}

.ncard-meta-tag {
  color: #fff;
  opacity: 0.85;
}

.ncard-meta-dot {
  width: 6px;
  height: 6px;
  background-color: var(--acid); /* Orange square! */
  display: inline-block;
  flex-shrink: 0;
}

.ncard-meta-date {
  color: var(--muted);
}

.ncard h3 {
  font-family: var(--sans);
  margin-top: 20px;
  font-size: 18px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 600px;
  transition: color 0.3s;
}

.ncard:hover h3 {
  color: var(--acid) !important;
}

.ncard-body p {
  font-family: var(--sans);
  margin-top: 20px;
  font-size: 16px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.6);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 1024px) {
  .blog-carousel-track .ncard {
    flex: 0 0 calc((100% - 24px) / 2) !important;
  }
}

@media (max-width: 768px) {
  #news-large {
    padding: 4rem 0 !important;
  }
  #news-large .news-inner {
    padding: 0 20px !important;
    max-width: 100% !important;
    width: 100% !important;
  }
  .blog-carousel-track .ncard {
    flex: 0 0 100% !important;
  }
}

/* ── NEWS MODAL POPUP (Cosmic Mode) ── */
.news-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.news-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.news-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(4, 5, 8, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.news-modal-container {
  position: relative;
  width: 90%;
  max-width: 680px;
  background: #0b0d16;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  overflow: hidden;
  z-index: 2;
  transform: scale(0.95) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.75), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.news-modal.active .news-modal-container {
  transform: scale(1) translateY(0);
}

.news-modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: rgba(13, 16, 27, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--muted);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  line-height: 1;
  padding-bottom: 3px;
}

.news-modal-close:hover {
  color: #fff;
  border-color: var(--acid);
  background: rgba(232, 124, 62, 0.12);
  transform: rotate(90deg);
}

.news-modal-media {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.news-modal-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.news-modal-body {
  padding: 2.5rem;
  max-height: 45vh;
  overflow-y: auto;
}

.news-modal-body::-webkit-scrollbar {
  width: 5px;
}
.news-modal-body::-webkit-scrollbar-track {
  background: transparent;
}
.news-modal-body::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 3px;
}

.news-modal-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.news-modal-tag {
  color: var(--text);
  opacity: 0.85;
}

.news-modal-dot {
  width: 6px;
  height: 6px;
  background-color: var(--acid);
}

.news-modal-date {
  color: var(--muted);
}

.news-modal-title {
  font-size: 1.55rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.35;
  letter-spacing: -0.01em;
  margin: 0 0 1.2rem;
}

.news-modal-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}

/* ── LINKEDIN SECTION ── */
#linkedin {
  padding: 80px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  overflow: hidden;
}

.linkedin-inner {
  max-width: 1400px;
  margin: 0 auto;
}

/* ── NEWS CAROUSEL (LINKEDIN EMBEDS) ── */
.news-carousel-viewport {
  overflow: hidden;
  width: 100%;
  position: relative;
  margin-top: 2rem;
}

.news-carousel-track {
  display: flex;
  gap: 24px;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.news-slide {
  flex: 0 0 calc((100% - 48px) / 3);
  box-sizing: border-box;
  height: 560px;
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
}

.news-slide:hover {
  transform: translateY(-3px);
  border-color: var(--acid);
}

.news-slide iframe {
  width: 100% !important;
  height: 100% !important;
  border: none;
  display: block;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  line-height: 1;
  padding-bottom: 3px;
}

.carousel-btn:hover {
  background: rgba(232, 124, 62, 0.12);
  border-color: var(--acid);
  color: var(--acid);
  transform: scale(1.05);
}

.carousel-indicators {
  display: flex;
  gap: 8px;
  align-items: center;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: width 0.3s, background 0.3s, border-radius 0.3s;
}

.carousel-dot.active {
  width: 22px;
  border-radius: 4px;
  background: var(--acid);
}

@media (max-width: 1024px) {
  .news-slide {
    flex: 0 0 calc((100% - 24px) / 2);
  }
}

@media (max-width: 768px) {
  .news-slide {
    flex: 0 0 100%;
  }
}

}

/* ── COSMIC FOOTER ── */
#footer {
  position: relative;
  background: #000;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 0 2rem;
  overflow: hidden;
}

.footer-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(232, 124, 62, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232, 124, 62, 0.06) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 0%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 0%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}
.footer-scanline {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent 0,
    transparent 3px,
    rgba(255,255,255,0.01) 3px,
    rgba(255,255,255,0.01) 4px
  );
  pointer-events: none;
  z-index: 0;
}

/* Top telemetry strip */
.footer-telem {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  max-width: 1400px;
  margin: 0 auto;
}
.telem-item { display: inline-flex; align-items: center; gap: 0.6rem; }
.telem-push { margin-left: auto; }
.telem-k { color: rgba(122, 128, 153, 0.8); }
.telem-v { color: #ffffff; }
.telem-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #7dd3a7;
  box-shadow: 0 0 8px #7dd3a7, 0 0 0 3px rgba(125, 211, 167, 0.15);
  animation: telemPulse 2s ease-in-out infinite;
}
@keyframes telemPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* Main grid */
.footer-main {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 6.5rem 0 3rem;
  display: grid;
  grid-template-columns: 1.15fr 1.1fr;
  gap: 4rem;
}

/* Brand mark column */
.mark-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  color: var(--acid);
  margin-bottom: 1rem;
}

.mark-word {
  display: grid;
  grid-template-columns: repeat(8, minmax(0,1fr));
  gap: 2px;
  margin: 0 0 1.2rem;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: 0;
  font-size: clamp(2.8rem, 6.2vw, 5.4rem);
  color: #ffffff;
}
.mark-word span {
  display: grid;
  place-items: center;
  padding: 0.25em 0;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 2px;
  background:
    linear-gradient(180deg, rgba(232, 124, 62,0.04), transparent 60%),
    rgba(255,255,255,0.015);
  transition: background 0.4s, color 0.4s, border-color 0.4s, transform 0.4s;
}
.mark-word span:hover {
  color: var(--acid);
  border-color: rgba(232, 124, 62,0.4);
  background: rgba(232, 124, 62,0.08);
  transform: translateY(-2px);
}

.mark-tag {
  font-size: 0.95rem;
  color: rgba(232, 234, 240, 0.5);
  margin: 0 0 2rem;
  max-width: 40ch;
}

.mark-contact {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0.8rem;
  max-width: 560px;
}
.contact-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  background: rgba(255,255,255,0.015);
  text-decoration: none;
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
}
a.contact-card:hover {
  border-color: rgba(232, 124, 62,0.4);
  background: rgba(232, 124, 62,0.04);
}
.contact-card .cc-label {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  color: var(--acid);
}
.contact-card .cc-value {
  font-size: 1rem;
  font-weight: 500;
  color: #ffffff;
}
.contact-card .cc-sub {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  color: rgba(122, 128, 153, 0.8);
}
.contact-card svg {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  color: rgba(232, 234, 240, 0.4);
  transition: transform 0.3s, color 0.3s;
}
a.contact-card:hover svg { transform: translate(2px,-2px); color: var(--acid); }

/* Nav grid */
.footer-nav-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding-top: 0.3rem;
}
.fnav-col h4 {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  color: var(--acid);
  margin: 0 0 1.2rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px dashed rgba(255,255,255,0.08);
  font-weight: 500;
}
.fnav-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.7rem; }
.fnav-col a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.92rem;
  color: rgba(232, 234, 240, 0.75);
  text-decoration: none;
  transition: color 0.25s, transform 0.25s, padding-left 0.25s;
  position: relative;
}
.fnav-col a::before {
  content: '';
  width: 0;
  height: 1px;
  background: var(--acid);
  transition: width 0.3s ease;
}
.fnav-col a:hover { color: #ffffff; }
.fnav-col a:hover::before { width: 14px; margin-right: 0.1rem; }
.fnav-col a i, .fnav-col a em {
  font-style: normal;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  padding: 0.15rem 0.4rem;
  border-radius: 3px;
  background: rgba(232, 124, 62, 0.1);
  color: var(--acid);
  border: 1px solid rgba(232, 124, 62, 0.25);
}
.fnav-col a em {
  background: rgba(125, 211, 167, 0.1);
  color: #7dd3a7;
  border-color: rgba(125, 211, 167, 0.25);
}
.fnav-col a .ext {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 0.75rem;
  color: rgba(122, 128, 153, 0.6);
  margin-left: 0.2rem;
  transition: transform 0.3s, color 0.3s;
}
.fnav-col a:hover .ext { transform: translate(2px,-2px); color: var(--acid); }

/* Giant wordmark separator */
.footer-wordmark {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0.5rem 0 0;
  opacity: 0.8;
  line-height: 0;
}
.footer-wordmark svg {
  width: 100%;
  height: auto;
  display: block;
}

/* Bottom */
.footer-bottom {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.5rem 0 1.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  color: rgba(122, 128, 153, 0.85);
  text-transform: uppercase;
  flex-wrap: wrap;
}
.fb-left, .fb-right { display: inline-flex; align-items: center; gap: 0.6rem; flex-wrap: wrap; }
.fb-sep { color: rgba(122, 128, 153, 0.4); }
.fb-logo-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 8px var(--acid);
}
.footer-bottom a {
  color: rgba(232, 234, 240, 0.7);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-bottom a:hover { color: var(--acid); }

@media (max-width: 1000px) {
  #footer { padding: 0 1.5rem; }
  .footer-main { grid-template-columns: 1fr; gap: 3rem; padding: 3rem 0 2rem; }
  .footer-nav-wrap { grid-template-columns: repeat(3, 1fr); }
  .mark-contact { grid-template-columns: 1fr; }
  .footer-telem { gap: 1.2rem; font-size: 0.6rem; }
  .telem-push { margin-left: 0; }
}

@media (max-width: 768px) {
  .footer-logo-wrap {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    text-align: center !important;
    margin: 2rem 0 !important;
    width: 100% !important;
  }
  .footer-logo-wrap img {
    margin: 0 auto !important;
    max-width: 180px !important;
    height: auto !important;
    display: block !important;
  }
  .footer-main {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 3rem !important;
    width: 100% !important;
  }
  .footer-mark {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
  }
  .mark-contact {
    width: 100% !important;
    align-items: center !important;
  }
  .contact-card {
    width: 100% !important;
    max-width: 320px !important;
  }
  .footer-nav-wrap {
    width: 100% !important;
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 1rem !important;
    text-align: center !important;
  }
}

@media (max-width: 640px) {
  .footer-nav-wrap { grid-template-columns: repeat(3, 1fr) !important; gap: 0.5rem !important; }
  .footer-bottom { flex-direction: column; align-items: flex-start; font-size: 0.62rem; }
}

#intro {
  padding-bottom: clamp(100px, 12vw, 160px) !important;
}

/* Products grid & compact cards (New Diagram Layout) */
.products-diagram-section {
  margin-top: 80px;
  padding-top: 60px;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}

.diagram-wrapper {
  width: 100%;
  overflow-x: auto; /* Enable scroll if smaller than 1080px but not triggered media queries */
  display: flex;
  justify-content: center;
  padding: 10px 0 40px;
}



.diagram-container {
  position: relative;
  width: 100%;
  height: 620px;
  flex-shrink: 0;
}

.diagram-arrows {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.diagram-column {
  position: absolute;
  background: rgba(11, 13, 23, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  padding: 24px 30px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-sizing: border-box;
  z-index: 2;
}

.onboard-column {
  left: 4.8%;
  top: 20px;
  width: 41%;
  height: 350px;
}

.offboard-column {
  left: 54.2%;
  top: 20px;
  width: 41%;
  height: 350px;
}

.validation-column {
  left: 28.6%;
  top: 410px;
  width: 42.8%;
  height: 170px;
}

.column-header {
  text-align: center;
  height: 40px;
  margin-bottom: 16px;
  box-sizing: border-box;
}

.validation-column .column-header {
  height: 34px;
  margin-bottom: 16px;
}

.column-header h3 {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #ffffff;
  margin: 0 0 8px 0;
}

.header-line {
  height: 2px;
  width: 100%;
  max-width: 180px;
  margin: 0 auto;
}

.line-cyan {
  background: linear-gradient(90deg, transparent, #00e5ff, transparent);
}

.line-orange {
  background: linear-gradient(90deg, transparent, #e87c3e, transparent);
}

.line-red {
  background: linear-gradient(90deg, transparent, #ff4d4d, transparent);
}

.column-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.diagram-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  min-height: 72px;
  box-sizing: border-box;
}

.onboard-column .diagram-card,
.offboard-column .diagram-card {
  height: 110px;
}

.validation-column .diagram-card {
  height: 90px;
}

.diagram-card:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.12);
}

.card-label {
  flex: 0 0 150px;
  font-weight: 700;
  font-size: clamp(20px, 1.8vw, 28px);
  color: var(--text);
  margin: 0 0 6px 0;
  letter-spacing: -0.03em;
  font-style: normal;
}

.card-cyan .card-label {
  color: #00e5ff;
}

.card-orange .card-label {
  color: #e87c3e;
}

.card-red .card-label {
  color: #ff4d4d;
}

.card-text {
  font-family: var(--sans);
  font-size: 15px;
  color: var(--muted);
  margin: 0;
  line-height: 1.4;
  flex-grow: 1;
}

@media (max-width: 1080px) {
  .diagram-wrapper {
    overflow-x: visible;
    padding: 0 20px;
  }
  
  .diagram-container {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  
  .diagram-arrows {
    display: none;
  }
  
  .diagram-column {
    position: static;
    width: 100%;
    height: auto;
  }
  
  .diagram-card {
    flex-direction: row;
    align-items: center;
    height: auto !important;
  }
  
  .column-header,
  .validation-column .column-header {
    height: auto !important;
  }
}

@media (max-width: 640px) {
  .diagram-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 16px;
  }
  
  .card-label {
    flex: none;
  }
}

/* Layout spacing & alignments */
.careers-section h2 {
  margin-bottom: 40px;
}
.news-title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 10px;
}

/* Founder Back Card Styles */
.founder-back-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
  text-align: left;
}
.founder-card-back h3 {
  font-size: clamp(20px, 1.8vw, 26px);
  color: var(--text);
  margin: 0 0 4px 0;
  font-family: 'Quicksand', sans-serif;
  font-weight: 300;
}
.founder-card-back .founder-role {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--acid);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 16px 0;
}
.founder-card-back .founder-bio {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
  flex-grow: 1;
  overflow-y: auto;
}
.founder-card-back .founder-linkedin-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  transition: color 0.3s;
  width: fit-content;
}
.founder-card-back .founder-linkedin-link:hover {
  color: var(--acid);
}





/* Hologram Effect for EraDrive Image */
.hologram-img {
  filter: sepia(1) hue-rotate(150deg) saturate(2.2) contrast(1.2) brightness(0.85);
  transform-origin: center;
}

.hologram-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: 
    repeating-linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.22),
      rgba(0, 0, 0, 0.22) 1px,
      transparent 1px,
      transparent 3px
    ),
    linear-gradient(to bottom, rgba(0, 210, 255, 0.08), rgba(0, 210, 255, 0.20));
  z-index: 1;
  mix-blend-mode: screen;
  opacity: 0.85;
  animation: hologramFlicker 0.2s infinite;
}

.scanline {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, transparent, rgba(0, 210, 255, 0.6) 20%, #ffffff 50%, rgba(0, 210, 255, 0.6) 80%, transparent);
  z-index: 2;
  pointer-events: none;
  animation: scanlineMove 12s linear infinite, glowPulse 2s ease-in-out infinite;
}

@keyframes scanlineMove {
  0% { top: 0%; }
  50% { top: 100%; }
  100% { top: 0%; }
}

@keyframes hologramFlicker {
  0%, 100% { opacity: 0.88; }
  50% { opacity: 0.82; }
  92% { opacity: 0.88; }
  93% { opacity: 0.45; }
  94% { opacity: 0.88; }
}

@keyframes glowPulse {
  0%, 100% {
    box-shadow: 0 0 10px rgba(0, 210, 255, 0.5), 0 0 18px rgba(0, 210, 255, 0.4);
    opacity: 0.6;
  }
  50% {
    box-shadow: 0 0 28px rgba(0, 210, 255, 1), 0 0 48px rgba(0, 210, 255, 0.9);
    opacity: 1;
  }
}