:root {
  --pc-navy: #071f3c;
  --pc-navy-soft: #0b3156;
  --pc-blue: #086eb7;
  --pc-cyan: #08a7c5;
  --pc-ink: #071a34;
  --pc-muted: #5f7189;
  --pc-line: #d7e2ec;
  --pc-surface: #f2f7fb;
  --pc-white: #fff;
  --pc-shell: min(calc(100% - clamp(32px, 5vw, 128px)), max(1200px, 74vw));
}

.product-center-page,
.product-center-page * {
  box-sizing: border-box;
}

.product-center-page {
  overflow: clip;
  color: var(--pc-ink);
  background: var(--pc-white);
}

.shop-clone-body > .skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 16px;
  padding: 10px 16px;
  color: var(--pc-navy);
  background: var(--pc-white);
  font-weight: 700;
  transform: translateY(-150%);
}

.shop-clone-body > .skip-link:focus {
  transform: translateY(0);
}

.product-center-page img {
  display: block;
  max-width: 100%;
}

.pc-container {
  width: var(--pc-shell);
  margin-inline: auto;
}

.pc-eyebrow {
  margin: 0 0 14px;
  color: var(--pc-cyan);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .15em;
  line-height: 1.4;
  text-transform: uppercase;
}

.product-center-page h1,
.product-center-page h2,
.product-center-page h3,
.product-center-page p {
  margin-top: 0;
}

.product-center-page h1 {
  max-width: 920px;
  margin-bottom: 22px;
  color: var(--pc-ink);
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 850;
  letter-spacing: -.045em;
  line-height: 1.08;
}

.product-center-page h2 {
  margin-bottom: 0;
  color: var(--pc-ink);
  font-size: clamp(30px, 3.25vw, 44px);
  font-weight: 850;
  letter-spacing: -.035em;
  line-height: 1.16;
}

.product-center-page h3 {
  color: var(--pc-ink);
}

.product-center-page p {
  color: var(--pc-muted);
  font-size: 16px;
  line-height: 1.8;
}

.pc-hero {
  padding: clamp(70px, 8vw, 110px) 0 clamp(78px, 8vw, 112px);
  background: var(--pc-surface);
}

.pc-hero-copy {
  max-width: 930px;
  margin-bottom: clamp(42px, 5vw, 68px);
}

.pc-hero-copy > p:last-child {
  max-width: 820px;
  margin-bottom: 0;
  font-size: clamp(16px, 1.45vw, 19px);
}

.pc-brand-lanes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 4px solid var(--pc-cyan);
}

.pc-brand-lane {
  min-width: 0;
  padding: clamp(24px, 2.4vw, 34px);
  color: inherit;
  background: var(--pc-white);
  border: 1px solid var(--pc-line);
  border-top: 0;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.pc-brand-lane + .pc-brand-lane {
  border-left: 0;
}

.pc-brand-lane:hover,
.pc-brand-lane:focus-visible {
  z-index: 1;
  border-color: #83b9d6;
  box-shadow: 0 18px 42px rgba(7, 31, 60, .1);
  outline: 0;
  transform: translateY(-4px);
}

.pc-brand-index {
  color: #91a6b9;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
}

.pc-brand-lane h2 {
  margin: 16px 0 8px;
  font-size: clamp(24px, 2.2vw, 31px);
  letter-spacing: -.025em;
}

.pc-lane-media {
  display: grid;
  place-items: center;
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin: 22px 0 20px;
  overflow: hidden;
  background: #f7f9fb;
}

.pc-lane-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: clamp(10px, 1.1vw, 22px);
  object-fit: contain;
}

.pc-brand-lane p {
  min-height: 58px;
  margin-bottom: 18px;
  font-size: 14px;
  line-height: 1.7;
}

.pc-text-link {
  color: var(--pc-blue);
  font-size: 13px;
  font-weight: 800;
}

.pc-section {
  padding: clamp(78px, 8vw, 112px) 0;
}

.pc-section-surface {
  background: var(--pc-surface);
}

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

.pc-section-dark h2,
.pc-section-dark h3 {
  color: var(--pc-white);
}

.pc-section-dark p {
  color: #b7cada;
}

.pc-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 42px;
}

.pc-section-head > p {
  width: min(100%, 500px);
  margin-bottom: 2px;
}

.pc-path-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--pc-line);
}

.pc-path-step {
  min-width: 0;
  min-height: 228px;
  padding: clamp(24px, 2.4vw, 32px);
  border-right: 1px solid var(--pc-line);
}

.pc-path-step:last-child {
  border-right: 0;
}

.pc-path-step strong {
  color: var(--pc-cyan);
  font-size: 30px;
  font-weight: 500;
}

.pc-path-step h3 {
  margin: 38px 0 10px;
  font-size: 20px;
}

.pc-path-step p {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.7;
}

.pc-brand-chapter {
  padding: clamp(54px, 6vw, 82px) 0;
  border-bottom: 1px solid var(--pc-line);
}

.pc-brand-chapter:last-child {
  border-bottom: 0;
}

.pc-chapter-grid {
  display: grid;
  grid-template-columns: minmax(200px, 260px) minmax(300px, 1fr) minmax(270px, 360px);
  gap: clamp(28px, 4vw, 54px);
  align-items: center;
}

.pc-chapter-kicker {
  margin-bottom: 8px;
  color: var(--pc-cyan);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
}

.pc-chapter-name {
  margin-bottom: 12px;
  color: var(--pc-ink);
  font-size: clamp(30px, 3vw, 39px);
  font-weight: 850;
  letter-spacing: -.03em;
  line-height: 1.15;
}

.pc-chapter-lead p {
  margin-bottom: 22px;
  font-size: 14px;
  line-height: 1.7;
}

.pc-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  color: var(--pc-white);
  background: var(--pc-blue);
  border: 1px solid var(--pc-blue);
  font-size: 13px;
  font-weight: 800;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}

.pc-button:hover,
.pc-button:focus-visible {
  color: var(--pc-white);
  background: var(--pc-navy-soft);
  border-color: var(--pc-navy-soft);
  outline: 3px solid rgba(8, 167, 197, .24);
  outline-offset: 2px;
}

.pc-chapter-categories {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--pc-line);
}

.pc-chapter-categories a {
  display: flex;
  align-items: center;
  min-width: 0;
  min-height: 56px;
  padding: 12px 18px 12px 0;
  color: #29445f;
  border-bottom: 1px solid var(--pc-line);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.pc-chapter-categories a:nth-child(even) {
  padding-left: 18px;
}

.pc-chapter-categories a:hover,
.pc-chapter-categories a:focus-visible {
  color: var(--pc-blue);
  outline: 0;
}

.pc-chapter-visual {
  display: grid;
  place-items: center;
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #fff;
}

.pc-chapter-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: clamp(10px, 1.1vw, 22px);
  object-fit: contain;
}

.pc-series-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.pc-series-card {
  display: flex;
  min-width: 0;
  min-height: 445px;
  flex-direction: column;
  color: inherit;
  background: var(--pc-white);
  border: 1px solid var(--pc-line);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.pc-series-card:hover,
.pc-series-card:focus-visible {
  border-color: #83b9d6;
  box-shadow: 0 18px 42px rgba(7, 31, 60, .1);
  outline: 0;
  transform: translateY(-4px);
}

.pc-series-media {
  display: grid;
  place-items: center;
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #f4f7fa;
}

.pc-series-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: clamp(10px, 1.1vw, 22px);
  object-fit: contain;
}

.pc-series-copy {
  flex: 1;
  padding: 24px;
}

.pc-series-brand {
  color: var(--pc-blue);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  line-height: 1.5;
  text-transform: uppercase;
}

.pc-series-card h3 {
  margin: 10px 0 9px;
  font-size: 22px;
  line-height: 1.3;
}

.pc-series-facts {
  color: var(--pc-muted);
  font-size: 13px;
  line-height: 1.7;
}

.pc-series-link {
  padding: 18px 24px;
  color: var(--pc-blue);
  border-top: 1px solid var(--pc-line);
  font-size: 13px;
  font-weight: 800;
}

.pc-use-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pc-use-card {
  min-width: 0;
  min-height: 282px;
  padding: clamp(28px, 3vw, 38px);
  color: inherit;
  border: 1px solid rgba(255, 255, 255, .18);
  border-right: 0;
}

.pc-use-card:last-child {
  border-right: 1px solid rgba(255, 255, 255, .18);
}

.pc-use-number {
  color: var(--pc-cyan);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
}

.pc-use-card h3 {
  margin: 50px 0 12px;
  font-size: clamp(23px, 2.2vw, 28px);
}

.pc-use-card p {
  margin-bottom: 24px;
  font-size: 14px;
  line-height: 1.7;
}

.pc-section-dark .pc-text-link {
  color: #63dbea;
}

.pc-choice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--pc-line);
  border-left: 1px solid var(--pc-line);
}

.pc-choice {
  min-width: 0;
  padding: clamp(22px, 2.5vw, 30px);
  border-right: 1px solid var(--pc-line);
  border-bottom: 1px solid var(--pc-line);
}

.pc-choice b {
  display: block;
  margin-bottom: 8px;
  color: var(--pc-ink);
  font-size: 15px;
}

.pc-choice span {
  color: var(--pc-muted);
  font-size: 13px;
  line-height: 1.65;
}

.pc-cta {
  padding: clamp(66px, 7vw, 90px) 0;
  color: var(--pc-white);
  background: #0a3c63;
}

.pc-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.pc-cta h2 {
  margin-bottom: 14px;
  color: var(--pc-white);
}

.pc-cta p {
  max-width: 680px;
  margin-bottom: 0;
  color: #bfd0df;
}

.pc-cta .pc-button {
  flex: 0 0 auto;
  background: var(--pc-cyan);
  border-color: var(--pc-cyan);
}

.shop-brand-logo {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.shop-brand-copy strong {
  font-size: 16px;
  letter-spacing: .07em;
  white-space: nowrap;
}

.shop-navigation a {
  padding-inline: 15px;
  font-size: 12px;
  white-space: nowrap;
}

.shop-navigation a::after {
  left: 15px;
  right: 15px;
}

.shop-navigation .pc-mobile-language {
  display: none;
}

@media (max-width: 1080px) {
  :root {
    --pc-shell: min(100% - 40px, 920px);
  }

  .pc-brand-lanes,
  .pc-series-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pc-brand-lane:last-child {
    grid-column: 1 / -1;
    border-left: 1px solid var(--pc-line);
  }

  .pc-brand-lane:nth-child(2) {
    border-left: 0;
  }

  .pc-chapter-grid {
    grid-template-columns: minmax(200px, .8fr) minmax(300px, 1.2fr);
  }

  .pc-chapter-visual {
    grid-column: 1 / -1;
    max-width: 430px;
    justify-self: end;
  }
}

@media (max-width: 1180px) {
  .shop-header-inner {
    width: calc(100% - 28px);
    height: 70px;
    grid-template-columns: 1fr auto;
  }

  .shop-menu-toggle {
    display: inline-grid;
    grid-column: 2;
    grid-row: 1;
  }

  .shop-header-tools {
    display: none;
  }

  .shop-navigation {
    position: absolute;
    inset: 70px 0 auto;
    display: none;
    height: auto;
    padding: 8px 20px 18px;
    background: #fff;
    border-top: 1px solid var(--pc-line);
    box-shadow: 0 14px 24px rgba(15, 35, 65, .12);
  }

  .shop-navigation.open {
    display: grid;
  }

  .shop-navigation a,
  .shop-navigation .pc-mobile-language {
    min-height: 43px;
    justify-content: flex-start;
    padding: 0;
    border-bottom: 1px solid var(--pc-line);
    white-space: normal;
  }

  .shop-navigation a::after {
    display: none;
  }

  .shop-navigation .pc-mobile-language {
    display: flex;
  }
}

@media (max-width: 820px) {
  :root {
    --pc-shell: calc(100% - 32px);
  }

  .shop-brand-logo {
    width: 38px;
    height: 38px;
  }

  .pc-hero {
    padding-block: 58px 66px;
  }

  .pc-brand-lanes,
  .pc-series-grid,
  .pc-use-grid,
  .pc-choice-grid,
  .pc-chapter-grid {
    grid-template-columns: 1fr;
  }

  .pc-brand-lane,
  .pc-brand-lane + .pc-brand-lane,
  .pc-brand-lane:last-child {
    grid-column: auto;
    border-left: 1px solid var(--pc-line);
  }

  .pc-brand-lane + .pc-brand-lane {
    border-top: 0;
  }

  .pc-lane-media {
    aspect-ratio: 4 / 3;
  }

  .pc-section-head,
  .pc-cta-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .pc-section-head > p {
    margin-bottom: 0;
  }

  .pc-path-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pc-path-step {
    min-height: 210px;
    border-bottom: 1px solid var(--pc-line);
  }

  .pc-path-step:nth-child(2) {
    border-right: 0;
  }

  .pc-path-step:nth-child(3),
  .pc-path-step:nth-child(4) {
    border-bottom: 0;
  }

  .pc-chapter-visual {
    grid-column: auto;
    width: min(100%, 430px);
    justify-self: stretch;
  }

  .pc-use-card,
  .pc-use-card:last-child {
    min-height: 235px;
    border-right: 1px solid rgba(255, 255, 255, .18);
    border-bottom: 0;
  }

  .pc-use-card:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, .18);
  }

  .pc-use-card h3 {
    margin-top: 32px;
  }
}

@media (max-width: 520px) {
  :root {
    --pc-shell: calc(100% - 24px);
  }

  .product-center-page h1 {
    font-size: clamp(36px, 11vw, 48px);
  }

  .pc-path-steps,
  .pc-chapter-categories {
    grid-template-columns: 1fr;
  }

  .pc-path-step,
  .pc-path-step:nth-child(2),
  .pc-path-step:nth-child(3) {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--pc-line);
  }

  .pc-path-step:last-child {
    border-bottom: 0;
  }

  .pc-path-step h3 {
    margin-top: 24px;
  }

  .pc-chapter-categories a,
  .pc-chapter-categories a:nth-child(even) {
    padding-inline: 0;
  }

  .pc-series-card {
    min-height: 0;
  }

  .pc-choice-grid {
    border-left: 0;
  }

  .pc-choice {
    border-left: 1px solid var(--pc-line);
  }
}

@media (prefers-reduced-motion: reduce) {
  .pc-brand-lane,
  .pc-series-card,
  .pc-button {
    transition: none;
  }
}
