/* Brand System v1: foundation tokens and reusable component bases. */
body.pc-brand-system-v1 {
  --pc-navy: var(--reference-navy, #07111a);
  --pc-teal: var(--reference-teal, #0c7a8a);
  --pc-cyan: var(--reference-cyan, #16d4df);
  --pc-gold: var(--reference-gold, #c9a227);
  --pc-gold-text: var(--reference-gold-text, #e4bf55);
  --pc-bg: var(--reference-bg, #fff);
  --pc-bg-soft: #f5f8fa;
  --pc-text: var(--reference-text, #1e1e1e);
  --pc-text-muted: var(--reference-muted, #596675);
  --pc-border: var(--reference-line, #d9e0e6);
  --pc-white: #fff;
  --pc-radius-sm: 8px;
  --pc-radius-md: 16px;
  --pc-radius-lg: var(--reference-radius, 28px);
  --pc-shadow-soft: var(--reference-shadow, 0 28px 75px rgba(7, 17, 26, .19));
  --pc-space-section: 104px;
  --pc-container: var(--reference-container, 1296px);
}

body.pc-brand-system-v1 .pc-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 56px;
  padding: 16px 18px;
  color: var(--pc-white);
  border: 2px solid transparent;
  border-radius: 999px;
  font-family: "Manrope", sans-serif;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background-color .2s ease;
}

body.pc-brand-system-v1 .pc-button--primary {
  background:
    linear-gradient(var(--pc-navy), var(--pc-navy)) padding-box,
    linear-gradient(100deg, var(--pc-cyan) 0%, var(--reference-teal-button, #8fd8b2) 45%, var(--reference-gold-button, #f3c13a) 100%) border-box;
  box-shadow: 0 12px 28px rgba(22, 212, 223, .18), 0 12px 32px rgba(243, 193, 58, .18);
}

body.pc-brand-system-v1 .pc-button--secondary {
  color: var(--pc-white);
  background: rgba(255, 255, 255, .035);
  border-color: rgba(255, 255, 255, .22);
  box-shadow: none;
}

body.pc-brand-system-v1 .pc-button--dark {
  color: var(--pc-navy);
  background: var(--pc-white);
  border-color: rgba(7, 17, 26, .18);
  box-shadow: 0 10px 24px rgba(7, 17, 26, .1);
}

body.pc-brand-system-v1 .pc-button--small {
  min-height: 46px;
  padding: 12px 16px;
  font-size: 14px;
}

body.pc-brand-system-v1 .pc-button--full {
  width: 100%;
}

body.pc-brand-system-v1 .pc-button:hover {
  color: var(--pc-white);
  transform: translateY(-1px);
}

body.pc-brand-system-v1 .pc-button--primary:hover {
  box-shadow: 0 14px 32px rgba(22, 212, 223, .22), 0 14px 36px rgba(243, 193, 58, .2);
}

body.pc-brand-system-v1 .pc-button--secondary:hover {
  border-color: rgba(255, 255, 255, .42);
  box-shadow: 0 12px 26px rgba(7, 17, 26, .16);
}

body.pc-brand-system-v1 .pc-button--dark:hover {
  color: var(--pc-navy);
  border-color: rgba(7, 17, 26, .32);
}

body.pc-brand-system-v1 .pc-button:focus-visible,
body.pc-brand-system-v1 .pc-faq-item > summary:focus-visible {
  outline: 3px solid var(--pc-cyan);
  outline-offset: 3px;
}

body.pc-brand-system-v1 .pc-button:active {
  transform: translateY(0);
}

body.pc-brand-system-v1 .pc-button:disabled,
body.pc-brand-system-v1 .pc-button[aria-disabled="true"] {
  color: var(--pc-white);
  opacity: 1;
  cursor: not-allowed;
  box-shadow: 0 7px 18px rgba(7, 17, 26, .16);
}

body.pc-brand-system-v1 .pc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  margin: 0 0 18px;
  color: var(--pc-teal);
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

body.pc-brand-system-v1 .pc-eyebrow::before {
  width: 34px;
  height: 1px;
  background: var(--pc-gold);
  content: "";
}

body.pc-brand-system-v1 .pc-container {
  width: min(var(--pc-container), calc(100% - 144px));
  margin-right: auto;
  margin-left: auto;
}

body.pc-brand-system-v1 .pc-section {
  position: relative;
}

body.pc-brand-system-v1 .pc-section--light {
  background: var(--pc-bg);
}

body.pc-brand-system-v1 .pc-section--dark {
  color: var(--pc-white);
  background: var(--pc-navy);
}

body.pc-brand-system-v1 .pc-media-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 52px;
  align-items: center;
  min-width: 0;
}

body.pc-brand-system-v1 .pc-media-split--image-left > :first-child {
  grid-column: 1;
  grid-row: 1;
}

body.pc-brand-system-v1 .pc-media-split--image-left > :last-child {
  grid-column: 2;
}

body.pc-brand-system-v1 .pc-cta-panel {
  display: grid;
  gap: 28px;
  min-width: 0;
}

body.pc-brand-system-v1 .pc-cta-panel > * {
  min-width: 0;
}

body.pc-brand-system-v1 .pc-cta-panel--inline {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}

body.pc-brand-system-v1 .pc-faq-item > summary {
  cursor: pointer;
}

body.pc-brand-system-v1 .pc-table {
  width: 100%;
  border-collapse: collapse;
  font-family: "Manrope", sans-serif;
}

@media (max-width: 1120px) {
  body.pc-brand-system-v1 .pc-container {
    width: min(var(--pc-container), calc(100% - 56px));
  }
}

@media (max-width: 767px) {
  body.pc-brand-system-v1 {
    --pc-space-section: 58px;
  }

  body.pc-brand-system-v1 .pc-container {
    width: calc(100% - 28px);
  }

  body.pc-brand-system-v1 .pc-button {
    width: 100%;
    min-width: 0;
    white-space: normal;
  }

  body.pc-brand-system-v1 .pc-media-split,
  body.pc-brand-system-v1 .pc-cta-panel--inline {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  body.pc-brand-system-v1 .pc-media-split--image-left > :first-child,
  body.pc-brand-system-v1 .pc-media-split--image-left > :last-child {
    grid-column: auto;
    grid-row: auto;
  }
}
