:root {
  --bg: #f8f5ee;
  --bg-deep: #e9e2d3;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: rgba(255, 255, 255, 0.94);
  --surface-soft: rgba(246, 252, 250, 0.72);
  --accent: #069b98;
  --accent-dark: #047a77;
  --accent-soft: rgba(6, 155, 152, 0.16);
  --highlight: #fcc013;
  --highlight-soft: rgba(252, 192, 19, 0.2);
  --text: #10282c;
  --muted: #5a6e72;
  --muted-strong: #263e42;
  --border: rgba(6, 83, 82, 0.16);
  --border-strong: rgba(18, 48, 52, 0.12);
  --shadow: 0 24px 70px rgba(28, 49, 46, 0.13);
  --radius-lg: 30px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --container: 1180px;
}

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

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: "Aptos", "Segoe UI", "Trebuchet MS", sans-serif;
  line-height: 1.6;
  background: var(--bg);
  position: relative;
  isolation: isolate;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
}

body::before {
  z-index: -2;
  background:
    linear-gradient(135deg, rgba(6, 155, 152, 0.1), transparent 34%),
    linear-gradient(225deg, rgba(252, 192, 19, 0.12), transparent 36%),
    linear-gradient(180deg, #fffdf8 0%, #f8f5ee 42%, #edf7f4 100%);
}

body[data-page="products"]::before {
  background:
    linear-gradient(135deg, rgba(252, 192, 19, 0.13), transparent 34%),
    linear-gradient(225deg, rgba(6, 155, 152, 0.11), transparent 36%),
    linear-gradient(180deg, #fffdf8 0%, #f8f3e8 46%, #edf7f4 100%);
}

body[data-page="services"]::before {
  background:
    linear-gradient(135deg, rgba(6, 155, 152, 0.12), transparent 34%),
    linear-gradient(225deg, rgba(252, 192, 19, 0.1), transparent 34%),
    linear-gradient(180deg, #fffdf8 0%, #f7f5ec 44%, #eef8f5 100%);
}

body[data-page="product-detail"]::before {
  background:
    linear-gradient(135deg, rgba(252, 192, 19, 0.12), transparent 32%),
    linear-gradient(225deg, rgba(6, 155, 152, 0.1), transparent 36%),
    linear-gradient(180deg, #fffdf8 0%, #f8f5ee 44%, #eef7f4 100%);
}

body::after {
  z-index: -1;
  opacity: 0.36;
  background-image:
    linear-gradient(rgba(6, 83, 82, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 83, 82, 0.045) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(180deg, transparent, #000 12%, #000 88%, transparent);
}

main,
footer,
header {
  position: relative;
  z-index: 1;
}

a {
  color: inherit;
  text-decoration: none;
}

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

h1,
h2,
h3,
h4 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
  text-wrap: balance;
}

p {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
}

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

.section {
  padding: 34px 0 82px;
}

.section-alt {
  position: relative;
}

.section-alt::before {
  content: "";
  position: absolute;
  inset: 20px 0 0;
  background: linear-gradient(180deg, rgba(6, 28, 33, 0.42), rgba(5, 18, 24, 0.12));
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  z-index: 0;
}

.section-alt > .container {
  position: relative;
  z-index: 1;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-heading--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading--center .eyebrow {
  justify-content: center;
}

.section-heading h2 {
  font-family: "Bahnschrift", "Aptos Display", "Segoe UI", sans-serif;
  font-size: clamp(2rem, 3.8vw, 3rem);
  letter-spacing: 0;
  margin-bottom: 10px;
}

.section-heading p {
  color: var(--muted);
  font-size: 1.02rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 14px;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--highlight), var(--accent));
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.button-row--spaced {
  margin-top: 24px;
}

.button-row--center {
  justify-content: center;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(90deg, var(--highlight), #ffcb54);
  color: #11222a;
  box-shadow: 0 14px 28px rgba(252, 192, 19, 0.22);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
}

.button-light {
  background: #f2f4f7;
  color: #172126;
}

.button-outline-accent {
  border-color: rgba(6, 155, 152, 0.4);
  background: rgba(6, 155, 152, 0.08);
  color: var(--text);
}

.pill-row,
.stat-strip,
.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.mini-badge,
.pill,
.stat-chip {
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(10, 35, 42, 0.78);
  color: var(--muted-strong);
}

.pill,
.mini-badge {
  padding: 0.55rem 0.9rem;
  font-size: 0.88rem;
}

.stat-chip {
  min-width: 112px;
  padding: 0.8rem 1rem;
}

.stat-chip strong {
  display: block;
  color: var(--text);
  font-size: 1.1rem;
}

.stat-chip span {
  color: var(--muted);
  font-size: 0.82rem;
}

.surface-card {
  background: linear-gradient(180deg, rgba(8, 31, 38, 0.94), rgba(4, 18, 23, 0.94));
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.surface-card--soft {
  background: linear-gradient(180deg, rgba(12, 44, 53, 0.78), rgba(6, 23, 28, 0.92));
}

.site-header {
  padding-top: 20px;
}

.nav-shell {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 84px;
  padding: 14px 18px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(4, 17, 22, 0.7);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.2);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  min-width: 0;
}

.brand-logo {
  display: block;
  height: clamp(42px, 5vw, 56px);
  width: auto;
}

.footer-logo {
  display: block;
  height: 46px;
  width: auto;
  justify-self: start;
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(6, 155, 152, 0.94), rgba(4, 122, 119, 0.94)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent);
  color: #03232a;
  font-family: "Bahnschrift", "Segoe UI", sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35), 0 12px 22px rgba(2, 60, 65, 0.32);
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-title {
  font-family: "Bahnschrift", "Segoe UI", sans-serif;
  font-size: 0.98rem;
  letter-spacing: 0;
  text-transform: uppercase;
  font-weight: 800;
}

.brand-subtitle {
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-nav {
  margin-left: auto;
}

.nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  color: var(--muted-strong);
  font-size: 0.95rem;
  transition: background 0.25s ease, color 0.25s ease;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.is-active {
  background: rgba(6, 155, 152, 0.12);
  color: #ffffff;
}

.header-cta {
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: currentColor;
}

.hero {
  padding: 22px 0 36px;
}

.hero-shell {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background:
    linear-gradient(135deg, rgba(3, 15, 19, 0.86), rgba(8, 27, 33, 0.8)),
    radial-gradient(circle at 85% 15%, rgba(252, 192, 19, 0.12), transparent 24%);
  box-shadow: var(--shadow);
}

.hero-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 24%, rgba(252, 192, 19, 0.16), transparent 28%),
    linear-gradient(115deg, rgba(255, 255, 255, 0.04), transparent 30%),
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.22));
  pointer-events: none;
}

.hero-shell--home::after,
.hero-shell--product::after,
.hero-shell--services::after,
.hero-shell--catalog::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background:
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.44)),
    radial-gradient(circle at 24% 14%, rgba(6, 155, 152, 0.12), transparent 42%);
  pointer-events: none;
}

.hero-shell--home {
  background:
    linear-gradient(140deg, rgba(4, 14, 18, 0.86), rgba(10, 32, 38, 0.7)),
    linear-gradient(180deg, rgba(252, 192, 19, 0.12), transparent 48%),
    radial-gradient(circle at 84% 20%, rgba(6, 155, 152, 0.18), transparent 30%);
}

.hero-shell--services {
  background:
    linear-gradient(140deg, rgba(4, 14, 18, 0.78), rgba(11, 36, 30, 0.78)),
    linear-gradient(180deg, rgba(252, 192, 19, 0.1), transparent 40%),
    radial-gradient(circle at 88% 22%, rgba(6, 155, 152, 0.16), transparent 28%);
}

.hero-shell--catalog {
  background:
    linear-gradient(140deg, rgba(9, 13, 18, 0.88), rgba(42, 18, 15, 0.54)),
    linear-gradient(180deg, rgba(252, 192, 19, 0.08), transparent 44%),
    radial-gradient(circle at 80% 16%, rgba(6, 155, 152, 0.16), transparent 28%);
}

.hero-shell--product {
  background:
    linear-gradient(140deg, rgba(5, 12, 18, 0.9), rgba(36, 19, 14, 0.56)),
    linear-gradient(180deg, rgba(252, 192, 19, 0.08), transparent 42%),
    radial-gradient(circle at 82% 15%, rgba(6, 155, 152, 0.16), transparent 28%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  align-items: center;
  gap: 28px;
  padding: clamp(32px, 5vw, 60px);
}

.hero-grid > *,
.product-detail-hero > *,
.spotlight-grid > *,
.overview-grid > *,
.narrative-grid > *,
.catalog-grid > *,
.spec-layout > *,
.support-layout > *,
.footer-top > * {
  min-width: 0;
}

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

.hero-copy h1 {
  font-family: "Bahnschrift", "Aptos Display", "Segoe UI", sans-serif;
  font-size: clamp(2.6rem, 6vw, 4.7rem);
  letter-spacing: 0;
  margin-bottom: 18px;
}

.hero-shell--home .hero-copy h1 {
  font-size: clamp(2.25rem, 4.8vw, 3.85rem);
}

.hero-copy p {
  max-width: 640px;
  color: var(--muted);
  font-size: 1.08rem;
  margin-bottom: 24px;
}

.hero-note {
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-side {
  position: relative;
  z-index: 1;
}

.hero-stage {
  position: relative;
  min-height: 460px;
  display: grid;
  place-items: center;
  padding: 24px;
  border-radius: 26px;
  background:
    radial-gradient(circle at 50% 30%, rgba(6, 155, 152, 0.18), transparent 34%),
    radial-gradient(circle at 60% 72%, rgba(252, 192, 19, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(0, 0, 0, 0.16));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-slider {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #0b1e24;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.24), 0 22px 48px rgba(28, 49, 46, 0.16);
}

.hero-slider__viewport,
.hero-slide,
.hero-slide__bg {
  position: absolute;
  inset: 0;
}

.hero-slide {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.65s ease;
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(3, 20, 24, 0.84), rgba(3, 20, 24, 0.34) 54%, rgba(3, 20, 24, 0.2)),
    linear-gradient(180deg, rgba(3, 20, 24, 0.12), rgba(3, 20, 24, 0.68));
}

.hero-slide__bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide__product {
  position: absolute;
  right: 4%;
  bottom: 16%;
  z-index: 2;
  width: min(36%, 190px);
  max-height: 260px;
  object-fit: contain;
  filter: drop-shadow(0 22px 28px rgba(0, 0, 0, 0.34));
}

.hero-slide__copy {
  position: absolute;
  left: 24px;
  bottom: 86px;
  z-index: 3;
  max-width: 310px;
  color: #ffffff;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.32);
}

.hero-slide__copy span,
.hero-image-caption span {
  display: inline-flex;
  margin-bottom: 8px;
  color: #ffce4a;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-slide__copy h2 {
  font-size: clamp(1.45rem, 3.2vw, 2rem);
  margin-bottom: 8px;
}

.hero-slide__copy p,
.hero-image-caption p {
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.92rem;
}

.hero-slider__controls {
  position: absolute;
  inset: auto 18px 18px;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.hero-slider__nav,
.hero-slider__dots button {
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  backdrop-filter: blur(12px);
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.hero-slider__nav {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  padding: 0;
  border-radius: 999px;
  font-size: 1.8rem;
  line-height: 1;
}

.hero-slider__nav:hover,
.hero-slider__nav:focus-visible,
.hero-slider__dots button:hover,
.hero-slider__dots button:focus-visible {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.26);
  border-color: rgba(255, 255, 255, 0.46);
}

.hero-slider__dots {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-slider__dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border-radius: 999px;
}

.hero-slider__dots button.is-active,
.hero-slider__dots button[aria-current="true"] {
  width: 28px;
  background: var(--highlight);
  border-color: rgba(252, 192, 19, 0.7);
}

.hero-stage--showcase {
  overflow: hidden;
}

.hero-product-showcase {
  position: relative;
  width: 100%;
  min-height: 410px;
  overflow: hidden;
  isolation: isolate;
  display: grid;
  place-items: center;
  padding: clamp(14px, 2.4vw, 24px);
  border-radius: 22px;
  background:
    radial-gradient(circle at 64% 22%, rgba(252, 192, 19, 0.22), transparent 26%),
    radial-gradient(circle at 22% 72%, rgba(6, 155, 152, 0.18), transparent 28%),
    linear-gradient(150deg, rgba(255, 255, 255, 0.86), rgba(236, 247, 243, 0.76));
}

.showcase-product {
  position: absolute;
  z-index: 1;
  object-fit: contain;
  filter: drop-shadow(0 22px 30px rgba(28, 49, 46, 0.22));
}

.showcase-product--range {
  position: relative;
  width: min(100%, 430px);
  height: auto;
  max-height: 360px;
  border-radius: 16px;
  filter: drop-shadow(0 20px 32px rgba(28, 49, 46, 0.16));
}

.hero-image-panel {
  position: relative;
  width: 100%;
  min-height: 410px;
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
}

.hero-image-panel img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.hero-image-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 24%, rgba(2, 18, 22, 0.74));
}

.hero-image-caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  padding: 1rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(3, 20, 24, 0.68);
  color: #ffffff;
  backdrop-filter: blur(14px);
}

.hero-image-caption strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.15rem;
  line-height: 1.18;
}

.floating-panel {
  position: absolute;
  right: 10px;
  bottom: 14px;
  max-width: 240px;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgba(3, 17, 22, 0.82);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.24);
}

.floating-panel strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
}

.floating-panel p {
  color: var(--muted);
  font-size: 0.9rem;
}

.device-render {
  position: relative;
  width: min(100%, 320px);
  aspect-ratio: 0.77;
  border-radius: 24px 24px 18px 18px;
  background:
    linear-gradient(180deg, #6a7079 0%, #31353d 16%, #14181e 64%, #fcc013 64%, #dca300 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    inset 0 -10px 18px rgba(0, 0, 0, 0.2),
    0 22px 46px rgba(0, 0, 0, 0.34);
}

.device-render::before {
  content: "";
  position: absolute;
  top: 18px;
  right: -26px;
  width: 30px;
  height: 72%;
  border-radius: 0 18px 18px 0;
  background: linear-gradient(180deg, #4c515a, #22282f);
  transform: skewY(-11deg);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.device-render::after {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 20px 20px 16px 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.device-render--large {
  width: min(100%, 360px);
}

.device-render--small {
  width: min(100%, 180px);
  border-radius: 18px 18px 14px 14px;
}

.device-render--small::before {
  top: 12px;
  right: -18px;
  width: 22px;
}

.device-screen,
.device-badge,
.device-brand,
.device-meter {
  position: absolute;
}

.device-screen {
  top: 30%;
  left: 16%;
  width: 44%;
  height: 16%;
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(235, 254, 248, 0.96), rgba(95, 212, 196, 0.9));
  box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.06);
}

.device-badge {
  top: 18%;
  left: 16%;
  width: 18%;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(6, 155, 152, 0.95), rgba(4, 122, 119, 0.95));
  color: #08242b;
  font-family: "Bahnschrift", "Segoe UI", sans-serif;
  font-weight: 800;
  font-size: 1.12rem;
}

.device-brand {
  top: 20.5%;
  left: 38%;
  color: #dbe7ea;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.device-meter {
  bottom: 14%;
  left: 14%;
  width: 72%;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
}

.device-meter::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 58%;
  border-radius: inherit;
  background: linear-gradient(90deg, #ffd472, var(--highlight));
}

.solution-grid,
.why-grid,
.deliver-grid,
.application-grid,
.client-grid,
.feature-grid,
.support-grid,
.metrics-grid,
.product-grid {
  display: grid;
  gap: 22px;
}

.solution-grid,
.why-grid,
.client-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

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

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

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

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

.solution-grid > *,
.why-grid > *,
.deliver-grid > *,
.application-grid > *,
.client-grid > *,
.feature-grid > *,
.support-grid > *,
.metrics-grid > *,
.product-grid > *,
.process-grid > *,
.support-band-row > * {
  min-width: 0;
}

.info-card,
.why-card,
.deliver-card,
.feature-card,
.support-card,
.client-card,
.application-card,
.metric-card {
  padding: 22px;
}

.info-card,
.why-card,
.deliver-card,
.feature-card,
.support-card,
.application-card,
.metric-card,
.process-card,
.product-card,
.support-band-tile {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.info-card {
  background: linear-gradient(180deg, rgba(23, 201, 195, 0.94), rgba(17, 141, 145, 0.88));
  color: #022025;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.info-card p,
.client-card p {
  color: rgba(2, 32, 37, 0.74);
}

.icon-frame {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
}

.icon-frame svg {
  width: 30px;
  height: 30px;
}

.info-card h3,
.why-card h3,
.deliver-card h3,
.feature-card h3,
.support-card h3,
.application-card h3,
.metric-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.why-card,
.deliver-card,
.feature-card,
.support-card,
.metric-card,
.application-card,
.story-card,
.spec-card,
.process-card,
.support-band,
.cta-banner,
.footer-shell,
.product-card,
.overview-card {
  background: linear-gradient(180deg, rgba(8, 29, 35, 0.92), rgba(5, 18, 24, 0.94));
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.why-card p,
.deliver-card p,
.feature-card p,
.support-card p,
.metric-card p,
.application-card p,
.story-card p,
.spec-card p,
.process-card p,
.support-band p,
.cta-banner p,
.overview-card p {
  color: var(--muted);
}

.spotlight-grid,
.overview-grid,
.narrative-grid,
.catalog-grid,
.spec-layout,
.support-layout {
  display: grid;
  gap: 28px;
}

.spotlight-grid,
.overview-grid,
.narrative-grid,
.support-layout {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
}

.catalog-grid,
.spec-layout {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

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

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

.visual-stage,
.overview-card,
.story-card,
.spec-card,
.process-card,
.support-band,
.cta-banner {
  padding: 26px;
}

.overview-card,
.story-card,
.spec-card,
.client-card {
  height: 100%;
}

.visual-stage {
  display: grid;
  place-items: center;
  min-height: 420px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 50% 28%, rgba(6, 155, 152, 0.18), transparent 30%),
    radial-gradient(circle at 52% 74%, rgba(252, 192, 19, 0.12), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(0, 0, 0, 0.18));
}

.spotlight-product-image {
  width: min(100%, 360px);
  max-height: 380px;
  object-fit: contain;
  filter: drop-shadow(0 24px 36px rgba(0, 0, 0, 0.32));
}

.visual-stage--compact {
  min-height: 360px;
}

.overview-card ul,
.spec-list {
  list-style: none;
  display: grid;
  gap: 10px;
}

.overview-card li,
.spec-list li {
  position: relative;
  padding-left: 18px;
  color: var(--muted-strong);
}

.overview-card li::before,
.spec-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--highlight), var(--accent));
}

.overview-card h3,
.story-card h3,
.spec-card h3,
.process-card h3,
.support-band h3,
.cta-banner h3 {
  font-size: 1.45rem;
  margin-bottom: 12px;
}

.section-heading--compact {
  max-width: 420px;
  margin-bottom: 0;
}

.section-heading--flush {
  margin-bottom: 0;
}

.hero-stage-title {
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  margin-bottom: 12px;
}

.text-block-space {
  margin-bottom: 18px;
}

.badge-row--spaced {
  margin-top: 22px;
}

.scene-thumb {
  position: relative;
  height: 148px;
  margin-bottom: 18px;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.scene-thumb::before,
.scene-thumb::after {
  content: "";
  position: absolute;
}

.scene-thumb--image {
  height: 164px;
  background: #dce7e7;
}

.scene-thumb--image::before,
.scene-thumb--image::after {
  display: none;
}

.scene-thumb--image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.application-card:hover .scene-thumb--image img,
.application-card:focus-within .scene-thumb--image img {
  transform: scale(1.04);
}

.scene-thumb--roof {
  background:
    linear-gradient(180deg, rgba(255, 175, 95, 0.92), rgba(37, 54, 77, 0.72) 54%, rgba(10, 19, 26, 0.95)),
    linear-gradient(120deg, rgba(0, 0, 0, 0.1), transparent 50%);
}

.scene-thumb--roof::before {
  inset: auto 4% 8% 14%;
  height: 42%;
  background:
    repeating-linear-gradient(100deg, rgba(122, 227, 247, 0.48), rgba(122, 227, 247, 0.48) 0 6px, rgba(11, 22, 32, 0.7) 6px 12px);
  transform: skew(-18deg);
  border-radius: 8px;
}

.scene-thumb--roof::after {
  inset: auto auto 0 0;
  width: 100%;
  height: 34%;
  background: linear-gradient(180deg, transparent, rgba(5, 18, 24, 0.64));
}

.scene-thumb--industrial {
  background:
    linear-gradient(180deg, rgba(247, 200, 86, 0.9), rgba(58, 77, 104, 0.7) 52%, rgba(11, 20, 27, 0.96)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 40%);
}

.scene-thumb--industrial::before {
  inset: auto 6% 10% 10%;
  height: 38%;
  background:
    repeating-linear-gradient(90deg, rgba(125, 216, 243, 0.5), rgba(125, 216, 243, 0.5) 0 8px, rgba(13, 25, 36, 0.7) 8px 16px);
  border-radius: 8px;
}

.scene-thumb--industrial::after {
  right: 14%;
  top: 18%;
  width: 18%;
  height: 36%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(14, 17, 19, 0.6));
  box-shadow:
    -42px 12px 0 -8px rgba(24, 36, 43, 0.85),
    -28px 22px 0 -10px rgba(24, 36, 43, 0.8);
}

.scene-thumb--grid {
  background:
    linear-gradient(180deg, rgba(171, 202, 232, 0.9), rgba(62, 104, 135, 0.55) 54%, rgba(10, 18, 24, 0.95)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 40%);
}

.scene-thumb--grid::before {
  inset: 18% auto auto 24%;
  width: 52%;
  height: 3px;
  background: rgba(255, 255, 255, 0.28);
  box-shadow:
    -48px 10px 0 rgba(255, 255, 255, 0.22),
    48px 12px 0 rgba(255, 255, 255, 0.22),
    -48px 48px 0 rgba(255, 255, 255, 0.22),
    48px 52px 0 rgba(255, 255, 255, 0.22);
}

.scene-thumb--grid::after {
  inset: 22% auto auto 32%;
  width: 3px;
  height: 58%;
  background: rgba(255, 255, 255, 0.26);
  box-shadow:
    46px -10px 0 rgba(255, 255, 255, 0.22),
    -46px -6px 0 rgba(255, 255, 255, 0.22);
}

.scene-thumb--storage {
  background:
    linear-gradient(180deg, rgba(143, 194, 131, 0.9), rgba(76, 127, 79, 0.58) 54%, rgba(9, 18, 23, 0.95)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 40%);
}

.scene-thumb--storage::before {
  inset: auto 18% 18% 18%;
  height: 34%;
  border-radius: 10px;
  background:
    linear-gradient(90deg, rgba(220, 232, 225, 0.94), rgba(104, 147, 111, 0.84));
  box-shadow:
    -64px 4px 0 -12px rgba(220, 232, 225, 0.76),
    64px 4px 0 -12px rgba(220, 232, 225, 0.76);
}

.scene-thumb--storage::after {
  inset: auto 10% 8% 10%;
  height: 8%;
  border-radius: 999px;
  background: rgba(5, 18, 24, 0.62);
}

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

.process-card {
  position: relative;
  padding: 22px;
}

.process-step {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 14px;
  border-radius: 12px;
  background: rgba(6, 155, 152, 0.16);
  color: var(--accent);
  font-weight: 800;
}

.product-card {
  align-items: stretch;
  padding: 22px;
  text-align: left;
  gap: 16px;
}

.product-catalog {
  display: grid;
  gap: 54px;
}

.product-category {
  display: grid;
  gap: 22px;
  scroll-margin-top: 120px;
}

.product-category__heading {
  max-width: 760px;
}

.product-category__heading h2 {
  font-family: "Bahnschrift", "Aptos Display", "Segoe UI", sans-serif;
  font-size: 2.25rem;
  margin-bottom: 10px;
}

.product-category__heading p {
  color: var(--muted);
}

.product-media {
  display: grid;
  place-items: center;
  min-height: 230px;
  padding: 18px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 35%, rgba(6, 155, 152, 0.14), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.product-media img {
  width: 100%;
  max-width: 220px;
  max-height: 220px;
  object-fit: contain;
  filter: drop-shadow(0 18px 26px rgba(0, 0, 0, 0.28));
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(6, 155, 152, 0.12);
  border: 1px solid rgba(6, 155, 152, 0.24);
  color: var(--muted-strong);
  font-size: 0.78rem;
  font-weight: 700;
}

.product-card .device-render {
  margin: 0 auto;
}

.product-card h3 {
  font-size: 1.08rem;
  margin-bottom: 0;
  text-align: center;
}

.product-card p {
  color: var(--muted);
  font-size: 0.95rem;
}

.product-card .spec-list {
  width: 100%;
}

.product-card .button {
  margin-top: auto;
  width: 100%;
}

.product-grid--compact .product-card {
  padding: 20px;
}

.product-detail-hero {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: 36px;
  align-items: center;
  padding: clamp(32px, 5vw, 60px);
}

.product-detail-media {
  display: grid;
  place-items: center;
  min-height: 430px;
  padding: 24px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 35%, rgba(252, 192, 19, 0.14), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.product-detail-media img {
  width: 100%;
  max-width: 380px;
  max-height: 390px;
  object-fit: contain;
  filter: drop-shadow(0 28px 42px rgba(0, 0, 0, 0.36));
}

.product-gallery {
  width: 100%;
  display: grid;
  gap: 16px;
}

.product-gallery__stage {
  position: relative;
  min-height: 340px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 22px;
}

.product-gallery__slide {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 10px 46px;
  opacity: 0;
  transform: translateX(16px);
  pointer-events: none;
  transition: opacity 0.32s ease, transform 0.32s ease;
}

.product-gallery__slide.is-active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.product-gallery__slide img {
  width: 100%;
  max-width: 390px;
  max-height: 340px;
  object-fit: contain;
  filter: drop-shadow(0 28px 42px rgba(0, 0, 0, 0.36));
}

.product-gallery__nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  padding: 0;
  border-radius: 999px;
  border: 1px solid rgba(6, 83, 82, 0.16);
  background: rgba(255, 255, 255, 0.78);
  color: var(--text);
  box-shadow: 0 12px 28px rgba(28, 49, 46, 0.14);
  cursor: pointer;
  transform: translateY(-50%);
  transition: transform 0.25s ease, background 0.25s ease;
}

.product-gallery__nav:hover,
.product-gallery__nav:focus-visible {
  background: #ffffff;
  transform: translateY(-50%) scale(1.04);
}

.product-gallery__nav--prev {
  left: 0;
}

.product-gallery__nav--next {
  right: 0;
}

.product-gallery__nav span {
  font-size: 1.8rem;
  line-height: 1;
}

.product-gallery__footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
}

.product-gallery__thumbs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 4px 2px 8px;
  scrollbar-width: thin;
}

.product-gallery__thumb {
  flex: 0 0 66px;
  width: 66px;
  height: 58px;
  display: grid;
  place-items: center;
  padding: 6px;
  border-radius: 14px;
  border: 1px solid rgba(6, 83, 82, 0.14);
  background: rgba(255, 255, 255, 0.62);
  cursor: pointer;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.product-gallery__thumb:hover,
.product-gallery__thumb:focus-visible,
.product-gallery__thumb.is-active {
  border-color: rgba(6, 155, 152, 0.5);
  box-shadow: 0 10px 22px rgba(28, 49, 46, 0.12);
  transform: translateY(-1px);
}

.product-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: none;
}

.product-gallery__count {
  min-width: 54px;
  text-align: right;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.catalog-copy,
.spec-copy {
  display: grid;
  gap: 18px;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
}

.spec-table tr + tr {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.spec-table th,
.spec-table td {
  text-align: left;
  padding: 0.95rem 0;
}

.spec-table th {
  width: 44%;
  color: var(--muted-strong);
  font-weight: 600;
}

.spec-table td {
  color: var(--muted);
}

.stack-grid {
  display: grid;
  gap: 18px;
}

.support-band {
  display: grid;
  gap: 16px;
}

.support-band-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.support-band-tile {
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.support-band-tile strong {
  display: block;
  margin-bottom: 8px;
}

.story-card {
  display: grid;
  gap: 18px;
}

.story-stat {
  padding: 1rem 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.story-stat strong {
  display: block;
  font-size: 2rem;
  color: var(--accent);
}

.client-card {
  min-height: 132px;
  display: grid;
  place-items: center;
  padding: 28px 24px;
  text-align: center;
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.96), rgba(227, 236, 240, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 20px;
}

.client-card > div {
  display: grid;
  gap: 8px;
  justify-items: center;
}

.client-card strong {
  display: block;
  color: #0e262c;
  font-size: 1.12rem;
}

.client-card p {
  max-width: 18ch;
  line-height: 1.45;
  margin-inline: auto;
}

.cta-banner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
}

.site-footer {
  padding: 0 0 28px;
}

.footer-shell {
  display: grid;
  gap: 32px;
  padding: clamp(26px, 4vw, 36px);
  border-radius: 30px 30px 24px 24px;
  background:
    linear-gradient(180deg, rgba(8, 62, 64, 0.94), rgba(4, 28, 31, 0.96)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), transparent 30%);
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(320px, 1.45fr) minmax(100px, 0.55fr) minmax(180px, 0.78fr) minmax(220px, 0.92fr);
  gap: clamp(24px, 3vw, 40px);
  align-items: start;
}

.footer-copy {
  display: grid;
  gap: 18px;
  align-content: start;
}

.footer-copy h2 {
  font-family: "Bahnschrift", "Aptos Display", "Segoe UI", sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  letter-spacing: 0;
  max-width: 10ch;
}

.footer-copy p {
  max-width: 34rem;
  color: rgba(232, 247, 247, 0.82);
}

.footer-copy .button-row {
  margin-top: 6px;
}

.footer-grid {
  display: contents;
}

.footer-links,
.footer-contact,
.footer-address {
  display: grid;
  gap: 12px;
  align-content: start;
}

.footer-label {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.footer-item,
.footer-links a {
  display: block;
  color: rgba(244, 248, 250, 0.88);
  line-height: 1.55;
  overflow-wrap: normal;
  word-break: normal;
}

.footer-contact .footer-item--wrap {
  overflow-wrap: anywhere;
}

.footer-address .footer-item {
  max-width: 24ch;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
  color: rgba(244, 248, 250, 0.7);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 18px;
  font-size: 0.9rem;
}

.footer-bottom span:last-child {
  text-align: right;
}

/* Pearl theme polish */
.section-alt::before {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(255, 251, 242, 0.36));
  border-top: 1px solid rgba(6, 83, 82, 0.08);
  border-bottom: 1px solid rgba(6, 83, 82, 0.08);
}

.section-heading h2,
.hero-copy h1,
.footer-copy h2 {
  letter-spacing: 0;
}

.button-secondary,
.button-outline-accent {
  border-color: rgba(6, 83, 82, 0.18);
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
  box-shadow: 0 12px 28px rgba(28, 49, 46, 0.08);
}

.button-light {
  background: linear-gradient(180deg, #ffffff, #f3efe5);
  color: var(--text);
  border-color: rgba(6, 83, 82, 0.12);
}

.mini-badge,
.pill,
.stat-chip {
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted-strong);
  border-color: rgba(6, 83, 82, 0.14);
  box-shadow: 0 10px 26px rgba(28, 49, 46, 0.07);
}

.site-header {
  padding-top: 18px;
}

.nav-shell {
  border-color: rgba(6, 83, 82, 0.12);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 20px 50px rgba(28, 49, 46, 0.12);
}

.nav-link {
  color: #334c50;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.is-active {
  background: rgba(6, 155, 152, 0.1);
  color: var(--accent-dark);
}

.nav-toggle {
  border-color: rgba(6, 83, 82, 0.14);
  background: rgba(255, 255, 255, 0.74);
  color: var(--text);
}

.hero-shell,
.hero-shell--home,
.hero-shell--services,
.hero-shell--catalog,
.hero-shell--product {
  border-color: rgba(6, 83, 82, 0.12);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(246, 252, 250, 0.72)),
    linear-gradient(180deg, rgba(252, 192, 19, 0.1), transparent 48%);
  box-shadow: 0 26px 80px rgba(28, 49, 46, 0.14);
}

.hero-shell::before {
  background:
    linear-gradient(120deg, rgba(6, 155, 152, 0.09), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.34), transparent);
}

.hero-shell--home::after,
.hero-shell--product::after,
.hero-shell--services::after,
.hero-shell--catalog::after {
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.3));
}

.hero-stage,
.visual-stage,
.product-detail-media,
.product-media {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(246, 252, 250, 0.58)),
    linear-gradient(135deg, rgba(6, 155, 152, 0.08), rgba(252, 192, 19, 0.08));
  border-color: rgba(6, 83, 82, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88), 0 18px 46px rgba(28, 49, 46, 0.1);
}

.floating-panel {
  background: rgba(255, 255, 255, 0.86);
  border-color: rgba(6, 83, 82, 0.14);
  box-shadow: 0 18px 44px rgba(28, 49, 46, 0.12);
}

.floating-panel p,
.hero-note,
.product-category__heading p,
.product-card p,
.section-heading p,
.why-card p,
.deliver-card p,
.feature-card p,
.support-card p,
.metric-card p,
.application-card p,
.story-card p,
.spec-card p,
.process-card p,
.support-band p,
.cta-banner p,
.overview-card p {
  color: var(--muted);
}

.surface-card,
.why-card,
.deliver-card,
.feature-card,
.support-card,
.metric-card,
.application-card,
.story-card,
.spec-card,
.process-card,
.support-band,
.cta-banner,
.product-card,
.overview-card {
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(6, 83, 82, 0.12);
  box-shadow: 0 22px 58px rgba(28, 49, 46, 0.11);
}

.info-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(242, 250, 247, 0.86));
  color: var(--text);
}

.info-card p,
.client-card p {
  color: var(--muted);
}

.icon-frame {
  background: linear-gradient(135deg, rgba(6, 155, 152, 0.14), rgba(252, 192, 19, 0.18));
  color: var(--accent-dark);
}

.overview-card li,
.spec-list li,
.spec-table th {
  color: var(--muted-strong);
}

.spec-table td,
.footer-copy p {
  color: var(--muted);
}

.spec-table tr + tr,
.story-stat {
  border-color: rgba(6, 83, 82, 0.1);
}

.support-band-tile {
  background: rgba(255, 255, 255, 0.56);
  border-color: rgba(6, 83, 82, 0.12);
}

.client-card {
  background: linear-gradient(180deg, #ffffff, #f6f1e7);
  border-color: rgba(6, 83, 82, 0.12);
  box-shadow: 0 18px 44px rgba(28, 49, 46, 0.1);
}

.footer-shell {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(246, 252, 250, 0.78)),
    linear-gradient(135deg, rgba(6, 155, 152, 0.08), rgba(252, 192, 19, 0.1));
  border-color: rgba(6, 83, 82, 0.14);
  color: var(--text);
  box-shadow: 0 26px 80px rgba(28, 49, 46, 0.13);
}

.footer-label {
  color: var(--accent-dark);
}

.footer-item,
.footer-links a {
  color: var(--muted-strong);
}

.footer-bottom {
  color: var(--muted);
  border-color: rgba(6, 83, 82, 0.12);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .solution-grid,
  .why-grid,
  .application-grid,
  .support-grid,
  .product-grid,
  .footer-grid,
  .process-grid,
  .support-band-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .solution-grid--three,
  .application-grid--duo {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-grid,
  .product-detail-hero,
  .spotlight-grid,
  .overview-grid,
  .narrative-grid,
  .catalog-grid,
  .spec-layout,
  .support-layout,
  .cta-banner {
    grid-template-columns: 1fr;
  }

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

  .cta-banner {
    justify-items: start;
  }

  .hero-stage,
  .hero-slider,
  .visual-stage {
    width: min(100%, 620px);
    margin-inline: auto;
  }

  .product-detail-media {
    min-height: 360px;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: minmax(96px, 0.7fr) minmax(170px, 0.95fr) minmax(220px, 1.1fr);
    gap: 24px;
    align-items: start;
  }

  .footer-address {
    grid-column: auto;
  }
}

@media (max-width: 900px) {
  .nav-shell {
    gap: 16px;
    padding: 14px;
  }

  .brand {
    flex: 1 1 auto;
  }

  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    margin-left: auto;
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .nav-shell.is-open {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .nav-shell.is-open .site-nav,
  .nav-shell.is-open .header-cta {
    display: block;
    width: 100%;
  }

  .nav-shell.is-open .site-nav {
    order: 3;
  }

  .nav-shell.is-open .header-cta {
    order: 4;
  }

  .nav-shell.is-open .nav-list {
    flex-direction: column;
    align-items: stretch;
    margin-top: 10px;
  }

  .nav-shell.is-open .nav-link {
    width: 100%;
    justify-content: flex-start;
  }

  .nav-shell.is-open .header-cta {
    margin-top: 6px;
  }

  .nav-shell.is-open .header-cta .button {
    width: 100%;
  }

  .hero-stage {
    min-height: 360px;
    padding: 20px;
  }

  .hero-slider {
    min-height: 380px;
  }

  .hero-image-panel,
  .hero-product-showcase {
    min-height: 320px;
  }

  .floating-panel {
    position: static;
    margin-top: 18px;
    max-width: none;
    width: 100%;
    text-align: center;
  }

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

  .footer-address .footer-item {
    max-width: none;
  }

  .footer-address {
    grid-column: auto;
  }

  .footer-bottom span:last-child {
    text-align: left;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding-top: 12px;
  }

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

  .section {
    padding: 22px 0 64px;
  }

  .hero {
    padding: 16px 0 28px;
  }

  .hero-grid {
    padding: 26px 20px;
    gap: 24px;
  }

  .product-detail-hero {
    padding: 26px 20px;
    gap: 24px;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-copy h1 {
    font-size: 2.35rem;
    line-height: 1.12;
    text-wrap: wrap;
    overflow-wrap: break-word;
  }

  .hero-shell--home .hero-copy h1 {
    font-size: 2.05rem;
  }

  .hero-copy .eyebrow {
    max-width: 100%;
    flex-wrap: wrap;
    line-height: 1.35;
  }

  .hero-copy p,
  .section-heading p {
    font-size: 0.98rem;
  }

  .hero-copy,
  .section-heading--compact,
  .cta-banner,
  .footer-copy {
    text-align: center;
  }

  .hero-copy .eyebrow,
  .section-heading--compact .eyebrow,
  .cta-banner .eyebrow,
  .footer-copy .eyebrow {
    justify-content: center;
  }

  .footer-logo {
    justify-self: center;
  }

  .hero-copy p,
  .hero-note,
  .section-heading--compact p,
  .footer-copy p {
    margin-inline: auto;
  }

  .hero-copy .button-row,
  .hero-copy .pill-row,
  .hero-copy .stat-strip,
  .cta-banner .button-row,
  .footer-copy .button-row {
    justify-content: center;
  }

  .solution-grid,
  .why-grid,
  .deliver-grid,
  .application-grid,
  .client-grid,
  .feature-grid,
  .support-grid,
  .metrics-grid,
  .product-grid,
  .footer-grid,
  .process-grid,
  .support-band-row {
    grid-template-columns: 1fr;
  }

  .solution-grid--three,
  .application-grid--duo {
    grid-template-columns: 1fr;
  }

  .visual-stage,
  .overview-card,
  .story-card,
  .spec-card,
  .process-card,
  .support-band,
  .cta-banner,
  .footer-shell,
  .product-card {
    padding: 22px;
  }

  .product-category__heading {
    text-align: center;
    margin-inline: auto;
  }

  .product-category__heading .eyebrow {
    justify-content: center;
  }

  .product-media {
    min-height: 210px;
  }

  .product-detail-media {
    min-height: 300px;
    padding: 20px;
  }

  .product-gallery__stage {
    min-height: 260px;
  }

  .product-gallery__slide {
    padding: 8px 38px;
  }

  .product-gallery__slide img,
  .product-detail-media img {
    max-height: 280px;
  }

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

  .product-gallery__count {
    text-align: center;
  }

  .hero-slider {
    min-height: 350px;
  }

  .hero-slide__copy {
    left: 18px;
    right: 18px;
    bottom: 76px;
    max-width: none;
  }

  .hero-slide__product {
    display: none;
  }

  .hero-slider__controls {
    inset: auto 14px 14px;
  }

  .hero-product-showcase {
    min-height: 300px;
  }

  .showcase-product--range {
    width: min(100%, 280px);
    max-height: 250px;
  }

  .hero-image-panel {
    min-height: 300px;
  }

  .device-render {
    width: min(100%, 280px);
  }

  .device-render--small {
    width: min(100%, 170px);
  }

  .hero-stage,
  .visual-stage {
    min-height: 320px;
  }

  .hero-copy .button-row .button,
  .cta-banner .button-row .button,
  .footer-copy .button-row .button {
    width: 100%;
  }

  .stat-chip {
    flex: 1 1 140px;
    text-align: center;
  }

  .footer-links,
  .footer-contact,
  .footer-address {
    justify-items: center;
    text-align: center;
  }

  .footer-shell {
    border-radius: 26px 26px 20px 20px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom span:last-child {
    text-align: center;
  }

  .spec-table,
  .spec-table tbody,
  .spec-table tr,
  .spec-table th,
  .spec-table td {
    display: block;
    width: 100%;
  }

  .spec-table tr {
    padding: 0.9rem 0;
  }

  .spec-table th,
  .spec-table td {
    padding: 0;
  }

  .spec-table td {
    padding-top: 0.35rem;
  }
}
