@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;
}

.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;
  }
}
.main-body.diode-home {
  padding-top: 0;
}

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

.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;
}

*, *::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: #F0F8F8;
  color: #1A2B2B;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

/* ── 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: 0.6rem;
  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.6rem, 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: 1.02rem;
  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: 0.72rem;
  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: 0.58rem;
  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: 0.59rem;
  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: 0.95rem;
  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: 0.78rem;
  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: 0.95rem;
  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: 0.72rem;
  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;
  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 */