/*
 |=======================================================================================================================
 | Overview Using Less Steps
 |=======================================================================================================================
 | 1. npm install -g less
 | 2. npm install -g less-watch-compiler
 | 3. npm install css-minify -g
 | 4. less-watch-compiler
 | 5. css-minify -f filename
 |-----------------------------------------------------------------------------------------------------------------------
 |
 */
/*
 |=======================================================================================================================
 | Install Less with Node.js
 |=======================================================================================================================
 | #https://lesscss.org
 |
 | npm install -g less
 |-----------------------------------------------------------------------------------------------------------------------
 |
 */
/*
 |=======================================================================================================================
 | Compile .less to .css 
 |=======================================================================================================================
 | #Example Command Line Usage, work with Windows
 | lessc main.less main.css
 |-----------------------------------------------------------------------------------------------------------------------
 |
 */
/*
 |=======================================================================================================================
 | LESS CSS Watch Compiler
 |=======================================================================================================================
 | https://www.npmjs.com/package/less-watch-compiler
 |-----------------------------------------------------------------------------------------------------------------------
 | #The commands below may need to be prefixed with sudo depending upon your system
 | npm install -g less-watch-compiler
 |
 | #The Project Can Be Compiled With The Following Command:
 | less-watch-compiler
 |-----------------------------------------------------------------------------------------------------------------------
 */
/*
 |=======================================================================================================================
 | Using Minify CSS with CMD
 |=======================================================================================================================
 | https://www.geeksforgeeks.org/minification-of-css-files
 |
 | #Install Minification of CSS files
 | npm install css-minify -g
 |
 | #To minify a single CSS file, type the following command:
 | css-minify -f filename
 |-----------------------------------------------------------------------------------------------------------------------
 */
/*
 |=======================================================================================================================
 | Variables — Nutrition Depot China (design concept 3B: logo teal + white)
 |=======================================================================================================================
 | Source design: Downloads/nutritiondepot-cn-home-designs/design-3-apac-network-mascot.html
 | The ND logo teal (#6ac3b3) is only 2:1 on white, so it is never used for text on white:
 | text accents use --teal-deep, and text sitting ON teal uses --on-teal.
 |
 | NOTE: LESS evaluates clamp() / min() / calc() arguments — always escape them as ~"...".
 |
 */
:root {
  --white: #fff;
  --tint: #f0f8f6;
  --ink: #10201d;
  --ink-2: #3a4a46;
  --muted: #66756f;
  --rule: #d9e6e2;
  --teal: #6ac3b3;
  --teal-hover: #56b7a5;
  --teal-soft: #a9dcd2;
  --teal-deep: #1d7a6b;
  --on-teal: #0d2420;
  --on-teal-2: #1f3d37;
  --wrap: 1280px;
  --gutter: clamp(16px, 4vw, 48px);
  --f-sans: "ND Sans", "PingFang SC", "HarmonyOS Sans SC", "MiSans", "Microsoft YaHei", "Noto Sans SC", system-ui, sans-serif;
  --f-serif: "ND Serif", "Songti SC", "STSong", "Noto Serif SC", "Source Han Serif SC", "SimSun", serif;
  --f-lab: "Archivo", "ND Sans", sans-serif;
  --ease: cubic-bezier(0.2, 0.75, 0.2, 1);
}
/*
|-------------------------------------------------------------------------------------------------------------------------------
| Base (identical to the design)
|-------------------------------------------------------------------------------------------------------------------------------
|
*/
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font: 400 16px/1.8 var(--f-sans);
  overflow-x: clip;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea {
  font: inherit;
  color: inherit;
}
main {
  display: block;
}
/*
|-------------------------------------------------------------------------------------------------------------------------------
| WordPress Core styles
|-------------------------------------------------------------------------------------------------------------------------------
|
*/
.alignnone {
  margin: 5px 20px 20px 0;
}
.aligncenter {
  display: block;
  margin: 5px auto;
}
.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}
.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}
.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
/*
|-------------------------------------------------------------------------------------------------------------------------------
| Shared components (site-wide)
|-------------------------------------------------------------------------------------------------------------------------------
| The design's .btn / .btn-ink / .btn-line / .btn-lime are renamed .nd-btn / --teal / --line so that
| Bootstrap's own .btn (loaded on inner pages) can never mix into them. Values are unchanged.
|
*/
.wrap {
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.lab {
  font: 600 12px/1.2 var(--f-lab);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.serif {
  font-family: var(--f-serif);
}
.nd-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  height: 54px;
  padding: 0 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.25s;
  white-space: nowrap;
}
.nd-btn svg {
  width: 18px;
  height: 18px;
  transition: transform 0.25s;
}
.nd-btn:hover svg {
  transform: translateX(4px);
}
.nd-btn--teal {
  background: var(--teal);
  color: var(--on-teal);
}
.nd-btn--teal:hover {
  background: var(--teal-hover);
}
.nd-btn--line {
  background: #fff;
  border-color: var(--rule);
  color: var(--ink);
}
.nd-btn--line:hover {
  border-color: var(--teal);
}
.nd-btn--sm {
  height: 44px;
  padding: 0 18px;
  gap: 10px;
  font-size: 14px;
}
.nd-btn--ink {
  background: var(--ink);
  color: var(--white);
}
.nd-btn--ink:hover {
  background: var(--on-teal-2);
  color: var(--white);
}
.link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}
.link svg {
  width: 16px;
  height: 16px;
}
.sec {
  padding-block: clamp(72px, 10vw, 136px);
}
/* Scroll reveal — hidden state only applies once html.js is set (header.php), so no-JS visitors see everything */
.js .rv {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.9s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.js .rv.in {
  opacity: 1;
  transform: none;
}
/*
|-------------------------------------------------------------------------------------------------------------------------------
| Header (header.php) — design .meta / .hdr / .logo / .nav / .burger
|-------------------------------------------------------------------------------------------------------------------------------
|
*/
.meta-bar {
  background: var(--teal);
  font-size: 13px;
  color: var(--on-teal-2);
}
.meta-bar .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 38px;
  gap: 12px;
}
.meta-bar > .wrap > span:first-child {
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.meta-bar .lang {
  white-space: nowrap;
  flex: 0 0 auto;
}
.meta-bar .lab {
  letter-spacing: 0.12em;
}
.meta-bar .lang a {
  padding: 0 6px;
  position: relative;
}
.meta-bar .lang a::after {
  content: "";
  position: absolute;
  inset: -4px 0;
}
.meta-bar .lang a[aria-current] {
  color: var(--on-teal);
  font-weight: 700;
}
.hdr {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule);
}
.hdr .wrap {
  height: 78px;
  display: grid;
  grid-template-columns: minmax(max-content, 1fr) auto minmax(max-content, 1fr);
  align-items: center;
  column-gap: 20px;
}
.hdr .hdr-cta {
  justify-self: end;
  height: 46px;
  padding: 0 20px;
  font-size: 14px;
}
.site-logo {
  justify-self: start;
}
.site-logo img {
  height: clamp(32px, calc(9.4vw - 50px), 36px);
  width: auto;
}
.site-nav {
  justify-self: center;
}
.site-nav .menu {
  display: flex;
  gap: clamp(12px, 2.4vw, 34px);
  font-size: 15px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-nav a {
  position: relative;
  display: block;
  padding: 6px 0;
  color: var(--ink-2);
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.site-nav a:hover::after,
.site-nav a[aria-current]::after {
  transform: scaleX(1);
}
.site-nav a[aria-current] {
  color: var(--ink);
  font-weight: 600;
}
.site-nav .menu li {
  position: relative;
}
.site-nav .menu > .menu-item-has-children {
  padding-bottom: 26px;
  margin-bottom: -26px;
}
.site-nav .sub-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  translate: -50% 0;
  z-index: 60;
  min-width: 200px;
  margin: 0;
  padding: 10px 0;
  list-style: none;
  max-height: calc(100vh - 150px);
  overflow-y: auto;
  overscroll-behavior: contain;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 16px;
  box-shadow: 0 20px 44px rgba(16, 42, 38, 0.14);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.22s, transform 0.22s, visibility 0.22s;
}
.site-nav .sub-menu a {
  padding: 9px 20px;
  font-size: 14px;
  white-space: nowrap;
}
.site-nav .sub-menu a::after {
  display: none;
}
.site-nav .sub-menu a:hover,
.site-nav .sub-menu a:focus-visible {
  background: var(--tint);
  color: var(--ink);
}
.site-nav .has-mega > .sub-menu {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-content: start;
  width: min(660px, calc(100vw - 32px));
  padding: 14px;
  column-gap: 4px;
}
.site-nav .has-mega > .sub-menu a {
  padding: 10px 14px;
  border-radius: 10px;
  white-space: normal;
}
.site-nav .menu-item-has-children:hover > .sub-menu,
.site-nav .menu-item-has-children:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.site-nav .menu-item-has-children.nav-closed > .sub-menu,
.site-nav .menu-item-has-children.nav-closed:focus-within > .sub-menu {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
}
.burger {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--rule);
  background: none;
  cursor: pointer;
  place-items: center;
}
.burger svg {
  width: 20px;
  height: 20px;
}
@media (max-width: 900px) {
  .site-nav {
    justify-self: normal;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 8px var(--gutter) 24px;
    border-bottom: 1px solid var(--rule);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: all 0.25s;
    max-height: calc(100vh - 116px);
    max-height: calc(100dvh - 116px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .site-nav .menu {
    flex-direction: column;
    gap: 0;
  }
  .site-nav a {
    padding: 14px 0;
    font-size: 18px;
    border-bottom: 1px solid var(--rule);
  }
  .site-nav a::after {
    display: none;
  }
  .site-nav .menu > .menu-item-has-children {
    padding-bottom: 0;
    margin-bottom: 0;
  }
  .site-nav .sub-menu {
    position: static;
    translate: none;
    opacity: 1;
    visibility: inherit;
    transform: none;
    min-width: 0;
    padding: 0 0 0 18px;
    background: none;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }
  .site-nav .sub-menu a {
    font-size: 16px;
    padding: 12px 0;
  }
  .site-nav .has-mega > .sub-menu {
    display: block;
    width: auto;
    padding: 0 0 0 18px;
  }
  .site-nav .has-mega > .sub-menu a {
    padding: 12px 0;
    border-radius: 0;
  }
  .hdr.open .site-nav {
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .burger {
    display: grid;
  }
  .hdr .wrap {
    grid-template-columns: minmax(0, 1fr) auto;
  }
  .site-logo {
    min-width: 0;
  }
  .site-logo img {
    height: auto;
    width: 306px;
    max-width: 100%;
  }
  .burger {
    justify-self: end;
  }
  .hdr .hdr-cta {
    display: none;
  }
  .meta-bar .hide-m {
    display: none;
  }
}
/*
|-------------------------------------------------------------------------------------------------------------------------------
| Page content (default inner-page templates)
|-------------------------------------------------------------------------------------------------------------------------------
|
*/
.post-main-title {
  font-family: var(--f-serif);
}
.main-article a {
  color: var(--teal-deep);
  border-bottom: 1px solid currentColor;
}
/*
|-------------------------------------------------------------------------------------------------------------------------------
| Footer (footer.php) — design .ftr
|-------------------------------------------------------------------------------------------------------------------------------
|
*/
.ftr {
  background: var(--white);
  color: var(--muted);
  padding-block: 52px 28px;
  font-size: 14px;
}
.ftr img {
  width: min(306px, 100%);
  height: auto;
  margin-bottom: 16px;
}
.ftr h4 {
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.8;
  margin: 4px 0 12px;
}
.ftr ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}
.ftr a:hover {
  color: var(--teal-deep);
}
.ftr .ftr-grid a,
.ftr .ftr-bot a {
  position: relative;
}
.ftr .ftr-grid a::after,
.ftr .ftr-bot a::after {
  content: "";
  position: absolute;
  inset: -4px -3px;
}
.ftr-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 32px;
}
.ftr-bot {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  margin-top: 44px;
  padding-top: 20px;
  border-top: 1px solid var(--rule);
  font-size: 13px;
}
.ftr-filing {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
}
@media (max-width: 900px) {
  .ftr-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 640px) {
  .ftr-grid {
    grid-template-columns: 1fr;
  }
}
/*
|-------------------------------------------------------------------------------------------------------------------------------
| Pagination
|-------------------------------------------------------------------------------------------------------------------------------
|
*/
.pagination-wrap .pagination {
  margin-bottom: 0;
}
.pagination-wrap .pagination span,
.pagination-wrap .pagination a {
  display: inline-block;
  padding: 2px 9px;
}
.pagination-wrap .pagination a {
  color: #10201d;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.pagination-wrap .pagination a:hover {
  color: #1d7a6b;
}
/*
|===============================================================================================================================
| Design-system pages (front page, About) — design concept 3B, scoped under main.nd-ui
|===============================================================================================================================
| Rules are in the same order as the design file so the cascade is identical.
| Bootstrap / Font Awesome / Swiper are not loaded on these pages (see nd_china_is_design_page() in functions.php).
| About-page-only components are in the "About page" block further down (still inside .nd-ui).
|
*/
.nd-ui {
  /* section heading */
  /* hero — animated full-width mascot hero, two scenes */
  /* hero controls */
  /* hero art */
  /* figures */
  /* network */
  /* milestones */
  /* portfolio */
  /* whole row links to the brand page (link is added when the row's brand exists in Our Brands) */
  /* capabilities */
  /* offline */
  /* online */
  /* contact */
  /* ---------- scroll animations ---------- */
  /* hero: copy lifts + fades, mascot drifts slower (depth) */
  /* staggered groups */
  /* timeline: line draws, dots pop in sequence */
  /* section headings: rule draws, characters rise, highlight grows */
  /* map scales in; arcs wait until the map itself is on screen */
  /* image wipe + contact form from the right */
  /*
	|---------------------------------------------------------------------------------------------------------------------------
	| About page (template-about-us.php) — same tokens, type scale and motion as the front page
	|---------------------------------------------------------------------------------------------------------------------------
	| Class names are prefixed (pg-, pb-, story-, plat-, pcard, csr-) so they never collide with front-page classes
	| such as .ph / .badge inside the hero floating cards.
	*/
  /* page hero — same background recipe as the front-page hero (.hm) */
  /* 01 story */
  /* 02 online */
  /* mission band — same background recipe as the heroes */
  /* 03 promise */
  /* 04 responsibility */
  /* 05 R&D + supply chain */
  /* 06 partnership band (reuses .contact colours / h2) */
  /*
	|---------------------------------------------------------------------------------------------------------------------------
	| Our Brands — archive-our-brands.php (brand cards) + single-our-brands.php (brand page)
	| reuses .pg-hero, .figs, .sec-top, .filters, .checks, .about-cta
	|---------------------------------------------------------------------------------------------------------------------------
	*/
  /* archive hero: muscle mascot + product stack badge */
  /* archive: brand cards */
  /* shared brand bits */
  /* brand page: hero */
  /* brand page: story */
  /* brand page: products, one per row */
  /* brand page: more brands */
  /* image viewer dialog (nutrition tables, QR codes) */
  /*
	|---------------------------------------------------------------------------------------------------------------------------
	| Online Stores page (template-online-stores.php) — reuses .pg-hero, .figs, .caps, .contact, .nt-dialog
	|---------------------------------------------------------------------------------------------------------------------------
	*/
}
.nd-ui .sec-top {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: clamp(20px, 4vw, 56px);
  border-top: 1px solid var(--rule);
  padding-top: 22px;
  margin-bottom: clamp(36px, 5vw, 64px);
}
.nd-ui .sec-top .lab {
  color: var(--muted);
}
.nd-ui .sec-top h2 {
  font-family: var(--f-serif);
  font-weight: 700;
  font-size: clamp(28px, 4.3vw, 56px);
  line-height: 1.22;
  margin: 0;
  letter-spacing: -0.01em;
  max-width: 900px;
  text-wrap: balance;
}
.nd-ui .sec-top h2 i {
  font-style: normal;
  color: var(--teal-deep);
  background: linear-gradient(transparent 70%, rgba(106, 195, 179, 0.32) 70%);
}
@media (min-width: 900px) {
  .nd-ui .sec-top h2 i {
    white-space: nowrap;
  }
}
.nd-ui .sec-top p {
  grid-column: 2;
  margin: 16px 0 0;
  color: var(--muted);
  max-width: 640px;
}
.nd-ui .hero {
  padding: 0;
}
.nd-ui .hm {
  position: relative;
  overflow: hidden;
  background: radial-gradient(900px 640px at 74% 64%, #fff 0%, rgba(255, 255, 255, 0) 62%), linear-gradient(118deg, #d9f0ea 0%, #e9f6f2 40%, #f7fbfa 100%);
  border-bottom: 1px solid var(--rule);
  --mx: 0;
  --my: 0;
  --dur: 7s;
}
.nd-ui .hm::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(29, 122, 107, 0.14) 1px, transparent 1.3px);
  background-size: 24px 24px;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 38%, #000 72%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 38%, #000 72%, transparent 100%);
  pointer-events: none;
}
.nd-ui .hm-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  min-height: clamp(580px, calc(100vh - 116px), 780px);
}
.nd-ui .hm-copy {
  position: relative;
  z-index: 2;
  padding-block: clamp(40px, 5vw, 64px);
}
.nd-ui .scenes {
  display: grid;
}
.nd-ui .sc {
  grid-area: 1 / 1;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s, visibility 0s 0.35s;
}
.nd-ui .sc.on {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.01s;
}
.nd-ui .kick {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 16px 6px 6px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--rule);
  font-size: 13px;
  font-weight: 600;
  color: var(--teal-deep);
  box-shadow: 0 8px 20px -12px rgba(13, 36, 32, 0.3);
}
.nd-ui .kick img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--tint);
  padding: 3px;
}
.nd-ui .hm .ttl {
  font-family: var(--f-serif);
  font-weight: 900;
  font-size: clamp(40px, 5.6vw, 84px);
  line-height: 1.1;
  margin: 26px 0 22px;
  letter-spacing: -0.03em;
  word-break: keep-all;
  color: var(--ink);
}
.nd-ui .hm .ttl.sm {
  font-size: clamp(38px, 5.1vw, 76px);
}
.nd-ui .hm .ttl .soft {
  color: var(--teal-deep);
  font-weight: 500;
}
.nd-ui .ln {
  display: block;
  overflow: hidden;
  padding-bottom: 0.06em;
  margin-bottom: -0.06em;
}
.nd-ui .ln > span {
  display: block;
  transform: translateY(108%);
  transition: transform 0s 0.4s;
}
.nd-ui .sc.on .ln > span {
  transform: none;
  transition: transform 1s cubic-bezier(0.2, 0.85, 0.2, 1);
}
.nd-ui .sc.on .ln:nth-child(2) > span {
  transition-delay: 0.09s;
}
.nd-ui .sc.on .ln:nth-child(3) > span {
  transition-delay: 0.18s;
}
.nd-ui .sc .kick,
.nd-ui .sc .lead,
.nd-ui .sc .hm-act {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0s 0.4s, transform 0s 0.4s;
}
.nd-ui .sc.on .kick,
.nd-ui .sc.on .lead,
.nd-ui .sc.on .hm-act {
  opacity: 1;
  transform: none;
  transition: opacity 0.7s, transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.nd-ui .sc.on .lead {
  transition-delay: 0.28s;
}
.nd-ui .sc.on .hm-act {
  transition-delay: 0.4s;
}
.nd-ui .hm .lead {
  color: var(--ink-2);
  max-width: 520px;
  margin: 0 0 32px;
  font-size: clamp(15px, 1.3vw, 17px);
}
.nd-ui .hm-act {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.nd-ui .hm-ctrl {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid rgba(29, 122, 107, 0.2);
  max-width: 560px;
}
.nd-ui .hm-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  flex: 1;
}
.nd-ui .hm-tab {
  background: none;
  border: 0;
  padding: 0;
  text-align: left;
  cursor: pointer;
  color: var(--muted);
  font-size: 14px;
}
.nd-ui .hm-tab .tr {
  display: block;
  height: 3px;
  border-radius: 3px;
  background: rgba(29, 122, 107, 0.16);
  overflow: hidden;
  margin-bottom: 10px;
}
.nd-ui .hm-tab .tr i {
  display: block;
  height: 100%;
  width: 0;
  background: var(--teal-deep);
  border-radius: 3px;
}
.nd-ui .hm-tab[aria-selected="true"] {
  color: var(--ink);
  font-weight: 600;
}
.nd-ui .hm-tab[aria-selected="true"] .tr i {
  animation: hmfill var(--dur) linear forwards;
}
.nd-ui .hm.paused .hm-tab[aria-selected="true"] .tr i {
  animation-play-state: paused;
}
.nd-ui .hm-tab .n {
  font: 600 12px var(--f-lab);
  color: var(--teal-deep);
  margin-right: 6px;
}
.nd-ui .hm-arrows {
  display: flex;
  gap: 8px;
}
.nd-ui .hm-arrows button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--rule);
  background: #fff;
  color: var(--ink);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.nd-ui .hm-arrows button:hover {
  background: var(--teal);
  border-color: var(--teal);
}
.nd-ui .hm-arrows svg {
  width: 16px;
  height: 16px;
}
.nd-ui .hm-arrows .prev svg {
  transform: rotate(180deg);
}
.nd-ui .hm-art {
  position: relative;
  align-self: stretch;
  min-height: 560px;
  margin-right: calc(var(--gutter) * -1);
  touch-action: pan-y;
}
.nd-ui .hm-art .disc {
  position: absolute;
  left: 50%;
  bottom: -30%;
  width: min(720px, 125%);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, #fff 0%, rgba(255, 255, 255, 0.7) 46%, rgba(106, 195, 179, 0.22) 47%, rgba(106, 195, 179, 0.1) 66%, transparent 66.5%);
  transform: translate(calc(-50% + var(--mx) * 10px), calc(var(--my) * 6px));
}
.nd-ui .hm-art .orbit {
  position: absolute;
  left: 50%;
  bottom: -18%;
  width: min(560px, 100%);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1.5px dashed rgba(29, 122, 107, 0.28);
  transform: translateX(-50%);
  animation: orbit 70s linear infinite;
}
.nd-ui .hm-art .blob {
  position: absolute;
  width: 150px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--teal);
  opacity: 0.9;
  left: 12%;
  top: 18%;
  transition: left 1.2s cubic-bezier(0.6, 0, 0.2, 1), top 1.2s cubic-bezier(0.6, 0, 0.2, 1), width 1.2s;
  filter: blur(0.2px);
}
.nd-ui .hm[data-scene="1"] .blob {
  left: 66%;
  top: 10%;
  width: 110px;
}
.nd-ui .sa {
  position: absolute;
  inset: 0;
  visibility: hidden;
  transition: visibility 0s 0.7s;
}
.nd-ui .sa.on {
  visibility: visible;
  transition: none;
}
.nd-ui .par {
  position: absolute;
  inset: 0;
  transform: translate(calc(var(--mx) * -14px), calc(var(--my) * -10px));
}
.nd-ui .par.deep {
  transform: translate(calc(var(--mx) * -30px), calc(var(--my) * -20px));
}
.nd-ui .mw {
  position: absolute;
  left: 50%;
  bottom: 0;
  height: min(94%, 730px);
  opacity: 0;
  transform: translate(-50%, 70px) scale(0.94);
  transform-origin: 50% 100%;
  transition: opacity 0.45s, transform 0.6s cubic-bezier(0.4, 0, 0.6, 1);
}
.nd-ui .sa.on .mw {
  opacity: 1;
  transform: translate(-50%, 0) scale(1);
  transition: opacity 0.8s 0.12s, transform 1.2s 0.12s cubic-bezier(0.16, 0.9, 0.24, 1);
}
.nd-ui .mw img {
  height: 100%;
  width: auto;
  max-width: none;
  display: block;
  filter: drop-shadow(0 34px 44px rgba(18, 87, 75, 0.22));
}
.nd-ui .sa.on .mw img {
  animation: floaty 5.5s ease-in-out 1.3s infinite;
}
.nd-ui .mw.muscle {
  bottom: -4%;
}
.nd-ui .mw.muscle img {
  transform-origin: 50% 90%;
  -webkit-mask-image: linear-gradient(to bottom, #000 84%, transparent 99%);
  mask-image: linear-gradient(to bottom, #000 84%, transparent 99%);
}
.nd-ui .sa.on .mw.muscle img {
  animation: flex 5s ease-in-out 1.3s infinite;
}
.nd-ui .fl {
  position: absolute;
  z-index: 3;
  opacity: 0;
  transform: translateY(18px) scale(0.9);
  transition: opacity 0.3s, transform 0.4s;
}
.nd-ui .sa.on .fl {
  opacity: 1;
  transform: none;
  transition: opacity 0.6s, transform 0.8s cubic-bezier(0.2, 1.4, 0.4, 1);
}
.nd-ui .sa.on .fl.f1 {
  transition-delay: 0.6s;
}
.nd-ui .sa.on .fl.f2 {
  transition-delay: 0.75s;
}
.nd-ui .sa.on .fl.f3 {
  transition-delay: 0.9s;
}
.nd-ui .fl-in {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px 12px 12px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid #fff;
  border-radius: 18px;
  box-shadow: 0 1px 2px rgba(13, 36, 32, 0.05), 0 20px 44px -18px rgba(13, 36, 32, 0.28);
  white-space: nowrap;
  animation: bob 6s ease-in-out infinite;
}
.nd-ui .f2 .fl-in {
  animation-delay: -2s;
}
.nd-ui .f3 .fl-in {
  animation-delay: -4s;
}
.nd-ui .fl b {
  display: block;
  font-size: 14px;
  line-height: 1.35;
  color: var(--ink);
}
.nd-ui .fl small {
  font-size: 12px;
  color: var(--muted);
}
.nd-ui .fl .ph {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  flex: none;
}
.nd-ui .fl .ph img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.nd-ui .fl .badge {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: var(--teal);
  color: var(--on-teal);
  display: grid;
  place-items: center;
  flex: none;
}
.nd-ui .fl .badge svg {
  width: 22px;
  height: 22px;
}
.nd-ui .fl .stack {
  display: flex;
  flex: none;
  padding-left: 8px;
}
.nd-ui .fl .stack img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  border-radius: 10px;
  background: #fff;
  border: 2px solid #fff;
  margin-left: -8px;
  box-shadow: 0 4px 10px -4px rgba(13, 36, 32, 0.3);
}
.nd-ui .fl.f1 {
  left: 0;
  top: 38%;
}
.nd-ui .fl.f2 {
  right: calc(var(--gutter) + 2%);
  top: 13%;
}
.nd-ui .fl.f3 {
  right: calc(var(--gutter) + 1%);
  bottom: 13%;
}
.nd-ui .sa-2 .fl.f1 {
  left: 2%;
  top: 30%;
}
.nd-ui .sa-2 .fl.f2 {
  top: auto;
  bottom: 40%;
}
.nd-ui .hm-figs .figs {
  margin-top: clamp(40px, 5vw, 64px);
}
@media (max-width: 1100px) {
  .nd-ui .sa-1 .fl.f2 {
    display: none;
  }
  .nd-ui .sa-2 .fl.f1 {
    top: auto;
    bottom: 44%;
    left: 0;
  }
}
@media (max-width: 900px) {
  .nd-ui .hm-grid {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .nd-ui .hm-copy {
    padding-block: 44px 8px;
  }
  .nd-ui .hm-art {
    min-height: 520px;
    margin-right: 0;
  }
  .nd-ui .fl.f2,
  .nd-ui .fl.f3 {
    right: 2%;
  }
  .nd-ui .hm-art .blob {
    width: 96px;
  }
}
@media (max-width: 640px) {
  .nd-ui .hm-art {
    min-height: 450px;
  }
  .nd-ui .mw {
    height: 96%;
  }
  .nd-ui .fl-in {
    padding: 9px 14px 9px 9px;
  }
  .nd-ui .fl .ph,
  .nd-ui .fl .badge {
    width: 40px;
    height: 40px;
  }
  .nd-ui .fl.f1,
  .nd-ui .sa-2 .fl.f1 {
    left: 0;
    top: auto;
    bottom: 40%;
  }
  .nd-ui .fl.f2,
  .nd-ui .sa-2 .fl.f2 {
    right: 0;
    top: auto;
    bottom: 16%;
  }
  .nd-ui .fl.f3 {
    display: none;
  }
  .nd-ui .hm-ctrl {
    gap: 12px;
  }
  .nd-ui .hm-arrows button {
    width: 40px;
    height: 40px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .nd-ui .ln > span,
  .nd-ui .sc .kick,
  .nd-ui .sc .lead,
  .nd-ui .sc .hm-act,
  .nd-ui .mw,
  .nd-ui .fl {
    transform: none !important;
    opacity: 1;
  }
  .nd-ui .hm-art .disc {
    transform: translateX(-50%);
  }
}
.nd-ui .figs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: clamp(48px, 7vw, 96px);
  border-top: 3px solid var(--teal);
}
.nd-ui .fig {
  padding: 22px 20px 26px 0;
}
.nd-ui .fig + .fig {
  padding-left: 20px;
  border-left: 1px solid var(--rule);
}
.nd-ui .fig b {
  display: block;
  font: 700 clamp(40px, 5.4vw, 76px)/1 var(--f-serif);
  letter-spacing: -0.03em;
}
.nd-ui .fig b sup {
  font-size: 0.45em;
  vertical-align: top;
  color: var(--teal-deep);
}
.nd-ui .fig span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
}
.nd-ui .network {
  background: var(--tint);
  color: var(--ink);
  position: relative;
  overflow: clip;
}
.nd-ui .mapwrap {
  overflow-x: auto;
  scrollbar-width: none;
  margin-inline: calc(var(--gutter) * -1);
  padding-inline: var(--gutter);
}
.nd-ui .mapwrap::-webkit-scrollbar {
  display: none;
}
.nd-ui .map {
  min-width: 760px;
  position: relative;
}
.nd-ui .map svg {
  width: 100%;
  height: auto;
  display: block;
  overflow: visible;
}
.nd-ui .map .land {
  stroke: var(--teal-soft);
  stroke-width: 3.2;
  stroke-linecap: round;
}
.nd-ui .map .arc {
  fill: none;
  stroke: var(--teal-deep);
  stroke-width: 1.4;
  stroke-linecap: round;
  opacity: 0.75;
  stroke-dasharray: var(--len);
  stroke-dashoffset: var(--len);
}
.nd-ui .network.in .map .arc {
  animation: draw 1.8s cubic-bezier(0.6, 0.1, 0.2, 1) forwards;
  animation-delay: var(--d);
}
.nd-ui .map .node {
  fill: var(--teal-deep);
}
.nd-ui .map .hub {
  fill: var(--ink);
}
.nd-ui .map .hubring {
  fill: none;
  stroke: var(--ink);
  stroke-width: 1.5;
  transform-box: fill-box;
  transform-origin: center;
  animation: hub 2.6s ease-out infinite;
}
.nd-ui .map .spark {
  fill: var(--teal-deep);
}
.nd-ui .map text {
  fill: var(--ink);
  font: 600 13px var(--f-sans);
  paint-order: stroke;
  stroke: var(--tint);
  stroke-width: 4px;
}
.nd-ui .map text.big {
  font-size: 17px;
  font-weight: 700;
  fill: var(--ink);
}
.nd-ui .map-hint {
  display: none;
  font-size: 12px;
  color: var(--muted);
  margin-top: 8px;
  text-align: center;
}
.nd-ui .net-foot {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: clamp(18px, 3vw, 40px);
  margin-top: clamp(36px, 5vw, 64px);
  border-top: 1px solid var(--rule);
  padding-top: 28px;
}
.nd-ui .net-foot h3 {
  font: 700 20px/1.4 var(--f-serif);
  margin: 10px 0 8px;
}
.nd-ui .net-foot p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}
.nd-ui .net-foot .lab {
  color: var(--teal-deep);
}
.nd-ui .countries {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}
.nd-ui .countries span {
  font-size: 13px;
  padding: 3px 10px;
  border: 1px solid var(--rule);
  background: var(--white);
  border-radius: 999px;
  color: var(--ink-2);
}
.nd-ui .tl {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nd-ui .tl::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 9px;
  height: 2px;
  background: var(--teal);
}
.nd-ui .tl li {
  position: relative;
  padding: 40px 22px 0 0;
}
.nd-ui .tl li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--teal-deep);
}
.nd-ui .tl li.now::before {
  background: var(--teal);
  border-color: var(--teal);
}
.nd-ui .tl .yr {
  font: 700 clamp(26px, 2.6vw, 36px)/1 var(--f-serif);
  letter-spacing: -0.02em;
}
.nd-ui .tl h3 {
  font-size: 16px;
  margin: 12px 0 6px;
}
.nd-ui .tl p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
}
.nd-ui .portfolio {
  background: var(--tint);
}
.nd-ui .filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  grid-column: 2;
  margin-top: 22px;
}
.nd-ui .filter {
  height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--rule);
  background: var(--white);
  cursor: pointer;
  font-size: 14px;
  transition: all 0.2s;
}
.nd-ui .filter:hover {
  border-color: var(--teal);
}
.nd-ui .filter[aria-pressed="true"] {
  background: var(--teal);
  color: var(--on-teal);
  border-color: var(--teal);
  font-weight: 600;
}
.nd-ui .rows {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 2px solid var(--teal);
  position: relative;
}
.nd-ui .row {
  display: grid;
  grid-template-columns: 56px 200px 1.1fr 1.3fr 1fr 40px;
  gap: 20px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--rule);
  transition: background 0.25s, padding 0.25s;
  cursor: pointer;
  position: relative;
}
.nd-ui .row[hidden] {
  display: none;
}
.nd-ui .row-link {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.nd-ui .row-link:focus-visible {
  outline: 2px solid var(--teal-deep);
  outline-offset: -2px;
}
.nd-ui .row:has(.row-link:focus-visible) .ar {
  background: var(--teal);
  color: var(--on-teal);
  border-color: var(--teal);
}
.nd-ui .row:hover {
  background: var(--white);
  padding-inline: 14px;
}
.nd-ui .row .no {
  font: 600 13px var(--f-lab);
  color: var(--muted);
}
.nd-ui .row .lg {
  height: 40px;
  display: flex;
  align-items: center;
}
.nd-ui .row .lg img {
  max-height: 34px;
  max-width: 160px;
  width: auto;
  object-fit: contain;
}
.nd-ui .row .nm {
  font-weight: 700;
  font-size: 17px;
  line-height: 1.35;
}
.nd-ui .row .nm small {
  display: block;
  font-weight: 400;
  font-size: 13px;
  color: var(--muted);
}
.nd-ui .row .ds {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.65;
}
.nd-ui .row .pr {
  font-size: 13px;
  color: var(--muted);
}
.nd-ui .row .ar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--rule);
  display: grid;
  place-items: center;
  transition: all 0.25s;
}
.nd-ui .row .ar svg {
  width: 16px;
  height: 16px;
}
.nd-ui .row:hover .ar {
  background: var(--teal);
  color: var(--on-teal);
  border-color: var(--teal);
}
.nd-ui .peek {
  position: fixed;
  left: 0;
  top: 0;
  width: 200px;
  height: 220px;
  pointer-events: none;
  z-index: 40;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.9);
  transition: opacity 0.2s, transform 0.2s;
  background: var(--white);
  border-radius: 6px;
  box-shadow: 0 30px 60px -24px rgba(14, 38, 33, 0.45);
  display: grid;
  place-items: center;
  padding: 14px;
}
.nd-ui .peek.on {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.nd-ui .peek img {
  max-height: 100%;
  width: auto;
  object-fit: contain;
}
.nd-ui .caps {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-top: 2px solid var(--teal);
  border-left: 1px solid var(--rule);
}
.nd-ui .cap {
  padding: 28px clamp(18px, 2.4vw, 32px) 34px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  transition: background 0.25s;
}
.nd-ui .cap:hover {
  background: var(--tint);
}
.nd-ui .cap .lab {
  color: var(--muted);
}
.nd-ui .cap h3 {
  font: 700 clamp(21px, 2vw, 26px)/1.35 var(--f-serif);
  margin: 34px 0 10px;
}
.nd-ui .cap p {
  margin: 0;
  color: var(--ink-2);
  font-size: 15px;
}
.nd-ui .cap .ico {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--on-teal);
  display: grid;
  place-items: center;
  float: right;
  margin-top: -6px;
}
.nd-ui .cap .ico svg {
  width: 20px;
  height: 20px;
}
.nd-ui .quote {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(24px, 4vw, 64px);
  align-items: center;
  margin-top: clamp(48px, 6vw, 88px);
}
.nd-ui .quote figure {
  margin: 0;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border-radius: 4px;
}
.nd-ui .quote figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.nd-ui .quote blockquote {
  margin: 0;
  font: 600 clamp(24px, 3vw, 40px)/1.5 var(--f-serif);
  letter-spacing: -0.01em;
  text-wrap: balance;
}
.nd-ui .quote blockquote::before {
  content: "“";
  display: block;
  font-size: 2.4em;
  line-height: 0.6;
  color: var(--teal);
  margin-bottom: 14px;
}
.nd-ui .quote cite {
  display: block;
  margin-top: 18px;
  font: normal 14px var(--f-sans);
  color: var(--muted);
}
.nd-ui .gallery {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 260px 260px;
  gap: 14px;
}
.nd-ui .gallery figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  background: var(--tint);
}
.nd-ui .gallery figure:first-child {
  grid-row: span 2;
}
.nd-ui .gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s;
}
.nd-ui .gallery figure:hover img {
  transform: scale(1.04);
}
.nd-ui .gallery figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 30px 16px 12px;
  color: #fff;
  font-size: 13px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
}
.nd-ui .expo-list {
  list-style: none;
  margin: clamp(28px, 4vw, 48px) 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 2px solid var(--teal);
}
.nd-ui .expo-list li {
  padding: 18px 16px 0 0;
}
.nd-ui .expo-list li + li {
  padding-left: 16px;
  border-left: 1px solid var(--rule);
}
.nd-ui .expo-list .lab {
  color: var(--muted);
}
.nd-ui .expo-list b {
  display: block;
  margin-top: 8px;
  font-size: 15px;
  line-height: 1.5;
}
.nd-ui .stores {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-top: 2px solid var(--teal);
}
.nd-ui .store {
  position: relative;
  padding: 22px 16px 20px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  text-align: left;
  background: none;
  border-top: 0;
  border-left: 0;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 210px;
}
.nd-ui .store:first-child {
  border-left: 1px solid var(--rule);
}
.nd-ui .store img.ic {
  width: 44px;
  height: 44px;
  object-fit: contain;
}
.nd-ui .store b {
  font-size: 16px;
}
.nd-ui .store small {
  color: var(--muted);
  font-size: 13px;
  margin-top: auto;
}
.nd-ui .store .qr {
  position: absolute;
  inset: 0;
  background: var(--white);
  display: grid;
  place-items: center;
  opacity: 0;
  transition: opacity 0.25s;
  padding: 14px;
}
.nd-ui .store .qr img {
  width: 100%;
  max-width: 150px;
  height: auto;
}
.nd-ui .store:hover .qr,
.nd-ui .store.show .qr {
  opacity: 1;
}
.nd-ui .contact {
  background: var(--teal);
  color: var(--on-teal);
}
.nd-ui .contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(28px, 6vw, 96px);
}
.nd-ui .contact h2 {
  font: 900 clamp(44px, 6.4vw, 92px)/1.08 var(--f-serif);
  margin: 20px 0 24px;
  letter-spacing: -0.03em;
}
.nd-ui .contact h2 span {
  background: linear-gradient(transparent 70%, rgba(255, 255, 255, 0.75) 70%);
}
.nd-ui .contact .lab {
  color: var(--on-teal-2);
}
.nd-ui .contact p {
  color: var(--on-teal-2);
  max-width: 460px;
  margin: 0 0 30px;
}
.nd-ui .dirs {
  list-style: none;
  margin: 0 0 34px;
  padding: 0;
  border-top: 1px solid rgba(13, 36, 32, 0.2);
}
.nd-ui .dirs li {
  display: grid;
  grid-template-columns: 44px 1fr;
  padding: 14px 0;
  border-bottom: 1px solid rgba(13, 36, 32, 0.2);
}
.nd-ui .dirs .lab {
  color: var(--on-teal);
  font-weight: 800;
  padding-top: 4px;
}
.nd-ui .dirs b {
  font-size: 16px;
}
.nd-ui .dirs span {
  display: block;
  font-size: 14px;
  color: var(--on-teal-2);
}
.nd-ui .mailbig {
  font: 700 clamp(20px, 2.2vw, 28px)/1.3 var(--f-serif);
  color: var(--on-teal);
  border-bottom: 2px solid var(--on-teal);
  padding-bottom: 4px;
  word-break: break-all;
}
.nd-ui .form {
  position: relative;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 30px 60px -30px rgba(13, 36, 32, 0.45);
  border-radius: 6px;
  padding: clamp(22px, 3.4vw, 44px);
  align-self: start;
}
.nd-ui .form fieldset {
  border: 0;
  margin: 0 0 22px;
  padding: 0;
}
.nd-ui .form legend {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 10px;
}
.nd-ui .opts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.nd-ui .opts label {
  position: relative;
}
.nd-ui .opts input {
  position: absolute;
  opacity: 0;
}
.nd-ui .opts span {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--rule);
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
}
.nd-ui .opts input:checked + span {
  background: var(--teal);
  color: var(--on-teal);
  border-color: var(--teal);
  font-weight: 600;
}
.nd-ui .opts input:focus-visible + span {
  outline: 2px solid var(--teal-deep);
  outline-offset: 2px;
}
.nd-ui .fgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 22px;
}
.nd-ui .field {
  position: relative;
  margin-bottom: 18px;
}
.nd-ui .field.full {
  grid-column: 1 / -1;
}
.nd-ui .field input,
.nd-ui .field textarea {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--rule);
  padding: 26px 0 10px;
  outline: none;
  color: var(--ink);
  transition: border-color 0.2s;
  border-radius: 0;
}
.nd-ui .field textarea {
  min-height: 96px;
  resize: vertical;
}
.nd-ui .field label {
  position: absolute;
  left: 0;
  top: 26px;
  color: var(--muted);
  font-size: 15px;
  pointer-events: none;
  transition: all 0.2s;
}
.nd-ui .field input:focus,
.nd-ui .field textarea:focus {
  border-color: var(--teal-deep);
}
.nd-ui .field input:focus + label,
.nd-ui .field input:not(:placeholder-shown) + label,
.nd-ui .field textarea:focus + label,
.nd-ui .field textarea:not(:placeholder-shown) + label {
  top: 2px;
  font-size: 12px;
  color: var(--teal-deep);
}
.nd-ui .form-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 10px;
}
.nd-ui .form-foot small {
  color: var(--muted);
  font-size: 12px;
}
.nd-ui .ok {
  color: var(--teal-deep);
  margin: 14px 0 0;
  font-size: 14px;
}
.nd-ui .ok[hidden] {
  display: none;
}
.nd-ui .ok.err {
  color: #b42318;
}
.nd-ui .form .nd-btn[disabled] {
  opacity: 0.6;
  cursor: wait;
}
.nd-ui .hp {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
}
.nd-ui .sprog {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  height: 3px;
  z-index: 120;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: 0 50%;
  pointer-events: none;
}
.nd-ui .hm {
  --sy: 0;
  --sp: 0;
}
.nd-ui .hm-copy {
  translate: 0 calc(var(--sy) * -0.2px);
  opacity: calc(1 - var(--sp) * 1.15);
}
.nd-ui .hm-art {
  translate: 0 calc(var(--sy) * 0.14px);
}
.nd-ui .hm-art .disc {
  scale: calc(1 + var(--sp) * .18);
}
.nd-ui .st:not(.settled) > * {
  transition: opacity 0.8s var(--ease), translate 1s var(--ease), scale 1s var(--ease), clip-path 1.2s var(--ease);
  transition-delay: calc(var(--i, 0) * 90ms);
}
.nd-ui .st > * {
  opacity: 0;
  translate: 0 34px;
}
.nd-ui .st.st-left > * {
  translate: -52px 0;
}
.nd-ui .st.st-pop > * {
  translate: 0 18px;
  scale: 0.88;
}
.nd-ui .st.in > * {
  opacity: 1;
  translate: 0 0;
  scale: 1;
}
.nd-ui .st.st-clip > * {
  opacity: 1;
  translate: 0 0;
  clip-path: inset(100% 0 0 0);
}
.nd-ui .st.st-clip.in > * {
  clip-path: inset(0 0 0 0);
}
.nd-ui .st.st-clip > * img {
  scale: 1.28;
  transition: scale 1.6s var(--ease), transform 0.8s;
  transition-delay: calc(var(--i, 0) * 90ms);
}
.nd-ui .st.st-clip.in > * img {
  scale: 1;
}
.nd-ui .tl.st::before {
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition: transform 1.8s var(--ease) 0.1s;
}
.nd-ui .tl.st.in::before {
  transform: none;
}
.nd-ui .tl.st:not(.settled) > li {
  transition-delay: calc(var(--i) * 170ms + .25s);
}
.nd-ui .tl.st li::before {
  scale: 0;
  transition: scale 0.55s cubic-bezier(0.3, 1.7, 0.5, 1);
  transition-delay: calc(var(--i) * 170ms + .45s);
}
.nd-ui .tl.st.in li::before {
  scale: 1;
}
.nd-ui .sx {
  position: relative;
  border-top-color: transparent !important;
}
.nd-ui .sx::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -1px;
  height: 1px;
  background: var(--rule);
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition: transform 1.4s var(--ease);
}
.nd-ui .sx.in::before {
  transform: none;
}
.nd-ui .sx > .lab {
  opacity: 0;
  translate: -18px 0;
  transition: opacity 0.6s 0.1s, translate 0.8s var(--ease) 0.1s;
}
.nd-ui .sx.in > .lab {
  opacity: 1;
  translate: 0 0;
}
.nd-ui .sx > p,
.nd-ui .sx > .filters {
  opacity: 0;
  translate: 0 18px;
  transition: opacity 0.8s 0.5s, translate 0.9s var(--ease) 0.5s;
}
.nd-ui .sx.in > p,
.nd-ui .sx.in > .filters {
  opacity: 1;
  translate: 0 0;
}
.nd-ui .ch {
  display: inline-block;
  opacity: 0;
  translate: 0 0.6em;
  rotate: 5deg;
  transform-origin: 0 100%;
  transition: opacity 0.5s, translate 0.85s var(--ease), rotate 0.85s var(--ease);
  transition-delay: calc(var(--c) * 28ms + .12s);
}
.nd-ui .in .ch {
  opacity: 1;
  translate: 0 0;
  rotate: 0deg;
}
.nd-ui .sec-top h2 i {
  background-size: 0% 100%;
  background-repeat: no-repeat;
  transition: background-size 1.1s var(--ease) 0.75s;
}
.nd-ui .sx.in h2 i {
  background-size: 100% 100%;
}
.nd-ui .rv-map {
  scale: 0.9;
  opacity: 0;
  transition: scale 1.4s var(--ease), opacity 1s;
}
.nd-ui .rv-map.in {
  scale: 1;
  opacity: 1;
}
.nd-ui .network .mapwrap:not(.in) .map .arc {
  animation: none !important;
}
.nd-ui .clipin {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1.3s var(--ease);
}
.nd-ui .clipin img {
  scale: 1.22;
  transition: scale 1.7s var(--ease);
}
.nd-ui .clipin.in {
  clip-path: inset(0 0 0 0);
}
.nd-ui .clipin.in img {
  scale: 1;
}
.nd-ui .rv.rv-right {
  transform: translateX(64px);
}
.nd-ui .rv.rv-right.in {
  transform: none;
}
@media (max-width: 640px) {
  .nd-ui .tl.st::before {
    transform: scaleY(0);
    transform-origin: 50% 0;
  }
  .nd-ui .tl.st.in::before {
    transform: none;
  }
  .nd-ui .st.st-left:not(.in) > * {
    translate: -28px 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .nd-ui .st > *,
  .nd-ui .ch,
  .nd-ui .sx > .lab,
  .nd-ui .sx > p,
  .nd-ui .sx > .filters,
  .nd-ui .rv-map,
  .nd-ui .clipin,
  .nd-ui .clipin img,
  .nd-ui .st-clip > * img {
    opacity: 1 !important;
    translate: none !important;
    scale: none !important;
    rotate: none !important;
    clip-path: none !important;
  }
  .nd-ui .sx::before,
  .nd-ui .tl.st::before {
    transform: none !important;
  }
  .nd-ui .tl.st li::before {
    scale: 1 !important;
  }
  .nd-ui .sec-top h2 i {
    background-size: 100% 100% !important;
  }
  .nd-ui .hm-copy,
  .nd-ui .hm-art {
    translate: none !important;
    opacity: 1 !important;
  }
  .nd-ui .sprog {
    display: none;
  }
}
@media (max-width: 1100px) {
  .nd-ui .row {
    grid-template-columns: 44px 160px 1fr 1.2fr 40px;
  }
  .nd-ui .row .pr {
    display: none;
  }
  .nd-ui .stores {
    grid-template-columns: repeat(3, 1fr);
  }
  .nd-ui .store:nth-child(4) {
    border-left: 1px solid var(--rule);
  }
  .nd-ui .tl {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 40px;
  }
  .nd-ui .expo-list {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 20px;
  }
  .nd-ui .expo-list li:nth-child(4) {
    border-left: 0;
    padding-left: 0;
  }
}
@media (max-width: 900px) {
  .nd-ui .contact-grid,
  .nd-ui .quote {
    grid-template-columns: 1fr;
  }
  .nd-ui .figs {
    grid-template-columns: repeat(2, 1fr);
  }
  .nd-ui .fig:nth-child(3) {
    padding-left: 0;
    border-left: 0;
  }
  .nd-ui .fig:nth-child(n+3) {
    border-top: 1px solid var(--rule);
  }
  .nd-ui .sec-top {
    grid-template-columns: 1fr;
  }
  .nd-ui .sec-top p,
  .nd-ui .filters {
    grid-column: 1;
  }
  .nd-ui .net-foot {
    grid-template-columns: 1fr;
  }
  .nd-ui .map-hint {
    display: block;
  }
  .nd-ui .caps {
    grid-template-columns: 1fr 1fr;
  }
  .nd-ui .gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 240px 180px 180px;
  }
  .nd-ui .gallery figure:first-child {
    grid-column: 1 / -1;
    grid-row: auto;
  }
}
@media (max-width: 640px) {
  .nd-ui .mapwrap {
    overflow-x: hidden;
  }
  .nd-ui .map {
    min-width: 0;
  }
  .nd-ui .map svg {
    overflow: hidden;
  }
  .nd-ui .map-hint {
    display: none;
  }
  .nd-ui .row {
    grid-template-columns: 1fr auto;
    gap: 6px 14px;
    padding: 16px 0;
  }
  .nd-ui .row .no,
  .nd-ui .row .ds {
    display: none;
  }
  .nd-ui .row .lg {
    grid-column: 1;
  }
  .nd-ui .row .nm {
    grid-column: 1;
  }
  .nd-ui .row .ar {
    grid-column: 2;
    grid-row: 1 / 3;
  }
  .nd-ui .row:hover {
    padding-inline: 0;
  }
  .nd-ui .tl {
    grid-template-columns: 1fr;
    row-gap: 0;
  }
  .nd-ui .tl::before {
    left: 6px;
    right: auto;
    top: 0;
    bottom: 0;
    width: 1px;
    height: auto;
  }
  .nd-ui .tl li {
    padding: 0 0 30px 36px;
  }
  .nd-ui .tl li::before {
    top: 8px;
  }
  .nd-ui .caps {
    grid-template-columns: 1fr;
  }
  .nd-ui .stores {
    grid-template-columns: repeat(2, 1fr);
  }
  .nd-ui .store:nth-child(odd) {
    border-left: 1px solid var(--rule);
  }
  .nd-ui .store {
    min-height: 170px;
  }
  .nd-ui .expo-list {
    grid-template-columns: 1fr;
  }
  .nd-ui .expo-list li,
  .nd-ui .expo-list li + li {
    padding: 14px 0;
    border-left: 0;
    border-bottom: 1px solid var(--rule);
  }
  .nd-ui .fgrid {
    grid-template-columns: 1fr;
  }
  .nd-ui .peek {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .nd-ui .map .arc {
    stroke-dashoffset: 0;
  }
}
.nd-ui .pg-hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(900px 640px at 74% 64%, #fff 0%, rgba(255, 255, 255, 0) 62%), linear-gradient(118deg, #d9f0ea 0%, #e9f6f2 40%, #f7fbfa 100%);
  border-bottom: 1px solid var(--rule);
}
.nd-ui .pg-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(29, 122, 107, 0.14) 1px, transparent 1.3px);
  background-size: 24px 24px;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 38%, #000 72%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 38%, #000 72%, transparent 100%);
  pointer-events: none;
}
.nd-ui .pg-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  min-height: clamp(480px, calc(100vh - 116px), 640px);
}
.nd-ui .pg-copy {
  position: relative;
  z-index: 2;
  padding-block: clamp(40px, 5vw, 64px);
}
.nd-ui .crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0 0 22px;
  font-size: 13px;
  color: var(--muted);
}
.nd-ui .crumbs a:hover {
  color: var(--teal-deep);
}
.nd-ui .crumbs [aria-current] {
  color: var(--ink);
  font-weight: 600;
}
.nd-ui .pg-ttl {
  font-family: var(--f-serif);
  font-weight: 900;
  font-size: clamp(44px, 6.4vw, 92px);
  line-height: 1.08;
  margin: 26px 0 22px;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.nd-ui .pg-ttl .soft {
  color: var(--teal-deep);
  font-weight: 500;
}
.nd-ui .pg-lead {
  color: var(--ink-2);
  max-width: 560px;
  margin: 0 0 32px;
  font-size: clamp(15px, 1.3vw, 17px);
}
.nd-ui .pg-act {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.nd-ui .pg-art {
  position: relative;
  align-self: stretch;
  min-height: 480px;
  margin-right: calc(var(--gutter) * -1);
}
.nd-ui .pg-art .disc {
  position: absolute;
  left: 50%;
  bottom: -30%;
  width: min(640px, 120%);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, #fff 0%, rgba(255, 255, 255, 0.7) 46%, rgba(106, 195, 179, 0.22) 47%, rgba(106, 195, 179, 0.1) 66%, transparent 66.5%);
  transform: translateX(-50%);
}
.nd-ui .pg-art .orbit {
  position: absolute;
  left: 50%;
  bottom: -18%;
  width: min(500px, 96%);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1.5px dashed rgba(29, 122, 107, 0.28);
  transform: translateX(-50%);
  animation: orbit 70s linear infinite;
}
.nd-ui .pg-mascot {
  position: absolute;
  left: 50%;
  bottom: 0;
  height: min(92%, 580px);
  transform: translateX(-50%);
}
.nd-ui .pg-mascot img {
  height: 100%;
  width: auto;
  max-width: none;
  filter: drop-shadow(0 34px 44px rgba(18, 87, 75, 0.22));
  animation: floaty 5.5s ease-in-out 1s infinite;
}
.nd-ui .pg-badge {
  position: absolute;
  z-index: 3;
}
.nd-ui .pg-badge b {
  display: block;
  font-size: 14px;
  line-height: 1.35;
  color: var(--ink);
}
.nd-ui .pg-badge small {
  font-size: 12px;
  color: var(--muted);
}
.nd-ui .pb-1 {
  left: 0;
  top: 46%;
}
.nd-ui .pb-2 {
  right: calc(var(--gutter) + 2%);
  bottom: 16%;
}
.nd-ui .pb-2 .fl-in {
  animation-delay: -3s;
}
.nd-ui .pb-ico {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: var(--tint);
  display: grid;
  place-items: center;
  flex: none;
}
.nd-ui .pb-ico img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}
.nd-ui .pb-ico svg {
  width: 22px;
  height: 22px;
}
.nd-ui .pb-teal {
  background: var(--teal);
  color: var(--on-teal);
}
.nd-ui .pg-figs .figs {
  margin-top: clamp(40px, 5vw, 64px);
}
.nd-ui .story {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}
.nd-ui .story-fig {
  position: sticky;
  top: 104px;
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 4px;
  background: var(--tint);
}
.nd-ui .story-fig img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.nd-ui .story-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 2px solid var(--teal);
}
.nd-ui .story-list li {
  display: grid;
  grid-template-columns: 56px 1fr;
  column-gap: 16px;
  padding: 26px 0 28px;
  border-bottom: 1px solid var(--rule);
}
.nd-ui .story-list .lab {
  color: var(--muted);
  padding-top: 8px;
}
.nd-ui .story-list h3 {
  font: 700 clamp(20px, 1.9vw, 24px)/1.4 var(--f-serif);
  margin: 0 0 8px;
}
.nd-ui .story-list p {
  margin: 0;
  color: var(--ink-2);
  font-size: 15px;
}
.nd-ui .sub-h {
  font: 700 18px/1.4 var(--f-serif);
  margin: clamp(48px, 6vw, 88px) 0 0;
}
.nd-ui .sub-h + .expo-list {
  margin-top: 16px;
}
.nd-ui .plat {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(20px, 4vw, 56px);
  padding: clamp(22px, 3vw, 40px);
  background: var(--tint);
  border-top: 3px solid var(--teal);
  border-radius: 0 0 6px 6px;
}
.nd-ui .plat-year b {
  display: block;
  font: 700 clamp(32px, 3.6vw, 52px)/1 var(--f-serif);
  letter-spacing: -0.03em;
  white-space: nowrap;
}
.nd-ui .plat-year span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
}
.nd-ui .plat-chips {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.nd-ui .plat-chips li {
  padding: 9px 20px;
  border-radius: 999px;
  border: 1px solid var(--rule);
  background: var(--white);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
}
.nd-ui .mission {
  position: relative;
  overflow: hidden;
  background: linear-gradient(118deg, #d9f0ea 0%, #e9f6f2 40%, #f7fbfa 100%);
  border-block: 1px solid var(--rule);
  text-align: center;
}
.nd-ui .mission::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(29, 122, 107, 0.12) 1px, transparent 1.3px);
  background-size: 24px 24px;
  -webkit-mask-image: radial-gradient(ellipse at center, #000 20%, transparent 75%);
  mask-image: radial-gradient(ellipse at center, #000 20%, transparent 75%);
  pointer-events: none;
}
.nd-ui .mission-in {
  position: relative;
  max-width: 940px;
  margin-inline: auto;
}
.nd-ui .mission-in .lab {
  color: var(--teal-deep);
}
.nd-ui .mission-in blockquote {
  margin: 22px 0 0;
  font: 700 clamp(26px, 3.4vw, 46px)/1.45 var(--f-serif);
  letter-spacing: -0.01em;
  text-wrap: balance;
}
.nd-ui .mission-in blockquote::before {
  content: "“";
  display: block;
  font-size: 2.2em;
  line-height: 0.6;
  color: var(--teal);
  margin-bottom: 14px;
}
.nd-ui .mission-in p {
  max-width: 720px;
  margin: 26px auto 0;
  color: var(--ink-2);
  font-size: clamp(15px, 1.3vw, 17px);
}
.nd-ui .promise-cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 14px;
  align-items: stretch;
}
.nd-ui .promise-fig {
  margin: 0;
  overflow: hidden;
  border-radius: 4px;
  background: var(--tint);
  min-height: 320px;
}
.nd-ui .promise-fig img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.nd-ui .pcard {
  padding: clamp(22px, 2.6vw, 36px);
  background: var(--white);
  border: 1px solid var(--rule);
  border-top: 2px solid var(--teal);
}
.nd-ui .pcard .lab {
  color: var(--muted);
}
.nd-ui .pcard h3 {
  font: 700 clamp(21px, 2vw, 26px)/1.35 var(--f-serif);
  margin: 14px 0 18px;
}
.nd-ui .checks {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}
.nd-ui .checks li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: start;
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-2);
}
.nd-ui .checks svg {
  width: 22px;
  height: 22px;
  margin-top: 2px;
  color: var(--teal-deep);
}
.nd-ui .csr {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}
.nd-ui .csr-fig {
  position: relative;
  margin: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 4px;
  background: var(--tint);
}
.nd-ui .csr-fig img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.nd-ui .csr-fig figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 30px 16px 12px;
  color: #fff;
  font-size: 13px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
}
.nd-ui .csr-h {
  font: 700 20px/1.4 var(--f-serif);
  margin: 0 0 14px;
}
.nd-ui .csr-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 2px solid var(--teal);
}
.nd-ui .csr-list li {
  display: grid;
  grid-template-columns: 44px 1fr;
  padding: 16px 0;
  border-bottom: 1px solid var(--rule);
}
.nd-ui .csr-list .lab {
  color: var(--teal-deep);
  padding-top: 6px;
}
.nd-ui .csr-list b {
  font-size: 16px;
  font-weight: 600;
}
.nd-ui .supply {
  background: var(--tint);
}
.nd-ui .supply .cap:hover {
  background: var(--white);
}
.nd-ui .caps.caps-4 {
  grid-template-columns: repeat(4, 1fr);
}
.nd-ui .cta-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(28px, 6vw, 96px);
  align-items: end;
}
.nd-ui .cta-grid p {
  margin-bottom: 0;
}
.nd-ui .cta-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 26px;
}
@media (max-width: 1100px) {
  .nd-ui .caps.caps-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .nd-ui .promise-cards {
    grid-template-columns: 1fr 1fr;
  }
  .nd-ui .promise-fig {
    grid-column: 1 / -1;
    min-height: 0;
    aspect-ratio: 16 / 7;
  }
  .nd-ui .plat {
    grid-template-columns: auto 1fr;
  }
  .nd-ui .plat-cta {
    grid-column: 1 / -1;
    justify-self: start;
  }
}
@media (max-width: 900px) {
  .nd-ui .pg-grid {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .nd-ui .pg-copy {
    padding-block: 36px 8px;
  }
  .nd-ui .pg-art {
    min-height: 440px;
    margin-right: 0;
  }
  .nd-ui .pb-2 {
    right: 2%;
  }
  .nd-ui .story,
  .nd-ui .csr,
  .nd-ui .cta-grid {
    grid-template-columns: 1fr;
  }
  .nd-ui .story-fig {
    position: relative;
    top: auto;
  }
  .nd-ui .plat {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .nd-ui .pg-art {
    min-height: 380px;
  }
  .nd-ui .pg-badge .fl-in {
    padding: 9px 14px 9px 9px;
  }
  .nd-ui .pb-ico {
    width: 40px;
    height: 40px;
  }
  .nd-ui .pb-1 {
    top: auto;
    bottom: 42%;
  }
  .nd-ui .pb-2 {
    right: 0;
    bottom: 12%;
  }
  .nd-ui .caps.caps-4 {
    grid-template-columns: 1fr;
  }
  .nd-ui .promise-cards {
    grid-template-columns: 1fr;
  }
  .nd-ui .promise-fig {
    aspect-ratio: 4 / 3;
  }
  .nd-ui .story-list li {
    grid-template-columns: 44px 1fr;
  }
}
.nd-ui .pg-mascot.is-muscle {
  bottom: -4%;
}
.nd-ui .pg-mascot.is-muscle img {
  transform-origin: 50% 90%;
  -webkit-mask-image: linear-gradient(to bottom, #000 84%, transparent 99%);
  mask-image: linear-gradient(to bottom, #000 84%, transparent 99%);
}
.nd-ui .pb-stack {
  display: flex;
  flex: none;
  padding-left: 8px;
}
.nd-ui .pb-stack img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  border-radius: 10px;
  background: #fff;
  border: 2px solid #fff;
  margin-left: -8px;
  box-shadow: 0 4px 10px -4px rgba(13, 36, 32, 0.3);
}
.nd-ui .bcards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.nd-ui .bcard {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 24px 24px 22px;
  background: var(--white);
  border: 1px solid var(--rule);
  border-top: 2px solid var(--teal);
  transition: box-shadow 0.25s;
}
.nd-ui .bcard:hover {
  box-shadow: 0 24px 44px -30px rgba(13, 36, 32, 0.35);
}
.nd-ui .bcard[hidden] {
  display: none;
}
.nd-ui .bcard-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}
.nd-ui .bcard-top .lab {
  color: var(--muted);
}
.nd-ui .bcard-logo {
  height: 56px;
  display: flex;
  align-items: center;
  min-width: 0;
}
.nd-ui .bcard-logo img {
  max-height: 44px;
  max-width: min(200px, 100%);
  width: auto;
  height: auto;
  object-fit: contain;
}
.nd-ui .bcard-name {
  font: 700 22px/1.3 var(--f-serif);
  color: var(--ink);
}
.nd-ui .bcard-name em {
  font-style: normal;
  font-weight: 500;
  color: var(--teal-deep);
}
.nd-ui .bcard-tags {
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
}
.nd-ui .bcard-sum {
  margin: 4px 0 14px;
  font-size: 14px;
  line-height: 1.75;
  color: var(--ink-2);
}
.nd-ui .bcard-foot {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--rule);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.nd-ui .bcard-count {
  font: 600 12px/1.4 var(--f-lab);
  letter-spacing: 0.06em;
  color: var(--teal-deep);
}
.nd-ui .bcard-go {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}
.nd-ui .bcard-go svg {
  width: 16px;
  height: 16px;
  transition: transform 0.25s;
}
.nd-ui .bcard:hover .bcard-go svg {
  transform: translateX(4px);
}
.nd-ui .bempty {
  color: var(--muted);
}
.nd-ui .btags {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.nd-ui .btags li {
  font-size: 13px;
  padding: 3px 10px;
  border: 1px solid var(--rule);
  background: var(--white);
  border-radius: 999px;
  color: var(--ink-2);
}
.nd-ui .bfacts {
  margin: 18px 0 0;
}
.nd-ui .bfeat-h {
  margin: 22px 0 10px !important;
  font-weight: 600;
  color: var(--ink) !important;
}
.nd-ui .bfeat {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.nd-ui .bfeat li {
  padding: 14px;
  border: 1px solid var(--rule);
  border-top: 2px solid var(--teal);
  background: var(--white);
}
.nd-ui .bfeat b {
  display: block;
  font-size: 15px;
}
.nd-ui .bfeat span {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  line-height: 1.65;
  color: var(--muted);
}
.nd-ui .bhero .pg-ttl {
  font-size: clamp(40px, 5.2vw, 76px);
  margin: 22px 0 18px;
  overflow-wrap: anywhere;
}
.nd-ui .bhero .btags {
  margin: 0 0 22px;
}
.nd-ui .bhero-art {
  position: relative;
  align-self: center;
  padding-block: clamp(32px, 5vw, 64px);
}
.nd-ui .bhero-fig {
  margin: 0;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  border-radius: 6px;
  background: var(--tint);
  box-shadow: 0 30px 60px -34px rgba(13, 36, 32, 0.45);
}
.nd-ui .bhero-fig img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.nd-ui .bhero-logo {
  position: absolute;
  left: clamp(-28px, -2vw, -12px);
  bottom: clamp(12px, 3vw, 36px);
  display: grid;
  place-items: center;
  min-width: 150px;
  height: 72px;
  padding: 12px 20px;
  border: 1px solid #fff;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 1px 2px rgba(13, 36, 32, 0.05), 0 20px 44px -18px rgba(13, 36, 32, 0.28);
}
.nd-ui .bhero-logo img {
  max-height: 44px;
  max-width: 180px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.nd-ui .bstory {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
}
.nd-ui .bstory-card {
  position: sticky;
  top: 104px;
  padding: 24px;
  background: var(--tint);
  border-top: 2px solid var(--teal);
}
.nd-ui .bstory-card .checks li {
  font-size: 14px;
}
.nd-ui .bstory-logo {
  height: 64px;
  display: flex;
  align-items: center;
  margin-bottom: 18px;
}
.nd-ui .bstory-logo img {
  max-height: 52px;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
.nd-ui .bstory-meta {
  margin: 0;
}
.nd-ui .bstory-meta div {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 12px;
  padding: 10px 0;
  border-top: 1px solid var(--rule);
}
.nd-ui .bstory-meta dt {
  font-size: 13px;
  color: var(--muted);
}
.nd-ui .bstory-meta dd {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}
.nd-ui .bstory-text p {
  margin: 0 0 16px;
  font-size: 16px;
  line-height: 1.9;
  color: var(--ink-2);
}
.nd-ui .bprods {
  background: var(--tint);
}
.nd-ui .plist {
  display: grid;
  gap: 14px;
}
.nd-ui .prow {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  background: var(--white);
  border: 1px solid var(--rule);
  border-top: 2px solid var(--teal);
}
.nd-ui .prow:nth-child(even) .prow-img {
  order: 2;
}
.nd-ui .prow-img {
  position: relative;
  min-height: 380px;
  margin: 0;
  overflow: hidden;
  background: radial-gradient(circle at 50% 55%, #fff 0%, #fff 35%, var(--tint) 100%);
}
.nd-ui .prow-img img {
  position: absolute;
  top: 32px;
  left: 32px;
  width: calc(100% - 64px);
  height: calc(100% - 64px);
  object-fit: contain;
  transition: transform 0.6s var(--ease);
}
.nd-ui .prow-img.is-dark {
  background: #000;
}
.nd-ui .prow-img.is-dark img {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.nd-ui .prow:hover .prow-img img {
  transform: scale(1.03);
}
.nd-ui .prow-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: clamp(22px, 3vw, 44px);
}
.nd-ui .prow-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.nd-ui .prow-top .lab {
  color: var(--muted);
}
.nd-ui .prow h3 {
  margin: 0;
  font: 700 clamp(22px, 2.2vw, 30px)/1.3 var(--f-serif);
}
.nd-ui .prow-desc {
  margin: 4px 0 0;
  font-size: 15px;
  line-height: 1.85;
  color: var(--ink-2);
}
.nd-ui .prow-blocks {
  display: grid;
  gap: 12px;
  margin: 6px 0 8px;
}
.nd-ui .prod-size {
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--tint);
  color: var(--teal-deep);
  font: 600 12px/1 var(--f-lab);
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.nd-ui .prod-en {
  margin: 4px 0 0;
  font: 600 12px/1.4 var(--f-lab);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal-deep);
}
.nd-ui .prod-block {
  padding-top: 10px;
  border-top: 1px solid var(--rule);
}
.nd-ui .prod-block b {
  display: block;
  margin-bottom: 4px;
  font-size: 13px;
  color: var(--ink);
}
.nd-ui .prod-block p {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  color: var(--ink-2);
}
.nd-ui .prod-block ul {
  margin: 0;
  padding-left: 18px;
  font-size: 14px;
  line-height: 1.8;
  color: var(--ink-2);
}
.nd-ui .nt-btn {
  margin-top: auto;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 40px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid var(--rule);
  background: var(--white);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  transition: all 0.2s;
}
.nd-ui .nt-btn svg {
  width: 14px;
  height: 14px;
}
.nd-ui .nt-btn:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--on-teal);
}
.nd-ui .bnav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.nd-ui .bnav-item {
  display: grid;
  grid-template-columns: minmax(0, auto) minmax(0, 1fr);
  grid-template-areas: "dir dir" "logo name";
  align-items: center;
  gap: 14px 18px;
  padding: 22px 24px;
  background: var(--white);
  border: 1px solid var(--rule);
  border-top: 2px solid var(--teal);
  transition: background 0.25s;
}
.nd-ui .bnav-item:hover {
  background: var(--tint);
}
.nd-ui .bnav-item b {
  grid-area: name;
  min-width: 0;
  overflow-wrap: anywhere;
  font: 700 20px/1.3 var(--f-serif);
  color: var(--ink);
}
.nd-ui .bnav-dir {
  grid-area: dir;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font: 600 12px/1.2 var(--f-lab);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.nd-ui .bnav-dir svg {
  width: 14px;
  height: 14px;
}
.nd-ui .bnav-item.is-prev .bnav-dir svg {
  transform: rotate(180deg);
}
.nd-ui .bnav-item.is-next {
  grid-template-columns: minmax(0, 1fr) minmax(0, auto);
  grid-template-areas: "dir dir" "name logo";
  text-align: right;
}
.nd-ui .bnav-item.is-next .bnav-dir {
  justify-content: flex-end;
}
.nd-ui .bnav-logo {
  grid-area: logo;
  min-width: 0;
  height: 44px;
  display: flex;
  align-items: center;
}
.nd-ui .bnav-logo img {
  max-height: 36px;
  max-width: min(140px, 100%);
  width: auto;
  height: auto;
  object-fit: contain;
}
.nd-ui .bstrip {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}
.nd-ui .bstrip li {
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.nd-ui .bstrip a {
  display: grid;
  place-items: center;
  height: 88px;
  padding: 14px;
  transition: background 0.25s;
}
.nd-ui .bstrip a:hover {
  background: var(--tint);
}
.nd-ui .bstrip img {
  max-height: 32px;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.75;
  transition: filter 0.25s, opacity 0.25s;
}
.nd-ui .bstrip a:hover img,
.nd-ui .bstrip a:focus-visible img {
  filter: none;
  opacity: 1;
}
.nd-ui .bmore-all {
  margin: clamp(24px, 3vw, 36px) 0 0;
}
.nd-ui .bmore-all .link {
  color: var(--teal-deep);
}
.nd-ui .nt-dialog {
  width: min(760px, calc(100vw - 32px));
  max-width: none;
  max-height: calc(100vh - 48px);
  padding: 0;
  border: 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 40px 80px -30px rgba(13, 36, 32, 0.6);
}
.nd-ui .nt-dialog[open] {
  display: flex;
  flex-direction: column;
}
.nd-ui .nt-dialog::backdrop {
  background: rgba(13, 36, 32, 0.6);
}
.nd-ui .nt-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px 12px 22px;
  background: var(--teal);
  color: var(--on-teal);
}
.nd-ui .nt-head h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
}
.nd-ui .nt-close {
  flex: none;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  color: var(--on-teal);
  display: grid;
  place-items: center;
  cursor: pointer;
}
.nd-ui .nt-close svg {
  width: 18px;
  height: 18px;
}
.nd-ui .nt-close:hover {
  background: var(--white);
}
.nd-ui .nt-body {
  overflow: auto;
  padding: 16px;
  background: var(--white);
}
.nd-ui .nt-body img {
  width: 100%;
  height: auto;
  margin: 0 auto;
}
@media (max-width: 1100px) {
  .nd-ui .bcards {
    grid-template-columns: repeat(2, 1fr);
  }
  .nd-ui .bstrip {
    grid-template-columns: repeat(4, 1fr);
  }
  .nd-ui .bstory {
    grid-template-columns: 260px 1fr;
  }
}
@media (max-width: 900px) {
  .nd-ui .bhero-art {
    padding-block: 0 36px;
  }
  .nd-ui .bhero-logo {
    left: 12px;
  }
  .nd-ui .bstory {
    grid-template-columns: 1fr;
  }
  .nd-ui .bstory-card {
    position: relative;
    top: auto;
  }
  .nd-ui .prow {
    grid-template-columns: 1fr;
  }
  .nd-ui .prow:nth-child(even) .prow-img {
    order: 0;
  }
  .nd-ui .prow-img {
    min-height: 300px;
  }
}
@media (max-width: 640px) {
  .nd-ui {
    /* The size pill is nowrap, so a long one (e.g. "395 g · 25 full scoops / 50 half scoops")
		   set the row's min-content width and pushed the whole page wider than a 320px screen.
		   Let the pill drop under the kicker instead — it cannot force a horizontal scrollbar. */
  }
  .nd-ui .prow-top {
    flex-wrap: wrap;
  }
  .nd-ui .prod-size {
    white-space: normal;
  }
  .nd-ui .bcards {
    grid-template-columns: 1fr;
  }
  .nd-ui .bstrip {
    grid-template-columns: repeat(3, 1fr);
  }
  .nd-ui .bnav {
    grid-template-columns: 1fr;
  }
  .nd-ui .bnav-item {
    padding: 18px;
    gap: 12px 14px;
  }
  .nd-ui .bnav-item b {
    font-size: 17px;
  }
  .nd-ui .bnav-logo img {
    max-width: min(100px, 100%);
    max-height: 30px;
  }
  .nd-ui .bfeat {
    grid-template-columns: 1fr;
  }
  .nd-ui .prow-img {
    min-height: 260px;
  }
  .nd-ui .prow-img img {
    top: 20px;
    left: 20px;
    width: calc(100% - 40px);
    height: calc(100% - 40px);
  }
  .nd-ui .bhero-logo {
    min-width: 120px;
    height: 60px;
    padding: 10px 16px;
  }
  .nd-ui .bhero-logo img {
    max-height: 36px;
  }
}
.nd-ui .oshops {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.nd-ui .oshop {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 22px 22px 24px;
  background: var(--white);
  border: 1px solid var(--rule);
  border-top: 2px solid var(--teal);
  transition: box-shadow 0.25s;
}
.nd-ui .oshop:hover {
  box-shadow: 0 24px 44px -30px rgba(13, 36, 32, 0.35);
}
.nd-ui .oshop-head {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nd-ui .oshop-head .lab {
  align-self: flex-start;
  margin-left: auto;
  color: var(--muted);
}
.nd-ui .oshop-ic {
  flex: none;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--rule);
}
.nd-ui .oshop-ic img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.nd-ui .oshop-name {
  min-width: 0;
}
.nd-ui .oshop-name h3 {
  margin: 0;
  font: 700 20px/1.3 var(--f-serif);
}
.nd-ui .oshop-name span {
  display: block;
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
}
.nd-ui .oshop-qr {
  height: 240px;
  padding: 16px;
  border-radius: 4px;
  background: var(--tint);
}
.nd-ui .oshop-qr img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.nd-ui .oshop-empty {
  height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
  color: var(--muted);
}
.nd-ui .oshop-empty svg {
  width: 34px;
  height: 34px;
  color: var(--teal-deep);
}
.nd-ui .oshop-how {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink-2);
}
.nd-ui .oshop-act {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 18px;
}
.nd-ui .qr-zoom {
  padding-bottom: 1px;
  border-bottom: 1px solid currentColor;
  font-size: 14px;
  font-weight: 600;
  color: var(--teal-deep);
}
.nd-ui .copy-ok {
  margin: -6px 0 0;
  font-size: 13px;
  line-height: 1.6;
  color: var(--teal-deep);
  word-break: break-all;
}
.nd-ui .copy-ok[hidden] {
  display: none;
}
.nd-ui .copy-ok.is-err {
  color: #b42318;
}
.nd-ui .how {
  background: var(--tint);
}
.nd-ui .how .cap:hover {
  background: var(--white);
}
.nd-ui .how-more {
  margin: clamp(28px, 4vw, 44px) 0 0;
}
.nd-ui .how-more .link {
  color: var(--teal-deep);
}
.nd-ui .nt-dialog.is-qr {
  width: min(460px, calc(100vw - 32px));
}
.nd-ui .nt-dialog.is-qr .nt-body img {
  max-width: 400px;
}
@media (max-width: 1100px) {
  .nd-ui .oshops {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .nd-ui .oshops {
    grid-template-columns: 1fr;
  }
  .nd-ui .oshop-qr {
    height: 220px;
  }
}
/*
|-------------------------------------------------------------------------------------------------------------------------------
| English pages (<html lang="en">, e.g. the English homepage /en/)
|-------------------------------------------------------------------------------------------------------------------------------
| ND Sans / ND Serif are Chinese fonts: their ’ “ ” · … glyphs are full-width. Their `pwid` feature swaps in
| proportional punctuation, so English reads normally. English lines are also much longer than Chinese ones:
| smaller hero titles, and emphasised heading phrases may wrap (Chinese keeps them on one line).
*/
html[lang="en"] body,
html[lang="en"] body * {
  font-variant-east-asian: proportional-width !important;
}
html[lang="en"] {
  --f-sans: "ND Punct", "ND Sans", "PingFang SC", "HarmonyOS Sans SC", "MiSans", "Microsoft YaHei", "Noto Sans SC", system-ui, sans-serif;
}
.nd-ui .nw {
  white-space: nowrap;
}
html[lang="en"] .nd-ui .hm .ttl {
  font-size: clamp(34px, 4.6vw, 58px);
  letter-spacing: -0.02em;
}
html[lang="en"] .nd-ui .hm .ttl.sm {
  font-size: clamp(30px, 4vw, 52px);
}
html[lang="en"] .nd-ui .sec-top h2 i {
  white-space: normal;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
@media (max-width: 900px) {
  html[lang="en"] .nd-ui .hm .ttl {
    font-size: clamp(24px, 8vw, 60px);
  }
  html[lang="en"] .nd-ui .hm .ttl.sm {
    font-size: clamp(22px, 7.2vw, 54px);
  }
}
/* Front page keyframes (kept at root level; LESS does not scope @keyframes) */
@keyframes hmfill {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
@keyframes orbit {
  to {
    transform: translateX(-50%) rotate(360deg);
  }
}
@keyframes floaty {
  50% {
    transform: translateY(-12px);
  }
}
@keyframes flex {
  0%,
  100% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-10px) rotate(-1.2deg);
  }
}
@keyframes bob {
  50% {
    transform: translateY(-10px);
  }
}
@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes hub {
  0% {
    transform: scale(0.4);
    opacity: 1;
  }
  100% {
    transform: scale(3.2);
    opacity: 0;
  }
}
/*
|-------------------------------------------------------------------------------------------------------------------------------
| Media Query (Min)
|-------------------------------------------------------------------------------------------------------------------------------
| Small devices (landscape phones, 576px and up),
| Medium devices (tablets, 768px and up),
| Large devices (desktops, 992px and up),
| Extra large devices (large desktops, 1200px and up),
| and other standard screen sizes (414px, 375px and 320px and up - Note: get from browser)
|-------------------------------------------------------------------------------------------------------------------------------
|
*/
/*
|-------------------------------------------------------------------------------------------------------------------------------
| Media Query (Max)
|-------------------------------------------------------------------------------------------------------------------------------
| Large devices (desktops, less than 1200px),
| Medium devices (tablets, less than 992px),
| Small devices (landscape phones, less than 768px),
| Extra small devices (portrait phones, less than 576px),
| and other standard screen sizes (less than 414px, 375px and 320px - Note: get from browser)
|-------------------------------------------------------------------------------------------------------------------------------
|
*/
/*
|-------------------------------------------------------------------------------------------------------------------------------
| Media Query (Min and Max)
|-------------------------------------------------------------------------------------------------------------------------------
| Small devices (landscape phones, 576px and up),
| Medium devices (tablets, 768px and up),
| Large devices (desktops, 992px and up),
| Extra large devices (large desktops, 1200px and up)
|-------------------------------------------------------------------------------------------------------------------------------
|
*/
/*
|-------------------------------------------------------------------------------------------------------------------------------
| Reduced motion (site-wide, as in the design)
|-------------------------------------------------------------------------------------------------------------------------------
|
*/
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
  .js .rv {
    opacity: 1;
    transform: none;
  }
}
