@import url('https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@0,100..900;1,100..900&family=JetBrains+Mono:ital,wght@0,100..800;1,100..800&display=swap');

/* P4C DESIGN TOKENS */
:root {
  /* Color Palette */
  --p4c-bg-base: #050C1A;
  --p4c-bg-section: #0A1628;
  --p4c-bg-layer: #0C1E3A;
  --p4c-accent: #00D4FF;
  --p4c-green: #10B981;
  --p4c-amber: #F59E0B;
  --p4c-purple: #A78BFA;
  
  /* Text Colors */
  --p4c-text-primary: #F0F6FF;
  --p4c-text-secondary: #8BA8C4;
  --p4c-text-muted: #4F6D8A;
  
  /* Glassmorphism System */
  --p4c-glass-bg: rgba(255, 255, 255, 0.04);
  --p4c-glass-border: rgba(0, 212, 255, 0.18);
  --p4c-glass-blur: blur(12px);
  --p4c-glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  
  /* Transitions */
  --p4c-transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --p4c-transition-normal: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Container Widths */
  --p4c-max-width: 1400px;
}

/* Base resets & variables utility */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--p4c-bg-base);
  color: var(--p4c-text-primary);
  font-family: 'Exo 2', sans-serif;
  font-size: 17px;
  line-height: 1.66;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

code, .tech-mono {
  font-family: 'JetBrains Mono', monospace;
}

/* Layout Elements */
.container {
  width: 100%;
  max-width: var(--p4c-max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

section {
  padding: 6rem 0;
}

.section-alt {
  background-color: var(--p4c-bg-section);
}

.section-layer {
  background-color: var(--p4c-bg-layer);
}

/* Glassmorphism Card Utility */
.glass-card {
  background: var(--p4c-glass-bg);
  backdrop-filter: var(--p4c-glass-blur);
  -webkit-backdrop-filter: var(--p4c-glass-blur);
  border: 1px solid var(--p4c-glass-border);
  border-radius: 12px;
  box-shadow: var(--p4c-glass-shadow);
  padding: 2.5rem;
  transition: all var(--p4c-transition-normal);
}

.glass-card:hover {
  border-color: rgba(0, 212, 255, 0.4);
  box-shadow: 0 0 24px rgba(0, 212, 255, 0.15);
  transform: translateY(-4px);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.8rem;
  font-family: 'Exo 2', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 6px;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--p4c-transition-fast);
}

.btn-primary {
  background-color: var(--p4c-accent);
  color: var(--p4c-bg-base);
  border: 1px solid var(--p4c-accent);
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--p4c-accent);
  box-shadow: 0 0 16px rgba(0, 212, 255, 0.4);
}

.btn-secondary {
  background-color: transparent;
  color: var(--p4c-text-primary);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: var(--p4c-text-primary);
}

/* Tech Ticker */
.ticker-wrap {
  width: 100%;
  overflow: hidden;
  background-color: #030712;
  border-top: 1px solid var(--p4c-glass-border);
  border-bottom: 1px solid var(--p4c-glass-border);
  padding: 1.2rem 0;
}

.ticker {
  display: flex;
  white-space: nowrap;
  animation: tickerScroll 30s linear infinite;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  padding: 0 2rem;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 600;
  color: var(--p4c-text-secondary);
  font-size: 1.1rem;
  text-transform: uppercase;
}

.ticker-item::after {
  content: "·";
  margin-left: 2rem;
  color: var(--p4c-accent);
  font-weight: bold;
}

@keyframes tickerScroll {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

/* Animations */
.glow-effect {
  position: relative;
}
.glow-effect::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
}

/* Generated shell layout fallback.
   Cloudflare edge CSP can block inline page styles, so these rules must also
   live in the shared stylesheet used by all generated pages. */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
}

section {
  padding: 0;
  margin: 0;
}

.header-bar {
  position: sticky;
  top: 0;
  width: 100%;
  background: rgba(5, 12, 26, 0.97);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(0, 212, 255, 0.12);
  box-shadow: 0 1px 30px rgba(0, 212, 255, 0.06);
  padding: 0.72rem clamp(1rem, 3vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  z-index: 1000;
}

.header-bar::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.4), rgba(16, 185, 129, 0.4), transparent);
}

.brand-logo img {
  height: 48px;
  width: auto;
  opacity: 0.94;
  filter: drop-shadow(0 0 12px rgba(0, 212, 255, 0.34));
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: clamp(0.5rem, 1vw, 0.9rem);
  list-style: none;
  margin: 0;
  padding: 0;
  min-width: 0;
}

.nav-menu a,
.nav-drawer a,
.text-link {
  color: var(--p4c-text-secondary);
  text-decoration: none;
}

.nav-menu > li > a {
  font-size: 0.92rem;
  white-space: nowrap;
}

.nav-menu a:hover,
.nav-drawer a:hover,
.text-link:hover {
  color: var(--p4c-accent);
}

.has-menu {
  position: relative;
}

.mega-menu {
  display: none;
  position: fixed;
  top: 67px;
  left: 50vw;
  right: auto;
  transform: translateX(-50%);
  width: min(600px, calc(100vw - 2rem));
  box-sizing: border-box;
  max-height: calc(100vh - 120px);
  overflow: auto;
  background: rgba(5, 12, 26, 0.99);
  border: 1px solid rgba(0, 212, 255, 0.18);
  border-radius: 8px;
  padding: 0.75rem;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.38);
  z-index: 1200;
}

.mega-menu[data-menu-id="products"] {
  width: min(620px, calc(100vw - 2rem));
}

.mega-menu[data-menu-id="innovation"] {
  width: min(560px, calc(100vw - 2rem));
}

.has-menu:hover .mega-menu,
.has-menu:focus-within .mega-menu {
  display: block;
}

.mega-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0.65rem;
}

.mega-heading {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.66rem;
  margin: 0.1rem 0 0.35rem;
}

.mega-link-stack {
  display: grid;
  gap: 0.2rem;
}

.mega-link-stack a {
  display: grid;
  gap: 0.08rem;
  padding: 0.36rem 0.45rem;
  border-radius: 7px;
  white-space: normal;
  line-height: 1.18;
  font-size: 0.84rem;
}

.mega-link-stack a:hover {
  background: rgba(0, 212, 255, 0.08);
}

.mega-link-stack small {
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.2;
  font-size: 0.68rem;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.nav-search {
  border: 1px solid rgba(0, 212, 255, 0.45);
  border-radius: 999px;
  padding: 0.55rem 0.85rem;
  color: var(--p4c-accent);
  font-weight: 700;
  text-decoration: none;
}

.btn-lang,
.hamburger {
  border: 1px solid rgba(0, 212, 255, 0.45);
  background: rgba(0, 212, 255, 0.04);
  color: var(--p4c-accent);
  border-radius: 8px;
  min-height: 44px;
  padding: 0.55rem 0.8rem;
  cursor: pointer;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  justify-content: center;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
}

.nav-drawer {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(5, 12, 26, 0.98);
  z-index: 1200;
  align-items: stretch;
  justify-content: flex-start;
  flex-direction: column;
  gap: 0.7rem;
  padding: 4rem 1.2rem 1.2rem;
  overflow: auto;
}

.nav-drawer.open {
  display: flex;
}

.nav-drawer-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: 0;
  color: #fff;
  font-size: 2rem;
  min-width: 44px;
  min-height: 44px;
}

.drawer-search {
  font-size: 1.15rem;
  color: #38d9ff;
}

.drawer-section {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 0.75rem;
}

.drawer-section summary {
  cursor: pointer;
}

.drawer-section summary a {
  font-weight: 800;
}

.drawer-section div {
  display: grid;
  gap: 0.45rem;
  margin-top: 0.7rem;
}

.drawer-sub-link {
  display: grid;
  gap: 0.2rem;
  padding: 0.5rem;
}

.drawer-sub-link small {
  color: rgba(255, 255, 255, 0.55);
}

.main-content {
  max-width: 1480px;
  margin: 0 auto;
  width: 100%;
  padding: 0 clamp(1rem, 3vw, 2rem);
}

.section-block {
  padding: 4.5rem 0;
}

.section-block + .section-block {
  margin-top: 0.45rem;
}

.section-alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(0, 212, 255, 0.025));
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.hero-section {
  min-height: 72vh;
  display: flex;
  align-items: center;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  margin-top: 1.25rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.42;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: clamp(2rem, 6vw, 5rem);
  background: linear-gradient(90deg, rgba(5, 12, 26, 0.96), rgba(5, 12, 26, 0.55));
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 72vh;
}

.hero-mark {
  width: min(230px, 58vw);
  height: auto;
  margin-bottom: 1rem;
  opacity: 0.56;
  filter: drop-shadow(0 0 18px rgba(0, 212, 255, 0.22));
}

.hero-eyebrow {
  color: var(--p4c-accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero-title {
  font-size: clamp(2.25rem, 6vw, 5.6rem);
  line-height: 1.02;
  margin: 0.5rem 0 1.2rem;
  color: #fff;
  max-width: 940px;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.35rem);
  color: var(--p4c-text-secondary);
  line-height: 1.65;
  max-width: 780px;
}

.section-title {
  font-size: clamp(1.65rem, 3vw, 3rem);
  color: #fff;
  margin: 0 0 1rem;
}

.section-subtitle {
  color: var(--p4c-text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 860px;
  margin: 0 0 2rem;
}

.cta-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

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

.proof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.2rem;
}

.p4c-card,
.proof-panel,
.search-result-card {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
  overflow: hidden;
}

.media-card {
  display: flex;
  flex-direction: column;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.06), rgba(16, 185, 129, 0.025));
}

.media-frame,
.advantage-media {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: rgba(0, 212, 255, 0.035);
}

.media-frame img,
.advantage-media img {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.p4c-card-body,
.proof-panel {
  padding: clamp(1.1rem, 2vw, 1.6rem);
}

.advantage-panel {
  padding: 0;
}

.advantage-panel .advantage-kicker,
.proof-panel > span:not(.advantage-media) {
  display: block;
  color: var(--p4c-accent);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: clamp(1rem, 2vw, 1.35rem) clamp(1.1rem, 2vw, 1.6rem) 0.35rem;
}

.advantage-panel p {
  padding: 0 clamp(1.1rem, 2vw, 1.6rem) clamp(1.2rem, 2vw, 1.6rem);
}

.p4c-card p,
.proof-panel p {
  color: var(--p4c-text-secondary);
  line-height: 1.7;
}

.registry-table {
  display: grid;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.035);
}

.registry-head,
.registry-row {
  display: grid;
  grid-template-columns: minmax(130px, 0.72fr) minmax(190px, 1fr) minmax(0, 2.3fr);
  gap: 1rem;
  align-items: start;
  padding: 0.9rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.product-registry-table .registry-head,
.product-registry-row {
  grid-template-columns: minmax(150px, 0.9fr) minmax(95px, 0.55fr) minmax(180px, 1fr) minmax(0, 2.3fr);
}

.registry-head {
  background: rgba(0, 212, 255, 0.08);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
}

.registry-row:last-child {
  border-bottom: 0;
}

.registry-id,
.registry-code {
  font-family: "JetBrains Mono", monospace;
  color: var(--p4c-accent);
  font-size: 0.82rem;
}

.registry-name {
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

.registry-row p {
  margin: 0;
  color: var(--p4c-text-secondary);
  line-height: 1.45;
}

.registry-row small,
.registry-related {
  grid-column: 1 / -1;
  color: rgba(255, 255, 255, 0.58);
}

.registry-related {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.registry-related-link {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 999px;
  color: var(--p4c-accent);
  font-size: 0.78rem;
  padding: 0.35rem 0.65rem;
  text-decoration: none;
}

.product-search-layout {
  display: grid;
  grid-template-columns: minmax(260px, 320px) minmax(0, 1fr);
  gap: 1.2rem;
  align-items: start;
}

.product-search-sidebar {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 1rem;
  border: 1px solid rgba(0, 212, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  padding: 1rem;
  max-height: calc(100vh - 118px);
  overflow: auto;
}

.product-search-sidebar h2 {
  font-size: 1rem;
  color: #fff;
  margin: 0;
}

.product-search-sidebar input {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(5, 12, 26, 0.82);
  color: #fff;
  padding: 0.9rem;
  font: inherit;
}

.product-filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.product-filter {
  border: 1px solid rgba(0, 212, 255, 0.3);
  background: rgba(0, 212, 255, 0.04);
  color: #fff;
  border-radius: 999px;
  padding: 0.48rem 0.68rem;
  cursor: pointer;
  font-size: 0.82rem;
}

.product-filter.active {
  background: rgba(0, 212, 255, 0.18);
  color: var(--p4c-accent);
}

.product-family-nav {
  display: grid;
  gap: 0.35rem;
}

.product-family-nav a {
  display: grid;
  gap: 0.05rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 7px;
  padding: 0.55rem 0.65rem;
  text-decoration: none;
  color: #fff;
  background: rgba(255, 255, 255, 0.03);
}

.product-family-nav small,
.product-search-series {
  color: var(--p4c-accent);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.product-search-results {
  min-width: 0;
}

.product-search-count {
  margin: -0.4rem 0 1rem;
  color: var(--p4c-text-secondary);
}

.product-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 0.8rem 0;
}

.product-chip-row span {
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  padding: 0.25rem 0.5rem;
}

.product-line-panels {
  display: grid;
  gap: 0.8rem;
}

.product-line-panel {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.product-line-panel summary {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  color: #fff;
  font-weight: 800;
  padding: 1rem;
}

.product-line-panel summary small {
  color: var(--p4c-accent);
  font-weight: 700;
}

.product-line-panel > p {
  color: var(--p4c-text-secondary);
  margin: 0;
  padding: 0 1rem 1rem;
}

.product-table-wrap {
  overflow: auto;
}

.product-search-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
}

.product-search-table th,
.product-search-table td {
  text-align: left;
  vertical-align: top;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.85rem 1rem;
}

.product-search-table th {
  color: #fff;
  background: rgba(0, 212, 255, 0.08);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.product-search-table td {
  color: var(--p4c-text-secondary);
}

.product-search-table strong {
  color: #fff;
}

.search-controls {
  display: grid;
  gap: 1rem;
  margin: 1.5rem 0;
}

.search-controls input {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(5, 12, 26, 0.72);
  color: #fff;
  padding: 1rem;
  font: inherit;
}

.search-filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.search-filter-row button {
  border: 1px solid rgba(0, 212, 255, 0.35);
  background: rgba(0, 212, 255, 0.04);
  color: #fff;
  border-radius: 999px;
  padding: 0.65rem 0.9rem;
  cursor: pointer;
}

.search-filter-row button.active {
  background: rgba(0, 212, 255, 0.18);
  color: var(--p4c-accent);
}

.search-results {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}

.search-result-card {
  padding: 1rem;
}

.search-result-card small {
  color: var(--p4c-accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.search-result-card a {
  color: #fff;
}

.search-result-card p,
.empty-note {
  color: var(--p4c-text-secondary);
}

footer {
  background: linear-gradient(180deg, #050c1a, #030712);
  border-top: 1px solid rgba(0, 212, 255, 0.12);
  margin-top: 0;
}

.footer-brand-strip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  padding: 1.35rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand-strip img {
  height: 78px;
  width: auto;
  filter: drop-shadow(0 0 24px rgba(0, 212, 255, 0.34));
}

.footer-brand-tagline {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
  text-align: center;
}

.footer-columns {
  padding: 1.45rem clamp(1rem, 3vw, 3rem);
  max-width: 1480px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 2.18fr);
  gap: 1rem;
  align-items: start;
}

.footer-contact-card {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.08), rgba(16, 185, 129, 0.035));
  border: 1px solid rgba(0, 212, 255, 0.16);
  border-radius: 8px;
  padding: 1rem;
}

.footer-nav-band {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.7rem;
  min-width: 0;
}

.footer-heading {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.66rem;
  margin: 0 0 0.5rem;
}

.footer-note {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.84rem;
  line-height: 1.4;
  margin: 0.1rem 0 0.65rem;
}

.footer-grid a {
  color: var(--p4c-text-secondary);
  text-decoration: none;
  display: block;
  margin: 0.26rem 0;
  line-height: 1.22;
  font-size: 0.84rem;
  overflow-wrap: anywhere;
}

.footer-grid a small {
  display: none;
}

.footer-grid a:hover {
  color: var(--p4c-accent);
}

.footer-copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.78rem;
  padding: 1rem;
}

@media (max-width: 1120px) {
  .brand-logo img {
    height: 40px;
  }

  .footer-brand-strip img {
    height: 72px;
  }

  .nav-menu {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-section,
  .hero-content {
    min-height: auto;
  }

  .hero-content {
    padding: 2.5rem 1.4rem;
  }

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

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

  .product-search-sidebar {
    position: relative;
    top: auto;
    max-height: none;
  }

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

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

  .registry-head,
  .registry-row,
  .product-registry-table .registry-head,
  .product-registry-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .main-content {
    padding: 0 0.85rem;
  }

  .section-block {
    padding: 3.2rem 0;
  }

  .cta-row {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .footer-grid {
    text-align: left;
  }

  .footer-nav-band {
    grid-template-columns: 1fr;
  }

  .footer-columns {
    padding: 1.25rem 1rem;
  }

  .footer-brand-strip img {
    height: 64px;
  }

  .product-search-table {
    min-width: 460px;
  }

  .product-line-panel summary {
    flex-direction: column;
  }
}
