:root {
  --sr-navy: #01133b;
  --sr-navy-2: #06245d;
  --sr-blue: #015adc;
  --sr-blue-hover: #0145b3;
  --sr-blue-soft: #eaf2ff;
  --sr-ink: #071638;
  --sr-slate: #4c5370;
  --sr-muted: #6c738c;
  --sr-mist: #f6f8fb;
  --sr-border: #dce3ef;
  --sr-white: #fff;
  --sr-success: #176b45;
  --sr-error: #ac2333;
  --sr-radius-sm: 6px;
  --sr-radius: 10px;
  --sr-radius-lg: 18px;
  --sr-shadow: 0 18px 50px rgba(1, 19, 59, 0.08);
  --sr-shadow-hover: 0 24px 60px rgba(1, 19, 59, 0.14);
  --sr-container: min(1200px, calc(100vw - 48px));
  --sr-font: "Avenir Next", Avenir, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--sr-white);
  color: var(--sr-ink);
  font-family: var(--sr-font);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body.admin-bar .sr-site-header {
  top: 32px;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: var(--sr-blue);
  text-underline-offset: 3px;
}

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(1, 90, 220, 0.35);
  outline-offset: 3px;
}

[hidden] {
  display: none !important;
}

.screen-reader-text,
.sr-skip-link {
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

.sr-skip-link:focus {
  clip: auto !important;
  clip-path: none;
  height: auto;
  left: 16px;
  padding: 12px 18px;
  top: 16px;
  width: auto;
  z-index: 10000;
  background: var(--sr-navy);
  color: var(--sr-white);
  border-radius: var(--sr-radius-sm);
}

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

.sr-site-main {
  min-height: 55vh;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 0.65em;
  color: var(--sr-navy);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.08;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.75rem, 6vw, 5.35rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.45rem);
}

h3 {
  font-size: clamp(1.15rem, 2vw, 1.4rem);
}

p {
  margin: 0 0 1.2em;
  text-wrap: pretty;
}

.sr-button,
.woocommerce a.button,
.woocommerce button.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: var(--sr-radius-sm);
  cursor: pointer;
  font-size: 0.91rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.sr-button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover {
  transform: translateY(-1px);
}

.sr-button:active,
.woocommerce a.button:active,
.woocommerce button.button:active {
  transform: scale(0.96);
}

.sr-button--primary,
.woocommerce a.button,
.woocommerce button.button {
  background: var(--sr-blue);
  box-shadow: 0 8px 24px rgba(1, 90, 220, 0.2);
  color: var(--sr-white);
}

.sr-button--primary:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover {
  background: var(--sr-blue-hover);
  box-shadow: 0 10px 28px rgba(1, 69, 179, 0.26);
  color: var(--sr-white);
}

.sr-button--secondary {
  border-color: var(--sr-border);
  background: var(--sr-white);
  color: var(--sr-navy);
}

.sr-button--secondary:hover {
  border-color: #b9c7dc;
  background: var(--sr-mist);
  color: var(--sr-navy);
}

.sr-button--light {
  border-color: var(--sr-white);
  background: var(--sr-white);
  color: var(--sr-navy);
}

.sr-button--light:hover {
  background: var(--sr-blue-soft);
  color: var(--sr-navy);
}

.sr-button--wide {
  width: 100%;
}

.sr-text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  color: var(--sr-blue);
  font-size: 0.9rem;
  font-weight: 750;
  text-decoration: none;
}

.sr-text-link span {
  transition: transform 180ms ease;
}

.sr-text-link:hover span {
  transform: translateX(3px);
}

.sr-text-link--large {
  font-size: 1rem;
  white-space: nowrap;
}

/* Header */
.sr-assurance {
  background: var(--sr-navy);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.76rem;
  font-weight: 650;
  letter-spacing: 0;
}

.sr-assurance__inner {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  gap: 38px;
}

.sr-assurance__inner span + span::before {
  margin-right: 38px;
  color: #4c6b9f;
  content: "•";
}

.sr-site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(220, 227, 239, 0.9);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 8px 30px rgba(1, 19, 59, 0.035);
  backdrop-filter: blur(16px);
}

.sr-header__inner {
  display: grid;
  min-height: 82px;
  align-items: center;
  grid-template-columns: 210px 1fr auto;
  gap: 28px;
}

.sr-brand {
  display: block;
  width: 190px;
}

.sr-brand img {
  width: 190px;
  height: auto;
}

.sr-primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2.2vw, 31px);
}

.sr-primary-nav a {
  position: relative;
  color: var(--sr-navy);
  font-size: 0.86rem;
  font-weight: 650;
  text-decoration: none;
}

.sr-primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 2px;
  background: var(--sr-blue);
  content: "";
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.sr-primary-nav a:hover::after,
.sr-primary-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.sr-header__cta {
  min-height: 44px;
  padding: 10px 17px;
  font-size: 0.82rem;
}

.sr-header__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.sr-header-account {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 9px;
  padding: 5px 3px;
  color: var(--sr-navy);
  line-height: 1.15;
  text-decoration: none;
}

.sr-header-account svg {
  flex: 0 0 auto;
  color: var(--sr-blue);
}

.sr-header-account span {
  display: grid;
  gap: 3px;
}

.sr-header-account strong,
.sr-header-account small {
  white-space: nowrap;
}

.sr-header-account strong {
  font-size: 0.78rem;
}

.sr-header-account small {
  color: var(--sr-muted);
  font-size: 0.75rem;
  font-weight: 600;
}

.sr-primary-nav__member {
  display: none;
}

.sr-nav-toggle {
  display: none;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid var(--sr-border);
  border-radius: var(--sr-radius-sm);
  background: var(--sr-white);
  color: var(--sr-navy);
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 700;
}

/* Homepage */
.sr-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--sr-border);
  background:
    linear-gradient(90deg, rgba(1, 90, 220, 0.028) 1px, transparent 1px),
    linear-gradient(rgba(1, 90, 220, 0.028) 1px, transparent 1px),
    linear-gradient(135deg, #fff 0%, #fbfdff 58%, #f1f6ff 100%);
  background-size: 64px 64px, 64px 64px, auto;
}

.sr-hero::after {
  position: absolute;
  width: 420px;
  height: 420px;
  top: -260px;
  right: -140px;
  border: 1px solid rgba(1, 90, 220, 0.15);
  border-radius: 50%;
  content: "";
}

.sr-hero__grid {
  display: grid;
  min-height: 610px;
  align-items: center;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  gap: clamp(52px, 7vw, 100px);
  padding-block: 72px;
}

.sr-hero__content {
  position: relative;
  z-index: 2;
}

.sr-hero__content h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 4.8vw, 4rem);
}

.sr-hero__lede {
  max-width: 650px;
  margin-bottom: 34px;
  color: var(--sr-slate);
  font-size: clamp(1.08rem, 1.5vw, 1.24rem);
  line-height: 1.7;
}

.sr-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 34px;
}

.sr-hero__checks {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin: 0;
  padding: 0;
  color: var(--sr-slate);
  font-size: 0.8rem;
  font-weight: 650;
  list-style: none;
}

.sr-hero__checks li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.sr-hero__checks li::before {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: var(--sr-blue-soft);
  color: var(--sr-blue);
  content: "✓";
  font-size: 0.68rem;
  line-height: 17px;
  text-align: center;
}

.sr-hero__visual {
  display: flex;
  min-height: 460px;
  align-items: center;
}

.sr-hero-showcase {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid rgba(84, 119, 170, 0.3);
  border-radius: var(--sr-radius-lg);
  background: #eef4fc;
  box-shadow: 0 24px 64px rgba(1, 19, 59, 0.14);
  isolation: isolate;
}

.sr-hero-showcase::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.6);
  content: "";
  pointer-events: none;
}

.sr-hero-showcase img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sr-hero-products {
  width: 100%;
  padding: 28px;
  border: 1px solid #cfdaea;
  border-radius: var(--sr-radius-lg);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 48px rgba(1, 19, 59, 0.1);
}

.sr-hero-products__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--sr-border);
}

.sr-hero-products__header strong {
  color: var(--sr-navy);
  font-size: 0.92rem;
}

.sr-hero-products__header span {
  color: var(--sr-muted);
  font-size: 0.75rem;
}

.sr-hero-products__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding-block: 20px;
}

.sr-hero-products__grid a {
  display: grid;
  gap: 8px;
  color: var(--sr-navy);
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
  text-decoration: none;
}

.sr-hero-products__grid img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--sr-radius-sm);
  background: #f8fafd;
  box-shadow: 0 0 0 1px rgba(1, 19, 59, 0.1);
  object-fit: contain;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.sr-hero-products__grid a:hover img {
  box-shadow: 0 0 0 1px #9fb7d9, 0 8px 22px rgba(1, 19, 59, 0.09);
  transform: translateY(-2px);
}

.sr-hero-products__link {
  color: var(--sr-blue);
  font-size: 0.8rem;
  font-weight: 750;
  text-decoration: none;
}

.sr-hero-products__standards {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 14px 0 20px;
  list-style: none;
}

.sr-hero-products__standards li {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--sr-border);
}

.sr-hero-products__standards li:last-child {
  border-bottom: 0;
}

.sr-hero-products__standards strong {
  color: var(--sr-blue);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.sr-hero-products__standards span {
  color: var(--sr-slate);
  font-size: 0.9rem;
  line-height: 1.55;
}

.sr-section {
  padding-block: clamp(76px, 9vw, 120px);
}

.sr-section--tight {
  padding-block: clamp(56px, 7vw, 88px);
}

.sr-section--catalog,
.sr-section--catalog-list {
  background: var(--sr-mist);
}

.sr-section--navy {
  position: relative;
  overflow: hidden;
  background: var(--sr-navy);
  color: rgba(255, 255, 255, 0.76);
}

.sr-section--navy::after {
  position: absolute;
  width: 500px;
  height: 500px;
  top: -260px;
  left: -220px;
  border: 1px solid rgba(126, 176, 255, 0.16);
  border-radius: 50%;
  content: "";
}

.sr-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 44px;
}

.sr-section-heading > div {
  max-width: 760px;
}

.sr-section-heading h2 {
  margin-bottom: 16px;
}

.sr-section-heading p:last-child {
  max-width: 680px;
  margin: 0;
  color: var(--sr-slate);
}

.sr-standard-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(60px, 9vw, 130px);
}

.sr-standard-grid__intro h2,
.sr-standard-list h3 {
  color: var(--sr-white);
}

.sr-standard-grid__intro p {
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.67);
}

.sr-standard-list {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.sr-standard-list article {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.sr-standard-list article > span {
  color: #85b9ff;
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.1em;
}

.sr-standard-list h3 {
  margin-bottom: 8px;
}

.sr-standard-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.94rem;
}

.sr-category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.sr-category-card {
  min-height: 330px;
  padding: 34px;
  border: 1px solid var(--sr-border);
  border-radius: var(--sr-radius);
  background: var(--sr-white);
  box-shadow: 0 10px 35px rgba(1, 19, 59, 0.045);
}

.sr-category-card--primary {
  background: linear-gradient(145deg, #f3f8ff, #fff 74%);
}

.sr-category-card h2 {
  font-size: 1.8rem;
}

.sr-category-card__label,
.sr-product-category-label {
  margin: 0 0 12px;
  color: var(--sr-blue);
  font-size: 0.82rem;
  font-weight: 700;
}

.sr-category-card > p:not(.sr-category-card__label) {
  min-height: 116px;
  color: var(--sr-slate);
}

.sr-contact-banner,
.sr-product-inquiry-callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  padding: clamp(36px, 5vw, 58px);
  border-radius: var(--sr-radius-lg);
  background:
    radial-gradient(circle at 88% 18%, rgba(75, 147, 255, 0.35), transparent 24%),
    linear-gradient(120deg, #01133b, #062b72);
  box-shadow: 0 26px 60px rgba(1, 19, 59, 0.16);
  color: rgba(255, 255, 255, 0.72);
}

.sr-contact-banner h2,
.sr-product-inquiry-callout h2 {
  max-width: 760px;
  margin-bottom: 14px;
  color: var(--sr-white);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.sr-contact-banner p:last-child,
.sr-product-inquiry-callout p:last-child {
  max-width: 760px;
  margin: 0;
}

.sr-contact-banner > a,
.sr-product-inquiry-callout > a {
  flex: 0 0 auto;
}

/* Product cards */
.sr-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.sr-product-card {
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--sr-border);
  border-radius: var(--sr-radius);
  background: var(--sr-white);
  box-shadow: 0 7px 25px rgba(1, 19, 59, 0.035);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.sr-product-card:hover {
  border-color: #c4d1e5;
  box-shadow: var(--sr-shadow-hover);
  transform: translateY(-4px);
}

.sr-product-card__media {
  position: relative;
  display: flex;
  overflow: hidden;
  aspect-ratio: 1;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--sr-border);
  background:
    linear-gradient(135deg, rgba(1, 90, 220, 0.04), transparent 65%),
    #f9fbfe;
}

.sr-product-card__media img {
  width: 79%;
  height: 79%;
  object-fit: contain;
  transition: transform 220ms ease;
}

.sr-product-card__media .sr-product-image--catalog,
.sr-product-detail__image .sr-product-image--catalog {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.sr-product-card:hover .sr-product-card__media img {
  transform: scale(1.025);
}

.sr-product-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 6px 9px;
  border: 1px solid #c7d9f5;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--sr-blue);
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0;
}

.sr-product-card__body {
  display: flex;
  min-height: 295px;
  flex-direction: column;
  padding: 25px;
}

.sr-product-card__category {
  margin: 0 0 9px;
  color: var(--sr-blue);
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0;
}

.sr-product-card h3 {
  margin-bottom: 13px;
  font-size: 1.24rem;
}

.sr-product-card h3 a {
  color: var(--sr-navy);
  text-decoration: none;
}

.sr-product-card__configuration {
  margin: 0 0 7px;
  color: var(--sr-ink);
  font-size: 0.88rem;
  font-weight: 700;
}

.sr-product-card__form {
  margin: 0 0 24px;
  color: var(--sr-muted);
  font-size: 0.79rem;
}

.sr-product-card__footer {
  display: grid;
  gap: 15px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--sr-border);
}

.sr-product-card__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 6px 16px;
}

.sr-availability {
  display: block;
  color: var(--sr-slate);
  font-size: 0.75rem;
  font-weight: 650;
  line-height: 1.35;
}

/* Catalog archive */
.sr-page-hero {
  padding-block: clamp(44px, 6vw, 72px);
  border-bottom: 1px solid var(--sr-border);
  background:
    radial-gradient(circle at 82% 30%, rgba(1, 90, 220, 0.1), transparent 26%),
    linear-gradient(135deg, #fff, #f4f8fe);
}

.sr-page-hero__content {
  max-width: 850px;
}

.sr-page-hero__content h1 {
  font-size: clamp(2.6rem, 4.5vw, 3.75rem);
}

.sr-page-hero__content > p:last-child {
  max-width: 700px;
  margin: 0;
  color: var(--sr-slate);
  font-size: 1.08rem;
}

.sr-page-hero__grid {
  display: grid;
  align-items: end;
  grid-template-columns: 1fr;
}

.sr-page-hero__grid > div:first-child {
  max-width: 820px;
}

.sr-page-hero__grid h1 {
  font-size: clamp(2.6rem, 4.5vw, 3.75rem);
}

.sr-page-hero__grid > div:first-child > p:last-child {
  max-width: 720px;
  margin: 0;
  color: var(--sr-slate);
  font-size: 1.08rem;
}

.sr-catalog-toolbar {
  position: sticky;
  z-index: 50;
  top: 82px;
  border-bottom: 1px solid var(--sr-border);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
}

.admin-bar .sr-catalog-toolbar {
  top: 114px;
}

.sr-catalog-toolbar__inner {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.sr-filter-list {
  display: flex;
  align-items: center;
  gap: 8px;
}

.sr-filter {
  min-height: 44px;
  padding: 8px 13px;
  border: 1px solid transparent;
  border-radius: 5px;
  background: transparent;
  color: var(--sr-slate);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 700;
}

.sr-filter:hover,
.sr-filter.is-active {
  border-color: #c9d8ee;
  background: var(--sr-blue-soft);
  color: var(--sr-blue);
}

.sr-catalog-search {
  display: grid;
  gap: 5px;
}

.sr-catalog-search__label {
  color: var(--sr-navy);
  font-size: 0.72rem;
  font-weight: 750;
}

.sr-catalog-search__control {
  position: relative;
  display: flex;
  align-items: center;
}

.sr-catalog-search__control svg {
  position: absolute;
  left: 13px;
  color: var(--sr-muted);
  pointer-events: none;
}

.sr-catalog-search input {
  width: 220px;
  min-height: 44px;
  padding: 9px 13px 9px 40px;
  border: 1px solid var(--sr-border);
  border-radius: var(--sr-radius-sm);
  background: var(--sr-white);
  color: var(--sr-navy);
  font-size: 0.82rem;
}

.sr-catalog-search input::placeholder {
  color: #8b92a6;
}

.sr-catalog-results {
  margin-bottom: 22px;
  color: var(--sr-muted);
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0;
}

.sr-empty-state {
  padding: 70px 30px;
  border: 1px dashed #bac8dd;
  border-radius: var(--sr-radius);
  background: var(--sr-white);
  text-align: center;
}

.sr-empty-state h2 {
  font-size: 1.8rem;
}

.sr-empty-state p {
  color: var(--sr-slate);
}

.sr-catalog-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-block: 42px;
}

.sr-catalog-note strong {
  color: var(--sr-navy);
}

.sr-catalog-note p {
  margin: 4px 0 0;
  color: var(--sr-slate);
  font-size: 0.9rem;
}

/* Product detail */
.sr-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  padding-block: 22px;
  color: var(--sr-muted);
  font-size: 0.74rem;
}

.sr-breadcrumbs a {
  color: var(--sr-slate);
  text-decoration: none;
}

.sr-product-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: clamp(50px, 8vw, 110px);
  padding-top: 25px;
  padding-bottom: clamp(70px, 9vw, 115px);
}

.sr-product-detail__image {
  position: relative;
  display: flex;
  aspect-ratio: 1;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid var(--sr-border);
  border-radius: var(--sr-radius);
  background:
    linear-gradient(135deg, rgba(1, 90, 220, 0.045), transparent 68%),
    var(--sr-mist);
}

.sr-product-detail__image img {
  width: 82%;
  height: 82%;
  object-fit: contain;
}

.sr-product-detail__image > span {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 6px 9px;
  border: 1px solid var(--sr-border);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--sr-muted);
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0;
}

.sr-product-detail__visual > p {
  margin: 13px 0 0;
  color: var(--sr-muted);
  font-size: 0.72rem;
}

.sr-product-detail__summary {
  padding-top: 18px;
}

.sr-product-detail__summary h1 {
  margin-bottom: 22px;
  font-size: clamp(2.7rem, 5vw, 4.5rem);
}

.sr-product-detail__short {
  color: var(--sr-slate);
  font-size: 1.02rem;
}

.sr-configuration-box {
  display: grid;
  gap: 5px;
  margin: 30px 0 22px;
  padding: 18px 20px;
  border: 1px solid #cbd9ed;
  border-radius: var(--sr-radius-sm);
  background: var(--sr-mist);
}

.sr-configuration-box span {
  color: var(--sr-muted);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0;
}

.sr-configuration-box strong {
  color: var(--sr-navy);
  font-size: 0.94rem;
}

.sr-product-detail__actions {
  display: grid;
  gap: 10px;
  margin-bottom: 25px;
}

.sr-detail-assurances {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 20px 0 0;
  border-top: 1px solid var(--sr-border);
  color: var(--sr-slate);
  font-size: 0.77rem;
  list-style: none;
}

.sr-detail-assurances li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sr-detail-assurances li::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sr-blue);
  box-shadow: 0 0 0 4px var(--sr-blue-soft);
  content: "";
}

.sr-product-information {
  padding-block: clamp(75px, 9vw, 112px);
  border-block: 1px solid var(--sr-border);
  background: var(--sr-mist);
}

.sr-product-information__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(400px, 1.1fr);
  gap: clamp(60px, 9vw, 120px);
}

.sr-product-information h2 {
  margin-bottom: 22px;
  font-size: 2rem;
}

.sr-product-description > p,
.sr-product-description > div > p {
  color: var(--sr-slate);
}

.sr-research-notice {
  margin-top: 30px;
  padding: 20px;
  border: 1px solid #cddbf0;
  border-radius: var(--sr-radius-sm);
  background: var(--sr-white);
}

.sr-research-notice strong {
  color: var(--sr-navy);
  font-size: 0.86rem;
}

.sr-research-notice p {
  margin: 5px 0 0;
  font-size: 0.79rem;
}

.sr-specifications dl {
  margin: 0;
  border-top: 1px solid #cbd5e4;
}

.sr-specifications dl > * {
  margin: 0;
  padding: 15px 0;
  border-bottom: 1px solid #cbd5e4;
}

.sr-specifications dt {
  float: left;
  width: 36%;
  padding-right: 22px;
  clear: both;
  color: var(--sr-muted);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0;
}

.sr-specifications dd {
  margin-left: 36%;
  color: var(--sr-ink);
  font-size: 0.84rem;
  overflow-wrap: anywhere;
}

/* Pages and form */
.sr-page-layout {
  max-width: 920px;
  padding-block: clamp(65px, 8vw, 100px);
}

.sr-page-layout--contact {
  display: grid;
  max-width: 1200px;
  grid-template-columns: minmax(250px, 0.56fr) minmax(0, 1.44fr);
  gap: clamp(55px, 8vw, 110px);
}

.sr-entry-content {
  color: var(--sr-slate);
}

.sr-entry-content h2 {
  margin-top: 1.6em;
  font-size: 1.75rem;
}

.sr-entry-content h2:first-child {
  margin-top: 0;
}

.sr-entry-content ul {
  padding-left: 22px;
}

.sr-entry-content li {
  margin-bottom: 8px;
}

.sr-entry-content a:not(.sr-button) {
  font-weight: 650;
}

.sr-page-layout--contact > .sr-entry-content {
  padding-top: 66px;
  font-size: 0.92rem;
}

.sr-inquiry {
  scroll-margin-top: 130px;
}

.sr-inquiry__intro {
  margin-bottom: 28px;
}

.sr-inquiry__intro h2 {
  margin-bottom: 15px;
  font-size: clamp(2rem, 4vw, 3rem);
}

.sr-inquiry__intro > p:last-child {
  max-width: 700px;
  color: var(--sr-slate);
}

.sr-inquiry-form {
  padding: clamp(25px, 4vw, 42px);
  border: 1px solid var(--sr-border);
  border-radius: var(--sr-radius);
  background: var(--sr-white);
  box-shadow: 0 12px 34px rgba(1, 19, 59, 0.065);
}

.sr-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.sr-field {
  margin-bottom: 20px;
}

.sr-field label {
  display: block;
  margin-bottom: 7px;
  color: var(--sr-navy);
  font-size: 0.8rem;
  font-weight: 750;
}

.sr-field input:not([type="checkbox"]),
.sr-field select,
.sr-field textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  border: 1px solid #c6d0df;
  border-radius: var(--sr-radius-sm);
  background: var(--sr-white);
  color: var(--sr-ink);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.sr-field textarea {
  min-height: 130px;
  resize: vertical;
}

.sr-field input:focus,
.sr-field select:focus,
.sr-field textarea:focus {
  border-color: var(--sr-blue);
  box-shadow: 0 0 0 3px rgba(1, 90, 220, 0.12);
  outline: none;
}

.sr-field-help,
.sr-form-privacy {
  margin: 6px 0 0;
  color: var(--sr-muted);
  font-size: 0.7rem;
  line-height: 1.5;
}

.sr-field--checkbox {
  padding: 16px;
  border: 1px solid var(--sr-border);
  border-radius: var(--sr-radius-sm);
  background: var(--sr-mist);
}

.sr-field--checkbox label {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin: 0;
  cursor: pointer;
  line-height: 1.5;
}

.sr-field--checkbox input {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  margin: 2px 0 0;
  accent-color: var(--sr-blue);
}

.sr-field--checkbox .sr-field-help {
  margin-left: 29px;
}

.sr-field--error input,
.sr-field--error select,
.sr-field--error textarea,
.sr-field--error.sr-field--checkbox {
  border-color: var(--sr-error);
}

.sr-field-error {
  margin: 6px 0 0;
  color: var(--sr-error);
  font-size: 0.72rem;
  font-weight: 650;
}

.sr-form-status {
  margin-bottom: 20px;
  padding: 15px 17px;
  border-radius: var(--sr-radius-sm);
  font-size: 0.83rem;
}

.sr-form-status:focus {
  outline: 3px solid rgba(1, 90, 220, 0.28);
  outline-offset: 3px;
}

.sr-form-status strong {
  display: block;
}

.sr-form-status--success {
  border: 1px solid #acd9c5;
  background: #effaf5;
  color: var(--sr-success);
}

.sr-form-status--error {
  border: 1px solid #e3b2b9;
  background: #fff3f4;
  color: var(--sr-error);
}

.sr-form-status--notice {
  border: 1px solid #bfd2ec;
  background: #f1f6fd;
  color: #173f78;
}

.sr-button--submit {
  min-width: 210px;
}

.sr-button--submit:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

.sr-form-privacy {
  max-width: 660px;
  margin-top: 12px;
}

.sr-access-gate__consent a {
  font-weight: 750;
}

/* Email-verified research access gate */
body.sr-access-gate-required {
  overflow: hidden;
  overscroll-behavior: none;
}

.sr-access-shell {
  min-height: 75vh;
  background: var(--sr-white);
}

.sr-access-shell__hero {
  min-height: 520px;
  padding-block: clamp(72px, 10vw, 140px);
  background: linear-gradient(135deg, #f7faff, #eaf2ff);
}

.sr-access-shell__grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  gap: clamp(44px, 8vw, 110px);
}

.sr-access-shell__grid p {
  margin: 0 0 16px;
  color: var(--sr-blue);
  font-size: 0.8rem;
  font-weight: 750;
}

.sr-access-shell__grid h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 6vw, 5.75rem);
  letter-spacing: -0.04em;
}

.sr-access-shell__grid span {
  display: block;
  max-width: 620px;
  color: var(--sr-slate);
  font-size: 1.1rem;
  line-height: 1.6;
}

.sr-access-shell__visual {
  display: grid;
  min-height: 330px;
  place-items: center;
  background: var(--sr-white);
}

.sr-access-shell__visual img {
  width: min(220px, 52%);
  height: auto;
}

.sr-access-shell__content {
  padding-block: 44px;
}

.sr-access-shell__tiles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-block: 1px solid var(--sr-border);
}

.sr-access-shell__tiles > div {
  display: grid;
  gap: 6px;
  padding: 26px;
  border-right: 1px solid var(--sr-border);
}

.sr-access-shell__tiles > div:last-child {
  border-right: 0;
}

.sr-access-shell__tiles strong {
  color: var(--sr-navy);
}

.sr-access-shell__tiles span {
  color: var(--sr-muted);
  font-size: 0.86rem;
}

.sr-access-gate {
  position: fixed;
  z-index: 1000;
  inset: 0;
  overflow-x: hidden;
  overflow-y: auto;
  padding:
    max(16px, env(safe-area-inset-top))
    max(16px, env(safe-area-inset-right))
    max(16px, env(safe-area-inset-bottom))
    max(16px, env(safe-area-inset-left));
  overscroll-behavior: contain;
  transition: opacity 180ms ease-in;
}

.sr-access-gate.is-leaving {
  opacity: 0;
  pointer-events: none;
}

.sr-access-gate__scrim {
  position: fixed;
  z-index: -1;
  inset: 0;
  background: rgba(4, 23, 58, 0.72);
  -webkit-backdrop-filter: blur(3px) saturate(0.9);
  backdrop-filter: blur(3px) saturate(0.9);
}

.sr-access-gate__dialog {
  width: min(900px, 100%);
  margin-inline: auto;
  padding: clamp(24px, 3vw, 32px);
  border: 1px solid rgba(151, 169, 195, 0.34);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: none;
  transition: opacity 180ms ease-in, transform 180ms ease-in;
}

.sr-access-gate.is-leaving .sr-access-gate__dialog {
  opacity: 0;
  transform: translateY(-12px) scale(0.985);
}

.sr-access-gate__header {
  max-width: 610px;
  margin: 0 auto 24px;
  text-align: center;
}

.sr-access-gate__logo {
  width: 174px;
  height: auto;
  margin: 0 auto 16px;
}

.sr-access-gate__header h1 {
  margin-bottom: 8px;
  font-size: 2rem;
  text-wrap: balance;
}

.sr-access-gate__header > p:last-child {
  margin: 0 auto;
  color: var(--sr-slate);
  font-size: 1rem;
  line-height: 1.55;
  text-wrap: pretty;
}

.sr-access-gate__notice {
  margin-bottom: 24px;
  padding: 16px;
  border: 1px solid #cbd9ed;
  border-radius: var(--sr-radius);
  background: var(--sr-mist);
}

.sr-access-gate__notice > p {
  margin: 0;
  color: var(--sr-slate);
  font-size: 0.875rem;
  line-height: 1.55;
  text-wrap: pretty;
}

.sr-access-gate__notice > p strong {
  color: var(--sr-blue);
}

.sr-access-gate__form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.sr-access-gate__field {
  display: grid;
  align-content: start;
  gap: 8px;
  margin: 0;
}

.sr-access-gate__field--wide {
  grid-column: 1 / -1;
}

.sr-access-gate__field label,
.sr-access-gate__code-field > label {
  display: block;
  margin-bottom: 0;
  color: var(--sr-navy);
  font-size: 0.8125rem;
  font-weight: 750;
  letter-spacing: 0;
}

.sr-access-gate__field input,
.sr-access-gate__field select {
  width: 100%;
  min-height: 48px;
  padding: 12px 16px;
  border: 1px solid #bdc9da;
  border-radius: 8px;
  background: var(--sr-white);
  color: var(--sr-ink);
  font-size: 1rem;
  transition: border-color 160ms ease-out, box-shadow 160ms ease-out, background-color 160ms ease-out;
}

.sr-access-gate__field input:hover,
.sr-access-gate__field select:hover {
  border-color: #95a9c5;
}

.sr-access-gate__field input:focus,
.sr-access-gate__field select:focus {
  border-color: var(--sr-blue);
  box-shadow: 0 0 0 3px rgba(1, 90, 220, 0.15);
  outline: none;
}

.sr-access-gate__field.has-error input,
.sr-access-gate__field.has-error select {
  border-color: var(--sr-error);
  background: #fff8f8;
}

.sr-access-gate__consent.has-error {
  border-radius: 8px;
  outline: 2px solid rgba(167, 31, 53, 0.62);
  outline-offset: 4px;
}

.sr-access-gate__help,
.sr-access-gate__error {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.5;
}

.sr-access-gate__help {
  color: var(--sr-muted);
}

.sr-access-gate__error {
  color: var(--sr-error);
  font-weight: 650;
}

.sr-access-gate__error:empty {
  display: none;
}

.sr-access-gate__consent {
  margin-bottom: 0;
  padding: 4px 0;
}

.sr-access-gate__consents {
  display: grid;
  gap: 16px;
  margin-bottom: 24px;
}

.sr-access-gate__consent label {
  display: flex;
  min-height: 44px;
  align-items: flex-start;
  gap: 12px;
  margin: 0;
  cursor: pointer;
  color: var(--sr-slate);
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.55;
  text-wrap: pretty;
}

.sr-access-gate__consent input {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  margin: 1px 0 0;
  accent-color: var(--sr-blue);
  cursor: pointer;
}

.sr-access-gate__status {
  display: none;
  margin-bottom: 16px;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 650;
  line-height: 1.5;
}

.sr-access-gate__status:not(:empty) {
  display: block;
}

.sr-access-gate__status.is-error {
  background: #fff3f4;
  box-shadow: 0 0 0 1px #e3b2b9;
  color: var(--sr-error);
}

.sr-access-gate__status.is-success {
  background: #effaf5;
  box-shadow: 0 0 0 1px #acd9c5;
  color: var(--sr-success);
}

.sr-access-gate__primary {
  display: inline-flex;
  width: 100%;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 24px;
  border: 0;
  border-radius: 8px;
  background: var(--sr-blue);
  box-shadow: 0 4px 8px rgba(1, 90, 220, 0.22);
  color: var(--sr-white);
  cursor: pointer;
  font-size: 1rem;
  font-weight: 750;
  transition: background-color 160ms ease-out, box-shadow 160ms ease-out, scale 150ms ease-out;
}

.sr-access-gate__primary:hover {
  background: var(--sr-blue-hover);
  box-shadow: 0 6px 8px rgba(1, 69, 179, 0.26);
}

.sr-access-gate__primary:active {
  scale: 0.96;
}

.sr-access-gate__primary:disabled {
  cursor: wait;
  opacity: 0.58;
  scale: 1;
}

.sr-access-gate__primary svg {
  flex: 0 0 20px;
  margin-right: -2px;
}

.sr-access-gate__privacy {
  max-width: 600px;
  margin: 12px auto 0;
  color: var(--sr-muted);
  font-size: 0.8125rem;
  line-height: 1.55;
  text-align: center;
  text-wrap: pretty;
}

.sr-access-gate__code-intro {
  max-width: 520px;
  margin: 0 auto 24px;
  color: var(--sr-slate);
  font-size: 0.92rem;
  text-align: center;
  text-wrap: balance;
}

.sr-access-gate__code-intro strong {
  color: var(--sr-ink);
  overflow-wrap: anywhere;
}

.sr-access-gate__step[data-sr-gate-code-step] form {
  width: min(520px, 100%);
  margin-inline: auto;
}

.sr-access-gate__code-field {
  max-width: 350px;
  margin: 0 auto 24px;
  text-align: center;
}

.sr-access-gate__code-field > label {
  margin-bottom: 8px;
}

.sr-access-gate__code-control {
  position: relative;
  width: 100%;
  cursor: text;
}

.sr-access-gate__code-control input {
  position: absolute;
  z-index: 2;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  opacity: 0.01;
  color: transparent;
  caret-color: transparent;
  cursor: text;
}

.sr-access-gate__code-control input:focus {
  outline: none;
}

.sr-access-gate__code-cells {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}

.sr-access-gate__code-cells span {
  display: flex;
  min-height: 62px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--sr-white);
  box-shadow:
    0 0 0 1px #bdc9da,
    0 2px 6px rgba(1, 19, 59, 0.04);
  color: var(--sr-navy);
  font-size: 1.8rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  transition: background-color 160ms ease-out, box-shadow 160ms ease-out, transform 160ms ease-out;
}

.sr-access-gate__code-control.has-focus .sr-access-gate__code-cells span {
  box-shadow:
    0 0 0 2px var(--sr-blue),
    0 0 0 5px rgba(1, 90, 220, 0.12);
}

.sr-access-gate__code-cells span.has-value {
  background: var(--sr-blue-soft);
  transform: translateY(-2px);
}

.sr-access-gate__code-field .sr-access-gate__help {
  margin-top: 8px;
  text-align: center;
}

.sr-access-gate__secondary-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 12px;
}

.sr-access-gate__secondary-actions button {
  min-height: 44px;
  padding: 8px 4px;
  border: 0;
  background: transparent;
  color: var(--sr-blue);
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 750;
  transition: color 160ms ease-out, opacity 160ms ease-out;
}

.sr-access-gate__secondary-actions button:hover {
  color: var(--sr-blue-hover);
}

.sr-access-gate__secondary-actions button:disabled {
  cursor: wait;
  opacity: 0.48;
}

.sr-access-gate__secondary-actions [data-sr-gate-resend-timer] {
  font-variant-numeric: tabular-nums;
}

.sr-access-gate__noscript {
  margin: 24px 0 0;
  padding: 16px;
  border-radius: 8px;
  background: #fff3f4;
  color: var(--sr-error);
  font-size: 0.8rem;
  font-weight: 650;
}

@media (min-width: 621px) {
  .sr-access-gate {
    display: flex;
    align-items: flex-start;
    justify-content: center;
  }

  .sr-access-gate__dialog {
    margin-block: auto;
  }

  .sr-access-gate__header {
    display: grid;
    max-width: none;
    grid-template-columns: 160px minmax(0, 1fr);
    column-gap: 32px;
    align-items: center;
    text-align: left;
    margin-bottom: 24px;
  }

  .sr-access-gate__logo {
    grid-column: 1;
    grid-row: 1 / 3;
    width: 160px;
    margin: 0;
  }

  .sr-access-gate__header h1,
  .sr-access-gate__header > p:last-child {
    grid-column: 2;
  }

  .sr-access-gate__header h1 {
    font-size: 1.95rem;
    line-height: 1.1;
  }
}

.sr-hp {
  position: absolute !important;
  left: -10000px !important;
}

.sr-entry-list,
.sr-not-found {
  padding-block: 90px;
}

.sr-entry-list article {
  padding-block: 28px;
  border-bottom: 1px solid var(--sr-border);
}

.sr-not-found {
  min-height: 60vh;
  text-align: center;
}

.sr-not-found h1 {
  max-width: 780px;
  margin-inline: auto;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
}

.sr-not-found > p {
  color: var(--sr-slate);
}

.sr-not-found__code {
  margin-bottom: 12px;
  color: var(--sr-blue);
  font-size: 0.82rem;
  font-weight: 700;
}

.sr-not-found > div {
  display: flex;
  justify-content: center;
  gap: 12px;
}

/* Footer */
.sr-site-footer {
  padding-top: 72px;
  background: #010e2d;
  color: rgba(255, 255, 255, 0.6);
}

.sr-footer__grid {
  display: grid;
  grid-template-columns: minmax(250px, 1.5fr) repeat(3, 1fr);
  gap: 60px;
  padding-bottom: 58px;
}

.sr-footer__brand img {
  width: 230px;
  height: auto;
}

.sr-footer__brand p {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.67);
  font-size: 0.9rem;
}

.sr-footer__heading {
  margin-bottom: 17px;
  color: var(--sr-white);
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0;
}

.sr-footer__grid ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sr-footer__grid a {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.8rem;
  overflow-wrap: anywhere;
  text-decoration: none;
}

.sr-footer__grid a:hover {
  color: var(--sr-white);
}

.sr-footer__notice {
  padding-block: 23px;
  border-block: 1px solid rgba(255, 255, 255, 0.12);
}

.sr-footer__notice p {
  margin: 0;
  color: rgba(255, 255, 255, 0.53);
  font-size: 0.72rem;
}

.sr-footer__notice strong {
  color: rgba(255, 255, 255, 0.82);
}

.sr-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding-block: 24px;
}

.sr-footer__bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.75rem;
}

/* Member accounts and agreements */
.sr-member-surface {
  min-height: 72vh;
  padding-block: clamp(42px, 6vw, 82px);
  border-bottom: 1px solid var(--sr-border);
  background: #f7f9fc;
}

.sr-member-surface__inner {
  max-width: 1280px;
}

.sr-auth {
  width: min(620px, 100%);
  margin-inline: auto;
  overflow: hidden;
  border: 1px solid var(--sr-border);
  border-radius: var(--sr-radius-lg);
  background: var(--sr-white);
  box-shadow: 0 14px 38px rgba(1, 19, 59, 0.085);
}

.sr-auth__brand,
.sr-auth__step,
.sr-auth__footer,
.sr-auth--signed-in,
.sr-auth--signed-out {
  padding-inline: clamp(24px, 6vw, 54px);
}

.sr-auth__brand {
  padding-top: clamp(32px, 6vw, 52px);
  text-align: left;
}

.sr-auth__eyebrow {
  margin: 0 0 10px;
  color: var(--sr-blue);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.sr-auth__brand img {
  width: 48px;
  height: 48px;
  margin: 0 0 24px;
  object-fit: contain;
}

.sr-auth__brand h1,
.sr-auth--signed-in h1,
.sr-auth--signed-out h1 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 5vw, 2.75rem);
}

.sr-auth__brand > p:last-child,
.sr-auth--signed-in > p,
.sr-auth--signed-out > p {
  color: var(--sr-slate);
}

.sr-auth__step {
  padding-top: 18px;
  padding-bottom: 36px;
}

.sr-auth__step .sr-field {
  margin-bottom: 18px;
}

.sr-auth__step .sr-field input {
  min-height: 54px;
}

.sr-auth__submit {
  width: 100%;
  min-height: 54px;
}

.sr-auth__submit[aria-busy="true"] {
  cursor: wait;
  opacity: 0.66;
  transform: none;
}

.sr-auth__submit[aria-busy="true"]::after {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-top-color: var(--sr-white);
  border-radius: 50%;
  animation: sr-auth-spin 700ms linear infinite;
  content: "";
}

@keyframes sr-auth-spin {
  to {
    transform: rotate(360deg);
  }
}

.sr-auth__sent {
  margin-bottom: 22px;
  color: var(--sr-slate);
  text-align: center;
}

.sr-auth__sent strong {
  color: var(--sr-navy);
}

.sr-field .sr-auth__code,
.sr-auth__code {
  min-height: 62px;
  letter-spacing: 0.28em;
  text-align: center;
  font-size: 1.5rem;
  font-variant-numeric: tabular-nums;
  font-weight: 750;
}

.sr-auth__status {
  min-height: 0;
  margin-bottom: 16px;
  padding: 0;
  border-radius: var(--sr-radius-sm);
  font-size: 0.79rem;
  font-weight: 650;
}

.sr-auth__status:not(:empty) {
  padding: 12px 14px;
}

.sr-auth__status.is-success {
  border: 1px solid #acd9c5;
  background: #effaf5;
  color: var(--sr-success);
}

.sr-auth__status.is-error {
  border: 1px solid #e3b2b9;
  background: #fff3f4;
  color: var(--sr-error);
}

.sr-auth__text-button {
  display: block;
  min-height: 44px;
  margin: 14px auto 0;
  padding: 8px 14px;
  border: 0;
  background: transparent;
  color: var(--sr-blue);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 750;
}

.sr-auth__footer {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding-top: 22px;
  padding-bottom: 26px;
  border-top: 1px solid var(--sr-border);
  background: var(--sr-mist);
  color: var(--sr-slate);
}

.sr-auth__footer svg {
  flex: 0 0 22px;
  margin-top: 2px;
  color: var(--sr-blue);
}

.sr-auth__footer p {
  margin: 0;
  font-size: 0.82rem;
}

.sr-auth__switch {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin: 0 clamp(24px, 6vw, 54px) 30px;
  padding: 20px;
  border: 1px solid var(--sr-border);
  border-radius: var(--sr-radius-md);
  background: #f8faff;
}

.sr-auth__switch > div {
  display: grid;
  gap: 3px;
}

.sr-auth__switch strong {
  color: var(--sr-navy);
  font-size: 0.92rem;
}

.sr-auth__switch span {
  color: var(--sr-slate);
  font-size: 0.78rem;
}

.sr-auth__switch .sr-button {
  flex: 0 0 auto;
  min-height: 44px;
  padding: 10px 18px;
  font-size: 0.76rem;
}

.sr-auth.is-registering {
  width: min(780px, 100%);
}

.sr-auth__registration {
  padding: clamp(28px, 5vw, 48px) clamp(24px, 6vw, 54px);
  scroll-margin-top: 110px;
}

.sr-auth__registration[hidden],
[data-sr-auth-login-panel][hidden] {
  display: none;
}

.sr-auth__registration-header {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.sr-auth__registration-header h2 {
  max-width: 620px;
  margin: 0 0 12px;
  color: var(--sr-navy);
  font-size: clamp(2rem, 5vw, 2.75rem);
  line-height: 1.05;
}

.sr-auth__registration-header > div > p:last-child {
  max-width: 650px;
  margin: 0;
  color: var(--sr-slate);
}

.sr-auth__back {
  width: fit-content;
  min-height: 44px;
  padding: 8px 0;
  border: 0;
  background: transparent;
  color: var(--sr-blue);
  cursor: pointer;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 750;
}

.sr-auth__back::before {
  margin-right: 7px;
  content: "←";
}

.sr-auth__back:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.sr-auth__registration-notice {
  margin-bottom: 26px;
  padding: 17px 18px;
  border: 1px solid #cbd9ef;
  border-left: 3px solid var(--sr-blue);
  border-radius: var(--sr-radius-sm);
  background: #f7f9fd;
}

.sr-auth__registration-notice strong {
  display: block;
  margin-bottom: 5px;
  color: var(--sr-blue);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sr-auth__registration-notice p {
  margin: 0;
  color: var(--sr-slate);
  font-size: 0.82rem;
}

.sr-auth__registration-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 20px;
}

.sr-auth__registration-grid .sr-field {
  min-width: 0;
  margin: 0;
}

.sr-auth__registration-grid .sr-field input,
.sr-auth__registration-grid .sr-field select {
  min-height: 52px;
}

.sr-auth__registration-wide {
  grid-column: 1 / -1;
}

.sr-auth__agreement {
  margin-bottom: 20px;
  padding: 18px;
  border: 1px solid var(--sr-border);
  border-radius: var(--sr-radius-sm);
  background: var(--sr-mist);
}

.sr-auth__agreement label {
  display: grid;
  align-items: start;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 12px;
  color: var(--sr-slate);
  cursor: pointer;
  font-size: 0.82rem;
  line-height: 1.6;
}

.sr-auth__agreement input {
  width: 20px;
  height: 20px;
  margin: 2px 0 0;
  accent-color: var(--sr-blue);
}

.sr-auth__agreement a {
  color: var(--sr-blue);
  font-weight: 750;
}

.sr-auth__agreement.sr-field--error {
  border-color: var(--sr-error);
  background: #fff7f7;
}

.sr-auth__agreement .sr-field-error {
  margin-left: 32px;
}

.sr-auth__registration-privacy {
  max-width: 610px;
  margin: 14px auto 0;
  color: var(--sr-slate);
  font-size: 0.74rem;
  line-height: 1.55;
  text-align: center;
}

.sr-auth__registration-code {
  max-width: 520px;
  margin: 18px auto 0;
  padding-block: 8px 14px;
}

.sr-auth__registration-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 8px;
}

.sr-auth__registration-actions .sr-auth__text-button {
  margin: 0;
}

.sr-auth--signed-in,
.sr-auth--signed-out {
  padding-top: clamp(45px, 8vw, 74px);
  padding-bottom: clamp(45px, 8vw, 74px);
  text-align: center;
}

.sr-auth__icon {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: var(--sr-blue-soft);
  color: var(--sr-blue);
}

.sr-auth__icon svg {
  width: 28px;
  height: 28px;
}

.sr-auth--magic {
  padding: clamp(38px, 7vw, 64px);
  text-align: center;
}

.sr-auth[hidden] {
  display: none;
}

.sr-auth--magic > p {
  max-width: 500px;
  margin: 0 auto 24px;
  color: var(--sr-slate);
}

.sr-auth--magic form {
  display: flex;
  justify-content: center;
}

.sr-auth--magic .sr-auth__text-button {
  width: fit-content;
  text-decoration: none;
}

@media (max-width: 680px) {
  .sr-auth__switch {
    align-items: stretch;
    flex-direction: column;
  }

  .sr-auth__switch .sr-button {
    width: 100%;
  }

  .sr-auth__registration-grid {
    grid-template-columns: 1fr;
  }

  .sr-auth__registration-wide {
    grid-column: auto;
  }

  .sr-auth__registration-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 0;
  }
}

.sr-account-shell {
  display: grid;
  align-items: start;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: clamp(30px, 5vw, 62px);
}

.sr-account-nav {
  position: sticky;
  top: 144px;
  overflow: hidden;
  border: 1px solid var(--sr-border);
  border-radius: var(--sr-radius);
  background: var(--sr-white);
  box-shadow: 0 14px 38px rgba(1, 19, 59, 0.06);
}

.sr-account-nav__identity {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 22px 19px;
  border-bottom: 1px solid var(--sr-border);
}

.sr-account-nav__identity > span {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  place-items: center;
  border-radius: 50%;
  background: var(--sr-blue-soft);
  color: var(--sr-blue);
}

.sr-account-nav__identity div {
  display: grid;
  min-width: 0;
  gap: 3px;
}

.sr-account-nav__identity strong,
.sr-account-nav__identity small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sr-account-nav__identity strong {
  color: var(--sr-navy);
  font-size: 0.85rem;
}

.sr-account-nav__identity small {
  color: var(--sr-muted);
  font-size: 0.75rem;
}

.sr-account-nav nav {
  padding: 10px;
}

.sr-account-nav nav a {
  display: flex;
  min-height: 46px;
  align-items: center;
  gap: 11px;
  padding: 10px 12px;
  border-radius: var(--sr-radius-sm);
  color: var(--sr-slate);
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 160ms ease, color 160ms ease;
}

.sr-account-nav nav a:hover {
  background: var(--sr-mist);
  color: var(--sr-navy);
}

.sr-account-nav nav a.is-active {
  background: var(--sr-blue-soft);
  color: var(--sr-blue);
}

.sr-account-nav nav a.sr-account-nav__logout {
  margin-top: 8px;
  border-top: 1px solid var(--sr-border);
  border-radius: 0 0 var(--sr-radius-sm) var(--sr-radius-sm);
}

.sr-account-nav nav svg {
  flex: 0 0 19px;
}

.sr-account-nav > p {
  margin: 0;
  padding: 16px 19px 19px;
  border-top: 1px solid var(--sr-border);
  color: var(--sr-muted);
  font-size: 0.8rem;
  line-height: 1.5;
}

.sr-account-main {
  min-width: 0;
}

.sr-account-hero {
  position: relative;
  display: flex;
  min-height: 220px;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  overflow: hidden;
  padding: clamp(30px, 5vw, 54px);
  border: 1px solid rgba(95, 145, 220, 0.3);
  border-radius: var(--sr-radius-lg);
  background: #041c4c;
  box-shadow: 0 18px 42px rgba(1, 19, 59, 0.14);
  color: rgba(255, 255, 255, 0.76);
}

.sr-account-hero::after {
  content: none;
}

.sr-account-hero > * {
  position: relative;
  z-index: 1;
}

.sr-account-hero h1 {
  max-width: 700px;
  margin-bottom: 14px;
  color: var(--sr-white);
  font-size: clamp(2.15rem, 4vw, 3.2rem);
}

.sr-account-hero p:last-child {
  max-width: 650px;
  margin: 0;
}

.sr-account-status {
  display: inline-flex;
  min-height: 35px;
  align-items: center;
  gap: 7px;
  padding: 7px 11px;
  border: 1px solid rgba(98, 215, 169, 0.32);
  border-radius: 999px;
  background: rgba(16, 116, 76, 0.2);
  color: #c8f5e3;
  font-size: 0.75rem;
  font-weight: 750;
  white-space: nowrap;
}

.sr-account-grid {
  display: grid;
  gap: 20px;
}

.sr-account-grid--summary {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 22px;
}

.sr-account-card,
.sr-account-section,
.sr-account-form,
.sr-account-email-verify,
.sr-account-agreement-summary {
  border: 1px solid var(--sr-border);
  border-radius: var(--sr-radius);
  background: var(--sr-white);
  box-shadow: 0 12px 32px rgba(1, 19, 59, 0.045);
}

.sr-account-card {
  position: relative;
  padding: 26px;
}

.sr-account-card__icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 22px;
  border-radius: var(--sr-radius-sm);
  background: var(--sr-blue-soft);
  color: var(--sr-blue);
}

.sr-account-card__label {
  margin: 0 0 8px;
  color: var(--sr-muted);
  font-size: 0.8rem;
  font-weight: 750;
  letter-spacing: 0;
}

.sr-account-card h2 {
  margin-bottom: 7px;
  font-size: 1.35rem;
}

.sr-account-card > p:not(.sr-account-card__label) {
  min-height: 25px;
  margin-bottom: 18px;
  color: var(--sr-muted);
  font-size: 0.82rem;
}

.sr-account-card > a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--sr-blue);
  font-size: 0.82rem;
  font-weight: 750;
  text-decoration: none;
}

.sr-account-section {
  margin-top: 22px;
  padding: clamp(24px, 4vw, 38px);
}

.sr-account-section__heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
}

.sr-account-section__heading h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
}

.sr-account-empty {
  padding: 38px 22px;
  border: 1px dashed #bdcadc;
  border-radius: var(--sr-radius);
  background: var(--sr-mist);
  text-align: center;
}

.sr-account-empty > svg {
  width: 30px;
  height: 30px;
  margin: 0 auto 15px;
  color: var(--sr-blue);
}

.sr-account-empty h2,
.sr-account-empty h3 {
  margin-bottom: 8px;
  font-size: 1.15rem;
}

.sr-account-empty p {
  max-width: 510px;
  margin: 0 auto;
  color: var(--sr-muted);
  font-size: 0.84rem;
}

.sr-account-table {
  overflow: hidden;
  border: 1px solid var(--sr-border);
  border-radius: var(--sr-radius-sm);
}

.sr-account-table__row {
  display: grid;
  grid-template-columns: 1.1fr 1.4fr 0.8fr;
  gap: 18px;
  padding: 14px 18px;
  border-top: 1px solid var(--sr-border);
  color: var(--sr-slate);
  font-size: 0.82rem;
}

.sr-account-table__row:first-child {
  border-top: 0;
}

.sr-account-table__head {
  background: var(--sr-mist);
  color: var(--sr-muted);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0;
}

.sr-account-table strong {
  color: var(--sr-navy);
}

.sr-account-pagehead {
  max-width: 760px;
  margin-bottom: 30px;
}

.sr-account-pagehead h1 {
  margin-bottom: 14px;
  font-size: clamp(2.4rem, 4.5vw, 3.7rem);
}

.sr-account-pagehead > p:last-child {
  color: var(--sr-slate);
}

.sr-account-form {
  overflow: hidden;
  padding-bottom: 30px;
}

.sr-account-form__section {
  display: grid;
  padding: 30px;
  border-bottom: 1px solid var(--sr-border);
  grid-template-columns: minmax(170px, 0.55fr) minmax(0, 1.45fr);
  gap: 34px;
}

.sr-account-form__heading h2 {
  margin-bottom: 8px;
  font-size: 1.15rem;
}

.sr-account-form__heading p {
  margin: 0;
  color: var(--sr-muted);
  font-size: 0.82rem;
}

.sr-account-form__section .sr-form-grid {
  gap: 18px;
}

.sr-account-form__section .sr-field {
  margin-bottom: 0;
}

.sr-account-form__section > .sr-field-help {
  grid-column: 2;
  margin-top: -20px;
}

.sr-account-form__section--compact {
  display: block;
}

.sr-account-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}

.sr-account-check input {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  margin-top: 3px;
  accent-color: var(--sr-blue);
}

.sr-account-check span {
  display: grid;
  color: var(--sr-muted);
  font-size: 0.82rem;
}

.sr-account-check strong {
  color: var(--sr-navy);
  font-size: 0.85rem;
}

.sr-account-form > .sr-button {
  margin: 28px 30px 0;
}

.sr-account-email-verify {
  display: grid;
  margin-top: 22px;
  padding: clamp(24px, 4vw, 36px);
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.7fr);
  gap: 34px;
}

.sr-account-email-verify > div > svg {
  margin-bottom: 16px;
  color: var(--sr-blue);
}

.sr-account-email-verify h2 {
  font-size: 1.55rem;
}

.sr-account-email-verify p:last-child {
  margin: 0;
  color: var(--sr-muted);
  font-size: 0.84rem;
}

.sr-account-email-verify form {
  display: grid;
  align-content: center;
  gap: 10px;
}

.sr-account-email-verify label {
  color: var(--sr-navy);
  font-size: 0.82rem;
  font-weight: 750;
}

.sr-account-email-verify input {
  width: 100%;
  padding: 11px 13px;
  border: 1px solid #c6d0df;
  border-radius: var(--sr-radius-sm);
}

.sr-account-agreement-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 22px;
  padding: clamp(25px, 4vw, 40px);
}

.sr-account-agreement-summary .sr-account-status {
  margin-bottom: 18px;
  border-color: #acd9c5;
  background: #effaf5;
  color: var(--sr-success);
}

.sr-account-agreement-summary h2 {
  margin-bottom: 17px;
  font-size: 1.75rem;
}

.sr-account-agreement-summary dl {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 30px;
  margin: 0;
}

.sr-account-agreement-summary dl div {
  display: grid;
  gap: 3px;
}

.sr-account-agreement-summary dt {
  color: var(--sr-muted);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0;
}

.sr-account-agreement-summary dd {
  margin: 0;
  color: var(--sr-navy);
  font-size: 0.86rem;
  font-weight: 650;
  overflow-wrap: anywhere;
}

.sr-agreement-status {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  max-width: 920px;
  margin: 0 auto 24px;
  padding: 17px 19px;
  border-radius: var(--sr-radius);
}

.sr-agreement-status > svg {
  flex: 0 0 24px;
  margin-top: 2px;
}

.sr-agreement-status strong {
  display: block;
  margin-bottom: 3px;
}

.sr-agreement-status p {
  margin: 0;
  font-size: 0.82rem;
}

.sr-agreement-status--effective {
  border: 1px solid #a8c7f4;
  background: var(--sr-blue-soft);
  color: var(--sr-navy);
}

.sr-agreement-document {
  max-width: 920px;
  margin-inline: auto;
  overflow: hidden;
  border: 1px solid var(--sr-border);
  border-radius: var(--sr-radius-lg);
  background: var(--sr-white);
  box-shadow: var(--sr-shadow);
}

.sr-agreement-document > header {
  padding: clamp(28px, 5vw, 52px);
  border-bottom: 1px solid var(--sr-border);
  background: linear-gradient(135deg, var(--sr-blue-soft), var(--sr-white));
}

.sr-agreement-document > header h2 {
  margin-bottom: 14px;
  font-size: clamp(2.1rem, 4.5vw, 3.35rem);
}

.sr-agreement-document > header > p:last-of-type {
  max-width: 680px;
  color: var(--sr-slate);
}

.sr-agreement-effective {
  margin: 0 0 12px;
  color: var(--sr-blue);
  font-size: 0.82rem;
  font-weight: 700;
}

.sr-agreement-version {
  display: inline-block;
  padding: 6px 9px;
  border-radius: 4px;
  background: var(--sr-white);
  color: var(--sr-blue);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.75rem;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.sr-agreement-sections {
  margin: 0;
  padding: clamp(28px, 5vw, 52px) clamp(28px, 6vw, 65px);
  counter-reset: sr-agreement;
  list-style: none;
}

.sr-agreement-sections li {
  position: relative;
  padding-left: 52px;
  counter-increment: sr-agreement;
}

.sr-agreement-sections li + li {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--sr-border);
}

.sr-agreement-sections li::before {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--sr-blue-soft);
  color: var(--sr-blue);
  content: counter(sr-agreement);
  font-size: 0.72rem;
  font-weight: 750;
}

.sr-agreement-sections h3 {
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.sr-agreement-sections p {
  margin: 0;
  color: var(--sr-slate);
  font-size: 1rem;
  line-height: 1.72;
}

.sr-account-agreement-summary .sr-account-status--review,
.sr-account-status--review {
  border-color: #f1cf82;
  background: #fff9e8;
  color: #805800;
}

.sr-agreement-document__notice {
  margin: 0 clamp(28px, 6vw, 65px) clamp(28px, 5vw, 52px);
  padding: 18px;
  border: 1px solid #cbd9ed;
  border-radius: var(--sr-radius-sm);
  background: var(--sr-mist);
}

.sr-agreement-document__notice strong {
  display: block;
  margin-bottom: 4px;
  color: var(--sr-navy);
  font-size: 0.86rem;
}

.sr-agreement-document__notice p {
  margin: 0;
  color: var(--sr-muted);
  font-size: 0.82rem;
}

.sr-agreement-document--account {
  margin-bottom: 22px;
}

.sr-agreement-document--account > header,
.sr-agreement-document--account .sr-agreement-sections {
  padding: clamp(25px, 4vw, 40px);
}

/* About, FAQ, and policy surfaces */
.sr-page-hero--about {
  border-bottom-color: rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at 83% 35%, rgba(0, 104, 243, 0.38), transparent 28%),
    var(--sr-navy);
}

.sr-page-hero--about h1,
.sr-page-hero--about p {
  color: var(--sr-white);
}

.sr-page-hero--about .sr-page-hero__content > p:last-child {
  color: rgba(255, 255, 255, 0.75);
}

.sr-page-hero--legal {
  background: var(--sr-mist);
}

.sr-page-layout--about,
.sr-page-layout--faq,
.sr-page-layout--legal {
  max-width: 1200px;
}

.sr-entry-content--about,
.sr-entry-content--faq,
.sr-entry-content--legal {
  color: var(--sr-slate);
}

.sr-page-lead {
  max-width: 790px;
  margin: 0 0 clamp(42px, 6vw, 70px);
  color: var(--sr-ink);
  font-size: clamp(1.2rem, 2.3vw, 1.62rem);
  font-weight: 550;
  line-height: 1.55;
}

.sr-about-intro {
  display: grid;
  align-items: stretch;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: clamp(32px, 6vw, 82px);
}

.sr-about-intro > div:first-child {
  align-self: center;
}

.sr-about-intro h2,
.sr-about-standards h2,
.sr-about-split h2,
.sr-about-contact h2 {
  font-size: clamp(1.85rem, 3vw, 2.65rem);
}

.sr-about-mark {
  display: flex;
  min-height: 390px;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: clamp(35px, 6vw, 65px);
  border-radius: var(--sr-radius-lg);
  background: var(--sr-navy);
  flex-direction: column;
}

.sr-about-mark img {
  width: min(190px, 70%);
  max-height: 210px;
  margin-bottom: 32px;
  filter: brightness(0) invert(1);
  object-fit: contain;
}

.sr-about-mark figcaption {
  color: var(--sr-white);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

.sr-about-mark figcaption span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.78rem;
  font-weight: 550;
}

.sr-about-standards {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(40px, 8vw, 105px);
  margin-top: clamp(85px, 11vw, 140px);
}

.sr-about-standards header p {
  max-width: 440px;
}

.sr-principle-list {
  margin: 0;
  border-top: 1px solid var(--sr-border);
}

.sr-principle-list > div {
  display: grid;
  grid-template-columns: minmax(165px, 0.55fr) minmax(0, 1fr);
  gap: 28px;
  padding-block: 26px;
  border-bottom: 1px solid var(--sr-border);
}

.sr-principle-list dt {
  color: var(--sr-navy);
  font-weight: 750;
  line-height: 1.4;
}

.sr-principle-list dd {
  margin: 0;
  font-size: 0.94rem;
}

.sr-about-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(85px, 11vw, 140px);
  overflow: hidden;
  border-radius: var(--sr-radius-lg);
  background: var(--sr-border);
}

.sr-about-split > div {
  padding: clamp(32px, 5vw, 58px);
  background: var(--sr-mist);
}

.sr-about-split p:last-child {
  margin-bottom: 0;
}

.sr-about-contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-top: clamp(65px, 9vw, 110px);
  padding: clamp(30px, 5vw, 52px);
  border-radius: var(--sr-radius-lg);
  background: var(--sr-blue);
  color: rgba(255, 255, 255, 0.83);
}

.sr-about-contact h2 {
  margin-bottom: 10px;
  color: var(--sr-white);
}

.sr-about-contact p {
  max-width: 650px;
  margin: 0;
}

.sr-about-contact .sr-button {
  flex: 0 0 auto;
}

.sr-faq-jump,
.sr-policy-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: clamp(48px, 7vw, 78px);
}

.sr-faq-jump a,
.sr-policy-nav a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 9px 15px;
  border: 1px solid var(--sr-border);
  border-radius: var(--sr-radius-sm);
  background: var(--sr-white);
  color: var(--sr-navy);
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
}

.sr-faq-jump a:hover,
.sr-policy-nav a:hover {
  border-color: #afc0db;
  background: var(--sr-blue-soft);
}

.sr-faq-group {
  display: grid;
  grid-template-columns: minmax(210px, 0.45fr) minmax(0, 1.55fr);
  gap: clamp(34px, 7vw, 90px);
  scroll-margin-top: 125px;
}

.sr-faq-group + .sr-faq-group {
  margin-top: clamp(70px, 9vw, 115px);
}

.sr-faq-group > h2 {
  margin: 0;
  font-size: clamp(1.65rem, 2.5vw, 2.2rem);
}

.sr-faq-list {
  border-top: 1px solid var(--sr-border);
}

.sr-faq-list details {
  border-bottom: 1px solid var(--sr-border);
}

.sr-faq-list summary {
  position: relative;
  padding: 22px 48px 22px 0;
  color: var(--sr-navy);
  cursor: pointer;
  font-weight: 750;
  line-height: 1.45;
  list-style: none;
}

.sr-faq-list summary::-webkit-details-marker {
  display: none;
}

.sr-faq-list summary::before,
.sr-faq-list summary::after {
  position: absolute;
  top: 33px;
  right: 7px;
  width: 14px;
  height: 2px;
  background: var(--sr-blue);
  content: "";
  transition: transform 180ms ease;
}

.sr-faq-list summary::after {
  transform: rotate(90deg);
}

.sr-faq-list details[open] summary::after {
  transform: rotate(0);
}

.sr-faq-list details > div {
  max-width: 72ch;
  padding: 0 48px 22px 0;
}

.sr-faq-list details > div p:last-child {
  margin-bottom: 0;
}

.sr-policy-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 20px;
  margin-bottom: 24px;
  color: var(--sr-muted);
  font-size: 0.76rem;
  font-weight: 700;
}

.sr-policy-meta span + span::before {
  margin-right: 20px;
  color: #b9c5d7;
  content: "•";
}

.sr-policy-status {
  max-width: 940px;
  margin: 0 0 28px;
  padding: 22px 24px;
  border: 1px solid #c8d8ee;
  border-radius: var(--sr-radius);
  background: var(--sr-blue-soft);
}

.sr-policy-status strong {
  display: block;
  margin-bottom: 4px;
  color: var(--sr-navy);
  font-size: 0.86rem;
}

.sr-policy-status p {
  margin: 0;
  color: var(--sr-slate);
  font-size: 0.88rem;
}

.sr-legal-page > .sr-policy-nav {
  max-width: 940px;
  margin-bottom: 58px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--sr-border);
}

.sr-legal-copy {
  max-width: 800px;
}

.sr-legal-copy h2 {
  margin-top: 2.3em;
  color: var(--sr-navy);
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  letter-spacing: -0.025em;
}

.sr-legal-copy h2:first-child {
  margin-top: 0;
}

.sr-legal-copy p,
.sr-legal-copy li {
  font-size: 0.95rem;
}

.sr-policy-directory {
  max-width: 990px;
  margin-top: 55px;
  border-top: 1px solid var(--sr-border);
}

.sr-policy-directory__item {
  display: flex;
  min-height: 130px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 26px 10px;
  border-bottom: 1px solid var(--sr-border);
  color: var(--sr-navy);
  text-decoration: none;
}

.sr-policy-directory__item > span:first-child {
  display: grid;
  gap: 7px;
}

.sr-policy-directory__item strong {
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
}

.sr-policy-directory__item small {
  max-width: 740px;
  color: var(--sr-slate);
  font-size: 0.87rem;
  font-weight: 500;
  line-height: 1.6;
}

.sr-policy-directory__item > span:last-child {
  color: var(--sr-blue);
  font-size: 1.6rem;
  transition: transform 180ms ease;
}

.sr-policy-directory__item:hover {
  color: var(--sr-blue);
}

.sr-policy-directory__item:hover > span:last-child {
  transform: translateX(4px);
}

.sr-policy-index__note {
  max-width: 800px;
  margin-top: clamp(60px, 8vw, 95px);
  padding-top: 38px;
  border-top: 1px solid var(--sr-border);
}

.sr-policy-index__note h2 {
  font-size: clamp(1.6rem, 3vw, 2.25rem);
}

/* Responsive */
@media (max-width: 1100px) {
  .sr-header__inner {
    grid-template-columns: 175px 1fr auto;
    gap: 18px;
  }

  .sr-brand,
  .sr-brand img {
    width: 170px;
  }

  .sr-primary-nav {
    gap: 17px;
  }

  .sr-primary-nav a {
    font-size: 0.8rem;
  }

  .sr-header-account small {
    display: none;
  }

  .sr-hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.75fr);
    gap: 40px;
  }

  .sr-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sr-footer__grid {
    grid-template-columns: 1.3fr repeat(3, 1fr);
    gap: 35px;
  }
}

@media (max-width: 1023px) {
  body.admin-bar .sr-site-header {
    top: 32px;
  }

  .sr-header__inner {
    grid-template-columns: 1fr auto auto;
  }

  .sr-nav-toggle {
    display: inline-flex;
    grid-column: 2;
  }

  .sr-header__actions {
    grid-column: 3;
  }

  .sr-header-account {
    display: none;
  }

  .sr-primary-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    padding: 12px 24px;
    border-block: 1px solid var(--sr-border);
    background: var(--sr-white);
    box-shadow: 0 18px 30px rgba(1, 19, 59, 0.08);
    flex-direction: column;
    gap: 0;
  }

  .sr-primary-nav.is-open {
    display: flex;
  }

  .sr-primary-nav a {
    padding: 13px 0;
    border-bottom: 1px solid var(--sr-border);
    font-size: 0.9rem;
  }

  .sr-primary-nav a:last-child {
    border: 0;
  }

  .sr-primary-nav__member {
    display: block;
  }

  .sr-primary-nav a::after {
    display: none;
  }

  .sr-hero__grid {
    min-height: 0;
    grid-template-columns: 1fr;
    padding-block: 78px;
  }

  .sr-hero__content {
    max-width: 780px;
  }

  .sr-hero__visual {
    min-height: 0;
    max-width: 620px;
    width: 100%;
    margin: 0 auto;
  }

  .sr-hero-showcase {
    box-shadow: 0 20px 52px rgba(1, 19, 59, 0.12);
  }

  .sr-category-grid {
    grid-template-columns: 1fr 1fr;
  }

  .sr-category-card:last-child {
    grid-column: 1 / -1;
  }

  .sr-category-card > p:not(.sr-category-card__label) {
    min-height: 0;
  }

  .sr-catalog-toolbar {
    top: 82px;
  }

  .admin-bar .sr-catalog-toolbar {
    top: 114px;
  }

  .sr-catalog-toolbar__inner {
    align-items: stretch;
    padding-block: 14px;
    flex-direction: column;
    gap: 10px;
  }

  .sr-filter-list {
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .sr-filter {
    flex: 0 0 auto;
  }

  .sr-catalog-search input {
    width: 100%;
  }

  .sr-standard-grid,
  .sr-product-information__grid {
    grid-template-columns: 1fr;
  }

  .sr-product-detail {
    gap: 50px;
  }

  .sr-footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .sr-about-intro,
  .sr-about-standards,
  .sr-faq-group {
    grid-template-columns: 1fr;
  }

  .sr-about-mark {
    min-height: 330px;
  }

  .sr-about-standards,
  .sr-faq-group {
    gap: 24px;
  }
}

@media (max-width: 782px) {
  body.admin-bar .sr-site-header {
    top: 46px;
  }

  .admin-bar .sr-catalog-toolbar {
    top: 128px;
  }

  .sr-assurance__inner {
    justify-content: flex-start;
    overflow-x: auto;
    gap: 22px;
  }

  .sr-assurance__inner span {
    flex: 0 0 auto;
  }

  .sr-assurance__inner span + span::before {
    margin-right: 22px;
  }

  .sr-section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .sr-page-hero__grid,
  .sr-product-detail,
  .sr-page-layout--contact {
    grid-template-columns: 1fr;
  }

  .sr-access-shell__grid {
    grid-template-columns: 1fr;
  }

  .sr-access-shell__hero {
    min-height: 580px;
  }

  .sr-access-shell__visual {
    min-height: 220px;
  }

  .sr-access-shell__tiles {
    grid-template-columns: 1fr;
  }

  .sr-access-shell__tiles > div {
    border-right: 0;
    border-bottom: 1px solid var(--sr-border);
  }

  .sr-access-shell__tiles > div:last-child {
    border-bottom: 0;
  }

  .sr-page-layout--contact > .sr-entry-content {
    padding-top: 0;
  }

  .sr-product-detail__summary {
    padding-top: 0;
  }

  .sr-contact-banner,
  .sr-product-inquiry-callout {
    align-items: flex-start;
    flex-direction: column;
  }

  .sr-footer__grid {
    gap: 45px;
  }

  .sr-account-shell {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .sr-account-nav {
    position: static;
  }

  .sr-account-nav nav {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 4px;
  }

  .sr-account-nav nav a {
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    padding-inline: 4px;
    font-size: 0.8rem;
    text-align: center;
  }

  .sr-account-nav nav a span {
    display: block;
    white-space: nowrap;
  }

  .sr-account-nav nav a.sr-account-nav__logout {
    grid-column: 1 / -1;
    flex-direction: row;
    margin-top: 6px;
  }

  .sr-account-nav > p {
    display: none;
  }

  .sr-account-form__section {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .sr-account-form__section > .sr-field-help {
    grid-column: 1;
    margin-top: -10px;
  }

  .sr-account-email-verify {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  :root {
    --sr-container: min(100% - 32px, 1200px);
  }

  body.admin-bar .sr-site-header {
    top: 0;
  }

  .sr-assurance {
    font-size: 0.72rem;
  }

  .sr-assurance__inner {
    min-height: 30px;
    justify-content: center;
    overflow: hidden;
  }

  .sr-assurance__inner span:not(:first-child) {
    display: none;
  }

  .sr-assurance__inner span:not(:first-child)::before {
    content: none;
  }

  .sr-primary-nav {
    padding-inline: 16px;
  }

  .sr-header__inner {
    min-height: 72px;
    grid-template-columns: 1fr auto;
    gap: 10px;
  }

  .sr-brand,
  .sr-brand img {
    width: 157px;
  }

  .sr-nav-toggle {
    grid-column: 2;
  }

  .sr-nav-toggle span {
    display: none;
  }

  .sr-header__actions {
    display: none;
  }

  .sr-member-surface {
    padding-block: 28px 48px;
  }

  .sr-account-grid--summary {
    grid-template-columns: 1fr;
  }

  .sr-account-hero {
    min-height: 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .sr-account-hero h1 {
    font-size: clamp(2.25rem, 11vw, 3.4rem);
  }

  .sr-account-section__heading,
  .sr-account-agreement-summary {
    align-items: stretch;
    flex-direction: column;
  }

  .sr-account-section__heading .sr-button,
  .sr-account-agreement-summary .sr-button {
    width: 100%;
  }

  .sr-account-table__head {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    clip-path: inset(50%);
    white-space: nowrap;
  }

  .sr-account-table__row {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .sr-account-table__row span,
  .sr-account-table__row time {
    color: var(--sr-muted);
  }

  .sr-account-form__section,
  .sr-account-form__section--compact {
    padding: 24px 20px;
  }

  .sr-account-form__section .sr-form-grid {
    grid-template-columns: 1fr;
  }

  .sr-account-form > .sr-button {
    width: calc(100% - 40px);
    margin: 24px 20px 0;
  }

  .sr-account-pagehead h1 {
    font-size: clamp(2.25rem, 11vw, 3.4rem);
  }

  .sr-account-agreement-summary dl {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .sr-agreement-sections li {
    padding-left: 0;
    padding-top: 45px;
  }

  .sr-agreement-sections li + li {
    margin-top: 24px;
    padding-top: 69px;
  }

  .sr-agreement-sections li + li::before {
    top: 24px;
  }

  .sr-hero__grid {
    padding-block: 60px 52px;
  }

  .sr-hero__content h1 {
    font-size: clamp(2.85rem, 14vw, 4.2rem);
  }

  .sr-hero__lede {
    font-size: 1rem;
  }

  .sr-hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .sr-hero__checks {
    align-items: flex-start;
    flex-direction: column;
  }

  .sr-hero__visual {
    min-height: 0;
  }

  .sr-hero-showcase {
    border-radius: var(--sr-radius-md);
    box-shadow: 0 14px 36px rgba(1, 19, 59, 0.11);
  }

  .sr-hero-products {
    padding: 20px;
  }

  .sr-hero-products__header {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }

  .sr-hero-products__standards li {
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 12px;
  }

  .sr-section {
    padding-block: 68px;
  }

  .sr-product-grid,
  .sr-category-grid,
  .sr-form-grid {
    grid-template-columns: 1fr;
  }

  .sr-category-card:last-child {
    grid-column: auto;
  }

  .sr-product-card__body {
    min-height: 270px;
  }

  .sr-standard-grid {
    gap: 48px;
  }

  .sr-page-hero {
    padding-block: 58px;
  }

  .sr-page-hero__grid h1,
  .sr-page-hero__content h1 {
    font-size: clamp(2.55rem, 13vw, 3.65rem);
  }

  .sr-catalog-toolbar {
    top: 72px;
  }

  .admin-bar .sr-catalog-toolbar {
    top: 72px;
  }

  .sr-product-detail {
    padding-top: 5px;
  }

  .sr-product-detail__summary h1 {
    font-size: 2.8rem;
  }

  .sr-specifications dt {
    float: none;
    width: auto;
    padding-bottom: 2px;
    border-bottom: 0;
  }

  .sr-specifications dd {
    margin-left: 0;
    padding-top: 0;
  }

  .sr-contact-banner,
  .sr-product-inquiry-callout {
    padding: 30px 25px;
  }

  .sr-contact-banner > a,
  .sr-product-inquiry-callout > a {
    width: 100%;
  }

  .sr-catalog-note,
  .sr-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .sr-footer__grid {
    grid-template-columns: 1fr;
  }

  .sr-footer__brand {
    padding-bottom: 10px;
  }

  .sr-page-lead {
    font-size: 1.08rem;
  }

  .sr-about-mark {
    min-height: 285px;
  }

  .sr-principle-list > div,
  .sr-about-split {
    grid-template-columns: 1fr;
  }

  .sr-principle-list > div {
    gap: 8px;
  }

  .sr-about-contact {
    align-items: stretch;
    flex-direction: column;
  }

  .sr-about-contact .sr-button {
    width: 100%;
  }

  .sr-faq-jump,
  .sr-policy-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sr-faq-jump a,
  .sr-policy-nav a {
    justify-content: center;
    text-align: center;
  }

  .sr-faq-list summary {
    padding-right: 38px;
  }

  .sr-faq-list details > div {
    padding-right: 0;
  }

  .sr-policy-meta {
    display: grid;
  }

  .sr-policy-meta span + span::before {
    display: none;
  }

  .sr-policy-status {
    padding: 18px;
  }

  .sr-policy-directory__item {
    min-height: 0;
    align-items: flex-start;
    padding-block: 22px;
  }

  .sr-not-found > div {
    flex-direction: column;
  }

  .sr-access-gate {
    padding:
      max(12px, env(safe-area-inset-top))
      max(12px, env(safe-area-inset-right))
      max(12px, env(safe-area-inset-bottom))
      max(12px, env(safe-area-inset-left));
  }

  .sr-access-gate__dialog {
    padding: 24px 16px;
    border-radius: 16px;
  }

  .sr-access-gate__header {
    margin-bottom: 24px;
  }

  .sr-access-gate__logo {
    width: 156px;
    margin-bottom: 16px;
  }

  .sr-access-gate__header h1 {
    font-size: 1.75rem;
  }

  .sr-access-gate__header > p:last-child {
    font-size: 1rem;
  }

	.sr-access-gate__notice {
		padding: 16px;
	}

  .sr-access-gate__form-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .sr-access-gate__field--wide {
    grid-column: auto;
  }

  .sr-access-gate__consent {
    padding: 4px 0;
  }

  .sr-access-gate__code-cells {
    gap: 8px;
  }

  .sr-access-gate__code-cells span {
    min-height: 64px;
    font-size: 1.55rem;
  }

  .sr-access-gate__secondary-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 0;
  }
}

@media (max-width: 420px) {
  .sr-account-nav nav {
    grid-template-columns: 1fr;
  }

  .sr-account-nav nav a,
  .sr-account-nav nav a.sr-account-nav__logout {
    grid-column: 1;
    flex-direction: row;
    justify-content: flex-start;
    gap: 10px;
    padding-inline: 12px;
    font-size: 0.82rem;
    text-align: left;
  }
}

@media (max-width: 360px) {
  .sr-access-gate__code-cells span {
    min-height: 56px;
  }
}

@media (min-width: 520px) and (max-width: 620px) and (max-height: 480px) and (orientation: landscape) {
  .sr-access-gate {
    padding: 8px 12px;
  }

  .sr-access-gate__dialog {
    padding: 16px 24px;
  }

  .sr-access-gate__header {
    display: grid;
    max-width: none;
    grid-template-columns: 132px minmax(0, 1fr);
    column-gap: 24px;
    align-items: center;
    margin-bottom: 16px;
    text-align: left;
  }

  .sr-access-gate__logo {
    width: 132px;
    grid-column: 1;
    grid-row: 1 / 3;
    margin: 0;
  }

  .sr-access-gate__header h1,
  .sr-access-gate__header > p:last-child {
    grid-column: 2;
  }

  .sr-access-gate__notice,
  .sr-access-gate__form-grid,
  .sr-access-gate__consents {
    margin-bottom: 16px;
  }

  .sr-access-gate__form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 16px;
    row-gap: 12px;
  }

  .sr-access-gate__field--wide {
    grid-column: 1 / -1;
  }
}

@media (pointer: coarse) {
  .sr-button,
  .sr-filter,
  .sr-auth__text-button,
  .sr-access-gate__secondary-actions button {
    min-height: 44px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media print {
  .sr-assurance,
  .sr-site-header,
  .sr-site-footer,
  .sr-product-detail__actions,
  .sr-contact-banner,
  .sr-product-inquiry-callout {
    display: none !important;
  }

  .sr-access-gate {
    display: none !important;
  }

  body {
    color: #000;
  }
}
