:root {
  --navy-950: #01030f;
  --navy-900: #020616;
  --navy-850: #030821;
  --navy-800: #050a1b;
  --ink: #f7fbff;
  --ink-soft: #c5cee7;
  --ink-muted: #8890aa;
  --white-ink: #ffffff;
  --paper: #f7fbff;
  --paper-soft: #eef3fb;
  --paper-line: rgba(1, 3, 15, 0.12);
  --paper-ink: #01030f;
  --paper-muted: #4f5d78;
  --lime: #b9c85a;
  --blue: #4ea8ff;
  --deep-blue: #3158ff;
  --violet: #140c3d;
  --border-dark: rgba(255, 255, 255, 0.1);
  --border-dark-strong: rgba(255, 255, 255, 0.16);
  --sidebar-width: 304px;
  --sidebar-collapsed-width: 76px;
  --font-sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}


*,
*::before,
*::after {
  box-sizing: border-box;
}


html {
  min-height: 100%;
  background: var(--navy-950);
  scroll-behavior: smooth;
}


body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: var(--font-sans);
  color: var(--ink-soft);
  background: var(--navy-950);
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}


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


button {
  font: inherit;
}


.brand-page {
  --bg: #01030f;
  --panel: #050711;
  --panel-soft: #080b16;
  --text: #f7fbff;
  --text-soft: #c5cee7;
  --text-muted: #8890aa;
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.18);
  --asset-bg: #171717;
  --asset-bg-soft: #111318;
  --asset-bg-light: #ffffff;
  --asset-text: #f7fbff;
  --asset-text-soft: #c5cee7;
  --nav-icon-filter: brightness(0) saturate(100%) invert(88%) sepia(10%) saturate(520%) hue-rotate(188deg) brightness(95%) contrast(92%);
  --nav-icon-filter-active: brightness(0) saturate(100%) invert(63%) sepia(91%) saturate(1151%) hue-rotate(181deg) brightness(103%) contrast(101%);
}


.brand-page[data-brand-theme="light"] {
  --bg: #f7fbff;
  --panel: #ffffff;
  --panel-soft: #eef3fb;
  --text: #01030f;
  --text-soft: #263149;
  --text-muted: #5e6a82;
  --line: rgba(1, 3, 15, 0.12);
  --line-strong: rgba(1, 3, 15, 0.2);
  --asset-bg: #171717;
  --asset-bg-soft: #111318;
  --asset-bg-light: #ffffff;
  --asset-text: #f7fbff;
  --asset-text-soft: #c5cee7;
  --nav-icon-filter: brightness(0) saturate(100%) invert(18%) sepia(15%) saturate(942%) hue-rotate(181deg) brightness(95%) contrast(90%);
  --nav-icon-filter-active: brightness(0) saturate(100%) invert(63%) sepia(91%) saturate(1151%) hue-rotate(181deg) brightness(103%) contrast(101%);
}


.brand-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: var(--sidebar-width) minmax(0, 1fr);
  background: var(--bg);
  color: var(--text);
  transition: grid-template-columns 260ms cubic-bezier(0.16, 1, 0.3, 1);
}


.brand-shell.is-collapsed {
  grid-template-columns: var(--sidebar-collapsed-width) minmax(0, 1fr);
}


/* ===========================
   COPY TOAST
   =========================== */


.brand-copy-toast {
  position: fixed;
  top: 128px;
  right: 42px;
  z-index: 2147482800;
  min-width: 272px;
  min-height: 88px;
  padding: 18px 20px;
  background: #171717;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  visibility: hidden;
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    visibility 180ms ease;
}


.brand-copy-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}


.brand-copy-toast-swatch {
  width: 50px;
  height: 50px;
  display: inline-block;
  background: #140c3d;
  flex: 0 0 auto;
}


.brand-copy-toast-text {
  display: grid;
  gap: 8px;
}


.brand-copy-toast-text strong {
  color: #ffffff;
  font-size: 16px;
  line-height: 1;
  font-weight: 750;
  letter-spacing: -0.025em;
}


.brand-copy-toast-text span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1;
  font-weight: 650;
  letter-spacing: 0.02em;
}


/* ===========================
   LEFT SIDEBAR
   =========================== */


.brand-sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  border-right: 1px solid var(--line);
  background: var(--bg);
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 30px 22px 26px;
  overflow: hidden;
}


.brand-sidebar-top {
  min-height: 42px;
  display: flex;
  align-items: center;
  margin-bottom: 34px;
}


.brand-sidebar-logo {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}


.brand-sidebar-mark-link {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
}


.brand-sidebar-mark {
  width: 34px;
  height: 34px;
  object-fit: contain;
  flex: 0 0 auto;
}


.brand-sidebar-name {
  min-width: 0;
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
  color: var(--text);
  font-size: 18px;
  line-height: 1;
  letter-spacing: -0.045em;
  white-space: nowrap;
}


.brand-sidebar-name strong {
  font-weight: 650;
}


.brand-sidebar-brand-link {
  position: relative;
  color: var(--text);
  font-weight: 300;
  transition: color 180ms ease;
}


.brand-sidebar-brand-link:hover,
.brand-sidebar-brand-link:focus-visible,
.brand-page.is-brand-home-panel .brand-sidebar-brand-link {
  color: color-mix(in srgb, var(--text) 48%, transparent);
  outline: none;
}


.brand-nav {
  display: grid;
  align-content: start;
  gap: 22px;
}


.brand-nav-group {
  min-width: 0;
}


.brand-nav-head {
  width: 100%;
  min-height: 28px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--text);
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr) 18px;
  align-items: center;
  gap: 10px;
  text-align: left;
}


.brand-nav-icon {
  width: 24px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  color: var(--text-soft);
  transition: color 180ms ease, opacity 180ms ease, filter 180ms ease;
}


.brand-nav-icon img,
.brand-nav-icon svg {
  width: 19px;
  height: 19px;
  display: block;
  object-fit: contain;
}


.brand-nav-icon img {
  filter: var(--nav-icon-filter);
  transition: filter 180ms ease, opacity 180ms ease;
}


.brand-nav-icon svg {
  color: currentColor;
}


.brand-nav-head:hover .brand-nav-icon,
.brand-nav-head:focus-within .brand-nav-icon,
.brand-nav-group.has-active .brand-nav-icon {
  color: var(--blue);
  opacity: 1;
}


.brand-nav-head:hover .brand-nav-icon img,
.brand-nav-head:focus-within .brand-nav-icon img,
.brand-nav-group.has-active .brand-nav-icon img {
  filter: var(--nav-icon-filter-active);
}


.brand-nav-title-link {
  min-width: 0;
  width: max-content;
  max-width: 100%;
  color: var(--text);
  font-size: 13px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  white-space: nowrap;
}


.brand-nav-title-link:hover,
.brand-nav-title-link:focus-visible {
  color: var(--text);
  outline: none;
}


.brand-nav-title-link[aria-current="true"] {
  color: var(--text);
}


.brand-nav-toggle {
  width: 18px;
  height: 18px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--text);
  display: inline-grid;
  place-items: center;
  cursor: pointer;
}


.brand-nav-state {
  width: 18px;
  height: 18px;
  display: inline-grid;
  place-items: center;
  color: currentColor;
  transition: color 180ms ease;
}


.brand-nav-toggle:hover,
.brand-nav-toggle:focus-visible {
  color: var(--blue);
  outline: none;
}


.brand-nav-state svg {
  width: 18px;
  height: 18px;
  grid-area: 1 / 1;
}


.brand-nav-state-minus {
  display: none;
}


.brand-nav-group.is-open .brand-nav-state-plus {
  display: none;
}


.brand-nav-group.is-open .brand-nav-state-minus {
  display: block;
}


.brand-nav-sub {
  display: grid;
  gap: 4px;
  padding: 14px 0 0 34px;
}


.brand-nav-sub[hidden] {
  display: none !important;
}


.brand-nav-sub a {
  width: max-content;
  max-width: 100%;
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.25;
  font-weight: 600;
  padding: 5px 0;
  letter-spacing: -0.018em;
  transition: color 180ms ease, transform 180ms ease;
}


.brand-nav-sub a:hover,
.brand-nav-sub a:focus-visible,
.brand-nav-sub a.is-active,
.brand-nav-sub a[aria-current="true"] {
  color: var(--blue);
  transform: translateX(2px);
  outline: none;
}


.brand-sidebar-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 34px;
  align-items: center;
  gap: 10px;
}


.brand-theme-toggle,
.brand-sidebar-collapse {
  border: 0;
  background: transparent;
  color: var(--text-soft);
  cursor: pointer;
}


.brand-theme-toggle {
  min-width: 0;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  text-align: left;
}


.brand-sidebar-collapse {
  width: 34px;
  height: 34px;
  padding: 0;
  display: inline-grid;
  place-items: center;
}


.brand-theme-icon {
  width: 24px;
  height: 24px;
  display: inline-grid;
  place-items: center;
}


.brand-theme-icon img,
.brand-sidebar-control-icon {
  width: 20px;
  height: 20px;
  display: block;
  object-fit: contain;
  filter: var(--nav-icon-filter);
  transition:
    filter 180ms ease,
    opacity 180ms ease,
    transform 220ms cubic-bezier(0.16, 1, 0.3, 1);
}


.brand-theme-icon--sun {
  display: none;
}


.brand-page[data-brand-theme="light"] .brand-theme-icon--moon {
  display: none;
}


.brand-page[data-brand-theme="light"] .brand-theme-icon--sun {
  display: inline-grid;
}


.brand-theme-label {
  color: var(--text-soft);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.01em;
}


.brand-theme-toggle:hover,
.brand-theme-toggle:focus-visible,
.brand-sidebar-collapse:hover,
.brand-sidebar-collapse:focus-visible {
  color: var(--blue);
  outline: none;
}


.brand-theme-toggle:hover .brand-sidebar-control-icon,
.brand-theme-toggle:focus-visible .brand-sidebar-control-icon,
.brand-sidebar-collapse:hover .brand-sidebar-control-icon,
.brand-sidebar-collapse:focus-visible .brand-sidebar-control-icon {
  filter: var(--nav-icon-filter-active);
}


/* ===========================
   COLLAPSED SIDEBAR FIX
   =========================== */


.brand-shell.is-collapsed .brand-sidebar {
  padding-left: 21px;
  padding-right: 21px;
}


.brand-shell.is-collapsed .brand-sidebar-top {
  justify-content: center;
}


.brand-shell.is-collapsed .brand-sidebar-logo {
  justify-content: center;
}


.brand-shell.is-collapsed .brand-sidebar-name,
.brand-shell.is-collapsed .brand-sidebar-brand-link,
.brand-shell.is-collapsed .brand-nav-title-link,
.brand-shell.is-collapsed .brand-nav-toggle,
.brand-shell.is-collapsed .brand-nav-state,
.brand-shell.is-collapsed .brand-nav-sub,
.brand-shell.is-collapsed .brand-theme-label {
  display: none !important;
}


.brand-shell.is-collapsed .brand-nav {
  gap: 18px;
}


.brand-shell.is-collapsed .brand-nav-head {
  grid-template-columns: 1fr;
  justify-items: center;
  justify-content: center;
}


.brand-shell.is-collapsed .brand-nav-icon {
  width: 24px;
  height: 24px;
  justify-self: center;
}


.brand-shell.is-collapsed .brand-nav-icon img,
.brand-shell.is-collapsed .brand-nav-icon svg {
  width: 20px;
  height: 20px;
}


.brand-shell.is-collapsed .brand-sidebar-bottom {
  grid-template-columns: 1fr;
  justify-items: center;
  align-content: end;
  gap: 12px;
}


.brand-shell.is-collapsed .brand-theme-toggle {
  width: 34px;
  min-height: 34px;
  justify-content: center;
}


.brand-shell.is-collapsed .brand-sidebar-collapse {
  display: inline-grid;
  justify-self: center;
}


.brand-shell.is-collapsed .brand-sidebar-collapse-icon {
  transform: rotate(180deg);
}


/* ===========================
   MAIN
   =========================== */


.brand-main {
  --brand-main-pad: clamp(32px, 6vw, 96px);
  min-width: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  padding: 0 var(--brand-main-pad);
}


.brand-main-topbar {
  position: sticky;
  top: 0;
  z-index: 50;


  width: calc(100% + (var(--brand-main-pad) * 2));
  margin-left: calc(var(--brand-main-pad) * -1);
  margin-right: calc(var(--brand-main-pad) * -1);
  padding: 0 var(--brand-main-pad);


  height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;


  background: var(--bg);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
  border: 0;
}



.brand-page[data-brand-theme="light"] .brand-main-topbar {
  background: #f7fbff;
}


.brand-page[data-brand-theme="dark"] .brand-main-topbar {
  background: #01030f;
}


.brand-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}


.brand-breadcrumb a {
  color: var(--text);
}


.brand-download-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-size: 14px;
  line-height: 1;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 180ms ease;
}


.brand-download-link svg,
.brand-download-link img {
  width: 22px;
  height: 22px;
  display: block;
}


.brand-download-link img {
  filter: var(--nav-icon-filter);
  transition: filter 180ms ease;
}


.brand-download-link:hover,
.brand-download-link:focus-visible {
  color: var(--blue);
  outline: none;
}


.brand-download-link:hover img,
.brand-download-link:focus-visible img {
  filter: var(--nav-icon-filter-active);
}


/* ===========================
   SECTION BASE
   =========================== */


.brand-section {
  width: min(960px, 100%);
  margin: 0 auto;
}


[data-brand-panel][hidden] {
  display: none !important;
}


/* ===========================
   BRAND HOME
   =========================== */


.brand-home-section {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  padding: clamp(42px, 6vw, 76px) 0 clamp(90px, 10vw, 140px);
}


.brand-home-hero {
  min-height: calc(100vh - 96px);
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.5fr) minmax(0, 0.5fr);
  gap: clamp(42px, 5vw, 88px);
  align-items: start;
  max-width: 100%;
  overflow-x: hidden;
  overflow-y: visible;
  isolation: isolate;
}


.brand-home-mark {
  position: relative;
  left: auto;
  top: auto;
  width: min(94%, 900px);
  max-width: none;
  max-height: min(80vh, 820px);
  height: auto;
  object-fit: contain;
  transform: translateY(1%);
  opacity: 0.98;
  pointer-events: none;
  user-select: none;
  z-index: -1;
  justify-self: start;
  align-self: start;
}


.brand-home-hero-copy {
  width: min(620px, 100%);
  max-width: 100%;
  justify-self: end;
  align-self: center;
  display: grid;
  justify-items: end;
  gap: 28px;
  margin-left: 0;
}


.brand-home-hero-copy h1 {
  margin: 0;
  color: var(--text);
  width: 100%;
  font-size: clamp(46px, 4.45vw, 74px);
  line-height: 1.04;
  font-weight: 760;
  letter-spacing: -0.055em;
}


.brand-home-explore-link {
  justify-self: end;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  line-height: 1;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 180ms ease;
}


.brand-home-explore-link span[aria-hidden="true"] {
  display: inline-block;
  transition: transform 220ms cubic-bezier(0.16, 1, 0.3, 1);
}


.brand-home-explore-link:hover,
.brand-home-explore-link:focus-visible {
  color: var(--blue);
  outline: none;
}


.brand-home-explore-link:hover span[aria-hidden="true"],
.brand-home-explore-link:focus-visible span[aria-hidden="true"] {
  transform: translateY(8px);
}


.brand-home-explore {
  padding-top: clamp(84px, 9vw, 128px);
}


.brand-home-explore h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(54px, 6.6vw, 86px);
  line-height: 0.96;
  font-weight: 760;
  letter-spacing: -0.08em;
}


.brand-home-card-grid {
  margin-top: clamp(42px, 5vw, 62px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}


.brand-home-card {
  min-height: 292px;
  padding: 28px;
  border: 0;
  border-radius: 4px;
  background: color-mix(in srgb, var(--text) 3.5%, transparent);
  color: var(--text);
  display: grid;
  align-content: space-between;
  gap: 24px;
  transition:
    background 180ms ease,
    transform 180ms ease,
    color 180ms ease;
}


.brand-home-card:hover,
.brand-home-card:focus-visible {
  background: color-mix(in srgb, var(--text) 10%, transparent);
}


.brand-home-card:hover,
.brand-home-card:focus-visible {
  transform: translateY(-3px);
  outline: none;
}


.brand-home-card-icon {
  width: 42px;
  height: 42px;
  color: var(--blue);
  display: inline-grid;
  place-items: center;
}


.brand-home-card-icon svg {
  width: 42px;
  height: 42px;
  display: block;
}


.brand-home-card-icon-img {
  width: 42px;
  height: 42px;
  display: block;
  object-fit: contain;
  filter: var(--nav-icon-filter-active);
}


.brand-home-card-icon--mark {
  width: 42px;
  height: 42px;
  place-items: center;
}


.brand-home-card-icon--mark img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  display: block;
}


.brand-home-card-aa {
  color: var(--blue);
  font-size: 24px;
  line-height: 1;
  font-weight: 760;
  letter-spacing: -0.035em;
}


.brand-home-card-swatch {
  width: 24px;
  height: 24px;
  display: block;
  border-radius: 999px;
}


.brand-home-card-icon:has(.brand-home-card-swatch) {
  grid-template-columns: repeat(2, 24px);
  gap: 4px;
}


.brand-home-card-swatch--lime {
  background: #d7ff5f;
}


.brand-home-card-swatch--blue {
  background: var(--blue);
}


.brand-home-card-swatch--purple {
  background: #7a5cff;
}


.brand-home-card-swatch--ink {
  background: #030616;
}


.brand-home-card strong {
  margin-top: 18px;
  color: var(--text);
  display: block;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.12;
  font-weight: 760;
  letter-spacing: 0;
}


.brand-home-card p {
  margin: 0;
  max-width: 320px;
  color: var(--text-soft);
  font-size: clamp(14px, 1.15vw, 16px);
  line-height: 1.55;
  font-weight: 400;
  letter-spacing: 0;
}


.brand-home-card-link {
  color: var(--text);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  line-height: 1;
  font-weight: 760;
  letter-spacing: 0;
}


.brand-home-card:hover .brand-home-card-link,
.brand-home-card:focus-visible .brand-home-card-link {
  color: var(--blue);
}


.brand-home-card--contact .brand-home-card-contact-icon {
  border: 2px solid currentColor;
  border-radius: 999px;
  color: currentColor;
  font-size: 25px;
  line-height: 1;
  font-weight: 500;
}


.brand-home-card--contact {
  background: color-mix(in srgb, var(--text) 10%, transparent);
}


.brand-home-card:hover,
.brand-home-card:focus-visible {
  background: color-mix(in srgb, var(--text) 10%, transparent);
}


.brand-home-card--contact:hover,
.brand-home-card--contact:focus-visible {
  background: color-mix(in srgb, var(--text) 3.5%, transparent);
}


.brand-hero-section {
  min-height: calc(100vh - 96px);
  display: grid;
  align-items: center;
  padding: 80px 0 110px;
}


.brand-hero-lockup {
  display: grid;
  gap: clamp(42px, 6vw, 64px);
}


.brand-hero-title {
  margin: 0;
  color: var(--text);
  font-size: clamp(64px, 8.2vw, 112px);
  line-height: 0.94;
  font-weight: 700;
  letter-spacing: -0.085em;
}


.brand-hero-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.45fr) minmax(0, 1fr);
  gap: clamp(42px, 7vw, 86px);
  align-items: start;
}


.brand-hero-callout {
  margin: 0;
  color: var(--text);
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: 0;
}


.brand-hero-copy {
  max-width: 610px;
  margin: 0;
  color: var(--text-soft);
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.55;
  font-weight: 400;
  letter-spacing: 0;
}


.brand-hero-copy a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 5px;
  transition: color 180ms ease;
}


.brand-hero-copy a:hover,
.brand-hero-copy a:focus-visible {
  color: var(--text);
  outline: none;
}


/* ===========================
   LOGOS INTRO
   =========================== */


.brand-logos-section,
.brand-colors-section {
  padding: clamp(86px, 11vw, 136px) 0 clamp(76px, 9vw, 118px);
}


.brand-section-copy {
  max-width: 720px;
}


.brand-section-title {
  margin: 0;
  color: var(--text);
  font-size: clamp(54px, 6.6vw, 86px);
  line-height: 0.96;
  font-weight: 700;
  letter-spacing: -0.08em;
}


.brand-section-lede {
  margin: clamp(22px, 3vw, 34px) 0 0;
  color: var(--text-soft);
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.55;
  font-weight: 400;
  letter-spacing: 0;
}


/* ===========================
   LOGO ASSET SECTION
   =========================== */


.brand-logo-assets-section {
  padding: clamp(70px, 8vw, 106px) 0 96px;
}


.brand-asset-intro {
  max-width: 520px;
}


.brand-asset-intro--stacked {
  margin-top: clamp(88px, 10vw, 136px);
}


.brand-asset-title {
  margin: 0;
  color: var(--text);
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: 0;
}


.brand-asset-intro p {
  margin: 22px 0 0;
  color: var(--text-soft);
  font-size: 17px;
  line-height: 1.55;
  font-weight: 400;
  letter-spacing: -0.025em;
}


.brand-logo-card {
  margin-top: clamp(62px, 7vw, 92px);
}


.brand-logo-preview {
  position: relative;
  width: 100%;
  min-height: clamp(300px, 36vw, 430px);
  display: grid;
  place-items: center;
  border-radius: 4px;
  background: var(--asset-bg);
  border: 0;
  overflow: hidden;
  transition: background 180ms ease;
}


.brand-logo-preview.is-light-bg {
  background: var(--asset-bg-light);
}


.brand-logo-preview img {
  display: block;
  width: min(420px, 64%);
  max-height: 160px;
  object-fit: contain;
}


.brand-logo-download {
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: 44px;
  height: 44px;
  border-radius: 6px;
  display: grid;
  place-items: center;
  background: var(--blue);
  color: #ffffff;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease;
}


.brand-logo-download:hover,
.brand-logo-download:focus-visible {
  transform: translateY(-2px);
  background: #6bb8ff;
  color: #ffffff;
  outline: none;
}


.brand-logo-download svg,
.brand-logo-download img {
  width: 22px;
  height: 22px;
  display: block;
}


.brand-logo-download img {
  filter: brightness(0) invert(1);
}


.brand-logo-tabs {
  margin-top: 22px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 28px;
}


.brand-logo-tabs button {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 180ms ease;
}


.brand-logo-tabs button:hover,
.brand-logo-tabs button:focus-visible {
  color: var(--blue);
  outline: none;
}


.brand-logo-tabs button.is-active {
  color: var(--text);
}


/* ===========================
   COLORS
   =========================== */


.brand-palette-header {
  margin-top: clamp(86px, 10vw, 126px);
  display: grid;
  grid-template-columns: minmax(0, 520px) auto;
  justify-content: space-between;
  align-items: end;
  gap: 34px;
}


.brand-palette-title {
  margin: 0;
  color: var(--text);
  font-size: clamp(34px, 3.8vw, 52px);
  line-height: 1;
  font-weight: 760;
  letter-spacing: -0.06em;
}


.brand-palette-header p {
  margin: 18px 0 0;
  color: var(--text-soft);
  font-size: 17px;
  line-height: 1.55;
  font-weight: 400;
  letter-spacing: -0.025em;
}


.brand-view-all-colors {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: var(--text);
  font-size: 14px;
  line-height: 1;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 180ms ease, transform 180ms ease;
}


.brand-view-all-colors img {
  width: 22px;
  height: 22px;
  display: block;
  object-fit: contain;
  filter: var(--nav-icon-filter);
  transition: filter 180ms ease;
}


.brand-view-all-colors:hover,
.brand-view-all-colors:focus-visible {
  color: var(--blue);
  transform: translateX(3px);
  outline: none;
}


.brand-view-all-colors:hover img,
.brand-view-all-colors:focus-visible img {
  filter: var(--nav-icon-filter-active);
}


.brand-color-hero {
  margin-top: clamp(52px, 6vw, 78px);
  overflow: hidden;
  border-radius: 4px;
}


.brand-color-hero-main {
  width: 100%;
  min-height: clamp(218px, 26vw, 286px);
  border: 0;
  padding: 28px;
  background: var(--swatch);
  color: #ffffff;
  display: grid;
  align-content: space-between;
  text-align: left;
  cursor: pointer;
  position: relative;
}


.brand-color-hero-main span,
.brand-color-hero-main strong,
.brand-color-hero-main em {
  display: block;
}


.brand-color-hero-main > span:first-child {
  font-size: 22px;
  line-height: 1;
  font-weight: 760;
  letter-spacing: -0.035em;
}


.brand-color-hero-main strong {
  margin-top: auto;
  font-size: 22px;
  line-height: 1;
  font-weight: 760;
  letter-spacing: -0.035em;
}


.brand-color-hero-main em {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-style: normal;
  font-size: 13px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.08em;
}


.brand-color-hero-copy {
  position: absolute;
  inset: 0;
  display: grid !important;
  place-items: center;
  color: #ffffff;
  font-size: 12px;
  line-height: 1;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease;
}


.brand-color-hero-main:hover .brand-color-hero-copy,
.brand-color-hero-main:focus-visible .brand-color-hero-copy {
  opacity: 1;
}


.brand-color-strip {
  height: 54px;
  display: grid;
  grid-template-columns: repeat(9, 1fr);
}


.brand-color-strip button {
  border: 0;
  padding: 0;
  background: var(--swatch);
  cursor: pointer;
  position: relative;
}


.brand-color-strip button::after {
  content: "Copy";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #ffffff;
  font-size: 12px;
  line-height: 1;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 160ms ease;
}


.brand-color-strip button.brand-color-copy--light::after {
  color: #140c3d;
}


.brand-color-strip button:hover::after,
.brand-color-strip button:focus-visible::after {
  opacity: 1;
}


.brand-color-grid {
  margin-top: clamp(52px, 6vw, 78px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}


.brand-color-grid--neutrals {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}


.brand-color-card {
  min-height: 214px;
  border: 0;
  border-radius: 4px;
  padding: 24px;
  background: var(--swatch);
  color: var(--card-text);
  display: grid;
  align-content: space-between;
  text-align: left;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}


.brand-color-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.08);
  opacity: 0;
  transition: opacity 180ms ease;
}


.brand-color-card:hover::before,
.brand-color-card:focus-visible::before {
  opacity: 1;
}


.brand-color-card--light {
  box-shadow: inset 0 0 0 1px rgba(1, 3, 15, 0.08);
}


.brand-color-card-sample {
  position: relative;
  z-index: 1;
  font-size: 22px;
  line-height: 1;
  font-weight: 760;
  letter-spacing: -0.035em;
}


.brand-color-card-copy {
  position: relative;
  z-index: 1;
  justify-self: center;
  align-self: center;
  color: currentColor;
  font-size: 12px;
  line-height: 1;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 160ms ease;
}


.brand-color-card:hover .brand-color-card-copy,
.brand-color-card:focus-visible .brand-color-card-copy {
  opacity: 1;
}


.brand-color-card-meta {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 16px;
}


.brand-color-card-meta strong {
  font-size: 24px;
  line-height: 1;
  font-weight: 760;
  letter-spacing: -0.05em;
}


.brand-color-card-meta em {
  color: currentColor;
  opacity: 0.68;
  font-style: normal;
  font-size: 13px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}


.brand-color-card--dark {
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}


/* ===========================
   IMAGERY
   =========================== */


.brand-imagery-section {
  padding: clamp(86px, 11vw, 136px) 0 clamp(96px, 10vw, 142px);
}


.brand-imagery-grid {
  margin-top: clamp(58px, 7vw, 92px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}


.brand-imagery-card {
  position: relative;
  display: block;
  min-height: 0;
  aspect-ratio: 16 / 10;
  border-radius: 4px;
  overflow: hidden;
  background: #050711;
  isolation: isolate;
}


.brand-imagery-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.001);
  transition:
    transform 260ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 180ms ease;
}


.brand-imagery-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      to bottom,
      rgba(1, 3, 15, 0.04),
      rgba(1, 3, 15, 0.42)
    );
  opacity: 0;
  transition: opacity 180ms ease;
}


.brand-imagery-card:hover,
.brand-imagery-card:focus-visible {
  outline: none;
}


.brand-imagery-card:hover img,
.brand-imagery-card:focus-visible img {
  transform: scale(1.035);
}


/* ===========================
   DESIGN GUIDELINES
   =========================== */


.brand-guidelines-section {
  min-height: calc(100vh - 96px);
  padding: 0 0 clamp(96px, 10vw, 142px);
}


.brand-guidelines-hero {
  min-height: calc(100vh - 96px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 42px;
  align-items: center;
  padding: clamp(80px, 9vw, 128px) 0 clamp(88px, 10vw, 140px);
}


.brand-guidelines-hero-grid {
  margin-top: clamp(42px, 5vw, 66px);
}


.brand-guidelines-hero-grid .brand-section-lede {
  padding-left: clamp(14px, 2vw, 34px);
}


.brand-guidelines-actions {
  display: grid;
  gap: 18px;
  justify-items: end;
  align-self: start;
  justify-self: end;
  padding-top: 16px;
  text-align: right;
}


.brand-guidelines-actions a {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--text);
  font-size: 14px;
  line-height: 1;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    color 180ms ease,
    transform 180ms ease;
}


.brand-guidelines-actions a:hover,
.brand-guidelines-actions a:focus-visible {
  color: var(--blue);
  transform: translateX(3px);
  outline: none;
}


.brand-guidelines-actions img {
  width: 22px;
  height: 22px;
  display: block;
  object-fit: contain;
  filter: var(--nav-icon-filter);
  transition: filter 180ms ease;
}


.brand-guidelines-actions a:hover img,
.brand-guidelines-actions a:focus-visible img {
  filter: var(--nav-icon-filter-active);
}


.brand-guidelines-action-icon--text {
  width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1;
  font-weight: 760;
  letter-spacing: -0.04em;
}


.brand-guide-block {
  padding-top: clamp(86px, 10vw, 132px);
}


.brand-guide-copy,
.brand-guide-copy-row {
  max-width: 960px;
}


.brand-guide-copy-row {
  display: grid;
  grid-template-columns: minmax(0, 460px) auto;
  justify-content: space-between;
  align-items: end;
  gap: 34px;
}


.brand-guide-title {
  margin: 0;
  color: var(--text);
  font-size: clamp(34px, 3.8vw, 52px);
  line-height: 1;
  font-weight: 760;
  letter-spacing: -0.06em;
}


.brand-guide-copy p,
.brand-guide-copy-row p {
  max-width: 520px;
  margin: 18px 0 0;
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 400;
  letter-spacing: 0;
}


.brand-guide-download-link {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: var(--text);
  font-size: 14px;
  line-height: 1;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    color 180ms ease,
    transform 180ms ease;
}


.brand-guide-download-link svg,
.brand-guide-download-link img {
  width: 22px;
  height: 22px;
  display: block;
}


.brand-guide-download-link img {
  filter: var(--nav-icon-filter);
  transition: filter 180ms ease;
}


.brand-guide-download-link:hover,
.brand-guide-download-link:focus-visible {
  color: var(--blue);
  transform: translateX(3px);
  outline: none;
}


.brand-guide-download-link:hover img,
.brand-guide-download-link:focus-visible img {
  filter: var(--nav-icon-filter-active);
}


.brand-clearspace-card,
.brand-subbrand-card,
.brand-cobrand-card,
.brand-dont-figure,
.brand-type-card,
.brand-color-usage-card {
  margin-top: clamp(52px, 6vw, 78px);
  border-radius: 4px;
  background: var(--asset-bg);
  border: 0;
  box-shadow: none;
}


.brand-page[data-brand-theme="light"] .brand-clearspace-card,
.brand-page[data-brand-theme="light"] .brand-subbrand-card,
.brand-page[data-brand-theme="light"] .brand-cobrand-card,
.brand-page[data-brand-theme="light"] .brand-dont-figure,
.brand-page[data-brand-theme="light"] .brand-type-card,
.brand-page[data-brand-theme="light"] .brand-color-usage-card {
  background: var(--asset-bg-light);
}


.brand-clearspace-card {
  min-height: clamp(300px, 36vw, 430px);
  display: grid;
  place-items: center;
  padding: clamp(34px, 5vw, 62px);
}


.brand-clearspace-stage {
  position: relative;
  width: min(560px, 100%);
  min-height: 188px;
  display: grid;
  place-items: center;
  background: rgba(185, 200, 90, 0.045);
  overflow: hidden;
}


.brand-page[data-brand-theme="light"] .brand-clearspace-stage {
  background: rgba(20, 12, 61, 0.045);
}


.brand-clearspace-band {
  position: absolute;
  background: rgba(185, 200, 90, 0.08);
  pointer-events: none;
}


.brand-page[data-brand-theme="light"] .brand-clearspace-band {
  background: rgba(20, 12, 61, 0.08);
}


.brand-clearspace-band--top,
.brand-clearspace-band--bottom {
  left: 0;
  right: 0;
  height: 34px;
}


.brand-clearspace-band--top {
  top: 0;
}


.brand-clearspace-band--bottom {
  bottom: 0;
}


.brand-clearspace-band--left,
.brand-clearspace-band--right {
  top: 0;
  bottom: 0;
  width: 34px;
}


.brand-clearspace-band--left {
  left: 0;
}


.brand-clearspace-band--right {
  right: 0;
}


.brand-clearspace-logo-wrap {
  position: relative;
  z-index: 1;
  width: min(360px, 64%);
  display: grid;
  place-items: center;
}


.brand-clearspace-logo-wrap img {
  width: 100%;
  max-height: 92px;
  display: block;
  object-fit: contain;
}


.brand-subbrand-card {
  min-height: 248px;
  display: grid;
  place-items: center;
  padding: 34px;
}


.brand-subbrand-lockup {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}


.brand-subbrand-logo {
  width: min(236px, 52vw);
  max-height: 74px;
  display: block;
  object-fit: contain;
}


.brand-subbrand-lockup strong {
  color: #ffffff;
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.12;
  font-weight: 600;
  letter-spacing: 0;
}


.brand-page[data-brand-theme="light"] .brand-subbrand-lockup strong {
  color: #01030f;
}


.brand-cobrand-grid {
  margin-top: clamp(52px, 6vw, 78px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}


.brand-cobrand-card {
  min-height: 228px;
  margin-top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 34px);
  padding: 34px;
  color: #ffffff;
}


.brand-page[data-brand-theme="light"] .brand-cobrand-card {
  color: #01030f;
}


.brand-cobrand-card span {
  color: currentColor;
  opacity: 0.72;
  font-size: 28px;
  line-height: 1;
  font-weight: 300;
}


.brand-cobrand-logo {
  display: block;
  object-fit: contain;
  min-width: 0;
}


.brand-cobrand-logo--cavbot {
  width: min(210px, 42%);
  max-height: 70px;
}


.brand-cobrand-logo--mark {
  width: 54px;
  height: 54px;
}


.brand-partner-wordmark {
  width: min(210px, 42%);
  height: auto;
  display: block;
  color: currentColor;
  flex: 0 1 auto;
}


.brand-partner-wordmark--compact {
  width: min(180px, 46%);
}


.brand-donts-grid {
  margin-top: clamp(52px, 6vw, 78px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}


.brand-dont-card {
  min-width: 0;
}


.brand-dont-figure {
  min-height: clamp(220px, 25vw, 300px);
  margin-top: 0;
  display: grid;
  place-items: center;
  padding: 34px;
  overflow: hidden;
}


.brand-dont-figure--lime,
.brand-page[data-brand-theme="light"] .brand-dont-figure--lime {
  background: #b9c85a;
}


.brand-dont-figure img {
  width: min(320px, 72%);
  max-height: 132px;
  display: block;
  object-fit: contain;
}


.brand-dont-card h4 {
  margin: 18px 0 0;
  color: var(--text);
  font-size: clamp(14px, 1.4vw, 16px);
  line-height: 1.18;
  font-weight: 600;
  letter-spacing: 0;
}


.brand-dont-sentence {
  max-width: 360px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(17px, 1.6vw, 22px);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0;
  text-align: left;
}


.brand-page[data-brand-theme="light"] .brand-dont-sentence {
  color: #01030f;
}


.brand-dont-sentence img {
  width: min(178px, 56%);
  max-height: 52px;
  display: inline-block;
  vertical-align: -0.22em;
  margin-left: 8px;
  object-fit: contain;
}


.brand-type-card {
  min-height: 246px;
  padding: 34px;
  display: grid;
  align-content: space-between;
}


.brand-type-card span {
  color: var(--text);
  font-size: 32px;
  line-height: 1.12;
  font-weight: 760;
  letter-spacing: 0;
}


.brand-page[data-brand-theme="light"] .brand-type-card span,
.brand-page[data-brand-theme="light"] .brand-type-card strong {
  color: #01030f;
}


.brand-type-card strong {
  color: #ffffff;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.08;
  font-weight: 760;
  letter-spacing: 0;
}


.brand-type-card p {
  max-width: 320px;
  margin: 0;
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.45;
  font-weight: 500;
  letter-spacing: -0.02em;
}


.brand-color-usage-card {
  min-height: 132px;
  padding: 0;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  overflow: hidden;
}


.brand-color-usage-card span {
  min-height: 132px;
  padding: 22px;
  background: var(--usage-color);
  color: #ffffff;
  display: grid;
  align-items: end;
  font-size: 14px;
  line-height: 1;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}


.brand-color-usage-card span:last-child {
  color: #01030f;
}



/* ===========================
   SECTION NAV CARDS
   =========================== */


.brand-section-nav-cards {
  margin-top: clamp(88px, 10vw, 132px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
}


.brand-section-nav-card {
  position: relative;
  min-height: 166px;
  padding: 32px 34px;
  border-radius: 4px;
  background: color-mix(in srgb, var(--text) 7%, transparent);
  display: grid;
  align-content: space-between;
  color: var(--text);
  transition:
    background 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}


.brand-section-nav-card span {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}


.brand-section-nav-card strong {
  color: var(--text);
  font-size: clamp(24px, 2.5vw, 32px);
  line-height: 1.12;
  font-weight: 760;
  letter-spacing: 0;
}


.brand-section-nav-card svg {
  position: absolute;
  right: 32px;
  top: 32px;
  width: 24px;
  height: 24px;
}


.brand-section-nav-card:hover,
.brand-section-nav-card:focus-visible {
  background: color-mix(in srgb, var(--text) 10%, transparent);
  transform: translateY(-2px);
  outline: none;
}


/* ===========================
   NEXT LINK
   =========================== */


.brand-next-row {
  margin-top: clamp(74px, 8vw, 112px);
  display: flex;
  justify-content: flex-end;
}


.brand-next-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-size: 14px;
  line-height: 1;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    color 180ms ease,
    transform 180ms ease;
}


.brand-next-link svg {
  width: 24px;
  height: 24px;
}


.brand-next-link:hover,
.brand-next-link:focus-visible {
  color: var(--blue);
  transform: translateX(3px);
  outline: none;
}


/* ===========================
   REAL CAVBOT BADGE FOOTER SLOT
   =========================== */


.brand-floating-cdn-badge {
  position: fixed;
  right: max(16px, calc(env(safe-area-inset-right) + 12px));
  bottom: max(16px, calc(env(safe-area-inset-bottom) + 12px));
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  min-width: 0;
  min-height: 0;
  max-width: none;
  max-height: none;
  margin: 0;
  overflow: visible;
  contain: layout paint style;
  pointer-events: none;
}


.brand-floating-cdn-badge > * {
  position: static !important;
  inset: auto !important;
  right: auto !important;
  bottom: auto !important;
  left: auto !important;
  top: auto !important;
  visibility: visible !important;
  opacity: 1 !important;
}


.brand-mini-footer-badge-slot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}


.brand-mini-footer-badge-slot > * {
  position: static !important;
  inset: auto !important;
  right: auto !important;
  bottom: auto !important;
  left: auto !important;
  top: auto !important;
  z-index: auto !important;
  visibility: visible !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}


.brand-mini-footer-badge-slot [data-cavbot-badge-inline],
.brand-mini-footer-badge-slot [data-cavbot-badge],
.brand-mini-footer-badge-slot [data-cavbot-badge-root],
.brand-mini-footer-badge-slot .cavbot-badge,
.brand-mini-footer-badge-slot .cavbot-badge-inline,
.brand-mini-footer-badge-slot .cavbot-floating-badge,
.brand-mini-footer-badge-slot .cb-floating-badge,
.brand-mini-footer-badge-slot .cavai-badge,
.brand-mini-footer-badge-slot .cavai-floating-badge {
  position: static !important;
  right: auto !important;
  bottom: auto !important;
  transform: none !important;
}


/* ===========================
   MINI FOOTER
   =========================== */


.brand-mini-footer {
  width: calc(100% + (var(--brand-main-pad) * 2));
  min-height: 96px;
  margin-left: calc(var(--brand-main-pad) * -1);
  margin-right: calc(var(--brand-main-pad) * -1);
  padding: 0 var(--brand-main-pad);
  border-top: 1px solid var(--line);
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1;
  font-weight: 500;
  display: flex;
  align-items: center;
}


.brand-mini-footer-inner {
  width: min(960px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  text-align: right;
}


.brand-mini-footer-copy {
  display: inline-flex;
  align-items: center;
  color: var(--text-muted);
  white-space: nowrap;
}


/* ===========================
   RESPONSIVE
   =========================== */


@media (max-width: 980px) {
  
  .brand-shell,
  .brand-shell.is-collapsed {
    grid-template-columns: 1fr;
  }


  .brand-sidebar {
    position: relative;
    height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }


  .brand-sidebar-bottom {
    grid-template-columns: minmax(0, 1fr);
  }


  .brand-sidebar-collapse {
    display: none;
  }


  .brand-nav {
    grid-template-columns: 1fr;
  }


  .brand-main {
    --brand-main-pad: 24px;
    padding: 0 var(--brand-main-pad);
  }


  .brand-main-topbar {
    height: 76px;
  }


  .brand-download-link span:last-child {
    display: none;
  }


  .brand-hero-section {
    min-height: auto;
    padding-top: 82px;
  }


  .brand-home-section {
    width: 100%;
    padding-top: 54px;
  }


  .brand-home-hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 78px 0 42px;
  }


  .brand-home-mark {
    width: min(72vw, 420px);
    max-height: 420px;
    opacity: 0.98;
    transform: none;
  }


  .brand-home-hero-copy {
    justify-self: start;
  }


  .brand-home-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }


  .brand-hero-grid,
  .brand-palette-header,
  .brand-guidelines-hero,
  .brand-guide-copy-row,
  .brand-cobrand-grid,
  .brand-donts-grid {
    grid-template-columns: 1fr;
  }


  .brand-guidelines-hero-grid .brand-section-lede {
    padding-left: 0;
  }


  .brand-hero-title {
    font-size: clamp(38px, 10vw, 58px);
  }


  .brand-color-grid,
  .brand-color-grid--neutrals,
  .brand-imagery-grid,
  .brand-section-nav-cards {
    grid-template-columns: 1fr;
  }


  .brand-guidelines-actions {
    padding-top: 0;
  }


  .brand-cobrand-card {
    min-height: 190px;
  }


  .brand-color-usage-card {
    grid-template-columns: 1fr;
  }


  .brand-mini-footer-inner {
    justify-content: flex-start;
    width: 100%;
    text-align: left;
  }


  .brand-shell.is-collapsed .brand-mini-footer-inner {
    transform: none;
  }
}


@media (max-width: 640px) {
  .brand-main {
    --brand-main-pad: 18px;
    padding: 0 var(--brand-main-pad);
  }


  .brand-home-hero-copy h1,
  .brand-home-explore h2 {
    font-size: clamp(42px, 13vw, 62px);
    letter-spacing: -0.065em;
  }


  .brand-home-card-grid {
    grid-template-columns: 1fr;
  }


  .brand-home-card {
    min-height: 260px;
    padding: 24px;
  }


  .brand-breadcrumb {
    font-size: 12px;
  }


  .brand-hero-copy,
  .brand-section-lede {
    font-size: 20px;
  }


  .brand-logo-preview img {
    width: min(300px, 72%);
  }


  .brand-logo-tabs {
    gap: 18px;
  }


  .brand-copy-toast {
    top: 96px;
    right: 18px;
    left: 18px;
    min-width: 0;
  }


  .brand-cobrand-card {
    flex-wrap: wrap;
  }


  .brand-mini-footer-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }
}


@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }


  .brand-shell,
  .brand-sidebar-collapse-icon,
  .brand-nav-icon,
  .brand-nav-icon img,
  .brand-nav-title-link,
  .brand-nav-state,
  .brand-nav-sub a,
  .brand-logo-preview,
  .brand-logo-download,
  .brand-logo-tabs button,
  .brand-download-link,
  .brand-hero-copy a,
  .brand-sidebar-brand-link,
  .brand-sidebar-brand-link::after,
  .brand-next-link,
  .brand-copy-toast,
  .brand-color-card,
  .brand-color-card::before,
  .brand-color-card-copy,
  .brand-color-strip button::after,
  .brand-view-all-colors,
  .brand-view-all-colors img,
  .brand-imagery-card img,
  .brand-imagery-card::before,
  .brand-section-nav-card,
  .brand-guidelines-actions a,
  .brand-guidelines-actions img,
  .brand-guide-download-link {
    transition: none;
  }
}
/* ===========================
   TYPOGRAPHY SECTION
   =========================== */


.brand-next-row--after-donts {
  margin-top: clamp(74px, 8vw, 112px);
}


.brand-typography-block {
  padding-top: clamp(96px, 11vw, 148px);
}


.brand-typography-intro {
  max-width: 720px;
}


.brand-typography-intro p {
  max-width: 720px;
  margin: clamp(34px, 4.2vw, 56px) 0 0;
  color: var(--text-soft);
  font-size: clamp(24px, 2.4vw, 36px);
  line-height: 1.48;
  font-weight: 400;
  letter-spacing: -0.055em;
}


.brand-type-motion {
  --type-shift-top: 0px;
  --type-shift-middle: 0px;
  --type-shift-bottom: 0px;
  --type-weight-top: 760;
  --type-weight-middle: 320;
  --type-weight-bottom: 760;


  width: calc(100vw - var(--sidebar-width));
  min-height: clamp(620px, 72vw, 980px);
  margin-top: clamp(92px, 11vw, 148px);
  margin-left: calc((100vw - var(--sidebar-width) - 960px) / -2);
  padding: clamp(58px, 7vw, 92px) 0;
  background: #242424;
  color: #ffffff;
  overflow: hidden;
  display: grid;
  align-content: center;
  gap: clamp(40px, 5vw, 76px);
}


.brand-shell.is-collapsed .brand-type-motion {
  width: calc(100vw - var(--sidebar-collapsed-width));
  margin-left: calc((100vw - var(--sidebar-collapsed-width) - 960px) / -2);
}


.brand-page[data-brand-theme="light"] .brand-type-motion {
  background: #d9d9d9;
  color: #01030f;
}


.brand-type-motion-row {
  width: max-content;
  white-space: nowrap;
  color: currentColor;
  font-size: clamp(148px, 18vw, 310px);
  line-height: 0.78;
  letter-spacing: -0.095em;
  will-change: transform, font-weight;
  transition:
    font-weight 180ms ease,
    color 180ms ease;
  font-variation-settings: "wght" var(--type-weight-top);
}


.brand-type-motion-row--top {
  transform: translate3d(calc(-8vw + var(--type-shift-top)), 0, 0);
  font-weight: var(--type-weight-top);
  font-variation-settings: "wght" var(--type-weight-top);
}


.brand-type-motion-row--middle {
  transform: translate3d(calc(12vw + var(--type-shift-middle)), 0, 0);
  font-weight: var(--type-weight-middle);
  font-variation-settings: "wght" var(--type-weight-middle);
}


.brand-type-motion-row--bottom {
  transform: translate3d(calc(-18vw + var(--type-shift-bottom)), 0, 0);
  font-weight: var(--type-weight-bottom);
  font-variation-settings: "wght" var(--type-weight-bottom);
}


.brand-page[data-brand-theme="light"] .brand-type-detail-card {
  background: var(--asset-bg-light);
}


.brand-type-detail-card span {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}


.brand-type-detail-card strong {
  color: #ffffff;
  font-size: clamp(30px, 3.4vw, 44px);
  line-height: 1.08;
  font-weight: 760;
  letter-spacing: 0;
}


.brand-page[data-brand-theme="light"] .brand-type-detail-card strong {
  color: #01030f;
}


.brand-type-detail-card p {
  max-width: 360px;
  margin: 0;
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.45;
  font-weight: 500;
  letter-spacing: 0;
}


.brand-next-row--after-typography {
  margin-top: clamp(74px, 8vw, 112px);
}


@media (max-width: 980px) {
  .brand-type-motion,
  .brand-shell.is-collapsed .brand-type-motion {
    width: calc(100vw - (var(--brand-main-pad) * 2));
    margin-left: 0;
  }


  .brand-type-details {
    grid-template-columns: 1fr;
  }


  .brand-type-motion-row {
    font-size: clamp(110px, 25vw, 220px);
  }
}


@media (max-width: 640px) {
  .brand-typography-intro p {
    font-size: 18px;
  }


  .brand-type-motion {
    min-height: 520px;
  }


  .brand-type-motion-row {
    font-size: clamp(86px, 30vw, 168px);
  }
}
/* ===========================
   TYPOGRAPHY SECTION
   =========================== */


.brand-next-row--after-donts,
.brand-next-row--after-typography {
  margin-top: clamp(74px, 8vw, 112px);
}


.brand-typography-block {
  padding-top: clamp(96px, 11vw, 148px);
}


.brand-type-section-head {
  display: grid;
  grid-template-columns: minmax(0, 520px) auto;
  justify-content: space-between;
  align-items: start;
  gap: 34px;
}


.brand-type-section-head p {
  margin: 22px 0 0;
  color: var(--text-soft);
  font-size: clamp(16px, 1.25vw, 18px);
  line-height: 1.55;
  font-weight: 400;
  letter-spacing: 0;
}


.brand-type-heading {
  margin: 0;
  color: #01030f;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.08;
  font-weight: 760;
  letter-spacing: 0;
}


.brand-page[data-brand-theme="dark"] .brand-type-heading {
  color: #ffffff;
}


.brand-type-motion {
  --type-shift-top: 0px;
  --type-shift-middle: 0px;
  --type-shift-bottom: 0px;
  --type-weight-top: 760;
  --type-weight-middle: 320;
  --type-weight-bottom: 760;


  width: calc(100vw - var(--sidebar-width));
  min-height: clamp(1120px, 135vh, 1500px);
  margin-top: clamp(92px, 11vw, 148px);
  margin-left: calc((100vw - var(--sidebar-width) - 960px) / -2);
  padding: 0;
  background: #242424;
  color: #ffffff;
  overflow: hidden;
  position: relative;
  isolation: isolate;
}


.brand-shell.is-collapsed .brand-type-motion {
  width: calc(100vw - var(--sidebar-collapsed-width));
  margin-left: calc((100vw - var(--sidebar-collapsed-width) - 960px) / -2);
}


.brand-page[data-brand-theme="light"] .brand-type-motion {
  background: #d9d9d9;
  color: #01030f;
}


.brand-type-motion-row {
  position: absolute;
  left: 0;
  width: max-content;
  white-space: nowrap;
  color: currentColor;
  font-size: clamp(190px, 20.4vw, 360px);
  line-height: 0.78;
  letter-spacing: -0.095em;
  will-change: transform, font-weight;
  transition:
    font-weight 180ms ease,
    color 180ms ease;
}


.brand-type-motion-row--top {
  top: 0.12em;
  transform: translate3d(calc(42vw + var(--type-shift-top)), 0, 0);
  font-weight: var(--type-weight-top);
  font-variation-settings: "wght" var(--type-weight-top);
}


.brand-type-motion-row--middle {
  top: 38%;
  transform: translate3d(calc(-2vw + var(--type-shift-middle)), 0, 0);
  font-weight: var(--type-weight-middle);
  font-variation-settings: "wght" var(--type-weight-middle);
}


.brand-type-motion-row--bottom {
  bottom: 0.12em;
  transform: translate3d(calc(-32vw + var(--type-shift-bottom)), 0, 0);
  font-weight: var(--type-weight-bottom);
  font-variation-settings: "wght" var(--type-weight-bottom);
}


.brand-type-showcase {
  padding-top: clamp(72px, 8vw, 110px);
}


.brand-type-edit {
  margin-top: clamp(56px, 7vw, 86px);
  max-width: 900px;
  color: var(--text);
  outline: none;
  cursor: text;
}


.brand-type-edit--heading {
  font-size: clamp(64px, 8vw, 128px);
  line-height: 1.04;
  font-weight: 760;
  letter-spacing: -0.07em;
}


.brand-type-edit--paragraph {
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.35;
  font-weight: 400;
  letter-spacing: -0.04em;
}


.brand-type-note {
  margin: 30px 0 0;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  line-height: 1;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}


.brand-type-note-icon {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  display: block;
  color: currentColor;
}


.brand-type-stack {
  margin-top: clamp(58px, 7vw, 86px);
  display: grid;
  gap: clamp(46px, 6vw, 72px);
}


.brand-type-stack-copy {
  max-width: 520px;
}


.brand-type-stack-copy h4 {
  margin: 0;
  color: var(--text);
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1.14;
  font-weight: 760;
  letter-spacing: 0;
}


.brand-type-stack-copy p {
  margin: 16px 0 0;
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 400;
  letter-spacing: 0;
}


.brand-type-spec {
  display: grid;
  gap: 28px;
}


.brand-type-sample {
  color: var(--text);
  max-width: 920px;
  letter-spacing: 0;
}


.brand-type-spec--h0 .brand-type-sample {
  font-size: clamp(36px, 4.4vw, 56px);
  line-height: 1.12;
  font-weight: 760;
}


.brand-type-spec--h1 .brand-type-sample {
  max-width: 820px;
  font-size: clamp(38px, 4.8vw, 60px);
  line-height: 1.12;
  font-weight: 760;
}


.brand-type-spec--h2 .brand-type-sample {
  max-width: 760px;
  font-size: clamp(32px, 3.6vw, 44px);
  line-height: 1.14;
  font-weight: 760;
}


.brand-type-spec--h3 .brand-type-sample {
  font-size: clamp(26px, 2.8vw, 34px);
  line-height: 1.16;
  font-weight: 760;
}


.brand-type-spec--h4 .brand-type-sample {
  max-width: 620px;
  font-size: 22px;
  line-height: 1.3;
  font-weight: 760;
  letter-spacing: 0;
}


.brand-type-spec--h5 .brand-type-sample {
  max-width: 620px;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 760;
  letter-spacing: 0;
}


.brand-type-spec--h6 .brand-type-sample,
.brand-type-spec--eyebrow .brand-type-sample {
  font-size: 15px;
  line-height: 1.3;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}


.brand-type-spec--paragraph-xxl .brand-type-sample {
  max-width: 880px;
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.6;
  font-weight: 400;
  letter-spacing: 0;
}


.brand-type-spec--paragraph-xl .brand-type-sample {
  max-width: 780px;
  font-size: 20px;
  line-height: 1.6;
  font-weight: 400;
  letter-spacing: 0;
}


.brand-type-spec--paragraph-l .brand-type-sample {
  max-width: 700px;
  font-size: 17px;
  line-height: 1.6;
  font-weight: 400;
  letter-spacing: 0;
}


.brand-type-spec--paragraph .brand-type-sample {
  max-width: 680px;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  letter-spacing: 0;
}


.brand-type-spec--paragraph-s .brand-type-sample {
  max-width: 620px;
  font-size: 15px;
  line-height: 1.65;
  font-weight: 400;
  letter-spacing: -0.01em;
}


.brand-type-spec--caption .brand-type-sample {
  font-size: 10px;
  line-height: 1.3;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}


.brand-type-meta {
  display: flex;
  align-items: start;
  flex-wrap: wrap;
  gap: 18px 34px;
}


.brand-type-meta span {
  display: grid;
  gap: 8px;
}


.brand-type-meta em {
  color: var(--text-muted);
  font-style: normal;
  font-size: 12px;
  line-height: 1;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}


.brand-type-meta strong {
  color: var(--text);
  font-size: 16px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.02em;
}


.brand-type-pill {
  display: inline-grid !important;
  place-items: center;
  min-height: 34px;
  padding: 0 10px;
  border-radius: 4px;
  background: var(--blue);
  color: #01030f;
  font-size: 13px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}


.brand-page[data-brand-theme="light"] .brand-type-pill {
  background: var(--blue);
  color: #ffffff;
}


/* ===========================
   FOOTER FIX
   =========================== */


.brand-mini-footer {
  width: calc(100% + (var(--brand-main-pad) * 2));
  min-height: 58px;
  margin-left: calc(var(--brand-main-pad) * -1);
  margin-right: calc(var(--brand-main-pad) * -1);
  padding: 0 var(--brand-main-pad);
  border-top: 1px solid var(--line);
  background: var(--bg);
  color: var(--text-muted);
  font-size: 12px;
  line-height: 1;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}


.brand-mini-footer-inner {
  width: min(960px, calc(100vw - (var(--brand-main-pad) * 2)));
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  text-align: right;
}


.brand-mini-footer-copy {
  display: inline-flex;
  align-items: center;
  color: var(--text-muted);
  white-space: nowrap;
}


@media (max-width: 980px) {
  .brand-type-section-head {
    grid-template-columns: 1fr;
  }


  .brand-type-motion,
  .brand-shell.is-collapsed .brand-type-motion {
    width: calc(100vw - (var(--brand-main-pad) * 2));
    margin-left: 0;
  }


  .brand-type-motion-row {
    font-size: clamp(96px, 24vw, 200px);
  }


  .brand-type-meta {
    gap: 16px 24px;
  }


  .brand-mini-footer-inner {
    justify-content: flex-start;
    text-align: left;
  }
}


@media (max-width: 640px) {
  .brand-type-edit--heading {
    font-size: clamp(48px, 15vw, 76px);
  }


  .brand-type-edit--paragraph {
    font-size: 24px;
  }


  .brand-type-motion {
    min-height: 760px;
  }


  .brand-type-motion-row {
    font-size: clamp(78px, 28vw, 150px);
  }


  .brand-type-meta {
    display: grid;
    grid-template-columns: 1fr;
  }


  .brand-mini-footer-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
}
/* ===========================
   TYPE PILL COLOR OVERRIDES
   =========================== */


/* H1 / H2 / H3 boxes */
.brand-page .brand-type-spec--h0 .brand-type-pill,
.brand-page .brand-type-spec--h1 .brand-type-pill,
.brand-page .brand-type-spec--h2 .brand-type-pill,
.brand-page .brand-type-spec--h3 .brand-type-pill,
.brand-page .brand-type-spec--h4 .brand-type-pill,
.brand-page .brand-type-spec--h5 .brand-type-pill,
.brand-page .brand-type-spec--h6 .brand-type-pill {
  background: #8b5cff;
  color: var(--asset-text)
}


/* Paragraph XXL / XL boxes */
.brand-page .brand-type-spec--paragraph-xxl .brand-type-pill,
.brand-page .brand-type-spec--paragraph-xxl .brand-type-pill,
.brand-page .brand-type-spec--paragraph-xl .brand-type-pill,
.brand-page .brand-type-spec--paragraph-l .brand-type-pill,
.brand-page .brand-type-spec--paragraph-s .brand-type-pill,
.brand-page .brand-type-spec--paragraph--eyebrow .brand-type-pill,
.brand-page .brand-type-spec--paragraph .brand-type-pill {
  background: var(--blue);
  color: var(--asset-text)
}
/* Eyebrow + Caption pills */
.brand-page .brand-type-spec--eyebrow .brand-type-pill,
.brand-page .brand-type-spec--caption .brand-type-pill {
  background: var(--blue);
  color: #ffffff;
}


/* Eyebrow + Caption preview/example text */
.brand-page .brand-type-spec--eyebrow .brand-type-example,
.brand-page .brand-type-spec--caption .brand-type-example,
.brand-page .brand-type-spec--eyebrow .brand-type-preview,
.brand-page .brand-type-spec--caption .brand-type-preview,
.brand-page .brand-type-spec--eyebrow .brand-type-sample,
.brand-page .brand-type-spec--caption .brand-type-sample {
  color: #ffffff;
}
/* ===========================
   BRAND GUIDELINES COLOR PALETTE
   =========================== */


.brand-guidelines-palette-block {
  padding-top: clamp(96px, 11vw, 148px);
}


.brand-palette-guide-header {
  display: grid;
  grid-template-columns: minmax(0, 720px);
  gap: 34px;
}


.brand-palette-guide-header p,
.brand-palette-guide-copy p {
  max-width: 620px;
  margin: 18px 0 0;
  color: var(--text-soft);
  font-size: 17px;
  line-height: 1.55;
  font-weight: 400;
  letter-spacing: -0.025em;
}


.brand-palette-guide-group {
  margin-top: clamp(76px, 8vw, 112px);
}


.brand-palette-guide-copy {
  max-width: 640px;
}


.brand-palette-guide-copy h4 {
  margin: 0;
  color: var(--text);
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.12;
  font-weight: 760;
  letter-spacing: 0;
}


.brand-page[data-brand-theme="light"] .brand-palette-guide-copy h4 {
  color: #01030f;
}


.brand-palette-spectrum {
  margin-top: clamp(42px, 5vw, 70px);
  overflow: hidden;
  border-radius: 4px;
}


.brand-palette-main-swatch {
  width: 100%;
  min-height: clamp(218px, 26vw, 286px);
  border: 0;
  padding: 28px;
  background: var(--swatch);
  color: var(--swatch-text);
  display: grid;
  align-content: space-between;
  text-align: left;
  cursor: pointer;
  position: relative;
}


.brand-palette-main-swatch span,
.brand-palette-main-swatch strong,
.brand-palette-main-swatch em {
  display: block;
}


.brand-palette-main-swatch > span:first-child {
  font-size: 18px;
  line-height: 1.12;
  font-weight: 760;
  letter-spacing: 0;
}


.brand-palette-main-swatch strong {
  margin-top: auto;
  font-size: 18px;
  line-height: 1.12;
  font-weight: 760;
  letter-spacing: 0;
}


.brand-palette-main-swatch em {
  margin-top: 10px;
  color: currentColor;
  opacity: 0.72;
  font-style: normal;
  font-size: 13px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}


.brand-palette-copy-label {
  position: absolute;
  inset: 0;
  display: grid !important;
  place-items: center;
  color: currentColor;
  font-size: 12px;
  line-height: 1;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease;
}


.brand-palette-main-swatch:hover .brand-palette-copy-label,
.brand-palette-main-swatch:focus-visible .brand-palette-copy-label {
  opacity: 1;
}


.brand-palette-strip {
  height: 54px;
  display: grid;
  grid-template-columns: repeat(9, 1fr);
}


.brand-palette-strip button {
  border: 0;
  padding: 0;
  background: var(--swatch);
  cursor: pointer;
  position: relative;
}


.brand-palette-strip button::after {
  content: "Copy";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #ffffff;
  font-size: 12px;
  line-height: 1;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 160ms ease;
}


.brand-palette-strip button.is-light-swatch::after {
  color: #140c3d;
}


.brand-palette-strip button:hover::after,
.brand-palette-strip button:focus-visible::after {
  opacity: 1;
}


.brand-palette-card-grid {
  margin-top: clamp(42px, 5vw, 70px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}


.brand-palette-card {
  min-height: 214px;
  border: 0;
  border-radius: 4px;
  padding: 24px;
  background: var(--swatch);
  color: var(--swatch-text);
  display: grid;
  grid-template-rows: auto 1fr auto;
  text-align: left;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}


.brand-palette-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: currentColor;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}


.brand-palette-card:hover::before,
.brand-palette-card:focus-visible::before {
  opacity: 0.08;
}


.brand-palette-card span,
.brand-palette-card strong,
.brand-palette-card em {
  position: relative;
  z-index: 1;
}


.brand-palette-card > span:first-child {
  font-size: 22px;
  line-height: 1;
  font-weight: 760;
  letter-spacing: -0.035em;
}


.brand-palette-card strong {
  align-self: center;
  font-size: 24px;
  line-height: 1;
  font-weight: 760;
  letter-spacing: -0.05em;
}


.brand-palette-card em {
  align-self: end;
  color: currentColor;
  opacity: 0.68;
  font-style: normal;
  font-size: 13px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}


.brand-palette-card-action {
  position: absolute !important;
  right: 20px;
  bottom: 18px;
  z-index: 3 !important;
  width: 24px;
  height: 24px;
  display: grid !important;
  place-items: center;
  color: currentColor;
  opacity: 0;
  transform: translateY(4px) scale(0.92);
  transition:
    opacity 160ms ease,
    transform 180ms ease;
}


.brand-palette-card:hover .brand-palette-card-action,
.brand-palette-card:focus-visible .brand-palette-card-action,
.brand-palette-card.is-copied .brand-palette-card-action {
  opacity: 1;
  transform: translateY(-1px) scale(1.04);
}


.brand-palette-card-action svg {
  width: 22px;
  height: 22px;
  grid-area: 1 / 1;
  display: block;
}


.brand-palette-check-icon {
  opacity: 0;
  transform: scale(0.72);
  transition:
    opacity 140ms ease,
    transform 180ms cubic-bezier(0.16, 1, 0.3, 1);
}


.brand-palette-copy-icon {
  opacity: 1;
  transform: scale(1);
  transition:
    opacity 140ms ease,
    transform 180ms cubic-bezier(0.16, 1, 0.3, 1);
}


.brand-palette-card.is-copied .brand-palette-copy-icon {
  opacity: 0;
  transform: scale(0.72);
}


.brand-palette-card.is-copied .brand-palette-check-icon {
  opacity: 1;
  transform: scale(1);
}


.brand-palette-token-grid {
  margin-top: clamp(42px, 5vw, 70px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}


.brand-palette-token {
  min-height: 118px;
  border: 0;
  border-radius: 4px;
  padding: 20px;
  background:
    linear-gradient(90deg, var(--swatch), transparent 44%),
    color-mix(in srgb, var(--text) 6%, transparent);
  color: var(--text);
  display: grid;
  align-content: space-between;
  gap: 18px;
  text-align: left;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}


.brand-palette-token::after {
  content: "Copy";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--text);
  font-size: 12px;
  line-height: 1;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0;
  background: color-mix(in srgb, var(--bg) 76%, transparent);
  transition: opacity 160ms ease;
}


.brand-palette-token:hover::after,
.brand-palette-token:focus-visible::after {
  opacity: 1;
}


.brand-palette-token span {
  color: var(--text);
  font-size: 15px;
  line-height: 1;
  font-weight: 760;
  letter-spacing: -0.02em;
}


.brand-palette-token strong {
  color: var(--text-soft);
  font-family: "SFMono-Regular", Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 600;
  overflow-wrap: anywhere;
}


.brand-palette-token em {
  display: none;
}


.brand-next-row--after-palette {
  margin-top: clamp(74px, 8vw, 112px);
}


@media (max-width: 980px) {
  .brand-palette-card-grid,
  .brand-palette-token-grid {
    grid-template-columns: 1fr;
  }
}
/* ===========================
   COLOR USAGE — CAVBOT MOTION MOSAIC
   =========================== */


.brand-color-usage-showcase {
  padding-top: clamp(96px, 11vw, 148px);
}


.brand-color-usage-head {
  max-width: 720px;
}


.brand-color-usage-head p {
  max-width: 640px;
  margin: 18px 0 0;
  color: var(--text-soft);
  font-size: 17px;
  line-height: 1.55;
  font-weight: 400;
  letter-spacing: -0.025em;
}


.brand-usage-mosaic {
  --usage-top-x: -5vw;
  --usage-top-y: 0px;
  --usage-bottom-x: -12vw;
  --usage-bottom-y: 0px;


  width: calc(100vw - var(--sidebar-width));
  min-height: clamp(720px, 72vw, 940px);
  margin-top: clamp(70px, 8vw, 112px);
  margin-left: calc((100vw - var(--sidebar-width) - 960px) / -2);
  background: #050505;
  overflow: hidden;
  position: relative;
  isolation: isolate;
  display: grid;
  align-content: center;
  gap: 34px;
  padding: clamp(54px, 6vw, 84px) 0;
}


.brand-shell.is-collapsed .brand-usage-mosaic {
  width: calc(100vw - var(--sidebar-collapsed-width));
  margin-left: calc((100vw - var(--sidebar-collapsed-width) - 960px) / -2);
}


.brand-page[data-brand-theme="light"] .brand-usage-mosaic {
  background: #f7fbff;
}


.brand-usage-mosaic::before,
.brand-usage-mosaic::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 4;
}


.brand-usage-mosaic::before {
  display: none;
}


.brand-usage-mosaic-track {
  width: max-content;
  display: flex;
  gap: 28px;
  will-change: transform;
  position: relative;
  z-index: 2;
}


.brand-usage-mosaic-track--top {
  transform: translate3d(var(--usage-top-x), var(--usage-top-y), 0) rotate(-10deg);
}


.brand-usage-mosaic-track--bottom {
  transform: translate3d(var(--usage-bottom-x), var(--usage-bottom-y), 0) rotate(-10deg);
}


.brand-usage-card {
  width: clamp(320px, 31vw, 460px);
  aspect-ratio: 1.18 / 1;
  flex: 0 0 auto;
  position: relative;
  overflow: hidden;
  background: #111111;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: none;
}


.brand-page[data-brand-theme="light"] .brand-usage-card {
  border-color: rgba(1, 3, 15, 0.14);
  box-shadow: none;
}


.brand-usage-pattern {
  position: absolute;
  inset: 0;
  overflow: hidden;
}


.brand-usage-label {
  position: absolute;
  left: 36px;
  right: 36px;
  bottom: 34px;
  min-height: 118px;
  padding: 24px 28px 22px;
  background: #ffffff;
  color: #020616;
  display: grid;
  align-content: end;
  gap: 8px;
  transform: rotate(-1.5deg);
  z-index: 3;
}


.brand-usage-lockup {
  position: absolute;
  top: 18px;
  left: 22px;
  display: inline-flex;
  align-items: center;
  gap: 1px;
  color: #020616;
  font-size: 13px;
  line-height: 1;
  font-weight: 850;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}


.brand-usage-lockup img {
  width: 15px;
  height: 15px;
  display: block;
  object-fit: contain;
  flex: 0 0 auto;
}


.brand-usage-lockup span {
  display: inline-block;
  color: currentColor;
}


.brand-usage-label strong {
  max-width: 330px;
  color: #020616;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.08;
  font-weight: 820;
  letter-spacing: 0;
}


.brand-usage-label em {
  position: absolute;
  top: 18px;
  right: 18px;
  writing-mode: vertical-rl;
  color: rgba(1, 3, 15, 0.55);
  font-style: normal;
  font-size: 9px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}


/* Card color grounds */


.brand-usage-card--lime {
  background: #b9c85a;
}


.brand-usage-card--blue {
  background: #3158ff;
}


.brand-usage-card--violet {
  background: #8b5cff;
}


.brand-usage-card--orange {
  background: #ff6b3d;
}


.brand-usage-card--red {
  background: #ff4d4d;
}


.brand-usage-card--signal-orange {
  background: #ff9f43;
}


.brand-usage-card--signal-blue {
  background: #4ea8ff;
}


/* CavBot geometric patterns */


.brand-usage-pattern--radar {
  background:
    radial-gradient(circle at 50% 50%, transparent 0 18%, #050505 18.4% 27%, transparent 27.4% 36%, #050505 36.4% 45%, transparent 45.4% 54%, #050505 54.4% 63%, transparent 63.4%),
    conic-gradient(from 8deg, transparent 0 11%, #050505 11% 18%, transparent 18% 29%, #050505 29% 36%, transparent 36% 47%, #050505 47% 54%, transparent 54% 65%, #050505 65% 72%, transparent 72%);
}


.brand-usage-pattern--scan {
  background:
    linear-gradient(135deg, transparent 0 18%, #050505 18% 25%, transparent 25% 38%, #050505 38% 45%, transparent 45% 58%, #050505 58% 65%, transparent 65%),
    linear-gradient(45deg, transparent 0 28%, rgba(255, 255, 255, 0.92) 28% 34%, transparent 34% 100%);
}


.brand-usage-pattern--orbit {
  background:
    radial-gradient(circle at 28% 30%, #ffffff 0 10%, transparent 10.5%),
    radial-gradient(circle at 70% 74%, #ffffff 0 9%, transparent 9.5%),
    radial-gradient(circle at 54% 48%, transparent 0 24%, #050505 24.5% 34%, transparent 34.5% 44%, #050505 44.5% 54%, transparent 54.5%),
    conic-gradient(from 20deg, #050505 0 8%, transparent 8% 21%, #050505 21% 30%, transparent 30% 44%, #050505 44% 52%, transparent 52% 67%, #050505 67% 76%, transparent 76%);
}


.brand-usage-pattern--break {
  background:
    linear-gradient(135deg, transparent 0 20%, #050505 20% 31%, transparent 31% 42%, #050505 42% 54%, transparent 54%),
    linear-gradient(45deg, transparent 0 56%, #ffffff 56% 66%, transparent 66%),
    linear-gradient(-25deg, transparent 0 38%, #050505 38% 52%, transparent 52%);
}


.brand-usage-pattern--danger {
  background:
    linear-gradient(55deg, transparent 0 18%, #050505 18% 26%, transparent 26% 40%, #050505 40% 48%, transparent 48% 60%, #050505 60% 69%, transparent 69%),
    radial-gradient(circle at 74% 28%, #ffffff 0 8%, transparent 8.6%);
}


.brand-usage-pattern--grid-orange {
  background:
    linear-gradient(135deg, transparent 0 30%, #050505 30% 42%, transparent 42% 58%, #050505 58% 70%, transparent 70%),
    radial-gradient(circle at 72% 34%, #ffffff 0 9%, transparent 9.5%);
  background-size: 100% 100%, 100% 100%;
}





.brand-usage-pattern--blocks-blue {
  background:
    linear-gradient(135deg, #050505 0 18%, transparent 18% 31%, #050505 31% 42%, transparent 42% 56%, #050505 56% 68%, transparent 68%),
    radial-gradient(circle at 68% 56%, #ffffff 0 9%, transparent 9.5%),
    linear-gradient(45deg, transparent 0 46%, #050505 46% 58%, transparent 58%);
}


/* Light-mode edge cleanup */


.brand-page[data-brand-theme="light"] .brand-usage-mosaic::before {
  display: none;
}


@media (max-width: 980px) {
  .brand-usage-mosaic,
  .brand-shell.is-collapsed .brand-usage-mosaic {
    width: calc(100vw - (var(--brand-main-pad) * 2));
    margin-left: 0;
  }


  .brand-usage-card {
    width: clamp(280px, 72vw, 420px);
  }


  .brand-usage-label {
    left: 28px;
    right: 28px;
    bottom: 28px;
  }
}


@media (max-width: 640px) {
  .brand-usage-mosaic {
    min-height: 620px;
    gap: 24px;
  }


  .brand-usage-card {
    width: 300px;
  }


  .brand-usage-label {
    min-height: 104px;
    padding: 22px 22px 18px;
  }


  .brand-usage-label strong {
    font-size: 26px;
  }


  .brand-usage-lockup img {
    width: 14px;
    height: 14px;
  }
}

/* ===========================
   COLOR USAGE DON'TS
   =========================== */


.brand-color-donts-block {
  padding-top: clamp(96px, 11vw, 148px);
  padding-bottom: clamp(90px, 10vw, 132px);
}


.brand-color-donts-head {
  max-width: 720px;
}


.brand-color-donts-head p {
  max-width: 640px;
  margin: 18px 0 0;
  color: var(--text-soft);
  font-size: 17px;
  line-height: 1.55;
  font-weight: 400;
  letter-spacing: -0.025em;
}


.brand-color-donts-grid {
  margin-top: clamp(70px, 8vw, 112px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px 28px;
}


.brand-color-dont-card {
  min-width: 0;
}


.brand-color-dont-figure {
  height: clamp(230px, 25vw, 304px);
  border-radius: 4px;
  background: #171717;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
}


.brand-page[data-brand-theme="light"] .brand-color-dont-figure {
  background: #eef3fb;
}


.brand-color-dont-card h4 {
  margin: 18px 0 0;
  color: var(--text);
  font-size: clamp(15px, 1.45vw, 18px);
  line-height: 1.18;
  font-weight: 760;
  letter-spacing: -0.045em;
}


/* Card 1 — multiple colors */


.brand-color-dont-figure--mixed {
  background: #07122f;
}


.brand-color-dont-target {
  width: 92px;
  height: 92px;
  border-radius: 999px;
  position: relative;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle, transparent 0 20%, #1238a8 21% 31%, transparent 32% 45%, #f04c9b 46% 58%, transparent 59%);
}


.brand-color-dont-target::before {
  content: "";
  position: absolute;
  inset: -18px;
  border-radius: inherit;
  border: 5px solid rgba(255, 255, 255, 0.05);
}


.brand-color-dont-target::after {
  content: "";
  width: 22px;
  height: 22px;
  border-radius: inherit;
  border: 5px solid #ff7ab8;
  background: #07122f;
  z-index: 2;
}


.brand-color-dont-target span:nth-child(1) {
  position: absolute;
  inset: -34px;
  border-radius: inherit;
  border: 3px solid rgba(255, 255, 255, 0.04);
}


.brand-color-dont-target span:nth-child(2) {
  position: absolute;
  inset: 4px;
  border-radius: inherit;
  border: 4px solid rgba(240, 76, 155, 0.42);
}


.brand-color-dont-target span:nth-child(3) {
  position: absolute;
  inset: 26px;
  border-radius: inherit;
  border: 4px solid rgba(18, 56, 168, 0.42);
}


/* Card 2 — colored text */


.brand-color-dont-figure--text p {
  margin: 0;
  color: #f04c9b;
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.12;
  font-weight: 780;
  letter-spacing: 0;
}


/* Card 3 — split line */


.brand-color-dont-figure--line {
  display: block;
}


.brand-color-dont-line {
  position: absolute;
  left: 0;
  top: 50%;
  height: 3px;
  transform: translateY(-50%);
}


.brand-color-dont-line--muted {
  width: 50%;
  background: #1238a8;
}


.brand-color-dont-line--violet {
  left: 50%;
  width: 50%;
  background: #f04c9b;
}


.brand-page[data-brand-theme="light"] .brand-color-dont-line--muted {
  background: #1238a8;
}


/* Card 4 — gradient */


.brand-color-dont-figure--gradient {
  background: linear-gradient(90deg, #07122f 0%, #1238a8 45%, #f04c9b 100%);
}


.brand-page[data-brand-theme="light"] .brand-color-dont-figure--gradient {
  background: linear-gradient(90deg, #07122f 0%, #1238a8 45%, #f04c9b 100%);
}


/* Card 5 — floods */


.brand-color-dont-figure--floods {
  display: grid;
  grid-template-rows: 1fr 1fr;
  place-items: stretch;
}


.brand-color-dont-flood {
  display: block;
  width: 100%;
  height: 100%;
}


.brand-color-dont-flood--violet {
  background: #07122f;
}


.brand-color-dont-flood--orange {
  background: #f04c9b;
}


/* Card 6 — real logo mark */


.brand-color-dont-figure--symbol {
  background: #171717;
}


.brand-color-dont-logo {
  width: 300px;
  height: 300px;
  display: block;
  object-fit: contain;
}


.brand-page[data-brand-theme="light"] .brand-color-dont-figure--symbol {
  background: #eef3fb;
}


/* Bottom navigation seal */


.brand-guidelines-seal-nav {
  position: relative;
  margin-top: clamp(96px, 10vw, 142px);
  padding-top: clamp(68px, 7vw, 96px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}


.brand-guidelines-seal-nav::before {
  content: "";
  position: absolute;
  top: 0;
  left: calc((100vw - var(--sidebar-width) - 960px) / -2);
  width: calc(100vw - var(--sidebar-width));
  height: 1px;
  background: var(--line);
}


.brand-shell.is-collapsed .brand-guidelines-seal-nav::before {
  left: calc((100vw - var(--sidebar-collapsed-width) - 960px) / -2);
  width: calc(100vw - var(--sidebar-collapsed-width));
}


.brand-guidelines-seal-card {
  position: relative;
  min-height: 166px;
  padding: 32px 34px;
  border-radius: 4px;
  background: color-mix(in srgb, var(--text) 7%, transparent);
  color: var(--text);
  display: grid;
  align-content: space-between;
  overflow: hidden;
  transition:
    background 180ms ease,
    transform 180ms ease;
}


.brand-guidelines-seal-card span {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}


.brand-guidelines-seal-card strong {
  color: var(--text);
  font-size: clamp(24px, 2.5vw, 34px);
  line-height: 1.12;
  font-weight: 760;
  letter-spacing: 0;
}


.brand-guidelines-seal-card svg {
  position: absolute;
  right: 32px;
  top: 32px;
  width: 24px;
  height: 24px;
  color: var(--text);
}


.brand-guidelines-seal-card:hover,
.brand-guidelines-seal-card:focus-visible {
  background: color-mix(in srgb, var(--text) 10%, transparent);
  transform: translateY(-2px);
  outline: none;
}


@media (max-width: 980px) {
  .brand-color-donts-grid,
  .brand-guidelines-seal-nav {
    grid-template-columns: 1fr;
  }


  .brand-guidelines-seal-nav::before,
  .brand-shell.is-collapsed .brand-guidelines-seal-nav::before {
    left: calc(var(--brand-main-pad) * -1);
    width: calc(100% + (var(--brand-main-pad) * 2));
  }
}


@media (max-width: 640px) {
  .brand-color-dont-figure {
    height: 220px;
  }


  .brand-guidelines-seal-card {
    min-height: 148px;
    padding: 28px;
  }


  .brand-color-dont-logo {
    width: 96px;
    height: 96px;
  }
}

/* ===========================
   VOICE AND TONE CSS START
   =========================== */


.brand-voice-section {
  min-height: calc(100vh - 96px);
  padding: 0 0 clamp(72px, 8vw, 108px);
}


.brand-voice-hero {
  min-height: auto;
  display: grid;
  align-items: center;
  padding: clamp(64px, 7vw, 96px) 0 clamp(68px, 8vw, 104px);
}


.brand-voice-hero-copy {
  display: grid;
  gap: clamp(30px, 4vw, 46px);
}


.brand-voice-hero-grid {
  align-items: start;
}


.brand-voice-principle-strip {
  width: calc(100vw - var(--sidebar-width));
  margin-top: clamp(46px, 6vw, 72px);
  margin-left: calc((100vw - var(--sidebar-width) - 960px) / -2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}


.brand-shell.is-collapsed .brand-voice-principle-strip {
  width: calc(100vw - var(--sidebar-collapsed-width));
  margin-left: calc((100vw - var(--sidebar-collapsed-width) - 960px) / -2);
}


.brand-voice-principle-strip span {
  min-height: 78px;
  padding: 0 22px;
  color: var(--text);
  display: grid;
  place-items: center;
  border-right: 1px solid var(--line);
  font-size: 13px;
  line-height: 1;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}


.brand-voice-principle-strip span:last-child {
  border-right: 0;
}


.brand-voice-dimensions-block {
  padding-top: clamp(70px, 8vw, 106px);
}


.brand-voice-dimensions-head {
  max-width: 760px;
}


.brand-voice-dimensions-head p,
.brand-voice-note-copy p {
  max-width: 700px;
  margin: 18px 0 0;
  color: var(--text-soft);
  font-size: clamp(16px, 1.25vw, 18px);
  line-height: 1.55;
  font-weight: 400;
  letter-spacing: 0;
}


.brand-voice-dimension-stack {
  margin-top: clamp(48px, 6vw, 72px);
  display: grid;
  gap: clamp(58px, 7vw, 88px);
}


.brand-voice-dimension-card {
  min-width: 0;
  display: grid;
  gap: clamp(30px, 4vw, 46px);
}


.brand-voice-dimension-copy {
  max-width: 760px;
}


.brand-voice-dimension-copy h4 {
  margin: 0;
  color: var(--text);
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.12;
  font-weight: 760;
  letter-spacing: 0;
}


.brand-voice-dimension-copy p {
  max-width: 700px;
  margin: 16px 0 0;
  color: var(--text-soft);
  font-size: clamp(16px, 1.25vw, 18px);
  line-height: 1.55;
  font-weight: 400;
  letter-spacing: 0;
}


.brand-voice-brand-principle {
  color: var(--text-soft);
}


.brand-voice-brand-principle strong {
  color: var(--text);
  font-weight: 760;
}


.brand-voice-example-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}


.brand-voice-example-card {
  min-height: 220px;
  padding: 24px;
  border: 0;
  border-radius: 4px;
  background: color-mix(in srgb, var(--text) 2.5%, transparent);
  display: grid;
  align-content: start;
  gap: 22px;
}


.brand-voice-card-head {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--text);
}


.brand-voice-card-head svg {
  width: 22px;
  height: 22px;
  display: block;
  flex: 0 0 auto;
}


.brand-voice-card-head svg circle,
.brand-voice-card-head svg path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}


.brand-voice-card-head strong {
  color: var(--text);
  font-size: 15px;
  line-height: 1.1;
  font-weight: 760;
  letter-spacing: 0;
}


.brand-voice-example-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.52;
  font-weight: 400;
  letter-spacing: 0;
}


.brand-voice-example-card--do .brand-voice-card-head {
  color: #b9c85a;
}


.brand-voice-example-card--dont .brand-voice-card-head {
  color: #ff4d4d;
}


.brand-voice-example-card--use .brand-voice-card-head {
  color: #ff9f43;
}


.brand-voice-tone-note {
  position: relative;
  padding-top: clamp(64px, 7vw, 92px);
  padding-bottom: clamp(58px, 7vw, 86px);
}


.brand-voice-tone-note::after {
  content: "";
  position: absolute;
  left: calc((100vw - var(--sidebar-width) - 960px) / -2);
  bottom: 0;
  width: calc(100vw - var(--sidebar-width));
  height: 1px;
  background: var(--line);
}


.brand-shell.is-collapsed .brand-voice-tone-note::after {
  left: calc((100vw - var(--sidebar-collapsed-width) - 960px) / -2);
  width: calc(100vw - var(--sidebar-collapsed-width));
}


.brand-voice-note-copy {
  max-width: 760px;
}


.brand-voice-note-copy a {
  color: var(--blue);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
  transition: color 180ms ease;
}


.brand-voice-note-copy a:hover,
.brand-voice-note-copy a:focus-visible {
  color: var(--text);
  outline: none;
}


.brand-voice-boilerplate-block {
  padding-top: clamp(64px, 7vw, 92px);
}


.brand-voice-boilerplate-intro {
  max-width: 860px;
}


.brand-voice-boilerplate-intro p {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--text-soft);
  font-size: clamp(16px, 1.25vw, 18px);
  line-height: 1.55;
  font-weight: 400;
  letter-spacing: 0;
}


.brand-voice-boilerplate-stack {
  max-width: 920px;
  margin-top: clamp(40px, 5vw, 60px);
  display: grid;
  gap: clamp(42px, 5vw, 62px);
}


.brand-voice-boilerplate-entry {
  max-width: 880px;
  padding-bottom: clamp(32px, 4vw, 48px);
}


.brand-voice-boilerplate-entry:last-child {
  padding-bottom: 0;
}


.brand-voice-boilerplate-entry h4 {
  margin: 0 0 14px;
  color: var(--text);
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.15;
  font-weight: 760;
  letter-spacing: 0;
}


.brand-voice-boilerplate-entry p,
.brand-voice-boilerplate-entry div {
  color: var(--text-soft);
  font-size: clamp(16px, 1.25vw, 18px);
  line-height: 1.55;
  font-weight: 400;
  letter-spacing: 0;
}


.brand-voice-boilerplate-entry p {
  margin: 0;
}


.brand-voice-boilerplate-entry div {
  display: grid;
  gap: 20px;
}


.brand-voice-copy-button {
  margin-top: 24px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--text);
  display: inline-grid;
  grid-template-columns: 18px auto;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  line-height: 1;
  font-weight: 780;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    color 180ms ease,
    border-color 180ms ease;
}


.brand-voice-copy-icon,
.brand-voice-check-icon {
  width: 18px;
  height: 18px;
  display: block;
  flex: 0 0 auto;
  grid-area: 1 / 1;
}


.brand-voice-copy-button span {
  grid-area: 1 / 2;
}


.brand-voice-copy-icon {
  filter: var(--nav-icon-filter);
  transition:
    opacity 140ms ease,
    filter 180ms ease,
    transform 160ms ease;
}


.brand-voice-check-icon {
  color: var(--blue);
  opacity: 0;
  transform: scale(0.72);
  transition:
    opacity 140ms ease,
    transform 180ms cubic-bezier(0.16, 1, 0.3, 1);
}


.brand-voice-copy-button::before {
  content: "";
  width: 18px;
  height: 18px;
  display: none;
}


.brand-voice-copy-button:hover,
.brand-voice-copy-button:focus-visible,
.brand-voice-copy-button.is-copied {
  color: var(--blue);
  outline: none;
}


.brand-voice-copy-button:hover .brand-voice-copy-icon,
.brand-voice-copy-button:focus-visible .brand-voice-copy-icon {
  filter: var(--nav-icon-filter-active);
}


.brand-voice-copy-button.is-copied .brand-voice-copy-icon {
  opacity: 0;
  transform: scale(0.72);
}


.brand-voice-copy-button.is-copied .brand-voice-check-icon {
  opacity: 1;
  transform: scale(1);
}


.brand-voice-press-card {
  max-width: 920px;
  margin-top: clamp(48px, 6vw, 72px);
  padding: clamp(24px, 3vw, 36px);
  border: 0;
  border-radius: 4px;
  background: color-mix(in srgb, var(--text) 7%, transparent);
  color: var(--text);
  display: grid;
  gap: 22px;
  transition:
    background 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}


.brand-voice-press-card:hover,
.brand-voice-press-card:focus-visible {
  background: color-mix(in srgb, var(--text) 10%, transparent);
  transform: translateY(-2px);
  outline: none;
}


.brand-voice-press-icon {
  width: 38px;
  height: 38px;
  border: 2px solid var(--blue);
  border-radius: 999px;
  color: var(--text);
  display: inline-grid;
  place-items: center;
  font-size: 25px;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0;
}


.brand-voice-press-card h4 {
  margin: 0;
  color: var(--text);
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1.15;
  font-weight: 760;
  letter-spacing: 0;
}


.brand-voice-press-card p {
  max-width: 900px;
  margin: 14px 0 0;
  color: var(--text-soft);
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: 0;
}


.brand-voice-seal-nav {
  position: relative;
  margin-top: clamp(70px, 8vw, 104px);
  padding-top: clamp(48px, 6vw, 72px);
}


.brand-voice-seal-nav::before {
  content: "";
  position: absolute;
  top: 0;
  left: calc((100vw - var(--sidebar-width) - 960px) / -2);
  width: calc(100vw - var(--sidebar-width));
  height: 1px;
  background: var(--line);
}


.brand-shell.is-collapsed .brand-voice-seal-nav::before {
  left: calc((100vw - var(--sidebar-collapsed-width) - 960px) / -2);
  width: calc(100vw - var(--sidebar-collapsed-width));
}


.brand-page[data-brand-theme="light"] .brand-voice-example-card {
  background: color-mix(in srgb, var(--text) 3.5%, transparent);
}


@media (max-width: 980px) {
  .brand-voice-principle-strip {
    width: calc(100vw - (var(--brand-main-pad) * 2));
    margin-left: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }


  .brand-voice-principle-strip span:nth-child(2) {
    border-right: 0;
  }


  .brand-voice-principle-strip span:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }


  .brand-voice-example-grid {
    grid-template-columns: 1fr;
  }


  .brand-voice-example-card {
    min-height: 220px;
  }


  .brand-voice-seal-nav::before,
  .brand-voice-tone-note::after,
  .brand-shell.is-collapsed .brand-voice-seal-nav::before {
    left: calc(var(--brand-main-pad) * -1);
    width: calc(100% + (var(--brand-main-pad) * 2));
  }


  .brand-shell.is-collapsed .brand-voice-tone-note::after {
    left: calc(var(--brand-main-pad) * -1);
    width: calc(100% + (var(--brand-main-pad) * 2));
  }
}


@media (max-width: 640px) {
  .brand-voice-principle-strip {
    grid-template-columns: 1fr;
  }


  .brand-voice-principle-strip span {
    min-height: 64px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }


  .brand-voice-principle-strip span:last-child {
    border-bottom: 0;
  }


  .brand-voice-example-card {
    padding: 24px;
  }
}
/* ===========================
   VOICE AND TONE CSS END
   =========================== */
