:root {
  color-scheme: light;
  --paper: #f3f4ee;
  --paper-deep: #e8ebe2;
  --surface: #ffffff;
  --ink: #101716;
  --muted: #606b68;
  --line: #cbd1ca;
  --teal: #08776c;
  --teal-dark: #07564f;
  --cobalt: #3c5dcc;
  --coral: #df604a;
  --signal: #dceb49;
  --shadow: 0 24px 50px rgba(16, 23, 22, 0.12);
  font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 12px max(18px, calc((100vw - 1220px) / 2));
  background: rgba(243, 244, 238, 0.96);
  border-bottom: 1px solid var(--ink);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  text-decoration: none;
}

.brand strong,
.brand small {
  display: block;
  letter-spacing: 0;
}

.brand strong {
  font-size: 1.02rem;
  font-weight: 900;
}

.brand small {
  color: var(--muted);
  font-size: 0.76rem;
}

.brand-mark {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
}

.top-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.top-nav a {
  min-width: 34px;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 9px;
  border: 1px solid transparent;
  border-radius: 6px;
  text-decoration: none;
  transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.top-nav a:hover,
.top-nav a.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--surface);
}

main {
  width: 100%;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--teal-dark);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.06;
  letter-spacing: 0;
}

h1 {
  max-width: 900px;
  font-size: 4.75rem;
}

h2 {
  font-size: 2.4rem;
}

h3 {
  font-size: 1.15rem;
}

.lead {
  max-width: 740px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.12rem;
}

.home-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  gap: 48px;
  align-items: center;
  min-height: min(660px, calc(100svh - 112px));
  padding: 54px max(18px, calc((100vw - 1220px) / 2)) 44px;
  overflow: hidden;
  background: var(--teal);
  color: var(--surface);
}

.home-hero::after {
  content: "GALAXY";
  position: absolute;
  right: max(18px, calc((100vw - 1220px) / 2));
  bottom: -20px;
  color: rgba(255, 255, 255, 0.08);
  font-size: 8.5rem;
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 3;
}

.home-hero .eyebrow {
  color: var(--signal);
}

.home-hero h1 {
  max-width: 700px;
}

.home-hero h1 span,
.articles-hero h1 span {
  display: block;
  margin-top: 3px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.84em;
  font-style: italic;
  font-weight: 400;
  line-height: 1;
}

.home-hero .lead {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.8);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 10px 16px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  background: var(--signal);
  color: var(--ink);
}

.button.secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.48);
  color: var(--surface);
}

.button .icon {
  width: 16px;
  height: 16px;
}

.hero-metrics {
  display: flex;
  flex-wrap: wrap;
  margin: 32px 0 0;
}

.hero-metrics div {
  min-width: 98px;
  padding: 0 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-metrics div:first-child {
  padding-left: 0;
  border-left: 0;
}

.hero-metrics dt {
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1;
}

.hero-metrics dd {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-stage {
  position: relative;
  z-index: 2;
  min-width: 0;
  height: 520px;
}

.hero-stage::before,
.hero-stage::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.28);
  pointer-events: none;
}

.hero-stage::before {
  inset: 8% 10% 12% 6%;
}

.hero-stage::after {
  width: 72%;
  height: 1px;
  right: 0;
  bottom: 9%;
  background: rgba(255, 255, 255, 0.2);
  border: 0;
}

.hero-device {
  position: absolute;
  display: grid;
  justify-items: center;
  text-decoration: none;
}

.hero-device-media {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  overflow: visible;
}

.hero-device .hero-phone {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  mix-blend-mode: normal;
  filter: drop-shadow(0 30px 24px rgba(5, 31, 28, 0.34));
  transform: scale(1.42);
  transform-origin: center;
}

.hero-device-label {
  position: absolute;
  bottom: -21px;
  min-width: max-content;
  padding-top: 5px;
  border-top: 1px solid rgba(255, 255, 255, 0.7);
  color: var(--surface);
  font-size: 0.72rem;
  font-weight: 850;
}

.hero-device-1 {
  z-index: 3;
  width: 260px;
  height: 405px;
  right: 23%;
  top: 6%;
}

.hero-device-2 {
  z-index: 2;
  width: 238px;
  height: 350px;
  left: 0;
  bottom: 4%;
  transform: rotate(-3deg);
}

.hero-device-3 {
  z-index: 1;
  width: 220px;
  height: 330px;
  right: -1%;
  bottom: 7%;
  transform: rotate(3deg);
}

.section {
  width: min(1220px, calc(100% - 32px));
  margin: 0 auto;
  padding: 58px 0;
  scroll-margin-top: 84px;
}

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

.section-heading > p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
}

.series-index {
  padding-top: 72px;
  padding-bottom: 72px;
}

.series-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  padding: 1px;
  background: var(--ink);
}

[data-series="s"] {
  --series-accent: #08776c;
  --series-soft: #dcece5;
  --series-band: #edf1e9;
}

[data-series="z"] {
  --series-accent: #3c5dcc;
  --series-soft: #e1e6f7;
  --series-band: #eceef6;
}

[data-series="a"] {
  --series-accent: #ca4f42;
  --series-soft: #f3dfda;
  --series-band: #f4eae5;
}

[data-series="m"] {
  --series-accent: #8b6a09;
  --series-soft: #edf0c9;
  --series-band: #eff0e2;
}

[data-series="other"] {
  --series-accent: #28706f;
  --series-soft: #dbe9e7;
  --series-band: #e7efed;
}

.series-index-item {
  position: relative;
  min-width: 0;
  min-height: 244px;
  overflow: hidden;
  padding: 18px 18px 20px;
  background: var(--series-soft);
  text-decoration: none;
  transition: background-color 180ms ease;
}

.series-index-item:hover {
  background: var(--surface);
}

.series-index-number {
  position: relative;
  z-index: 2;
  color: var(--series-accent);
  font-size: 0.72rem;
  font-weight: 900;
}

.series-card-copy {
  position: relative;
  z-index: 2;
  width: 72%;
  display: grid;
  align-content: start;
  gap: 6px;
  margin-top: 20px;
}

.series-card-copy > span,
.series-card-copy > em {
  color: var(--series-accent);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 850;
  text-transform: uppercase;
}

.series-card-copy > strong {
  font-size: 1.75rem;
  line-height: 1;
}

.series-card-copy > small {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.35;
}

.series-card-copy > em {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 9px;
}

.series-card-image {
  position: absolute;
  right: -14%;
  bottom: -10%;
  width: 59%;
  height: 72%;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 15px 14px rgba(16, 23, 22, 0.14));
  transform: scale(var(--product-scale, 1));
  transform-origin: center;
}

.series-section {
  width: 100%;
  padding: 72px max(18px, calc((100vw - 1220px) / 2));
  background: var(--series-band);
  border-top: 1px solid var(--line);
}

.series-section .section-heading,
.series-section .catalog-groups {
  width: min(1220px, 100%);
  margin-right: auto;
  margin-left: auto;
}

.series-heading-title {
  display: flex;
  align-items: start;
  gap: 16px;
}

.series-heading-title > span {
  color: var(--series-accent);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1;
  padding-top: 7px;
}

.series-section .eyebrow,
.model-card[data-series] .eyebrow,
.model-hero[data-series] .eyebrow {
  color: var(--series-accent);
}

.catalog-groups {
  border-top: 1px solid var(--ink);
}

.catalog-group {
  padding: 30px 0 38px;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 92px;
}

.catalog-group:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.catalog-group-heading {
  display: grid;
  grid-template-columns: minmax(240px, 0.42fr) minmax(0, 0.58fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 18px;
}

.catalog-group-heading h3 {
  font-size: 1.55rem;
}

.catalog-group-heading p:last-child {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
}

.carousel {
  position: relative;
  min-width: 0;
}

.carousel:focus {
  outline: none;
}

.carousel:focus-visible {
  outline: 3px solid rgba(8, 119, 108, 0.3);
  outline-offset: 6px;
}

.carousel-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(258px, 286px);
  gap: 16px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  scrollbar-width: none;
  padding: 2px 2px 18px;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.carousel-track > * {
  scroll-snap-align: start;
}

.carousel-controls {
  display: flex;
  justify-content: flex-end;
  gap: 7px;
  margin-bottom: 12px;
}

.icon-button {
  width: 40px;
  height: 40px;
  display: inline-grid;
  place-items: center;
  padding: 0;
  border: 1px solid var(--ink);
  border-radius: 6px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: color 160ms ease, background-color 160ms ease;
}

.icon-button:hover:not(:disabled) {
  background: var(--ink);
  color: var(--surface);
}

.icon-button:disabled {
  opacity: 0.32;
  cursor: default;
}

.icon {
  width: 18px;
  height: 18px;
}

.model-card {
  --media-image-height: 154px;
  display: grid;
  grid-template-rows: 184px 1fr;
  min-width: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--ink);
  border-radius: 7px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.model-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.model-media {
  display: grid;
  place-items: center;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  padding: 14px 18px 6px;
  background: transparent;
  text-decoration: none;
}

.model-photo {
  width: min(220px, 88%);
  max-width: 100%;
  height: var(--media-image-height);
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  transform: scale(var(--product-scale, 1));
  transform-origin: center;
}

.model-body {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 13px 15px 15px;
}

.model-body h3 {
  font-size: 1.08rem;
}

.model-body .eyebrow {
  margin-bottom: 7px;
  font-size: 0.66rem;
}

.model-body h3 a,
.article-card h3 a {
  text-decoration: none;
}

.key-facts {
  margin: 11px 0 0;
  border-top: 1px solid var(--line);
}

.key-facts div {
  display: grid;
  grid-template-columns: minmax(86px, 0.42fr) minmax(0, 1fr);
  gap: 11px;
  align-items: baseline;
  padding: 5px 0;
  border-bottom: 1px solid var(--line);
}

.key-facts dt {
  color: var(--muted);
  font-size: 0.64rem;
  font-weight: 850;
  text-transform: uppercase;
}

.key-facts dd {
  min-width: 0;
  margin: 0;
  font-size: 0.82rem;
  font-weight: 780;
  text-align: right;
  overflow-wrap: anywhere;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  width: fit-content;
  margin-top: auto;
  padding-top: 12px;
  color: var(--teal-dark);
  font-size: 0.86rem;
  font-weight: 850;
  text-decoration: none;
}

.text-link .icon {
  width: 15px;
  height: 15px;
  transition: transform 160ms ease;
}

.text-link:hover .icon {
  transform: translate(2px, -2px);
}

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

.article-list {
  border-top: 2px solid var(--ink);
}

.article-list-item {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(150px, 0.22fr) minmax(0, 1fr) 42px;
  gap: 24px;
  align-items: start;
  padding: 22px 0;
  border-bottom: 1px solid var(--ink);
  text-decoration: none;
  transition: color 160ms ease, padding 160ms ease;
}

.article-list-item:hover {
  padding-right: 8px;
  padding-left: 8px;
  color: var(--teal-dark);
}

.article-list-meta {
  display: grid;
  gap: 7px;
  color: var(--teal-dark);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.article-list-meta small {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 750;
}

.article-list-copy {
  min-width: 0;
  display: grid;
  gap: 8px;
}

.article-list-copy > strong {
  font-size: 1.34rem;
  line-height: 1.14;
}

.article-list-copy > span {
  max-width: 760px;
  color: var(--muted);
  font-size: 0.92rem;
}

.article-list-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 6px;
}

.breadcrumbs {
  width: min(1220px, calc(100% - 32px));
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0 auto;
  padding-top: 22px;
  color: var(--muted);
  font-size: 0.84rem;
}

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

.breadcrumbs a::after {
  content: "/";
  margin-left: 7px;
  color: var(--muted);
}

.model-hero {
  width: min(1220px, calc(100% - 32px));
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(430px, 1.1fr);
  gap: 56px;
  align-items: center;
  margin: 0 auto;
  padding: 54px 0 58px;
  background: var(--series-band);
  box-shadow: 0 0 0 100vmax var(--series-band);
  clip-path: inset(0 -100vmax);
}

.model-hero > *,
.model-gallery {
  min-width: 0;
}

.model-hero h1 {
  max-width: 630px;
  font-size: 4.3rem;
}

.model-intro {
  max-width: 590px;
  margin: 20px 0 0;
  color: var(--muted);
}

.model-hero .key-facts {
  max-width: 620px;
  margin-top: 26px;
  border-top-color: var(--ink);
}

.model-hero .key-facts div {
  padding: 8px 0;
  border-bottom-color: color-mix(in srgb, var(--ink) 28%, transparent);
}

.model-gallery .carousel-track {
  grid-auto-columns: 100%;
}

.gallery-slide {
  display: grid;
  place-items: center;
  height: 400px;
  min-height: 0;
  margin: 0;
  padding: 10px 24px;
  overflow: visible;
  background: transparent;
}

.gallery-slide img {
  width: 100%;
  max-width: 100%;
  height: 350px;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  transform: scale(var(--product-scale, 1));
  transform-origin: center;
}

.specs-section {
  padding-top: 68px;
}

.spec-grid {
  display: block;
  border-top: 2px solid var(--ink);
}

.spec-section {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 28px;
  padding: 14px 0;
  border-bottom: 1px solid var(--ink);
}

.spec-heading {
  display: grid;
  grid-template-columns: 25px minmax(0, 1fr);
  gap: 8px;
  align-content: start;
}

.spec-heading > span {
  padding-top: 3px;
  color: var(--series-accent, var(--coral));
  font-size: 0.7rem;
  font-weight: 900;
}

.spec-section h2 {
  font-size: 1rem;
  line-height: 1.2;
}

.spec-details {
  min-width: 0;
  margin: 0;
}

.spec-details div {
  display: grid;
  grid-template-columns: minmax(150px, 0.32fr) minmax(0, 1fr);
  gap: 16px;
  padding: 5px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--line) 76%, transparent);
}

.spec-details div:first-child {
  padding-top: 0;
}

.spec-details div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.spec-details dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 780;
  hyphens: auto;
  overflow-wrap: anywhere;
}

.spec-details dd {
  min-width: 0;
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.source-band {
  display: grid;
  grid-template-columns: minmax(230px, 0.35fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  padding: 34px 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.source-links,
.model-sources {
  display: grid;
  border-top: 1px solid var(--ink);
}

.source-links a,
.model-sources a,
.source-list a {
  display: block;
  padding: 10px 2px;
  border-bottom: 1px solid var(--line);
  color: var(--teal-dark);
  font-size: 0.9rem;
  font-weight: 780;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.page-hero {
  width: min(1220px, calc(100% - 32px));
  margin: 0 auto;
  padding: 62px 0 36px;
}

.articles-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 50px;
  align-items: end;
  min-height: 430px;
  color: var(--surface);
  background: var(--ink);
  box-shadow: 0 0 0 100vmax var(--ink);
  clip-path: inset(0 -100vmax);
}

.articles-hero .eyebrow {
  color: var(--signal);
}

.articles-hero h1 {
  font-size: 4.35rem;
}

.articles-hero .lead {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.7);
}

.article-index-section {
  padding-top: 72px;
}

.article-page {
  width: 100%;
  margin: 0;
}

.article-hero {
  width: min(1220px, calc(100% - 32px));
  display: grid;
  grid-template-columns: minmax(0, 940px);
  margin: 0 auto;
  padding: 58px 0 62px;
  background: var(--ink);
  color: var(--surface);
  box-shadow: 0 0 0 100vmax var(--ink);
  clip-path: inset(0 -100vmax);
}

.article-hero .eyebrow {
  color: var(--signal);
}

.article-hero h1 {
  max-width: 940px;
  font-size: 4.25rem;
}

.article-hero .lead {
  max-width: 800px;
  color: rgba(255, 255, 255, 0.72);
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.article-layout {
  width: min(1220px, calc(100% - 32px));
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 54px;
  align-items: start;
  margin: 0 auto;
  padding: 58px 0 38px;
}

.article-toc {
  position: sticky;
  top: 96px;
  min-width: 0;
  padding-top: 4px;
}

.article-toc ul {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--ink);
}

.article-toc li {
  border-bottom: 1px solid var(--line);
}

.article-toc a {
  display: block;
  padding: 10px 0;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 750;
  line-height: 1.3;
  text-decoration: none;
}

.article-toc a:hover {
  color: var(--teal-dark);
}

.article-content {
  min-width: 0;
  max-width: 860px;
}

.article-summary {
  margin-bottom: 42px;
  padding: 4px 0 4px 24px;
  border-left: 5px solid var(--signal);
}

.article-summary h2 {
  margin-bottom: 14px;
  font-size: 1.35rem;
}

.article-summary p {
  max-width: 760px;
  margin: 0 0 9px;
  color: var(--muted);
}

.article-section {
  display: block;
  padding: 40px 0 48px;
  border-top: 1px solid var(--ink);
  scroll-margin-top: 92px;
}

.article-section-heading {
  margin-bottom: 22px;
}

.article-section-heading h2 {
  max-width: 700px;
  font-size: 1.8rem;
  line-height: 1.12;
}

.article-section-body {
  min-width: 0;
}

.article-section-body > p {
  max-width: 760px;
  margin: 0 0 17px;
  font-size: 1.02rem;
  line-height: 1.7;
}

.article-list-block {
  margin: 24px 0;
  padding: 12px 0 12px 20px;
  border-left: 3px solid var(--cobalt);
}

.article-list-block h3 {
  margin-bottom: 10px;
  font-size: 1rem;
}

.article-list-block ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding-left: 19px;
}

.article-note {
  margin-top: 24px;
  padding: 16px 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.article-note strong {
  display: block;
  margin-bottom: 6px;
  color: var(--teal-dark);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.article-note p {
  margin: 0;
}

.article-table-figure {
  min-width: 0;
  margin: 28px 0;
}

.article-table-figure figcaption {
  margin-bottom: 9px;
  font-size: 0.84rem;
  font-weight: 850;
}

.article-table-scroll {
  max-width: 100%;
  overflow-x: auto;
  border-top: 2px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.article-table-scroll:focus-visible {
  outline: 3px solid rgba(8, 119, 108, 0.3);
  outline-offset: 3px;
}

.article-table-figure table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  background: var(--surface);
  font-size: 0.82rem;
  line-height: 1.38;
}

.article-table-figure th,
.article-table-figure td {
  padding: 9px 11px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

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

.article-table-figure th:last-child,
.article-table-figure td:last-child {
  border-right: 0;
}

.article-table-figure thead th {
  background: var(--ink);
  color: var(--surface);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.article-table-figure tbody th {
  width: 18%;
  color: var(--teal-dark);
  font-weight: 850;
}

.not-found {
  width: min(780px, calc(100% - 32px));
  min-height: 68vh;
  display: grid;
  align-content: center;
  margin: 0 auto;
  padding: 56px 0;
}

.error-code {
  margin: 0 0 6px;
  color: var(--coral);
  font-size: 8rem;
  font-weight: 900;
  line-height: 0.9;
}

.site-footer {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  padding: 34px max(18px, calc((100vw - 1220px) / 2)) 40px;
  background: var(--ink);
  border-top: 1px solid var(--ink);
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.82rem;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 1080px) {
  h1 {
    font-size: 3.75rem;
  }

  .home-hero {
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.9fr);
    gap: 26px;
  }

  .hero-stage {
    transform: scale(0.88);
    transform-origin: center right;
  }

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

  .model-hero {
    grid-template-columns: minmax(0, 0.92fr) minmax(390px, 1.08fr);
    gap: 36px;
  }

  .model-hero h1,
  .article-hero h1,
  .articles-hero h1 {
    font-size: 3.5rem;
  }

  .article-layout {
    grid-template-columns: 200px minmax(0, 1fr);
    gap: 34px;
  }

}

@media (max-width: 820px) {
  .home-hero,
  .model-hero,
  .articles-hero {
    grid-template-columns: minmax(0, 1fr);
  }

  .home-hero {
    min-height: auto;
    padding-top: 48px;
  }

  .hero-stage {
    width: min(620px, 100%);
    margin: 0 auto;
    transform: none;
  }

  .section-heading,
  .source-band {
    display: grid;
    grid-template-columns: 1fr;
    align-items: stretch;
  }

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

  .catalog-group-heading {
    grid-template-columns: minmax(210px, 0.42fr) minmax(0, 0.58fr);
  }

  .model-hero {
    gap: 28px;
  }

  .model-hero-copy {
    max-width: 700px;
  }

  .article-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .article-toc {
    position: static;
  }

  .article-toc ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .article-toc li:nth-child(odd) {
    border-right: 1px solid var(--line);
    padding-right: 12px;
  }

  .article-toc li:nth-child(even) {
    padding-left: 12px;
  }

}

@media (max-width: 640px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .top-nav {
    width: 100%;
    justify-content: space-between;
  }

  .top-nav a {
    padding-right: 7px;
    padding-left: 7px;
  }

  h1,
  .model-hero h1,
  .article-hero h1,
  .articles-hero h1 {
    font-size: 2.55rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  .lead {
    font-size: 1rem;
  }

  .home-hero {
    gap: 12px;
    padding: 34px 11px 32px;
  }

  .home-hero::after {
    right: 11px;
    bottom: -5px;
    font-size: 4.6rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: row;
  }

  .button {
    flex: 1 1 0;
    width: auto;
    padding-right: 10px;
    padding-left: 10px;
    font-size: 0.78rem;
  }

  .hero-metrics {
    margin-top: 26px;
  }

  .hero-metrics div {
    min-width: 82px;
    padding: 0 12px;
  }

  .hero-stage {
    height: 230px;
  }

  .hero-device-1 {
    width: 112px;
    height: 180px;
    right: 34%;
    top: 0;
  }

  .hero-device-2 {
    width: 103px;
    height: 160px;
    left: 5%;
    bottom: 2%;
  }

  .hero-device-3 {
    width: 98px;
    height: 154px;
    right: 3%;
    bottom: 4%;
  }

  .hero-device span {
    bottom: -16px;
    font-size: 0.56rem;
  }

  .section,
  .model-hero,
  .breadcrumbs,
  .page-hero,
  .article-hero,
  .article-layout {
    width: min(100% - 22px, 1220px);
  }

  .section {
    padding-top: 46px;
    padding-bottom: 46px;
  }

  .series-section {
    width: 100%;
    padding: 52px 11px;
  }

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

  .series-index-item {
    min-height: 230px;
  }

  .series-card-image {
    right: -5%;
    width: 50%;
  }

  .carousel-track {
    grid-auto-columns: minmax(252px, 86vw);
  }

  .model-card {
    --media-image-height: 150px;
    grid-template-rows: 180px 1fr;
  }

  .catalog-group-heading {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .model-hero {
    padding: 38px 0 44px;
  }

  .gallery-slide {
    height: 330px;
    padding: 18px;
  }

  .gallery-slide img {
    height: 270px;
  }

  .spec-section,
  .article-section {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .spec-section {
    padding: 13px 0;
  }

  .spec-details div {
    grid-template-columns: minmax(122px, 0.36fr) minmax(0, 1fr);
    gap: 10px;
  }

  .article-hero {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 40px 0 46px;
  }

  .article-layout {
    padding-top: 36px;
  }

  .article-toc ul {
    grid-template-columns: 1fr;
  }

  .article-toc li:nth-child(odd) {
    border-right: 0;
    padding-right: 0;
  }

  .article-toc li:nth-child(even) {
    padding-left: 0;
  }

  .article-summary {
    padding: 4px 0 4px 18px;
  }

  .article-list-item {
    grid-template-columns: 1fr 38px;
    gap: 12px;
    padding: 18px 0;
  }

  .article-list-meta {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .article-list-copy > strong {
    font-size: 1.18rem;
  }

  .article-section {
    padding: 29px 0 34px;
  }

  .article-section-body > p {
    line-height: 1.58;
  }

  .article-table-figure {
    margin-right: 0;
    margin-left: 0;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 12px;
    padding-right: 11px;
    padding-left: 11px;
  }
}

@media (max-width: 420px) {
  .brand small {
    display: none;
  }

  .top-nav {
    font-size: 0.8rem;
  }

  .home-hero h1,
  .model-hero h1,
  .article-hero h1,
  .articles-hero h1 {
    font-size: 2.25rem;
  }

  .series-card-copy {
    width: 68%;
  }

  .spec-details div {
    grid-template-columns: 122px minmax(0, 1fr);
    gap: 8px;
  }

  .spec-details dt,
  .spec-details dd {
    font-size: 0.76rem;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
