:root {
  color-scheme: dark;
  --bg: #06101d;
  --bg-deep: #040a12;
  --surface: #0b1828;
  --surface-strong: #102238;
  --surface-soft: rgba(16, 34, 56, 0.66);
  --border: rgba(146, 179, 211, 0.16);
  --border-strong: rgba(107, 225, 189, 0.3);
  --text: #f2f7fb;
  --muted: #91a6ba;
  --muted-strong: #b6c7d6;
  --accent: #56e0b1;
  --accent-bright: #75f2c8;
  --accent-dark: #082e29;
  --blue: #5ea7ff;
  --danger: #ff8e8e;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
  --radius-large: 28px;
  --radius: 18px;
  --page: min(1180px, calc(100% - 40px));
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 74% 8%, rgba(29, 112, 110, 0.18), transparent 30rem),
    radial-gradient(circle at 8% 30%, rgba(37, 79, 134, 0.14), transparent 28rem),
    var(--bg);
  line-height: 1.55;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent 70%);
}

a {
  color: inherit;
}

button,
input,
select {
  font: inherit;
}

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

:focus-visible {
  outline: 3px solid rgba(117, 242, 200, 0.7);
  outline-offset: 3px;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: var(--page);
  min-height: 78px;
  margin: 0 auto;
  border-bottom: 1px solid var(--border);
}

.brand {
  display: inline-flex;
  gap: 11px;
  align-items: center;
  color: var(--text);
  font-size: 1.02rem;
  font-weight: 620;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.brand strong {
  color: var(--accent);
  font-weight: 790;
}

.brand-mark {
  position: relative;
  display: inline-flex;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  overflow: hidden;
  border: 1px solid rgba(117, 242, 200, 0.5);
  border-radius: 9px;
  background: linear-gradient(145deg, rgba(78, 221, 174, 0.2), rgba(19, 57, 77, 0.3));
  box-shadow: inset 0 0 18px rgba(86, 224, 177, 0.11);
}

.brand-mark::before {
  position: absolute;
  top: 8px;
  right: 7px;
  bottom: 8px;
  left: 7px;
  content: "";
  border: 1px solid var(--accent);
  border-radius: 3px;
}

.brand-mark span {
  position: absolute;
  width: 2px;
  height: 3px;
  background: var(--accent);
}

.brand-mark span:nth-child(1) {
  top: 4px;
  left: 9px;
}

.brand-mark span:nth-child(2) {
  top: 4px;
  left: 14px;
}

.brand-mark span:nth-child(3) {
  top: 4px;
  left: 19px;
}

.site-header nav {
  display: flex;
  gap: 30px;
  align-items: center;
}

.site-header nav a {
  color: var(--muted-strong);
  font-size: 0.9rem;
  font-weight: 580;
  text-decoration: none;
}

.site-header nav a:hover {
  color: var(--accent-bright);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: 60px;
  align-items: center;
  width: var(--page);
  min-height: 590px;
  margin: 0 auto;
  padding: 80px 0 86px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1,
.detail-hero h1,
.message-page h1 {
  margin: 0;
  font-size: clamp(3.3rem, 6.6vw, 6.2rem);
  font-weight: 760;
  letter-spacing: -0.068em;
  line-height: 0.96;
}

.hero h1 span {
  color: transparent;
  background: linear-gradient(105deg, var(--accent-bright), #83d7ff);
  background-clip: text;
  -webkit-background-clip: text;
}

.hero-text {
  max-width: 660px;
  margin: 28px 0 0;
  color: var(--muted-strong);
  font-size: clamp(1rem, 1.4vw, 1.17rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  padding: 0 20px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 12px;
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 730;
  text-decoration: none;
  transition: 150ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.38;
  transform: none;
}

.button-primary {
  color: #04140f;
  background: var(--accent);
  box-shadow: 0 10px 32px rgba(86, 224, 177, 0.16);
}

.button-primary:hover {
  background: var(--accent-bright);
}

.button-secondary,
.button-quiet {
  color: var(--muted-strong);
  border-color: var(--border);
  background: rgba(10, 26, 42, 0.64);
}

.button-secondary:hover,
.button-quiet:hover {
  color: var(--text);
  border-color: rgba(117, 242, 200, 0.32);
}

.demo-note,
.detail-demo {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.demo-note span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #f3c969;
  box-shadow: 0 0 0 5px rgba(243, 201, 105, 0.08);
}

.hero-visual {
  position: relative;
  min-height: 400px;
  perspective: 900px;
}

.drive-board {
  position: absolute;
  top: 75px;
  left: 50%;
  width: 390px;
  max-width: 86%;
  height: 178px;
  border: 1px solid rgba(117, 242, 200, 0.45);
  border-radius: 18px 9px 9px 18px;
  background:
    linear-gradient(135deg, rgba(117, 242, 200, 0.09), transparent 48%),
    linear-gradient(145deg, #12372f, #0a2727 56%, #0a1e27);
  box-shadow:
    inset 0 0 0 6px rgba(7, 15, 22, 0.18),
    inset 0 0 55px rgba(77, 236, 182, 0.06),
    0 40px 90px rgba(0, 0, 0, 0.44);
  transform: rotateX(57deg) rotateZ(-23deg);
  transform-style: preserve-3d;
}

.drive-board::before {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 12px;
  height: 12px;
  content: "";
  border: 2px solid rgba(117, 242, 200, 0.6);
  border-radius: 50%;
  background: var(--bg-deep);
}

.drive-board::after {
  position: absolute;
  right: -2px;
  bottom: 35px;
  width: 16px;
  height: 50px;
  content: "";
  border-radius: 5px 0 0 5px;
  background: var(--bg);
}

.connector {
  position: absolute;
  top: 28px;
  bottom: 28px;
  left: -19px;
  width: 22px;
  border-radius: 5px 0 0 5px;
  background: repeating-linear-gradient(
    to bottom,
    #d9b56c 0 6px,
    #7e6331 6px 9px
  );
}

.chip {
  position: absolute;
  display: grid;
  place-items: center;
  border: 1px solid rgba(192, 255, 232, 0.16);
  border-radius: 5px;
  background: linear-gradient(145deg, #14282b, #061416);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.28);
}

.chip::after {
  position: absolute;
  inset: -5px;
  z-index: -1;
  content: "";
  background: repeating-linear-gradient(
    90deg,
    transparent 0 8px,
    rgba(177, 211, 194, 0.4) 8px 10px
  );
}

.chip small {
  color: rgba(117, 242, 200, 0.62);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.chip-controller {
  top: 49px;
  left: 58px;
  width: 72px;
  height: 72px;
}

.chip-a,
.chip-b,
.chip-c {
  top: 43px;
  width: 60px;
  height: 82px;
}

.chip-a {
  left: 163px;
}

.chip-b {
  left: 239px;
}

.chip-c {
  left: 315px;
}

.board-line {
  position: absolute;
  height: 1px;
  background: rgba(117, 242, 200, 0.35);
}

.line-a {
  top: 30px;
  left: 50px;
  width: 260px;
}

.line-b {
  bottom: 27px;
  left: 80px;
  width: 220px;
}

.board-dot {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
}

.dot-a {
  top: 26px;
  left: 45px;
}

.dot-b {
  right: 67px;
  bottom: 23px;
}

.drive-shadow {
  position: absolute;
  top: 200px;
  left: 14%;
  width: 78%;
  height: 120px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.52);
  filter: blur(28px);
  transform: rotate(-10deg);
}

.visual-orbit {
  position: absolute;
  border: 1px solid rgba(94, 167, 255, 0.12);
  border-radius: 50%;
}

.orbit-one {
  top: 20px;
  right: 12px;
  width: 320px;
  height: 320px;
}

.orbit-two {
  top: 72px;
  right: 66px;
  width: 210px;
  height: 210px;
  border-color: rgba(86, 224, 177, 0.14);
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: var(--page);
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(8, 22, 36, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.stats article {
  display: flex;
  min-height: 118px;
  padding: 25px 30px;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--border);
}

.stats article:last-child {
  border-right: 0;
}

.stats strong {
  font-size: 1.75rem;
  font-weight: 740;
  letter-spacing: -0.04em;
}

.stats span {
  color: var(--muted);
  font-size: 0.8rem;
}

.status-stat strong {
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--accent);
  font-size: 1rem;
  letter-spacing: 0;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(86, 224, 177, 0.08);
}

.catalog-section,
.methodology {
  width: var(--page);
  margin: 0 auto;
  padding: 120px 0 20px;
}

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

.section-heading h2,
.methodology h2,
.spec-panel h2,
.variant-panel h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.35rem);
  font-weight: 710;
  letter-spacing: -0.05em;
  line-height: 1.04;
}

.section-heading p:last-child {
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 0.86rem;
}

.filters {
  display: grid;
  grid-template-columns: minmax(230px, 1.7fr) repeat(4, minmax(130px, 1fr)) auto;
  gap: 10px;
  padding: 13px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(8, 22, 36, 0.78);
}

.filters label {
  position: relative;
}

.filters label > span {
  position: absolute;
  top: 8px;
  left: 13px;
  z-index: 1;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.filters input,
.filters select {
  width: 100%;
  min-height: 58px;
  padding: 24px 36px 7px 12px;
  color: var(--text);
  border: 1px solid transparent;
  border-radius: 11px;
  outline: none;
  background: var(--surface);
  font-size: 0.84rem;
}

.filters input:hover,
.filters select:hover,
.filters input:focus,
.filters select:focus {
  border-color: rgba(117, 242, 200, 0.25);
  background: var(--surface-strong);
}

.filters input::placeholder {
  color: #6e8599;
}

.filters .button {
  min-height: 58px;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.ssd-card {
  display: flex;
  min-height: 430px;
  padding: 24px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background:
    linear-gradient(150deg, rgba(20, 48, 70, 0.34), transparent 50%),
    rgba(8, 21, 34, 0.9);
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.ssd-card:hover {
  border-color: rgba(117, 242, 200, 0.28);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.22);
  transform: translateY(-2px);
}

.card-header {
  display: flex;
  gap: 18px;
  align-items: start;
  justify-content: space-between;
}

.card-brand {
  margin: 0 0 3px;
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 770;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.card-header h3 {
  margin: 0;
  font-size: 1.4rem;
  letter-spacing: -0.035em;
  line-height: 1.18;
}

.card-header h3 a {
  text-decoration: none;
}

.card-header h3 a:hover {
  color: var(--accent-bright);
}

.status-badge {
  display: inline-flex;
  flex: 0 0 auto;
  padding: 5px 9px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--muted-strong);
  background: rgba(11, 24, 40, 0.84);
  font-size: 0.63rem;
  font-weight: 740;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.status-current {
  color: var(--accent);
  border-color: rgba(86, 224, 177, 0.22);
  background: rgba(17, 82, 68, 0.18);
}

.status-discontinued {
  color: #d1a5a5;
}

.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 18px;
}

.card-tags span {
  padding: 5px 8px;
  color: #a8bad0;
  border: 1px solid rgba(144, 175, 207, 0.12);
  border-radius: 6px;
  background: rgba(4, 13, 23, 0.35);
  font-size: 0.68rem;
}

.card-description {
  min-height: 66px;
  margin: 19px 0 21px;
  color: var(--muted);
  font-size: 0.82rem;
}

.card-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 22px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.card-metric {
  display: flex;
  padding: 15px 7px;
  flex-direction: column;
  border-right: 1px solid var(--border);
}

.card-metric:first-child {
  padding-left: 0;
}

.card-metric:last-child {
  border-right: 0;
}

.card-metric span {
  color: var(--muted);
  font-size: 0.61rem;
  text-transform: uppercase;
}

.card-metric strong {
  margin-top: 4px;
  font-size: 0.78rem;
}

.card-footer {
  display: flex;
  gap: 16px;
  align-items: end;
  justify-content: space-between;
  margin-top: auto;
}

.capacity-list > span {
  color: var(--muted);
  font-size: 0.64rem;
  text-transform: uppercase;
}

.capacity-list > div {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.capacity-list strong {
  padding: 3px 6px;
  color: var(--muted-strong);
  border-radius: 5px;
  background: rgba(94, 167, 255, 0.08);
  font-size: 0.68rem;
}

.card-link {
  flex: 0 0 auto;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 720;
  text-decoration: none;
}

.card-link::after {
  content: " →";
}

.card-link:hover {
  color: var(--accent-bright);
}

.card-skeleton {
  pointer-events: none;
}

.card-skeleton span {
  height: 20px;
  margin-bottom: 20px;
  border-radius: 8px;
  background: linear-gradient(90deg, var(--surface), var(--surface-strong), var(--surface));
  background-size: 200% 100%;
  animation: skeleton 1.4s linear infinite;
}

.card-skeleton span:nth-child(2) {
  width: 70%;
  height: 44px;
}

.card-skeleton span:nth-child(3) {
  height: 90px;
}

.card-skeleton span:nth-child(4) {
  margin-top: auto;
  margin-bottom: 0;
  height: 55px;
}

@keyframes skeleton {
  to {
    background-position: -200% 0;
  }
}

.empty-state,
.catalog-error {
  margin-top: 22px;
  padding: 60px 24px;
  text-align: center;
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  background: rgba(8, 21, 34, 0.5);
}

.empty-state > span {
  display: block;
  color: var(--accent);
  font-size: 2.5rem;
}

.empty-state h3,
.catalog-error strong {
  display: block;
  margin: 8px 0;
  font-size: 1.15rem;
}

.empty-state p,
.catalog-error p {
  margin: 0;
  color: var(--muted);
}

.pagination {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
}

.pagination span {
  min-width: 110px;
  color: var(--muted);
  font-size: 0.8rem;
  text-align: center;
}

.methodology {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
  padding-bottom: 120px;
}

.method-grid {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--border);
}

.method-grid article {
  position: relative;
  padding: 26px 28px 26px 72px;
  background: var(--surface-soft);
}

.method-grid article > span {
  position: absolute;
  top: 27px;
  left: 27px;
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 780;
}

.method-grid h3 {
  margin: 0 0 7px;
  font-size: 1rem;
}

.method-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 28px;
  align-items: center;
  width: var(--page);
  min-height: 110px;
  margin: 0 auto;
  color: var(--muted);
  border-top: 1px solid var(--border);
  font-size: 0.72rem;
}

footer p {
  margin: 0;
  text-align: center;
}

footer p:last-child {
  text-align: right;
}

.brand-footer {
  font-size: 0.85rem;
}

.brand-footer .brand-mark {
  width: 25px;
  height: 25px;
  border-radius: 7px;
}

.brand-footer .brand-mark::before {
  inset: 7px 6px;
}

.detail-shell {
  width: var(--page);
  margin: 0 auto;
  padding: 45px 0 100px;
}

.breadcrumb {
  display: flex;
  gap: 9px;
  align-items: center;
  color: var(--muted);
  font-size: 0.75rem;
}

.breadcrumb a {
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--accent);
}

.detail-demo {
  width: max-content;
  padding: 7px 11px;
  color: #dbc27f;
  border: 1px solid rgba(219, 194, 127, 0.24);
  border-radius: 8px;
  background: rgba(219, 194, 127, 0.06);
}

.detail-hero {
  display: flex;
  gap: 30px;
  align-items: start;
  justify-content: space-between;
  padding: 64px 0 55px;
}

.detail-hero h1 {
  font-size: clamp(3rem, 7vw, 6rem);
}

.detail-hero p:last-child {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--muted-strong);
  font-size: 1.05rem;
}

.spec-panel,
.variant-panel {
  margin-top: 20px;
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(8, 22, 36, 0.76);
}

.spec-panel h2,
.variant-panel h2 {
  font-size: 1.55rem;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin: 25px 0 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--border);
}

.spec-grid div {
  min-height: 100px;
  padding: 20px;
  background: var(--surface);
}

.spec-grid dt {
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 0.68rem;
  text-transform: uppercase;
}

.spec-grid dd {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 650;
}

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

.table-scroll {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  white-space: nowrap;
}

th,
td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

th {
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 720;
  text-transform: uppercase;
}

td {
  color: var(--muted-strong);
  font-size: 0.8rem;
}

td strong {
  color: var(--text);
}

tbody tr:hover {
  background: rgba(94, 167, 255, 0.04);
}

.source-link {
  margin: 25px 0 0;
  text-align: right;
}

.source-link a {
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
}

.message-page {
  display: grid;
  min-height: 100vh;
  padding: 30px;
  place-items: center;
}

.message-page main {
  width: min(680px, 100%);
  padding: 45px;
  border: 1px solid var(--border);
  border-radius: var(--radius-large);
  background: rgba(8, 22, 36, 0.85);
  box-shadow: var(--shadow);
}

.message-page .eyebrow {
  margin-top: 60px;
}

.message-page h1 {
  font-size: clamp(2.7rem, 8vw, 5rem);
}

.message-page main > p:not(.eyebrow) {
  margin: 24px 0 30px;
  color: var(--muted-strong);
}

@media (max-width: 1050px) {
  .hero {
    grid-template-columns: 1fr 0.75fr;
    gap: 20px;
  }

  .drive-board {
    width: 340px;
  }

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

  .search-field {
    grid-column: span 2;
  }

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

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

@media (max-width: 780px) {
  :root {
    --page: min(100% - 28px, 680px);
  }

  .site-header {
    min-height: 68px;
  }

  .site-header nav {
    gap: 16px;
  }

  .site-header nav a:last-child {
    display: none;
  }

  .hero {
    display: block;
    min-height: auto;
    padding: 64px 0 30px;
  }

  .hero h1 {
    font-size: clamp(3rem, 15vw, 5rem);
  }

  .hero-visual {
    min-height: 330px;
    margin-top: 35px;
  }

  .drive-board {
    left: 53%;
    width: 330px;
    transform: translateX(-50%) rotateX(57deg) rotateZ(-18deg);
  }

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

  .stats article:nth-child(2) {
    border-right: 0;
  }

  .stats article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--border);
  }

  .section-heading {
    display: block;
  }

  .section-heading > p {
    margin-top: 14px !important;
  }

  .catalog-section,
  .methodology {
    padding-top: 85px;
  }

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

  .search-field {
    grid-column: 1 / -1;
  }

  .catalog-grid {
    grid-template-columns: 1fr;
  }

  .ssd-card {
    min-height: 390px;
  }

  .methodology {
    display: block;
    padding-bottom: 85px;
  }

  .method-grid {
    margin-top: 35px;
  }

  footer {
    display: flex;
    padding: 30px 0;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  footer p:nth-child(2) {
    order: 3;
    width: 100%;
    text-align: left;
  }

  .detail-hero {
    display: block;
    padding: 48px 0 35px;
  }

  .detail-hero .status-badge {
    margin-top: 24px;
  }

  .spec-panel,
  .variant-panel {
    padding: 20px;
  }
}

@media (max-width: 500px) {
  .hero-actions {
    display: grid;
  }

  .hero-visual {
    min-height: 280px;
    overflow: hidden;
  }

  .drive-board {
    top: 55px;
    width: 285px;
  }

  .chip-c {
    display: none;
  }

  .stats article {
    min-height: 100px;
    padding: 20px;
  }

  .filters {
    grid-template-columns: 1fr;
  }

  .search-field {
    grid-column: auto;
  }

  .filters .button {
    min-height: 48px;
  }

  .card-footer {
    align-items: start;
    flex-direction: column;
  }

  .spec-grid {
    grid-template-columns: 1fr;
  }

  .message-page {
    padding: 14px;
  }

  .message-page main {
    padding: 28px;
  }
}

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