@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope-latin.woff2") format("woff2");
  font-weight: 400 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Newsreader";
  src: url("../fonts/newsreader-latin.woff2") format("woff2");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #f2f0e9;
  --surface: #faf8f3;
  --surface-2: #e7eae4;
  --text: #18231f;
  --muted: #637069;
  --line: #d3d6ce;
  --accent: #a8531f;
  --accent-2: #2f6f6b;
  --accent-3: #637b5f;
  --dark: #121211;
  --light: #fff8ec;
  --shadow: 0 22px 60px rgba(34, 28, 20, .14);
  --serif: "Newsreader", Georgia, serif;
  --sans: "Manrope", "Segoe UI", sans-serif;
}

html[data-theme="night"] {
  color-scheme: dark;
  --bg: #121211;
  --surface: #1a1917;
  --surface-2: #24211e;
  --text: #f3eee6;
  --muted: #b8b0a5;
  --line: rgba(243, 238, 230, .15);
  --accent: #c9915d;
  --accent-2: #b18462;
  --accent-3: #918577;
  --shadow: 0 24px 70px rgba(0, 0, 0, .32);
}

* { box-sizing: border-box; }
html {
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}
body {
  width: 100%;
  max-width: 100%;
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
section[id] { scroll-margin-top: 100px; }
.container { width: min(1280px, calc(100% - 40px)); margin: auto; }
main, header, footer, section {
  max-width: 100%;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 300;
  top: 10px;
  left: 50%;
  padding: 10px 14px;
  border: 1px solid var(--accent);
  border-radius: 4px;
  background: var(--surface);
  color: var(--text);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  transform: translate(-50%, -160%);
  transition: transform .18s ease;
}

.skip-link:focus {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  transform: translate(-50%, 0);
}

.topbar {
  background: var(--dark);
  color: rgba(255, 248, 236, .78);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  font-size: 12px;
}
.topbar-in {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.toplinks { display: flex; gap: 18px; flex-wrap: wrap; }
.toplinks a:hover { color: #fff; }

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in srgb, var(--surface) 92%, transparent);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}
body.home {
  background: #e6d7b6;
}
body.home .topbar {
  background: linear-gradient(180deg, #70664f, #5d543f);
  color: rgba(255, 248, 236, .88);
}
body.home .header {
  top: 0;
  margin: 0 12px;
  border: 0;
  border-radius: 3px;
  background: rgba(51, 47, 38, .92);
  color: #fff8ec;
  backdrop-filter: blur(14px);
}
body.home .nav {
  min-height: 56px;
}
body.home .brand,
body.home .navlinks,
body.home .navlinks a,
body.home .actions {
  color: #fff8ec;
}
body.home .mark {
  background: linear-gradient(135deg, #7f947f, #c57942);
}
body.home .theme-toggle,
body.home .actions .btn {
  background: rgba(255, 248, 236, .08);
  border-color: rgba(255, 248, 236, .18);
  color: #fff8ec;
}
body.home .menu {
  color: #fff8ec;
  border-color: rgba(255, 248, 236, .24);
}
body.home .navlinks.mobile {
  background: rgba(51, 47, 38, .98);
  color: #fff8ec;
  border-bottom-color: rgba(255, 248, 236, .14);
}
.nav {
  min-width: 0;
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 26px;
}
.brand {
  min-width: 0;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-size: 22px;
  white-space: nowrap;
}
.brand > span:last-child {
  overflow: visible;
  text-overflow: clip;
}
.brand span span { color: var(--accent); }
.mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  color: #fff8ec;
  font: 800 18px var(--sans);
}
.navlinks {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
  color: var(--muted);
  font-size: 14px;
}
.navlinks a { white-space: nowrap; }
.navlinks a:hover { color: var(--text); }
.navlinks a.nav-catalogues {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid color-mix(in srgb, var(--accent) 56%, var(--line));
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent) 11%, transparent);
  color: var(--text);
  font-weight: 700;
}
.navlinks a.nav-catalogues:hover {
  border-color: var(--accent);
  color: var(--text);
}

.catalogue-download-control {
  position: relative;
  display: block;
}

.catalogue-download-toggle {
  min-height: 38px;
  border: 1px solid color-mix(in srgb, var(--accent) 56%, var(--line));
  border-radius: 999px;
  padding: 0 15px;
  background: color-mix(in srgb, var(--accent) 11%, transparent);
  color: var(--text);
  cursor: pointer;
  font: inherit;
  font-weight: 700;
}

.catalogue-download-toggle:hover,
.catalogue-download-toggle:focus-visible,
.catalogue-download-control.is-open .catalogue-download-toggle {
  border-color: var(--accent);
  background: color-mix(in srgb, var(--accent) 18%, transparent);
}

.catalogue-download-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 30;
  display: grid;
  width: min(340px, calc(100vw - 36px));
  gap: 4px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: color-mix(in srgb, var(--surface) 96%, transparent);
  box-shadow: 0 20px 48px rgba(0, 0, 0, .22);
  color: var(--text);
  text-align: left;
  backdrop-filter: blur(16px);
}

.catalogue-download-heading {
  margin: 3px 8px 7px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.catalogue-download-menu a {
  display: grid;
  gap: 2px;
  padding: 10px 11px;
  border-radius: 8px;
  color: var(--text);
}

.catalogue-download-menu a:hover,
.catalogue-download-menu a:focus-visible {
  background: var(--surface-2);
}

.catalogue-download-menu a strong {
  font-size: 13px;
}

.catalogue-download-menu a span {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.4;
}
.actions {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.btn {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 18px;
  background: transparent;
  cursor: pointer;
  font-weight: 700;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-1px); border-color: var(--accent); }
.btn-primary { background: var(--accent); border-color: var(--accent); color: #fff8ec; }
.btn-light { background: rgba(255, 248, 236, .88); color: #17201c; border-color: transparent; }
.theme-toggle {
  min-width: 82px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 9px 12px;
  background: var(--surface-2);
  cursor: pointer;
  font-weight: 800;
}
.theme-icon {
  display: inline-grid;
  place-items: center;
  min-width: 16px;
}
.menu {
  display: none;
  flex-shrink: 0;
  margin-left: auto;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 13px;
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: 70vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}
.hero-carousel {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-track {
  height: 100%;
  display: flex;
  width: max-content;
  animation: heroSlide 58s linear infinite;
}
.hero-track img {
  width: min(46vw, 620px);
  min-width: 360px;
  height: 100%;
  object-fit: cover;
  filter: saturate(.92) contrast(1.02);
}
.pagehero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay, .pagehero:after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 23, 20, .92), rgba(17, 23, 20, .62) 52%, rgba(17, 23, 20, .34)),
    linear-gradient(180deg, rgba(17, 23, 20, .2), rgba(17, 23, 20, .84));
}
@keyframes heroSlide {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.hero-in {
  position: relative;
  z-index: 2;
  padding: 56px 0 40px;
  color: #fff8ec;
}
.eyebrow {
  margin: 0 0 16px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.eyebrow.left { color: var(--accent-2); }
h1, h2, h3 {
  margin: 0;
  line-height: 1.08;
}
h1, h2 { font-family: var(--serif); font-weight: 700; letter-spacing: 0; }
h1 {
  max-width: 760px;
  font-size: clamp(38px, 4.9vw, 58px);
  overflow-wrap: break-word;
  text-wrap: balance;
}
h2 { font-size: clamp(34px, 4.6vw, 58px); }
h3 { font-size: 23px; }
.hero-copy {
  max-width: 620px;
  margin: 18px 0 22px;
  color: rgba(255, 248, 236, .86);
  font-size: 16px;
  line-height: 1.6;
  overflow-wrap: break-word;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-trust {
  width: min(100%, 920px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 30px;
  border: 1px solid rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .1);
  box-shadow: var(--shadow);
}
.hero-trust span {
  display: grid;
  gap: 4px;
  min-height: 72px;
  align-content: center;
  padding: 14px;
  background: rgba(17, 23, 20, .56);
  color: rgba(255, 248, 236, .72);
}
.hero-trust strong { color: #fff8ec; font-size: 21px; }

.home-finder {
  position: relative;
  min-height: 760px;
  padding: 108px 0 86px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(108, 98, 72, .2), rgba(230, 215, 182, .9) 38%, #f6f4ef 88%),
    #e4d3a9;
}
.home-finder-bg {
  position: absolute;
  inset: 0;
  opacity: .32;
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 255, 255, .48), transparent 18%),
    radial-gradient(circle at 92% 22%, rgba(255, 244, 202, .55), transparent 24%),
    linear-gradient(100deg, rgba(79, 70, 52, .25), transparent 38%),
    url("../media/hero/automation-hero-08.jpg") center / cover;
  filter: saturate(.8) blur(.2px);
}
.home-finder-in {
  position: relative;
  z-index: 1;
}
.finder-search {
  max-width: 620px;
  margin: 0 auto 24px;
}
.finder-search h1 {
  margin: 0;
  font: 600 18px/1.2 var(--sans);
  color: #181614;
}
.finder-input {
  display: grid;
  grid-template-columns: 1fr auto;
  margin-top: 8px;
  border-radius: 4px;
  background: #f4fbff;
  box-shadow: 0 8px 20px rgba(44, 40, 30, .12);
  overflow: hidden;
}
.finder-input input {
  min-height: 48px;
  width: 100%;
  border: 0;
  padding: 0 14px;
  background: #f4fbff;
  color: #181614;
  outline: 0;
}
.finder-input button {
  min-width: 92px;
  border: 0;
  background: #423c31;
  color: #fff8ec;
  cursor: pointer;
  font-weight: 800;
}
.finder-tabs {
  width: min(420px, 100%);
  min-height: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 18px auto 24px;
  border: 4px solid #3f392f;
  border-radius: 999px;
  background: #3f392f;
  overflow: hidden;
}
.finder-tabs button {
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #fff8ec;
  cursor: pointer;
  font-weight: 800;
}
.finder-tabs button.active {
  background: #f3f4f2;
  color: #2b281f;
}
.finder-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  width: min(1260px, 100%);
  margin: 0 auto;
}
.finder-card {
  position: relative;
  min-height: 430px;
  border-radius: 4px;
  overflow: hidden;
  background: #2e2a22;
  box-shadow: 0 18px 46px rgba(54, 45, 30, .22);
  color: #fff;
}
.finder-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(20, 18, 15, .82), rgba(20, 18, 15, .28) 38%, rgba(20, 18, 15, .88)),
    linear-gradient(90deg, rgba(20, 18, 15, .32), transparent);
}
.finder-card img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  transition: transform .45s ease, filter .45s ease;
  filter: saturate(.9) contrast(1.02);
}
.finder-card:nth-child(3) img {
  object-fit: contain;
  padding: 54px;
  background: linear-gradient(180deg, #eee7dc, #c9bda9);
}
.finder-card:hover img {
  transform: scale(1.045);
  filter: saturate(1.04) contrast(1.05);
}
.finder-card > span {
  position: absolute;
  z-index: 2;
  left: 24px;
  top: 28px;
  max-width: calc(100% - 48px);
  font-size: clamp(26px, 2.4vw, 34px);
  line-height: 1.18;
}
.finder-card div {
  position: absolute;
  z-index: 2;
  left: 24px;
  right: 24px;
  bottom: 24px;
  transform: translateY(20px);
  opacity: .0;
  transition: transform .25s ease, opacity .25s ease;
}
.finder-card:hover div,
.finder-card:focus-visible div {
  transform: translateY(0);
  opacity: 1;
}
.finder-card h2 {
  font-family: var(--sans);
  font-size: 20px;
}
.finder-card p {
  margin: 8px 0 0;
  color: rgba(255, 248, 236, .82);
  font-size: 14px;
}

.automation-paths {
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--surface-2) 82%, var(--accent-2)), var(--surface));
}
.path-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.path-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
  background: color-mix(in srgb, var(--surface) 90%, transparent);
  box-shadow: 0 18px 44px rgba(24, 30, 26, .08);
}
.path-grid span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.path-grid p {
  color: var(--muted);
}

.technology-hero img {
  object-position: center;
  filter: brightness(.62) contrast(1.08) saturate(.9);
}
.tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.tech-grid article,
.scene-tech-row article,
.experience-roadmap div {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 14px 36px rgba(24, 30, 26, .08);
}
.tech-grid article {
  min-height: 240px;
  padding: 24px;
}
.tech-grid span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.tech-grid p,
.scene-tech-row p,
.experience-roadmap span {
  color: var(--muted);
}
.scene-tech-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.scene-tech-row article {
  min-height: 190px;
  padding: 22px;
}
.experience-roadmap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.experience-roadmap div {
  display: grid;
  gap: 10px;
  align-content: start;
  min-height: 150px;
  padding: 22px;
}
.experience-roadmap strong {
  font-size: 20px;
}

.section { padding: 92px 0; }
.alt { background: var(--surface-2); }
.intro-band {
  padding: 48px 0;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}
.intro-grid, .section-head.split, .security-grid {
  display: grid;
  grid-template-columns: .95fr 1fr;
  gap: 54px;
  align-items: start;
}
.intro-grid p:last-child,
.section-head p:last-child,
.security-grid p {
  color: var(--muted);
  font-size: 17px;
}
.section-head { max-width: 860px; margin-bottom: 34px; }
.section-head.split { max-width: none; }

.solution-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.solution-card, .industry, .brand-groups article, .panel, .project-grid span {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 12px 36px rgba(24, 30, 26, .08);
}
.solution-card {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.solution-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}
.solution-card span {
  margin: 18px 18px 8px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.solution-card h3, .solution-card p { margin-left: 18px; margin-right: 18px; }
.solution-card p { color: var(--muted); font-size: 14px; }
.solution-card.feature { grid-column: span 1; }
.solution-card:hover img { filter: saturate(1.08) contrast(1.04); }

.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.industry { padding: 26px; }
.industry > span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 20px;
  border-radius: 8px;
  background: var(--accent-2);
  color: #fff;
  font-weight: 800;
}
.industry p, .industry li { color: var(--muted); }
.industry ul { margin: 20px 0 0; padding-left: 18px; }

.experience-section { background: var(--dark); color: #fff8ec; }
.experience-section .section-head p { color: rgba(255, 248, 236, .72); }
.demo-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, .65fr);
  gap: 18px;
}
.demo-feature, .mini-video, .gallery-strip button {
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  background: #0e0e0d;
  color: inherit;
  cursor: pointer;
  overflow: hidden;
  text-align: left;
}
.demo-feature {
  position: relative;
  min-height: 520px;
}
.demo-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  opacity: .88;
}
.play {
  position: absolute;
  left: 28px;
  bottom: 28px;
  display: inline-grid;
  place-items: center;
  width: 80px;
  height: 80px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff8ec;
  font-weight: 800;
}
.demo-list { display: grid; gap: 12px; }
.mini-video {
  min-height: 154px;
  display: grid;
  grid-template-columns: 140px 1fr;
  align-items: stretch;
}
.mini-video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mini-video span {
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 18px;
}
.mini-video small { color: rgba(255, 248, 236, .68); }
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 18px;
}
.gallery-strip button {
  position: relative;
  aspect-ratio: 4 / 3;
}
.gallery-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-strip span {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 10px 12px;
  border-radius: 6px;
  background: rgba(0, 0, 0, .62);
  font-weight: 800;
}

.brand-groups {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
}
.brand-rail,
.brand-groups article {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  padding: 24px 0 24px;
  overflow: hidden;
  box-sizing: border-box;
}
.brand-groups h3 { padding: 0 24px; }
.brand-marquee {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  height: 46px;
  margin-top: 18px;
  padding: 0;
  contain: layout paint;
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.brand-track {
  position: absolute;
  top: 0;
  left: 24px;
  width: max-content;
  min-width: max-content;
  max-width: none;
  height: 46px;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0;
  will-change: transform;
}
.brand-rail-ltr .brand-track {
  animation: brand-marquee-ltr 42s linear infinite;
}
.brand-rail-rtl .brand-track {
  animation: brand-marquee-rtl 34s linear infinite;
}
.brand-rail:hover .brand-track,
.brand-rail:focus-within .brand-track {
  animation-play-state: paused;
}
.brand-cloud {
  display: flex;
  flex: 0 0 auto;
  flex-wrap: nowrap;
  align-items: center;
  gap: 10px;
  padding-right: 10px;
  width: max-content;
  min-width: max-content;
}
.brand-cloud span {
  display: inline-flex;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  background: color-mix(in srgb, var(--surface) 72%, var(--accent-2));
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

@keyframes brand-marquee-rtl {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes brand-marquee-ltr {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

.device-hero > img { object-position: center top; }
.device-hero .pagecopy h1 { max-width: 980px; }
.device-intro { overflow: hidden; }
.device-rail {
  position: relative;
  height: 54px;
  overflow: hidden;
  margin: 24px 0;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.device-rail-track {
  position: absolute;
  inset: 0 auto 0 0;
  display: flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  animation: device-rail 34s linear infinite;
}
.device-rail:hover .device-rail-track { animation-play-state: paused; }
.device-rail-track span {
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
  background: var(--surface);
  color: var(--text);
  font-weight: 800;
  box-shadow: 0 10px 28px rgba(24, 30, 26, .08);
}
@keyframes device-rail {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.device-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.device-metrics span {
  min-height: 92px;
  display: grid;
  align-content: center;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: var(--surface);
  color: var(--muted);
}
.device-metrics strong {
  color: var(--text);
  font-size: 30px;
}
.device-story-grid {
  display: grid;
  gap: 16px;
}
.device-story {
  display: grid;
  grid-template-columns: minmax(260px, .74fr) minmax(0, 1fr);
  gap: 26px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: var(--surface);
  box-shadow: 0 12px 36px rgba(24, 30, 26, .08);
}
.device-story:nth-child(even) {
  grid-template-columns: minmax(0, 1fr) minmax(260px, .74fr);
}
.device-story:nth-child(even) img { order: 2; }
.device-story img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 6px;
  object-fit: cover;
  background: #fff;
}
.device-story span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.device-story p,
.device-story li {
  color: var(--muted);
}
.device-story ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding-left: 18px;
}
.device-tools {
  display: grid;
  gap: 14px;
  margin-bottom: 22px;
}
.device-search {
  width: 100%;
  min-height: 54px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 16px;
  background: var(--surface);
  color: var(--text);
  font-weight: 700;
}
.device-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.device-filters button {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 13px;
  background: var(--surface);
  color: var(--muted);
  cursor: pointer;
  font-weight: 800;
}
.device-filters button.active,
.device-filters button:hover {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff8ec;
}
.device-count {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}
.device-index-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  align-items: stretch;
}
.device-index-card {
  min-width: 0;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  cursor: pointer;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(24, 30, 26, .06);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.device-index-card:hover {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--accent) 54%, var(--line));
  box-shadow: 0 18px 42px rgba(24, 30, 26, .12);
}
.device-index-card[hidden] { display: none; }
.device-index-card img {
  width: 100%;
  aspect-ratio: 2 / 1;
  height: auto;
  object-fit: contain;
  object-position: center;
  background: #fff;
}
.device-index-card > div {
  display: grid;
  gap: 6px;
  padding: 16px;
  flex: 1;
  grid-template-rows: auto minmax(48px, auto) minmax(40px, auto) auto;
}
.device-index-card span {
  display: inline-flex;
  color: var(--accent-2);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.device-index-card h3 {
  display: -webkit-box;
  min-height: 44px;
  overflow-wrap: anywhere;
  overflow: hidden;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.28;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.device-index-card p {
  display: -webkit-box;
  margin: 0;
  min-height: 38px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.device-index-card small {
  color: var(--muted);
  font-weight: 800;
}
.device-modal {
  width: min(94vw, 1120px);
  max-height: 86vh;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--text);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.device-modal::backdrop {
  background: rgba(0, 0, 0, .72);
  backdrop-filter: blur(8px);
}
.device-modal-close {
  position: fixed;
  right: max(20px, 3vw);
  top: max(18px, 3vh);
  z-index: 4;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(0,0,0,.72);
  color: #fff;
  cursor: pointer;
  font-weight: 800;
}
.device-modal-grid {
  display: grid;
  grid-template-columns: minmax(360px, .92fr) minmax(420px, 1.08fr);
  gap: 0;
  max-height: 86vh;
}
.device-modal-media {
  min-height: 0;
  padding: 34px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(145deg, rgba(255,255,255,.72), rgba(235,226,212,.46)),
    #f5f2ea;
  overflow: hidden;
}
.device-modal-image-button {
  width: min(100%, 560px);
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
  cursor: zoom-in;
}
.device-modal-image-button:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}
.device-modal-media img,
.device-image-viewer img {
  display: block;
}
.device-modal-media img {
  width: min(100%, 560px);
  aspect-ratio: 4 / 3;
  height: auto;
  max-height: 64vh;
  object-fit: contain;
  object-position: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(24, 30, 26, .16);
}
.device-image-viewer {
  width: min(96vw, 1280px);
  max-height: 96vh;
  padding: 0;
  border: 0;
  background: transparent;
  overflow: visible;
}
.device-image-viewer::backdrop {
  background: rgba(0, 0, 0, .86);
  backdrop-filter: blur(8px);
}
.device-image-viewer img {
  max-width: 96vw;
  max-height: 88vh;
  margin: auto;
  object-fit: contain;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .44);
}
.device-image-viewer-close {
  position: fixed;
  right: max(20px, 3vw);
  top: max(18px, 3vh);
  z-index: 5;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(0,0,0,.72);
  color: #fff;
  cursor: pointer;
  font-weight: 800;
}
.device-modal-copy {
  max-height: 86vh;
  overflow: auto;
  padding: clamp(24px, 3vw, 38px);
}
.device-modal-copy > span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--accent-2);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.device-modal-copy h3 {
  font-family: var(--serif);
  font-size: clamp(27px, 2.5vw, 36px);
  line-height: 1.08;
  text-wrap: balance;
  overflow-wrap: break-word;
}
.device-modal-copy p,
.device-modal-copy li,
.device-modal-copy dd {
  color: var(--muted);
}
.device-modal-copy dl {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 22px 0;
}
.device-modal-copy dl div {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: var(--surface-2);
}
.device-modal-copy dt {
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.device-modal-copy dd {
  margin: 4px 0 0;
  font-weight: 800;
}
.device-modal-copy h4 {
  margin: 22px 0 10px;
}
.device-modal-copy ul {
  margin: 0;
  padding-left: 18px;
}
.device-modal-refs {
  max-height: 220px;
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px 14px 14px 32px;
  background: var(--surface-2);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.project-grid span {
  min-height: 88px;
  display: flex;
  align-items: center;
  padding: 18px;
  font-weight: 800;
}

.security-list {
  display: grid;
  gap: 12px;
}
.security-list div {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}
.security-list span { color: var(--muted); }

.cta-band { padding: 88px 0; background: var(--accent-2); color: #fff8ec; }
.cta {
  max-width: 840px;
  text-align: center;
}
.cta .eyebrow { color: rgba(255, 248, 236, .8); }
.cta p { color: rgba(255, 248, 236, .82); font-size: 18px; }

.footer {
  padding: 58px 0 24px;
  background: var(--dark);
  color: rgba(255, 248, 236, .72);
}
.footergrid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.4fr .8fr;
  gap: 34px;
}
.footer .brand { color: #fff8ec; margin-bottom: 16px; }
.footer h4 {
  margin: 0 0 16px;
  color: #fff8ec;
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.footer a, .footer p {
  display: block;
  margin: 0 0 9px;
  color: rgba(255, 248, 236, .72);
  font-size: 14px;
}
.footer a:hover { color: #fff8ec; }
.map-link {
  display: inline-block;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}
.map-card {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.65;
}
.map-card span {
  display: block;
  margin-top: 10px;
  color: var(--accent);
  font-weight: 800;
}
.map-link:hover {
  color: var(--accent);
}
.copyline {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 32px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .14);
  font-size: 12px;
  color: rgba(255, 248, 236, .56);
}

.pagehero {
  position: relative;
  min-height: 540px;
  display: flex;
  align-items: end;
  overflow: hidden;
  background: var(--dark);
}
.pagecopy {
  position: relative;
  z-index: 2;
  padding: 110px 0 70px;
  color: #fff8ec;
}
.pagecopy h1 { max-width: 940px; }
.pagecopy p { max-width: 780px; color: rgba(255, 248, 236, .82); font-size: 19px; }
.crumb { margin-bottom: 18px; color: rgba(255, 248, 236, .68); font-size: 13px; }
.crumb a { color: #fff8ec; }

.g2, .g3, .g4, .products, .outcomes, .scenes, .benefits {
  display: grid;
  gap: 16px;
}
.g2 { grid-template-columns: repeat(2, 1fr); }
.g3 {
  grid-template-columns: repeat(3, 1fr);
  align-items: start;
}
.g4, .benefits { grid-template-columns: repeat(4, 1fr); }
.products { grid-template-columns: repeat(3, 1fr); }
.outcomes { grid-template-columns: repeat(2, 1fr); }
.panel, .outcome, .scene, .benefit, .product, .step, .usecase {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}
.panel, .outcome, .scene, .benefit { padding: 24px; }
.g3 .panel { align-self: start; }
.g3 .panel ul { margin-bottom: 0; }
body[data-solution="security-av-solutions"] .g3 .panel:nth-child(3) ul {
  columns: 2;
  column-gap: 28px;
}
.sitemap-tree-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}
.sitemap-card {
  position: relative;
  overflow: hidden;
}
.sitemap-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}
.tree-root {
  display: flex;
  align-items: center;
  gap: 12px;
}
.tree-root h3 {
  margin: 0;
}
.folder-shape {
  position: relative;
  width: 38px;
  height: 28px;
  flex: 0 0 38px;
  border: 1px solid color-mix(in srgb, var(--accent) 54%, var(--line));
  border-radius: 7px 7px 5px 5px;
  background: color-mix(in srgb, var(--accent) 18%, var(--surface));
  box-shadow: inset 0 -8px 18px rgba(188, 106, 58, .12);
}
.folder-shape::before {
  content: "";
  position: absolute;
  left: 5px;
  top: -7px;
  width: 18px;
  height: 8px;
  border: 1px solid color-mix(in srgb, var(--accent) 54%, var(--line));
  border-bottom: 0;
  border-radius: 6px 6px 0 0;
  background: color-mix(in srgb, var(--accent) 22%, var(--surface));
}
.site-tree {
  list-style: none;
  margin: 20px 0 0 18px;
  padding: 2px 0 0 20px;
  border-left: 1px solid color-mix(in srgb, var(--accent-2) 45%, var(--line));
}
.site-tree li {
  position: relative;
  margin: 0;
  padding: 0 0 14px 22px;
}
.site-tree li:last-child {
  padding-bottom: 0;
}
.site-tree li::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 13px;
  width: 28px;
  border-top: 1px solid color-mix(in srgb, var(--accent-2) 45%, var(--line));
}
.site-tree li::after {
  content: "";
  position: absolute;
  left: 3px;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--accent);
}
.site-tree a {
  display: inline-block;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.45;
}
.site-tree a:hover {
  color: var(--accent);
}
.panel p, .panel li, .outcome, .scene p, .benefit p, .product p, .usecase p, .step p {
  color: var(--muted);
}
.product { overflow: hidden; }
.product img { width: 100%; height: 230px; object-fit: cover; }
.pcopy { padding: 20px; }
.usecase {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 22px;
  padding: 22px;
  margin-bottom: 12px;
}
.step {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  padding: 22px;
  margin-bottom: 12px;
}
.num {
  display: grid;
  place-items: center;
  height: 54px;
  border-radius: 8px;
  background: var(--accent-2);
  color: #fff;
  font-weight: 800;
}
.check { color: var(--accent-2); font-weight: 800; }
details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: 18px 20px;
  margin-bottom: 12px;
}
summary {
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}
details p { color: var(--muted); margin-bottom: 0; }
.solution-media { background: var(--surface-2); }
.solution-media-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.solution-media-grid button {
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  overflow: hidden;
  cursor: zoom-in;
  aspect-ratio: 4 / 5;
}
.solution-media-grid img { width: 100%; height: 100%; object-fit: cover; }
.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 20px;
}
.video-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}
.video-card video { display: block; width: 100%; aspect-ratio: 16 / 9; background: #000; }
.video-copy { padding: 18px; }

.form {
  width: 100%;
  margin: 7px 0 16px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--text);
}
textarea.form { resize: vertical; }
.form-hint, .note { color: var(--muted); font-size: 14px; }
.honeypot { position: absolute; left: -10000px; opacity: 0; }
.mt-16 { margin-top: 16px; }
.lead-muted { color: var(--muted); font-size: 18px; }

.media-lightbox, .video-lightbox {
  width: min(94vw, 1100px);
  max-height: 92vh;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--dark);
  color: #fff8ec;
  box-shadow: var(--shadow);
}
.media-lightbox::backdrop, .video-lightbox::backdrop {
  background: rgba(0, 0, 0, .78);
  backdrop-filter: blur(8px);
}
.media-lightbox img {
  max-width: 100%;
  max-height: 86vh;
  margin: auto;
  object-fit: contain;
}
.lightbox-close, .video-lightbox-close {
  position: fixed;
  right: max(20px, 3vw);
  top: max(18px, 3vh);
  z-index: 4;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(0,0,0,.72);
  color: #fff;
  cursor: pointer;
}
.video-modal-frame { background: #000; }
.video-modal-frame video {
  display: block;
  width: 100%;
  max-height: 72vh;
  object-fit: contain;
}
.video-modal-copy { padding: 20px 24px 24px; }
.video-modal-copy span { color: var(--accent); font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.backtop {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 80;
  display: none;
  border: 0;
  border-radius: 999px;
  padding: 12px 14px;
  background: var(--accent);
  color: #fff;
  cursor: pointer;
  box-shadow: var(--shadow);
}

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

@media (max-width: 1120px) {
  .navlinks { display: none; }
  .menu { display: inline-flex; }
  .navlinks.mobile {
    display: flex;
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    padding: 20px;
    flex-direction: column;
    align-items: flex-start;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
  }
  .navlinks.mobile a.nav-catalogues {
    width: 100%;
    min-height: 44px;
  }
  .navlinks.mobile .catalogue-download-control { width: 100%; }
  .navlinks.mobile .catalogue-download-toggle { width: 100%; min-height: 44px; }
  .navlinks.mobile .catalogue-download-menu { position: static; width: 100%; margin-top: 6px; box-shadow: none; max-height: min(56vh, 420px); }
  .solution-grid, .g4, .benefits { grid-template-columns: repeat(2, 1fr); }
  .project-grid, .gallery-strip, .solution-media-grid { grid-template-columns: repeat(2, 1fr); }
  .footergrid { grid-template-columns: repeat(2, 1fr); }
  .tech-grid { grid-template-columns: repeat(2, 1fr); }
  .scene-tech-row,
  .experience-roadmap { grid-template-columns: repeat(2, 1fr); }
  .finder-card-grid { grid-template-columns: repeat(2, 1fr); }
  .finder-card,
  .finder-card img {
    min-height: 360px;
  }
}

@media (max-width: 1280px) {
  .nav { gap: 18px; }
  .navlinks { display: none; }
  .menu { display: inline-flex; }
  .navlinks.mobile {
    display: flex;
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    padding: 20px;
    flex-direction: column;
    align-items: flex-start;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
  }
  .navlinks.mobile a.nav-catalogues {
    width: 100%;
    min-height: 44px;
  }
  .navlinks.mobile .catalogue-download-control { width: 100%; }
  .navlinks.mobile .catalogue-download-toggle { width: 100%; min-height: 44px; }
  .navlinks.mobile .catalogue-download-menu { position: static; width: 100%; margin-top: 6px; box-shadow: none; max-height: min(56vh, 420px); }
}

@media (max-width: 820px) {
  .topbar { display: none; }
  body.home .header {
    margin: 0;
    border-radius: 0;
  }
  body.home .nav {
    min-height: 68px;
  }
  .nav { min-height: 68px; gap: 10px; }
  .navlinks.mobile { top: 68px; }
  .actions .btn:not(.theme-toggle) { display: none; }
  .brand { font-size: 19px; }
  .hero { min-height: 70vh; }
  .hero-track img { width: 68vw; min-width: 280px; }
  .hero-in { padding: 44px 0 34px; }
  .home-finder {
    min-height: auto;
    padding: 44px 0 58px;
  }
  .finder-search {
    margin-bottom: 18px;
  }
  .finder-card-grid { grid-template-columns: 1fr; }
  .finder-card,
  .finder-card img {
    min-height: 310px;
  }
  .finder-card div {
    transform: translateY(0);
    opacity: 1;
  }
  .hero-trust, .intro-grid, .section-head.split, .security-grid, .demo-layout, .g2 {
    grid-template-columns: 1fr;
  }
  .hero-trust { margin-top: 24px; }
  .industry-grid, .g3, .sitemap-tree-grid, .products, .outcomes, .video-grid { grid-template-columns: 1fr; }
  .solution-grid { grid-template-columns: 1fr; }
  .path-grid { grid-template-columns: 1fr; }
  .tech-grid,
  .scene-tech-row,
  .experience-roadmap { grid-template-columns: 1fr; }
  .device-metrics { grid-template-columns: 1fr; }
  .device-story,
  .device-story:nth-child(even) {
    grid-template-columns: 1fr;
  }
  .device-story:nth-child(even) img { order: 0; }
  .device-modal { overflow: auto; }
  .device-modal-grid { grid-template-columns: 1fr; max-height: none; }
  .device-modal-media { min-height: 0; padding: 22px; }
  .device-modal-image-button { width: 100%; }
  .device-modal-media img { width: 100%; max-height: none; }
  .device-modal-copy { max-height: none; padding: 24px; }
  .section { padding: 68px 0; }
  .mini-video { grid-template-columns: 112px 1fr; min-height: 122px; }
  .demo-feature { min-height: 410px; }
  .usecase, .step, .security-list div { grid-template-columns: 1fr; }
  .footergrid, .project-grid, .gallery-strip, .solution-media-grid { grid-template-columns: 1fr; }
  .copyline { flex-direction: column; }
  .brand-groups article { padding-block: 22px; }
  .brand-groups h3 { padding-inline: 18px; }
}

@media (max-width: 480px) {
  .container { width: min(100% - 24px, 1180px); }
  h1 { font-size: 36px; }
  h2 { font-size: 32px; }
  .nav { min-height: 62px; gap: 8px; }
  .navlinks.mobile { top: 62px; }
  .brand {
    max-width: calc(100vw - 92px);
    gap: 8px;
    font-size: 18px;
  }
  .mark { width: 36px; height: 36px; }
  .actions { display: none; }
  .menu {
    padding: 8px 11px;
    font-size: 13px;
  }
  .hero { min-height: auto; }
  .finder-input {
    grid-template-columns: 1fr;
  }
  .finder-input button {
    min-height: 42px;
  }
  .finder-tabs {
    grid-template-columns: 1fr;
    border-radius: 16px;
  }
  .finder-card > span {
    left: 18px;
    top: 20px;
    font-size: 28px;
  }
  .finder-card div {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }
  .hero-track img { width: 82vw; min-width: 240px; }
  .hero-in { padding: 40px 0 32px; }
  .eyebrow { font-size: 11px; line-height: 1.5; }
  .hero-actions .btn { width: 100%; }
  .hero-trust { margin-top: 20px; }
  .hero-trust span { min-height: 62px; }
  .brand-cloud {
    gap: 8px;
    padding-inline: 16px;
  }
  .brand-cloud span {
    padding: 9px 12px;
    font-size: 13px;
  }
  .play { width: 64px; height: 64px; }
  .device-index-grid { grid-template-columns: 1fr; }
  .device-index-card img { height: auto; }
  .device-modal { overflow: auto; }
  .device-modal-grid { grid-template-columns: 1fr; max-height: none; }
  .device-modal-media { min-height: 0; padding: 18px; }
  .device-modal-image-button { width: 100%; }
  .device-modal-media img { width: 100%; max-height: none; }
  .device-modal-copy { max-height: none; padding: 24px; }
  .device-modal-copy dl { grid-template-columns: 1fr; }
}

@media (max-width: 360px) {
  .container { width: min(100% - 18px, 1180px); }
  .brand { max-width: calc(100vw - 78px); font-size: 16px; }
  .mark { width: 34px; height: 34px; }
  .menu { padding: 7px 9px; }
  h1 { font-size: 31px; line-height: 1.1; }
  h2 { font-size: 28px; }
  h3 { font-size: 21px; }
  .hero-copy { font-size: 15px; }
  .hero-trust span { padding: 12px; }
  .hero-trust strong { font-size: 19px; }
  .section { padding: 54px 0; }
  .panel, .outcome, .scene, .benefit { padding: 18px; }
  .brand-groups h3 { padding-inline: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
  .brand-marquee {
    height: auto;
    overflow: visible;
    contain: none;
    mask-image: none;
    -webkit-mask-image: none;
  }
  .brand-track {
    position: static;
    height: auto;
    width: auto;
    min-width: 0;
    display: block;
    transform: none !important;
  }
  .hero-track {
    animation: none !important;
    transform: translateX(-10%) !important;
  }
  .brand-track .brand-cloud[aria-hidden="true"] {
    display: none;
  }
  .brand-cloud {
    flex-wrap: wrap;
    padding: 0 24px;
  }
  .device-rail {
    height: auto;
    overflow: visible;
    mask-image: none;
    -webkit-mask-image: none;
  }
  .device-rail-track {
    position: static;
    width: auto;
    flex-wrap: wrap;
    animation: none;
  }
}
