/* ---------- Tokens ---------- */
:root {
  --purple-900: #2a0042;
  --purple-800: #3d0062;
  --purple-700: #57008b;   /* primary */
  --purple-600: #6a1ba3;
  --purple-500: #8642bd;
  --purple-200: #e9dcf3;
  --purple-100: #f4ecfa;
  --purple-50:  #faf6fd;

  --pink-500:  #ec4899;    /* accent */
  --pink-400:  #f472b6;
  --pink-100:  #fce7f3;

  --green-700: #00b80f;
  --green-600: #01ff13;    /* brand green */
  --green-500: #4dff5b;
  --green-100: #ccffd2;
  --green-50:  #ecffee;

  --ink-900: #14081f;
  --ink-800: #1f1230;
  --ink-700: #3b2a4e;
  --ink-500: #5d4a72;
  --ink-400: #7b6a8e;
  --ink-300: #a99bb9;
  --ink-200: #d4ccdd;
  --ink-100: #ece7f1;
  --paper:   #faf7fb;
  --paper-2: #f3eef6;
  --white:   #ffffff;

  --ok:    #16a34a;
  --warn:  #d97706;
  --err:   #dc2626;

  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;
  --r-xl: 24px;

  --shadow-sm: 0 1px 2px rgba(20,8,31,.06), 0 1px 1px rgba(20,8,31,.04);
  --shadow-md: 0 4px 14px rgba(42,0,66,.08), 0 1px 3px rgba(42,0,66,.05);
  --shadow-lg: 0 20px 50px rgba(42,0,66,.18), 0 4px 14px rgba(42,0,66,.08);

  --max-w: 1280px;
  --pad: clamp(20px, 4vw, 56px);

  --font-sans: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-sans);
  color: var(--ink-900);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.55;
  font-size: 16px;
  text-wrap: pretty;
}
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, h5 { font-family: var(--font-sans); margin: 0; letter-spacing: -0.02em; line-height: 1.15; }
p { margin: 0; }
input, textarea, select { font-family: inherit; font-size: inherit; color: inherit; }

/* ---------- Header (two-tier) ---------- */
.site-header {
  position: sticky; top: 0; z-index: 80;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--ink-100);
}

/* Utility bar (top) — contact + language */
.utility-bar {
  background: linear-gradient(90deg, #3a0058 0%, #25003a 100%); color: rgba(255,255,255,.78);
  font-size: 12.5px;
  font-weight: 500;
}
.utility-bar__inner {
  max-width: var(--max-w); margin: 0 auto;
  padding: 7px var(--pad);
  display: flex; align-items: center; gap: 22px;
}
.utility-bar a, .utility-bar button { color: inherit; }
.utility-bar__item {
  display: inline-flex; align-items: center; gap: 7px;
  line-height: 1;
}
.utility-bar__item:hover { color: white; }
.utility-bar__item .ic { opacity: .55; display: inline-flex; align-items: center; }
.utility-bar__cert {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--green-500);
}
.utility-bar__cert .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green-500); box-shadow: 0 0 8px var(--green-500); }
.utility-bar__spacer { flex: 1; }
@media (max-width: 760px) {
  .utility-bar__hide-sm { display: none; }
  .utility-bar__inner { gap: 14px; }
}

/* Main nav bar */
.site-header__bar {
  display: flex; align-items: center; gap: 16px;
  max-width: var(--max-w); margin: 0 auto;
  padding: 16px var(--pad);
}
.logo {
  display: flex; align-items: center; gap: 12px;
  font-weight: 800; letter-spacing: -0.02em;
  font-size: 17px; color: var(--ink-900);
}
.logo__mark {
  width: 38px; height: 38px; border-radius: 10px;
  background: linear-gradient(135deg, var(--purple-700) 0%, var(--pink-500) 100%);
  display: grid; place-items: center; color: white;
  font-weight: 800; font-size: 16px; letter-spacing: -.04em;
  box-shadow: 0 6px 20px -6px rgba(87,0,139,.5);
}
.logo__sub { font-size: 10px; color: var(--ink-500); letter-spacing: .12em; text-transform: uppercase; font-weight: 600; }

.nav { display: flex; align-items: center; gap: 2px; margin-left: 28px; }
.nav__btn {
  position: relative;
  padding: 10px 14px; border-radius: 8px;
  font-weight: 600; font-size: 14.5px; color: var(--ink-700);
  display: inline-flex; align-items: center; gap: 6px;
  transition: background .15s, color .15s;
}
.nav__btn:hover, .nav__btn[aria-expanded="true"] { background: var(--purple-50); color: var(--purple-700); }
.nav__btn .chev { display: inline-flex; align-items: center; transition: transform .15s; opacity: .65; }
.nav__btn[aria-expanded="true"] .chev { transform: rotate(180deg); }
.nav__btn:hover .chev { opacity: 1; }

.header__spacer { flex: 1; }

/* Language pill — lives in utility bar now */
.lang {
  display: inline-flex; gap: 1px; padding: 2px;
  background: rgba(255,255,255,.06); border-radius: 999px;
  border: 1px solid rgba(255,255,255,.1);
}
.lang button {
  padding: 5px 11px; border-radius: 999px;
  font-size: 11px; font-weight: 700; letter-spacing: .04em;
  color: rgba(255,255,255,.55);
  font-family: var(--font-mono);
  transition: color .15s, background .15s;
}
.lang button[aria-pressed="true"] { background: var(--pink-500); color: white; }
.lang button:hover:not([aria-pressed="true"]) { color: white; }

/* Quote-link in main nav — text-style, not a button */
.nav__quote {
  display: inline-flex; align-items: center; gap: 7px;
  font-weight: 700; font-size: 14px;
  color: var(--purple-700);
  padding: 10px 0 10px 18px;
  border-left: 1px solid var(--ink-100);
  margin-left: 10px;
  line-height: 1;
}
.nav__quote:hover { color: var(--pink-500); }
.nav__quote .ic { display: inline-flex; align-items: center; transition: transform .15s; }
.nav__quote:hover .ic { transform: translateX(3px); }

.hamburger {
  display: none;
  width: 40px; height: 40px; border-radius: 8px;
  align-items: center; justify-content: center;
  color: var(--ink-900); border: 1px solid var(--ink-100);
}
.hamburger:hover { background: var(--paper-2); }

@media (max-width: 960px) {
  .nav, .nav__quote { display: none; }
  .hamburger { display: inline-flex; }
}

/* ---------- Mega menu ---------- */
.mega {
  position: absolute; left: 0; right: 0; top: 100%;
  background: white; border-bottom: 1px solid var(--ink-100);
  box-shadow: var(--shadow-lg);
  animation: megaIn .18s ease-out;
}
@keyframes megaIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.mega__inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.2fr 1.4fr;
  gap: 0;
  padding: 0 var(--pad);
}
.mega__col {
  padding: 24px 0;
  border-right: 1px solid var(--ink-100);
}
.mega__col:last-child { border-right: none; }
.mega__col + .mega__col { padding-left: 28px; }
.mega__col-title {
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-400); font-weight: 700; margin-bottom: 10px;
  padding: 0 14px;
}
.mega__col--first .mega__col-title { padding-left: 0; }
.mega__item {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 14px; border-radius: 8px;
  font-size: 14.5px; font-weight: 500; color: var(--ink-800);
  cursor: pointer; width: 100%; text-align: left;
}
.mega__item:hover, .mega__item[aria-current="true"] {
  background: var(--purple-50); color: var(--purple-700);
}
.mega__item .swatch {
  width: 28px; height: 28px; border-radius: 7px; flex-shrink: 0;
}
.mega__item .arrow {
  margin-left: auto; opacity: 0; transition: opacity .15s;
  font-size: 14px; color: var(--purple-700);
}
.mega__item:hover .arrow, .mega__item[aria-current="true"] .arrow { opacity: 1; }

.mega__preview { padding: 24px 0 24px 28px; }
.mega__preview-card {
  border-radius: var(--r-lg);
  overflow: hidden; position: relative;
  aspect-ratio: 16/9;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 22px;
  color: white;
  box-shadow: var(--shadow-md);
}
.mega__preview-card h4 { font-size: 22px; font-weight: 700; margin-bottom: 6px; }
.mega__preview-card p { font-size: 13.5px; opacity: .9; max-width: 360px; }
.mega__preview-meta {
  display: flex; gap: 14px; font-size: 11px;
  font-family: var(--font-mono); margin-top: 14px;
  opacity: .85;
}
.mega__preview-meta span::before { content: "▸ "; opacity: .5; }

@media (max-width: 960px) { .mega { display: none; } }

/* ---------- Mobile drawer ---------- */
.drawer-backdrop {
  position: fixed; inset: 0; background: rgba(20,8,31,.6);
  z-index: 99; backdrop-filter: blur(2px);
  animation: fadeIn .15s ease-out;
}
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(380px, 88vw);
  background: white; z-index: 100;
  display: flex; flex-direction: column;
  animation: slideIn .25s ease-out;
}
@keyframes fadeIn { from { opacity: 0 } to { opacity: 1 } }
@keyframes slideIn { from { transform: translateX(100%) } to { transform: translateX(0) } }
.drawer__head { padding: 18px 22px; border-bottom: 1px solid var(--ink-100); display: flex; align-items: center; justify-content: space-between; }
.drawer__body { padding: 18px 22px; flex: 1; overflow-y: auto; }
.drawer__group { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-400); font-weight: 700; margin: 16px 0 6px; }
.drawer__item { display: flex; align-items: center; gap: 10px; padding: 11px 0; font-weight: 500; color: var(--ink-800); width: 100%; text-align: left; border-bottom: 1px solid var(--ink-100); }
.drawer__close { width: 36px; height: 36px; border-radius: 8px; display: grid; place-items: center; color: var(--ink-500); }
.drawer__close:hover { background: var(--paper-2); color: var(--ink-900); }

/* ---------- Layout ---------- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad); }
.section { padding: clamp(56px, 9vw, 110px) 0; }
.section--tight { padding: clamp(40px, 6vw, 70px) 0; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px; font-weight: 500; color: var(--purple-700);
  text-transform: uppercase; letter-spacing: .14em;
  display: inline-flex; align-items: center; gap: 8px;
  margin-bottom: 16px;
}
.eyebrow::before {
  content: ""; width: 22px; height: 1px; background: var(--purple-700);
}

.section__title {
  font-size: clamp(28px, 4vw, 44px); font-weight: 700;
  letter-spacing: -0.02em; max-width: 720px;
  color: var(--ink-900);
}
.section__lead {
  font-size: clamp(15px, 1.4vw, 17px); color: var(--ink-500);
  max-width: 620px; margin-top: 14px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(155deg, #1c0030 0%, #3d0062 38%, #57008b 70%, #6a1ba3 100%);
  color: white;
  padding: clamp(80px, 12vw, 140px) 0 clamp(70px, 10vw, 110px);
}
.hero::before {
  content: ""; position: absolute; right: -10%; top: -20%;
  width: 70vw; height: 70vw; max-width: 900px; max-height: 900px;
  background: radial-gradient(circle, rgba(236,72,153,.45) 0%, transparent 60%);
  filter: blur(40px);
  pointer-events: none;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at 30% 50%, black 0%, transparent 75%);
  pointer-events: none;
}
.hero__inner { position: relative; z-index: 2; max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad); }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 14px; border-radius: 999px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
  font-family: var(--font-mono); font-size: 12px; letter-spacing: .1em;
  text-transform: uppercase; margin-bottom: 24px;
  backdrop-filter: blur(10px);
}
.hero__eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--pink-400); box-shadow: 0 0 12px var(--pink-400); }
.hero__title {
  font-size: clamp(36px, 6vw, 72px); font-weight: 700; line-height: 1.05;
  letter-spacing: -0.03em; max-width: 900px;
}
.hero__title em {
  font-style: normal;
  background: linear-gradient(90deg, #f9a8d4 0%, #ec4899 50%, #fbcfe8 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero__lead { margin-top: 24px; font-size: clamp(16px, 1.6vw, 19px); color: rgba(255,255,255,.78); max-width: 620px; }
.hero__ctas { margin-top: 36px; display: flex; gap: 12px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 22px; border-radius: 10px;
  font-weight: 700; font-size: 14.5px;
  transition: all .15s;
  line-height: 1;
}
.btn--primary { background: white; color: var(--purple-800); }
.btn--primary:hover { background: var(--pink-100); }
.btn--ghost { background: transparent; color: white; border: 1px solid rgba(255,255,255,.25); }
.btn--ghost:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.5); }
.btn--purple { background: var(--purple-700); color: white; }
.btn--purple:hover { background: var(--purple-800); }
.btn--outline { background: transparent; color: var(--purple-700); border: 1px solid var(--ink-200); }
.btn--outline:hover { border-color: var(--purple-700); background: var(--purple-50); }

.hero__stats {
  margin-top: 70px; display: grid;
  grid-template-columns: repeat(4, 1fr); gap: 24px;
  padding-top: 28px; border-top: 1px solid rgba(255,255,255,.12);
}
.hero__stat .v { font-size: clamp(24px, 3vw, 34px); font-weight: 700; letter-spacing: -.02em; }
.hero__stat .l { font-size: 12px; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .1em; font-family: var(--font-mono); margin-top: 4px; }
@media (max-width: 720px) {
  .hero__stats { grid-template-columns: repeat(2, 1fr); gap: 18px; }
}

/* ---------- Industry cards ---------- */
.industry-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 18px; margin-top: 44px;
}
.industry-card {
  background: white; border-radius: var(--r-lg);
  overflow: hidden; cursor: pointer; text-align: left;
  border: 1px solid var(--ink-100);
  transition: transform .2s, box-shadow .2s, border-color .2s;
  display: flex; flex-direction: column;
  width: 100%;
}
.industry-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.industry-card__img {
  aspect-ratio: 4/3; position: relative; overflow: hidden;
  display: flex; align-items: flex-end; justify-content: space-between;
  padding: 16px; color: white;
}
.industry-card__img::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 0%, transparent 50%, rgba(0,0,0,.45) 100%);
}
.industry-card__img .tag, .industry-card__img .code {
  position: relative; z-index: 2;
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: .08em;
}
.industry-card__img .tag {
  background: rgba(255,255,255,.16);
  padding: 4px 9px; border-radius: 999px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2);
}
.industry-card__body { padding: 18px 18px 20px; }
.industry-card h3 { font-size: 18px; font-weight: 700; color: var(--ink-900); }
.industry-card p { font-size: 13.5px; color: var(--ink-500); margin-top: 6px; }
.industry-card__foot {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 16px; padding-top: 14px;
  border-top: 1px solid var(--ink-100);
  font-size: 13px; color: var(--ink-500);
}
.industry-card__foot .count { font-family: var(--font-mono); font-weight: 600; color: var(--purple-700); }
.industry-card__foot .go {
  font-weight: 700; color: var(--purple-700);
  display: inline-flex; align-items: center;
  transition: transform .2s;
}
.industry-card:hover .industry-card__foot .go { transform: translateX(4px); }

/* Background pattern fills for industry imagery */
.bg-animal-nutrition { background: linear-gradient(135deg, #d97706 0%, #f59e0b 60%, #fbbf24 100%); }
.bg-coatings { background: linear-gradient(135deg, #0f766e 0%, #14b8a6 60%, #5eead4 100%); }
.bg-construction { background: linear-gradient(135deg, #44403c 0%, #78716c 60%, #a8a29e 100%); }
.bg-cosmetics { background: linear-gradient(135deg, #be185d 0%, #ec4899 60%, #f9a8d4 100%); }
.bg-food { background: linear-gradient(135deg, #b45309 0%, #ea580c 60%, #fdba74 100%); }
.bg-health { background: linear-gradient(135deg, #166534 0%, #22c55e 60%, #86efac 100%); }
.bg-detergent { background: linear-gradient(135deg, #1d4ed8 0%, #3b82f6 60%, #93c5fd 100%); }
.bg-plastics { background: linear-gradient(135deg, #6d28d9 0%, #8b5cf6 60%, #c4b5fd 100%); }
.bg-oilgas { background: linear-gradient(135deg, #1f2937 0%, #475569 60%, #94a3b8 100%); }
.bg-textile { background: linear-gradient(135deg, #7c2d12 0%, #c2410c 60%, #fb923c 100%); }

.industry-card__img-pattern {
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(45deg, rgba(255,255,255,.05) 0px, rgba(255,255,255,.05) 1px, transparent 1px, transparent 12px);
  mix-blend-mode: overlay;
}

/* ---------- Section: Why ---------- */
.why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 18px; margin-top: 44px;
}
@media (max-width: 880px) { .why-grid { grid-template-columns: 1fr; } }
.why-card {
  background: white; padding: 30px;
  border-radius: var(--r-lg); border: 1px solid var(--ink-100);
}
.why-card__num {
  font-family: var(--font-mono); font-size: 12px;
  letter-spacing: .14em; color: var(--purple-700);
  font-weight: 600;
}
.why-card h3 { font-size: 22px; font-weight: 700; margin: 14px 0 10px; color: var(--ink-900); }
.why-card p { color: var(--ink-500); font-size: 14.5px; }
.why-card__icon {
  width: 44px; height: 44px; border-radius: 11px;
  background: linear-gradient(135deg, var(--purple-700), var(--pink-500));
  display: grid; place-items: center; color: white;
  font-weight: 800;
}
.why-card__icon--green {
  background: linear-gradient(135deg, var(--green-600), var(--green-500));
}
.why-card__icon--pink {
  background: linear-gradient(135deg, var(--pink-500), var(--pink-400));
}

/* ---------- Breadcrumbs ---------- */
.crumbs {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-family: var(--font-mono);
  color: var(--ink-400); margin-bottom: 26px;
  flex-wrap: wrap;
}
.crumbs a, .crumbs button { color: var(--ink-500); }
.crumbs a:hover, .crumbs button:hover { color: var(--purple-700); }
.crumbs .sep { opacity: .4; }
.crumbs .current { color: var(--ink-900); font-weight: 600; }

/* ---------- Industry detail ---------- */
.industry-header {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px;
  align-items: stretch; margin-bottom: 56px;
}
@media (max-width: 880px) {
  .industry-header { grid-template-columns: 1fr; gap: 28px; }
}
.industry-header__media {
  border-radius: var(--r-xl); min-height: 380px;
  position: relative; overflow: hidden;
  display: flex; align-items: flex-end; padding: 28px;
  color: white;
  box-shadow: var(--shadow-lg);
}
.industry-header__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,.4) 100%);
}
.industry-header__media .meta {
  position: relative; z-index: 2;
  font-family: var(--font-mono); font-size: 12px;
  letter-spacing: .1em; text-transform: uppercase;
  display: flex; gap: 16px;
}

.sub-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.sub-card {
  background: white; border: 1px solid var(--ink-100);
  border-radius: var(--r-lg); overflow: hidden;
  cursor: pointer; text-align: left; width: 100%;
  transition: all .2s;
  display: flex; flex-direction: column;
}
.sub-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--purple-200); }
.sub-card__img { width: 100%; aspect-ratio: 16/10; position: relative; overflow: hidden; }
.sub-card__img::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.3)); }
.sub-card__img .label {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  font-family: var(--font-mono); font-size: 10.5px;
  background: rgba(255,255,255,.18); backdrop-filter: blur(8px);
  padding: 4px 9px; border-radius: 999px; color: white;
  letter-spacing: .08em; border: 1px solid rgba(255,255,255,.22);
}
.sub-card__img .count-badge {
  position: absolute; bottom: 14px; right: 14px; z-index: 2;
  font-family: var(--font-mono); font-size: 10.5px;
  background: rgba(0,0,0,.35); backdrop-filter: blur(8px);
  padding: 4px 9px; border-radius: 999px; color: white;
  letter-spacing: .04em; border: 1px solid rgba(255,255,255,.12);
  font-weight: 600;
}
.sub-card__body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.sub-card h4 { font-size: 17px; font-weight: 700; }
.sub-card p { font-size: 13.5px; color: var(--ink-500); margin-top: 6px; flex: 1; }
.sub-card__foot {
  font-size: 13px; font-family: var(--font-mono);
  color: var(--purple-700); font-weight: 600;
  margin-top: 16px; padding-top: 14px;
  border-top: 1px solid var(--ink-100);
  display: flex; align-items: center; justify-content: space-between;
}

/* ---------- Product list / detail ---------- */
.product-toolbar {
  display: flex; gap: 12px; align-items: center;
  margin-top: 36px; margin-bottom: 22px; flex-wrap: wrap;
}
.search-input {
  flex: 1; min-width: 240px;
  display: flex; align-items: center; gap: 10px;
  background: white; border: 1px solid var(--ink-200);
  border-radius: 10px; padding: 10px 14px;
}
.search-input input { flex: 1; border: 0; outline: 0; font-size: 14.5px; background: transparent; }
.search-input input::placeholder { color: var(--ink-400); }

.product-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}
.product-card {
  background: white; border-radius: var(--r-lg);
  border: 1px solid var(--ink-100); overflow: hidden;
  text-align: left; cursor: pointer; width: 100%;
  transition: all .2s; display: flex; flex-direction: column;
}
.product-card:hover { box-shadow: var(--shadow-md); border-color: var(--purple-200); transform: translateY(-2px); }
.product-card__img {
  aspect-ratio: 1/1; position: relative;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: 13px;
  color: white; font-weight: 600;
  letter-spacing: .04em;
  overflow: hidden;
}
.product-card__img::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,.2) 0%, transparent 40%),
    radial-gradient(circle at 70% 80%, rgba(0,0,0,.18) 0%, transparent 50%);
}
.product-card__img-label { position: relative; z-index: 2; }
.product-card__cas {
  position: absolute; bottom: 10px; left: 10px; z-index: 2;
  font-family: var(--font-mono); font-size: 10px;
  background: rgba(255,255,255,.18); backdrop-filter: blur(8px);
  padding: 3px 8px; border-radius: 4px; letter-spacing: .04em;
  border: 1px solid rgba(255,255,255,.22);
}
.product-card__body { padding: 14px 16px 16px; flex: 1; display: flex; flex-direction: column; }
.product-card h4 { font-size: 15px; font-weight: 700; }
.product-card p { font-size: 13px; color: var(--ink-500); margin-top: 4px; flex: 1; }
.product-card__tags {
  display: flex; gap: 6px; flex-wrap: wrap; margin-top: 12px;
}
.product-card__tag {
  font-size: 10.5px; font-family: var(--font-mono); font-weight: 600;
  padding: 3px 7px; border-radius: 4px;
  background: var(--purple-50); color: var(--purple-700);
  letter-spacing: .04em;
}

/* product detail */
.product-detail { display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: start; }
@media (max-width: 880px) { .product-detail { grid-template-columns: 1fr; gap: 28px; } }
.product-hero-img {
  aspect-ratio: 1/1; border-radius: var(--r-xl);
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  color: white; font-family: var(--font-mono);
  font-size: 22px; font-weight: 700; letter-spacing: .03em;
}
.product-hero-img::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 25% 25%, rgba(255,255,255,.25), transparent 50%),
    radial-gradient(circle at 75% 80%, rgba(0,0,0,.25), transparent 50%);
}
.product-hero-img__label { position: relative; z-index: 2; padding: 16px 26px; background: rgba(0,0,0,.25); border-radius: 12px; backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,.18); }
.product-detail h1 { font-size: clamp(28px, 3.6vw, 40px); font-weight: 700; letter-spacing: -0.025em; margin-bottom: 14px; }
.product-detail .summary { color: var(--ink-500); font-size: 16px; }
.spec-list { margin-top: 28px; border-top: 1px solid var(--ink-100); }
.spec-list .row {
  display: grid; grid-template-columns: 180px 1fr; gap: 16px;
  padding: 14px 0; border-bottom: 1px solid var(--ink-100);
  font-size: 14.5px;
}
.spec-list .row .k {
  font-family: var(--font-mono); font-size: 12px;
  color: var(--ink-400); letter-spacing: .08em;
  text-transform: uppercase; padding-top: 2px;
}
.spec-list .row .v { color: var(--ink-900); font-weight: 500; }
.spec-list .row .v.mono { font-family: var(--font-mono); font-weight: 600; }

.product-also {
  background: var(--paper-2); padding: 24px; border-radius: var(--r-lg);
  margin-top: 32px;
}
.product-also h5 { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-500); font-weight: 700; margin-bottom: 12px; }
.product-also__chips { display: flex; flex-wrap: wrap; gap: 8px; }
.product-also__chip {
  font-size: 13px; font-weight: 600;
  padding: 7px 13px; border-radius: 999px;
  background: white; color: var(--ink-800); border: 1px solid var(--ink-200);
}
.product-also__chip:hover { border-color: var(--purple-700); color: var(--purple-700); background: var(--purple-50); }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 60px; align-items: start; }
@media (max-width: 880px) { .about-grid { grid-template-columns: 1fr; gap: 36px; } }
.about-body p { font-size: 16.5px; color: var(--ink-700); margin-bottom: 18px; line-height: 1.75; }
.about-body p:last-child { margin-bottom: 0; }
.about-visual {
  position: sticky; top: 120px;
  aspect-ratio: 4/5; border-radius: var(--r-xl);
  overflow: hidden;
  background: linear-gradient(160deg, var(--purple-800) 0%, var(--purple-700) 40%, var(--pink-500) 100%);
  color: white;
  padding: 36px;
  display: flex; flex-direction: column; justify-content: space-between;
  box-shadow: var(--shadow-lg);
}
.about-visual::after {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(circle at 70% 30%, black 0%, transparent 70%);
}
.about-visual__year { position: relative; z-index: 2; font-family: var(--font-mono); font-size: 13px; letter-spacing: .14em; text-transform: uppercase; opacity: .8; }
.about-visual__big { position: relative; z-index: 2; font-size: clamp(56px, 8vw, 96px); font-weight: 800; line-height: .95; letter-spacing: -.04em; }
.about-visual__big span { display: block; font-size: .35em; font-weight: 500; opacity: .8; letter-spacing: .02em; margin-top: 8px; }
.about-visual__pill {
  position: relative; z-index: 2;
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: .14em; text-transform: uppercase;
  padding: 7px 14px; border-radius: 999px;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
  align-self: flex-start;
  backdrop-filter: blur(8px);
  display: inline-flex; align-items: center; gap: 8px;
}
.about-visual__pill .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green-500); box-shadow: 0 0 8px var(--green-500); }

/* ---------- About: expanded sections ---------- */
.glance-strip {
  display: grid; grid-template-columns: repeat(5, 1fr);
  background: linear-gradient(135deg, #3a0058 0%, #25003a 100%); color: white;
  border-radius: var(--r-xl); overflow: hidden;
  margin: 56px 0;
}
.glance-strip__item {
  padding: 30px 26px;
  border-right: 1px solid rgba(255,255,255,.08);
  display: flex; flex-direction: column; gap: 4px;
}
.glance-strip__item:last-child { border-right: none; }
.glance-strip__item .v {
  font-size: clamp(28px, 3vw, 40px); font-weight: 800;
  letter-spacing: -.03em; line-height: 1;
}
.glance-strip__item .l {
  font-family: var(--font-mono); font-size: 10.5px;
  letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.55); font-weight: 600;
  margin-top: 8px;
}
.glance-strip__item--accent .v { color: var(--pink-400); }
.glance-strip__item--green .v  { color: var(--green-500); }
@media (max-width: 880px) { .glance-strip { grid-template-columns: repeat(2, 1fr); } .glance-strip__item:nth-child(even) { border-right: none; } }
@media (max-width: 480px) { .glance-strip { grid-template-columns: 1fr; } .glance-strip__item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); } .glance-strip__item:last-child { border-bottom: none; } }

/* Mission Vision Values */
.mvv-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
  margin-top: 40px;
}
@media (max-width: 880px) { .mvv-grid { grid-template-columns: 1fr; } }
.mvv-card {
  background: white; border: 1px solid var(--ink-100);
  border-radius: var(--r-lg); padding: 32px;
  position: relative; overflow: hidden;
}
.mvv-card__num {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: .14em; color: var(--ink-400); font-weight: 600;
  margin-bottom: 22px;
}
.mvv-card h3 { font-size: 22px; font-weight: 700; margin-bottom: 14px; color: var(--ink-900); }
.mvv-card p { color: var(--ink-500); font-size: 14.5px; line-height: 1.65; }
.mvv-card::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px;
}
.mvv-card--m::before { background: linear-gradient(180deg, var(--purple-700), var(--pink-500)); }
.mvv-card--v::before { background: linear-gradient(180deg, var(--pink-500), var(--green-500)); }
.mvv-card--s::before { background: linear-gradient(180deg, var(--green-500), var(--purple-700)); }

/* Timeline */
.timeline {
  margin-top: 40px;
  position: relative;
}
.timeline::before {
  content: ""; position: absolute;
  left: 9px; top: 12px; bottom: 12px;
  width: 1px; background: var(--ink-200);
}
.timeline__item {
  display: grid; grid-template-columns: 140px 1fr;
  gap: 36px; padding: 18px 0 22px 32px;
  position: relative;
}
.timeline__item::before {
  content: ""; position: absolute;
  left: 4px; top: 26px;
  width: 11px; height: 11px; border-radius: 50%;
  background: var(--purple-700);
  border: 3px solid var(--paper);
  box-shadow: 0 0 0 1px var(--ink-200);
}
.timeline__item--green::before { background: var(--green-600); }
.timeline__item--pink::before  { background: var(--pink-500); }
.timeline__year {
  font-family: var(--font-mono);
  font-size: 28px; font-weight: 700;
  letter-spacing: -.02em; color: var(--purple-700);
  line-height: 1;
}
.timeline__year .label {
  display: block; font-size: 10px;
  font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--ink-400);
  margin-top: 6px;
}
.timeline__body h4 { font-size: 19px; font-weight: 700; color: var(--ink-900); margin-bottom: 6px; }
.timeline__body p  { color: var(--ink-500); font-size: 14.5px; line-height: 1.65; max-width: 560px; }
@media (max-width: 640px) {
  .timeline__item { grid-template-columns: 1fr; gap: 8px; }
  .timeline__year { font-size: 22px; }
}

/* Honors grid */
.honors-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 14px; margin-top: 40px;
}
@media (max-width: 720px) { .honors-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .honors-grid { grid-template-columns: 1fr; } }
.honor-card {
  background: white; border: 1px solid var(--ink-100);
  border-radius: var(--r-lg); padding: 22px;
  display: flex; gap: 16px; align-items: center;
  transition: all .2s;
}
.honor-card:hover { border-color: var(--purple-200); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.honor-card__seal {
  width: 56px; height: 56px; flex-shrink: 0;
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-mono); font-weight: 700; font-size: 10px;
  letter-spacing: .04em;
  color: white;
  text-align: center; padding: 6px;
  line-height: 1.1;
}
.honor-card__seal--purple { background: linear-gradient(135deg, var(--purple-700), var(--pink-500)); }
.honor-card__seal--green  { background: linear-gradient(135deg, var(--green-600), var(--green-500)); }
.honor-card__seal--pink   { background: linear-gradient(135deg, var(--pink-500), var(--pink-400)); }
.honor-card__body .k {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: .1em; color: var(--ink-400);
  text-transform: uppercase; font-weight: 600;
  margin-bottom: 3px;
}
.honor-card__body .v { font-size: 15px; font-weight: 700; color: var(--ink-900); line-height: 1.3; }

/* Marketing network */
.network {
  margin-top: 40px;
  background: linear-gradient(160deg, #1c0030 0%, #3d0062 60%, #57008b 100%);
  color: white;
  border-radius: var(--r-xl);
  padding: 44px;
  position: relative; overflow: hidden;
}
.network::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(circle at 50% 50%, black 0%, transparent 75%);
  pointer-events: none;
}
.network__inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 280px 1fr;
  gap: 48px; align-items: center;
}
@media (max-width: 880px) { .network__inner { grid-template-columns: 1fr; gap: 32px; } }
.network__legend { display: flex; flex-direction: column; gap: 16px; }
.network__legend-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 13.5px;
}
.network__legend-item .dot {
  width: 14px; height: 14px; border-radius: 50%;
  display: inline-block; flex-shrink: 0;
}
.network__legend-item .dot--hq        { background: var(--pink-500); box-shadow: 0 0 0 4px rgba(236,72,153,.18); }
.network__legend-item .dot--warehouse { background: var(--green-500); box-shadow: 0 0 0 4px rgba(16,185,129,.18); }
.network__legend-item .dot--coverage  { background: rgba(255,255,255,.6); }
.network__legend-item .l   { color: rgba(255,255,255,.55); font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 2px; }

.network__map {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: var(--r-lg);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
}
.network__pin {
  position: absolute;
  width: 12px; height: 12px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.network__pin--hq        { width: 16px; height: 16px; background: var(--pink-500); box-shadow: 0 0 0 4px rgba(236,72,153,.25), 0 0 18px rgba(236,72,153,.7); z-index: 3; }
.network__pin--warehouse { width: 14px; height: 14px; background: var(--green-500); box-shadow: 0 0 0 3px rgba(16,185,129,.25), 0 0 14px rgba(16,185,129,.6); z-index: 2; }
.network__pin--coverage  { width: 8px;  height: 8px;  background: rgba(255,255,255,.7); box-shadow: 0 0 0 3px rgba(255,255,255,.08); }

.network__pin .city {
  position: absolute;
  white-space: nowrap;
  font-family: var(--font-mono); font-size: 11px;
  font-weight: 600; letter-spacing: .04em;
  color: rgba(255,255,255,.9);
  padding: 3px 8px;
  background: rgba(0,0,0,.55);
  border-radius: 4px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.08);
  pointer-events: none;
}
/* Label side positioning */
.network__pin[data-side="right"]  .city { left: 100%; top: 50%; transform: translate(8px, -50%); }
.network__pin[data-side="left"]   .city { right: 100%; top: 50%; transform: translate(-8px, -50%); }
.network__pin[data-side="top"]    .city { left: 50%; bottom: 100%; transform: translate(-50%, -8px); }
.network__pin[data-side="bottom"] .city { left: 50%; top: 100%;   transform: translate(-50%, 8px); }

/* Coverage labels are hover-only and smaller */
.network__pin--coverage .city {
  color: rgba(255,255,255,.85);
  font-size: 10px;
  padding: 2px 6px;
  opacity: 0;
  transition: opacity .15s;
}
.network__pin--coverage:hover {
  z-index: 4;
}
.network__pin--coverage:hover .city {
  opacity: 1;
}
.network__pin--coverage:hover {
  background: white;
  box-shadow: 0 0 0 4px rgba(255,255,255,.18), 0 0 12px rgba(255,255,255,.5);
}

@keyframes pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50%      { transform: translate(-50%, -50%) scale(1.15); }
}
.network__pin--hq, .network__pin--warehouse { animation: pulse 2.4s ease-in-out infinite; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 28px; align-items: start; }
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; gap: 24px; } }

.contact-info {
  background: linear-gradient(160deg, #3a0058 0%, #25003a 100%); color: white;
  padding: 36px; border-radius: var(--r-xl);
}
.contact-info h3 { font-size: 22px; font-weight: 700; margin-bottom: 6px; letter-spacing: -.02em; }
.contact-info p.lead { color: rgba(255,255,255,.65); font-size: 14px; margin-bottom: 22px; }
.contact-info .item {
  display: flex; gap: 14px; padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,.1);
}
.contact-info .item:last-of-type { border-bottom: 1px solid rgba(255,255,255,.1); }
.contact-info .item__icon {
  width: 36px; height: 36px; flex-shrink: 0; border-radius: 9px;
  background: rgba(236,72,153,.15); color: var(--pink-400);
  display: grid; place-items: center;
}
.contact-info .item__k { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.5); font-family: var(--font-mono); font-weight: 600; margin-bottom: 3px; }
.contact-info .item__v { font-size: 14.5px; line-height: 1.5; }
.contact-info .item__v a:hover { color: var(--pink-400); }

.contact-cert {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 22px;
  padding: 8px 14px; border-radius: 999px;
  background: rgba(16,185,129,.12); color: var(--green-500);
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: .14em; text-transform: uppercase; font-weight: 600;
  border: 1px solid rgba(16,185,129,.25);
}
.contact-cert .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green-500); box-shadow: 0 0 8px var(--green-500); }

.contact-form-wrap {
  background: white; border: 1px solid var(--ink-100);
  border-radius: var(--r-xl); padding: 32px;
}
.contact-form-wrap__head { margin-bottom: 22px; }
.contact-form-wrap__head h3 { font-size: 22px; font-weight: 700; letter-spacing: -.02em; }
.contact-form-wrap__head p { color: var(--ink-500); font-size: 14px; margin-top: 4px; }

.map-section {
  margin-top: 40px;
  border-radius: var(--r-xl); overflow: hidden;
  border: 1px solid var(--ink-100);
  height: 380px;
}
.map-section iframe { border: 0; width: 100%; height: 100%; }
@media (max-width: 600px) { .map-section { height: 280px; } }

/* form */
.form { display: grid; gap: 16px; }
.field { position: relative; }
.field input, .field textarea {
  width: 100%; border: 1px solid var(--ink-200);
  border-radius: 10px; padding: 22px 14px 10px;
  font-size: 15px; background: white; color: var(--ink-900);
  transition: border-color .15s, box-shadow .15s;
}
.field textarea { resize: vertical; min-height: 120px; padding-top: 24px; }
.field input:focus, .field textarea:focus {
  outline: 0; border-color: var(--purple-700);
  box-shadow: 0 0 0 4px var(--purple-50);
}
.field label {
  position: absolute; left: 14px; top: 16px;
  font-size: 14.5px; color: var(--ink-400);
  pointer-events: none; transition: all .15s;
  background: transparent;
}
.field input:focus + label,
.field input:not(:placeholder-shown) + label,
.field textarea:focus + label,
.field textarea:not(:placeholder-shown) + label {
  top: 6px; font-size: 11px; color: var(--purple-700);
  font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
  font-family: var(--font-mono);
}
.field--invalid input, .field--invalid textarea { border-color: var(--err); }
.field--invalid input:focus, .field--invalid textarea:focus { box-shadow: 0 0 0 4px #fee2e2; }
.field__err {
  margin-top: 6px; font-size: 12px; color: var(--err);
  font-family: var(--font-mono); display: flex; align-items: center; gap: 6px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form__submit {
  margin-top: 6px; padding: 14px 22px;
  background: var(--purple-700); color: white;
  border-radius: 10px; font-weight: 700; font-size: 15px;
  display: inline-flex; align-items: center; gap: 10px;
  align-self: flex-start;
}
.form__submit:hover { background: var(--purple-800); }
.form__success {
  padding: 16px; border-radius: 10px;
  background: #ecfdf5; color: #065f46;
  font-size: 14px; font-weight: 600;
  display: flex; align-items: center; gap: 10px;
  border: 1px solid #a7f3d0;
}

/* ---------- Footer ---------- */
.footer {
  background: linear-gradient(180deg, #3a0058 0%, #25003a 100%); color: rgba(255,255,255,.7);
  padding: 64px 0 28px;
}
.footer__top {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px;
  padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,.08);
}
@media (max-width: 880px) { .footer__top { grid-template-columns: 1fr 1fr; gap: 28px; } }
@media (max-width: 540px) { .footer__top { grid-template-columns: 1fr; } }
.footer__brand .logo { color: white; }
.footer__brand .logo__sub { color: rgba(255,255,255,.4); }
.footer__brand p { margin-top: 16px; font-size: 13.5px; max-width: 300px; }
.footer h5 { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.5); font-weight: 700; font-family: var(--font-mono); margin-bottom: 14px; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.footer a { font-size: 13.5px; }
.footer a:hover { color: white; }
.footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 26px;
  font-size: 12px; font-family: var(--font-mono); color: rgba(255,255,255,.4);
  flex-wrap: wrap; gap: 14px;
}

/* ---------- Misc ---------- */
.empty {
  padding: 40px; text-align: center; border-radius: var(--r-lg);
  background: white; border: 1px dashed var(--ink-200);
  color: var(--ink-500);
}
.kbd {
  font-family: var(--font-mono); font-size: 11px;
  padding: 2px 6px; border-radius: 4px;
  background: var(--paper-2); border: 1px solid var(--ink-200);
  color: var(--ink-700); font-weight: 600;
}

/* Version switcher */
.v-switch {
  position: fixed; bottom: 18px; left: 18px; z-index: 60;
  background: white;
  border: 1px solid var(--ink-100);
  border-radius: 999px;
  padding: 6px;
  display: inline-flex; gap: 4px;
  box-shadow: 0 8px 26px -10px rgba(20,8,31,.18), 0 2px 8px rgba(20,8,31,.06);
}
.v-switch a {
  padding: 6px 14px; border-radius: 999px;
  font-family: var(--font-mono); font-size: 11px;
  font-weight: 600; letter-spacing: .08em;
  color: var(--ink-500);
}
.v-switch a[data-active="true"] { background: var(--ink-900); color: white; }
.v-switch a:hover:not([data-active="true"]) { color: var(--ink-900); }

/* small chevron icon */
.icon-chev { display: inline-block; width: 10px; height: 10px; }
