@charset "UTF-8";
:root {
  --teal: #009695;
  --teal-d: #007574;
  --teal-l: #33B5B4;
  --teal-ll:#5ECECE;
  --teal-bg:#EAF6F6;
  --teal-bg2:#F0FAFA;
  --ink: #0A1414;
  --mid: #3A5252;
  --muted: #6B8888;
  --line: rgba(0,0,0,0.08);
  --lineb: rgba(0,0,0,0.05);
  --white: #ffffff;
  --off: #F5FAFA;
  --hero-bg:#F2FAFA;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 48px;
  transition: background 0.3s, border-bottom 0.3s, box-shadow 0.3s;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.04);
}

.logo-wrap {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.logo-wrap .logo {
  position: relative;
  display: flex;
  align-items: center;
  width: 140px;
  height: 46px;
}
.logo-wrap .logo__mark {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
}
.logo-wrap .logo__video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 38.4px;
  margin: 0;
  padding: 0;
}
.nav-links > li {
  position: relative;
  padding-top: 2px;
}
.nav-links .link {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  font-family: "Segoe UI", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: normal;
  color: var(--mid);
  white-space: nowrap;
  transition: color 0.2s;
}
.nav-links .link:hover {
  color: var(--teal);
}

.nav-chevron {
  flex-shrink: 0;
  width: 12px;
  height: 17px;
  color: currentColor;
  transition: transform 0.2s;
}

.nav-item--has-sub::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 100%;
  width: max(100%, 146px);
  height: 16px;
}
.nav-item--has-sub:hover > .link, .nav-item--has-sub:focus-within > .link {
  color: var(--teal);
}
.nav-item--has-sub:hover .nav-chevron, .nav-item--has-sub:focus-within .nav-chevron {
  transform: rotate(180deg);
}
.nav-item--has-sub:hover .depth2, .nav-item--has-sub:focus-within .depth2 {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
@media (max-width: 991.98px) {
  .nav-item--has-sub:hover .depth2, .nav-item--has-sub:focus-within .depth2 {
    transform: none;
  }
}

.depth2 {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 146px;
  padding: 16px 20px;
  margin: 0;
  list-style: none;
  background: var(--teal);
  border-radius: 20px;
  box-shadow: 0 4px 9px rgba(0, 150, 149, 0.3);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 1;
}
.nav-item--has-sub:not(:hover):not(:focus-within) .depth2 {
  transition-delay: 0.12s, 0.12s, 0s;
}
.depth2 .depth2-item {
  width: 100%;
}
.depth2 .link {
  justify-content: center;
  width: 100%;
  color: #fff;
  text-align: center;
}
.depth2 .link:hover {
  color: #fff;
  opacity: 0.85;
}

.ncta {
  display: inline-flex;
  align-items: center;
  background: var(--teal) !important;
  color: #fff !important;
  padding: 6px 18px;
  border-radius: 26.24px;
  font-size: 14px;
  font-weight: 600;
  line-height: normal;
  box-shadow: 0 2px 6px rgba(0, 150, 149, 0.22);
  transition: background 0.2s, box-shadow 0.2s !important;
}
.ncta:hover {
  background: var(--teal-d) !important;
  color: #fff !important;
  box-shadow: 0 4px 12px rgba(0, 150, 149, 0.32) !important;
}

nav > .nav-mobile__btn {
  display: none;
}

@media (max-width: 991.98px) {
  nav {
    padding: 16px 28.8px;
  }
  nav > .nav-links {
    display: none;
  }
  nav > .nav-mobile__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    flex-shrink: 0;
  }
  nav > .nav-mobile__btn svg path {
    stroke: var(--mid);
  }
}
body.nav-mobile-open {
  overflow: hidden;
}

.nav-mobile {
  z-index: 700;
  background-color: #fff;
  max-width: 600px;
  width: 100%;
  height: 100%;
  transition: 500ms all;
  text-align: left;
  position: fixed;
  top: 0;
  right: -100%;
  display: block;
}
.nav-mobile.active {
  right: 0;
}
.nav-mobile__btn {
  display: none;
}
.nav-mobile__bg {
  display: none;
  position: fixed;
  top: 0;
  width: 100%;
  left: 0;
  right: 0;
  min-height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 650;
}
.nav-mobile__head {
  height: 60px;
  position: relative;
  border-bottom: 1px solid var(--line);
}
.nav-mobile__head .logo-wrap .logo {
  width: 116px;
  height: 38px;
}
.nav-mobile__head .logo-wrap .logo__mark {
  left: 2px;
  width: 28px;
  height: 28px;
}
.nav-mobile__head .logo-bx {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 16px;
}
.nav-mobile__btn--close {
  position: static;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--mid);
  font-size: 1.25rem;
  cursor: pointer;
}
.nav-mobile__body {
  padding-bottom: 50px;
  position: relative;
  overflow-y: auto;
  height: calc(100vh - 60px);
}
.nav-mobile .nav-links {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  padding: 0;
}
.nav-mobile .nav-links > li {
  padding-top: 0;
}
.nav-mobile .nav-links > li::after {
  display: none;
}
.nav-mobile .nav-links > li > .link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1rem 1.25rem;
  font-size: 1rem;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  white-space: normal;
}
.nav-mobile .nav-links > li > .link:hover {
  color: var(--teal);
}
.nav-mobile .nav-links > li > .link.active {
  color: var(--teal);
}
.nav-mobile .nav-links .ncta {
  justify-content: center;
  margin: 1rem 1.25rem 0;
  width: calc(100% - 2.5rem);
}
@media (max-width: 991.98px) {
  .nav-mobile .nav-links .ncta {
    margin: 1rem 0 0;
  }
}
.nav-mobile .nav-item--has-sub > .link .nav-chevron {
  transition: transform 0.2s;
}
.nav-mobile .nav-item--has-sub.is-open > .link .nav-chevron {
  transform: rotate(180deg);
}
.nav-mobile .depth2 {
  position: static;
  opacity: 1;
  visibility: visible;
  transform: none;
  pointer-events: auto;
  min-width: 0;
  padding: 0;
  margin: 0;
  background: var(--teal-bg);
  border-radius: 0;
  box-shadow: none;
  display: none;
  gap: 0;
}
.nav-mobile .depth2 .link {
  justify-content: flex-start;
  padding: 0.85rem 1.25rem 0.85rem 2rem;
  font-size: 0.92rem;
  color: var(--mid);
  border-bottom: 1px solid rgba(0, 150, 149, 0.08);
  text-align: left;
}
.nav-mobile .depth2 .link:hover, .nav-mobile .depth2 .link.active {
  color: var(--teal-d);
  opacity: 1;
}
.nav-mobile .depth-1 > .link {
  text-align: left;
  color: #000;
  border-bottom: 1px solid #ddd;
  display: block;
  padding: 1rem 1rem;
  font-size: 1.2rem;
  position: relative;
}
.nav-mobile .depth-1 > .link.active {
  color: #fff;
}
.nav-mobile .depth-2 > .link {
  display: block;
  padding: 0.7rem 1rem;
  padding-left: 1.6rem;
  background-color: rgb(244.8, 244.8, 244.8);
  color: #555;
  font-size: 1rem;
}
.nav-mobile .depth-2:first-child > .link {
  padding-top: 1rem;
}
.nav-mobile .depth-2:last-child > .link {
  padding-bottom: 1rem;
}
.nav-mobile .depth-3 > .link {
  display: block;
  padding: 0.8rem 1rem;
  padding-left: 2.4rem;
  background-color: rgb(234.6, 234.6, 234.6);
  color: #555;
  font-size: 0.8rem;
}
.nav-mobile .depth-1 > .link,
.nav-mobile .depth-2 > .link {
  display: block;
  position: relative;
}
.nav-mobile .depth-1._down > .link.active:before,
.nav-mobile .depth-2._down > .link.active:before {
  content: "\e944";
}
.nav-mobile .depth-1._down > .link:before,
.nav-mobile .depth-2._down > .link:before {
  position: absolute;
  top: 50%;
  font-size: 1rem;
  margin-top: -0.5rem;
  right: 1rem;
}
.nav-mobile .nav-list--depth2,
.nav-mobile .nav-list--depth3 {
  display: none;
}

:root {
  --off:#F7F9F9;
  --hero:#F2FAFA;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  background: var(--white);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.main-body.diode-home {
  padding-top: 0;
}

.main-body.diode-home .main {
  min-height: auto;
}

/* SCROLL PROGRESS */
.sp {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: var(--teal);
  z-index: 700;
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.07s linear;
}

/* PAGE TABS */
.page-switcher {
  position: fixed;
  top: 82px;
  left: 0;
  right: 0;
  z-index: 500;
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.55rem 0;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 150, 149, 0.1);
}

.ptab {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.44em 1.55em;
  border-radius: 2em;
  border: none;
  background: transparent;
  cursor: pointer;
  color: var(--muted);
  transition: all 0.2s;
  font-family: inherit;
}

.ptab:hover {
  color: var(--teal);
}

.ptab.active {
  background: var(--teal);
  color: #fff;
  box-shadow: 0 3px 12px rgba(0, 150, 149, 0.25);
}

/* PAGE SECTIONS */
.page-section {
  display: none;
  padding-top: 126px;
}

.page-section.active {
  display: block;
}

/* HERO */
.hero-wrap {
  position: relative;
  height: 90vh;
  min-height: 540px;
  overflow: hidden;
  background: var(--hero);
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
}

.hero-content {
  padding: 0 3.5rem;
  max-width: 580px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(0, 150, 149, 0.28);
  border-radius: 2em;
  background: rgba(0, 150, 149, 0.06);
  padding: 0.35em 1em;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal-d);
  margin-bottom: 1.6rem;
}

.pulse {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--teal);
  animation: p 2.4s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes p {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.15;
  }
}
.hero-h {
  font-size: clamp(2.3rem, 4.2vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.06;
  color: var(--ink);
  margin-bottom: 1.2rem;
}

.hero-h span {
  color: var(--teal);
}

.hero-sub {
  font-size: 0.96rem;
  color: var(--mid);
  line-height: 1.84;
  max-width: 450px;
  margin-bottom: 2.4rem;
}

.hbtns {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.bw {
  display: inline-flex;
  align-items: center;
  background: var(--teal);
  color: #fff;
  padding: 0.82em 2em;
  border-radius: 2em;
  font-weight: 700;
  font-size: 0.87rem;
  box-shadow: 0 4px 16px rgba(0, 150, 149, 0.28);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.bw:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(0, 150, 149, 0.38);
  background: var(--teal-d);
}

.bo {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid rgba(0, 150, 149, 0.3);
  color: var(--teal-d);
  padding: 0.78em 1.6em;
  border-radius: 2em;
  font-weight: 600;
  font-size: 0.87rem;
  background: rgba(0, 150, 149, 0.04);
  transition: all 0.2s;
}

.bo:hover {
  border-color: var(--teal);
  background: rgba(0, 150, 149, 0.09);
}

/* SECTIONS */
.sec {
  padding: 6.5rem 0;
  position: relative;
  overflow: hidden;
}

.sec-alt {
  background: var(--off);
}

.sec-teal {
  background: var(--teal-bg2);
}

.sec-dark {
  background: var(--ink);
}

.wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 3rem;
}

.rule {
  border: none;
  border-top: 1px solid var(--line);
}

.lbl {
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  display: inline-block;
  border-bottom: 1.5px solid var(--teal);
  padding-bottom: 1px;
  margin-bottom: 1.1rem;
}

.lbl-w {
  color: rgba(150, 240, 240, 0.75);
  border-color: rgba(150, 240, 240, 0.35);
}

.edh {
  font-size: clamp(1.8rem, 2.7vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.12;
  color: var(--ink);
  margin-bottom: 0.85rem;
}

.edh-w {
  color: #fff;
}

.sub {
  font-size: 0.95rem;
  color: var(--mid);
  line-height: 1.82;
  max-width: 640px;
}

.sub-w {
  color: rgba(255, 255, 255, 0.58);
}

.fd {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fl {
  opacity: 0;
  transform: translateX(-16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fr {
  opacity: 0;
  transform: translateX(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fd.in, .fl.in, .fr.in {
  opacity: 1;
  transform: none;
}

/* ── VENN DIAGRAM ─────────────────────── */
.venn-section {
  background: var(--hero);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.venn-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(0, 150, 149, 0.055) 1px, transparent 1px);
  background-size: 26px 26px;
  pointer-events: none;
}

.venn-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 3rem;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}

.venn-text .lbl {
  color: var(--teal);
}

.venn-text h2 {
  font-size: clamp(1.8rem, 2.7vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.14;
  color: var(--ink);
  margin-bottom: 0.9rem;
}

.venn-text p {
  font-size: 0.93rem;
  color: var(--mid);
  line-height: 1.84;
  margin-bottom: 1.8rem;
  max-width: 440px;
}

.venn-pills {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.venn-pill {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 0.9rem 1.1rem;
  border-radius: 10px;
  background: #fff;
  border: 1px solid rgba(0, 150, 149, 0.12);
  transition: box-shadow 0.2s;
}

.venn-pill:hover {
  box-shadow: 0 4px 18px rgba(0, 150, 149, 0.1);
}

.venn-pill-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
  margin-top: 0.28rem;
}

.venn-pill strong {
  font-size: 0.87rem;
  font-weight: 700;
  color: var(--ink);
  display: block;
  margin-bottom: 0.18rem;
}

.venn-pill span {
  font-size: 0.79rem;
  color: var(--mid);
  line-height: 1.65;
}

.venn-diagram {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 380px;
}

.venn-svg {
  width: 100%;
  max-width: 480px;
  height: auto;
}

/* ── WHO WE HIRE ─────────────────────── */
.wh-strip {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 2.8rem;
}

.wh-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 0;
  align-items: stretch;
  border-bottom: 1px solid rgba(0, 150, 149, 0.09);
  padding: 2rem 0;
  transition: background 0.2s;
  border-radius: 8px;
}

.wh-row:last-child {
  border-bottom: none;
}

.wh-row:hover .wh-node-col {
  opacity: 1;
}

.wh-node-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  opacity: 0.6;
  transition: opacity 0.3s;
  padding-top: 0.2rem;
}

.wh-node {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--teal);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.wh-node-n {
  font-size: 0.62rem;
  font-weight: 800;
  color: var(--teal);
}

.wh-line {
  flex: 1;
  width: 2px;
  background: linear-gradient(180deg, rgba(0, 150, 149, 0.3), rgba(0, 150, 149, 0));
  margin-top: 4px;
}

.wh-content {
  padding-left: 2rem;
}

.wh-content h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.42rem;
  letter-spacing: -0.015em;
}

.wh-content p {
  font-size: 0.87rem;
  color: var(--mid);
  line-height: 1.78;
  max-width: 580px;
}

/* ── CIRCUIT DECORATION ──────────────── */
.circ-divider {
  position: relative;
  height: 48px;
  overflow: hidden;
}

.circ-divider svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* JOB CARDS */
.jobs-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 2.2rem;
}

.jcard {
  border: 1px solid rgba(0, 150, 149, 0.15);
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.jcard:hover {
  box-shadow: 0 5px 24px rgba(0, 150, 149, 0.1);
}

.jcard-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 1.7rem 2rem;
  cursor: pointer;
  position: relative;
}

.jcard-head::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--teal);
  border-radius: 3px 0 0 3px;
}

.jdept {
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.35rem;
  display: block;
}

.jcard-head h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.32rem;
}

.jtags {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.jtag {
  font-size: 0.62rem;
  font-weight: 700;
  padding: 0.22em 0.7em;
  border-radius: 2em;
  background: rgba(0, 150, 149, 0.08);
  color: var(--teal-d);
}

.jarrow {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1.5px solid rgba(0, 150, 149, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  font-size: 0.85rem;
  transition: all 0.25s;
  flex-shrink: 0;
}

.jcard.open .jarrow {
  transform: rotate(180deg);
  background: var(--teal);
  color: #fff;
  border-color: var(--teal);
}

.jcard-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease;
}

.jcard.open .jcard-body {
  max-height: 1000px;
}

.jcard-inner {
  padding: 0 2rem 2rem;
  border-top: 1px solid rgba(0, 150, 149, 0.1);
}

.jb-sec {
  margin-top: 1.4rem;
}

.jb-sec h5 {
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.65rem;
}

.jb-sec ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.32rem;
}

.jb-sec li {
  font-size: 0.84rem;
  color: var(--mid);
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  line-height: 1.62;
}

.jb-sec li::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
  margin-top: 0.55rem;
}

.jb-sec p {
  font-size: 0.86rem;
  color: var(--mid);
  line-height: 1.76;
}

.open-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(0, 150, 149, 0.08);
  border: 1px solid rgba(0, 150, 149, 0.22);
  border-radius: 2em;
  padding: 0.3em 0.95em;
  font-size: 0.67rem;
  font-weight: 800;
  color: var(--teal-d);
  letter-spacing: 0.04em;
  margin-bottom: 0.9rem;
}

.ob-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  animation: p 2.4s ease-in-out infinite;
}

.apply-btn {
  display: inline-flex;
  align-items: center;
  background: var(--teal);
  color: #fff;
  padding: 0.7em 1.8em;
  border-radius: 2em;
  font-weight: 700;
  font-size: 0.83rem;
  margin-top: 1.4rem;
  box-shadow: 0 4px 14px rgba(0, 150, 149, 0.22);
  transition: all 0.2s;
}

.apply-btn:hover {
  background: var(--teal-d);
}

/* PROCESS — visual timeline */
.proc-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  position: relative;
}

.proc-timeline::before {
  content: "";
  position: absolute;
  top: 19px;
  left: calc(12.5% + 8px);
  right: calc(12.5% + 8px);
  height: 1px;
  background: linear-gradient(90deg, var(--teal), rgba(0, 150, 149, 0.15), var(--teal));
}

.pt-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.pt-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  z-index: 1;
  position: relative;
  box-shadow: 0 0 0 6px rgba(0, 150, 149, 0.1);
}

.pt-icon svg {
  width: 18px;
  height: 18px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pt-step h5 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.3rem;
}

.pt-step p {
  font-size: 0.77rem;
  color: var(--mid);
  line-height: 1.65;
}

.pt-num {
  position: absolute;
  top: -8px;
  right: calc(50% - 22px);
  font-size: 0.55rem;
  font-weight: 800;
  color: var(--teal);
  letter-spacing: 0.1em;
}

/* NEWS */
.news-featured {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  border: 1px solid rgba(0, 150, 149, 0.13);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  margin-bottom: 2rem;
  transition: box-shadow 0.2s;
}

.news-featured:hover {
  box-shadow: 0 8px 32px rgba(0, 150, 149, 0.09);
}

.nf-img {
  background: var(--hero);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 260px;
  position: relative;
  overflow: hidden;
}

.nf-body {
  padding: 2.4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.nf-tag {
  font-size: 0.57rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: rgba(0, 150, 149, 0.09);
  color: var(--teal-d);
  padding: 0.26em 0.8em;
  border-radius: 2em;
  display: inline-block;
  margin-bottom: 0.9rem;
}

.nf-body h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.35;
  margin-bottom: 0.6rem;
  letter-spacing: -0.02em;
}

.nf-body p {
  font-size: 0.86rem;
  color: var(--mid);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.nf-meta {
  font-size: 0.7rem;
  color: var(--muted);
  margin-bottom: 1.4rem;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.nc {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
}

.nc:hover {
  box-shadow: 0 7px 28px rgba(0, 150, 149, 0.09);
  transform: translateY(-2px);
}

.nc-img {
  height: 148px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--hero);
}

.nc-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--teal);
  color: #fff;
  padding: 0.25em 0.75em;
  border-radius: 2em;
}

.nc-body {
  padding: 1.3rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.nc-date {
  font-size: 0.66rem;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 0.38rem;
}

.nc-body h4 {
  font-size: 0.93rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.4;
  margin-bottom: 0.38rem;
}

.nc-body p {
  font-size: 0.8rem;
  color: var(--mid);
  line-height: 1.68;
  flex: 1;
  margin: 0;
}

.nc-link {
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--teal);
  margin-top: 0.9rem;
  display: inline-block;
}

.nc-link:hover {
  text-decoration: underline;
}

.press-bar {
  background: var(--teal-bg2);
  border: 1px solid rgba(0, 150, 149, 0.13);
  border-radius: 14px;
  padding: 2rem 2.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 2.5rem;
}

.press-bar h4 {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.28rem;
}

.press-bar p {
  font-size: 0.83rem;
  color: var(--mid);
  line-height: 1.7;
}

.mk-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.4rem;
}

.mk-chip {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 0.78rem 1.1rem;
  transition: border-color 0.2s;
  min-width: 190px;
}

.mk-chip:hover {
  border-color: rgba(0, 150, 149, 0.3);
}

.mk-chip-icon {
  width: 30px;
  height: 30px;
  border-radius: 7px;
  background: rgba(0, 150, 149, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mk-chip-icon svg {
  width: 15px;
  height: 15px;
  stroke: var(--teal);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
}

.mk-chip span {
  font-size: 0.81rem;
  font-weight: 600;
  color: var(--ink);
}

/* CONTACT */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 3.5rem;
  align-items: stretch;
  margin-top: 1.5rem;
}

.cinfo-label {
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.4rem;
  display: block;
}

.cinfo-val {
  font-size: 0.9rem;
  color: var(--mid);
  line-height: 1.75;
}

.cinfo-val a {
  color: var(--teal-d);
  font-weight: 600;
}

.cinfo-val a:hover {
  text-decoration: underline;
}

.office-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(0, 150, 149, 0.07);
  border: 1px solid rgba(0, 150, 149, 0.18);
  border-radius: 2em;
  padding: 0.35em 0.95em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--teal-d);
  margin-top: 0.55rem;
}

.office-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  animation: p 2.4s ease-in-out infinite;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.cform {
  background: #fff;
  border: 2px solid #009695;
  border-radius: 18px;
  padding: 1.2rem;
  box-shadow: 0 4px 22px rgba(0, 0, 0, 0.05);
}

.cform iframe {
    height: 100%;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
  margin-bottom: 0.9rem;
}

.fgrp {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 0.9rem;
}

.fgrp label {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mid);
}

.fgrp input, .fgrp textarea {
  padding: 0.72rem 0.95rem;
  border: 1.5px solid rgba(0, 0, 0, 0.1);
  border-radius: 9px;
  font-family: inherit;
  font-size: 0.88rem;
  color: var(--ink);
  background: #fff;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  resize: vertical;
}

.fgrp input:focus, .fgrp textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0, 150, 149, 0.09);
}

.fgrp textarea {
  min-height: 118px;
}

.itabs {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-bottom: 1.1rem;
}

.itab {
  padding: 0.37em 0.9em;
  border-radius: 2em;
  font-size: 0.71rem;
  font-weight: 700;
  border: 1.5px solid rgba(0, 150, 149, 0.24);
  color: var(--teal-d);
  background: rgba(0, 150, 149, 0.04);
  cursor: pointer;
  transition: all 0.15s;
  font-family: inherit;
}

.itab.sel {
  background: var(--teal);
  color: #fff;
  border-color: var(--teal);
}

.itab-label {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 0.48rem;
  display: block;
}

.form-note {
  font-size: 0.71rem;
  color: var(--muted);
  margin-top: 0.9rem;
  line-height: 1.65;
}

.eq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.2rem;
}

.eq {
  border: 1px solid rgba(0, 150, 149, 0.12);
  border-radius: 12px;
  padding: 1.5rem 1.4rem;
  background: #fff;
  transition: all 0.2s;
}

.eq:hover {
  box-shadow: 0 5px 20px rgba(0, 150, 149, 0.09);
  transform: translateY(-2px);
}

.eq-icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: rgba(0, 150, 149, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.9rem;
}

.eq-icon svg {
  width: 17px;
  height: 17px;
  stroke: var(--teal);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.eq h4 {
  font-size: 0.87rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.3rem;
}

.eq p {
  font-size: 0.79rem;
  color: var(--mid);
  line-height: 1.65;
  margin: 0;
}

.eq a {
  display: inline-block;
  margin-top: 0.85rem;
  font-size: 0.73rem;
  font-weight: 700;
  color: var(--teal);
}

.eq a:hover {
  text-decoration: underline;
}

/* CTA + FOOTER */
.cta-band {
  background: linear-gradient(135deg, var(--teal) 0%, #004f4f 100%);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 26px 26px;
  pointer-events: none;
}

.cta-band h2 {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  margin-bottom: 0.8rem;
}

.cta-band p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.65);
  max-width: 440px;
  margin: 0 auto 2.2rem;
}

.cw {
  background: #fff;
  color: var(--teal);
  padding: 0.84em 2.2em;
  border-radius: 2em;
  font-weight: 700;
  font-size: 0.88rem;
  transition: transform 0.2s, box-shadow 0.2s;
  display: inline-block;
}

.cw:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.18);
}

/* FOOTER */
.diode-footer {
  background: #0a1414;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 33px 0 32px;
  z-index: 1;
  position: relative;
}

.diode-footer .wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.diode-footer .wrap .frow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  width: 100%;
}
.diode-footer .wrap .f-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
}
.diode-footer .wrap .flinks {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.diode-footer .wrap .logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}
.diode-footer .wrap .flink {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  padding: 0 6px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color 0.2s;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.diode-footer .wrap .design {
  font-size: 14px;
  font-weight: 600;
  color: #FF7A8A;
}
.diode-footer .wrap .flink:hover {
  color: rgba(255, 255, 255, 0.55);
}
.diode-footer .wrap .fsep {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.12);
  -webkit-user-select: none;
          user-select: none;
}
.diode-footer .wrap .fsocial {
  display: flex;
  align-items: center;
  gap: 7px;
  flex-shrink: 0;
}
.diode-footer .wrap .fsoc {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.diode-footer .wrap .fsoc:hover {
  color: rgba(255, 255, 255, 0.8);
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.04);
}
.diode-footer .wrap .fcopy {
  width: 100%;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.16);
}

@media (max-width: 768px) {
  .diode-footer .wrap {
    padding: 0 1.3rem;
  }
  .frow {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }
  .flinks {
    order: 3;
  }
  .fsocial {
    order: 2;
  }
}
/* venn animation */
@keyframes vfade {
  0% {
    opacity: 0;
    transform: scale(0.92);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.venn-svg .vc {
  animation: vfade 0.9s ease forwards;
  opacity: 0;
}

.venn-svg .vc:nth-child(1) {
  animation-delay: 0.1s;
}

.venn-svg .vc:nth-child(2) {
  animation-delay: 0.3s;
}

.venn-svg .vc:nth-child(3) {
  animation-delay: 0.5s;
}

.venn-svg .vcenter {
  animation: vfade 0.7s ease 0.7s forwards;
  opacity: 0;
}

@media (max-width: 960px) {
  .venn-wrap {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .venn-diagram {
    min-height: 260px;
  }
  .wh-strip .wh-row {
    grid-template-columns: 56px 1fr;
  }
  .news-grid, .eq-grid {
    grid-template-columns: 1fr;
  }
  .news-featured {
    grid-template-columns: 1fr;
  }
  .nf-img {
    min-height: 180px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .wrap {
    padding: 0 1.8rem;
  }
  .hero-content {
    padding: 0 1.8rem;
  }
  .proc-timeline {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
  .proc-timeline::before {
    display: none;
  }
  .press-bar {
    flex-direction: column;
  }
}
@media (max-width: 600px) {
  .hero-wrap {
    height: 80vh;
  }
  .sec {
    padding: 4.5rem 0;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .venn-wrap {
    padding: 0 1.5rem;
  }
  .cform {
    padding: 1.6rem;
  }
  .news-grid {
    grid-template-columns: 1fr;
  }
  .wh-node-col {
    display: none;
  }
  .wh-content {
    padding-left: 0;
  }
  .wh-strip .wh-row {
    grid-template-columns: none;
  }
}
.delay-08 {
  transition-delay: 0.08s;
}

.delay-10 {
  transition-delay: 0.1s;
}

.delay-15 {
  transition-delay: 0.15s;
}

.delay-16 {
  transition-delay: 0.16s;
}

.delay-24 {
  transition-delay: 0.24s;
}

.fd-intro {
  max-width: 680px;
  margin-bottom: 1rem;
}

.proc-cta {
  text-align: center;
  margin-top: 3.5rem;
}

.proc-cta-note {
  font-size: 0.86rem;
  color: var(--mid);
  margin-bottom: 1rem;
}

.hero-wrap--news {
  height: 68vh;
  min-height: 400px;
}

.hero-wrap--contact {
  height: 70vh;
  min-height: 420px;
}

.hero-canvas-fill {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.bw--sm {
  font-size: 0.82rem;
}

.bw--full {
  width: 100%;
  justify-content: center;
  margin-top: 0.4rem;
}

.nc-icon {
  width: 72px;
  opacity: 0.15;
}

.link-teal {
  color: var(--teal);
  font-weight: 600;
}

.sub--flush {
  margin-bottom: 0;
}

.edh--sm {
  font-size: clamp(1.4rem, 2.2vw, 2rem);
}

.form-intro {
  font-size: 0.87rem;
  color: var(--mid);
  line-height: 1.8;
  margin-top: 0.7rem;
  max-width: 340px;
}