:root {
  --ink: #10212a;
  --ink-soft: #334852;
  --night: #102b38;
  --night-deep: #091b24;
  --water: #1e7785;
  --water-bright: #27aaa5;
  --signal: #e06f43;
  --signal-dark: #a94526;
  --paper: #fffdf7;
  --cream: #f2eee3;
  --mist: #e5efed;
  --line: #c7d4d1;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(8, 27, 36, 0.14);
  --wrap: 1180px;
  --focus: #ffbf47;
}

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

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  pointer-events: none;
  background-image:
    linear-gradient(rgba(16, 43, 56, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 43, 56, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
}

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

a {
  color: var(--water);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--signal-dark);
}

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

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

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--night-deep);
  font-family: "Arial Narrow", "Aptos Display", ui-sans-serif, system-ui, sans-serif;
  font-weight: 780;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

h1 {
  max-width: 18ch;
  font-size: clamp(2.35rem, 6.2vw, 5.7rem);
}

h2 {
  font-size: clamp(1.85rem, 4vw, 3.3rem);
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.55rem);
}

p {
  margin: 0 0 1rem;
}

.wrap {
  width: min(calc(100% - 2rem), var(--wrap));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 0.5rem;
  left: 0.5rem;
  z-index: 1000;
  padding: 0.75rem 1rem;
  color: var(--night-deep);
  background: var(--focus);
  font-weight: 800;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid rgba(199, 212, 209, 0.8);
  background: rgba(255, 253, 247, 0.97);
}

.operator-bar {
  color: #dcefed;
  background: var(--night-deep);
  font-size: 0.82rem;
}

.operator-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 2.4rem;
  gap: 1rem;
}

.operator-inner p {
  margin: 0;
}

.operator-links {
  display: flex;
  gap: 1.25rem;
}

.operator-links a {
  color: var(--white);
  font-weight: 700;
}

.navigation-shell {
  background: var(--paper);
}

.navigation-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 6.3rem;
  gap: 2rem;
}

.site-lockup {
  display: grid;
  flex: 0 0 auto;
  color: var(--night-deep);
  text-decoration: none;
  line-height: 1;
}

.site-lockup span {
  margin-bottom: 0.28rem;
  color: var(--signal-dark);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-lockup strong {
  font-family: "Arial Narrow", "Aptos Display", sans-serif;
  font-size: 1.55rem;
  letter-spacing: -0.03em;
}

.site-lockup small {
  margin-top: 0.3rem;
  color: var(--ink-soft);
  font-size: 0.72rem;
}

.primary-navigation {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(0.75rem, 1.8vw, 1.45rem);
}

.primary-navigation a {
  position: relative;
  color: var(--ink);
  font-size: 0.93rem;
  font-weight: 750;
  text-decoration: none;
}

.primary-navigation a:not(.nav-action)::after {
  position: absolute;
  right: 0;
  bottom: -0.45rem;
  left: 0;
  height: 2px;
  content: "";
  background: var(--signal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

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

.nav-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.75rem 1.1rem;
  border: 2px solid var(--signal);
  border-radius: 0.35rem;
  color: var(--white) !important;
  background: var(--signal-dark);
  box-shadow: 0 6px 0 rgba(112, 39, 19, 0.16);
  font-weight: 850;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

.nav-action:hover,
.button:hover {
  color: var(--white);
  background: #85351f;
  transform: translateY(-1px);
}

.button-secondary {
  border-color: var(--line);
  color: var(--night-deep) !important;
  background: var(--paper);
  box-shadow: none;
}

.button-secondary:hover {
  color: var(--night-deep);
  background: var(--mist);
}

.nav-toggle {
  display: none;
  align-items: center;
  gap: 0.7rem;
  min-height: 2.9rem;
  padding: 0.6rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 0.3rem;
  color: var(--night-deep);
  background: var(--paper);
  font-weight: 800;
}

.nav-toggle-lines {
  display: grid;
  gap: 4px;
}

.nav-toggle-lines i {
  display: block;
  width: 1.25rem;
  height: 2px;
  background: currentColor;
}

.page-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 10% 20%, rgba(39, 170, 165, 0.24), transparent 32rem),
    linear-gradient(118deg, var(--night-deep), var(--night));
}

.page-hero::after {
  position: absolute;
  right: -8rem;
  bottom: -11rem;
  width: 31rem;
  height: 31rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  content: "";
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(18rem, 0.85fr);
  align-items: center;
  min-height: 42rem;
  padding-block: clamp(4rem, 8vw, 7.5rem);
  gap: clamp(2rem, 5vw, 5rem);
}

.hero-layout-text {
  grid-template-columns: minmax(0, 50rem);
  min-height: 27rem;
}

.section-source {
  background: var(--white);
}

.source-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(20rem, 1.2fr);
  align-items: start;
  gap: clamp(2rem, 5vw, 5rem);
}

.source-panel h2 {
  margin-bottom: 1rem;
}

.source-links {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 0.65rem;
  list-style: none;
}

.source-links a {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  border-radius: 0.3rem;
  color: var(--night-deep);
  background: var(--paper);
  gap: 1rem;
}

.source-links a:hover,
.source-links a:focus-visible {
  border-color: var(--water);
}

.source-links span {
  flex: 0 0 auto;
  color: var(--ink-soft);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.page-hero-compact .hero-layout {
  min-height: 34rem;
  padding-block: clamp(3.5rem, 7vw, 5.5rem);
}

.hero-copy {
  min-width: 0;
}

.hero-copy h1,
.page-hero h2 {
  color: var(--white);
}

.eyebrow {
  margin-bottom: 0.8rem;
  color: var(--signal);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-intro {
  max-width: 65ch;
  margin-top: 1.5rem;
  color: #d7e7e8;
  font-size: clamp(1.05rem, 2vw, 1.26rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 2rem;
  gap: 0.85rem;
}

.hero-illustration {
  position: relative;
  min-width: 0;
  margin: 0;
  padding: clamp(0.8rem, 2vw, 1.35rem);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow);
  transform: rotate(1.5deg);
}

.hero-illustration img {
  width: 100%;
  height: auto;
}

.hero-illustration figcaption {
  padding-top: 0.55rem;
  color: #b9d0d2;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.breadcrumbs {
  margin-bottom: 1.5rem;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  gap: 0.45rem;
  list-style: none;
}

.breadcrumbs li {
  display: flex;
  align-items: center;
  color: #b9d0d2;
  font-size: 0.82rem;
}

.breadcrumbs li:not(:last-child)::after {
  margin-left: 0.45rem;
  content: "/";
  color: var(--signal);
}

.breadcrumbs a {
  color: var(--white);
}

.capability-strip {
  border-bottom: 1px solid var(--line);
  background: var(--cream);
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.capability-grid p {
  display: grid;
  min-width: 0;
  margin: 0;
  padding: 1.5rem clamp(0.7rem, 2vw, 1.5rem);
  border-left: 1px solid var(--line);
}

.capability-grid p:last-child {
  border-right: 1px solid var(--line);
}

.capability-grid span {
  color: var(--signal-dark);
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 0.75rem;
}

.capability-grid strong {
  margin-block: 0.2rem;
  font-size: 1.05rem;
}

.capability-grid small {
  color: var(--ink-soft);
}

.section {
  padding-block: clamp(4rem, 8vw, 7rem);
}

.section-tint {
  background: var(--cream);
}

.section-dark {
  color: #d7e7e8;
  background: var(--night-deep);
}

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

.section-heading {
  max-width: 50rem;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.section-heading > p:last-child {
  max-width: 64ch;
  margin-top: 1rem;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.feature-card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 19rem;
  flex-direction: column;
  padding: clamp(1.4rem, 3vw, 2.1rem);
  border: 1px solid var(--line);
  border-top: 5px solid var(--water);
  background: var(--paper);
  box-shadow: 0 14px 35px rgba(8, 27, 36, 0.07);
}

.feature-card:nth-child(2) {
  border-top-color: var(--signal);
}

.feature-card:nth-child(3) {
  border-top-color: var(--water-bright);
}

.feature-card h3 {
  margin-block: 1.25rem 0.85rem;
}

.feature-card p {
  color: var(--ink-soft);
}

.feature-card a {
  margin-top: auto;
  font-weight: 850;
}

.card-index {
  color: var(--signal-dark);
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-weight: 800;
}

.split-layout,
.evidence-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 7vw, 6rem);
}

.split-layout p:not(.eyebrow),
.evidence-panel p {
  max-width: 60ch;
  font-size: 1.08rem;
}

.text-link {
  display: inline-block;
  margin-top: 0.6rem;
  color: var(--white);
  font-weight: 850;
}

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

.family-grid article {
  min-width: 0;
  min-height: 12rem;
  padding: 1.35rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 247, 0.8);
}

.family-grid span,
.numbered-sections > article > span {
  color: var(--signal-dark);
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 0.78rem;
  font-weight: 850;
}

.family-grid h3 {
  margin-block: 1.1rem 0.55rem;
}

.family-grid p {
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.numbered-sections {
  border-top: 1px solid var(--line);
}

.numbered-sections > article {
  display: grid;
  grid-template-columns: 4rem minmax(0, 1fr);
  padding-block: clamp(2rem, 5vw, 3.25rem);
  border-bottom: 1px solid var(--line);
  gap: 1rem;
}

.numbered-sections h2 {
  max-width: 24ch;
  margin-bottom: 0.9rem;
  font-size: clamp(1.65rem, 3.4vw, 2.7rem);
}

.numbered-sections p {
  max-width: 69ch;
  color: var(--ink-soft);
  font-size: 1.06rem;
}

.evidence-panel {
  align-items: center;
  padding: clamp(1.5rem, 4vw, 3rem);
  border-left: 7px solid var(--signal);
  background: var(--paper);
}

.selection-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: clamp(2rem, 7vw, 6rem);
}

.selection-layout .section-heading {
  position: sticky;
  top: 2rem;
}

.selection-list {
  margin: 0;
  padding: 0;
  counter-reset: selection;
  list-style: none;
}

.selection-list li {
  position: relative;
  min-height: 9rem;
  padding: 0 0 2.3rem 5rem;
  counter-increment: selection;
}

.selection-list li::before {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  width: 3.2rem;
  height: 3.2rem;
  place-items: center;
  border: 2px solid var(--water);
  border-radius: 50%;
  content: counter(selection, decimal-leading-zero);
  color: var(--water);
  background: var(--paper);
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-weight: 850;
}

.selection-list li:not(:last-child)::after {
  position: absolute;
  top: 3.2rem;
  bottom: 0;
  left: 1.55rem;
  width: 2px;
  content: "";
  background: var(--line);
}

.selection-list h3 {
  margin-bottom: 0.55rem;
}

.selection-list p {
  color: var(--ink-soft);
}

.about-grid,
.contact-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.content-panel,
.contact-card,
.form-panel,
.boundary-panel {
  min-width: 0;
  padding: clamp(1.4rem, 4vw, 2.8rem);
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: 0 14px 35px rgba(8, 27, 36, 0.07);
}

.content-panel h2,
.contact-card h2 {
  margin-bottom: 1.2rem;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.boundary-panel {
  border: 0;
  border-left: 7px solid var(--signal);
}

.boundary-panel > span {
  color: var(--signal-dark);
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.boundary-panel h2 {
  max-width: 30ch;
  margin-block: 1rem;
}

.contact-card {
  color: #d7e7e8;
  background: var(--night-deep);
}

.contact-card h2,
.contact-card a {
  color: var(--white);
}

.contact-card dl {
  margin-block: 2rem;
}

.contact-card dl div {
  padding-block: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.17);
}

.contact-card dt {
  color: #a9c5c6;
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-card dd {
  margin: 0.3rem 0 0;
  font-size: clamp(1.05rem, 3vw, 1.35rem);
  font-weight: 800;
}

.form-state {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
  gap: 0.5rem 1rem;
}

.form-state strong {
  color: var(--signal-dark);
}

.form-state span {
  color: var(--ink-soft);
}

.enquiry-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1.5rem;
  gap: 1rem;
}

.enquiry-form label {
  display: grid;
  min-width: 0;
  gap: 0.4rem;
  color: var(--night-deep);
  font-size: 0.9rem;
  font-weight: 800;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid #9fb3b1;
  border-radius: 0.25rem;
  color: var(--ink);
  background: var(--white);
}

.enquiry-form input,
.enquiry-form select {
  min-height: 3rem;
  padding: 0.65rem 0.75rem;
}

.enquiry-form textarea {
  min-height: 9rem;
  padding: 0.75rem;
  resize: vertical;
}

.enquiry-form .form-wide {
  grid-column: 1 / -1;
}

.enquiry-form button:disabled {
  border-color: #7d8d8c;
  color: #eff3f2 !important;
  background: #697b7a;
  box-shadow: none;
  cursor: not-allowed;
  transform: none;
}

.field-trap {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.privacy-action {
  margin-top: 2rem;
}

.not-found {
  min-height: 35rem;
  background: var(--cream);
}

.not-found .content-panel {
  max-width: 50rem;
}

.not-found h1 {
  margin-bottom: 1rem;
}

.contact-band {
  color: var(--white);
  background: var(--water);
}

.contact-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 13rem;
  padding-block: 2rem;
  gap: 2rem;
}

.contact-band h2 {
  max-width: 24ch;
  color: var(--white);
  font-size: clamp(1.6rem, 3.4vw, 2.7rem);
}

.contact-band .eyebrow {
  color: #ffe1d6;
}

.contact-band-links {
  display: grid;
  gap: 0.55rem;
  text-align: right;
}

.contact-band-links a {
  color: var(--white);
  font-weight: 850;
}

.site-footer {
  color: #c8dcdd;
  background: var(--night-deep);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  padding-block: 4rem 3rem;
  gap: clamp(1.5rem, 4vw, 3rem);
}

.site-footer h2 {
  margin-bottom: 1rem;
  color: var(--white);
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-brand {
  color: var(--white);
  font-family: "Arial Narrow", "Aptos Display", sans-serif;
  font-size: 1.65rem;
  font-weight: 850;
}

.footer-intro p {
  max-width: 38ch;
}

.company-line {
  color: #9db7b9;
  font-size: 0.85rem;
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer li {
  margin-bottom: 0.55rem;
}

.site-footer a,
.footer-button {
  color: var(--white);
}

.footer-button {
  padding: 0;
  border: 0;
  background: transparent;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 0.2em;
  cursor: pointer;
}

.trademark-note {
  padding-block: 1.35rem;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  color: #9db7b9;
  font-size: 0.82rem;
}

.trademark-note p {
  max-width: 100ch;
  margin: 0;
}

.footer-bottom {
  padding-block: 1.4rem;
  color: #8fa9ab;
}

.consent-banner {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 100;
  width: min(31rem, calc(100% - 2rem));
  padding: 1.4rem;
  border: 1px solid #6f8989;
  border-top: 5px solid var(--signal);
  color: var(--ink);
  background: var(--paper);
  box-shadow: 0 22px 65px rgba(3, 16, 22, 0.32);
}

.consent-banner[hidden] {
  display: none;
}

.consent-banner h2 {
  margin-bottom: 0.7rem;
  font-size: 1.55rem;
}

.consent-actions {
  display: flex;
  flex-wrap: wrap;
  margin-block: 1rem;
  gap: 0.65rem;
}

/* Product catalogue */
.catalogue-summary {
  border-block: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
  background: var(--night-deep);
}

.catalogue-summary-inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.catalogue-summary p {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  min-width: 0;
  margin: 0;
  padding: 1.35rem clamp(1rem, 3vw, 2rem);
  gap: 0.85rem;
}

.catalogue-summary p + p {
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.catalogue-summary strong {
  color: var(--water-bright);
  font-family: "Arial Narrow", "Aptos Display", ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1;
}

.catalogue-summary span {
  max-width: 22ch;
  color: #d7e7e8;
  font-size: 0.86rem;
  font-weight: 750;
  line-height: 1.35;
}

.product-index {
  position: sticky;
  top: 0;
  z-index: 15;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 247, 0.97);
  box-shadow: 0 8px 24px rgba(8, 27, 36, 0.06);
  backdrop-filter: blur(10px);
}

.product-index .wrap {
  display: flex;
  flex-wrap: wrap;
  padding-block: 0.75rem;
  gap: 0.55rem;
}

.product-index a {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  padding: 0.58rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 0.3rem;
  color: var(--night-deep);
  background: var(--paper);
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.25;
  text-decoration: none;
}

.product-index a:hover,
.product-index a:focus-visible {
  border-color: var(--water);
  color: var(--night-deep);
  background: var(--mist);
}

.product-section {
  scroll-margin-top: 6rem;
}

.product-subset {
  border-block: 1px solid var(--line);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 1.25rem;
}

.product-card {
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr) auto auto;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-top: 5px solid var(--water);
  background: var(--paper);
  box-shadow: 0 14px 35px rgba(8, 27, 36, 0.07);
}

.product-card:nth-child(3n + 2) {
  border-top-color: var(--signal);
}

.product-card:nth-child(3n) {
  border-top-color: var(--water-bright);
}

.product-card:focus-within {
  border-color: var(--water);
  box-shadow: 0 14px 35px rgba(8, 27, 36, 0.13);
}

.product-card-heading {
  display: grid;
  min-height: 10rem;
  align-content: space-between;
  min-width: 0;
  padding: 1.25rem 1.35rem;
  color: var(--white);
  background: linear-gradient(145deg, var(--night-deep), var(--night));
  gap: 1.25rem;
}

.product-series {
  display: block;
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
  font-family: "Arial Narrow", "Aptos Display", ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(2.15rem, 4.2vw, 3.8rem);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.045em;
}

.product-card-heading .product-series {
  color: var(--white);
}

.product-group-label {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  padding: 0.28rem 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #d7e7e8;
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.7rem;
  font-weight: 850;
  line-height: 1.25;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.product-card h3 {
  padding: 1.25rem 1.35rem 0;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
}

.product-card > p:not(.product-check) {
  margin: 0;
  padding: 0.8rem 1.35rem 0;
  color: var(--ink-soft);
}

.product-check {
  margin: 1.1rem 1.35rem 0;
  padding: 0.85rem 0.95rem;
  border-left: 4px solid var(--signal);
  color: var(--ink-soft);
  background: var(--mist);
  font-size: 0.88rem;
  line-height: 1.5;
}

.product-check strong {
  color: var(--night-deep);
}

.product-links {
  display: grid;
  align-content: end;
  margin-top: 1.1rem;
  padding: 0 1.35rem 1.35rem;
  gap: 0.6rem;
}

.product-links a {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  padding: 0.62rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: 0.28rem;
  color: var(--night-deep);
  background: var(--paper);
  font-size: 0.86rem;
  font-weight: 850;
  line-height: 1.3;
  text-decoration: none;
}

.product-links a:first-child {
  border-color: var(--water);
  color: var(--white);
  background: var(--water);
}

.product-links a:hover,
.product-links a:focus-visible {
  border-color: var(--signal-dark);
  color: var(--night-deep);
  background: var(--cream);
}

.product-links a:first-child:hover,
.product-links a:first-child:focus-visible {
  color: var(--white);
  background: var(--night);
}

.catalogue-action {
  margin: 2rem 0 0;
}

.product-detail-intro {
  border-bottom: 1px solid var(--line);
}

.product-detail-layout {
  display: grid;
  grid-template-columns: minmax(16rem, 0.42fr) minmax(0, 1fr);
  align-items: stretch;
  gap: clamp(1.5rem, 5vw, 4rem);
}

.product-detail-mark {
  display: grid;
  min-width: 0;
  min-height: 19rem;
  align-content: space-between;
  padding: clamp(1.4rem, 4vw, 2.5rem);
  border-top: 6px solid var(--signal);
  color: var(--white);
  background: linear-gradient(145deg, var(--night-deep), var(--night));
  box-shadow: var(--shadow);
}

.product-detail-mark span,
.product-detail-mark small {
  color: #d7e7e8;
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-detail-mark strong {
  max-width: 100%;
  overflow-wrap: anywhere;
  color: var(--white);
  font-family: "Arial Narrow", "Aptos Display", ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(3.2rem, 9vw, 6.5rem);
  line-height: 0.88;
  letter-spacing: -0.055em;
}

.product-detail-copy {
  align-self: center;
  min-width: 0;
}

.product-detail-copy h2 {
  max-width: 18ch;
}

.product-detail-copy .product-check {
  margin-inline: 0;
}

.price-section {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.price-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(18rem, 0.7fr);
  align-items: end;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.price-heading h2 {
  margin-bottom: 0;
}

.price-heading > p {
  margin: 0;
}

.price-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-top: 5px solid var(--signal);
  background: var(--white);
  box-shadow: var(--shadow);
}

.price-table {
  width: 100%;
  min-width: 48rem;
  border-collapse: collapse;
}

.price-table th,
.price-table td {
  padding: 1rem 1.15rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.price-table thead th {
  color: var(--white);
  background: var(--night-deep);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.price-table tbody th {
  max-width: 38rem;
  color: var(--night-deep);
  font-size: 0.93rem;
  line-height: 1.45;
}

.price-table td {
  white-space: nowrap;
}

.price-table td strong {
  color: var(--water);
  font-size: 1.1rem;
}

.price-table tbody tr:last-child th,
.price-table tbody tr:last-child td {
  border-bottom: 0;
}

.price-note {
  max-width: 72rem;
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.83rem;
}

.price-on-application {
  display: grid;
  grid-template-columns: minmax(16rem, 0.55fr) minmax(0, 1fr);
  align-items: center;
  gap: 2rem;
  padding: clamp(1.4rem, 4vw, 2.4rem);
  border-top: 5px solid var(--signal);
  color: var(--white);
  background: linear-gradient(145deg, var(--night-deep), var(--night));
  box-shadow: var(--shadow);
}

.price-on-application span {
  display: block;
  margin-bottom: 0.4rem;
  color: #d7e7e8;
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-on-application strong {
  display: block;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1;
}

.price-on-application p {
  margin: 0;
  color: #e7f0f0;
}

@media (max-width: 980px) {
  .price-heading,
  .price-on-application {
    grid-template-columns: 1fr;
  }

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

  .nav-toggle {
    display: inline-flex;
  }

  .navigation-inner {
    position: relative;
    min-height: 5.5rem;
  }

  .primary-navigation {
    position: absolute;
    top: calc(100% - 0.1rem);
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    flex-direction: column;
    padding: 1rem;
    border: 1px solid var(--line);
    background: var(--paper);
    box-shadow: var(--shadow);
    gap: 0;
  }

  .primary-navigation[data-open="true"] {
    display: flex;
  }

  .primary-navigation a {
    padding: 0.8rem 0.5rem;
  }

  .primary-navigation a:not(.nav-action)::after {
    bottom: 0.4rem;
  }

  .primary-navigation .nav-action {
    margin-top: 0.5rem;
  }

  .hero-layout {
    grid-template-columns: 1fr;
  }

  .source-panel {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 50rem;
  }

  .hero-illustration {
    width: min(100%, 36rem);
  }

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

  .footer-grid {
    grid-template-columns: 1.5fr repeat(3, 1fr);
  }
}

@media (max-width: 760px) {
  .catalogue-summary-inner,
  .product-grid,
  .product-detail-layout {
    grid-template-columns: 1fr;
  }

  .catalogue-summary p + p {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    border-left: 0;
  }

  .product-index {
    position: static;
  }

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

  .product-index a {
    width: 100%;
  }

  .operator-inner {
    align-items: flex-start;
    flex-direction: column;
    padding-block: 0.6rem;
    gap: 0.35rem;
  }

  .operator-links {
    flex-wrap: wrap;
    gap: 0.35rem 1rem;
  }

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

  .capability-grid p:nth-child(3) {
    border-top: 1px solid var(--line);
  }

  .capability-grid p:nth-child(4) {
    border-top: 1px solid var(--line);
    border-right: 1px solid var(--line);
  }

  .feature-grid,
  .about-grid,
  .contact-layout,
  .split-layout,
  .evidence-panel,
  .selection-layout {
    grid-template-columns: 1fr;
  }

  .selection-layout .section-heading {
    position: static;
  }

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

  .contact-band-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-band-links {
    text-align: left;
  }

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

  .footer-intro {
    grid-column: 1 / -1;
  }
}

@media (max-width: 520px) {
  .product-index .wrap {
    grid-template-columns: 1fr;
  }

  .product-card-heading {
    min-height: 8.5rem;
  }

  .product-series {
    font-size: clamp(2rem, 13vw, 3.2rem);
  }

  .product-detail-mark {
    min-height: 14rem;
  }

  .wrap {
    width: min(calc(100% - 1.25rem), var(--wrap));
  }

  .site-lockup strong {
    font-size: 1.28rem;
  }

  .site-lockup small {
    font-size: 0.65rem;
  }

  .hero-layout {
    min-height: 0;
    padding-block: 3.5rem;
  }

  .page-hero-compact .hero-layout {
    min-height: 0;
  }

  .hero-actions,
  .consent-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button,
  .consent-actions .button {
    width: 100%;
  }

  .capability-grid,
  .family-grid,
  .footer-grid,
  .enquiry-form {
    grid-template-columns: 1fr;
  }

  .capability-grid p,
  .capability-grid p:last-child,
  .capability-grid p:nth-child(3),
  .capability-grid p:nth-child(4) {
    border: 0;
    border-bottom: 1px solid var(--line);
  }

  .feature-card {
    min-height: 16rem;
  }

  .family-grid article {
    min-height: 10rem;
  }

  .numbered-sections > article {
    grid-template-columns: 2.5rem minmax(0, 1fr);
  }

  .selection-list li {
    padding-left: 4.3rem;
  }

  .enquiry-form .form-wide,
  .footer-intro {
    grid-column: auto;
  }

  .consent-banner {
    right: 0.5rem;
    bottom: 0.5rem;
    width: calc(100% - 1rem);
  }
}

/* Visual system aligned with the approved blue-and-white storefront concepts. */
:root {
  --ink: #0b2142;
  --ink-soft: #45566e;
  --night: #083665;
  --night-deep: #02264e;
  --water: #075bd8;
  --water-bright: #13a8ef;
  --signal: #075bd8;
  --signal-dark: #0347ad;
  --paper: #ffffff;
  --cream: #f5f9fe;
  --mist: #eaf4ff;
  --line: #cfdaea;
  --shadow: 0 18px 45px rgba(6, 49, 101, 0.12);
  --wrap: 1544px;
}

body {
  color: var(--ink);
  background: #fff;
  font-family: "Segoe UI", Arial, ui-sans-serif, system-ui, sans-serif;
  line-height: 1.55;
}

body::before {
  background-image:
    linear-gradient(rgba(7, 91, 216, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 91, 216, 0.025) 1px, transparent 1px);
  background-size: 64px 64px;
}

h1,
h2,
h3 {
  color: var(--ink);
  font-family: "Segoe UI", Arial, ui-sans-serif, system-ui, sans-serif;
  font-weight: 750;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 16ch;
  font-size: clamp(2.65rem, 5.7vw, 5.2rem);
  line-height: 1.04;
}

h2 {
  font-size: clamp(1.8rem, 3.6vw, 3rem);
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.site-header {
  border-bottom: 1px solid #dce5f0;
  background: #fff;
  box-shadow: 0 8px 30px rgba(2, 38, 78, 0.05);
}

.operator-bar {
  color: #fff;
  background: #022b58;
  font-size: 0.88rem;
}

.operator-inner {
  min-height: 2.5rem;
}

.operator-links,
.operator-contact {
  align-items: center;
  gap: clamp(0.8rem, 2.6vw, 2.1rem);
}

.operator-links a,
.operator-links > span,
.operator-assurance {
  display: inline-flex;
  align-items: center;
  margin: 0;
  color: #fff;
  gap: 0.45rem;
  font-weight: 600;
  text-decoration: none;
}

.operator-links a span,
.operator-links > span > span,
.operator-assurance > span {
  color: #4bb8ff;
}

.navigation-shell {
  background: #fff;
}

.navigation-inner {
  display: grid;
  grid-template-columns: minmax(19rem, 21rem) minmax(0, 1fr);
  min-height: 6.35rem;
  gap: 2rem;
}

.site-lockup {
  width: min(20rem, 29vw);
  gap: 0.32rem;
}

.site-lockup .brand-logos {
  display: flex;
  width: auto;
  height: auto;
  margin: 0;
  align-items: center;
  gap: 0.8rem;
  border-radius: 0;
  background: none;
  transform: none;
}

.brand-logo {
  display: inline-flex;
  margin: 0;
  align-items: center;
  color: inherit;
  font-size: inherit;
  letter-spacing: normal;
  text-transform: none;
}

.brand-logo img {
  display: block;
  width: auto;
  object-fit: contain;
}

.brand-logo-alton img {
  height: 3.25rem;
}

.brand-logo-hcp img {
  height: 2.65rem;
}

.brand-divider {
  width: 1px;
  height: 2.8rem;
  margin: 0;
  background: #cbd9e8;
}

.site-lockup small {
  margin-top: 0;
  color: #0864df;
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.primary-navigation {
  justify-content: flex-start;
  gap: clamp(1.15rem, 2.4vw, 2.7rem);
}

.primary-navigation a {
  color: #10254a;
  font-size: 0.98rem;
  font-weight: 650;
}

.primary-navigation a:not(.nav-action)::after {
  height: 3px;
  background: #0864df;
}

.primary-navigation .nav-search {
  display: grid;
  width: 2.4rem;
  height: 2.4rem;
  margin-left: auto;
  padding: 0;
  place-items: center;
}

.primary-navigation .nav-search::after {
  display: none;
}

.nav-search > span {
  position: relative;
  display: block;
  width: 1rem;
  height: 1rem;
  border: 2px solid #10254a;
  border-radius: 50%;
}

.nav-search > span::after {
  position: absolute;
  right: -0.38rem;
  bottom: -0.25rem;
  width: 0.48rem;
  height: 2px;
  content: "";
  background: #10254a;
  transform: rotate(48deg);
  transform-origin: left center;
}

.nav-action,
.button {
  min-height: 3.15rem;
  padding: 0.78rem 1.35rem;
  border: 1px solid #075bd8;
  border-radius: 0.38rem;
  color: #fff !important;
  background: linear-gradient(135deg, #0864df, #0352c9);
  box-shadow: 0 7px 18px rgba(7, 91, 216, 0.2);
  font-weight: 750;
}

.nav-action:hover,
.button:hover {
  background: #0347ad;
  box-shadow: 0 9px 22px rgba(7, 91, 216, 0.26);
}

.button-secondary {
  border: 1px solid #075bd8;
  color: #075bd8 !important;
  background: #fff;
  box-shadow: none;
}

.button-secondary:hover {
  color: #0347ad !important;
  background: #eef6ff;
}

.page-hero {
  color: var(--ink);
  border-bottom: 1px solid #d7e6f7;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 252, 255, 0.95) 54%, rgba(229, 244, 255, 0.84) 100%),
    repeating-linear-gradient(0deg, rgba(7, 91, 216, 0.075) 0 1px, transparent 1px 36px),
    repeating-linear-gradient(90deg, rgba(7, 91, 216, 0.075) 0 1px, transparent 1px 36px);
}

.page-hero::before,
.page-hero::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.page-hero::before {
  top: 3rem;
  right: 4%;
  width: min(42vw, 42rem);
  height: 72%;
  border: 1px solid rgba(7, 91, 216, 0.12);
  border-radius: 8rem 1rem 7rem 2rem;
  box-shadow:
    inset 5rem 0 0 rgba(255, 255, 255, 0.28),
    -7rem 5rem 0 -6.95rem rgba(7, 91, 216, 0.22);
  transform: rotate(-3deg);
}

.page-hero::after {
  right: -6rem;
  bottom: -10rem;
  width: 28rem;
  height: 28rem;
  border: 1px solid rgba(7, 91, 216, 0.1);
}

.hero-layout {
  grid-template-columns: minmax(0, 0.9fr) minmax(25rem, 1.1fr);
  min-height: 29rem;
  padding-block: clamp(2.4rem, 4vw, 3.4rem);
}

.hero-layout-text {
  grid-template-columns: minmax(0, 62rem);
  min-height: 22rem;
}

.page-hero-compact .hero-layout {
  min-height: 0;
  padding-block: clamp(2.2rem, 3.6vw, 3.25rem);
}

.hero-copy h1,
.page-hero h2 {
  color: #09234a;
}

.page-hero:not(.page-hero-compact) .hero-copy h1 {
  max-width: 21ch;
  font-size: clamp(3rem, 4.1vw, 4rem);
  line-height: 1.05;
}

.page-hero-compact .hero-copy h1 {
  max-width: 22ch;
  font-size: clamp(2.65rem, 4vw, 3.75rem);
  line-height: 1.05;
}

.hero-intro {
  max-width: 55ch;
  margin-top: 1.25rem;
  color: #526077;
  font-size: clamp(1.08rem, 2vw, 1.38rem);
  line-height: 1.45;
}

.eyebrow {
  color: #075bd8;
}

.breadcrumbs {
  margin-bottom: 1.75rem;
}

.breadcrumbs li,
.breadcrumbs a {
  color: #2f5f9e;
}

.breadcrumbs li:not(:last-child)::after {
  color: #7e8da3;
}

.hero-illustration {
  width: min(100%, 35rem);
  justify-self: end;
  padding: 1rem;
  border: 1px solid rgba(7, 91, 216, 0.18);
  border-radius: 0.55rem;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 48px rgba(7, 91, 216, 0.14);
  transform: none;
}

.hero-illustration figcaption {
  color: #66758a;
}

.featured-range-section {
  padding-block: 1.15rem;
  border-bottom: 1px solid #dce6f2;
  background: #fff;
}

.featured-range-section .wrap,
.selection-callout .wrap {
  width: min(calc(100% - 2rem), 98rem);
}

.range-tile-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1rem;
}

.range-tile {
  position: relative;
  display: grid;
  grid-template-columns: 6.4rem minmax(0, 1fr);
  align-items: center;
  min-width: 0;
  min-height: 10.3rem;
  padding: 0.65rem 0.8rem;
  border: 1px solid #d4dfec;
  border-radius: 0.45rem;
  color: #09234a;
  background: #fff;
  gap: 0.55rem;
  text-decoration: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.range-tile:hover,
.range-tile:focus-visible {
  border-color: #075bd8;
  color: #09234a;
  box-shadow: 0 12px 28px rgba(7, 91, 216, 0.12);
  transform: translateY(-2px);
}

.range-tile-photo {
  display: grid;
  width: 6.4rem;
  height: 9rem;
  place-items: center;
  overflow: hidden;
  border-radius: 0.3rem;
  background: linear-gradient(145deg, #fff, #f4f9ff);
}

.range-tile-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.range-tile strong,
.range-tile small {
  display: block;
  overflow-wrap: normal;
}

.range-tile strong {
  font-size: 1rem;
  line-height: 1.25;
}

.range-tile-copy {
  display: grid;
  align-content: center;
  justify-items: start;
  padding-right: 0.6rem;
  gap: 0.6rem;
}

.range-tile-icon {
  display: grid;
  width: 3.15rem;
  height: 3.15rem;
  place-items: center;
  border: 1px solid #9eb1c8;
  border-radius: 50%;
  color: #102b58;
  background: #fff;
}

.range-tile-icon svg {
  width: 1.75rem;
  height: 1.75rem;
}

.range-tile small {
  margin-top: 0.38rem;
  color: #68778a;
  font-size: 0.72rem;
  line-height: 1.25;
}

.range-tile b {
  position: absolute;
  right: 0.65rem;
  bottom: 0.65rem;
  color: #075bd8;
  font-size: 1.4rem;
}

.selection-callout {
  padding-block: 0.15rem 1.65rem;
  background: #fff;
}

.selection-callout-inner {
  display: grid;
  grid-template-columns: auto minmax(18rem, 1.2fr) minmax(22rem, 1fr) auto;
  align-items: center;
  min-height: 7.35rem;
  padding: 1rem 1.35rem;
  border: 1px solid #c5dbf5;
  border-radius: 0.5rem;
  background: linear-gradient(90deg, #edf6ff, #e8f3ff);
  gap: clamp(1rem, 3vw, 2.3rem);
}

.support-roundel {
  display: grid;
  width: 4.7rem;
  height: 4.7rem;
  place-items: center;
  border: 2px solid #075bd8;
  border-radius: 50%;
  color: #075bd8;
  background: #fff;
  font-size: 0;
}

.support-roundel svg {
  width: 2.9rem;
  height: 2.9rem;
}

.selection-callout h2 {
  margin-bottom: 0.35rem;
  font-size: clamp(1.45rem, 2.8vw, 2.25rem);
}

.selection-callout p {
  margin: 0;
  color: #58697f;
}

.selection-callout ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  gap: 0.55rem 1rem;
  color: #124687;
  list-style: none;
}

.selection-callout li::before {
  display: inline-grid;
  width: 1.3rem;
  height: 1.3rem;
  place-items: center;
  margin-right: 0.5rem;
  border: 1px solid #075bd8;
  border-radius: 50%;
  content: "✓";
  color: #075bd8;
  font-size: 0.78rem;
  font-weight: 900;
}

.capability-strip {
  border-block: 1px solid #dce6f2;
  background: #f8fbff;
}

.capability-grid p,
.capability-grid p:last-child {
  border-color: #dce6f2;
}

.capability-grid span {
  color: #075bd8;
}

.section {
  padding-block: clamp(3.5rem, 7vw, 6rem);
}

.section-tint {
  background: #f6faff;
}

.section-dark {
  color: #dbeaff;
  background: linear-gradient(135deg, #022b58, #053d77);
}

.feature-card,
.content-panel,
.form-panel,
.boundary-panel {
  border-color: #d5e0ed;
  border-top-color: #075bd8;
  border-radius: 0.5rem;
  background: #fff;
  box-shadow: 0 14px 36px rgba(6, 49, 101, 0.08);
}

.feature-card:nth-child(2),
.feature-card:nth-child(3) {
  border-top-color: #075bd8;
}

.card-index,
.family-grid span,
.numbered-sections > article > span {
  color: #075bd8;
}

.evidence-panel {
  border: 1px solid #c5dbf5;
  border-left: 6px solid #075bd8;
  border-radius: 0.5rem;
  background: #fff;
  box-shadow: 0 12px 30px rgba(6, 49, 101, 0.08);
}

.catalogue-summary {
  border-color: #c5dbf5;
  color: #09234a;
  background: linear-gradient(90deg, #edf6ff, #f8fbff);
}

.catalogue-summary p + p {
  border-color: #c5dbf5;
}

.catalogue-summary strong {
  color: #075bd8;
}

.catalogue-summary span {
  color: #45566e;
}

.product-index {
  border-color: #dce6f2;
  background: rgba(255, 255, 255, 0.97);
}

.product-index a {
  border-color: #cfdceb;
  color: #0b2853;
  background: #fff;
}

.range-browser {
  display: grid;
  grid-template-columns: minmax(16rem, 0.33fr) minmax(0, 1fr);
  align-items: start;
  gap: 1.3rem;
}

.range-filter-panel {
  padding: 1.4rem;
  border: 1px solid #d3deea;
  border-radius: 0.5rem;
  background: #fff;
  box-shadow: 0 12px 28px rgba(6, 49, 101, 0.06);
}

.range-filter-panel h3 {
  margin-bottom: 0.8rem;
  font-size: 1.35rem;
}

.range-filter-panel details {
  border-bottom: 1px solid #dbe4ef;
}

.range-filter-panel summary {
  padding: 0.95rem 0;
  color: #10254a;
  font-weight: 700;
  cursor: pointer;
}

.range-filter-panel details p {
  padding-bottom: 0.9rem;
  color: #617086;
  font-size: 0.88rem;
}

.range-filter-panel .button {
  width: 100%;
  margin-top: 1.15rem;
}

.product-grid {
  gap: 1.1rem;
}

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

.product-card {
  border: 1px solid #d3deea;
  border-top: 1px solid #d3deea;
  border-radius: 0.5rem;
  background: #fff;
  box-shadow: 0 10px 28px rgba(6, 49, 101, 0.07);
}

.product-card:nth-child(3n + 2),
.product-card:nth-child(3n) {
  border-top-color: #d3deea;
}

.product-card-heading {
  min-height: 8.4rem;
  padding: 1.2rem 1.35rem;
  color: #09234a;
  background:
    linear-gradient(135deg, rgba(236, 246, 255, 0.96), rgba(255, 255, 255, 0.96)),
    repeating-linear-gradient(0deg, rgba(7, 91, 216, 0.05) 0 1px, transparent 1px 22px);
}

.product-card-heading .product-series {
  color: #075bd8;
}

.product-series {
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.055em;
}

.product-group-label {
  border-color: #bad3f0;
  color: #24558f;
  background: #fff;
}

.product-check {
  border-left-color: #075bd8;
  background: #eef6ff;
}

.product-links a:first-child {
  border-color: #075bd8;
  background: #075bd8;
}

.product-links a:hover,
.product-links a:focus-visible {
  border-color: #075bd8;
  background: #eef6ff;
}

.product-detail-intro {
  background: #fff;
}

.product-detail-mark {
  min-height: 16rem;
  border: 1px solid #bdd5f1;
  border-top: 5px solid #075bd8;
  border-radius: 0.5rem;
  color: #09234a;
  background: linear-gradient(145deg, #eaf4ff, #fff);
  box-shadow: 0 14px 36px rgba(7, 91, 216, 0.1);
}

.product-detail-mark span,
.product-detail-mark small {
  color: #456a99;
}

.product-detail-mark strong {
  color: #075bd8;
  font-family: "Segoe UI", Arial, sans-serif;
}

.price-section {
  background: #f8fbff;
}

.price-table-wrap {
  border-color: #cfdceb;
  border-top-color: #075bd8;
}

.price-table thead th {
  background: #022b58;
}

.price-table td strong {
  color: #075bd8;
}

.price-on-application {
  border-top-color: #075bd8;
  background: linear-gradient(135deg, #022b58, #0751a2);
}

.contact-band {
  background: linear-gradient(90deg, #0864df, #034ba9);
}

.contact-band .eyebrow {
  color: #cde5ff;
}

.site-footer {
  color: #ccdef2;
  background: #02264e;
}

.footer-brand {
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 2rem;
}

.consent-banner {
  border-color: #bdd1e9;
  border-top-color: #075bd8;
  border-radius: 0.5rem;
  background: #fff;
  box-shadow: 0 20px 60px rgba(2, 38, 78, 0.24);
}

/* Brief-matched homepage and A / AN product browser */
.product-card {
  grid-template-rows: 13rem auto auto minmax(0, 1fr) auto auto;
}

.product-card-media {
  display: grid;
  min-width: 0;
  height: 13rem;
  margin: 0;
  place-items: center;
  overflow: hidden;
  border-bottom: 1px solid #d7e4f1;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(237, 247, 255, 0.95)),
    repeating-linear-gradient(90deg, rgba(7, 91, 216, 0.04) 0 1px, transparent 1px 30px);
}

.product-card-media img {
  width: 100%;
  height: 100%;
  min-height: 0;
  max-height: 100%;
  padding: 0.55rem 0.8rem 0.2rem;
  object-fit: contain;
}

.product-detail-image {
  display: grid;
  min-width: 0;
  min-height: 19rem;
  margin: 0;
  place-items: center;
  overflow: hidden;
  border: 1px solid #bdd5f1;
  border-radius: 0.5rem;
  background: linear-gradient(145deg, #f8fcff, #eaf4ff);
  box-shadow: 0 14px 36px rgba(7, 91, 216, 0.1);
}

.product-detail-image img {
  width: 100%;
  height: 17rem;
  padding: 0.75rem 1rem 0.2rem;
  object-fit: contain;
}

.product-detail-image figcaption {
  width: 100%;
  padding: 0.55rem 0.8rem;
  border-top: 1px solid #d7e4f1;
  color: #536d8e;
  background: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-align: center;
}

.page-hero-home .hero-layout {
  grid-template-columns: minmax(0, 42rem) minmax(0, 1fr);
  min-height: 28.8rem;
  padding-block: 0;
  gap: 0;
}

.page-hero-home .hero-copy h1 {
  max-width: none;
  font-size: clamp(3.2rem, 3.55vw, 3.7rem);
  line-height: 1.08;
}

.page-hero-home .hero-copy {
  position: relative;
  z-index: 2;
  padding-right: 1.2rem;
}

.page-hero-home .hero-copy > .eyebrow {
  display: none;
}

.page-hero-home .hero-intro {
  max-width: 34rem;
  margin-top: 1.25rem;
  font-size: 1.25rem;
  line-height: 1.45;
}

.page-hero-home .hero-actions {
  margin-top: 1.75rem;
}

.page-hero-home .hero-illustration {
  width: min(100%, 60rem);
  align-self: end;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  transform: translate(-3rem, 0.2rem);
}

.page-hero-home .hero-illustration img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 30px rgba(7, 91, 216, 0.12));
}

.page-hero-home .hero-illustration figcaption {
  padding: 0.35rem 0.6rem 0;
  text-align: right;
}

.page-hero-home + .featured-range-section .range-tile {
  grid-template-columns: 6.4rem minmax(0, 1fr);
  padding: 0.65rem 0.8rem;
  gap: 0.65rem;
}

.page-hero-home + .featured-range-section .range-tile-photo {
  width: 6.4rem;
}

.page-hero-home + .featured-range-section .range-tile strong {
  font-size: 1rem;
}

@media (min-width: 1181px) {
  .page-hero-home .hero-copy h1 {
    width: 46rem;
  }
}

.page-hero-an .hero-layout {
  max-width: var(--wrap);
  min-height: 13.75rem;
  padding-block: 1rem 1.15rem;
}

.page-hero-an .breadcrumbs {
  margin-bottom: 1.75rem;
}

.page-hero-an .hero-copy > .eyebrow {
  display: none;
}

.page-hero-an .hero-copy h1 {
  max-width: 30ch;
  font-size: clamp(3rem, 3.55vw, 3.7rem);
  line-height: 1.04;
}

.page-hero-an .hero-intro {
  max-width: 64rem;
  margin-top: 0.75rem;
  font-size: clamp(1.1rem, 1.45vw, 1.3rem);
  line-height: 1.42;
}

.an-browser-section {
  padding-block: 0 1.55rem;
  border-bottom: 1px solid #d5e4f4;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.97), rgba(240, 248, 255, 0.94)),
    repeating-linear-gradient(0deg, rgba(7, 91, 216, 0.045) 0 1px, transparent 1px 36px),
    repeating-linear-gradient(90deg, rgba(7, 91, 216, 0.045) 0 1px, transparent 1px 36px);
}

.an-range-browser {
  grid-template-columns: 21.8rem minmax(0, 1fr);
  width: 100%;
  max-width: 91rem;
  gap: 0.9rem;
}

.an-filter-panel {
  min-height: 25.75rem;
  padding: 1.2rem 1.3rem;
}

.an-filter-panel h3 {
  margin-bottom: 0.45rem;
}

.an-filter-panel summary {
  position: relative;
  padding: 0.85rem 1.5rem 0.85rem 0;
  list-style: none;
}

.an-filter-panel summary::-webkit-details-marker {
  display: none;
}

.an-filter-panel summary::after {
  position: absolute;
  top: 50%;
  right: 0.15rem;
  width: 0.55rem;
  height: 0.55rem;
  border-right: 2px solid #10254a;
  border-bottom: 2px solid #10254a;
  content: "";
  transform: translateY(-65%) rotate(45deg);
  transition: transform 150ms ease;
}

.an-filter-panel details[open] summary::after {
  transform: translateY(-25%) rotate(225deg);
}

.an-filter-panel .button {
  min-height: 2.85rem;
  margin-top: 0.85rem;
}

.an-model-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.an-model-card {
  display: grid;
  grid-template-columns: 13.25rem minmax(0, 1fr);
  min-width: 0;
  min-height: 12.5rem;
  overflow: hidden;
  border: 1px solid #cfdeed;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 9px 24px rgba(6, 49, 101, 0.07);
}

.an-model-visual {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  min-height: 12.5rem;
  margin: 0;
  place-items: center;
  overflow: hidden;
  border-right: 1px solid #dce8f4;
  background: linear-gradient(145deg, #fff, #edf6ff);
}

.an-model-visual > img {
  width: 100%;
  height: 12.5rem;
  padding: 0.4rem 0.55rem;
  object-fit: contain;
}

.an-model-visual figcaption {
  width: 100%;
  padding: 0.34rem 0.45rem;
  border-top: 1px solid #dce8f4;
  color: #718196;
  background: rgba(255, 255, 255, 0.9);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-align: center;
  text-transform: uppercase;
}

.an-model-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 0.75rem 0.95rem;
}

.an-model-code {
  width: fit-content;
  margin: 0 0 0.3rem;
  padding: 0.18rem 0.48rem;
  border-radius: 0.28rem;
  color: #fff;
  background: #075bd8;
  font-size: 0.73rem;
  font-weight: 800;
}

.model-visual-auto + .an-model-copy .an-model-code {
  background: #08a1df;
}

.an-model-copy h3 {
  margin: 0;
  font-size: clamp(1.55rem, 2vw, 2rem);
  line-height: 1.05;
}

.an-control-badge {
  width: fit-content;
  margin: 0;
  padding: 0.18rem 0.5rem;
  border-radius: 0.26rem;
  color: #fff;
  background: #075bd8;
  font-size: 0.72rem;
  line-height: 1.25;
}

.an-control-badge.is-automatic {
  background: #08a1df;
}

.an-model-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 0.35rem;
  gap: 0.35rem;
}

.an-model-meta .model-availability {
  margin: 0;
  padding: 0.25rem 0.5rem;
  font-size: 0.7rem;
}

.an-model-description {
  margin: 0.45rem 0 0;
  color: #5c6c81;
  font-size: 0.75rem;
  line-height: 1.35;
}

.an-model-price {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: baseline;
  margin: 0.32rem 0 0;
  gap: 0.05rem 0.45rem;
}

.an-model-price span {
  color: #56677d;
  font-size: 0.7rem;
}

.an-model-price strong {
  color: #075bd8;
  font-size: 1.08rem;
}

.an-model-price small {
  color: #65758a;
  font-size: 0.62rem;
  font-weight: 600;
}

.an-model-price b {
  grid-column: 2;
  color: #334f71;
  font-size: 0.72rem;
  font-weight: 700;
}

.an-model-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: auto;
  padding-top: 0.4rem;
  gap: 0.45rem;
}

.an-model-actions .button {
  min-height: 2.15rem;
  padding: 0.34rem 0.45rem;
  font-size: 0.72rem;
  box-shadow: none;
}

.an-selection-callout {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  margin-top: 0.9rem;
  width: 100%;
  max-width: 91rem;
  min-height: 7.1rem;
  padding: 1rem 1.35rem;
  border: 1px solid #c5dbf5;
  border-radius: 0.5rem;
  background: linear-gradient(90deg, #edf6ff, #e8f3ff);
  gap: 1.25rem;
}

.an-selection-callout .support-roundel {
  width: 3.75rem;
  height: 3.75rem;
}

.an-selection-callout .support-roundel svg {
  width: 2.4rem;
  height: 2.4rem;
}

.an-selection-callout h2 {
  margin-bottom: 0.2rem;
  font-size: clamp(1.35rem, 2.3vw, 2rem);
}

.an-selection-callout p {
  margin: 0;
  color: #58697f;
}

.model-directory-section {
  background: #f5f9fe;
}

.model-directory-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.model-directory-card {
  display: grid;
  min-width: 0;
  overflow: hidden;
  border: 1px solid #cbdced;
  border-radius: 0.55rem;
  background: #fff;
  box-shadow: 0 10px 28px rgba(9, 49, 91, 0.06);
}

.model-directory-photo {
  display: grid;
  height: 14rem;
  place-items: center;
  overflow: hidden;
  border-bottom: 1px solid #dce8f4;
  background: linear-gradient(145deg, #fff, #eef7ff);
}

.model-directory-photo img {
  width: 100%;
  height: 100%;
  min-height: 0;
  max-height: 100%;
  padding: 0.8rem;
  object-fit: contain;
  transition: transform 180ms ease;
}

.model-directory-photo:hover img {
  transform: scale(1.035);
}

.model-directory-copy {
  display: grid;
  min-width: 0;
  padding: 1rem;
  align-content: start;
}

.model-range-tag {
  margin: 0 0 0.4rem;
  color: #075bd8;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.model-availability {
  display: inline-flex;
  width: fit-content;
  margin: 0.25rem 0 0.15rem;
  padding: 0.32rem 0.62rem;
  border: 1px solid;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
  line-height: 1;
}

.model-availability.is-in_stock {
  border-color: #80c9a3;
  color: #126b42;
  background: #eaf8f1;
}

.model-availability.is-preorder {
  border-color: #9fbde8;
  color: #174f9f;
  background: #eef5ff;
}

.model-page-availability {
  margin-top: 0.75rem;
  font-size: 0.88rem;
}

.model-directory-copy h3 {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.35;
}

.model-directory-copy h3 a {
  color: #082b55;
  text-decoration: none;
}

.model-directory-copy h3 a:hover {
  color: #075bd8;
  text-decoration: underline;
}

.model-directory-price {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: baseline;
  margin: 0.9rem 0;
  padding-top: 0.8rem;
  border-top: 1px solid #e0e9f2;
  gap: 0.15rem 0.65rem;
}

.model-directory-price span,
.model-directory-price small {
  color: #64748a;
  font-size: 0.72rem;
}

.model-directory-price strong {
  color: #075bd8;
  font-size: 1.28rem;
}

.model-directory-price small {
  grid-column: 2;
}

.model-directory-price b {
  grid-column: 2;
  color: #334f71;
  font-size: 0.78rem;
  font-weight: 700;
}

.model-directory-copy .button {
  width: 100%;
  margin-top: auto;
  box-shadow: none;
}

.model-page-hero {
  padding: 2rem 0 4.4rem;
  border-bottom: 1px solid #d4e2f0;
  background:
    linear-gradient(105deg, rgba(255, 255, 255, 0.98), rgba(235, 246, 255, 0.9)),
    repeating-linear-gradient(90deg, rgba(7, 91, 216, 0.035) 0 1px, transparent 1px 34px);
}

.model-page-layout {
  display: grid;
  grid-template-columns: minmax(20rem, 0.86fr) minmax(0, 1.14fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 5.2rem);
}

.model-page-photo {
  display: grid;
  min-width: 0;
  min-height: 34rem;
  margin: 0;
  padding: 1.2rem 1.2rem 0.8rem;
  place-items: center;
  border: 1px solid #c3d8ed;
  border-radius: 0.65rem;
  background: #fff;
  box-shadow: 0 18px 44px rgba(8, 43, 82, 0.12);
}

.model-page-photo img {
  width: 100%;
  height: 30rem;
  object-fit: contain;
}

.model-page-photo figcaption {
  width: 100%;
  padding-top: 0.65rem;
  border-top: 1px solid #e0e8f1;
  color: #68778b;
  font-size: 0.72rem;
  line-height: 1.45;
}

.model-page-copy h1 {
  max-width: 18ch;
  margin: 0.55rem 0 1rem;
  color: #082b55;
  font-size: clamp(2.3rem, 4.5vw, 4.4rem);
  line-height: 1.02;
}

.model-page-range {
  color: #5d6b7f;
  font-size: 1.08rem;
}

.model-price-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 1.55rem 0 0.75rem;
  overflow: hidden;
  border: 1px solid #c7dbef;
  border-radius: 0.55rem;
  background: #fff;
}

.model-price-panel p {
  display: grid;
  margin: 0;
  padding: 1rem 1.15rem;
}

.model-price-panel p + p {
  border-left: 1px solid #d6e3f0;
}

.model-price-panel span {
  color: #66758a;
  font-size: 0.75rem;
}

.model-price-panel strong {
  color: #075bd8;
  font-size: 1.75rem;
}

.model-price-context {
  margin: 0;
  color: #5c6c80;
  font-size: 0.78rem;
}

.model-page-actions {
  margin-top: 1.4rem;
}

.model-data-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.model-data-card,
.model-download-card {
  padding: clamp(1.35rem, 3vw, 2.1rem);
  border: 1px solid #cbdced;
  border-radius: 0.6rem;
  background: #fff;
}

.model-data-card h2,
.model-download-card h2 {
  margin-top: 0.35rem;
  color: #082b55;
}

.model-data-card dl {
  margin: 1.2rem 0 0;
}

.model-data-card dl div {
  display: grid;
  grid-template-columns: minmax(8rem, 0.34fr) minmax(0, 0.66fr);
  padding: 0.7rem 0;
  border-top: 1px solid #e0e9f2;
  gap: 1rem;
}

.model-data-card dt {
  color: #64748a;
}

.model-data-card dd {
  margin: 0;
  color: #082b55;
  font-weight: 750;
}

.download-link {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  margin-top: 1.25rem;
  padding: 0.95rem 1rem;
  border: 1px solid #075bd8;
  border-radius: 0.4rem;
  color: #075bd8;
  text-decoration: none;
  gap: 0.8rem;
}

.download-link > span {
  display: grid;
  width: 2.5rem;
  height: 2.5rem;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #075bd8;
  font-size: 0.7rem;
  font-weight: 850;
}

.download-link small {
  color: #68778a;
}

.download-link:hover {
  color: #fff;
  background: #075bd8;
}

.download-link:hover > span {
  color: #075bd8;
  background: #fff;
}

.download-link:hover small {
  color: #dcecff;
}

@media (max-width: 980px) {
  .model-directory-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .model-page-layout {
    grid-template-columns: minmax(16rem, 0.8fr) minmax(0, 1.2fr);
    gap: 2rem;
  }

  .model-page-photo {
    min-height: 28rem;
  }

  .model-page-photo img {
    height: 24rem;
  }
}

@media (max-width: 760px) {
  .model-directory-grid,
  .model-page-layout,
  .model-data-grid {
    grid-template-columns: 1fr;
  }

  .model-page-photo {
    min-height: 25rem;
  }

  .model-page-photo img {
    height: 21rem;
  }

  .model-price-panel {
    grid-template-columns: 1fr;
  }

  .model-price-panel p + p {
    border-top: 1px solid #d6e3f0;
    border-left: 0;
  }
}

@media (max-width: 520px) {
  .model-directory-grid {
    grid-template-columns: 1fr;
  }

  .model-page-photo {
    min-height: 21rem;
  }

  .model-page-photo img {
    height: 17rem;
  }

  .model-data-card dl div {
    grid-template-columns: 1fr;
    gap: 0.15rem;
  }

  .download-link {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .download-link small {
    grid-column: 2;
  }
}

@media (max-width: 1180px) {
  .range-tile-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .selection-callout-inner {
    grid-template-columns: auto minmax(0, 1fr) auto;
  }

  .selection-callout ul {
    grid-column: 2 / 3;
    grid-row: 2;
  }

  .selection-callout .button {
    grid-column: 3;
    grid-row: 1 / 3;
  }

  .page-hero-home .hero-layout {
    grid-template-columns: minmax(29rem, 1fr) minmax(27rem, 1fr);
  }

  .an-model-card {
    grid-template-columns: 8.4rem minmax(0, 1fr);
  }

  .an-model-actions {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .navigation-inner {
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 6.2rem;
  }

  .primary-navigation {
    background: #fff;
  }

  .primary-navigation .nav-search {
    width: auto;
    height: auto;
    margin-left: 0;
    padding: 0.7rem 0;
    place-items: start;
  }

  .hero-layout {
    grid-template-columns: 1fr;
  }

  .hero-illustration {
    width: min(100%, 32rem);
    justify-self: start;
  }

  .range-browser {
    grid-template-columns: 1fr;
  }

  .range-filter-panel {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 1.5rem;
  }

  .range-filter-panel h3,
  .range-filter-panel .button {
    grid-column: 1 / -1;
  }

  .page-hero-home .hero-layout {
    grid-template-columns: 1fr;
  }

  .page-hero-home .hero-illustration {
    justify-self: center;
    transform: none;
  }

  .an-range-browser {
    grid-template-columns: 1fr;
  }

  .an-filter-panel {
    min-height: 0;
  }
}

@media (max-width: 760px) {
  .operator-contact > span {
    display: none;
  }

  .operator-assurance {
    display: none;
  }

  .site-lockup {
    width: 12rem;
  }

  .site-lockup .brand-logos {
    gap: 0.48rem;
  }

  .brand-logo-alton img {
    height: 2.55rem;
  }

  .brand-logo-hcp img {
    height: 2rem;
  }

  .brand-divider {
    height: 2.2rem;
  }

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

  .selection-callout-inner {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .selection-callout ul,
  .selection-callout .button {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .selection-callout .button {
    width: 100%;
  }

  .product-subset .product-grid {
    grid-template-columns: 1fr;
  }

  .an-model-grid {
    grid-template-columns: 1fr;
  }

  .an-model-card {
    grid-template-columns: minmax(9rem, 0.35fr) minmax(0, 0.65fr);
  }

  .an-selection-callout {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .an-selection-callout .button {
    grid-column: 1 / -1;
  }
}

@media (max-width: 520px) {
  .operator-links {
    gap: 0.7rem;
  }

  .operator-links a {
    font-size: 0.76rem;
  }

  .site-lockup {
    width: 10.5rem;
  }

  .site-lockup .brand-logos {
    gap: 0.38rem;
  }

  .brand-logo-alton img {
    height: 2.15rem;
  }

  .brand-logo-hcp img {
    height: 1.7rem;
  }

  .site-lockup small {
    font-size: 0.54rem;
  }

  .range-tile-grid,
  .range-filter-panel {
    grid-template-columns: 1fr;
  }

  .range-tile {
    min-height: 7.4rem;
  }

  .support-roundel {
    width: 3.6rem;
    height: 3.6rem;
  }

  .page-hero-home .hero-layout {
    min-height: 0;
  }

  .page-hero-home .hero-copy h1 {
    font-size: clamp(2.45rem, 12vw, 3.1rem);
  }

  .an-model-card {
    grid-template-columns: 1fr;
  }

  .an-model-visual {
    min-height: 13.2rem;
    border-right: 0;
    border-bottom: 1px solid #dce8f4;
  }

  .an-model-actions {
    grid-template-columns: 1fr;
  }
}

@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 {
  .operator-bar,
  .nav-toggle,
  .primary-navigation,
  .contact-band,
  .consent-banner,
  .footer-button {
    display: none !important;
  }

  body,
  .page-hero,
  .section-dark,
  .site-footer {
    color: #000;
    background: #fff;
  }

  h1,
  h2,
  h3,
  .page-hero h1,
  .section-dark h2,
  .site-footer h2 {
    color: #000;
  }

  .product-index {
    position: static;
    box-shadow: none;
  }

  .catalogue-summary,
  .product-card-heading,
  .product-detail-mark {
    color: #000;
    background: #fff;
  }

  .product-card-heading .product-series,
  .product-detail-mark strong {
    color: #000;
  }
}
