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

.main-body.diode-home .main {
  min-height: auto;
  background: #f0f8f8;
  color: #1a2b2b;
}

/* ── CIRCUIT BG CANVAS (light version) ── */
#circuit-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* ── MAIN ── */
.page {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto;
  padding: 9rem 3rem 6rem;
}

/* ── EYEBROW ── */
.eyebrow {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #009695;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.eyebrow::after {
  content: "";
  width: 60px;
  height: 1px;
  background: rgba(0, 150, 149, 0.3);
}

.eyebrow-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #009695;
  animation: pulse 2.4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.2;
    transform: scale(0.6);
  }
}
/* ── HERO TEXT GLASS (light, near-opaque) ── */
.hero-text-glass {
  padding: 3rem 3.5rem 3rem;
  margin-bottom: 2.5rem;
  background: rgba(244, 252, 252, 0.9);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(0, 150, 149, 0.16);
  border-radius: 24px;
  box-shadow: 0 4px 48px rgba(0, 150, 149, 0.07), 0 1px 4px rgba(0, 0, 0, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

/* ── HERO TEXT ── */
h1.headline {
  font-size: clamp(2.5rem, 5vw, 4.6rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.03;
  color: #1A2B2B;
  margin-bottom: 1.6rem;
  max-width: 820px;
}

h1.headline .teal {
  color: #009695;
}

h1.headline .accent {
  color: #007574;
}

.sub {
  font-size: 14px;
  color: #5A7878;
  line-height: 1.88;
  max-width: 600px;
  margin-bottom: 2.5rem;
}

/* ── FORWARD BY DESIGN ── */
.fbd {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.fbd::before, .fbd::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(255, 122, 138, 0.22);
}

.fbd span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255, 105, 120, 0.72);
  white-space: nowrap;
}

/* ── HERO CANVAS ── */
.hero-canvas-wrap {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(240, 250, 250, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 150, 149, 0.14);
  box-shadow: 0 6px 40px rgba(0, 150, 149, 0.08), 0 1px 4px rgba(0, 0, 0, 0.04);
  margin-bottom: 2rem;
  position: relative;
}

.hero-canvas-wrap canvas {
  display: block;
  width: 100%;
  height: 380px;
}

.hero-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0.9rem 1.4rem;
  pointer-events: none;
}

.hc-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hc-left {
  color: rgba(0, 100, 100, 0.38);
}

.hc-right {
  color: rgba(0, 100, 100, 0.52);
}

.hc-center {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(0, 150, 149, 0.65);
}

/* ── RULE ── */
.rule {
  border: none;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
  margin: 0 0 2rem;
}

/* ── PILLARS ── */
.pillar {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  padding: 3.5rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.pillar:last-of-type {
  border-bottom: none;
}

.pillar.flip .p-visual {
  order: -1;
}

/* ── PILLAR TEXT GLASS ── */
.p-text {
  padding: 2.5rem 2.8rem;
  background: rgba(244, 252, 252, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(0, 150, 149, 0.14);
  border-radius: 18px;
  box-shadow: 0 4px 28px rgba(0, 150, 149, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.p-num {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(0, 150, 149, 0.5);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.p-num::before {
  content: "";
  width: 22px;
  height: 1px;
  background: rgba(0, 150, 149, 0.3);
}

.p-tag {
  font-size:14px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #009695;
  margin-bottom: 0.7rem;
  display: block;
}

.p-h {
  font-size: clamp(1.55rem, 2.4vw, 2.1rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.14;
  color: #1A2B2B;
  margin-bottom: 1.2rem;
}

.p-body {
  font-size: 14px;
  color: #5A7878;
  line-height: 1.88;
}

.p-body strong {
  color: #1A2B2B;
  font-weight: 600;
}

/* ── APAC STAT ── */
.p-stat {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  margin: 1.5rem 0 1.2rem;
  padding: 0.85rem 1.2rem;
  background: rgba(0, 150, 149, 0.07);
  border-left: 3px solid rgba(0, 150, 149, 0.28);
  border-radius: 0 8px 8px 0;
}

.p-stat-num {
  font-size: 2.1rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #009695;
  line-height: 1;
  flex-shrink: 0;
}

.p-stat-label {
  font-size: 14px;
  color: #5A7878;
  line-height: 1.55;
}

/* ── PILLAR VISUAL CARD ── */
.p-visual {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0, 150, 149, 0.13);
  background: rgba(238, 248, 248, 0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  aspect-ratio: 5/4;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 4px 28px rgba(0, 150, 149, 0.07), 0 1px 3px rgba(0, 0, 0, 0.04);
}

.pillar.flip .p-visual {
  aspect-ratio: auto;
  min-height: 420px;
}

.p-visual canvas {
  width: 100%;
  height: 100%;
  display: block;
}

/* ── VALUES BAR ── */
/* ── VALUES BAND — dark teal CTA style (matching other pages) ── */
.values-bar {
  margin-top: 0;
  padding: 5rem 3rem;
  background: linear-gradient(135deg, #009695 0%, #005a5a 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

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

.values-bar-left {
  position: relative;
  z-index: 1;
}

.values-bar-left h3 {
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
}

.values-bar-left p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.68);
  margin: 0;
  line-height: 1.72;
}

.values-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.4rem;
}

.val {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  border-radius: 2em;
  padding: 0.42em 1.2em;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.18s;
  cursor: default;
}

.val:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.6);
}

.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #009695 !important;
  background: #fff;
  border: none;
  border-radius: 2em;
  padding: 0.88em 2.4em;
  transition: all 0.2s;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.back-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
}

@media (max-width: 760px) {
  .pillar {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .pillar.flip .p-visual {
    order: 0;
  }
  .page {
    padding: 7rem 1.5rem 4rem;
  }
  .hero-text-glass {
    padding: 2rem 1.8rem;
  }
  .p-text {
    padding: 1.8rem 2rem;
  }
  .values-bar {
    flex-direction: column;
    padding: 3.5rem 1.5rem;
  }
  .hero-canvas-wrap canvas {
    height: 240px;
  }
}
/*# sourceMappingURL=vision.css.map */