@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400&family=IBM+Plex+Mono:wght@400;500;600&display=swap');
/*
 * main.css — front-end entrypoint, also injected into the editor canvas (parity).
 * Compiles to assets/css/main.build.css. Never hand-edit the build output.
 * Import order mirrors the source site's stylesheet load order.
 */
/*
 * Design tokens — single source of truth.
 * theme.json font-family presets point back here (fontFamily: var(--nc-sans|--nc-mono)),
 * so the editor canvas and the front-end always agree.
 */
:root {

  --nc-red:        #DF1B25;
  --nc-red-700:    #B5141C;
  --nc-red-050:    #FCEEEE;
  --nc-ink:        #2C211B;
  --nc-ink-900:    #1E1611;
  --nc-ink-700:    #4A3D34;
  --nc-green:      #00B575;
  --nc-green-600:  #009A63;
  --nc-green-050:  #E8F7F0;

  --nc-bg:         #FFFFFF;
  --nc-bg-alt:     #F3F6F8;
  --nc-bg-warm:    #FAF8F5;

  --nc-n-900: #2C211B;
  --nc-n-700: #564B43;
  --nc-n-500: #837972;
  --nc-n-400: #A39A93;
  --nc-n-300: #CFC8C2;
  --nc-n-200: #E7E2DC;
  --nc-n-100: #F2EEE9;

  --nc-fg:    var(--nc-ink);
  --nc-fg-2:  #564B43;
  --nc-fg-3:  #837972;
  --nc-on-dark:   #FFFFFF;
  --nc-on-dark-2: rgba(255,255,255,0.72);

  --nc-sans: "IBM Plex Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --nc-mono: "IBM Plex Mono", ui-monospace, "SF Mono", Menlo, Consolas, monospace;

  /* Aliases bridging theme.json presets ⇄ tokens (the real source of truth lives above). */
  --display: var(--nc-sans);
  --body:    var(--nc-sans);

  --nc-display:  clamp(2.6rem, 5.2vw, 4.6rem);
  --nc-h1:       clamp(2.1rem, 3.6vw, 3.25rem);
  --nc-h2:       clamp(1.6rem, 2.4vw, 2.25rem);
  --nc-h3:       1.375rem;
  --nc-lead:     clamp(1.05rem, 1.4vw, 1.3rem);
  --nc-body:     1rem;
  --nc-small:    0.875rem;
  --nc-eyebrow:  0.78rem;

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

  --nc-sh-sm: 0 1px 2px rgba(44,33,27,0.06), 0 1px 3px rgba(44,33,27,0.05);
  --nc-sh-md: 0 4px 14px rgba(44,33,27,0.08), 0 2px 6px rgba(44,33,27,0.05);
  --nc-sh-lg: 0 18px 50px rgba(44,33,27,0.14), 0 6px 18px rgba(44,33,27,0.08);

  --nc-maxw: 1240px;
  --nc-maxw-wide: 1600px;
  --nc-gutter: clamp(20px, 4vw, 56px);

  --nc-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --nc-ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --nc-dur: 0.5s;
}
/* Reset, element defaults, shared button/eyebrow families, reveal animations. */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--nc-sans);
  color: var(--nc-fg);
  background: var(--nc-bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1,h2,h3,h4 { line-height: 1.08; letter-spacing: -0.02em; margin: 0; font-weight: 700; }
p { margin: 0; }
/* Text fallback when no custom logo is uploaded yet. */
.nc-logo__text { font-weight: 700; font-size: 1.12rem; letter-spacing: -0.02em; color: var(--nc-red); white-space: nowrap; }
.nc-eyebrow {
  font-size: var(--nc-eyebrow);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--nc-red);
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.nc-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--nc-sans); font-weight: 600; font-size: 0.97rem;
  padding: 0.85em 1.6em; border-radius: var(--nc-r-pill);
  border: 1px solid transparent; cursor: pointer;
  transition: background var(--nc-dur) var(--nc-ease), color var(--nc-dur) var(--nc-ease),
              transform 0.15s var(--nc-ease), box-shadow var(--nc-dur) var(--nc-ease);
  white-space: nowrap;
}
.nc-btn:active { transform: translateY(1px); }
.nc-btn--primary { background: var(--nc-ink); color: #fff; }
.nc-btn--primary:hover { background: var(--nc-green); color: #fff; }
.nc-btn--green { background: var(--nc-green); color: #fff; }
.nc-btn--green:hover { background: var(--nc-green-600); }
.nc-btn--ghost { background: var(--nc-bg); color: var(--nc-ink); border-color: var(--nc-n-300); }
.nc-btn--ghost:hover { background: var(--nc-n-100); border-color: var(--nc-n-100); }
.nc-btn--on-dark { background: #fff; color: var(--nc-ink); }
.nc-btn--on-dark:hover { background: var(--nc-green); color: #fff; }
.nc-btn--ghost-dark { background: transparent; color: #fff; border-color: rgba(255,255,255,0.34); }
.nc-btn--ghost-dark:hover { background: rgba(255,255,255,0.22); border-color: transparent; }
.nc-btn .ic { width: 16px; height: 16px; stroke-width: 2; transition: transform 0.2s var(--nc-ease); }
.nc-btn--primary:hover .ic, .nc-btn--on-dark:hover .ic, .nl-btn:hover .ic, .nc-btn--green:hover .ic { transform: translateX(3px); }
.reveal-group.armed > * { opacity: 0; transform: translateY(30px); transition: opacity .85s var(--nc-ease) .08s, transform .85s var(--nc-ease) .08s; }
.reveal-group.armed.in > * { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal-group.armed > * { opacity: 1; transform: none; } }
.nc-rise { transition: opacity 0.7s var(--nc-ease), transform 0.7s var(--nc-ease); }
.nc-rise.d1 { transition-delay: 0.04s; }
.nc-rise.d2 { transition-delay: 0.12s; }
.nc-rise.d3 { transition-delay: 0.20s; }
.nc-rise.d4 { transition-delay: 0.30s; }
.nc-rise.d5 { transition-delay: 0.42s; }
@starting-style {
  .nc-rise { opacity: 0; transform: translateY(20px); }
}
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}
/* Global chrome */
.nc-header { position: relative; z-index: 110; width: 100%; }
.nc-header.sticky-top { position: sticky; top: 0; z-index: 50; background: var(--nc-bg); }
.nc-header--bordered { background: var(--nc-bg); border-bottom: 1px solid var(--nc-n-200); }
.nc-header--soft     { background: var(--nc-bg); box-shadow: 0 1px 0 rgba(44,33,27,0.04), 0 8px 24px rgba(44,33,27,0.05); }
.nc-header--panel    { background: var(--nc-bg-alt); border-bottom: 1px solid var(--nc-n-200); }
.nc-header--warm     { background: var(--nc-bg-warm); border-bottom: 1px solid var(--nc-n-200); }
.nc-header--seamless { background: transparent; }
.nc-header--plain    { background: var(--nc-bg); }
.nc-header--hairline { background: var(--nc-bg); position: relative; }
.nc-header--hairline::after { content:""; position:absolute; left: var(--nc-gutter); right: var(--nc-gutter); bottom: 0; height: 1px; background: var(--nc-n-200); }
.nc-topbar { background: var(--nc-bg-alt); border-bottom: 1px solid var(--nc-n-200); position: relative; z-index: 210; font-size: 0.82rem; }
.nc-topbar__inner { max-width: var(--nc-maxw-wide); margin: 0 auto; padding: 8px var(--nc-gutter);
  display: flex; align-items: center; gap: 22px; color: var(--nc-fg-3); }
.nc-topbar a { color: var(--nc-fg-2); transition: color 0.2s; }
.nc-topbar a:hover { color: var(--nc-ink); }
.nc-topbar .spacer { margin-left: auto; }
.nc-topbar .tb-group { display: flex; align-items: center; gap: 18px; }
.nc-lang { display: inline-flex; align-items: center; gap: 8px; cursor: pointer; font-weight: 500; color: var(--nc-fg-2); position: relative; }
.nc-lang .flag { width: 18px; height: 18px; border-radius: 50%; -o-object-fit: cover; object-fit: cover; display: inline-block; box-shadow: 0 0 0 1px rgba(44,33,27,0.08); }
.nc-lang .caret { width: 9px; height: 9px; opacity: 0.55; transition: transform 0.2s; }
.nc-lang:hover .caret { transform: rotate(180deg); }
.nc-lang__menu { position: absolute; top: 100%; left: 0; margin-top: 9px; background: #fff; border: 1px solid var(--nc-n-200);
  border-radius: var(--nc-r-md); box-shadow: var(--nc-sh-md); padding: 6px; min-width: 172px; z-index: 200;
  opacity: 0; visibility: hidden; transform: translateY(-5px); transition: opacity 0.2s var(--nc-ease), transform 0.2s var(--nc-ease), visibility 0.2s; }
.nc-lang:hover .nc-lang__menu { opacity: 1; visibility: visible; transform: none; }
.nc-lang__menu a { display: flex; align-items: center; gap: 10px; padding: 8px 10px; border-radius: var(--nc-r-sm); font-weight: 500; color: var(--nc-fg-2); }
.nc-lang__menu a:hover { background: var(--nc-n-100); color: var(--nc-ink); }
.nc-lang__menu::before { content: ""; position: absolute; top: -11px; left: 0; right: 0; height: 11px; }
.nc-lang__menu a.is-active { color: var(--nc-ink); font-weight: 600; }
.nc-lang__menu .fimg { width: 18px; height: 18px; border-radius: 50%; flex: none; -o-object-fit: cover; object-fit: cover; box-shadow: 0 0 0 1px rgba(44,33,27,0.08); }
.nc-search { display: inline-flex; align-items: center; gap: 9px; color: var(--nc-fg-3); cursor: pointer;
  border: 1px solid var(--nc-n-200); background: #fff; border-radius: var(--nc-r-pill); padding: 6px 22px 6px 14px; min-width: 150px; transition: border-color 0.2s; }
.nc-search:hover { border-color: var(--nc-n-300); }
.nc-search svg { width: 14px; height: 14px; }
.nc-topbar .tb-link { display: inline-flex; align-items: center; gap: 5px; }
.nc-topbar .tb-link svg { width: 14px; height: 14px; opacity: 0.7; }
.nc-topbar--plain { background: var(--nc-bg); border-bottom: none; }
.nc-topbar--plain .nc-topbar__inner { padding-top: 16px; padding-bottom: 6px; }
.nc-topbar--grey { background: #F3F3F5; border-bottom: none; }
@media (max-width: 720px){ .nc-topbar .tb-hide { display: none; } }
.nc-header__inner {
  max-width: var(--nc-maxw-wide);
  margin: 0 auto;
  padding: 18px var(--nc-gutter);
  display: flex; align-items: center; gap: 28px;
}
.nc-logo { flex: none; display: inline-flex; align-items: center; }
.nc-logo img { height: 30px; width: auto; }
.nc-logo--white img { filter: brightness(0) invert(1); }
.nc-nav { display: flex; align-items: center; gap: 4px; margin-left: 6px; }
.nc-nav a {
  position: relative;
  display: inline-flex; align-items: center; gap: 6px; white-space: nowrap;
  font-size: 0.95rem; font-weight: 500; color: var(--nc-fg-2);
  padding: 9px 13px; border-radius: var(--nc-r-sm);
  transition: color 0.2s var(--nc-ease);
}
.nc-nav a::after { content: ""; position: absolute; left: 13px; right: 13px; bottom: 3px; height: 2px;
  background: var(--nc-red); transform: scaleX(0); transform-origin: left center; transition: transform 0.16s var(--nc-ease); }
.nc-nav a:hover { color: var(--nc-ink); }
.nc-nav a:hover::after { transform: scaleX(1); }
.nc-nav .caret { width: 9px; height: 9px; opacity: 0.55; transition: transform 0.22s var(--nc-ease); }
.nc-nav a:hover .caret { transform: rotate(180deg); }
.nc-header__cta { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.nc-header__cta .nc-btn { padding: 0.66em 1.45em; font-size: 0.9rem; }
.nc-utility {
  border-bottom: 1px solid var(--nc-n-200);
  font-size: 0.8rem; color: var(--nc-fg-3);
}
.nc-utility__inner {
  max-width: var(--nc-maxw); margin: 0 auto; padding: 7px var(--nc-gutter);
  display: flex; align-items: center; gap: 20px;
}
.nc-utility a { color: var(--nc-fg-3); transition: color 0.2s; }
.nc-utility a:hover { color: var(--nc-ink); }
.nc-utility .sep { margin-left: auto; }
.nc-header--dark .nc-nav a { color: var(--nc-on-dark-2); }
.nc-header--dark .nc-nav a:hover { color: #fff; background: rgba(255,255,255,0.08); }
.nc-header--glass .nc-nav a { color: rgba(255,255,255,0.86); }
.nc-header--glass .nc-nav a:hover { color: #fff; background: rgba(255,255,255,0.12); }
.nc-header--dark .caret, .nc-header--glass .caret { filter: brightness(0) invert(1); }
@media (max-width: 1080px) {
  .nc-nav { display: none; }
  .nc-header__cta .nc-btn--ghost, .nc-header__cta .nc-btn--ghost-dark { display: none; }
}
.nc-megawrap {
  position: absolute; left: 0; right: 0; top: 100%;
  display: flex; justify-content: center;
  padding: 0 var(--nc-gutter);
  z-index: 120;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity 0.24s var(--nc-ease), transform 0.24s var(--nc-ease), visibility 0.24s;
  pointer-events: none;
}
.nc-header.mega-open .nc-megawrap { opacity: 1; visibility: visible; transform: none; pointer-events: auto; }
.nc-mega {
  width: 100%; max-width: var(--nc-maxw-wide);
  margin-top: 1px;
  background: #fff; border-radius: 0 0 var(--nc-r-xl) var(--nc-r-xl);
  box-shadow: 0 26px 50px -16px rgba(44,33,27,0.22);
  overflow: hidden;
}
.nc-mega__panel { display: none; }
.nc-mega__panel.is-active { display: grid; }
.nc-mega__panel { grid-template-columns: 1fr 380px; }
.nc-mega__main { padding: 30px 34px 32px; }
.nc-mega__rail { position: relative; padding: 30px 30px 32px; overflow: hidden;
  background: radial-gradient(130% 120% at 85% 0%, #46372d 0%, var(--nc-ink) 58%); color: #fff; }
.nc-mega__eyebrow { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600;
  color: var(--nc-red); display: inline-flex; align-items: center; gap: 8px; margin-bottom: 18px; }
.nc-mega__eyebrow img { width: 13px; height: 13px; }
.nc-mega__cols { -moz-column-gap: 30px; column-gap: 30px; }
.nc-mega__cols.c3 { -moz-columns: 3; columns: 3; }
.nc-mega__cols.c2 { -moz-columns: 2; columns: 2; }
.nc-mega__cat { -moz-column-break-inside: avoid; break-inside: avoid; margin-bottom: 18px; }
.nc-mega__cat:last-child { margin-bottom: 0; }
.nc-mega__cathead { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.nc-mega__catchip { width: 34px; height: 34px; border-radius: 10px; flex: none;
  background: var(--nc-red-050); color: var(--nc-red); display: inline-flex; align-items: center; justify-content: center; }
.nc-mega__catchip .ic { width: 17px; height: 17px; stroke-width: 2; }
.nc-mega__catname { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 700; color: var(--nc-fg-3); }
.nc-mega__list { display: flex; flex-direction: column; gap: 2px; }
.nc-mega__link { position: relative; display: flex; align-items: center; gap: 8px; padding: 8px 28px 8px 0; border-radius: var(--nc-r-sm); white-space: nowrap;
  font-size: 0.95rem; font-weight: 500; color: var(--nc-ink); transition: color 0.18s; }
.nc-mega__link .ic { width: 16px; height: 16px; color: var(--nc-fg-3); transition: color 0.18s; flex: none; }
.nc-mega__link .arr { position: absolute; right: 4px; top: 50%; margin-top: -7.5px; opacity: 0; transform: translateX(-4px); transition: opacity 0.18s, transform 0.18s; width: 15px; height: 15px; color: var(--nc-red); }
.nc-mega__link:hover { color: var(--nc-red); }
.nc-mega__link:hover .ic { color: var(--nc-red); }
.nc-mega__link:hover .arr { opacity: 1; transform: none; }
.nc-mega__link span.sub { display: block; font-size: 0.8rem; font-weight: 400; color: var(--nc-fg-3); margin-top: 1px; }
.nc-mega__cards { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
/* Odd number of cards → the last one spans full width (matches the design). */
.nc-mega__cards > .nc-mega__card:last-child:nth-child(odd) { grid-column: 1 / -1; }
.nc-mega__card { display: flex; gap: 13px; align-items: flex-start; padding: 14px; border-radius: var(--nc-r-md);
  background: var(--nc-bg-alt); transition: background 0.18s var(--nc-ease), transform 0.18s var(--nc-ease); }
.nc-mega__card:hover { background: var(--nc-n-100); transform: translateY(-2px); }
.nc-mega__card .nc-mega__catchip { width: 40px; height: 40px; border-radius: 12px; background: #fff; color: var(--nc-red); }
.nc-mega__card:hover .nc-mega__catchip { background: #fff; }
.nc-mega__card .nc-mega__catchip .ic { width: 19px; height: 19px; }
.nc-mega__cardbody b { display: flex; align-items: center; gap: 6px; font-size: 0.97rem; font-weight: 650; color: var(--nc-ink); }
.nc-mega__cardbody b .arr { width: 15px; height: 15px; color: var(--nc-red); opacity: 0; transform: translateX(-4px); transition: opacity 0.18s, transform 0.18s; }
.nc-mega__card:hover .nc-mega__cardbody b .arr { opacity: 1; transform: none; }
.nc-mega__cardbody p { font-size: 0.85rem; color: var(--nc-fg-2); margin-top: 3px; line-height: 1.45; }
.nc-mega__rail .star { position: absolute; right: -18px; bottom: -18px; width: 120px; opacity: 0.10; filter: brightness(0) invert(1); }
.nc-mega__raileyebrow { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600;
  color: #fff; opacity: 0.66; display: inline-flex; align-items: center; gap: 8px; margin-bottom: 14px; }
.nc-mega__railimg { width: 100%; height: 132px; border-radius: var(--nc-r-md); -o-object-fit: cover; object-fit: cover; margin-bottom: 16px; }
.nc-mega__rail h4 { font-size: 1.2rem; line-height: 1.18; margin-bottom: 8px; position: relative; }
.nc-mega__rail p { font-size: 0.9rem; color: var(--nc-on-dark-2); line-height: 1.5; position: relative; }
.nc-mega__railcta { display: inline-flex; align-items: center; gap: 8px; margin-top: 18px; font-weight: 600; font-size: 0.95rem; color: #fff; position: relative; }
.nc-mega__railcta .ic { width: 16px; height: 16px; transition: transform 0.2s var(--nc-ease); }
.nc-mega__railcta:hover .ic { transform: translateX(4px); }
.nc-mega__railperson { display: flex; align-items: center; gap: 12px; margin-top: 18px; position: relative; }
.nc-mega__railperson img { width: 46px; height: 46px; border-radius: 50%; -o-object-fit: cover; object-fit: cover; }
.nc-mega__railperson b { display: block; font-size: 0.92rem; }
.nc-mega__railperson span { font-size: 0.8rem; color: var(--nc-on-dark-2); }
.nc-megabackdrop { display: none; }
.nc-nav a.mega-active { color: var(--nc-ink); }
.nc-nav a.mega-active::after { transform: scaleX(1); }
.nc-nav a.mega-active .caret { transform: rotate(180deg); }
@media (max-width: 1080px) {
  .nc-megawrap, .nc-megabackdrop { display: none !important; }
}
.cta-final { position: relative; overflow: hidden; color: #fff; isolation: isolate; }
.cta-final__bg { position: absolute; inset: 0; z-index: -2; }
.cta-final__bg img { width: 100%; height: 100%; -o-object-fit: cover; object-fit: cover; }
.cta-final::before { content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(105deg, rgba(28,20,16,.95) 0%, rgba(28,20,16,.84) 40%, rgba(44,33,27,.7) 100%),
              radial-gradient(120% 120% at 82% -10%, rgba(70,55,45,.55) 0%, transparent 55%),
              radial-gradient(50% 60% at 12% 115%, rgba(223,27,37,.32) 0%, transparent 70%); }
.cta-final__in { max-width: var(--nc-maxw-wide); margin: 0 auto; padding: clamp(56px,6vw,92px) var(--nc-gutter); }
.cta-final__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px,5vw,72px); align-items: center; }
.cta-final .sx-eyebrow { color: rgba(255,255,255,.65); }
.cta-final h2 { color: #fff; }
.cta-final .lead { color: var(--nc-on-dark-2); font-size: var(--nc-lead); line-height: 1.5; margin-top: 14px; max-width: 46ch; }
.cta-final__center { max-width: 640px; margin: 0 auto; text-align: center; }
.cta-final__center .sx-eyebrow { justify-content: center; }
.cta-final__center h2 { max-width: none; margin-left: auto; margin-right: auto; }
.cta-final__center .lead { margin-left: auto; margin-right: auto; }
.cta-final__btns { display: flex; gap: 13px; flex-wrap: wrap; margin-top: 32px; justify-content: center; }
.cta-team { display: flex; align-items: center; justify-content: center; margin: 30px 0 0; }
.cta-contacts { display: flex; flex-direction: row; gap: 14px; }
.cta-contact { flex: 1; min-width: 0; display: flex; flex-direction: row; align-items: center; gap: 14px; background: rgba(18,13,9,.46); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border: none; border-radius: 16px; padding: 16px 20px; }
@media (max-width: 560px) { .cta-contacts { flex-direction: column; } }
.cta-contact b { display: block; color: #fff; font-size: 1rem; line-height: 1.2; }
.cta-contact > div span { font-size: .82rem; color: rgba(255,255,255,.55); display: block; line-height: 1.2; margin-top: 5px; }
.cta-team { display: flex; align-items: center; justify-content: center; margin: 30px 0 0; }
.cta-team img { width: 44px; height: 44px; border-radius: 50%; -o-object-fit: cover; object-fit: cover; margin-left: -12px; border: 2px solid var(--nc-ink); }
.cta-team img:first-child { margin-left: 0; }
.cta-team span { margin-left: 16px; color: var(--nc-on-dark-2); font-size: .92rem; }
@media (max-width: 900px) { .cta-final__grid { grid-template-columns: 1fr; } }
.nl-bar { background: #241a14; }
.nl-bar__in { max-width: var(--nc-maxw-wide); margin: 0 auto; padding: 30px var(--nc-gutter); display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap; }
.nl-bar__txt h3 { color: #fff; font-size: 1.3rem; letter-spacing: -0.015em; }
.nl-bar__txt p { color: rgba(255,255,255,.6); font-size: .95rem; margin-top: 5px; }
.nl-bar__form { display: flex; gap: 10px; flex-wrap: wrap; flex: none; }
.nl-bar__form input { font-family: var(--nc-sans); padding: 13px 16px; border-radius: 11px; border: none; background: #fff; color: var(--nc-ink); font-size: .94rem; min-width: 190px; }
.nl-bar__form input::-moz-placeholder { color: var(--nc-fg-3); }
.nl-bar__form input::placeholder { color: var(--nc-fg-3); }
footer.ft { background: #120D0A; color: #fff; }
footer.ft a { color: rgba(255,255,255,.7); transition: color .2s; }
footer.ft a:hover { color: #fff; }
.ft-wrap { max-width: var(--nc-maxw-wide); margin: 0 auto; padding: clamp(34px,3.5vw,46px) var(--nc-gutter); }
.ft-logo { height: 30px; filter: brightness(0) invert(1); }
footer.ft address { font-style: normal; color: rgba(255,255,255,.65); line-height: 1.85; margin-top: 20px; font-size: .93rem; }
footer.ft address a:hover { color: #fff; }
.ft-cvr { color: rgba(255,255,255,.45); font-size: .84rem; margin-top: 16px; }
.ft-social { display: flex; gap: 10px; margin-top: 24px; }
footer.ft .ft-social a { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.08); display: inline-flex; align-items: center; justify-content: center; color: #fff; transition: background .25s var(--nc-ease); }
footer.ft .ft-social a:hover { background: rgba(255,255,255,.18); color: #fff; }
.ft-social svg { width: 17px; height: 17px; fill: currentColor; }
footer.ft h4 { color: #fff; font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 18px; opacity: .55; font-weight: 700; }
footer.ft ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; font-size: .93rem; }
.ft-news-row { display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap; padding-bottom: clamp(34px,3.5vw,46px); }
.nl-bar__txt h3 { color: #fff; font-size: 1.3rem; letter-spacing: -0.015em; }
.nl-bar__txt p { color: rgba(255,255,255,.6); font-size: .95rem; margin-top: 5px; }
.nl-bar__form { display: flex; gap: 10px; flex-wrap: wrap; flex: none; }
.nl-bar__form input { font-family: var(--nc-sans); padding: 13px 16px; border-radius: 11px; border: none; background: #fff; color: var(--nc-ink); font-size: .94rem; min-width: 190px; }
.nl-bar__form input::-moz-placeholder { color: var(--nc-fg-3); }
.nl-bar__form input::placeholder { color: var(--nc-fg-3); }
.ft-cols { display: grid; grid-template-columns: 1.25fr 1.7fr 1.7fr; gap: clamp(28px,3vw,48px); border-top: 1px solid rgba(255,255,255,.1); padding-top: clamp(40px,4vw,56px); }
.nl-btn { background: #1c1510; color: #fff; border: 1px solid rgba(255,255,255,.28); }
.nl-btn:hover { background: rgba(255,255,255,.14); border-color: transparent; }
.ft-links2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px; align-content: start; }
.ft-bottom { max-width: var(--nc-maxw-wide); margin: 0 auto; padding: 0 var(--nc-gutter); }
.ft-bottom__line { border-top: 1px solid rgba(255,255,255,.1); padding: 20px 0; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: .83rem; color: rgba(255,255,255,.5); }
footer.ft .ft-bottom a { color: rgba(255,255,255,.5); font-weight: 400; text-decoration: none; }
footer.ft .ft-bottom a:hover { color: #fff; }
@media (max-width: 900px) { .ft-cols { grid-template-columns: 1fr 1fr; } .ft-brand { grid-column: 1 / -1; } }
@media (max-width: 560px) { .ft-cols { grid-template-columns: 1fr; } .ft-links2 { grid-template-columns: 1fr 1fr; } }
/* Footer link menus: one nav menu flowing into two columns (matches the original two-<ul> layout). */
footer.ft .ft-links2 { display: block; }
footer.ft .ft-linklist { display: block; -moz-columns: 2; columns: 2; -moz-column-gap: 24px; column-gap: 24px; list-style: none; padding: 0; margin: 0; }
footer.ft .ft-linklist li { margin: 0 0 12px; -moz-column-break-inside: avoid; break-inside: avoid; }
/* Section / block primitives + per-block styles */
.nc-car { max-width: var(--nc-maxw-wide); margin: 0 auto; padding: 0 var(--nc-gutter); }
.nc-car__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 32px; }
.nc-car__head .ht { max-width: 60ch; }
.nc-car__nav { display: flex; gap: 10px; flex: none; }
.nc-car__nav button { width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--nc-n-300); background: var(--nc-bg); color: var(--nc-ink); display: inline-flex; align-items: center; justify-content: center; cursor: pointer; transition: background .2s, color .2s, border-color .2s, opacity .2s; }
.nc-car__nav button:hover { background: var(--nc-ink); color: #fff; border-color: var(--nc-ink); }
.nc-car__nav button:disabled { opacity: .35; cursor: default; }
.nc-car__nav button:disabled:hover { background: var(--nc-bg); color: var(--nc-ink); border-color: var(--nc-n-300); }
.nc-car__nav .ic { width: 19px; height: 19px; }
.sx--dark .nc-car__nav button { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.18); color: #fff; }
.sx--dark .nc-car__nav button:hover { background: #fff; color: var(--nc-ink); }
.nc-car__track { display: grid; grid-auto-flow: column; gap: 24px; overflow-x: auto; padding-bottom: 6px; scrollbar-width: none; overscroll-behavior-x: contain; }
.nc-car__track::-webkit-scrollbar { display: none; }
.nc-car__track > * { min-width: 0; }
.nc-car__track.w3 > * { width: calc((min(100vw,var(--nc-maxw-wide)) - 2*var(--nc-gutter) - 48px) / 3); }
.nc-car__track.w4 > * { width: calc((min(100vw,var(--nc-maxw-wide)) - 2*var(--nc-gutter) - 72px) / 4); }
@media (max-width: 1100px){ .nc-car__track.w3 > *, .nc-car__track.w4 > * { width: 340px; } }
@media (max-width: 640px){ .nc-car__track.w3 > *, .nc-car__track.w4 > * { width: 80vw; } }
.case { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--nc-n-200); border-radius: 24px; overflow: hidden; color: inherit; transition: transform .28s var(--nc-ease); }
.case:hover { transform: translateY(-5px); }
.case__img { aspect-ratio: 16/11; overflow: hidden; position: relative; background: var(--nc-n-100); }
.case__img img { width: 100%; height: 100%; -o-object-fit: cover; object-fit: cover; transition: transform .55s var(--nc-ease); }
.case:hover .case__img img { transform: scale(1.05); }
.case__cat { position: absolute; left: 14px; top: 14px; background: rgba(255,255,255,.92); backdrop-filter: blur(6px); color: var(--nc-ink); font-size: .72rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; padding: 6px 12px; border-radius: 999px; }
.case__body { padding: 22px 24px 24px; display: flex; flex-direction: column; flex: 1; }
.case__logo { height: 20px; width: auto; max-width: 96px; -o-object-fit: contain; object-fit: contain; filter: grayscale(1); opacity: .7; margin-bottom: 14px; }
.case h3 { font-size: 1.22rem; color: var(--nc-ink); letter-spacing: -0.015em; line-height: 1.2; }
.case p { font-size: .95rem; color: var(--nc-fg-2); line-height: 1.55; margin-top: 10px; flex: 1; }
.case__link { display: inline-flex; align-items: center; gap: 7px; font-weight: 600; font-size: .92rem; color: var(--nc-red); margin-top: 18px; }
.case__link .ic { width: 15px; height: 15px; transition: transform .2s; }
.case:hover .case__link .ic { transform: translateX(3px); }
.tmt { display: flex; flex-direction: column; border-radius: 30px; padding: 30px 30px 26px; background: var(--nc-bg-alt); border: 1px solid transparent; }
.tmt--ink { background: var(--nc-ink); color: #fff; }
.tmt--red { background: var(--nc-red); color: #fff; }
.tmt__mark { font-family: Georgia, serif; font-size: 3.2rem; line-height: .6; height: 28px; color: var(--nc-red); }
.tmt--ink .tmt__mark, .tmt--red .tmt__mark { color: rgba(255,255,255,.55); }
.tmt__quote { font-size: 1.3rem; line-height: 1.45; color: var(--nc-ink); font-weight: 500; flex: 1; letter-spacing: -0.01em; }
.tmt--ink .tmt__quote, .tmt--red .tmt__quote { color: #fff; }
.tmt__quote .hl { color: var(--nc-red); }
.tmt--ink .tmt__quote .hl { color: #fff; text-decoration: underline; text-decoration-color: rgba(255,255,255,.4); text-underline-offset: 3px; }
.tmt--red .tmt__quote .hl { color: #fff; }
.tmt__foot { display: flex; align-items: center; gap: 14px; margin-top: 26px; }
.tmt__av { width: 48px; height: 48px; border-radius: 50%; -o-object-fit: cover; object-fit: cover; flex: none; }
.tmt__who { flex: 1; min-width: 0; }
.tmt__who b { display: block; font-size: .96rem; color: var(--nc-ink); line-height: 1.2; }
.tmt--ink .tmt__who b, .tmt--red .tmt__who b { color: #fff; }
.tmt__who span { font-size: .82rem; color: var(--nc-fg-3); display: block; line-height: 1.3; margin-top: 3px; }
.tmt--ink .tmt__who span, .tmt--red .tmt__who span { color: rgba(255,255,255,.7); }
.tmt__logo { height: 22px; width: auto; max-width: 96px; -o-object-fit: contain; object-fit: contain; -o-object-position: left; object-position: left; filter: grayscale(1) brightness(.35); opacity: .8; }
.tmt--ink .tmt__logo, .tmt--red .tmt__logo { filter: grayscale(1) brightness(0) invert(1); opacity: .85; }
.res-sec .res-inner { max-width: var(--nc-maxw-wide); margin: 0 auto; padding: 0 var(--nc-gutter); position: relative; z-index: 1; }
.res-h2 { white-space: nowrap; max-width: none; }
.res-controls { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin: 32px 0 28px; }
.res-controls .rtabs { margin: 0; }
.res-track { -webkit-mask-image: none; mask-image: none; padding: 14px 0; margin: -14px 0; }
.res-panel { display: none; }
.res-panel.on { display: block; animation: sxIn .4s var(--nc-ease); }
.rtabs { display: flex; flex-wrap: wrap; gap: 10px; }
.rtab { display: inline-flex; align-items: center; gap: 9px; font-family: var(--nc-sans); font-weight: 600; font-size: .95rem; color: var(--nc-fg-2); background: var(--nc-bg); border: 1px solid var(--nc-n-200); border-radius: 999px; padding: 10px 18px; cursor: pointer; transition: background .2s, color .2s, border-color .2s; }
.rtab .ic { width: 16px; height: 16px; }
.rtab:hover { background: var(--nc-n-100); border-color: transparent; }
.rtab.on { background: var(--nc-ink); color: #fff; border-color: var(--nc-ink); }
.rcard { display: flex; flex-direction: column; background: var(--nc-bg-alt); border: 1px solid transparent; border-radius: 24px; overflow: hidden; height: 100%; color: inherit; position: relative; z-index: 1; transition: transform .26s var(--nc-ease); }
.rcard:hover { transform: translateY(-6px); z-index: 3; }
.rcard__img { position: relative; aspect-ratio: 16/10; overflow: hidden; background: var(--nc-n-100); }
.rcard__img img { width: 100%; height: 100%; -o-object-fit: cover; object-fit: cover; transition: transform .55s var(--nc-ease); }
.rcard:hover .rcard__img img { transform: scale(1.05); }
.rcard__tags { position: absolute; top: 14px; left: 14px; right: 14px; display: flex; gap: 8px; flex-wrap: wrap; align-items: center; z-index: 2; }
.rcard__pill { display: inline-flex; align-items: center; gap: 7px; background: rgba(28,20,16,.5); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); color: #fff; font-size: .7rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; padding: 6px 12px; border-radius: 999px; }
.rcard__pill .ic { width: 13px; height: 13px; }
.rcard__label { font-size: .7rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; padding: 6px 12px; border-radius: 999px; color: #fff; }
.rcard__label.v-ink { background: var(--nc-ink); }
.rcard__label.v-red { background: var(--nc-red); }
.rcard__label.v-light { background: rgba(255,255,255,.92); color: var(--nc-ink); }
.rcard__label.v-outline { background: rgba(28,20,16,.4); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,.6); }
.rcard__body { padding: 20px 22px 22px; display: flex; flex-direction: column; flex: 1; }
.rcard__meta { font-size: .78rem; color: var(--nc-fg-3); font-family: var(--nc-mono); letter-spacing: .02em; }
.rcard h3 { font-size: 1.12rem; color: var(--nc-ink); line-height: 1.25; margin: 9px 0 0; letter-spacing: -0.01em; }
.rcard__text { font-size: .92rem; color: var(--nc-fg-2); line-height: 1.5; margin-top: 9px; }
.rcard__loc { display: inline-flex; align-items: center; gap: 7px; font-size: .88rem; color: var(--nc-fg-2); margin-top: 12px; font-weight: 500; }
.rcard__loc .ic { width: 15px; height: 15px; color: var(--nc-red); }
.rcard__foot { margin-top: auto; padding-top: 18px; }
.rperson { display: flex; align-items: center; gap: 12px; }
.rperson img { width: 38px; height: 38px; border-radius: 50%; -o-object-fit: cover; object-fit: cover; flex: none; }
.rperson b { display: block; font-size: .9rem; color: var(--nc-ink); line-height: 1.3; }
.rperson span { display: block; font-size: .78rem; color: var(--nc-fg-3); line-height: 1.25; margin-top: 1px; }
.res-sec { overflow: visible; }
.nc-btn .ic { transition: transform .2s var(--nc-ease); }
.nc-btn:hover .ic { transform: translateX(3px); }
@media (max-width: 700px){ .res-h2 { white-space: normal; } .res-controls { flex-wrap: wrap; } }
.mgrid { max-width: var(--nc-maxw-wide); margin: 0 auto; padding: 0 var(--nc-gutter); display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 130px; gap: 24px; position: relative; z-index: 1; }
.sx--atmo > .sx-head { position: relative; z-index: 1; }
.mcell { min-width: 0; }
.mcell > * { height: 100%; }
.mgrid .tmt { height: 100%; justify-content: center; }
.ctile { position: relative; border-radius: 30px; overflow: hidden; color: #fff; display: flex; flex-direction: column; justify-content: flex-end; padding: 26px; border: 1px solid var(--nc-n-200); transition: transform .28s var(--nc-ease); }
.ctile:hover { transform: translateY(-5px); }
.ctile img.bg { position: absolute; inset: 0; width: 100%; height: 100%; -o-object-fit: cover; object-fit: cover; z-index: 0; transition: transform .55s var(--nc-ease); }
.ctile:hover img.bg { transform: scale(1.05); }
.ctile::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(0deg, rgba(28,20,16,.93) 0%, rgba(28,20,16,.5) 46%, rgba(28,20,16,.12) 100%); }
.ctile > * { position: relative; z-index: 2; }
.ctile__cat { position: absolute; top: 22px; left: 22px; background: rgba(28,20,16,.5); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); color: #fff; font-size: .7rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; padding: 6px 13px; border-radius: 999px; }
.ctile__logo { width: auto; height: 26px; max-width: 110px; -o-object-fit: contain; object-fit: contain; -o-object-position: left; object-position: left; filter: brightness(0) invert(1); opacity: .95; margin-bottom: 14px; }
.ctile h3 { font-size: 1.3rem; letter-spacing: -0.015em; line-height: 1.18; color: #fff; }
.ctile p { font-size: .95rem; color: rgba(255,255,255,.82); line-height: 1.55; margin-top: 10px; }
.ctile p .hl { color: inherit; font-weight: inherit; }
.ctile__link { display: inline-flex; align-items: center; gap: 9px; font-weight: 600; font-size: 0.97rem; color: #fff; margin-top: 18px; }
.ctile__link .ic { transition: transform .2s; }
.ctile:hover .ctile__link .ic { transform: translateX(3px); }
@media (max-width: 1000px) { .mgrid { display: flex; flex-direction: column; } .mcell > * { height: auto; } .ctile { min-height: 320px; } }
body { background: var(--nc-bg); }
.nc-topbar__inner { padding-top: 9px; padding-bottom: 9px; }
.nc-header__inner { padding-top: 22px; padding-bottom: 22px; }
.stage { background: var(--nc-bg); position: relative; overflow: hidden; min-height: 720px; display: flex; flex-direction: column; }
.techgrid { position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: linear-gradient(var(--nc-n-200) 1px, transparent 1px), linear-gradient(90deg, var(--nc-n-200) 1px, transparent 1px);
  background-size: 80px 80px; opacity: 0.3;
  -webkit-mask-image: radial-gradient(140% 118% at 50% 46%, #000 22%, transparent 88%);
          mask-image: radial-gradient(140% 118% at 50% 46%, #000 22%, transparent 88%); }
.gridfade { position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(260px 260px at 17% 26%, var(--nc-bg) 0%, rgba(255,255,255,0) 66%),
              radial-gradient(320px 320px at 82% 60%, var(--nc-bg) 0%, rgba(255,255,255,0) 66%),
              radial-gradient(220px 220px at 50% 90%, var(--nc-bg) 0%, rgba(255,255,255,0) 66%),
              radial-gradient(200px 200px at 64% 14%, var(--nc-bg) 0%, rgba(255,255,255,0) 66%);
  animation: gridfade 20s ease-in-out infinite alternate; }
@keyframes gridfade { 0% { opacity: 0.5; transform: translate(0,0); } 50% { opacity: 1; transform: translate(12px,-14px); } 100% { opacity: 0.65; transform: translate(-10px,10px); } }
.techglow { position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(38% 32% at 50% 46%, rgba(223,27,37,0.045), transparent 72%);
  animation: breathe 11s ease-in-out infinite; }
@keyframes breathe { 0%,100% { opacity: 0.4; transform: translateY(8px) scale(0.97); } 50% { opacity: 1; transform: translateY(-8px) scale(1.05); } }
.fade-edge { position: absolute; left: 0; right: 0; z-index: 2; pointer-events: none; }
.fade-edge.top { top: 0; height: 170px; background: linear-gradient(180deg, var(--nc-bg) 22%, rgba(255,255,255,0)); }
.fade-edge.bottom { bottom: 0; height: 170px; background: linear-gradient(0deg, var(--nc-bg) 18%, rgba(255,255,255,0)); }
.bubbles { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.lane { position: absolute; top: 0; bottom: 0; width: 280px; overflow: visible; }
.lane.left { left: 56px; }
.lane.right { right: 56px; }
.bub { position: absolute; top: 0; border-radius: 50%; will-change: transform; animation: floatUp linear infinite; }
.bub.face, .bub.pcb { overflow: hidden; border: 3px solid #fff; box-shadow: 0 12px 30px rgba(44,33,27,0.16); background: var(--nc-n-100); }
.bub.face img, .bub.pcb img { width: 100%; height: 100%; -o-object-fit: cover; object-fit: cover; }
.bub.star { filter: drop-shadow(0 6px 14px rgba(223,27,37,0.26)); }
.bub.star img { width: 100%; height: 100%; animation: spin 48s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes floatUp { 0% { transform: translate3d(0, 900px, 0); } 50% { transform: translate3d(11px, 300px, 0); } 100% { transform: translate3d(0, -300px, 0); } }
.hero { position: relative; z-index: 3; flex: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center; padding: 72px var(--nc-gutter) 88px; }
.hero__eyebrow { margin-bottom: 24px; color: var(--nc-fg-3); letter-spacing: 0.18em; }
.hero__eyebrow img { height: 15px; width: 15px; display: inline-block; }
.hero h1 { font-size: var(--nc-display); max-width: 15ch; margin-bottom: 24px; color: var(--nc-ink); font-weight: 700; }
.hero__lead { font-size: var(--nc-lead); color: var(--nc-fg-2); max-width: 54ch; line-height: 1.55; }
.hero__cta { display: flex; gap: 14px; margin-top: 38px; flex-wrap: wrap; justify-content: center; }
.btn-ic { width: 16px; height: 16px; }
@media (max-width: 1080px){ .lane.left { left: -36px; } .lane.right { right: -36px; } }
@media (max-width: 700px){ .bubbles { display: none; } }
.logos-band { background: var(--nc-bg); padding: 36px var(--nc-gutter); overflow: hidden; }
.logos-row { max-width: var(--nc-maxw-wide); margin: 0 auto; display: flex; align-items: center; gap: 48px; }
.logos-label { flex: none; width: 150px; font-size: 0.84rem; color: var(--nc-fg-2); line-height: 1.5; font-weight: 500; }
.logos-label b { color: var(--nc-ink); display: block; font-size: 0.92rem; }
.marquee { position: relative; flex: 1 1 auto; min-width: 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.marquee__track { display: flex; align-items: center; width: -moz-max-content; width: max-content; animation: marquee 40s linear infinite; will-change: transform; backface-visibility: hidden; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__track img { height: 36px; width: auto; max-width: 168px; margin-right: 64px; -o-object-fit: contain; object-fit: contain; filter: grayscale(1); opacity: 0.62; mix-blend-mode: multiply; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (max-width: 760px){ .logos-row { flex-direction: column; align-items: flex-start; gap: 18px; } .logos-label { width: auto; } }
.solutions { max-width: var(--nc-maxw-wide); margin: 0 auto; padding: clamp(64px, 8vw, 110px) var(--nc-gutter); }
.sol-head { text-align: center; max-width: 760px; margin: 0 auto 40px; }
.sol-head .nc-eyebrow { color: var(--nc-fg-3); justify-content: center; margin-bottom: 16px; }
.sol-head .nc-eyebrow img { height: 14px; width: 14px; }
.sol-head h2 { font-size: var(--nc-h2); color: var(--nc-ink); margin-bottom: 14px; }
.sol-head p { font-size: var(--nc-lead); color: var(--nc-fg-2); line-height: 1.5; }
.sol-tabs { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 48px; }
.sol-tab { display: inline-flex; align-items: center; gap: 9px; font-family: var(--nc-sans); font-weight: 600; font-size: 0.96rem;
  color: var(--nc-fg-2); background: var(--nc-bg); border: 1px solid var(--nc-n-200); border-radius: var(--nc-r-pill);
  padding: 11px 22px; cursor: pointer; transition: background 0.2s var(--nc-ease), color 0.2s, border-color 0.2s; }
.sol-tab:hover { background: var(--nc-n-100); border-color: var(--nc-n-100); }
.sol-tab .ti { width: 17px; height: 17px; opacity: 0.7; }
.sol-tab.is-active { background: var(--nc-ink); color: #fff; border-color: var(--nc-ink); }
.sol-tab.is-active .ti { opacity: 1; filter: brightness(0) invert(1); }
.sol-panel { display: none; grid-template-columns: 1fr 1.08fr; gap: clamp(36px, 5vw, 80px); align-items: center; }
.sol-panel.is-active { display: grid; animation: panelIn 0.45s var(--nc-ease); }
@keyframes panelIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.sol-copy h3 { font-size: clamp(1.5rem, 2.2vw, 2rem); color: var(--nc-ink); margin-bottom: 16px; }
.sol-copy > p { font-size: 1.02rem; color: var(--nc-fg-2); line-height: 1.6; max-width: 46ch; }
.sol-list { list-style: none; padding: 0; margin: 24px 0 30px; display: flex; flex-direction: column; gap: 13px; }
.sol-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 1rem; color: var(--nc-fg-2); }
.sol-list .ck { flex: none; width: 22px; height: 22px; border-radius: 50%; background: var(--nc-n-100);
  display: inline-flex; align-items: center; justify-content: center; margin-top: 1px; }
.sol-list .ck svg { width: 12px; height: 12px; }
.sol-media { position: relative; border-radius: var(--nc-r-lg); overflow: hidden; box-shadow: var(--nc-sh-lg);
  border: 1px solid var(--nc-n-200); aspect-ratio: 4 / 3; background: var(--nc-n-100); }
.sol-media img { width: 100%; height: 100%; -o-object-fit: cover; object-fit: cover; }
.sol-media .tag { position: absolute; left: 16px; bottom: 14px; background: rgba(28,20,16,0.8); color: #fff;
  font-size: 0.78rem; font-weight: 600; padding: 6px 13px; border-radius: var(--nc-r-pill); backdrop-filter: blur(4px); }
@media (max-width: 920px){ .sol-panel.is-active { grid-template-columns: 1fr; } }
.sx { --pad: clamp(56px, 7vw, 100px); }
.sx-wrap { max-width: var(--nc-maxw-wide); margin: 0 auto; padding: var(--pad) var(--nc-gutter); }
.sx--warm { background: var(--nc-bg-warm); }
.sx--dark { background: var(--nc-ink); color: #fff; }
.sx--dark .sx-h2, .sx--dark .sx-copy h3 { color: #fff; }
.sx--dark .sx-lead { color: var(--nc-on-dark-2); }
.sx-eyebrow { font-size: var(--nc-eyebrow); letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600; color: var(--nc-fg-3); display: inline-flex; align-items: center; gap: 8px; }
.sx-eyebrow .sp { width: 13px; height: 13px; }
.sx--dark .sx-eyebrow { color: rgba(255,255,255,0.6); }
.sx-h2 { font-size: var(--nc-h2); color: var(--nc-ink); letter-spacing: -0.025em; margin: 14px 0 0; max-width: 20ch; }
.sx-lead { font-size: var(--nc-lead); color: var(--nc-fg-2); line-height: 1.5; margin-top: 14px; max-width: 56ch; }
.sx-head--center { text-align: center; max-width: 760px; margin: 0 auto 44px; }
.sx-head--center .sx-eyebrow, .sx-head--center .sx-h2, .sx-head--center .sx-lead { margin-left: auto; margin-right: auto; }
.sx-head--center .sx-h2 { max-width: none; }
.ic { width: 19px; height: 19px; stroke-width: 1.8; flex: none; }
.ic-chip { width: 44px; height: 44px; border-radius: 12px; background: var(--nc-n-100); color: var(--nc-ink);
  display: inline-flex; align-items: center; justify-content: center; flex: none; transition: background 0.2s, color 0.2s; }
.ic-chip .ic { width: 21px; height: 21px; }
.ic-chip--red { background: var(--nc-red-050); color: var(--nc-red); }
.ic-chip--dark { background: var(--nc-ink); color: #fff; }
.sx-split { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(36px, 5vw, 74px); align-items: center; }
.sx-split.rev { grid-template-columns: 1.1fr 1fr; }
.sx-copy h3 { font-size: clamp(1.5rem, 2.2vw, 2.1rem); color: var(--nc-ink); letter-spacing: -0.02em; }
.sx-copy .kicker { font-size: 0.82rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--nc-red); margin-bottom: 12px; }
.sx-copy > p { font-size: 1.04rem; color: var(--nc-fg-2); line-height: 1.6; max-width: 46ch; margin-top: 16px; }
.sx-feats { margin: 28px 0 30px; display: flex; flex-direction: column; gap: 6px; }
.sx-feat { display: flex; align-items: flex-start; gap: 15px; padding: 12px 0; }
.sx-feat .ft { flex: 1; }
.sx-feat .ft b { display: block; font-size: 1.02rem; color: var(--nc-ink); font-weight: 650; }
.sx--dark .sx-feat .ft b { color: #fff; }
.sx-feat .ft span { font-size: 0.92rem; color: var(--nc-fg-3); }
.sx-feat .more { flex: none; align-self: center; display: inline-flex; align-items: center; gap: 6px; font-size: 0.85rem; font-weight: 600; color: var(--nc-ink); background: var(--nc-n-100); border-radius: var(--nc-r-pill); padding: 7px 13px; transition: background 0.2s, color 0.2s; }
.sx-feat .more:hover { background: var(--nc-ink); color: #fff; }
.sx-feat .more .ic { width: 14px; height: 14px; }
.sx-ticks { list-style: none; padding: 0; margin: 22px 0 28px; display: flex; flex-direction: column; gap: 12px; }
.sx-ticks li { display: flex; gap: 12px; align-items: flex-start; font-size: 1rem; color: var(--nc-fg-2); }
.sx-ticks .ic { width: 18px; height: 18px; color: var(--nc-green); margin-top: 1px; }
.sx-media { position: relative; aspect-ratio: 4/3; }
.sx-media-frame { position: absolute; inset: 0; border-radius: var(--nc-r-lg); overflow: hidden; border: 1px solid var(--nc-n-200); background: var(--nc-n-100); }
.sx-media-frame img { width: 100%; height: 100%; -o-object-fit: cover; object-fit: cover; display: block; transform: scale(1.02); }
.sx-split .sx-media-frame img { animation: kenburns 20s ease-in-out infinite alternate; }
@keyframes kenburns { from { transform: scale(1.02); } to { transform: scale(1.09) translate(-1.4%, -1%); } }
@keyframes sxspin { to { transform: rotate(360deg); } }
.sx-media .star-acc { position: absolute; top: -16px; right: -16px; width: 46px; height: auto; z-index: 3; animation: sxspin 32s linear infinite; filter: drop-shadow(0 6px 14px rgba(223,27,37,0.28)); }
.sx-chip-float { position: absolute; right: -14px; top: 26px; background: #fff; border: 1px solid var(--nc-n-200); box-shadow: var(--nc-sh-md); border-radius: 12px; padding: 12px 15px; }
.sx-chip-float b { display: block; font-size: 1.3rem; font-weight: 700; letter-spacing: -0.02em; color: var(--nc-ink); line-height: 1; }
.sx-chip-float span { font-size: 0.76rem; color: var(--nc-fg-3); }
.sx-seg { display: grid; grid-auto-flow: column; grid-auto-columns: 1fr; background: var(--nc-bg-alt); border-radius: 16px; padding: 7px; gap: 4px; margin-bottom: 48px; }
.sx-seg button { display: flex; align-items: center; gap: 13px; text-align: left; background: transparent; border: 0; cursor: pointer; padding: 13px 16px; border-radius: 11px; transition: background 0.2s, box-shadow 0.2s; font-family: var(--nc-sans); }
.sx-seg button .sub { font-size: 0.72rem; color: var(--nc-fg-3); font-weight: 500; }
.sx-seg button .lab { font-size: 0.98rem; color: var(--nc-fg-2); font-weight: 650; }
.sx-seg button.on { background: #fff; box-shadow: var(--nc-sh-sm); }
.sx-seg button.on .lab { color: var(--nc-ink); }
.sx-seg button.on .ic-chip { background: var(--nc-red-050); color: var(--nc-red); }
@media (max-width: 900px){ .sx-seg { grid-auto-flow: row; grid-auto-columns: auto; } }
.sx-pills { display: flex; flex-wrap: wrap; gap: 10px; }
.sx-pills.center { justify-content: center; margin-bottom: 46px; }
.sx-pill { display: inline-flex; align-items: center; gap: 9px; font-weight: 600; font-size: 0.96rem; color: var(--nc-fg-2); background: var(--nc-bg); border: 1px solid var(--nc-n-200); border-radius: var(--nc-r-pill); padding: 10px 20px; cursor: pointer; transition: background 0.2s, color 0.2s, border-color 0.2s; }
.sx-pill .ic { width: 16px; height: 16px; }
.sx-pill:hover { background: var(--nc-n-100); border-color: transparent; }
.sx-pill.on { background: var(--nc-ink); color: #fff; border-color: var(--nc-ink); }
.sx-rail { display: flex; flex-direction: column; gap: 4px; }
.sx-railbtn { display: flex; align-items: center; gap: 14px; text-align: left; background: transparent; border: 0; border-left: 2px solid var(--nc-n-200); cursor: pointer; padding: 16px 18px; transition: background 0.2s, border-color 0.25s; font-family: var(--nc-sans); }
.sx-railbtn .rt b { display: block; font-size: 1.05rem; color: var(--nc-fg-2); font-weight: 650; }
.sx-railbtn .rt span { font-size: 0.85rem; color: var(--nc-fg-3); }
.sx-railbtn.on { background: var(--nc-bg-alt); border-left-color: var(--nc-red); border-radius: 0 10px 10px 0; }
.sx-railbtn.on .rt b { color: var(--nc-ink); }
.sx-railbtn.on .ic-chip { background: var(--nc-red-050); color: var(--nc-red); }
.sx-uline { display: flex; gap: 30px; border-bottom: 1px solid var(--nc-n-200); margin-bottom: 44px; }
.sx--dark .sx-uline { border-color: rgba(255,255,255,0.14); }
.sx-uline button { background: transparent; border: 0; cursor: pointer; padding: 0 0 16px; font-family: var(--nc-sans); font-size: 1.02rem; font-weight: 600; color: var(--nc-fg-3); position: relative; display: inline-flex; align-items: center; gap: 9px; }
.sx--dark .sx-uline button { color: rgba(255,255,255,0.6); }
.sx-uline button .ic { width: 17px; height: 17px; }
.sx-uline button::after { content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 2px; background: var(--nc-red); transform: scaleX(0); transform-origin: left; transition: transform 0.22s var(--nc-ease); }
.sx-uline button.on { color: var(--nc-ink); }
.sx--dark .sx-uline button.on { color: #fff; }
.sx-uline button.on::after { transform: scaleX(1); }
.sx-panel { display: none; }
.sx-panel.on { display: block; animation: sxIn 0.4s var(--nc-ease); }
.sx-panel.on.is-grid { display: grid; }
@keyframes sxIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.sx-bento { display: grid; grid-template-columns: 1fr 1fr; grid-auto-rows: 1fr; gap: 14px; }
.bento-card { border-radius: var(--nc-r-lg); border: 1px solid var(--nc-n-200); background: #fff; padding: 22px; position: relative; overflow: hidden; box-shadow: var(--nc-sh-sm); }
.bento-card.span2 { grid-column: span 2; }
.bento-card.img { padding: 0; }
.bento-card.img img { width: 100%; height: 100%; -o-object-fit: cover; object-fit: cover; }
.bento-card.dark { background: var(--nc-ink); color: #fff; border-color: var(--nc-ink); }
.bento-card .big { font-size: 2.4rem; font-weight: 700; letter-spacing: -0.03em; line-height: 1; color: var(--nc-ink); }
.bento-card.dark .big { color: #fff; }
.bento-card .big .u { color: var(--nc-red); }
.bento-card .cap { font-size: 0.85rem; color: var(--nc-fg-3); margin-top: 8px; }
.bento-card.dark .cap { color: var(--nc-on-dark-2); }
.bento-card .mini { font-size: 0.78rem; font-weight: 600; color: var(--nc-fg-3); text-transform: uppercase; letter-spacing: 0.05em; }
.bento-card .star-bg { position: absolute; right: -16px; bottom: -16px; width: 90px; opacity: 0.07; }
.sx--dark .bento-card { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.12); }
.sx--dark .bento-card .big { color: #fff; }
.sx--dark .bento-card .cap { color: var(--nc-on-dark-2); }
.sx-acc { display: flex; flex-direction: column; gap: 12px; max-width: 920px; margin: 0 auto; }
.acc-item { border: 1px solid var(--nc-n-200); border-radius: var(--nc-r-lg); overflow: hidden; background: #fff; transition: box-shadow 0.25s; }
.acc-item.on { box-shadow: var(--nc-sh-md); }
.acc-head { display: flex; align-items: center; gap: 16px; padding: 20px 22px; cursor: pointer; }
.acc-head .at { flex: 1; font-size: 1.12rem; font-weight: 650; color: var(--nc-ink); }
.acc-head .chev { transition: transform 0.3s var(--nc-ease); color: var(--nc-fg-3); }
.acc-item.on .chev { transform: rotate(180deg); }
.acc-body { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--nc-ease); }
.acc-item.on .acc-body { max-height: 380px; }
.acc-inner { display: grid; grid-template-columns: 1fr 0.9fr; gap: 30px; padding: 0 22px 24px 82px; align-items: center; }
.acc-inner p { color: var(--nc-fg-2); line-height: 1.55; }
.acc-inner .am { border-radius: 12px; overflow: hidden; aspect-ratio: 16/10; border: 1px solid var(--nc-n-200); }
.acc-inner .am img { width: 100%; height: 100%; -o-object-fit: cover; object-fit: cover; }
@media (max-width: 760px){ .acc-inner { grid-template-columns: 1fr; padding-left: 22px; } }
.sx-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.ov-card { border: 1px solid var(--nc-n-200); border-radius: var(--nc-r-lg); background: #fff; padding: 0; overflow: hidden; display: flex; flex-direction: column; transition: transform 0.25s var(--nc-ease), box-shadow 0.25s; }
.ov-card:hover { transform: translateY(-4px); box-shadow: var(--nc-sh-lg); }
.ov-thumb { aspect-ratio: 16/8; overflow: hidden; background: var(--nc-n-100); }
.ov-thumb img { width: 100%; height: 100%; -o-object-fit: cover; object-fit: cover; }
.ov-body { padding: 24px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.ov-body .ic-chip { margin-top: -46px; position: relative; border: 3px solid #fff; box-shadow: var(--nc-sh-sm); }
.ov-card.dark { background: var(--nc-ink); color: #fff; border-color: var(--nc-ink); }
.ov-card h3 { font-size: 1.3rem; color: var(--nc-ink); margin: 18px 0 8px; }
.ov-card.dark h3 { color: #fff; }
.ov-card p { font-size: 0.96rem; color: var(--nc-fg-2); line-height: 1.55; flex: 1; }
.ov-card.dark p { color: var(--nc-on-dark-2); }
.ov-card .go { display: inline-flex; align-items: center; gap: 7px; font-weight: 600; font-size: 0.92rem; color: var(--nc-red); margin-top: 18px; }
.ov-card.dark .go { color: #fff; }
.ov-card .go .ic { width: 15px; height: 15px; transition: transform 0.2s; }
.ov-card:hover .go .ic { transform: translateX(3px); }
@media (max-width: 760px){ .sx-cards { grid-template-columns: 1fr; } }
.sx-expand { display: flex; gap: 12px; height: 440px; }
.exp { position: relative; flex: 1; border-radius: var(--nc-r-lg); overflow: hidden; cursor: pointer; transition: flex 0.45s var(--nc-ease); border: 1px solid var(--nc-n-200); background: var(--nc-ink); min-width: 0; }
.exp.on { flex: 3.4; }
.exp img { position: absolute; inset: 0; width: 100%; height: 100%; -o-object-fit: cover; object-fit: cover; opacity: 0.5; transition: opacity 0.4s; }
.exp.on img { opacity: 0.36; }
.exp::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(28,20,16,0.92), rgba(28,20,16,0.35)); }
.exp-content { position: absolute; inset: 0; z-index: 2; padding: 24px; display: flex; flex-direction: column; justify-content: flex-end; color: #fff; }
.exp-content .ic-chip { background: rgba(255,255,255,0.16); color: #fff; margin-bottom: auto; }
.exp .et { font-size: 1.15rem; font-weight: 650; }
.exp .ed { font-size: 0.92rem; color: rgba(255,255,255,0.82); line-height: 1.5; margin-top: 10px; max-height: 0; opacity: 0; overflow: hidden; transition: max-height 0.4s var(--nc-ease), opacity 0.3s; }
.exp.on .ed { max-height: 120px; opacity: 1; }
.exp .vlabel { writing-mode: vertical-rl; transform: rotate(180deg); position: absolute; left: 22px; bottom: 24px; font-weight: 650; font-size: 1.05rem; color: #fff; transition: opacity 0.3s; }
.exp.on .vlabel { opacity: 0; }
.exp.on .exp-content { opacity: 1; }
.exp:not(.on) .exp-content > *:not(.vlabel):not(.ic-chip) { opacity: 0; }
@media (max-width: 760px){ .sx-expand { flex-direction: column; height: auto; } .exp { height: 90px; } .exp.on { height: 280px; flex: none; } .exp .vlabel { writing-mode: horizontal-tb; transform: none; position: static; } }
.sx-flow { display: flex; align-items: stretch; gap: 0; margin-bottom: 40px; }
.flow-step { flex: 1; position: relative; text-align: center; cursor: pointer; padding: 0 10px; }
.flow-step .node { width: 52px; height: 52px; border-radius: 50%; background: var(--nc-bg); border: 1.5px solid var(--nc-n-300); display: inline-flex; align-items: center; justify-content: center; color: var(--nc-fg-3); position: relative; z-index: 2; transition: all 0.25s; }
.flow-step.on .node { background: var(--nc-ink); border-color: var(--nc-ink); color: #fff; }
.flow-step::before { content: ""; position: absolute; top: 26px; left: -50%; width: 100%; height: 1.5px; background: var(--nc-n-200); z-index: 1; }
.flow-step:first-child::before { display: none; }
.flow-step.done::before, .flow-step.on::before { background: var(--nc-red); }
.flow-step .fl { display: block; margin-top: 12px; font-size: 0.92rem; font-weight: 600; color: var(--nc-fg-3); }
.flow-step.on .fl { color: var(--nc-ink); }
.device { border-radius: 14px; overflow: hidden; box-shadow: var(--nc-sh-lg); border: 1px solid var(--nc-n-200); background: #fff; }
.device .bar { display: flex; align-items: center; gap: 7px; padding: 11px 14px; background: var(--nc-bg-alt); border-bottom: 1px solid var(--nc-n-200); }
.device .dot { width: 11px; height: 11px; border-radius: 50%; background: var(--nc-n-300); }
.device .url { margin-left: 10px; font-family: var(--nc-mono); font-size: 0.74rem; color: var(--nc-fg-3); background: #fff; border: 1px solid var(--nc-n-200); border-radius: 6px; padding: 4px 12px; }
.device .shot { aspect-ratio: 16/10; }
.device .shot img { width: 100%; height: 100%; -o-object-fit: cover; object-fit: cover; }
.sx-statband { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 52px; }
.sx-statband .s { padding: 24px 20px; text-align: center; background: var(--nc-bg-alt); border-radius: var(--nc-r-lg); }
.sx-statband .s b { display: block; font-size: clamp(1.8rem,3vw,2.6rem); font-weight: 700; letter-spacing: -0.03em; color: var(--nc-ink); }
.sx-statband .s b .u { color: var(--nc-red); }
.sx-statband .s span { font-size: 0.85rem; color: var(--nc-fg-3); }
@media (max-width: 900px){ .sx-split, .sx-split.rev { grid-template-columns: 1fr; } .sx-bento { grid-template-columns: 1fr 1fr; } }
.sx--atmo { position: relative; overflow: hidden; }
.sx--atmo::before { content:""; position:absolute; inset:0; z-index:0; pointer-events:none;
  background-image: linear-gradient(var(--nc-n-200) 1px, transparent 1px), linear-gradient(90deg, var(--nc-n-200) 1px, transparent 1px);
  background-size: 80px 80px; opacity: 0.3;
  -webkit-mask-image: radial-gradient(120% 130% at 50% 0%, #000 18%, transparent 72%);
          mask-image: radial-gradient(120% 130% at 50% 0%, #000 18%, transparent 72%); }
.sx--atmo.sx--dark::before { background-image: linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px); opacity: 1; }
.sx--atmo .sx-wrap { position: relative; z-index: 1; }
.bento-card { transition: transform 0.28s var(--nc-ease), box-shadow 0.28s var(--nc-ease); }
.bento-card:hover { transform: translateY(-4px); box-shadow: var(--nc-sh-md); }
.live-dot { display:inline-block; width:7px; height:7px; border-radius:50%; background:var(--nc-red); margin-right:8px; vertical-align:middle; animation: livepulse 2.2s ease-out infinite; }
@keyframes livepulse { 0%{ box-shadow:0 0 0 0 rgba(223,27,37,0.5);} 70%{ box-shadow:0 0 0 7px rgba(223,27,37,0);} 100%{ box-shadow:0 0 0 0 rgba(223,27,37,0);} }
.sx-grid3 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.sx-grid3 .cell { position: static; overflow: hidden; border-radius: 34px; }
.sx-grid3 .cell img { width:100%; height:100%; -o-object-fit:cover; object-fit:cover; display:block; transition: transform 0.55s var(--nc-ease); animation: none; border: 0; box-shadow: none; }
.sx-grid3 .cell:hover img { transform: scale(1.05); }
.sx-grid3 .g1 { grid-column: 1 / 3; aspect-ratio: 16 / 8; }
.sx-grid3 .g2 { aspect-ratio: 1 / 0.95; transform: translateX(-44px); }
.sx-grid3 .g3 { aspect-ratio: 1 / 0.95; transform: translateX(-44px); }
.sx-box-wrap { max-width: var(--nc-maxw-wide); margin: 0 auto; padding: 0 var(--nc-gutter); }
.sx-box { border-radius: 64px; padding: clamp(40px,4.5vw,76px); position: relative; overflow: hidden; }
.sx-box--light { background: var(--nc-bg-alt); border: 1px solid var(--nc-n-200); }
.sx-box--dark { background: radial-gradient(130% 110% at 82% -10%, #46372d 0%, var(--nc-ink) 55%); }
.sx-box--dark::before { content:""; position:absolute; inset:0; background: radial-gradient(42% 52% at 14% 112%, rgba(223,27,37,0.18), transparent 70%); pointer-events:none; }
.sx-box > * { position: relative; z-index: 1; }
.sx--dark .sx-pill { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.16); color: rgba(255,255,255,0.72); }
.sx--dark .sx-pill:hover { background: rgba(255,255,255,0.12); border-color: transparent; }
.sx--dark .sx-pill.on { background:#fff; color: var(--nc-ink); border-color:#fff; }
.sx--dark .ic-chip { background: rgba(255,255,255,0.08); color:#fff; }
.sx--dark .sx-copy > p { color: rgba(255,255,255,0.75); }
.sx--dark .sx-feat .ft b { color:#fff; }
.sx--dark .sx-feat .ft span { color: rgba(255,255,255,0.55); }
.sx--dark .sx-grid3 .cell { box-shadow: 0 14px 34px rgba(0,0,0,0.4); }
.sx-grid3--round .cell { border-radius: 999px; }
.sx-badgegrid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; position: relative; }
.sx-badgegrid .cell { overflow: hidden; border-radius: 24px; }
.sx-badgegrid .cell img { width: 100%; height: 100%; -o-object-fit: cover; object-fit: cover; display: block; }
.sx-badgegrid .g1 { grid-column: 1 / 3; aspect-ratio: 16/7; }
.sx-badgegrid .g2, .sx-badgegrid .g3 { aspect-ratio: 1 / 0.8; }
.sx-badgegrid .badge { position: absolute; left: 50%; top: 52.5%; transform: translate(-50%,-50%); width: 90px; height: 90px; border-radius: 50%; background: #4C423B; display: flex; align-items: center; justify-content: center; z-index: 5; box-shadow: 0 0 0 16px var(--nc-ink), 0 12px 28px rgba(0,0,0,0.4); }
.sx-badgegrid .badge .ic { width: 40px; height: 40px; color: #fff; stroke-width: 1.7; }
.vsplit2 { display:grid; grid-template-columns:1.05fr 1fr; gap:clamp(36px,5vw,72px); align-items:center; }
.vsplit2--imgright { grid-template-columns:1fr 1.05fr; }
.vsplit2--imgright .vmedia2, .vsplit2--imgright .v-trio { order:2; }
.it-body { color:var(--nc-fg-2); font-size:1.05rem; line-height:1.65; margin-top:22px; }
.it-body > *:first-child { margin-top:0; }
.it-body p { margin:0 0 14px; }
.it-body p:last-child { margin-bottom:0; }
.it-body ul, .it-body ol { margin:0 0 14px; padding-left:1.25em; }
.it-body ul { list-style:disc; }
.it-body ol { list-style:decimal; }
.it-body li { margin-bottom:6px; line-height:1.55; }
.it-body li::marker { color:var(--nc-red); }
.it-body strong, .it-body b { color:var(--nc-ink); font-weight:650; }
.it-body em, .it-body i { font-style:italic; }
.it-body a { color:var(--nc-red); text-decoration:underline; }
.it-body h3 { color:var(--nc-ink); font-size:1.3rem; line-height:1.25; margin:22px 0 10px; }
.it-body h4 { color:var(--nc-ink); font-size:1.1rem; line-height:1.3; margin:18px 0 8px; }
.v-box .it-body { color:var(--nc-on-dark-2); }
.v-box .it-body strong, .v-box .it-body b, .v-box .it-body h3, .v-box .it-body h4 { color:#fff; }
.v-box .it-body a { color:#fff; }
.vmedia2 { position:relative; border-radius:30px; overflow:hidden; aspect-ratio:4/3.2; }
.vmedia2 img { width:100%; height:100%; -o-object-fit:cover; object-fit:cover; display:block; }
.vbadge { position:absolute; left:16px; bottom:16px; background:#fff; border-radius:18px; padding:13px 20px; }
.vbadge b { display:block; color:var(--nc-ink); font-size:0.85rem; line-height:1.3; }
.vbadge span { font-size:0.72rem; color:var(--nc-fg-3); display:block; line-height:1.3; margin-top:3px; }
.value-cta { display:flex; gap:13px; margin-top:30px; flex-wrap:wrap; }
@media (max-width:900px){ .vsplit2 { grid-template-columns:1fr; } }
.blk-intro { max-width: var(--nc-maxw-wide); margin: 0 auto; padding: clamp(34px,4vw,56px) var(--nc-gutter) 8px; }
.blk-intro h1 { font-size: var(--nc-h1); margin: 16px 0 14px; max-width: 18ch; }
.blk-intro p { font-size: var(--nc-lead); color: var(--nc-fg-2); max-width: 60ch; line-height: 1.5; }
.blk-fam { max-width: none; margin: clamp(44px,5vw,76px) auto 0; padding: 0; }
.blk-fam__head { display: flex; align-items: baseline; gap: 14px; max-width: var(--nc-maxw-wide); margin: 0 auto; padding: 0 var(--nc-gutter) 6px; }
.blk-fam__head h2 { font-size: 1.5rem; letter-spacing: -0.02em; }
.blk-fam__head span { font-size: .85rem; color: var(--nc-fg-3); font-family: var(--nc-mono); }
.blk-label { display: inline-flex; align-items: center; gap: 9px; font-family: var(--nc-mono); font-size: .8rem; font-weight: 600;
  color: #fff; background: var(--nc-ink); border-radius: 8px; padding: 5px 12px; margin: 38px 0 0 var(--nc-gutter); }
.blk-label .v { color: var(--nc-red); }
.v-blist { list-style: none; padding: 0; margin: 22px 0 0; display: flex; flex-direction: column; gap: 16px; }
.v-blist li { position: relative; padding-left: 22px; font-size: 1rem; color: var(--nc-fg-2); line-height: 1.55; }
.v-blist li::before { content: ""; position: absolute; left: 2px; top: 9px; width: 8px; height: 8px; border-radius: 50%; background: var(--nc-red); }
.v-blist li b { color: var(--nc-ink); font-weight: 650; }
.v-play { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 3; }
.v-play span { width: 76px; height: 76px; border-radius: 50%; background: rgba(255,255,255,0.92); display: inline-flex; align-items: center; justify-content: center; transition: transform .2s var(--nc-ease), background .2s; }
.v-play .ic { width: 28px; height: 28px; color: var(--nc-ink); margin-left: 4px; }
.v-play:hover span { transform: scale(1.08); background: #fff; }
.v-ovl { position: absolute; inset: 0; z-index: 2; background: linear-gradient(0deg, rgba(28,20,16,0.62) 0%, rgba(28,20,16,0.18) 55%, rgba(28,20,16,0.30) 100%); }
.v-boxwrap { position: relative; }
.v-box { position: relative; overflow: hidden; border-radius: 64px; padding: clamp(30px,3.6vw,56px);
  background: radial-gradient(130% 110% at 82% -10%, #46372d 0%, var(--nc-ink) 55%); color: #fff; }
.v-box > * { position: relative; z-index: 1; }
.v-box > .v-boxstar { position: absolute; top: 26px; right: 46px; width: 96px; opacity: 0.07; filter: brightness(0) invert(1); z-index: 0; pointer-events: none; }
.v-box .sx-h2 { color: #fff; }
.v-box .sx-eyebrow { color: rgba(255,255,255,0.62); }
.v-box .sx-feat .ft b { color: #fff; }
.v-box .sx-feat .ft span { color: var(--nc-on-dark-2); }
.v-box .ic-chip { background: #4C423B; color: #fff; }
.v-box .v-blist li { color: var(--nc-on-dark-2); }
.v-box .v-blist li b { color: #fff; }
.v-box__star { display: none; }
.v-box .vmedia2 { box-shadow: none; }
.v-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin: 26px 0 0; }
.v-stats .s { display: flex; flex-direction: column; align-items: flex-start; padding: 4px 22px 4px 0; }
.v-stats .s + .s { border-left: none; padding-left: 24px; }
.v-stats b { display: inline-flex; align-items: flex-start; font-size: clamp(2.4rem,3.6vw,3.4rem); font-weight: 700; letter-spacing: -0.03em; color: var(--nc-ink); line-height: 1; }
.v-stats b .d, .bk-stat .num .d { font-size: 1em; line-height: 1; }
.v-stats b .u, .bk-stat .num .u { font-size: 0.5em; color: var(--nc-red); font-weight: 700; margin-left: 3px; margin-top: 0.06em; line-height: 1; }
.v-stats span { font-size: .9rem; color: var(--nc-fg-3); margin-top: 8px; display: block; }
.v-box .v-stats b { color: #fff; }
.v-box .v-stats span { color: var(--nc-on-dark-2); }
.v-box .v-stats b .u { color: var(--nc-red); }
.v-trio { display: grid; grid-template-columns: 1.4fr 1fr; grid-template-rows: 1fr 1fr; gap: 14px; height: 100%; min-height: 380px; }
.v-trio .c { border-radius: 28px; overflow: hidden; position: relative; }
.v-trio .c:first-child { grid-row: 1 / 3; }
.v-trio .c img { width: 100%; height: 100%; -o-object-fit: cover; object-fit: cover; }
.v-lightbox { position: fixed; inset: 0; z-index: 300; background: rgba(28,20,16,0.86); display: none; align-items: center; justify-content: center; padding: 5vw; }
.v-lightbox.open { display: flex; }
.v-lightbox__inner { width: min(900px, 92vw); aspect-ratio: 16/9; border-radius: var(--nc-r-lg); overflow: hidden; background: #000; position: relative; }
.v-lightbox__inner img { width: 100%; height: 100%; -o-object-fit: cover; object-fit: cover; opacity: .5; }
.v-lightbox__close { position: absolute; top: -44px; right: 0; color: #fff; cursor: pointer; background: none; border: 0; }
.v-lightbox__close .ic { width: 28px; height: 28px; }
@media (max-width: 1080px) {
  .v-trio { min-height: 300px; }
}
.bk-stats3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.bk-stat { display: flex; flex-direction: column; align-items: flex-start; background: var(--nc-bg-alt); border-radius: 24px; padding: 32px 28px; }
.bk-stat .num { font-size: clamp(2.6rem,4vw,3.6rem); font-weight: 700; letter-spacing: -0.03em; line-height: 1; color: var(--nc-ink); display: inline-flex; align-items: flex-start; }
.bk-stat .lab { font-size: .95rem; color: var(--nc-fg-2); margin-top: 18px; line-height: 1.45; }
.bk-statline { display: flex; flex-wrap: wrap; gap: 20px 0; align-items: center; justify-content: space-between; }
.bk-statline .s { padding: 0 28px; text-align: center; flex: 1; min-width: 150px; }
.bk-statline .s .num { font-size: clamp(2.2rem,3.4vw,3rem); font-weight: 700; letter-spacing: -0.03em; color: var(--nc-ink); justify-content: center; display: flex; gap: 3px; }
.bk-statline .s .num .u { color: var(--nc-red); }
.bk-statline .s .lab { font-size: .88rem; color: var(--nc-fg-3); margin-top: 8px; }
.bk-statline .sep { width: 26px; height: 26px; flex: none; opacity: .45; }
.bk-statsplit { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px,4vw,64px); align-items: center; }
.bk-statgrid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.bk-statrow { display: flex; align-items: center; gap: 18px; padding: 20px 0; }
.bk-statrow + .bk-statrow { border-top: 1px solid var(--nc-n-200); }
.bk-statrow .num { font-size: 2.2rem; font-weight: 700; letter-spacing: -0.03em; color: var(--nc-ink); min-width: 130px; }
.bk-statrow .num .u { color: var(--nc-red); }
.bk-statrow .lab { color: var(--nc-fg-2); }
.v-box .bk-stat { background: rgba(255,255,255,0.05); }
.v-box .bk-stat .num { color: #fff; }
.v-box .bk-stat .lab { color: var(--nc-on-dark-2); }
.bk-steps3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.bk-step { background: var(--nc-bg-alt); border-radius: 24px; padding: 30px 26px; }
.bk-step .n { display: block; font-family: var(--nc-mono); font-size: .82rem; font-weight: 600; color: var(--nc-red); }
.bk-step .ic-chip { margin: 14px 0 16px; background: #fff; color: var(--nc-red); }
.v-box .bk-step .ic-chip { background: rgba(255,255,255,0.1); color: #fff; }
.bk-step h4 { font-size: 1.15rem; color: var(--nc-ink); margin-bottom: 8px; }
.bk-step p { font-size: .94rem; color: var(--nc-fg-2); line-height: 1.5; }
.bk-steplist { display: flex; flex-direction: column; gap: 4px; }
.bk-stepitem { display: flex; gap: 20px; padding: 22px 0; }
.bk-stepitem + .bk-stepitem { border-top: 1px solid var(--nc-n-200); }
.bk-stepitem .dot { flex: none; width: 40px; height: 40px; border-radius: 50%; background: var(--nc-ink); color: #fff; font-weight: 700; display: flex; align-items: center; justify-content: center; font-size: 1rem; }
.bk-stepitem h4 { font-size: 1.18rem; color: var(--nc-ink); margin-bottom: 6px; }
.bk-stepitem p { color: var(--nc-fg-2); line-height: 1.55; max-width: 52ch; }
.v-box .bk-step { background: rgba(255,255,255,0.05); }
.v-box .bk-step h4 { color: #fff; }
.v-box .bk-step p { color: var(--nc-on-dark-2); }
.v-box .bk-stepitem h4 { color: #fff; }
.v-box .bk-stepitem p { color: var(--nc-on-dark-2); }
.v-box .bk-stepitem + .bk-stepitem { border-color: rgba(255,255,255,0.12); }
.v-box .bk-stepitem .dot { background: #fff; color: var(--nc-ink); }
.bk-conn { display: flex; align-items: center; justify-content: center; }
.bk-conn .ic { width: 20px; height: 20px; color: var(--nc-n-300); }
.bk-faqsplit { display: grid; grid-template-columns: 0.8fr 1.4fr; gap: clamp(28px,4vw,56px); align-items: start; }
.bk-faqcats { display: flex; flex-direction: column; gap: 4px; }
.bk-faqcat { text-align: left; font-family: var(--nc-sans); font-size: 1rem; font-weight: 600; color: var(--nc-fg-3); background: none; border: 0; padding: 14px 18px; border-radius: var(--nc-r-md); cursor: pointer; transition: background .2s, color .2s; }
.bk-faqcat.on { background: var(--nc-bg-alt); color: var(--nc-ink); }
.bk-faqcat:hover { color: var(--nc-ink); }
.bk-qrow { border-top: 1px solid var(--nc-n-200); }
.bk-qrow:last-child { border-bottom: 1px solid var(--nc-n-200); }
.bk-q { border: 0; background: none; width: 100%; text-align: left; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 0; cursor: pointer; font-family: var(--nc-sans); }
.bk-q h4 { font-size: 1.1rem; color: var(--nc-ink); font-weight: 600; }
.bk-q .pm { flex: none; width: 26px; height: 26px; position: relative; }
.bk-q .pm::before, .bk-q .pm::after { content: ""; position: absolute; background: var(--nc-red); border-radius: 2px; transition: transform .25s var(--nc-ease); }
.bk-q .pm::before { top: 12px; left: 4px; right: 4px; height: 2px; }
.bk-q .pm::after { left: 12px; top: 4px; bottom: 4px; width: 2px; }
.bk-qrow.open .pm::after { transform: scaleY(0); }
.bk-faq { transition: opacity 0.2s var(--nc-ease); }
.bk-ans { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.32s var(--nc-ease); }
.bk-ans > .bk-ans__in { overflow: hidden; min-height: 0; }
.bk-ans p { padding-bottom: 22px; color: var(--nc-fg-2); line-height: 1.6; max-width: 64ch; }
.bk-qrow.open .bk-ans { grid-template-rows: 1fr; }
.bk-faqcards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.bk-faqcard { background: var(--nc-bg-alt); border-radius: var(--nc-r-md); padding: 24px; }
.bk-faqcard h4 { font-size: 1.05rem; color: var(--nc-ink); margin-bottom: 8px; }
.bk-faqcard p { color: var(--nc-fg-2); line-height: 1.55; font-size: .94rem; }
.v-box .bk-qrow, .v-box .bk-qrow:last-child { border-color: rgba(255,255,255,0.12); }
.v-box .bk-q h4 { color: #fff; }
.v-box .bk-ans p { color: var(--nc-on-dark-2); }
.v-box .bk-faqcat.on { background: rgba(255,255,255,0.08); color: #fff; }
.bk-cta-c { text-align: center; max-width: 720px; margin: 0 auto; }
.bk-cta-c .sx-eyebrow { justify-content: center; }
.bk-cta-btns { display: flex; gap: 13px; flex-wrap: wrap; margin-top: 28px; }
.bk-cta-c .bk-cta-btns { justify-content: center; }
.bk-cta-split { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(32px,4vw,60px); align-items: center; }
.bk-cta-media { border-radius: var(--nc-r-lg); overflow: hidden; aspect-ratio: 4/3; }
.bk-cta-media img { width: 100%; height: 100%; -o-object-fit: cover; object-fit: cover; }
.bk-cta-h { font-size: clamp(1.7rem,2.8vw,2.5rem); line-height: 1.08; letter-spacing: -0.02em; color: var(--nc-ink); }
.v-box .bk-cta-h { color: #fff; }
.bk-cta-p { font-size: var(--nc-lead); color: var(--nc-fg-2); line-height: 1.5; margin-top: 14px; max-width: 50ch; }
.bk-cta-c .bk-cta-p { margin-left: auto; margin-right: auto; }
.v-box .bk-cta-p { color: var(--nc-on-dark-2); }
@media (max-width: 900px) {
  .bk-stats3, .bk-steps3 { grid-template-columns: 1fr; }
  .bk-statsplit, .bk-statgrid2, .bk-faqsplit, .bk-cta-split, .bk-faqcards { grid-template-columns: 1fr; }
  .bk-faqcats { flex-direction: row; flex-wrap: wrap; }
  .bk-conn { display: none; }
}
.bk-hero { position: relative; overflow: hidden; }
.bk-hero__in { max-width: var(--nc-maxw-wide); margin: 0 auto; padding: clamp(48px,6vw,88px) var(--nc-gutter); position: relative; z-index: 1; }
.bk-hero__split { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(32px,4vw,64px); align-items: center; }
.bk-hero h1 { font-size: var(--nc-h1); line-height: 1.05; letter-spacing: -0.025em; max-width: 15ch; margin-top: 14px; }
.bk-hero .lead { font-size: var(--nc-lead); color: var(--nc-fg-2); line-height: 1.5; margin-top: 14px; max-width: 50ch; }
.bk-hero--grid .lead { margin-top: 22px; }
.bk-hero .btns { display: flex; gap: 13px; flex-wrap: wrap; margin-top: 28px; }
.bk-hero__media { border-radius: var(--nc-r-xl); overflow: hidden; aspect-ratio: 4/3.2; }
.bk-hero__media img { width: 100%; height: 100%; -o-object-fit: cover; object-fit: cover; }
.bk-hero--grid .bk-hero__in { text-align: center; display: flex; flex-direction: column; align-items: center; }
.bk-hero--grid h1 { font-size: clamp(2.6rem,5.5vw,4.6rem); max-width: 16ch; }
.bk-hero--grid .lead { max-width: 52ch; }
.bk-hero--grid .btns { justify-content: center; }
.bk-hero__gridbg { position: absolute; inset: 0; z-index: 0; background-image: linear-gradient(var(--nc-n-200) 1px,transparent 1px),linear-gradient(90deg,var(--nc-n-200) 1px,transparent 1px); background-size: 84px 84px; opacity: .55; -webkit-mask-image: radial-gradient(120% 100% at 50% 30%,#000 35%,transparent 78%); mask-image: radial-gradient(120% 100% at 50% 30%,#000 35%,transparent 78%); }
.bk-hero--grid .bk-hero__in { position: relative; z-index: 1; }
.bk-hero--dark { background: radial-gradient(130% 120% at 85% -5%, #46372d 0%, var(--nc-ink) 58%); color: #fff; }
.bk-hero--dark h1 { color: #fff; }
.bk-hero--dark .lead { color: var(--nc-on-dark-2); }
.bk-hero--dark .star { position: absolute; left: -20px; bottom: -20px; width: 150px; opacity: .09; filter: brightness(0) invert(1); z-index: 0; pointer-events: none; }
.bk-hero--dark .bk-hero__split { position: relative; z-index: 1; }
.bk-hero--photo { color: #fff; min-height: 460px; display: flex; align-items: center; }
.bk-hero--photo .bg { position: absolute; inset: 0; z-index: 0; }
.bk-hero--photo .bg img { width: 100%; height: 100%; -o-object-fit: cover; object-fit: cover; }
.bk-hero--photo .bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(28,20,16,.9) 0%, rgba(28,20,16,.66) 42%, rgba(28,20,16,.25) 100%); }
.bk-hero--photo .bk-hero__in { position: relative; z-index: 1; }
.bk-hero--photo h1 { color: #fff; }
.bk-hero--photo .lead { color: rgba(255,255,255,.85); }
.bk-hero--photo .bk-hero__in { width: 100%; }
.bk-hero__photobody { max-width: 600px; margin-left: 0; }
.bk-hero__statband { display: flex; gap: 14px 40px; flex-wrap: wrap; margin-top: 34px; }
.bk-hero__statband .s b { display: block; font-size: 1.9rem; font-weight: 700; letter-spacing: -0.02em; }
.bk-hero__statband .s b .u { color: var(--nc-red); }
.bk-hero__statband .s span { font-size: .84rem; color: var(--nc-fg-3); }
.bk-ps2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.bk-ps-panel { border-radius: var(--nc-r-xl); padding: clamp(26px,3vw,42px); }
.bk-ps-panel.prob { background: var(--nc-bg-alt); }
.bk-ps-panel.sol { background: radial-gradient(130% 120% at 88% -5%, #46372d 0%, var(--nc-ink) 58%); color: #fff; }
.bk-ps-panel h3 { font-size: 1.6rem; letter-spacing: -0.02em; }
.bk-ps-panel.sol h3 { color: #fff; }
.bk-ps-panel > p { margin-top: 12px; color: var(--nc-fg-2); line-height: 1.55; }
.bk-ps-panel.sol > p { color: var(--nc-on-dark-2); }
.bk-ps-list { list-style: none; padding: 0; margin: 22px 0 0; display: flex; flex-direction: column; }
.bk-ps-list li { display: flex; gap: 12px; align-items: flex-start; padding: 14px 0; font-size: .98rem; color: var(--nc-fg-2); }
.bk-ps-list li + li { border-top: 1px solid var(--nc-n-200); }
.bk-ps-panel.sol .bk-ps-list li { color: var(--nc-on-dark-2); }
.bk-ps-panel.sol .bk-ps-list li + li { border-color: rgba(255,255,255,.12); }
.bk-ps-list .ic { width: 19px; height: 19px; flex: none; margin-top: 3px; }
.bk-ps-list .x { color: var(--nc-fg-3); }
.bk-ps-list .ck { color: var(--nc-green); }
.bk-ps-split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px,4vw,56px); }
.v-box .bk-ps-list li { color: var(--nc-on-dark-2); }
.v-box .bk-ps-list li + li { border-color: rgba(255,255,255,0.12); }
.v-box .bk-ps-split .sx-h2 { color: #fff; max-width: none; }
.bk-cmp { max-width: 940px; margin: 0 auto; border-radius: 22px; overflow: hidden; background: var(--nc-bg-alt); }
.bk-cmp__row { display: grid; grid-template-columns: 1.7fr 1fr 1fr; align-items: center; }
.bk-cmp__row + .bk-cmp__row { border-top: 1px solid var(--nc-n-200); }
.bk-cmp__row.head { background: var(--nc-ink); color: #fff; }
.bk-cmp__row.head > div { padding: 16px 22px; font-weight: 600; font-size: .92rem; }
.bk-cmp__row.head .hl { color: #fff; display: flex; align-items: center; justify-content: center; gap: 7px; }
.bk-cmp__row.head .hl img { width: 14px; height: 14px; }
.bk-cmp__row.head .alt { text-align: center; color: var(--nc-on-dark-2); }
.bk-cmp__cell { padding: 15px 22px; font-size: .94rem; color: var(--nc-fg-2); }
.bk-cmp__cell.c { text-align: center; }
.bk-cmp__cell.hl { background: #fff; text-align: center; }
.bk-cmp__cell .ic { width: 19px; height: 19px; }
.bk-cmp__cell .yes { color: var(--nc-green); }
.bk-cmp__cell .no { color: var(--nc-n-300); }
.v-box .bk-cmp { background: rgba(255,255,255,0.05); }
.v-box .bk-cmp__row + .bk-cmp__row { border-color: rgba(255,255,255,0.12); }
.v-box .bk-cmp__cell { color: var(--nc-on-dark-2); }
.bk-cmp2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.bk-cmp2__card { background: var(--nc-bg-alt); border-radius: var(--nc-r-xl); padding: 30px; }
.bk-cmp2__card.hl { background: radial-gradient(130% 120% at 88% -5%,#46372d,var(--nc-ink) 58%); color: #fff; }
.bk-cmp2__card h4 { font-size: 1.2rem; margin-bottom: 16px; }
.bk-cmp2__card.hl h4 { color: #fff; }
.bk-cmp2__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.bk-cmp2__list li { display: flex; gap: 11px; align-items: flex-start; font-size: .95rem; color: var(--nc-fg-2); }
.bk-cmp2__card.hl .bk-cmp2__list li { color: var(--nc-on-dark-2); }
.bk-cmp2__list .ic { width: 18px; height: 18px; flex: none; margin-top: 1px; }
.bk-cmp2__list .yes { color: var(--nc-green); }
.bk-cmp2__list .no { color: var(--nc-n-400); }
.bk-checklist { list-style: none; padding: 0; margin: 26px 0 0; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.bk-checklist li { display: flex; gap: 12px; align-items: center; font-size: 1rem; color: var(--nc-fg-2); }
.bk-checklist .ic-chip { width: 30px; height: 30px; border-radius: 9px; flex: none; }
.bk-checklist .ic-chip .ic { width: 16px; height: 16px; }
.bk-logos-c { text-align: center; }
.bk-logos-c h2 { font-size: clamp(1.5rem,2.4vw,2rem); max-width: 22ch; margin: 0 auto; letter-spacing: -0.02em; }
.bk-logos-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 30px 40px; align-items: center; margin-top: 36px; }
.bk-logos-grid.g4 { grid-template-columns: repeat(4, 1fr); }
.bk-logos-grid img { height: 30px; width: 100%; -o-object-fit: contain; object-fit: contain; filter: grayscale(1); opacity: .62; transition: opacity .2s, filter .2s; }
.bk-logos-grid img:hover { filter: grayscale(0); opacity: 1; }
.bk-logos-split { display: grid; grid-template-columns: 0.85fr 1.6fr; gap: clamp(28px,4vw,56px); align-items: center; }
.bk-logos-split .lab b { display: block; font-size: 1.15rem; color: var(--nc-ink); }
.bk-logos-split .lab span { font-size: .92rem; color: var(--nc-fg-3); }
.v-box .bk-logos-grid img { filter: grayscale(1) brightness(0) invert(1); opacity: .6; }
.v-box .bk-logos-c h2 { color: #fff; }
@media (max-width: 900px) {
  .bk-hero__split, .bk-ps2, .bk-ps-split, .bk-cmp2, .bk-logos-split { grid-template-columns: 1fr; }
  .bk-logos-grid, .bk-logos-grid.g4 { grid-template-columns: repeat(3, 1fr); gap: 24px 28px; }
  .bk-checklist { grid-template-columns: 1fr; }
  .bk-cmp__row { grid-template-columns: 1.3fr 0.85fr 0.85fr; }
  .bk-cmp__cell, .bk-cmp__row.head > div { padding: 13px 14px; font-size: .85rem; }
}
@media (max-width: 760px) {
  .v-stats { grid-template-columns: 1fr 1fr; gap: 18px 0; }
  .v-stats .s + .s { padding-left: 0; }
  .v-trio { grid-template-columns: 1fr 1fr; grid-template-rows: auto; height: auto; min-height: 0; }
  .v-trio .c:first-child { grid-row: auto; grid-column: 1 / 3; aspect-ratio: 16/9; }
  .v-trio .c { aspect-ratio: 1; }
}
@media (max-width: 760px) {

  .v-box { border-radius: 0; margin-left: calc(var(--nc-gutter) * -1); margin-right: calc(var(--nc-gutter) * -1); padding: 40px var(--nc-gutter); }
  .v-box > .v-boxstar { right: 24px; }

  .v-trio .c, .bk-hero__media, .bk-cta-media { border-radius: 20px; }

  .sx-head--center { text-align: left !important; max-width: none; margin-left: 0; margin-right: 0; margin-bottom: 24px; }
  .sx-head--center .sx-eyebrow, .sx-head--center .sx-h2, .sx-head--center .sx-lead { margin-left: 0; margin-right: 0; }
  .bk-cta-c { text-align: left; max-width: none; margin: 0; }
  .bk-cta-c .sx-eyebrow, .bk-cta-c .bk-cta-btns { justify-content: flex-start; }
  .bk-cta-c .bk-cta-p { margin-left: 0; margin-right: 0; }
}
@media (max-width: 600px) {

  .value-cta, .bk-cta-btns, .bk-hero .btns { flex-direction: column; align-items: stretch; }
  .value-cta .nc-btn, .bk-cta-btns .nc-btn, .bk-hero .btns .nc-btn { width: 100%; }
}
.blk-intro, .blk-fam__head, .blk-label { display: none; }
.cf-wrap { max-width: 820px; margin: 0 auto; }
.cf-table { width: 100%; border-collapse: separate; border-spacing: 0; }
.cf-table th, .cf-table td { vertical-align: middle; }
.cf-table .feat { text-align: left; font-size: .97rem; color: var(--nc-fg-2); font-weight: 500; padding: 24px 22px; }
.cf-table .cc { text-align: center; width: 160px; }
.cf-table .cc .ic { display: block; margin-left: auto; margin-right: auto; }
.cf-table .ic { width: 20px; height: 20px; }
.cf-table .yes { color: var(--nc-green); }
.cf-table .no { color: var(--nc-n-300); }
.cf-table thead th { background: var(--nc-ink); color: #fff; padding: 13px 22px; font-weight: 650; font-size: .92rem; }
.cf-table thead .feat { color: #fff; padding: 13px 22px; }
.cf-table thead .hvad { border-radius: 18px 0 0 0; }
.cf-table thead th:last-child { border-radius: 0 18px 0 0; }
.cf-table thead .them { text-align: center; white-space: nowrap; }
.cf-table thead .us { position: relative; background: #1F8A5B; color: #fff; text-align: center; vertical-align: middle; padding: 13px 22px; }
.cf-table thead .us::before { content: ""; position: absolute; left: 0; right: 0; bottom: 100%; height: 16px; background: #1F8A5B; border-radius: 16px 16px 0 0; box-shadow: 0 -8px 20px -10px rgba(31,138,91,.55); }
.cf-feat { display: inline-flex; align-items: center; gap: 8px; }
.cf-info { position: relative; display: inline-flex; align-items: center; color: var(--nc-n-400); cursor: help; }
.cf-info:hover, .cf-info:focus-visible { color: var(--nc-red); outline: none; }
.cf-info .ic { width: 15px; height: 15px; flex: none; }
.cf-tip { position: absolute; left: 50%; bottom: calc(100% + 11px); transform: translateX(-50%) translateY(4px); width: 240px; background: var(--nc-ink); color: #fff; font-size: .82rem; font-weight: 400; line-height: 1.45; text-align: left; padding: 12px 14px; border-radius: 12px; box-shadow: var(--nc-sh-md); opacity: 0; visibility: hidden; transition: opacity .2s var(--nc-ease), transform .2s var(--nc-ease); z-index: 6; pointer-events: none; }
.cf-tip::after { content: ""; position: absolute; top: 100%; left: 50%; transform: translateX(-50%); border: 7px solid transparent; border-top-color: var(--nc-ink); }
.cf-info:hover .cf-tip, .cf-info:focus-visible .cf-tip { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.cf-table thead .us .nh { display: inline-flex; flex-direction: column; align-items: center; gap: 3px; justify-content: center; white-space: nowrap; transform: translateY(-10px); }
.cf-table thead .us .nh img { width: 11px; filter: brightness(0) invert(1); }
.cf-table tbody td { padding: 24px 22px; background: var(--nc-bg-alt); }
.cf-table tbody tr + tr td { border-top: 1px solid var(--nc-n-200); }
.cf-table tbody td.us { background: var(--nc-green-050); }
.cf-table tbody tr:first-child .us { background: var(--nc-green-050); }
.cf-table tbody tr + tr .us { border-top: 1px solid #d6efe2; }
.cf-table tbody tr:last-child .us { border-radius: 0; }
.cf-table tbody tr:last-child td:last-child { border-radius: 0 0 18px 0; }
.cf-table tbody tr:last-child .feat { border-radius: 0 0 0 18px; }
@media (max-width: 640px) {
  .cf-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; margin-left: calc(var(--nc-gutter) * -1); margin-right: calc(var(--nc-gutter) * -1); padding: 12px var(--nc-gutter) 4px; }
  .cf-table { min-width: 620px; }
}
.pg-head { margin-bottom: clamp(28px,3vw,44px); }
.pg-cards { display: grid; gap: clamp(16px,1.8vw,24px); grid-template-columns: repeat(4, 1fr); }
.pg-card { background: var(--nc-bg); border: 1px solid var(--nc-n-200); border-radius: var(--nc-r-xl); padding: clamp(24px,2.2vw,34px); }
.pg-card h3 { font-size: 1.12rem; color: var(--nc-ink); margin: 16px 0 7px; }
.pg-card p { font-size: .94rem; color: var(--nc-fg-2); line-height: 1.5; }
.pg-cardimg { background: var(--nc-bg); border: 1px solid var(--nc-n-200); border-radius: var(--nc-r-xl); overflow: hidden; }
.pg-cardimg__img { aspect-ratio: 16/10; overflow: hidden; }
.pg-cardimg__img img { width: 100%; height: 100%; -o-object-fit: cover; object-fit: cover; }
.pg-cardimg__body { padding: clamp(18px,1.6vw,22px); }
.pg-cardimg__body h3 { font-size: 1.12rem; color: var(--nc-ink); margin: 14px 0 6px; }
.pg-cardimg__body p { font-size: .94rem; color: var(--nc-fg-2); line-height: 1.5; }
a.pg-card, a.pg-cardimg { display: block; color: inherit; text-decoration: none; transition: border-color .2s var(--nc-ease), transform .2s var(--nc-ease), box-shadow .2s var(--nc-ease); }
a.pg-card:hover, a.pg-cardimg:hover { border-color: var(--nc-red); transform: translateY(-2px); box-shadow: var(--nc-sh-sm); }
@media (max-width: 1080px) {
  .pg-cards { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 760px) {
  .pg-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .pg-cards { grid-template-columns: none; grid-auto-flow: column; grid-auto-columns: 82vw; overflow-x: auto; overscroll-behavior-x: contain; -webkit-overflow-scrolling: touch; scrollbar-width: none; margin-left: calc(var(--nc-gutter) * -1); margin-right: calc(var(--nc-gutter) * -1); }
  .pg-cards::-webkit-scrollbar { display: none; }
  .pg-cards > :first-child { margin-left: var(--nc-gutter); }
  .pg-cards > :last-child { margin-right: var(--nc-gutter); }
}
.ro-hero { background: var(--nc-bg-warm); padding: clamp(40px,5vw,72px) 0 clamp(40px,5vw,64px); position: relative; overflow: hidden; }
.ro-hero::before { content:""; position:absolute; inset:0; z-index:0; pointer-events:none;
  background-image: linear-gradient(var(--nc-n-200) 1px, transparent 1px), linear-gradient(90deg, var(--nc-n-200) 1px, transparent 1px);
  background-size: 80px 80px; opacity: 0.3;
  -webkit-mask-image: radial-gradient(120% 130% at 50% 0%, #000 18%, transparent 72%);
          mask-image: radial-gradient(120% 130% at 50% 0%, #000 18%, transparent 72%); }
.ro-hero__in { position: relative; z-index: 1; max-width: var(--nc-maxw-wide); margin: 0 auto; padding: 0 var(--nc-gutter); }
.ro-hero .nc-eyebrow img { width: 14px; height: 14px; }
.ro-breadcrumb { display: flex; align-items: center; gap: 9px; font-size: .9rem; color: var(--nc-fg-3); margin-bottom: 16px; flex-wrap: wrap; }
.ro-breadcrumb a { color: var(--nc-fg-3); transition: color .18s; }
.ro-breadcrumb a:hover { color: var(--nc-ink); }
.ro-breadcrumb a.on { color: var(--nc-ink); font-weight: 600; }
.ro-breadcrumb span { color: var(--nc-n-300); }
.ro-hero h1 { font-size: var(--nc-h1); max-width: 16ch; margin: 18px 0 16px; }
.ro-hero__lead { font-size: var(--nc-lead); color: var(--nc-fg-2); max-width: 52ch; line-height: 1.5; }
.ro-univ { margin-top: 26px; }
.ro-main { max-width: var(--nc-maxw-wide); margin: 0 auto; padding: clamp(40px,5vw,64px) var(--nc-gutter) clamp(56px,7vw,96px); }
.ro-controls { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-bottom: 16px; }
.ro-count { font-size: .9rem; color: var(--nc-fg-3); font-family: var(--nc-mono); }
.ro-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.ro-filter { margin: 0 0 22px; }
.ro-none { color: var(--nc-fg-3); padding: 20px 0; }
.ro-empty { display: none; }
.rcard__label.v-lvl { background: rgba(28,20,16,.5); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
/* On a resource archive the type pill is redundant (the page already says the type); keep the status/category label. */
.ro-grid .rcard__pill { display: none; }
.ro-grid { transition: opacity .2s var(--nc-ease); }
.ro-pagination { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-top: clamp(36px, 5vw, 56px); }
.ro-pagination .page-numbers { display: inline-flex; align-items: center; justify-content: center; min-width: 44px; height: 44px; padding: 0 14px; border-radius: var(--nc-r-pill); border: 1px solid var(--nc-n-300); background: var(--nc-bg); color: var(--nc-fg-2); font-weight: 600; font-size: .95rem; transition: background .2s, color .2s, border-color .2s; }
.ro-pagination a.page-numbers:hover { background: var(--nc-n-100); border-color: var(--nc-n-100); color: var(--nc-ink); }
.ro-pagination .page-numbers.current { background: var(--nc-ink); color: #fff; border-color: var(--nc-ink); }
.ro-pagination .page-numbers.dots { border-color: transparent; background: transparent; }
@media (max-width: 1080px) {
  .ro-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media (max-width: 760px) {
  .ro-hero h1 { font-size: clamp(1.9rem, 7vw, 2.2rem); }
  .ro-grid { grid-template-columns: 1fr; }
  .ro-controls { margin-bottom: 12px; }
  .ro-filter { margin: 0 0 16px; }
  .ro-filter.rtabs { flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none; margin-left: 0; margin-right: calc(var(--nc-gutter)*-1); padding: 2px var(--nc-gutter) 2px 0; }
  .ro-filter.rtabs::-webkit-scrollbar { display: none; }
  .ro-filter.rtabs > :first-child { margin-left: 0; }
  .ro-filter .rtab { flex: none; }
}
.ws { background: var(--nc-bg-warm); }
.ws-top { max-width: var(--nc-maxw-wide); margin: 0 auto; padding: clamp(26px,3vw,40px) var(--nc-gutter) 0; }
.ws-crumb { display: flex; align-items: center; gap: 8px; font-size: .85rem; color: var(--nc-fg-3); flex-wrap: wrap; }
@media (max-width: 760px) {
  .ws-top { padding-right: 0; }
  .ws-crumb { flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none; -webkit-overflow-scrolling: touch; padding-right: var(--nc-gutter); }
  .ws-crumb::-webkit-scrollbar { display: none; }
  .ws-crumb a, .ws-crumb span { white-space: nowrap; flex: none; }
}
.ws-crumb a { color: var(--nc-fg-3); transition: color .2s; }
.ws-crumb a:hover { color: var(--nc-red); }
.ws-crumb .ic { width: 13px; height: 13px; opacity: .6; }
.ws .ic-chip { display: inline-flex; align-items: center; justify-content: center; }
.ws .ic-chip svg, .ws-share svg, .ws-crumb svg, .ws-pill svg, .ws-form svg { display: block; }
.ws-grid { max-width: var(--nc-maxw-wide); margin: 0 auto; padding: clamp(22px,3vw,34px) var(--nc-gutter) clamp(48px,6vw,84px);
  display: grid; grid-template-columns: 1fr 360px; gap: 26px clamp(32px,4vw,60px); align-items: start;
  grid-template-areas: "head rail" "reg rail" "body rail"; }
.ws-head { grid-area: head; }
.ws-reg { grid-area: reg; }
.ws-body { grid-area: body; }
.ws-rail { grid-area: rail; }
.ws-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 18px; }
.ws-pill { font-size: .72rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; padding: 6px 13px; border-radius: 999px; display: inline-flex; align-items: center; gap: 7px; }
.ws-pill .ic { width: 13px; height: 13px; }
.ws-pill.red { background: var(--nc-red); color: #fff; }
.ws-pill.soft { background: var(--nc-red-050); color: var(--nc-red); }
.ws-h1 { font-size: clamp(2rem,3.4vw,3rem); line-height: 1.06; letter-spacing: -0.025em; }
.ws-reg { position: relative; overflow: hidden; border-radius: var(--nc-r-xl); margin: 0;
  background: radial-gradient(130% 120% at 85% -5%, #46372d 0%, var(--nc-ink) 58%); color: #fff; padding: clamp(26px,3vw,40px); }
.ws-reg__star { position: absolute; right: -20px; bottom: -20px; width: 130px; opacity: 0.09; filter: brightness(0) invert(1); }
.ws-reg__media { position: relative; border-radius: var(--nc-r-lg); overflow: hidden; aspect-ratio: 16/8; margin-bottom: 24px; }
.ws-reg__media img { width: 100%; height: 100%; -o-object-fit: cover; object-fit: cover; }
.ws-reg__play { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.ws-reg__play span { width: 66px; height: 66px; border-radius: 50%; background: rgba(255,255,255,0.92); display: inline-flex; align-items: center; justify-content: center; transition: transform .2s var(--nc-ease); }
.ws-reg__play .ic { width: 25px; height: 25px; color: var(--nc-ink); margin-left: 3px; }
.ws-reg:hover .ws-reg__play span { transform: scale(1.07); }
.ws-reg h2 { font-size: 1.3rem; position: relative; margin-bottom: 22px; }
.ws-reg__sub { color: var(--nc-on-dark-2); margin: 6px 0 22px; position: relative; }
.ws-form { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; position: relative; }
.ws-form input { font-family: var(--nc-sans); font-size: .96rem; padding: 14px 16px; border-radius: 12px; border: 0; background: rgba(255,255,255,0.10); color: #fff; }
.ws-form input::-moz-placeholder { color: rgba(255,255,255,0.6); }
.ws-form input::placeholder { color: rgba(255,255,255,0.6); }
.ws-form input:focus { outline: 2px solid rgba(255,255,255,0.35); background: rgba(255,255,255,0.14); }
.ws-form .full { grid-column: 1 / -1; }
.ws-form .nc-btn { grid-column: 1 / -1; justify-self: start; margin-top: 4px; }
.ws-reg__note { font-size: .8rem; color: var(--nc-on-dark-2); margin-top: 16px; position: relative; }
.ws-reg__note a { color: #fff; text-decoration: underline; }
/* Gravity Forms embed inside the dark download box (e-book single). */
.ws-reg .gform_wrapper { position: relative; margin: 0; }
.ws-reg .gform_wrapper form { margin: 0; }
.ws-reg .gform_wrapper .gform_heading { display: none; }
.ws-reg .gform_wrapper .gfield { margin-bottom: 12px; }
.ws-reg .gform_wrapper .gfield_label,
.ws-reg .gform_wrapper legend.gfield_label { color: #fff; font-size: .85rem; font-weight: 600; margin-bottom: 6px; }
.ws-reg .gform_wrapper .gfield_required { color: #ff9e9e; }
.ws-reg .gform_wrapper input:not([type="submit"]):not([type="radio"]):not([type="checkbox"]),
.ws-reg .gform_wrapper select,
.ws-reg .gform_wrapper textarea {
  font-family: var(--nc-sans); font-size: .96rem; padding: 14px 16px; border-radius: 12px;
  border: 0; background: rgba(255,255,255,0.10); color: #fff; width: 100%; box-sizing: border-box;
}
.ws-reg .gform_wrapper input::-moz-placeholder, .ws-reg .gform_wrapper textarea::-moz-placeholder { color: rgba(255,255,255,0.6); }
.ws-reg .gform_wrapper input::placeholder,
.ws-reg .gform_wrapper textarea::placeholder { color: rgba(255,255,255,0.6); }
.ws-reg .gform_wrapper input:focus,
.ws-reg .gform_wrapper select:focus,
.ws-reg .gform_wrapper textarea:focus { outline: 2px solid rgba(255,255,255,0.35); background: rgba(255,255,255,0.14); }
.ws-reg .gform_wrapper .gform_footer { margin: 16px 0 0; padding: 0; }
.ws-reg .gform_wrapper .gform_footer input[type="submit"],
.ws-reg .gform_wrapper .gform_footer button {
  font-family: var(--nc-sans); font-weight: 600; font-size: 1rem; cursor: pointer;
  background: var(--nc-red); color: #fff; border: 0; border-radius: 12px; padding: 15px 26px;
  transition: background .2s var(--nc-ease), transform .2s var(--nc-ease);
}
.ws-reg .gform_wrapper .gform_footer input[type="submit"]:hover,
.ws-reg .gform_wrapper .gform_footer button:hover { transform: translateY(-1px); filter: brightness(1.05); }
.ws-reg .gform_wrapper .gform_validation_errors,
.ws-reg .gform_wrapper .validation_message { color: #ffd7d7; font-size: .82rem; }
.ws-reg .gform_confirmation_message { color: #fff; font-size: 1rem; line-height: 1.6; }
/* Article single: image in the "reg" slot instead of the dark form box. */
.ws-media { grid-area: reg; border-radius: var(--nc-r-xl); overflow: hidden; aspect-ratio: 16/9; box-shadow: var(--nc-sh-md); border: 1px solid var(--nc-n-200); }
.ws-media img { width: 100%; height: 100%; -o-object-fit: cover; object-fit: cover; display: block; }
.ws-body { font-size: 1.05rem; line-height: 1.7; color: var(--nc-fg-2); }
.ws-body p { margin-bottom: 18px; }
.ws-body strong { color: var(--nc-ink); font-weight: 650; }
.ws-body h2, .ws-body h3, .ws-body h4 { color: var(--nc-ink); line-height: 1.25; margin: 36px 0 14px; }
.ws-body h2 { font-size: 1.7rem; }
.ws-body h3 { font-size: 1.4rem; }
.ws-body h4 { font-size: 1.15rem; }
.ws-body > :first-child { margin-top: 0; }
/* Event programme / agenda. */
.ws-agenda { margin-top: 40px; }
.ws-agenda h3 { font-size: 1.4rem; color: var(--nc-ink); margin: 0 0 8px; }
.ws-agenda__sec { display: flex; align-items: center; gap: 10px; font-weight: 700; color: var(--nc-ink); font-size: 1.1rem; margin: 34px 0 4px; }
.ws-agenda__sec::before { content: ""; width: 22px; height: 3px; border-radius: 2px; background: var(--nc-red); flex: none; }
.ws-agenda h3 + .ws-agenda__sec { margin-top: 14px; }
.ws-agenda__row { display: grid; grid-template-columns: 104px 1fr; gap: 18px; padding: 18px 0; border-top: 1px solid var(--nc-n-200); }
.ws-agenda__sec + .ws-agenda__row { border-top: 0; }
.ws-agenda__row:last-child { border-bottom: 1px solid var(--nc-n-200); }
.ws-agenda__time { font-weight: 650; color: var(--nc-red); font-size: .95rem; padding-top: 1px; }
.ws-agenda__t { font-weight: 650; color: var(--nc-ink); font-size: 1.05rem; margin-bottom: 4px; }
.ws-agenda__d { color: var(--nc-fg-2); font-size: .98rem; line-height: 1.6; }
.ws-agenda__by { display: inline-flex; align-items: center; gap: 6px; margin-top: 8px; font-size: .88rem; font-weight: 600; color: var(--nc-ink); }
.ws-agenda__by .ic { width: 14px; height: 14px; color: var(--nc-red); }
.ws-meta__row b a { color: inherit; text-decoration: underline; text-underline-offset: 2px; }
.ws-meta__row b a:hover { color: var(--nc-red); }
@media (max-width: 520px) {
  .ws-agenda__row { grid-template-columns: 1fr; gap: 4px; }
}
.ws-learn { list-style: none; padding: 0; margin: 18px 0 0; display: flex; flex-direction: column; gap: 12px; }
.ws-learn li { display: flex; gap: 13px; align-items: flex-start; font-size: 1rem; color: var(--nc-fg-2); }
.ws-learn .ic-chip { width: 30px; height: 30px; border-radius: 9px; flex: none; }
.ws-learn .ic-chip .ic { width: 16px; height: 16px; }
.ws-rail { position: sticky; top: 96px; display: flex; flex-direction: column; gap: 20px; }
.ws-railcard { background: #fff; border-radius: var(--nc-r-lg); padding: 26px; box-shadow: var(--nc-sh-sm); }
.ws-railcard h4 { font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--nc-fg-3); margin-bottom: 16px; }
.ws-spk { display: flex; align-items: center; gap: 13px; }
.ws-spk img { width: 48px; height: 48px; border-radius: 50%; -o-object-fit: cover; object-fit: cover; flex: none; }
.ws-spk b { display: block; font-size: .96rem; color: var(--nc-ink); line-height: 1.2; }
.ws-spk span { font-size: .82rem; color: var(--nc-fg-3); margin-top: 3px; display: block; }
.ws-meta { display: flex; flex-direction: column; gap: 16px; }
.ws-meta__row { display: flex; align-items: center; gap: 12px; }
.ws-meta__row .ic-chip { width: 36px; height: 36px; border-radius: 10px; flex: none; background: var(--nc-red-050); color: var(--nc-red); }
.ws-meta__row .ic-chip .ic { width: 17px; height: 17px; }
.ws-meta__row b { display: block; font-size: .94rem; color: var(--nc-ink); line-height: 1.2; }
.ws-meta__row span { font-size: .8rem; color: var(--nc-fg-3); margin-top: 2px; display: block; }
.ws-share { display: flex; gap: 10px; }
.ws-share a { width: 40px; height: 40px; border-radius: 50%; background: var(--nc-bg-alt); color: var(--nc-ink); display: inline-flex; align-items: center; justify-content: center; transition: background .2s, color .2s; }
.ws-share a:hover { background: var(--nc-red); color: #fff; }
.ws-share .ic { width: 17px; height: 17px; }
.ws-rel { background: var(--nc-bg); padding: clamp(48px,6vw,84px) 0; }
.ws-rel__in { max-width: var(--nc-maxw-wide); margin: 0 auto; padding: 0 var(--nc-gutter); }
.ws-rel .nc-eyebrow img { width: 14px; height: 14px; }
.ws-rel__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; margin-top: 34px; }
@media (max-width: 1080px) {
  .ws-grid { grid-template-columns: 1fr; grid-template-areas: "head" "reg" "rail" "body"; row-gap: 20px; }
  .ws-reg { margin: 0; }
  .ws-rail { position: static; flex-direction: column; gap: 20px; }
  .ws-railcard { min-width: 0; }
  .ws-body { margin-top: 8px; }
  .ws-rel__grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 760px) {
  .ws-form { grid-template-columns: 1fr; }
  .ws-h1 { font-size: clamp(1.7rem,7vw,2.1rem); }
  .ws-rel__grid { grid-template-columns: 1fr; }
  .ws-rail { flex-direction: column; }
}
/* Video poster uses the design's .v-ovl (static gradient) + .v-play (play button)
   from blocks.css. Here we only reset the button element and add the YouTube popup. */
button.v-play { border: 0; padding: 0; font: inherit; background: transparent; }
.nc-vlightbox { position: fixed; inset: 0; z-index: 99999; display: flex; align-items: center; justify-content: center; padding: clamp(16px,4vw,52px); background: rgba(20,14,10,0.84); opacity: 0; visibility: hidden; transition: opacity .25s var(--nc-ease); }
.nc-vlightbox.open { opacity: 1; visibility: visible; }
.nc-vlightbox__frame { position: relative; width: min(1000px,100%); aspect-ratio: 16/9; }
.nc-vlightbox__frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; border-radius: var(--nc-r-lg); box-shadow: var(--nc-sh-lg); background: #000; }
.nc-vlightbox__close { position: absolute; top: -48px; right: 0; width: 40px; height: 40px; border-radius: 50%; border: 0; background: rgba(255,255,255,0.15); color: #fff; display: inline-flex; align-items: center; justify-content: center; cursor: pointer; transition: background .2s; }
.nc-vlightbox__close:hover { background: rgba(255,255,255,0.3); }
.nc-vlightbox__close svg { width: 20px; height: 20px; }
@media (max-width: 760px) { .nc-vlightbox__close { top: -44px; } }
/* Awards / recognition cards. */
.aw-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px,1.8vw,24px); margin-top: clamp(30px,4vw,44px); }
.aw-card { position: relative; display: flex; flex-direction: column; min-height: 320px; background: var(--nc-bg); border: 1px solid var(--nc-n-200); border-radius: var(--nc-r-xl); padding: clamp(22px,2vw,30px); }
.aw-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.aw-star { width: 22px; height: 22px; }
.aw-brand { font-size: .72rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--nc-fg-3); }
.aw-body { margin-top: auto; }
.aw-year { font-size: clamp(2.4rem,3.4vw,3.2rem); font-weight: 700; letter-spacing: -0.03em; line-height: 1; color: var(--nc-ink); }
.aw-title { font-size: 1.08rem; font-weight: 650; line-height: 1.25; color: var(--nc-ink); margin-top: 16px; }
.aw-sub { font-size: .9rem; color: var(--nc-fg-3); margin-top: 8px; }
.aw-card--hl { background: radial-gradient(130% 120% at 85% -5%, #46372d 0%, var(--nc-ink) 58%); border-color: transparent; box-shadow: var(--nc-sh-md); }
.aw-card--hl .aw-year, .aw-card--hl .aw-title { color: #fff; }
.aw-card--hl .aw-brand { color: rgba(255,255,255,0.5); }
.aw-card--hl .aw-sub { color: var(--nc-on-dark-2); }
@media (max-width: 1024px) { .aw-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .aw-grid { grid-template-columns: 1fr; } .aw-card { min-height: 0; } }
/* Team / Medarbejdere overview. */
.tm-dept { font-size: clamp(1.2rem,1.8vw,1.5rem); font-weight: 700; letter-spacing: -0.01em; color: var(--nc-ink); margin: clamp(34px,4vw,52px) 0 20px; }
.tm-dept:first-of-type { margin-top: clamp(20px,2.6vw,30px); }
.tm-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px,1.8vw,24px); }
.tm-card { display: flex; flex-direction: column; align-items: stretch; text-align: left; background: var(--nc-bg); border: 1px solid var(--nc-n-200); border-radius: var(--nc-r-xl); padding: clamp(18px,1.6vw,24px); }
.tm-photo { width: 100%; aspect-ratio: 1; border-radius: var(--nc-r-lg); overflow: hidden; background: var(--nc-bg-alt); margin-bottom: 16px; }
.tm-photo img { width: 100%; height: 100%; -o-object-fit: cover; object-fit: cover; display: block; }
.tm-name { font-size: 1.05rem; font-weight: 650; color: var(--nc-ink); line-height: 1.25; display: inline-flex; align-items: center; gap: 8px; }
.tm-flag { width: 20px; height: 20px; border-radius: 100px; flex: none; -o-object-fit: cover; object-fit: cover; }
.tm-role { font-size: .9rem; color: var(--nc-fg-3); margin-top: 5px; line-height: 1.35; }
.tm-contact { display: flex; flex-direction: column; gap: 7px; margin-top: 16px; width: 100%; }
.tm-contact a { display: inline-flex; align-items: center; gap: 7px; font-size: .9rem; color: var(--nc-fg-2); transition: color .2s; word-break: break-word; }
.tm-contact a:hover { color: var(--nc-red); }
.tm-contact .ic { width: 15px; height: 15px; flex: none; color: var(--nc-red); }
.tm-book { display: inline-flex; align-items: center; gap: 7px; margin-top: 16px; font-size: .85rem; font-weight: 600; color: var(--nc-red); }
.tm-book .ic { width: 15px; height: 15px; }
.tm-book:hover { text-decoration: underline; }
@media (max-width: 1024px) { .tm-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px) { .tm-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .tm-grid { grid-template-columns: 1fr; } }
/* Cross-cutting responsive overrides — must stay last. */
.nc-burger { display: none; }
.nc-mobilemenu { display: none; }
html.mm-lock { overflow: hidden; }
@media (max-width: 1190px) {
  :root {
    --nc-gutter: clamp(16px, 3vw, 36px);
    --nc-display: clamp(2.3rem, 4.6vw, 3.4rem);
    --nc-h2: clamp(1.5rem, 2.6vw, 2rem);
  }
  .sx-wrap { padding-left: var(--nc-gutter); padding-right: var(--nc-gutter); }

  .nc-lang.open .nc-lang__menu { opacity: 1; visibility: visible; transform: none; }
  .nc-lang.open .caret { transform: rotate(180deg); }
}
@media (max-width: 1080px) {
  .nc-burger {
    display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
    width: 44px; height: 44px; padding: 10px; margin-left: 2px;
    background: transparent; border: 0; cursor: pointer; border-radius: 10px;
  }
  .nc-burger:hover { background: var(--nc-n-100); }
  .nc-burger span { display: block; height: 2px; width: 100%; background: var(--nc-ink); border-radius: 2px; transition: transform .25s var(--nc-ease), opacity .2s; }
  .nc-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nc-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nc-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .nc-mobilemenu {
    display: flex; flex-direction: column;
    position: fixed; inset: 0; z-index: 300; background: var(--nc-bg);
    padding: 0 var(--nc-gutter) 32px; overflow-y: auto;
    opacity: 0; visibility: hidden; transform: translateY(-10px);
    transition: opacity .3s var(--nc-ease), transform .3s var(--nc-ease), visibility .3s;
  }
  .nc-mobilemenu.open { opacity: 1; visibility: visible; transform: none; }
  .nc-mm__bar { display: flex; align-items: center; justify-content: space-between; padding: 16px 0 14px; border-bottom: 1px solid var(--nc-n-200); }
  .nc-mm__bar .nc-logo img { height: 24px; }
  .nc-mm__close { width: 44px; height: 44px; border: 0; background: var(--nc-n-100); border-radius: 50%; color: var(--nc-ink); display: inline-flex; align-items: center; justify-content: center; cursor: pointer; }
  .nc-mm__close svg { width: 16px; height: 16px; }
  .nc-mm__nav { display: flex; flex-direction: column; padding: 10px 0 4px; }
  .nc-mm__acc:last-child, .nc-mm__nav > a:last-child { border-bottom: 0; }

  .nc-mm__acc { border-bottom: 1px solid var(--nc-n-200); }
  .nc-mm__top { display: flex; align-items: center; justify-content: space-between; width: 100%; gap: 12px;
    font-family: var(--nc-sans); font-size: 1.35rem; font-weight: 650; color: var(--nc-ink); letter-spacing: -0.015em;
    background: none; border: 0; padding: 16px 2px; cursor: pointer; text-align: left; }
  .nc-mm__acc .nc-mm__top { border-bottom: 0; }
  .nc-mm__top .mmchev { width: 14px; height: 9px; flex: none; color: var(--nc-fg-3); transition: transform .25s var(--nc-ease); }
  .nc-mm__acc.open .nc-mm__top .mmchev { transform: rotate(180deg); }
  .nc-mm__sub { max-height: 0; overflow: hidden; transition: max-height .32s var(--nc-ease); }
  .nc-mm__acc.open .nc-mm__sub { max-height: 900px; }
  .nc-mm__subin { padding-bottom: 6px; }
  .nc-mm__sub a { display: block; font-size: 1rem; font-weight: 500; color: var(--nc-fg-2); padding: 11px 2px; border-bottom: 1px solid var(--nc-n-200); }
  .nc-mm__subin a:last-child { border-bottom: 0; }
  .nc-mm__sub a:active { color: var(--nc-red); }
  .nc-mm__group { display: block; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 700; color: var(--nc-fg-3); padding: 14px 2px 4px; }
  .nc-mm__nav > a { font-size: 1.35rem; font-weight: 650; color: var(--nc-ink); letter-spacing: -0.015em; padding: 16px 2px; border-bottom: 1px solid var(--nc-n-200); }
  .nc-mm__cta { display: flex; flex-direction: column; gap: 10px; margin-top: 22px; }
  .nc-mm__cta .nc-btn { width: 100%; padding-top: 0.95em; padding-bottom: 0.95em; }
  .nc-mm__links { display: flex; flex-wrap: wrap; gap: 6px 22px; margin-top: 26px; }
  .nc-mm__links a { font-size: 0.95rem; font-weight: 500; color: var(--nc-fg-2); padding: 8px 0; }
  .nc-mm__lang { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--nc-n-100); }
  .nc-mm__lang a { display: inline-flex; align-items: center; gap: 8px; font-size: 0.88rem; font-weight: 500; color: var(--nc-fg-2); border: 1px solid var(--nc-n-200); border-radius: 999px; padding: 8px 14px; min-height: 40px; }
  .nc-mm__lang a.is-active { background: var(--nc-ink); color: #fff; border-color: var(--nc-ink); }
  .nc-mm__lang img { width: 16px; height: 16px; border-radius: 50%; }

  .nc-header__inner { padding-top: 12px; padding-bottom: 14px; gap: 16px; }
  .nc-header__cta { gap: 8px; }

  .sx-split, .sx-split.rev { grid-template-columns: 1fr !important; gap: 30px; }
  .vsplit2 { grid-template-columns: 1fr !important; gap: 28px; }
}
@media (max-width: 1024px) {

  .bubbles .lane { width: 150px; }
  .bubbles .bub { transform-origin: center; }
  .bubbles .lane .bub:nth-child(n+5) { display: none; }

  .mgrid { display: flex !important; flex-direction: row !important; flex-wrap: wrap; gap: 16px; }
  .mgrid .mcell { width: calc(50% - 8px); min-width: 0; }
  .mgrid .mcell > * { height: 100%; }
  .mgrid .ctile { min-height: 340px; }

  .ft-cols { grid-template-columns: 1fr 1fr !important; }
  .ft-brand { grid-column: 1 / -1; }
}
@media (max-width: 768px) {
  :root {
    --nc-gutter: 16px;
    --nc-display: clamp(1.9rem, 7.6vw, 2.25rem);
    --nc-h2: clamp(1.45rem, 5.6vw, 1.6rem);
    --nc-lead: 1rem;
  }

  .sx { --pad: 48px; }
  .sx-wrap, #solx section.sx, #valuex section.sx, #casesx section.sx, #resourcesx section.sx { padding-top: 0; padding-bottom: 0; }
  #solx section.sx { padding: 16px 0 14px !important; }
  #casesx section.sx { padding: 20px 0 48px !important; }
  #resourcesx section.sx, #resourcesx .res-sec { padding: 20px 0 48px !important; }
  .res-controls { margin: 26px 0 24px; }

  .sx-badgegrid .badge { width: 62px; height: 62px; box-shadow: 0 0 0 12px var(--nc-ink), 0 10px 22px rgba(0,0,0,0.4); }
  .sx-badgegrid .badge .ic { width: 26px; height: 26px; }
  #valuex .sx-wrap { padding-top: 26px !important; padding-bottom: 48px !important; }
  #resourcesx section.sx { padding: 48px 0 !important; }
  .sx-head--center { margin-bottom: 28px; }
  .sx-lead { font-size: 1rem; }

  .sx-h2 { font-size: 1.55rem; }
  .sx-copy h3 { font-size: 1.25rem; }

  #solx .sx-head--center { text-align: left; max-width: none; margin-left: 0; }
  #solx .sx-head--center .sx-h2, #solx .sx-head--center .sx-lead { margin-left: 0; margin-right: 0; }

  #casesx section.sx > div:first-child { text-align: left !important; max-width: none !important; margin: 0 0 28px !important; padding: 0 var(--nc-gutter); }
  #casesx section.sx > div:first-child .sx-h2, #casesx section.sx > div:first-child .sx-lead { margin-left: 0 !important; margin-right: 0 !important; }

  .tmt__foot { flex-wrap: wrap; }
  .tmt__who { flex: 1 0 calc(100% - 62px); }
  .tmt__logo { margin-top: 8px; }

  .res-controls .rtabs { margin: 0 calc(var(--nc-gutter) * -1) 0 0; padding-right: 0; }

  .stage { min-height: 0; }
  .hero { padding: 40px var(--nc-gutter) 20px; }
  .hero h1 { max-width: none; margin-bottom: 16px; }
  .hero__eyebrow { margin-bottom: 16px; }
  .hero__lead { font-size: 1rem; max-width: none; }
  .hero__cta { margin-top: 26px; gap: 10px; }

  .logos-band { padding: 20px var(--nc-gutter) 30px; }
  .logos-row { flex-direction: column; align-items: flex-start; gap: 14px; }
  .logos-label { width: auto; font-size: .8rem; }
  .logos-label b { font-size: .86rem; }
  .marquee { width: 100%; }
  .marquee__track img { height: 28px; margin-right: 44px; }

  .sx-box-wrap { padding: 0 10px; }
  .sx-box { border-radius: 28px; padding: 34px 20px 38px; }

  .sx-pills, .rtabs { flex-wrap: nowrap; overflow-x: auto; justify-content: flex-start !important; scrollbar-width: none; -webkit-overflow-scrolling: touch; padding: 0 0 4px 0; margin-left: calc(var(--nc-gutter) * -1); margin-right: calc(var(--nc-gutter) * -1); }
  .sx-pills > :first-child, .rtabs > :first-child { margin-left: var(--nc-gutter); }
  .sx-pills > :last-child, .rtabs > :last-child { margin-right: var(--nc-gutter); }
  .sx-pills::-webkit-scrollbar, .rtabs::-webkit-scrollbar { display: none; }
  .sx-pill, .rtab { flex: none; padding: 9px 15px; font-size: .88rem; min-height: 44px; }
  .res-controls .rtabs { margin: 0 calc(var(--nc-gutter) * -1); padding-right: 0; }

  .sx-grid3 { gap: 10px; }
  .sx-grid3 .g2, .sx-grid3 .g3 { transform: none !important; }
  .sx-grid3 .cell { border-radius: 18px; }
  .sx-feat { padding: 9px 0; gap: 12px; }
  .sx-feats { margin: 20px 0 14px; }
  .value-cta { margin-top: 16px; }
  .ic-chip { width: 38px; height: 38px; border-radius: 10px; }

  .vmedia2 { aspect-ratio: 4/3; border-radius: 20px; }
  .vbadge { left: 12px; bottom: 12px; padding: 10px 15px; }

  .ctile { padding: 20px; border-radius: 20px; }
  .ctile h3 { font-size: 1.18rem; }
  .tmt { padding: 22px 20px 20px; border-radius: 20px; }
  .tmt__quote { font-size: 1.05rem; }

  .rcard__body { padding: 16px 16px 18px; }
  #resourcesx .nc-car__head { justify-content: flex-end !important; margin-bottom: 14px; }

  .cta-final__in { padding: 48px var(--nc-gutter) 48px; }
  .cta-team img { width: 36px; height: 36px; }
  .ft-wrap { padding-left: var(--nc-gutter); padding-right: var(--nc-gutter); }
  .ft-news-row { flex-direction: column; align-items: stretch; gap: 14px; padding-bottom: 28px; }
  .ft-cols { padding-top: 32px; gap: 28px; }
  .nl-bar__form { width: 100%; }
  .nl-bar__form input { flex: 1 1 100%; min-width: 0; }
  .nl-bar__form .nc-btn { width: 100%; }
}
@media (max-width: 640px) {

  .nc-topbar .tb-group .tb-link:nth-child(1),
  .nc-topbar .tb-group .tb-link:nth-child(2) { display: none; }

  .bubbles { display: none; }
  .fade-edge { display: none; }

  .sx-box-wrap { padding: 0; }
  .sx-box { border-radius: 0; padding: 44px var(--nc-gutter) 48px; }

  .mgrid { flex-wrap: nowrap !important; overflow-x: auto; gap: 12px; padding-left: 0; padding-right: 0; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
  .mgrid::-webkit-scrollbar { display: none; }
  .mgrid .mcell { width: 80vw; flex: none; }
  .mgrid .mcell:first-child { margin-left: var(--nc-gutter); }
  .mgrid .mcell:last-child { margin-right: var(--nc-gutter); }
  .mgrid .mcell > * { height: 100%; }
  .mgrid .ctile { min-height: 340px; }

  #resourcesx .nc-car__nav { display: none; }
  .res-track { margin: -14px calc(var(--nc-gutter) * -1); padding: 14px 0; }
  .res-track > :first-child { margin-left: var(--nc-gutter); }
  .res-track > :last-child { margin-right: var(--nc-gutter); }

  .cta-final__center { text-align: left; max-width: none; }
  .cta-final__center .sx-eyebrow { justify-content: flex-start; }
  .cta-final__center .lead { margin-left: 0; margin-right: 0; }
  .cta-team { justify-content: flex-start; }

  .nc-car__track.w3 > *, .nc-car__track.w4 > * { width: 82vw; }
  .res-track > * { width: 82vw !important; }

  .feat-res { grid-template-columns: 1fr; }
  .ft-cols { grid-template-columns: 1fr !important; }
  .ft-links2 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .nc-header__inner { padding-left: 12px; padding-right: 12px; gap: 10px; }
  .nc-header__cta { gap: 6px; }
  .nc-burger { width: 44px; margin-left: 0; }
  .nc-mm__lang a { min-height: 44px; }
  .hero__cta, .cta-final__btns { flex-direction: column; width: 100%; }
  .hero__cta .nc-btn, .cta-final__btns .nc-btn { width: 100%; min-height: 48px; }
  .hero__cta { padding: 0 4px; }
  .nc-header__cta .nc-btn--primary { padding: 0.6em 1em; font-size: .85rem; }
  .nc-logo img { height: 23px; }
  .vtrio { grid-template-columns: 1fr; }
  .ft-bottom__line { flex-direction: column; align-items: center; text-align: center; gap: 6px; }
  .value-cta { flex-direction: column; }
  .value-cta .nc-btn { width: 100%; }
  .sx-statband { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 370px) {
  .nc-header__cta .nc-btn--primary { padding: 0.55em 0.85em; font-size: .8rem; }
  .nc-header__inner { gap: 8px; }
}
