@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap");

:root {
  --ink: #0a0c0e;
  --paper: #f4f3ef;
  --white: #fff;
  --muted: #777a7d;
  --line: rgba(10, 12, 14, 0.14);
  --blue: #00a6df;
  --blue2: #4cc6ee;
  --dark: #101316;
  --max: 1500px;
  --siigmatic-yellow: #fbbd14;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "IBM Plex Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-optical-sizing: auto;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}
button,
input,
textarea,
select {
  font: inherit;
}
::selection {
  background: var(--blue);
  color: #fff;
}
.brandbar {
  height: 36px;
  background: #090b0d;
  color: #b9bec2;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1001;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: auto;
  scrollbar-width: none;
}
.brandbar::-webkit-scrollbar {
  display: none;
}
.brandbar-inner {
  width: min(var(--max), calc(100% - 48px));
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brandbar-brands {
  display: flex;
  align-items: center;
  gap: 0;
  height: 36px;
}
.brand-pill {
  height: 36px;
  display: flex;
  align-items: center;
  padding: 0 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  transition: 0.25s;
  color: #8e9499;
}
.brand-pill:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}
.brand-pill:hover,
.brand-pill.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.045);
}
.brand-pill.active {
  box-shadow: inset 0 -2px var(--blue);
}
.brandbar-meta {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #70767a;
}
.nav {
  height: 82px;
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(244, 243, 239, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: 0.25s;
}
.nav.scrolled {
  border-color: var(--line);
}
.nav-inner {
  height: 100%;
  width: min(var(--max), calc(100% - 48px));
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.logo img {
  width: 178px;
  height: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 12px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.nav-links a {
  position: relative;
  padding: 8px 0;
}
.nav-links a:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 1px;
  height: 1px;
  width: 0;
  background: var(--ink);
  transition: 0.25s;
}
.nav-links a:hover:after,
.nav-links a.current:after {
  width: 100%;
}
.nav-cta {
  background: var(--ink);
  color: #fff !important;
  padding: 14px 18px !important;
}
.nav-cta:after {
  display: none !important;
}
.menu-btn {
  display: none;
  border: 0;
  background: none;
  font-size: 22px;
  padding: 10px;
}
.hero {
  min-height: clamp(640px, 82svh, 760px);
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 18%, rgba(0, 166, 223, 0.16), transparent 24%),
    radial-gradient(circle at 80% 12%, rgba(11, 92, 145, 0.2), transparent 18%),
    linear-gradient(135deg, #090b0d 0%, #121518 42%, #0a0c0e 100%);
  color: #fff;
}
.hero-media {
  position: absolute;
  inset: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 52%;
  filter: saturate(0.88) contrast(1.08) brightness(0.82);
  transform: scale(1.02);
}
.hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.12) 0%,
    rgba(0, 0, 0, 0.18) 35%,
    rgba(0, 0, 0, 0.72) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 0 0 70px;
}
.home-hero {
  isolation: isolate;
}
.home-hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8), transparent 88%);
  opacity: 0.45;
  pointer-events: none;
  z-index: 1;
}
.home-hero .hero-content {
  display: grid;
  gap: 14px;
}
.eyebrow {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 600;
  margin-bottom: 18px;
}

.eyebrow.siigmatic {
  color: var(--siigmatic-yellow);
}

.hero h1 {
  font-size: clamp(50px, 11vw, 110px);
  font-weight: 280;
  letter-spacing: -0.07em;
  line-height: 0.84;
  margin: 0;
  max-width: 980px;
}
.hero h1 strong {
  font-weight: 650;
  color: #fff;
}
.hero-bottom {
  margin-top: 28px;
  display: grid;
  grid-template-columns: minmax(0, 760px) auto;
  align-items: end;
  gap: 48px;
}
.hero-alt {
  font-size: clamp(17px, 1.45vw, 23px);
  line-height: 1.42;
  font-weight: 340;
  color: rgba(255, 255, 255, 0.86);
  max-width: 760px;
}
.actions {
  display: flex;
  gap: 10px;
  padding-top:1rem;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.actions.left {
  margin: 0;
  justify-content: flex-start;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 15px 20px;
  border: 1px solid currentColor;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: 0.25s;
  min-height: 48px;
}
.btn:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
  transform: translateY(-1px);
}
.btn.light {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.65);
}
.btn.light:hover {
  background: #fff;
  color: #111;
  border-color: #fff;
}
.btn.solid {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.btn.solid:hover {
  background: var(--blue);
  border-color: var(--blue);
}
.btn.blue {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}
.btn.blue:hover {
  background: #fff;
  border-color: #fff;
  color: #111;
}
.btn.siigmatic {
  background: var(--siigmatic-yellow);
  border-color: var(--siigmatic-yellow);
  color: #111;
}
.btn.siigmatic:hover {
  background: #111;
  border-color: #111;
  color: #fff;
}
.arrow {
  font-size: 16px;
  line-height: 1;
}
.section {
  padding: 120px 0;
}
.container {
  width: min(var(--max), calc(100% - 48px));
  margin: auto;
}
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 2.3fr;
  gap: 80px;
  align-items: start;
}
.kicker {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #676b6e;
  padding-top: 12px;
}
.statement {
  font-size: clamp(35px, 12vw, 75px);
  line-height: 0.98;
  letter-spacing: -0.045em;
  font-weight: 300;
  margin: 0;
  max-width: 1100px;
}
.statement strong {
  font-weight: 650;
}
.lede {
  font-size: clamp(18px, 1.8vw, 25px);
  line-height: 1.55;
  color: #565b5e;
  max-width: 850px;
  margin: 35px 0 0;
}
.rule {
  height: 1px;
  background: var(--line);
}
.manifesto {
  background: var(--dark);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.manifesto-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  min-height: 760px;
}
.manifesto-alt {
  padding: 110px max(48px, calc((100vw - var(--max)) / 2)) 90px
    max(24px, calc((100vw - var(--max)) / 2));
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.manifesto-media {
  min-height: 600px;
  position: relative;
  background: #181b1f;
}
.manifesto-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.88;
}
.manifesto-media:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #101316 0%, transparent 25%);
}
.manifesto h2 {
  font-size: clamp(46px, 5.2vw, 84px);
  line-height: 0.98;
  letter-spacing: -0.045em;
  font-weight: 300;
  margin: 0;
  max-width: 780px;
}
.manifesto h2 strong {
  font-weight: 650;
}
.manifesto p {
  font-size: 19px;
  line-height: 1.55;
  color: #b8bec2;
  max-width: 650px;
}
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 30px;
  margin-top: 50px;
}
.stat-num {
  font-size: clamp(32px, 4vw, 55px);
  font-weight: 300;
  letter-spacing: -0.04em;
}
.stat-num.tally-counter {
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1;
}
.stat-label {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #858c91;
  margin-top: 8px;
  line-height: 1.45;
}
.section-title-row {
  display: grid;
  grid-template-columns: 1fr 2.3fr;
  gap: 80px;
  margin-bottom: 62px;
}
.section-title {
  font-size: clamp(42px, 5.3vw, 78px);
  line-height: 1.01;
  letter-spacing: -0.045em;
  font-weight: 300;
  margin: 0;
  max-width: 1050px;
}
.section-title strong {
  font-weight: 650;
}
.innovations {
  background: #fff;
}
.innovation-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}
.innovation-card {
  position: relative;
  overflow: hidden;
  background: #e8e8e6;
  min-height: 620px;
  color: #fff;
}
.innovation-card.large {
  grid-column: span 7;
}
.innovation-card.small {
  grid-column: span 5;
}
.innovation-card.full {
  grid-column: span 12;
  min-height: 560px;
}
.innovation-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.innovation-card:hover img {
  transform: scale(1.025);
}
.innovation-card:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.68));
}
.card-content {
  position: absolute;
  z-index: 2;
  left: 38px;
  right: 38px;
  bottom: 36px;
}
.card-brand {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue2);
  margin-bottom: 12px;
  font-weight: 600;
}
.card-title {
  font-size: clamp(30px, 4vw, 55px);
  line-height: 1;
  letter-spacing: -0.045em;
  font-weight: 300;
  margin: 0 0 12px;
}
.card-alt {
  font-size: 16px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.84);
  max-width: 610px;
  margin: 0 0 18px;
}
.text-link {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: inline-flex;
  gap: 10px;
  width: fit-content;
  align-items: center;
  border-bottom: 1px solid currentColor;
  padding-bottom: 5px;
}
.arch-feature {
  position: relative;
  min-height: 900px;
  display: grid;
  align-items: end;
  color: #fff;
  overflow: hidden;
  background: #111;
}
.arch-feature img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.arch-feature:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.72));
}
.arch-content {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding-bottom: 70px;
  display: grid;
  grid-template-columns: 1.7fr 0.8fr;
  gap: 80px;
  align-items: end;
}
.arch-content h2 {
  font-size: clamp(52px, 6.6vw, 104px);
  line-height: 0.92;
  letter-spacing: -0.052em;
  font-weight: 300;
  margin: 0;
  max-width: 1000px;
}
.arch-content p {
  font-size: 18px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.84);
  margin: 0 0 8px;
}
.breadth {
  background: var(--paper);
}
.breadth-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}
.breadth-card {
  grid-column: span 4;
  border-top: 1px solid #222;
  padding-top: 18px;
}
.breadth-card:nth-child(4) {
  grid-column: span 12;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 18px;
  border-top: 1px solid #222;
  padding-top: 18px;
  margin-top: 32px;
}
.breadth-media {
  height: 360px;
  overflow: hidden;
  background: #ddd;
}
.breadth-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}
.breadth-card:hover .breadth-media img {
  transform: scale(1.02);
}
.breadth-title {
  font-size: 27px;
  letter-spacing: -0.03em;
  font-weight: 400;
  margin: 18px 0 9px;
}
.breadth-alt {
  font-size: 15px;
  line-height: 1.55;
  color: #666b6e;
  max-width: 520px;
}
.breadth-card:nth-child(4) .breadth-media {
  height: 500px;
}
.bespoke-band {
  background: #0b0d0f;
  color: #fff;
  padding: 0;
}
.bespoke-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  min-height: 820px;
}
.bespoke-media {
  position: relative;
  overflow: hidden;
  background: #191c20;
}
.bespoke-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.82;
}
.bespoke-alt {
  padding: 100px max(24px, calc((100vw - var(--max)) / 2)) 90px 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.bespoke-alt h2 {
  font-size: clamp(48px, 5.5vw, 84px);
  line-height: 0.98;
  letter-spacing: -0.05em;
  font-weight: 300;
  margin: 0 0 28px;
}
.bespoke-alt p {
  font-size: 19px;
  line-height: 1.6;
  color: #bbc0c4;
  max-width: 680px;
}
.process {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin: 46px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.process-item {
  padding: 18px 12px 18px 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}
.process-item:last-child {
  border-right: 0;
}
.process-num {
  color: var(--blue);
  font-size: 10px;
  letter-spacing: 0.14em;
  margin-bottom: 10px;
}
.process-name {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #e8eaeb;
}
.quality-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: stretch;
}
.quality-alt {
  background: #fff;
  padding: 70px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 650px;
}
.quality-alt h2 {
  font-size: clamp(40px, 5vw, 65px);
  line-height: 1;
  letter-spacing: -0.045em;
  font-weight: 300;
  margin: 0;
}
.quality-alt p {
  font-size: 18px;
  line-height: 1.6;
  color: #606568;
  max-width: 650px;
}
.quality-media {
  min-height: 650px;
  position: relative;
  overflow: hidden;
}
.quality-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.badges {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}
.badge strong {
  font-size: 22px;
  font-weight: 450;
  display: block;
  margin-bottom: 5px;
}
.badge span {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7a7f82;
}
.culture {
  background: #fff;
}
.culture-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
}
.culture-photo {
  min-height: 660px;
  overflow: hidden;
}
.culture-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.culture-alt {
  background: #e9f5f9;
  padding: 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.culture-alt h2 {
  font-size: clamp(42px, 5vw, 69px);
  line-height: 0.98;
  letter-spacing: -0.045em;
  font-weight: 300;
  margin: 0 0 28px;
}
.culture-alt p {
  font-size: 18px;
  line-height: 1.6;
  color: #4f585c;
  max-width: 620px;
}
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 26s linear infinite;
  padding: 22px 0;
}
.marquee-item {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-right: 48px;
  color: #51565a;
}
.marquee-item b {
  color: var(--blue);
  font-weight: 600;
  margin: 0 16px;
}
@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}
.cta {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.14), transparent 28%),
    radial-gradient(circle at 82% 30%, rgba(255, 255, 255, 0.1), transparent 24%),
    linear-gradient(120deg, #0d4c89 0%, #09a2dd 48%, #0d4c89 100%);
  background-size: 100% 100%, 100% 100%, 220% 220%;
  animation: cta-flow 14s ease-in-out infinite;
  color: #fff;
  text-align: center;
  padding: 120px 24px;
}
.cta:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    transparent 18%,
    rgba(255, 255, 255, 0.08) 40%,
    rgba(255, 255, 255, 0.02) 58%,
    transparent 82%
  );
  transform: translateX(-45%);
  animation: cta-sheen 10s ease-in-out infinite;
  pointer-events: none;
}
.cta > * {
  position: relative;
  z-index: 1;
}
.cta h2 {
  font-size: clamp(41px, 12vw, 87px);
  line-height: 0.9;
  letter-spacing: -0.055em;
  font-weight: 300;
  margin: 0 auto 30px;
  max-width: 1150px;
}
.cta p {
  font-size: 19px;
  line-height: 1.5;
  max-width: 680px;
  margin: 0 auto 35px;
  color: rgba(255, 255, 255, 0.84);
}
@keyframes cta-flow {
  0%,
  100% {
    background-position:
      0 0,
      0 0,
      0% 50%;
  }
  50% {
    background-position:
      0 0,
      0 0,
      100% 50%;
  }
}
@keyframes cta-sheen {
  0%,
  35% {
    transform: translateX(-48%);
  }
  65% {
    transform: translateX(48%);
  }
  100% {
    transform: translateX(48%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .cta {
    animation: none;
    background:
      radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.14), transparent 28%),
      radial-gradient(circle at 82% 30%, rgba(255, 255, 255, 0.1), transparent 24%),
      linear-gradient(120deg, #0d4c89 0%, #09a2dd 48%, #0d4c89 100%);
    background-size: 100% 100%, 100% 100%, 100% 100%;
  }
  .cta:before {
    animation: none;
    transform: none;
  }
}
.footer {
  background: #090b0d;
  color: #b7bdc1;
  padding: 70px 0 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 50px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.footer-logo {
  width: 190px;
  height: auto;
  margin-bottom: 24px;
}
.footer-tag {
  font-size: 17px;
  line-height: 1.5;
  color: #8e9599;
  max-width: 390px;
}
.footer h4 {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 20px;
}
.footer a,
.footer p {
  font-size: 13px;
  line-height: 1.8;
  color: #8e9599;
  margin: 0;
}
.footer a:hover {
  color: #fff;
}
.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #61676b;
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
/* Interior pages */
.page-hero {
  min-height: 620px;
  position: relative;
  display: grid;
  align-items: end;
  color: #fff;
  background: #111;
  overflow: hidden;
}
.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
}
.page-hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.75));
}
.page-hero-content {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 48px));
  margin: auto;
  padding: 90px 0 65px;
}
.page-hero h1 {
  font-size: clamp(50px, 12vw, 95px);
  line-height: 0.88;
  letter-spacing: -0.055em;
  font-weight: 300;
  margin: 0;
  max-width: 1150px;
}
.page-hero p {
  font-size: 20px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.86);
  max-width: 760px;
  margin: 28px 0 0;
}
.editorial {
  padding: 100px 0;
}
.editorial-row {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 70px;
  padding: 70px 0;
  border-top: 1px solid var(--line);
  align-items: start;
}
.editorial-row:first-child {
  border-top: 0;
  padding-top: 0;
}
.editorial-row h2 {
  font-size: clamp(38px, 4.5vw, 68px);
  line-height: 1;
  letter-spacing: -0.04em;
  font-weight: 300;
  margin: 0;
}
.editorial-body {
  font-size: 18px;
  line-height: 1.68;
  color: #555b5e;
}
.editorial-body p:first-child {
  margin-top: 0;
}
.cap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 50px;
  align-items: stretch;
}
.cap-card {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 243, 239, 0.98)),
    radial-gradient(circle at top right, rgba(0, 166, 223, 0.08), transparent 34%);
  padding: 34px 32px 30px;
  min-height: 240px;
  border: 1px solid rgba(10, 12, 14, 0.12);
  border-top: 4px solid var(--ink);
  box-shadow:
    0 16px 34px rgba(10, 12, 14, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}
.cap-card > :not(.cap-card-art) {
  position: relative;
  z-index: 1;
}
.cap-card-art {
  position: absolute;
  top: 18px;
  right: 16px;
  width: 118px;
  height: 118px;
  color: rgba(0, 166, 223, 0.6);
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
}
.cap-card-art--logo {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 108px 108px;
}
.cap-card:before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), rgba(0, 166, 223, 0.05));
  opacity: 0.45;
}
.cap-card .num {
  font:
    10px ui-monospace,
    "SFMono-Regular",
    Consolas,
    monospace;
  color: var(--blue);
  letter-spacing: 0.16em;
  margin-bottom: 34px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.cap-card .num:after {
  content: "";
  width: 28px;
  height: 1px;
  background: rgba(0, 166, 223, 0.45);
}
.cap-card h3 {
  font-size: clamp(22px, 2vw, 25px);
  line-height: 0.98;
  margin: 0 0 12px;
  font-weight: 460;
  letter-spacing: -0.035em;
  max-width: 12ch;
}
.cap-card p {
  font-size: 14px;
  line-height: 1.65;
  color: #62686b;
  margin: 0;
  max-width: 32ch;
}
.cap-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 166, 223, 0.25);
  box-shadow:
    0 24px 46px rgba(10, 12, 14, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}
.cap-card:nth-child(2n) {
  background:
    linear-gradient(180deg, rgba(249, 250, 250, 0.99), rgba(239, 244, 246, 0.98)),
    radial-gradient(circle at top right, rgba(22, 141, 184, 0.08), transparent 34%);
}
.cap-card:nth-child(3n) {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 244, 246, 0.98)),
    radial-gradient(circle at top right, rgba(0, 166, 223, 0.05), transparent 34%);
}
.brand-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 720px;
  background: #fff;
  margin-bottom: 18px;
}
.brand-story:nth-child(even) {
  direction: rtl;
}
.brand-story:nth-child(even) > * {
  direction: ltr;
}
.brand-story-media {
  min-height: 650px;
  overflow: hidden;
  background: #e4e4e2;
}
.brand-story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.brand-story-alt {
  padding: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.brand-story-alt h2 {
  font-size: clamp(48px, 5.5vw, 82px);
  line-height: 0.94;
  letter-spacing: -0.05em;
  font-weight: 300;
  margin: 0 0 26px;
}
.brand-story-alt p {
  font-size: 18px;
  line-height: 1.6;
  color: #616669;
  max-width: 650px;
}
.innovation-intro {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(0, 166, 223, 0.16), transparent 28%),
    linear-gradient(180deg, #101316 0%, #161a1d 100%);
  color: #fff;
  padding: 105px 0;
}
.innovation-intro:before,
.innovation-intro:after {
  content: "";
  position: absolute;
  inset: auto;
  border-radius: 50%;
  pointer-events: none;
}
.innovation-intro:before {
  top: -120px;
  right: -80px;
  width: 260px;
  height: 260px;
  background: rgba(0, 166, 223, 0.09);
  filter: blur(8px);
  animation: innovation-float 12s ease-in-out infinite alternate;
}
.innovation-intro:after {
  left: -100px;
  bottom: -140px;
  width: 320px;
  height: 320px;
  background: rgba(255, 255, 255, 0.04);
  filter: blur(12px);
  animation: innovation-float 16s ease-in-out infinite alternate-reverse;
}
.innovation-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 18px;
  align-items: stretch;
}
.innovation-intro-copy {
  position: relative;
  z-index: 1;
  padding: 12px 0 0;
}
.innovation-intro-copy .kicker {
  color: rgba(255, 255, 255, 0.62);
}
.innovation-intro-copy h2 {
  font-size: clamp(46px, 5.8vw, 88px);
  line-height: 0.94;
  letter-spacing: -0.055em;
  font-weight: 300;
  margin: 14px 0 18px;
  max-width: 9ch;
}
.innovation-intro-copy h2 strong {
  font-weight: 650;
}
.innovation-intro-copy p {
  font-size: 18px;
  line-height: 1.68;
  color: rgba(255, 255, 255, 0.74);
  max-width: 700px;
}
.innovation-intro-panel {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
  padding: 28px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background:
    linear-gradient(180deg, rgba(10, 12, 14, 0.55), rgba(10, 12, 14, 0.88)),
    linear-gradient(135deg, rgba(0, 166, 223, 0.1), transparent 42%),
    url("../images/assets/hardware-innovation.webp") center/cover no-repeat;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.2);
}
.innovation-intro-panel:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 10, 12, 0.34), rgba(8, 10, 12, 0.78)),
    radial-gradient(circle at 20% 20%, rgba(0, 166, 223, 0.18), transparent 38%);
  pointer-events: none;
}
.innovation-intro-panel:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.05) 50%,
    transparent 100%
  );
  transform: translateX(-120%);
  animation: innovation-panel-sheen 10s ease-in-out infinite;
  pointer-events: none;
}
.innovation-intro-track {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 10px;
  white-space: nowrap;
  overflow: hidden;
  padding-bottom: 6px;
  animation: innovation-track 10s ease-in-out infinite alternate;
}
.innovation-intro-track span {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}
.innovation-intro-metrics {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.innovation-intro-metrics div {
  padding: 18px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.innovation-intro-metrics strong {
  display: block;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1;
  letter-spacing: -0.05em;
  font-weight: 320;
  margin-bottom: 10px;
}
.innovation-intro-metrics span {
  font-size: 10px;
  line-height: 1.4;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.66);
}
.innovation-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
}
.innovation-strip article {
  position: relative;
  min-height: 180px;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    linear-gradient(180deg, rgba(20, 24, 27, 0.98), rgba(13, 16, 18, 0.98));
  overflow: hidden;
  transition:
    transform 0.28s ease,
    background 0.28s ease;
}
.innovation-strip article:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(89, 209, 255, 0.08) 50%,
    transparent 100%
  );
  transform: translateX(-120%);
  animation: innovation-strip-sheen 9s ease-in-out infinite;
  pointer-events: none;
}
.innovation-strip article:hover {
  transform: translateY(-4px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03)),
    linear-gradient(180deg, rgba(21, 26, 29, 1), rgba(11, 13, 15, 1));
}
.innovation-strip span {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 42px;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.innovation-strip h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: 16ch;
  font-size: clamp(21px, 2vw, 30px);
  line-height: 1.04;
  letter-spacing: -0.04em;
  font-weight: 380;
}
.innovation-spotlight {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 18px;
  align-items: stretch;
}
.innovation-spotlight-media {
  position: relative;
  overflow: hidden;
  min-height: 720px;
  background: #e4e4e2;
  border-top: 3px solid var(--ink);
}
.innovation-spotlight-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.01);
  transition:
    transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1),
    filter 0.4s ease;
}
.innovation-spotlight-media:hover img {
  transform: scale(1.035) translateY(-8px);
  filter: saturate(1.03);
}
.innovation-spotlight-copy {
  position: relative;
  overflow: hidden;
  padding: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-top: 3px solid var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(245, 244, 239, 0.98)),
    radial-gradient(circle at top right, rgba(0, 166, 223, 0.08), transparent 36%);
}
.innovation-spotlight-copy:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(0, 166, 223, 0.04), transparent);
  transform: translateX(-130%);
  animation: innovation-panel-sheen 12s ease-in-out infinite;
  pointer-events: none;
}
.innovation-spotlight-copy > * {
  position: relative;
  z-index: 1;
}
.innovation-spotlight-copy h2 {
  font-size: clamp(48px, 5.5vw, 82px);
  line-height: 0.94;
  letter-spacing: -0.05em;
  font-weight: 300;
  margin: 10px 0 22px;
}
.innovation-spotlight-copy h2 strong {
  font-weight: 650;
}
.innovation-spotlight-copy p {
  font-size: 18px;
  line-height: 1.6;
  color: #616669;
  max-width: 650px;
}
.innovation-callouts {
  display: grid;
  gap: 12px;
  margin: 10px 0 28px;
}
.innovation-callouts div {
  padding: 14px 16px;
  background: #f6f5f1;
  border-left: 3px solid var(--blue);
}
.innovation-callouts span {
  display: block;
  margin-bottom: 8px;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
}
.innovation-callouts b {
  font-size: 15px;
  line-height: 1.4;
  font-weight: 450;
}
@keyframes innovation-float {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(16px);
  }
}
@keyframes innovation-track {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-18px);
  }
}
@keyframes innovation-panel-sheen {
  0%,
  35% {
    transform: translateX(-130%);
  }
  70%,
  100% {
    transform: translateX(130%);
  }
}
@keyframes innovation-strip-sheen {
  0%,
  42% {
    transform: translateX(-120%);
  }
  68%,
  100% {
    transform: translateX(120%);
  }
}
.timeline {
  position: relative;
  margin-top: 40px;
}
.timeline:before {
  content: "";
  position: absolute;
  left: 175px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--line);
}
.timeline-item {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 70px;
  padding: 0 0 80px;
  position: relative;
}
.timeline-year {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  padding-top: 8px;
  text-align: right;
}
.timeline-content {
  position: relative;
  max-width: 950px;
}
.timeline-content:before {
  content: "";
  position: absolute;
  left: -76px;
  top: 8px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--paper);
  border: 2px solid var(--blue);
}
.timeline-content h2 {
  font-size: 33px;
  letter-spacing: -0.035em;
  font-weight: 350;
  margin: 0 0 14px;
}
.timeline-content p {
  font-size: 17px;
  line-height: 1.65;
  color: #5b6063;
  margin: 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.contact-form {
  display: grid;
  gap: 16px;
}
.field {
  display: grid;
  gap: 8px;
}
.field label {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #666b6e;
}
.field input,
.field textarea,
.field select {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #9da1a3;
  background: transparent;
  padding: 14px 0;
  outline: 0;
  font-size: 17px;
  color: #111;
}
.field textarea {
  min-height: 120px;
  resize: vertical;
}
.offices {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 50px;
}
.office {
  border-top: 1px solid var(--line);
  padding-top: 20px;
}
.office h3 {
  font-size: 20px;
  font-weight: 450;
  margin: 0 0 12px;
}
.office p {
  font-size: 14px;
  line-height: 1.65;
  color: #63686b;
}
@media (max-width: 1100px) {
  .nav-links {
    gap: 19px;
  }
  .nav-links a {
    font-size: 10px;
  }
  .hero-bottom,
  .intro-grid,
  .section-title-row,
  .arch-content,
  .manifesto-grid,
  .quality-grid,
  .culture-grid,
  .bespoke-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .hero-bottom {
    align-items: start;
  }
  .hero-content {
    padding-bottom: 48px;
  }
  .manifesto-alt {
    padding: 80px 36px;
  }
  .manifesto-media {
    min-height: 480px;
  }
  .manifesto-media:after {
    background: linear-gradient(180deg, #101316 0%, transparent 22%);
  }
  .innovation-card.large,
  .innovation-card.small {
    grid-column: span 12;
    min-height: 560px;
  }
  .breadth-card {
    grid-column: span 6;
  }
  .breadth-card:nth-child(3) {
    grid-column: span 12;
  }
  .breadth-card:nth-child(4) {
    grid-template-columns: 1fr;
  }
  .bespoke-alt {
    padding: 75px 36px;
  }
  .bespoke-media {
    min-height: 520px;
  }
  .footer-top {
    grid-template-columns: 1.2fr 1fr 1fr;
  }
  .footer-top > div:last-child {
    grid-column: 2/4;
  }
  .brand-story,
  .brand-story:nth-child(even) {
    grid-template-columns: 1fr;
    direction: ltr;
  }
  .innovation-intro-grid,
  .innovation-spotlight {
    grid-template-columns: 1fr;
  }
  .innovation-intro-panel,
  .innovation-spotlight-copy {
    padding: 52px 42px;
  }
  .innovation-spotlight-media {
    min-height: 520px;
  }
  .brand-story-alt {
    padding: 55px;
  }
  .brand-story-media {
    min-height: 520px;
  }
  .innovation-strip {
    grid-template-columns: 1fr;
  }
  .innovation-strip article {
    min-height: 160px;
  }
}
@media (max-width: 800px) {
  .brandbar-inner,
  .nav-inner,
  .container,
  .hero-content,
  .arch-content,
  .page-hero-content {
    width: min(100% - 30px, var(--max));
  }
  .brandbar-meta {
    display: none;
  }
  .brand-pill {
    padding: 0 12px;
  }
  .nav {
    height: 70px;
  }
  .logo img {
    width: 145px;
  }
  .menu-btn {
    display: block;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--paper);
    padding: 24px 20px 28px;
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .nav-links.open {
    display: flex;
  }
  .nav-cta {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
  .hero {
    min-height: clamp(540px, 74svh, 660px);
  }
  .hero h1 {
    font-size: clamp(43px, 14vw, 68px);
  }
  .section {
    padding: 80px 0;
  }
  .intro-grid,
  .section-title-row {
    gap: 30px;
  }
  .section-title-row {
    margin-bottom: 40px;
  }
  .stats {
    grid-template-columns: 1fr 1fr;
  }
  .stat:last-child {
    grid-column: 1/3;
  }
  .innovation-card,
  .innovation-card.large,
  .innovation-card.small,
  .innovation-card.full {
    min-height: 510px;
  }
  .card-content {
    left: 24px;
    right: 24px;
    bottom: 26px;
  }
  .arch-feature {
    min-height: 760px;
  }
  .arch-content {
    gap: 28px;
    padding-bottom: 45px;
  }
  .breadth-card,
  .breadth-card:nth-child(3),
  .breadth-card:nth-child(4) {
    grid-column: span 12;
  }
  .breadth-media,
  .breadth-card:nth-child(4) .breadth-media {
    height: 370px;
  }
  .process {
    grid-template-columns: 1fr 1fr;
  }
  .process-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }
  .quality-alt,
  .culture-alt {
    padding: 45px 28px;
  }
  .quality-media,
  .culture-photo {
    min-height: 460px;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .footer-top > div:first-child {
    grid-column: 1/3;
  }
  .footer-top > div:last-child {
    grid-column: auto;
  }
  .footer-bottom {
    flex-direction: column;
  }
  .editorial-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .innovation-intro {
    padding: 84px 0;
  }
  .innovation-intro-copy h2 {
    max-width: none;
  }
  .innovation-intro-panel,
  .innovation-spotlight-copy {
    padding: 38px 26px;
  }
  .innovation-spotlight-media {
    min-height: 440px;
  }
  .cap-grid {
    grid-template-columns: 1fr;
  }
  .cap-card {
    min-height: 0;
  }
  .brand-story-alt {
    padding: 42px 26px;
  }
  .brand-story-media {
    min-height: 440px;
  }
  .timeline:before {
    left: 5px;
  }
  .timeline-item {
    grid-template-columns: 1fr;
    gap: 10px;
    padding-left: 32px;
  }
  .timeline-year {
    text-align: left;
  }
  .timeline-content:before {
    left: -32px;
  }
  .offices {
    grid-template-columns: 1fr;
  }
}

/* ===== Final concept extensions ===== */
html {
  background: var(--paper);
}
body {
  overflow-x: hidden;
}
.js .reveal {
  opacity: 0;
  transform: translateY(24px);
}
.js .reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal {
  opacity: 1;
  transform: none;
}
.logo img {
  width: 182px;
  filter: none;
}
.nav {
  top: 36px;
}
.nav.scrolled {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.045);
}
.white {
  background: #fff;
}
.btn.dark {
  background: #0a0c0e;
  color: #fff;
  border-color: #0a0c0e;
}
.btn.dark:hover {
  background: #fff;
  color: #0a0c0e;
  border-color: #fff;
}
.btn.white {
  background: #fff;
  color: #0a0c0e;
  border-color: #fff;
}
.btn.white:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}

/* Homepage: industries */
.industries-home {
  background: #f0efeb;
}
.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.industry-card {
  background: #fff;
  display: flex;
  flex-direction: column;
  min-height: 590px;
  overflow: hidden;
  border-top: 3px solid transparent;
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}
.industry-card:hover {
  transform: translateY(-4px);
  border-color: var(--blue);
  box-shadow: 0 20px 50px rgba(10, 12, 14, 0.08);
}
.industry-card > img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.industry-card:hover > img {
  transform: scale(1.025);
}
.industry-card-content {
  padding: 30px 30px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.industry-card-index {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #7e8386;
  margin-bottom: 32px;
}
.industry-card h3 {
  font-size: 31px;
  letter-spacing: -0.035em;
  font-weight: 380;
  margin: 0 0 13px;
}
.industry-card p {
  font-size: 15px;
  line-height: 1.58;
  color: #666b6e;
  margin: 0 0 28px;
}
.industry-link {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 10px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

/* Homepage: specialist network */
.brand-network {
  background: #0b0d0f;
  color: #fff;
}
.brand-network .kicker {
  color: #7f878c;
}
.brand-network .lede {
  color: #aeb4b8;
}
.brand-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}
.brand-card {
  grid-column: span 2;
  position: relative;
  min-height: 650px;
  overflow: hidden;
  background: #181b1f;
  color: #fff;
}
.brand-card.wide {
  grid-column: span 3;
  min-height: 570px;
}
.brand-card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
  filter: saturate(0.88) contrast(1.02);
}
.brand-card:hover > img {
  transform: scale(1.025);
}
.brand-card:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(7, 9, 11, 0.08) 10%,
    rgba(7, 9, 11, 0.78) 83%,
    rgba(7, 9, 11, 0.94) 100%
  );
}
.brand-card-content {
  position: absolute;
  z-index: 2;
  left: 34px;
  right: 34px;
  bottom: 30px;
}
.brand-tag {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue2);
  margin-bottom: 12px;
}
.brand-name {
  font-size: clamp(37px, 4vw, 62px);
  font-weight: 620;
  letter-spacing: -0.055em;
  line-height: 0.9;
  margin: 0 0 16px;
}
.brand-desc {
  font-size: 15px;
  line-height: 1.52;
  color: rgba(255, 255, 255, 0.78);
  max-width: 570px;
  margin: 0 0 22px;
}
.brand-link {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  padding-top: 16px;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #d7dadd;
}

/* Bespoke/process */
.process-band {
  background: #e9f5f9;
}
.process-intro {
  display: grid;
  grid-template-columns: 1fr 2.3fr;
  gap: 80px;
  margin-bottom: 55px;
}
.process-intro h2 {
  font-size: clamp(44px, 5.4vw, 82px);
  line-height: 0.98;
  letter-spacing: -0.048em;
  font-weight: 300;
  margin: 0;
}
.process-intro h2 strong {
  font-weight: 650;
}
.process-intro p {
  font-size: 18px;
  line-height: 1.62;
  color: #576064;
  max-width: 780px;
  margin: 26px 0 0;
}
.process-rail {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  border-top: 1px solid rgba(10, 12, 14, 0.35);
  border-bottom: 1px solid rgba(10, 12, 14, 0.18);
}
.process-step {
  padding: 28px 22px 32px 0;
  min-height: 220px;
  border-right: 1px solid rgba(10, 12, 14, 0.13);
}
.process-step:not(:first-child) {
  padding-left: 22px;
}
.process-step:last-child {
  border-right: 0;
}
.process-no {
  font-size: 10px;
  letter-spacing: 0.15em;
  color: #008ebf;
  margin-bottom: 56px;
}
.process-step h3 {
  font-size: 22px;
  font-weight: 460;
  letter-spacing: -0.025em;
  margin: 0 0 10px;
}
.process-step p {
  font-size: 13px;
  line-height: 1.55;
  color: #657075;
  margin: 0;
}
.pilot-note {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 70px;
  margin-top: 38px;
  border-top: 1px solid rgba(10, 12, 14, 0.16);
  padding-top: 28px;
}
.pilot-note h3 {
  font-size: 25px;
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-weight: 420;
  margin: 0;
}
.pilot-note p {
  font-size: 16px;
  line-height: 1.6;
  color: #596267;
  margin: 0;
}
.pullquote {
  margin-top: 36px;
  padding: 25px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 23px;
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: #171a1c;
}
.development-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.development-grid .cap-card {
  min-height: 265px;
}

/* Proof / manufacturing */
.proof {
  background: #101316;
  color: #fff;
}
.proof-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 18px;
  align-items: stretch;
}
.proof-alt {
  padding: 72px;
  min-height: 680px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #101316;
}
.proof-alt h2 {
  font-size: clamp(46px, 5.6vw, 84px);
  line-height: 0.97;
  letter-spacing: -0.05em;
  font-weight: 300;
  margin: 0 0 26px;
}
.proof-alt h2 strong {
  font-weight: 650;
}
.proof-alt p {
  font-size: 18px;
  line-height: 1.62;
  color: #b7bdc0;
  max-width: 700px;
}
.proof-media {
  min-height: 680px;
  overflow: hidden;
  background: #25292d;
}
.proof-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.proof .stats {
  margin-top: 40px;
}

/* Story teaser */
.story-teaser {
  background: #fff;
}
.story-teaser-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
  align-items: stretch;
}
.story-teaser-visual {
  min-height: 690px;
  overflow: hidden;
  background: #ddd;
}
.story-teaser-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.story-teaser-alt {
  background: #0b0d0f;
  color: #fff;
  padding: 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.story-teaser-alt h2 {
  font-size: clamp(50px, 5.5vw, 82px);
  line-height: 0.96;
  letter-spacing: -0.05em;
  font-weight: 300;
  margin: 0 0 28px;
}
.story-teaser-alt p {
  font-size: 18px;
  line-height: 1.6;
  color: #b7bdc1;
  max-width: 600px;
  margin: 0 0 34px;
}

/* Industries overview */
.industry-overview {
  display: grid;
  gap: 18px;
}
.industry-panel {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  background: #fff;
  min-height: 530px;
  overflow: hidden;
}
.industry-panel:nth-child(even) {
  grid-template-columns: 0.95fr 1.05fr;
}
.industry-panel:nth-child(even) .industry-panel-media {
  order: 2;
}
.industry-panel-media {
  min-height: 530px;
  overflow: hidden;
  background: #ddd;
}
.industry-panel-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.industry-panel:hover .industry-panel-media img {
  transform: scale(1.02);
}
.industry-panel-alt {
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.industry-panel-alt h2 {
  font-size: clamp(40px, 4.3vw, 66px);
  line-height: 0.98;
  letter-spacing: -0.045em;
  font-weight: 300;
  margin: 12px 0 20px;
}
.industry-panel-alt p {
  font-size: 17px;
  line-height: 1.62;
  color: #62676a;
  max-width: 650px;
}
.chip {
  display: inline-flex;
  align-self: flex-start;
  padding: 8px 10px;
  border: 1px solid var(--line);
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #666b6e;
}

/* Door motion / SEO knowledge */
.motion-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.motion-card {
  background: #fff;
  border-top: 3px solid #111;
  padding: 34px;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  transition: 0.3s;
}
.motion-card:hover {
  border-color: var(--blue);
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.07);
}
.motion-card h3 {
  font-size: 27px;
  line-height: 1.06;
  letter-spacing: -0.035em;
  font-weight: 420;
  margin: 38px 0 16px;
}
.motion-card p {
  font-size: 15px;
  line-height: 1.58;
  color: #666b6e;
  margin: 0 0 28px;
}
.motion-card .text-link {
  margin-top: auto;
  align-self: flex-start;
}
.faq {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 58px;
}
.faq-item {
  background: #fff;
  border-top: 3px solid var(--ink);
  padding: 32px;
  min-height: 220px;
}
.faq-item h3 {
  font-size: 23px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-weight: 450;
  margin: 0 0 16px;
}
.faq-item p {
  font-size: 15px;
  line-height: 1.62;
  color: #646a6d;
  margin: 0;
}
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #777d80;
  margin-bottom: 54px;
}
.breadcrumb a:hover {
  color: #111;
}
.contact-callout {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  margin-top: 38px;
}
.contact-callout h3 {
  font-size: 23px;
  letter-spacing: -0.02em;
  font-weight: 430;
  margin: 0 0 8px;
}
.contact-callout p {
  font-size: 15px;
  line-height: 1.6;
  color: #656b6e;
  margin: 0;
}
.contact-callout a {
  border-bottom: 1px solid currentColor;
  color: #111;
}

/* Story */
.timeline-wrap {
  padding: 110px 0;
  background: var(--paper);
}
.timeline-intro {
  display: grid;
  grid-template-columns: 1fr 2.3fr;
  gap: 80px;
  margin-bottom: 80px;
}
.timeline-intro h2 {
  font-size: clamp(46px, 5.5vw, 84px);
  line-height: 0.97;
  letter-spacing: -0.05em;
  font-weight: 300;
  margin: 0;
}
.timeline-intro p {
  font-size: 19px;
  line-height: 1.62;
  color: #5b6164;
  max-width: 780px;
  margin: 28px 0 0;
}
.timeline-content h3 {
  font-size: 33px;
  letter-spacing: -0.035em;
  font-weight: 350;
  margin: 0 0 14px;
}
.timeline-image {
  margin-top: 28px;
  overflow: hidden;
  max-height: 520px;
}
.timeline-image img {
  width: 100%;
  height: 100%;
  max-height: 520px;
  object-fit: cover;
}
.timeline-quote {
  margin: 0 0 80px 210px;
  background: #0b0d0f;
  color: #fff;
  padding: 50px 58px;
  max-width: 980px;
}
.timeline-quote p {
  font-size: clamp(26px, 3vw, 41px);
  line-height: 1.12;
  letter-spacing: -0.035em;
  font-weight: 300;
  margin: 0;
}
.timeline-quote strong {
  font-weight: 620;
}

/* Contact */
.contact-hero {
  min-height: 540px;
}
.contact-lede {
  margin-top: 28px;
}
.form-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
  margin-bottom: 38px;
}
.form-tab {
  border: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: transparent;
  padding: 18px 10px;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 10px;
  cursor: pointer;
  transition: 0.2s;
}
.form-tab:last-child {
  border-right: 1px solid var(--line);
}
.form-tab:hover,
.form-tab.active {
  background: #0a0c0e;
  color: #fff;
}
.final-contact {
  grid-template-columns: 1fr 1fr;
  column-gap: 22px;
}
.final-contact .field.full {
  grid-column: 1/-1;
}
.final-contact .field label {
  font-weight: 600;
  color: #585e61;
}
.final-contact select,
.final-contact input,
.final-contact textarea {
  border: 1px solid #c8cbcd;
  background: #fff;
  padding: 14px 14px;
}
.final-contact input::placeholder,
.final-contact textarea::placeholder {
  color: #8a8f93;
}
.final-contact textarea {
  min-height: 150px;
}
.form-note {
  font-size: 12px;
  line-height: 1.5;
  color: #777d80;
}
.form-status {
  display: none;
  width: 100%;
  padding: 15px 16px;
  background: #e9f5f9;
  border-left: 3px solid var(--blue);
  font-size: 14px;
  line-height: 1.5;
}
.form-status.visible {
  display: block;
}

/* Footer */
.final-footer,
.footer-top {
  grid-template-columns: 1.25fr 0.8fr 0.9fr 1.05fr 1fr;
  gap: 40px;
}
.footer-utility {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #666d71;
}
.footer-utility a {
  font-size: 10px;
  color: #8f969a;
}
.footer-utility a:hover {
  color: #fff;
}
.footer-contact {
  margin-top: 16px !important;
}

/* Page hero treatment */
.page-hero {
  min-height: 640px;
}
.page-hero img {
  opacity: 0.9;
}
.page-hero:after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.78));
}
.page-hero h1 strong {
  font-weight: 650;
}
.page-hero p {
  max-width: 820px;
}

/* Better focus states */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}

@media (max-width: 1200px) {
  .brand-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .brand-card,
  .brand-card.wide {
    grid-column: span 1;
    min-height: 560px;
  }
  .brand-card:last-child {
    grid-column: 1/-1;
  }
  .industry-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .process-rail {
    grid-template-columns: repeat(3, 1fr);
  }
  .process-step:nth-child(3) {
    border-right: 0;
  }
  .process-step:nth-child(-n + 3) {
    border-bottom: 1px solid rgba(10, 12, 14, 0.13);
  }
  .final-footer,
  .footer-top {
    grid-template-columns: 1.2fr 1fr 1fr;
  }
  .final-footer > div:nth-child(4),
  .footer-top > div:nth-child(4) {
    grid-column: auto;
  }
  .final-footer > div:nth-child(5),
  .footer-top > div:nth-child(5) {
    grid-column: auto;
  }
}

@media (max-width: 900px) {
  .nav {
    top: 36px;
  }
  .industry-grid,
  .development-grid,
  .motion-grid,
  .faq {
    grid-template-columns: 1fr 1fr;
  }
  .brand-grid {
    grid-template-columns: 1fr 1fr;
  }
  .brand-card,
  .brand-card.wide {
    grid-column: span 1;
  }
  .brand-card:last-child {
    grid-column: 1/-1;
  }
  .process-intro,
  .timeline-intro,
  .pilot-note {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .proof-grid,
  .story-teaser-inner,
  .industry-panel,
  .industry-panel:nth-child(even) {
    grid-template-columns: 1fr;
  }
  .industry-panel:nth-child(even) .industry-panel-media {
    order: 0;
  }
  .proof-alt,
  .story-teaser-alt {
    padding: 48px 34px;
    min-height: 0;
  }
  .proof-media,
  .story-teaser-visual,
  .industry-panel-media {
    min-height: 460px;
  }
  .timeline-quote {
    margin-left: 70px;
  }
  .final-contact {
    grid-template-columns: 1fr;
  }
  .final-contact .field.full {
    grid-column: auto;
  }
}

@media (max-width: 800px) {
  .nav {
    top: 36px;
  }
  .industry-grid,
  .brand-grid,
  .development-grid,
  .motion-grid,
  .faq {
    grid-template-columns: 1fr;
  }
  .brand-card,
  .brand-card.wide,
  .brand-card:last-child {
    grid-column: 1;
    min-height: 500px;
  }
  .industry-card {
    min-height: 0;
  }
  .industry-card > img {
    height: 280px;
  }
  .process-rail {
    grid-template-columns: 1fr 1fr;
  }
  .process-step,
  .process-step:nth-child(3) {
    border-right: 1px solid rgba(10, 12, 14, 0.13);
    border-bottom: 1px solid rgba(10, 12, 14, 0.13);
  }
  .process-step:nth-child(2n) {
    border-right: 0;
  }
  .process-step:nth-last-child(-n + 2) {
    border-bottom: 0;
  }
  .process-no {
    margin-bottom: 30px;
  }
  .industry-panel-alt {
    padding: 38px 26px;
  }
  .timeline-quote {
    margin: 0 0 60px 32px;
    padding: 36px 28px;
  }
  .timeline-content h3 {
    font-size: 27px;
  }
  .form-tabs {
    grid-template-columns: 1fr;
  }
  .form-tab {
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }
  .form-tab:last-child {
    border-bottom: 1px solid var(--line);
  }
  .final-footer,
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 34px;
  }
  .final-footer > div:first-child,
  .footer-top > div:first-child {
    grid-column: 1/-1;
  }
  .final-footer > div:nth-child(5),
  .footer-top > div:nth-child(5) {
    grid-column: 1/-1;
  }
}

@media (max-width: 520px) {
  .brandbar {
    height: 38px;
  }
  .brandbar-inner {
    width: 100%;
    padding: 0 10px;
  }
  .brand-pill {
    height: 38px;
    padding: 0 10px;
    font-size: 9px;
  }
  .nav {
    top: 38px;
  }
  .hero {
    min-height: calc(100svh - 108px);
  }
  .hero-content {
    padding-bottom: 36px;
  }
  .hero h1 {
    font-size: clamp(43px, 15vw, 65px);
  }
  .hero-alt {
    font-size: 17px;
  }
  .actions {
    width: 100%;
  }
  .actions .btn {
    width: 100%;
  }
  .process-rail {
    grid-template-columns: 1fr;
  }
  .process-step,
  .process-step:nth-child(2n),
  .process-step:nth-child(3) {
    border-right: 0;
    border-bottom: 1px solid rgba(10, 12, 14, 0.13);
    padding-left: 0;
  }
  .process-step:last-child {
    border-bottom: 0;
  }
  .proof-media,
  .story-teaser-visual,
  .industry-panel-media {
    min-height: 360px;
  }
  .brand-card,
  .brand-card.wide,
  .brand-card:last-child {
    min-height: 440px;
  }
  .brand-card-content {
    left: 24px;
    right: 24px;
    bottom: 24px;
  }
  .final-footer,
  .footer-top {
    grid-template-columns: 1fr;
  }
  .final-footer > div,
  .footer-top > div {
    grid-column: 1 !important;
  }
  .footer-utility {
    flex-direction: column;
    gap: 4px;
  }
  .footer-utility span {
    display: none;
  }
}

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

/* Keep the brand network visible with the main navigation. */
.brandbar {
  position: sticky;
  top: 0;
  z-index: 1002;
}

/* ===== 2026 final refinement ===== */
:root {
  --soft-blue: #eaf6fa;
  --soft-grey: #e9e8e4;
}
.home-of {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 20px;
  width:fit-content;
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(6px);
}
.home-of:before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
}
.hero-ribbon {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 6px;
}
.hero-ribbon span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
}
.compact-intro {
  padding-top: 100px;
  padding-bottom: 100px;
}
.section-actions {
  margin-top: 34px;
}
.light-link {
  color: #fff !important;
}

/* Clear five-item navigation with secondary dropdowns. */
.nav-links {
  gap: 24px;
}
.nav-group {
  position: relative;
}
.nav-row {
  display: flex;
  align-items: center;
  gap: 5px;
}
.nav-main {
  display: block;
}
.nav-drop-toggle {
  border: 0;
  background: transparent;
  padding: 8px 6px;
  width: 22px;
  height: 22px;
  position: relative;
  color: #6e7478;
  cursor: pointer;
  font-size: 0;
  line-height: 0;
}
.nav-drop-toggle::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-1px) rotate(45deg);
  transition: transform 0.2s ease, color 0.2s ease;
}
.nav-group.dropdown-open .nav-drop-toggle::before,
.nav-group:hover .nav-drop-toggle::before {
  color: var(--ink);
  transform: translateY(1px) rotate(45deg);
}
.nav-dropdown {
  position: absolute;
  top: calc(100% + 18px);
  left: -22px;
  width: 284px;
  padding: 12px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(244, 243, 239, 0.98)),
    #f4f3ef;
  border: 1px solid rgba(10, 12, 14, 0.1);
  border-top: 2px solid var(--blue);
  border-radius: 0 0 14px 14px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-5px);
  transition: 0.2s;
  z-index: 10;
}
.nav-dropdown:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -20px;
  height: 20px;
}
.nav-dropdown a {
  display: grid;
  grid-template-columns: 12px 1fr;
  gap: 10px;
  align-items: center;
  padding: 10px 10px 10px 8px !important;
  font-size: 10px !important;
  line-height: 1.35;
  letter-spacing: 0.1em;
  border-bottom: 1px solid rgba(10, 12, 14, 0.08);
  transition: color 0.2s ease, transform 0.2s ease, background-color 0.2s ease;
}
.nav-dropdown a::before {
  content: "";
  width: 12px;
  height: 1px;
  background: rgba(10, 12, 14, 0.18);
  transform: translateY(-1px);
  transition: width 0.2s ease, background-color 0.2s ease;
}
.nav-dropdown a:hover::before,
.nav-dropdown a.current::before {
  width: 18px;
  background: var(--blue);
}
.nav-dropdown a:hover {
  background: rgba(0, 166, 223, 0.04);
  color: var(--ink);
}
.nav-dropdown a[href*="siigmatic.com.au"] {
  color: var(--siigmatic-yellow);
  text-shadow: 0 0 1px rgba(0, 0, 0, 0.25);
}
.nav-dropdown a[href*="siigmatic.com.au"]::before,
.nav-dropdown a[href*="siigmatic.com.au"]:hover::before,
.nav-dropdown a[href*="siigmatic.com.au"].current::before {
  background: var(--siigmatic-yellow);
}
.nav-dropdown a[href*="siigmatic.com.au"]:hover {
  background: rgba(251, 189, 20, 0.08);
  color: var(--siigmatic-yellow);
  text-shadow: 0 0 1px rgba(0, 0, 0, 0.3);
}
.nav-dropdown a:last-child {
  border-bottom: 0;
}
.nav-dropdown a:after {
  display: none;
}
.nav-group:hover .nav-dropdown,
.nav-group:focus-within .nav-dropdown,
.nav-group.dropdown-open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.lab-pill {
  border-left: 1px solid rgba(0, 166, 223, 0.65) !important;
  margin-left: 6px;
}
.brandbar-meta {
  font-size: 9px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #7c8387 !important;
}
.brandbar-meta:hover {
  color: #fff !important;
}

/* Door motion homepage feature. */
.door-motion-home {
  min-height: 790px;
}
.motion-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 25px 0 28px;
}
.motion-inline span {
  border: 1px solid rgba(255, 255, 255, 0.38);
  padding: 8px 10px;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* CiiLOCK technology: flagship MOR + restrained supporting brands. */
.technology-home {
  background: #fff;
}
.mor-flagship {
  position: relative;
  display: block;
  min-height: 720px;
  overflow: hidden;
  background: #171a1c;
  color: #fff;
  margin-bottom: 18px;
}
.mor-flagship > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateX(20%);
  transition: transform 0.5s ease;
}
.mor-flagship:hover > img {
  transform: translateX(20%) scale(1.018);
}
.mor-flagship:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(5, 7, 8, 0.92) 0%,
    rgba(5, 7, 8, 0.62) 43%,
    rgba(5, 7, 8, 0.08) 76%
  );
}
.mor-overlay {
  position: absolute;
  z-index: 2;
  left: 58px;
  top: 50%;
  transform: translateY(-50%);
  width: min(590px, 55%);
}
.mor-overlay h3 {
  font-size: clamp(50px, 5.8vw, 90px);
  line-height: 0.94;
  letter-spacing: -0.052em;
  font-weight: 300;
  margin: 0 0 22px;
}
.mor-overlay h3 strong {
  font-weight: 650;
}
.mor-overlay p {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.83);
  margin: 0 0 30px;
}
.tech-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.tech-card {
  min-height: 500px;
  position: relative;
  overflow: hidden;
  background: #111;
  color: #fff;
}
.tech-card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.65s ease;
}
.tech-card:hover > img {
  transform: scale(1.025);
}
.tech-card:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.82));
}
.tech-alt {
  position: absolute;
  z-index: 2;
  left: 28px;
  right: 28px;
  bottom: 25px;
}
.tech-alt h3 {
  font-size: 26px;
  line-height: 1.05;
  letter-spacing: -0.035em;
  font-weight: 430;
  margin: 0 0 11px;
}
.tech-alt p {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 20px;
}
.tech-alt > span {
  display: block;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Bespoke manufacture / process. */
.bespoke-alt .process {
  grid-template-columns: repeat(5, 1fr);
}
.bespoke-alt .process-item b {
  display: block;
  font-size: 13px;
  font-weight: 500;
}
.development-journey {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.development-journey > div {
  padding: 30px 22px;
  border-right: 1px solid var(--line);
  min-height: 260px;
}
.development-journey > div:last-child {
  border-right: 0;
}
.development-journey span {
  font-size: 10px;
  letter-spacing: 0.15em;
  color: #168db8;
}
.development-journey h3 {
  font-size: 22px;
  letter-spacing: -0.03em;
  font-weight: 450;
  margin: 45px 0 12px;
}
.development-journey p {
  font-size: 14px;
  line-height: 1.55;
  color: #666c70;
  margin: 0;
}
.development-journey .journey-key {
  background: var(--soft-blue);
  border-top: 3px solid var(--blue);
  margin-top: -3px;
}
.project-boundary {
  background: #e9f5f9;
}

/* Engineering and evidence. */
.proof-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: space-between;
  margin: 35px 0;
}
.proof-points span {
  border: 1px solid rgba(255, 255, 255, 0.24);
  padding: 8px 10px;
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #bec4c8;
}
.action-card {
  background: #101316 !important;
  color: #fff !important;
  border-top-color: var(--blue) !important;
}
.action-card p {
  color: #aeb5b9 !important;
}
.path-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.path-grid a {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 248, 244, 0.98)),
    linear-gradient(135deg, rgba(0, 166, 223, 0.08), transparent 42%);
  padding: 46px 44px 40px;
  border: 1px solid rgba(10, 12, 14, 0.14);
  border-top: 4px solid var(--ink);
  min-height: 340px;
  display: flex;
  flex-direction: column;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    0 18px 40px rgba(10, 12, 14, 0.04);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}
.path-grid a:before {
  position: absolute;
  top: 22px;
  right: 22px;
  font:
    10px ui-monospace,
    "SFMono-Regular",
    Consolas,
    monospace;
  letter-spacing: 0.16em;
  color: var(--blue);
}
.path-grid a:nth-child(1):before {
  content: "01";
}
.path-grid a:nth-child(2):before {
  content: "02";
}
.path-grid a:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 166, 223, 0.3);
  border-top-color: var(--blue);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 24px 50px rgba(10, 12, 14, 0.08);
}
.path-grid h3 {
  font-size: clamp(34px, 3.6vw, 48px);
  line-height: 0.95;
  letter-spacing: -0.05em;
  font-weight: 360;
  margin: 10px 0 18px;
  max-width: 8ch;
}
.path-grid p {
  font-size: 16px;
  line-height: 1.6;
  color: #60666a;
  max-width: 34ch;
}
.path-grid span {
  margin-top: auto;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  font:
    10px ui-monospace,
    "SFMono-Regular",
    Consolas,
    monospace;
  padding-top: 16px;
  border-top: 1px solid rgba(10, 12, 14, 0.12);
}

.siigmatic-home,
.siigmatic-compact {
  background: #f4f3ef;
}
.siigmatic-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  align-items: stretch;
}
.siigmatic-media {
  min-height: 680px;
  background: #d9dad8;
  overflow: hidden;
}
.siigmatic-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.siigmatic-alt {
  padding: 65px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
}
.siigmatic-alt h2 {
  font-size: clamp(48px, 5.4vw, 82px);
  line-height: 0.96;
  letter-spacing: -0.05em;
  font-weight: 300;
  margin: 0 0 26px;
}
.siigmatic-alt h2 .siigmatic-word {
  color: var(--siigmatic-yellow);
  font-weight: 800;
}
.siigmatic-alt h2 strong {
  font-weight: 650;
}
.siigmatic-alt p {
  font-size: 17px;
  line-height: 1.62;
  color: #62686b;
  max-width: 650px;
}
.siigmatic-alt .btn {
  align-self: flex-start;
  margin-top: 18px;
}

.evidence-section {
  background: #e7e6e1;
}
.evidence-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: rgba(10, 12, 14, 0.18);
  border: 1px solid rgba(10, 12, 14, 0.18);
}
.evidence-card {
  background: #f4f3ef;
  min-height: 260px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: 0.25s;
}
.evidence-card strong {
  font-size: clamp(30px, 3.1vw, 51px);
  line-height: 1;
  letter-spacing: -0.04em;
  font-weight: 420;
}
.evidence-card.tally-card strong {
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1;
  display: inline-block;
  min-width: 3ch;
}
.evidence-card span {
  font-size: 12px;
  line-height: 1.5;
  color: #666c70;
}
.link-card:hover {
  background: #fff;
  transform: translateY(-2px);
}
.event-strip {
  position: relative;
  padding: 34px 0;
  background:
    radial-gradient(circle at top right, rgba(0, 166, 223, 0.14), transparent 38%),
    linear-gradient(180deg, #f8f7f3 0%, #f1efea 100%);
  border-top: 1px solid rgba(10, 12, 14, 0.09);
  border-bottom: 1px solid rgba(10, 12, 14, 0.09);
  overflow: hidden;
}
.event-strip:before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(10, 12, 14, 0.06);
  pointer-events: none;
}
.event-strip-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  padding: 34px 38px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(10, 12, 14, 0.12);
  box-shadow:
    0 18px 40px rgba(10, 12, 14, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.event-strip-inner:hover {
  transform: translateY(-2px);
  box-shadow:
    0 24px 50px rgba(10, 12, 14, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}
.event-strip .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  padding: 8px 12px;
  background: rgba(0, 166, 223, 0.1);
  border: 1px solid rgba(0, 166, 223, 0.18);
  color: #066f96;
  letter-spacing: 0.16em;
}
.event-strip .eyebrow:before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--blue);
  box-shadow: 0 0 0 4px rgba(0, 166, 223, 0.12);
}
.event-strip h2 {
  font-size: clamp(33px, 4vw, 49px);
  letter-spacing: -0.05em;
  line-height: 0.95;
  font-weight: 360;
  margin: 0 0 10px;
  max-width: 10ch;
}
.event-strip p {
  font-size: 15px;
  line-height: 1.65;
  color: #50575b;
  margin: 0;
  max-width: 34ch;
}
.event-next {
  display: inline-block;
  margin-top: 12px;
  color: #0f1316;
  font-weight: 650;
  letter-spacing: 0.04em;
}
.event-strip .btn {
  align-self: center;
  min-width: 220px;
  padding: 18px 24px;
  background: linear-gradient(180deg, var(--ink), #1c2125);
  border-color: rgba(255, 255, 255, 0.06);
  box-shadow: 0 10px 26px rgba(10, 12, 14, 0.16);
}
.event-strip .btn:hover {
  background: var(--blue);
  border-color: var(--blue);
  box-shadow: 0 16px 30px rgba(0, 166, 223, 0.2);
}

/* Innovation page. */
.technology-dark {
  background: #0b0d0f;
  color: #fff;
}
.technology-dark .kicker {
  color: #7e8589;
}
.technology-dark .lede {
  color: #b6bcc0;
}
.compact-brands .brand-card {
  grid-column: span 2;
  min-height: 590px;
}
.innovation-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background:
    linear-gradient(180deg, rgba(10, 12, 14, 0.16), rgba(10, 12, 14, 0.12)),
    linear-gradient(135deg, rgba(0, 166, 223, 0.08), transparent 45%);
  border: 1px solid rgba(10, 12, 14, 0.16);
  box-shadow:
    0 18px 42px rgba(10, 12, 14, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  counter-reset: innovation;
  overflow: hidden;
}
.innovation-list > div {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(244, 243, 239, 0.98)),
    radial-gradient(circle at top right, rgba(0, 166, 223, 0.08), transparent 34%);
  padding: 38px 34px 30px;
  min-height: 230px;
  overflow: hidden;
  counter-increment: innovation;
  opacity: 0;
  animation: innovation-card-fade 0.75s ease both;
  will-change: transform, box-shadow, opacity;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    background 0.28s ease;
}
.innovation-list > div:before {
  content: counter(innovation, decimal-leading-zero);
  position: absolute;
  top: 22px;
  right: 22px;
  font:
    10px ui-monospace,
    "SFMono-Regular",
    Consolas,
    monospace;
  letter-spacing: 0.15em;
  color: var(--blue);
}
.innovation-list > div:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    transparent 30%,
    rgba(0, 166, 223, 0.06) 50%,
    transparent 70%,
    transparent 100%
  );
  transform: translateX(-120%);
  animation: innovation-sweep 8.5s ease-in-out infinite;
  pointer-events: none;
}
.innovation-list h3 {
  font-size: clamp(25px, 2.3vw, 32px);
  letter-spacing: -0.04em;
  line-height: 0.98;
  font-weight: 470;
  margin: 46px 0 12px;
  max-width: 10ch;
  position: relative;
  z-index: 1;
}
.innovation-list p {
  font-size: 14px;
  line-height: 1.58;
  color: #646a6d;
  margin: 0;
  position: relative;
  z-index: 1;
}
.innovation-list > div:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 38px rgba(10, 12, 14, 0.09);
}
.innovation-list > div:hover:after {
  animation-duration: 2.2s;
}
.innovation-list > div:nth-child(2n) {
  background:
    linear-gradient(180deg, rgba(251, 251, 248, 0.98), rgba(238, 242, 244, 0.98)),
    radial-gradient(circle at top right, rgba(22, 141, 184, 0.08), transparent 34%);
}
.innovation-list > div:nth-child(3n) {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 244, 245, 0.98)),
    radial-gradient(circle at top right, rgba(0, 166, 223, 0.05), transparent 34%);
}
.innovation-list > div:nth-child(1) {
  animation-delay: 0.05s;
}
.innovation-list > div:nth-child(2) {
  animation-delay: 0.12s;
}
.innovation-list > div:nth-child(3) {
  animation-delay: 0.19s;
}
.innovation-list > div:nth-child(4) {
  animation-delay: 0.26s;
}
.innovation-list > div:nth-child(5) {
  animation-delay: 0.33s;
}
.innovation-list > div:nth-child(6) {
  animation-delay: 0.4s;
}
@keyframes innovation-card-fade {
  from {
    opacity: 0;
    filter: blur(2px);
  }
  to {
    opacity: 1;
    filter: blur(0);
  }
}
@keyframes innovation-sweep {
  0%,
  38% {
    transform: translateX(-120%);
  }
  62% {
    transform: translateX(120%);
  }
  100% {
    transform: translateX(120%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .innovation-list > div {
    animation: none;
    opacity: 1;
    filter: none;
    transition: none;
  }
  .innovation-list > div:after {
    animation: none;
  }
}

/* About / story proof. */
.about-proof {
  background: #101316;
  color: #fff;
  padding-top: 70px;
  padding-bottom: 70px;
}
.about-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.18);
}
.about-proof-grid > div {
  background: #101316;
  padding: 32px;
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.about-proof-grid strong {
  font-size: clamp(27px, 3vw, 44px);
  letter-spacing: -0.04em;
  font-weight: 350;
}
.about-proof-grid span {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #90979b;
}
.about-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.about-links a {
  background-color: #111;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 34px;
  min-height: 360px;
  border-top: 3px solid #111;
  display: flex;
  flex-direction: column;
  transition: 0.25s;
  color: #fff;
  overflow: hidden;
}
.about-links a:after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 7, 8, 0.18) 0%, rgba(5, 7, 8, 0.72) 100%),
    linear-gradient(110deg, rgba(0, 166, 223, 0.12), transparent 36%);
  z-index: 0;
}
.about-links > a > * {
  position: relative;
  z-index: 1;
}
.about-links a:hover {
  border-color: var(--blue);
  transform: translateY(-3px);
}
.about-links span {
  font-size: 10px;
  letter-spacing: 0.13em;
  color: var(--siigmatic-yellow);
}
.about-links h3 {
  font-size: 28px;
  letter-spacing: -0.035em;
  font-weight: 430;
  margin: 70px 0 14px;
  color: #fff;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.28);
}
.about-links p {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
  margin: 0;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.24);
}
.about-links .about-link-story {
  background-image:
    linear-gradient(180deg, rgba(5, 7, 8, 0.12), rgba(5, 7, 8, 0.68)),
    url("../images/assets/tl-min-copy.webp");
}
.about-links .about-link-sustainability {
  background-image:
    linear-gradient(180deg, rgba(5, 7, 8, 0.12), rgba(5, 7, 8, 0.68)),
    url("../images/assets/sustainability-bg.webp");
}
.about-links .about-link-events {
  background-image:
    linear-gradient(180deg, rgba(5, 7, 8, 0.12), rgba(5, 7, 8, 0.68)),
    url("../images/assets/showroom-2.webp");
}
.siigmatic-compact {
  padding-top: 100px;
  padding-bottom: 100px;
}
.siigmatic-compact .siigmatic-media {
  min-height: 560px;
}

/* Sustainability. */
.sustainability-proof {
  background: #e8f5f8;
}
.sustain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.sustain-grid > div {
  background: #fff;
  padding: 40px;
  min-height: 300px;
  border-top: 3px solid var(--blue);
}
.sustain-grid strong {
  font-size: clamp(38px, 5vw, 67px);
  letter-spacing: -0.05em;
  font-weight: 320;
}
.sustain-grid h3 {
  font-size: 23px;
  margin: 45px 0 11px;
  font-weight: 440;
}
.sustain-grid p {
  font-size: 14px;
  line-height: 1.55;
  color: #666c70;
}
.responsibility-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 20px;
}
.responsibility-grid > div {
  border-top: 1px solid #111;
  padding-top: 22px;
}
.responsibility-grid h3 {
  font-size: 24px;
  font-weight: 420;
  letter-spacing: -0.03em;
  margin: 0 0 12px;
}
.responsibility-grid p {
  font-size: 15px;
  line-height: 1.6;
  color: #656b6f;
}

/* Events. */
.event-upcoming {
  background: #eaf6fa;
}
.event-hero-card {
  background: #fff;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 50px;
  padding: 55px;
  border-top: 4px solid var(--blue);
}
.event-hero-card h2 {
  font-size: clamp(40px, 12vw, 69px);
  letter-spacing: -0.055em;
  line-height: 0.95;
  font-weight: 350;
  margin: 0 0 17px;
}
.event-hero-card p {
  font-size: 18px;
  line-height: 1.55;
  color: #5e6568;
  margin: 0 0 10px;
}
.event-secondary {
  margin-top: 24px;
}
.event-note {
  font-size: 13px !important;
  max-width: 760px;
  color: #777e81 !important;
}
.awards-showcase {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(13, 76, 137, 0.12), transparent 34%),
    linear-gradient(180deg, #f6f4ef 0%, #f0ece4 100%);
}
.awards-showcase:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.5), transparent 30%),
    repeating-linear-gradient(
      90deg,
      rgba(17, 17, 17, 0.045) 0,
      rgba(17, 17, 17, 0.045) 1px,
      transparent 1px,
      transparent 96px
    );
  pointer-events: none;
}
.awards-showcase .container {
  position: relative;
  z-index: 1;
}
.awards-showcase-head {
  margin-bottom: 34px;
}
.awards-showcase-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.45fr);
  gap: 28px;
  align-items: start;
}
.awards-intro-panel {
  position: sticky;
  top: 128px;
  display: grid;
  gap: 22px;
  padding: 34px 30px;
  background: rgba(17, 17, 17, 0.97);
  color: #fff;
  box-shadow: 0 28px 70px rgba(10, 12, 14, 0.13);
}
.awards-intro-panel:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(145deg, rgba(9, 162, 221, 0.16), transparent 45%),
    linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.02) 100%);
  pointer-events: none;
}
.awards-intro-panel > * {
  position: relative;
  z-index: 1;
}
.awards-intro-label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.74);
}
.awards-intro-panel h3 {
  margin: 0;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 0.96;
  letter-spacing: -0.05em;
  font-weight: 430;
}
.awards-intro-panel h3 strong {
  display: inline-block;
}
.awards-intro-panel p {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
}
.awards-intro-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.awards-intro-meta > div {
  display: grid;
  gap: 6px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.awards-intro-meta strong {
  font-size: clamp(24px, 4vw, 34px);
  line-height: 1;
  letter-spacing: -0.05em;
}
.awards-intro-meta span {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}
.awards-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.award-card {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px 20px;
  align-items: start;
  padding: 24px 24px 22px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: 0 14px 34px rgba(10, 12, 14, 0.06);
  animation: awardsCardIn 0.8s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}
.award-card:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(13, 76, 137, 0.03), transparent 42%),
    linear-gradient(90deg, rgba(17, 17, 17, 0.04), transparent 28%);
  pointer-events: none;
}
.award-card:after {
  content: "";
  position: absolute;
  top: 22px;
  right: 20px;
  bottom: 15px;
  width: min(34%, 60px);
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}
.award-card-gda:after {
  background-image: url("../images/awards/gda.webp");
}
.award-card-awa:after {
  background-image: url("../images/awards/awa.webp");
}
.award-card-agwa:after {
  background-image: url("../images/awards/agwa.webp");
}
.award-card-fensterbau:after {
  background-image: url("../images/awards/fensterbau.webp");
}
.award-card-more {
  background:
    radial-gradient(circle at top right, rgba(9, 162, 221, 0.16), transparent 38%),
    linear-gradient(145deg, rgba(17, 22, 26, 0.98) 0%, rgba(32, 40, 46, 0.96) 100%);
  border-color: rgba(9, 162, 221, 0.18);
  box-shadow: 0 18px 34px rgba(10, 12, 14, 0.12);
}
.award-card-more:before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 40%),
    linear-gradient(90deg, rgba(9, 162, 221, 0.14), transparent 32%);
}
.award-card-more:after {
  width: min(28%, 110px);
  top: 24px;
  right: 24px;
  bottom: 24px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.18;
}
.award-card-more .meta,
.award-card-more .award-year,
.award-card-more .award-format {
  color: rgba(255, 255, 255, 0.7);
}
.award-card-more .award-title {
  color: #fff;
}
.award-card:nth-child(10) {
  animation-delay: 0.54s;
}
.award-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(10, 12, 14, 0.1);
}
.award-card:nth-child(2) {
  animation-delay: 0.06s;
}
.award-card:nth-child(3) {
  animation-delay: 0.12s;
}
.award-card:nth-child(4) {
  animation-delay: 0.18s;
}
.award-card:nth-child(5) {
  animation-delay: 0.24s;
}
.award-card:nth-child(6) {
  animation-delay: 0.3s;
}
.award-card:nth-child(7) {
  animation-delay: 0.36s;
}
.award-card:nth-child(8) {
  animation-delay: 0.42s;
}
.award-card:nth-child(9) {
  animation-delay: 0.48s;
}
.award-card > * {
  position: relative;
  z-index: 1;
}
.award-logo {
  display: inline-grid;
  place-items: center;
  min-width: 62px;
  min-height: 62px;
  padding: 10px;
  border-radius: 50%;
  font-size: 0;
  color: transparent;
  background:
    radial-gradient(circle at 30% 28%, rgba(255, 247, 202, 0.92) 0%, rgba(255, 247, 202, 0) 30%),
    linear-gradient(145deg, #f9e39b 0%, #e2b84d 38%, #bf8921 70%, #8e6110 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    inset 0 -8px 14px rgba(120, 79, 10, 0.14),
    0 12px 24px rgba(143, 100, 18, 0.12);
}
.award-logo:before {
  content: "";
  width: 28px;
  height: 28px;
  background-image: url("../images/logos/trophy.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.provider-gda {
  background:
    radial-gradient(circle at 30% 28%, rgba(255, 247, 202, 0.92) 0%, rgba(255, 247, 202, 0) 30%),
    linear-gradient(145deg, #f9e39b 0%, #e2b84d 38%, #bf8921 70%, #8e6110 100%);
}
.provider-awa {
  background:
    radial-gradient(circle at 30% 28%, rgba(255, 247, 202, 0.92) 0%, rgba(255, 247, 202, 0) 30%),
    linear-gradient(145deg, #f9e39b 0%, #e2b84d 38%, #bf8921 70%, #8e6110 100%);
}
.provider-agwa {
  background:
    radial-gradient(circle at 30% 28%, rgba(255, 247, 202, 0.92) 0%, rgba(255, 247, 202, 0) 30%),
    linear-gradient(145deg, #f9e39b 0%, #e2b84d 38%, #bf8921 70%, #8e6110 100%);
}
.provider-fensterbau {
  background:
    radial-gradient(circle at 30% 28%, rgba(255, 247, 202, 0.92) 0%, rgba(255, 247, 202, 0) 30%),
    linear-gradient(145deg, #f9e39b 0%, #e2b84d 38%, #bf8921 70%, #8e6110 100%);
}
.provider-more {
  background:
    radial-gradient(circle at 30% 28%, rgba(255, 255, 255, 0.24) 0%, rgba(255, 255, 255, 0) 30%),
    linear-gradient(145deg, #17a9e0 0%, #0d6aa3 100%);
}
.award-info {
  display: grid;
  gap: 8px;
}
.award-info .meta {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #0d4c89;
}
.award-title {
  margin: 0;
  font-size: 22px;
  line-height: 1.08;
  letter-spacing: -0.04em;
  font-weight: 430;
}
.award-year {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #666c70;
}
.award-format {
  grid-column: 1 / -1;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding-top: 14px;
  border-top: 1px solid rgba(17, 17, 17, 0.1);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #171a1c;
}
@keyframes awardsCardIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .award-card {
    animation: none;
  }
}
@media (max-width: 1000px) {
  .awards-showcase-layout {
    grid-template-columns: 1fr;
  }
  .awards-intro-panel {
    position: static;
  }
}
@media (max-width: 720px) {
  .awards-showcase-head {
    margin-bottom: 24px;
  }
  .awards-intro-panel {
    padding: 28px 24px;
  }
  .awards-intro-meta {
    grid-template-columns: 1fr;
  }
  .awards-grid {
    grid-template-columns: 1fr;
  }
  .award-card {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 22px 20px 20px;
  }
  .award-logo {
    min-width: 56px;
    min-height: 56px;
  }
  .award-title {
    font-size: 20px;
  }
}
.award-list {
  border-top: 1px solid #111;
}
.award-list > div {
  display: grid;
  grid-template-columns: 100px 1fr 1.1fr;
  gap: 35px;
  align-items: baseline;
  border-bottom: 1px solid var(--line);
  padding: 23px 0;
}
.award-list span {
  font-size: 11px;
  letter-spacing: 0.13em;
  color: #168db8;
}
.award-list h3 {
  font-size: 22px;
  font-weight: 430;
  margin: 0;
}
.award-list p {
  font-size: 14px;
  color: #666c70;
  margin: 0;
}
.past-events {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.past-events article {
  background: #fff;
  border-top: 3px solid #111;
  padding: 30px;
  min-height: 260px;
}
.past-events article span {
  font-size: 10px;
  letter-spacing: 0.13em;
  color: #168db8;
}
.past-events h3 {
  font-size: 24px;
  font-weight: 430;
  margin: 65px 0 11px;
}
.past-events p {
  font-size: 14px;
  line-height: 1.55;
  color: #666c70;
}

/* Contact and native network map. */
.contact-heading {
  margin-top: 17px;
}
.contact-main {
  background: #f4f3ef;
}
.contact-form-wrap {
  background: #fff;
  padding: 38px;
}
.offices a {
  border-bottom: 1px solid rgba(10, 12, 14, 0.2);
}
.form-submit-row {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  grid-template-columns: none !important;
  gap: 20px;
}
.form-submit-row .form-note {
  max-width: 330px;
  margin: 0;
  text-align: right;
}
.network-section {
  background: #e7e6e1;
  scroll-margin-top: 130px;
}
.network-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}
.network-tab {
  border: 1px solid #9fa3a5;
  background: transparent;
  padding: 13px 18px;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 10px;
  cursor: pointer;
}
.network-tab.active,
.network-tab:hover {
  background: #101316;
  color: #fff;
  border-color: #101316;
}
.network-panel {
  display: none;
}
.network-panel.active {
  display: block;
}
.network-map {
  position: relative;
  background: #111;
  overflow: hidden;
  min-height: 540px;
  border: 1px solid #34393d;
}
.network-map > img {
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: cover;
  opacity: 0.82;
}
.map-marker-layer {
  position: absolute;
  inset: 0;
  z-index: 2;
}
.network-map.australia > img {
  object-fit: contain;
  background: #111;
}
.map-marker {
  position: absolute;
  left: var(--x);
  top: var(--y);
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
  padding: 0;
  z-index: 3;
}
.map-marker-dot {
  position: relative;
  display: block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--blue);
  border: 3px solid rgba(255, 255, 255, 0.96);
  box-shadow:
    0 0 0 0 rgba(0, 166, 223, 0.28),
    0 0 18px rgba(0, 166, 223, 0.5);
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease;
}
.map-marker-dot:before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  background: rgba(0, 166, 223, 0.18);
  opacity: 0.75;
  animation: map-pulse 2.8s ease-in-out infinite;
}
.map-marker-dot:after {
  content: "";
  position: absolute;
  inset: -22px;
  border-radius: 50%;
  border: 1px solid rgba(0, 166, 223, 0.18);
  opacity: 0.65;
}
.map-marker-pop {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%) translateY(8px);
  min-width: 170px;
  max-width: 220px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(8, 10, 12, 0.94);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.28);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.22s ease,
    transform 0.22s ease;
}
.contact-world-map .map-marker-pop {
  pointer-events: auto;
}
.map-marker.pop-left .map-marker-pop {
  left: 50%;
  right: auto;
  text-align: center;
}
.map-marker:hover .map-marker-pop,
.map-marker:focus-visible .map-marker-pop {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.map-marker-pop strong {
  display: block;
  font-size: 11px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.map-marker-pop small {
  display: block;
  font-size: 11px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.72);
}
.contact-map-pop {
  min-width: 240px;
  display: grid;
  gap: 12px;
  text-align: left;
}
.contact-map-pop .map-contact-location {
  font-size: 11px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.72);
}
.map-contact-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.map-contact-row > div {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}
.map-contact-row small {
  margin: 0;
  font-size: 9px;
  line-height: 1.2;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}
.map-contact-row strong {
  display: block;
  font-size: 12px;
  line-height: 1.45;
  letter-spacing: 0;
  text-transform: none;
  margin: 0;
  overflow-wrap: anywhere;
}
.map-copy-btn {
  flex: 0 0 auto;
  margin-top: 1px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1;
  cursor: pointer;
}
.map-copy-btn:hover,
.map-copy-btn.is-copied {
  background: rgba(0, 166, 223, 0.18);
  border-color: rgba(0, 166, 223, 0.28);
}
.map-marker:hover .map-marker-dot,
.map-marker:focus-visible .map-marker-dot {
  transform: scale(1.22);
  box-shadow:
    0 0 0 8px rgba(0, 166, 223, 0.18),
    0 0 22px rgba(0, 166, 223, 0.62);
}
.marker-australia {
  --x: 79%;
  --y: 74%;
}
.marker-uk {
  --x: 48%;
  --y: 29%;
}
.marker-china {
  --x: 78%;
  --y: 40%;
}
.marker-italy {
  --x: 52%;
  --y: 33%;
}
.marker-singapore {
  --x: 72%;
  --y: 56%;
}
.marker-south-africa {
  --x: 54%;
  --y: 77%;
}
.marker-south-america {
  --x: 28%;
  --y: 76%;
}
.map-legend {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: flex;
  gap: 16px;
  background: rgba(8, 10, 12, 0.82);
  padding: 10px 12px;
  color: #fff;
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.map-legend span {
  display: flex;
  align-items: center;
  gap: 7px;
}
.map-legend i {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.office-dot {
  background: var(--blue);
}
.reseller-dot {
  background: #fff;
}
@keyframes map-pulse {
  0% {
    transform: scale(0.72);
    opacity: 0.85;
  }
  70% {
    transform: scale(1.15);
    opacity: 0.1;
  }
  100% {
    transform: scale(1.18);
    opacity: 0;
  }
}
.location-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(10, 12, 14, 0.14);
  border: 1px solid rgba(10, 12, 14, 0.14);
  margin-top: 18px;
}
.location-card {
  background: #fff;
  padding: 26px;
  min-height: 225px;
  transition: 0.2s;
}
.location-card.highlight {
  background: #eaf6fa;
  box-shadow: inset 0 3px var(--blue);
}
.location-kind {
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #168db8;
  margin-bottom: 35px;
}
.location-card h3 {
  font-size: 22px;
  letter-spacing: -0.025em;
  font-weight: 450;
  margin: 0 0 8px;
}
.location-card p {
  font-size: 13px;
  line-height: 1.55;
  color: #666c70;
  margin: 7px 0;
}
.location-card a {
  color: #111;
  border-bottom: 1px solid rgba(10, 12, 14, 0.2);
}
.location-industries {
  margin-top: 20px !important;
}
.network-note {
  font-size: 12px;
  color: #707679;
  margin: 18px 0 0;
}

/* Misc. */
.interior-arch {
  min-height: 700px;
}
.notfound {
  min-height: calc(100vh - 118px);
  display: grid;
  place-items: center;
  padding: 80px 24px;
  background: #eaf6fa;
}
.notfound > div {
  width: min(900px, 100%);
}
.notfound h1 {
  font-size: clamp(56px, 12vw, 119px);
  line-height: 0.83;
  letter-spacing: -0.06em;
  font-weight: 300;
  margin: 0 0 28px;
}
.notfound p {
  font-size: 20px;
  line-height: 1.5;
  color: #596165;
  max-width: 700px;
}

@media (max-width: 1200px) {
  .evidence-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .evidence-card:nth-last-child(-n + 2) {
    grid-column: span 1;
  }
  .development-journey {
    grid-template-columns: repeat(3, 1fr);
  }
  .development-journey > div:nth-child(3n) {
    border-right: 0;
  }
  .development-journey > div:nth-child(-n + 3) {
    border-bottom: 1px solid var(--line);
  }
  .location-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .past-events {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 1000px) {
  .tech-grid,
  .innovation-list,
  .about-links,
  .responsibility-grid {
    grid-template-columns: 1fr 1fr;
  }
  .cap-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .tech-card:last-child,
  .innovation-list > div:last-child,
  .about-links > a:last-child,
  .responsibility-grid > div:last-child {
    grid-column: 1/-1;
  }
  .evidence-grid {
    grid-template-columns: 1fr 1fr;
  }
  .evidence-card:last-child {
    grid-column: 1/-1;
  }
  .siigmatic-grid {
    grid-template-columns: 1fr;
  }
  .siigmatic-media {
    min-height: 500px;
  }
  .siigmatic-alt {
    padding: 48px;
  }
  .about-proof-grid {
    grid-template-columns: 1fr 1fr;
  }
  .sustain-grid {
    grid-template-columns: 1fr 1fr;
  }
  .sustain-grid > div:last-child {
    grid-column: 1/-1;
  }
}
@media (max-width: 800px) {
  .brandbar-inner {
    margin: 0;
    width: max-content;
    min-width: 100%;
    padding: 0 8px;
    justify-content: flex-start;
  }
  .brandbar-brands {
    min-width: max-content;
  }
  .brandbar-meta {
    display: none;
  }
  .nav-links {
    padding: 16px 18px 24px;
    gap: 0;
    max-height: calc(100svh - 108px);
    overflow: auto;
    align-items: stretch;
  }
  .nav-group {
    width: 100%;
    border-bottom: 1px solid var(--line);
  }
  .nav-row {
    justify-content: space-between;
  }
  .nav-main {
    padding: 14px 4px !important;
    font-size: 12px !important;
  }
  .nav-drop-toggle {
    display: block;
    width: 28px;
    height: 28px;
    padding: 12px;
  }
  .nav-dropdown {
    position: static;
    width: auto;
    padding: 0 0 12px 14px;
    box-shadow: none;
    border: 0;
    background: transparent;
    border-radius: 0;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .nav-group.dropdown-open .nav-dropdown {
    display: block;
  }
  .nav-group:hover .nav-dropdown:not(.force-open) {
    display: none;
  }
  .nav-group.dropdown-open:hover .nav-dropdown {
    display: block;
  }
  .nav-dropdown a {
    display: grid;
    grid-template-columns: 10px 1fr;
    gap: 8px;
    padding: 9px 6px !important;
    font-size: 10px !important;
    border-bottom: 0;
    color: #62686b;
  }
  .nav-dropdown a::before {
    width: 10px;
  }
  .nav-cta {
    margin-top: 16px;
    display: block;
    padding: 15px !important;
  }
  .mor-flagship {
    min-height: 620px;
  }
  .mor-flagship:after {
    background: linear-gradient(
      180deg,
      rgba(5, 7, 8, 0.08) 10%,
      rgba(5, 7, 8, 0.88) 73%,
      rgba(5, 7, 8, 0.96) 100%
    );
  }
  .mor-overlay {
    left: 26px;
    right: 26px;
    bottom: 30px;
    top: auto;
    transform: none;
    width: auto;
  }
  .mor-overlay p {
    font-size: 16px;
  }
  .tech-grid,
  .innovation-list,
  .about-links,
  .responsibility-grid,
  .path-grid {
    grid-template-columns: 1fr;
  }
  .tech-card:last-child,
  .innovation-list > div:last-child,
  .about-links > a:last-child,
  .responsibility-grid > div:last-child {
    grid-column: auto;
  }
  .development-journey {
    grid-template-columns: 1fr 1fr;
  }
  .development-journey > div,
  .development-journey > div:nth-child(3n) {
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .development-journey > div:nth-child(2n) {
    border-right: 0;
  }
  .development-journey > div:nth-last-child(-n + 2) {
    border-bottom: 0;
  }
  .evidence-grid {
    grid-template-columns: 1fr 1fr;
  }
  .evidence-card {
    min-height: 210px;
  }
  .evidence-card:last-child {
    grid-column: 1/-1;
  }
  .event-strip-inner,
  .event-hero-card {
    align-items: flex-start;
    flex-direction: column;
  }
  .event-strip .btn,
  .event-hero-card .btn {
    width: 100%;
  }
  .about-proof-grid {
    grid-template-columns: 1fr 1fr;
  }
  .sustain-grid {
    grid-template-columns: 1fr;
  }
  .sustain-grid > div:last-child {
    grid-column: auto;
  }
  .award-list > div {
    grid-template-columns: 70px 1fr;
  }
  .award-list p {
    grid-column: 2;
  }
  .past-events {
    grid-template-columns: 1fr;
  }
  .contact-form-wrap {
    padding: 25px 20px;
  }
  .form-submit-row {
    flex-direction: column;
    align-items: stretch !important;
  }
  .form-submit-row .form-note {
    text-align: left;
    max-width: none;
  }
  .form-submit-row .btn {
    width: 100%;
  }
  .network-map,
  .network-map > img {
    min-height: 390px;
  }
  .map-marker-pop {
    min-width: 150px;
    max-width: 180px;
    padding: 10px 12px;
  }
  .location-list {
    grid-template-columns: 1fr;
  }
  .map-legend {
    left: 10px;
    right: auto;
    bottom: 10px;
    flex-wrap: wrap;
  }
}
@media (max-width: 520px) {
  .home-of {
    font-size: 8px;
    letter-spacing: 0.12em;
  }
  .compact-intro {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .door-motion-home {
    min-height: 690px;
  }
  .arch-content h2 {
    font-size: 44px;
  }
  .motion-inline {
    gap: 6px;
  }
  .motion-inline span {
    padding: 7px 8px;
    font-size: 8px;
  }
  .mor-flagship {
    min-height: 560px;
  }
  .mor-overlay h3 {
    font-size: 42px;
  }
  .tech-card {
    min-height: 430px;
  }
  .cap-card {
    padding: 28px 22px 24px;
    min-height: 0;
  }
  .cap-card .num {
    margin-bottom: 28px;
  }
  .cap-card h3 {
    font-size: 22px;
  }
  .cap-card p {
    max-width: none;
  }
  .path-grid a {
    min-height: 0;
    padding: 34px 26px 28px;
  }
  .path-grid h3 {
    max-width: none;
    font-size: clamp(26px, 9vw, 33px);
  }
  .path-grid p {
    max-width: none;
  }
  .event-strip-inner {
    padding: 24px 18px;
  }
  .event-strip h2 {
    max-width: none;
    font-size: clamp(28px, 10vw, 42px);
  }
  .event-strip p {
    max-width: none;
  }
  .bespoke-alt .process {
    grid-template-columns: 1fr 1fr;
  }
  .bespoke-alt .process-item:nth-child(5) {
    grid-column: 1/-1;
    border-right: 0;
  }
  .development-journey {
    grid-template-columns: 1fr;
  }
  .development-journey > div,
  .development-journey > div:nth-child(2n),
  .development-journey > div:nth-child(3n) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .development-journey > div:last-child {
    border-bottom: 0;
  }
  .development-journey h3 {
    margin-top: 28px;
  }
  .evidence-grid {
    grid-template-columns: 1fr;
  }
  .evidence-card,
  .evidence-card:last-child {
    grid-column: auto;
    min-height: 180px;
  }
  .siigmatic-alt {
    padding: 34px 25px;
  }
  .siigmatic-media {
    min-height: 370px;
  }
  .about-proof-grid {
    grid-template-columns: 1fr;
  }
  .about-links a {
    min-height: 290px;
  }
  .about-links h3 {
    margin-top: 50px;
  }
  .event-hero-card {
    padding: 34px 24px;
  }
  .award-list > div {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .award-list p {
    grid-column: auto;
  }
  .past-events article {
    min-height: 220px;
  }
  .network-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .network-tab {
    padding: 12px 8px;
  }
  .network-map,
  .network-map > img {
    min-height: 300px;
  }
  .map-marker {
  }
  .map-marker-dot {
    width: 13px;
    height: 13px;
    border-width: 2px;
  }
  .map-marker-pop {
    min-width: 130px;
    max-width: 150px;
    padding: 8px 10px;
    font-size: 10px;
  }
  .location-card {
    min-height: 0;
  }
  .engineering-layer-list {
    max-height: 300px;
  }
  .engineering-layer-list > div {
    grid-template-columns: 34px 1fr;
    gap: 8px 12px;
  }
  .engineering-layer-list span {
    padding-top: 2px;
  }
  .notfound {
    min-height: calc(100svh - 108px);
  }
}
.hp-field {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
.form-status.error {
  background: #fff0ef;
  border-left-color: #b9403a;
}
@media (min-width: 801px) {
  .nav-group:nth-of-type(4) .nav-dropdown {
    left: auto;
    right: -12px;
  }
}

/* ======================================================================
   RAW ENGINEERING PERSONALITY PASS
   Keeps the approved brand architecture; adds material truth and the
   exposed, workshop/exhibition character of CiiLOCK.
   ====================================================================== */
.raw-site {
  --steel: #c9cbc8;
  --steel-dark: #171a1d;
  --steel-mid: #2b3034;
  --workpaper: #eeece6;
  --technical-line: rgba(10, 12, 14, 0.105);
}
.raw-site .eyebrow,
.raw-site .kicker,
.raw-site .brand-tag,
.raw-site .industry-card-index,
.raw-site .process-num,
.raw-site .location-kind,
.raw-site .event-next {
  font-family:
    ui-monospace, "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}
.raw-site .kicker:before {
  content: "// ";
  color: var(--blue);
  font-weight: 700;
}
.raw-site .section-title-row > .kicker {
  border-top: 1px solid currentColor;
  padding-top: 11px;
  width: min(100%, 210px);
}
.raw-site .page-hero-content,
.raw-site .hero-content {
  position: relative;
}
.raw-site .page-hero-content:before,
.raw-site .hero-content:before {
  content: "";
  position: absolute;
  left: 0;
  top: -26px;
  width: 88px;
  height: 1px;
  background: var(--blue);
  box-shadow: 100px 0 0 rgba(255, 255, 255, 0.45);
}
.raw-site .btn {
  border-radius: 1px;
  position: relative;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}
.raw-site .btn:before {
  content: "";
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.5;
  margin-right: 1px;
}
.raw-site .nav {
  background: rgba(238, 236, 230, 0.94);
}
.raw-site .nav:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--blue) 12%,
    rgba(10, 12, 14, 0.12) 12%,
    rgba(10, 12, 14, 0.12) 88%,
    var(--blue) 88%,
    transparent
  );
}
.raw-site .brandbar {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px) 0
      0/26px 100%,
    #090b0d;
}
.raw-site .brand-pill {
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
}

/* Technical paper and plate language. */
.raw-site .industries-home,
.raw-site .evidence-section,
.raw-site .network-section {
  background-color: var(--workpaper);
  background-image:
    linear-gradient(var(--technical-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--technical-line) 1px, transparent 1px);
  background-size: 44px 44px;
}
.raw-site .industry-card,
.raw-site .evidence-card,
.raw-site .cap-card,
.raw-site .path-card,
.raw-site .about-links > a,
.raw-site .location-card,
.raw-site .past-events article {
  border: 1px solid rgba(10, 12, 14, 0.19);
  border-top-width: 3px;
  box-shadow: 3px 3px 0 rgba(10, 12, 14, 0.055);
  position: relative;
}
.raw-site .industry-card:before,
.raw-site .evidence-card:before,
.raw-site .past-events article:before,
.raw-site .event-hero-card:before {
  content: "";
  position: absolute;
  z-index: 4;
  left: 9px;
  top: 9px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #8f9393;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.28);
  pointer-events: none;
}
.raw-site .industry-card:hover {
  box-shadow: 7px 7px 0 rgba(0, 166, 223, 0.16);
  transform: translate(-2px, -2px);
}
.raw-site .industry-link,
.raw-site .proof-points span,
.raw-site .motion-inline span {
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
}

/* New homepage workbench section. */
.workshop-home {
  color: #f2f3f3;
  background-color: var(--steel-dark);
  background-image:
    radial-gradient(
      circle at 1px 1px,
      rgba(255, 255, 255, 0.13) 1px,
      transparent 1.5px
    ),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size:
    22px 22px,
    110px 100%;
  overflow: hidden;
}
.workshop-home .kicker {
  color: #9aa1a5;
}
.workshop-home .section-title {
  color: #fff;
}
.workshop-home .lede {
  color: #b5bbc0;
}
.workshop-home .section-title-row > .kicker {
  border-color: #646b70;
}
.workbench-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}
.bench-frame,
.bench-plate {
  margin: 0;
  position: relative;
  background: #0d0f11;
  border: 1px solid #555d61;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.24);
}
.bench-frame {
  grid-column: span 4;
  padding: 8px 8px 0;
}
.bench-frame.bench-wide {
  grid-column: span 7;
}
.bench-frame.bench-tall {
  grid-column: span 5;
}
.bench-frame img {
  width: 100%;
  height: 370px;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.035);
}
.bench-wide img {
  height: 470px;
}
.bench-tall img {
  height: 470px;
  object-fit: contain;
  background: #e9e9e7;
}
.bench-frame:before,
.bench-frame:after,
.bench-plate:before,
.bench-plate:after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #a8aca9;
  border: 1px solid #5d6261;
  z-index: 3;
}
.bench-frame:before,
.bench-plate:before {
  top: 12px;
  left: 12px;
}
.bench-frame:after,
.bench-plate:after {
  top: 12px;
  right: 12px;
}
.bench-frame figcaption {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 14px 6px 16px;
  color: #d9dddf;
}
.bench-frame figcaption span,
.bench-plate-code {
  font:
    9px/1.4 ui-monospace,
    "SFMono-Regular",
    Consolas,
    monospace;
  letter-spacing: 0.13em;
  color: var(--blue2);
}
.bench-frame figcaption b {
  font-size: 12px;
  font-weight: 450;
  letter-spacing: 0.02em;
  text-align: right;
}
.bench-plate {
  grid-column: span 4;
  min-height: 320px;
  padding: 44px 34px 34px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.035) 25%, transparent 25%) 0
      0/16px 16px,
    #22272a;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-color: #6b7377;
}
.bench-plate h3 {
  font-size: 30px;
  line-height: 1.02;
  letter-spacing: -0.035em;
  font-weight: 430;
  margin: 38px 0 15px;
  max-width: 420px;
}
.bench-plate p {
  font-size: 14px;
  line-height: 1.62;
  color: #bbc1c4;
  margin: 0 0 24px;
  max-width: 470px;
}
.bench-plate .text-link {
  align-self: flex-start;
  color: #fff;
}

/* Engineering workbench. */
.engineering-bench {
  background: #1a1e21;
  color: #fff;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 58px 58px;
}
.engineering-bench .section-title {
  color: #fff;
}
.engineering-bench .lede {
  color: #b7bdc0;
}
.engineering-bench .kicker {
  color: #99a0a4;
  border-color: #5c6367 !important;
}
.engineering-bench-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 14px;
}
.engineering-bench-shot {
  margin: 0;
  grid-column: span 6;
  border: 1px solid #596064;
  background: #0c0e10;
  padding: 8px 8px 0;
  position: relative;
}
.engineering-bench-shot.span-7 {
  grid-column: span 7;
}
.engineering-bench-shot.span-5 {
  grid-column: span 5;
}
.engineering-bench-shot img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  background: #e9e9e7;
  filter: saturate(0.88) contrast(1.04);
}
.engineering-bench-shot:nth-child(1) img {
  object-fit: contain;
}
.engineering-bench-shot figcaption {
  display: grid;
  grid-template-columns: 50px 1fr;
  align-items: center;
  padding: 13px 4px;
  color: #d8dddf;
}
.engineering-bench-shot figcaption b {
  font:
    10px ui-monospace,
    "SFMono-Regular",
    Consolas,
    monospace;
  color: var(--blue2);
  font-weight: 500;
}
.engineering-bench-shot figcaption span {
  font-size: 12px;
  letter-spacing: 0.04em;
}

/* Make physical/event areas feel like magnetic display boards, not brochure panels. */
.raw-site .event-upcoming {
  background-color: #23282b;
  background-image: radial-gradient(
    circle at 1px 1px,
    rgba(255, 255, 255, 0.16) 1px,
    transparent 1.5px
  );
  background-size: 22px 22px;
}
.raw-site .event-hero-card {
  position: relative;
  border: 1px solid #777d7f;
  border-top: 5px solid var(--blue);
  box-shadow: 7px 7px 0 rgba(0, 0, 0, 0.24);
  background: #f4f2ec;
}
.raw-site .event-hero-card:after {
  content: "MAGNETIC / EVENT BOARD";
  position: absolute;
  right: 18px;
  top: 15px;
  font:
    8px ui-monospace,
    "SFMono-Regular",
    Consolas,
    monospace;
  letter-spacing: 0.14em;
  color: #8a8f91;
}
.exhibition-note {
  margin-bottom: 58px;
  border-left: 4px solid var(--blue);
  padding: 22px 26px;
  background: #e7e5de;
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 40px;
  align-items: start;
  box-shadow: 4px 4px 0 rgba(10, 12, 14, 0.07);
}
.exhibition-note-mark {
  font:
    9px/1.5 ui-monospace,
    "SFMono-Regular",
    Consolas,
    monospace;
  letter-spacing: 0.14em;
  color: #168db8;
  padding-top: 4px;
}
.exhibition-note p {
  font-size: 19px;
  line-height: 1.55;
  letter-spacing: -0.012em;
  margin: 0;
  color: #454b4e;
  max-width: 900px;
}
.raw-site .past-events article {
  background: #deddd7;
  box-shadow: 5px 5px 0 rgba(10, 12, 14, 0.08);
}
.raw-site .past-events article:nth-child(even) {
  transform: translateY(12px);
}
.events-physical-hero img {
  filter: saturate(0.82) contrast(1.08);
}

/* About and story feel human and physical. */
.about-team-hero img {
  object-position: center 50%;
  filter: saturate(0.88) contrast(1.035);
}
.raw-timeline {
  background-image: linear-gradient(
    90deg,
    transparent 0,
    transparent calc(50% - 0.5px),
    rgba(10, 12, 14, 0.045) calc(50% - 0.5px),
    rgba(10, 12, 14, 0.045) calc(50% + 0.5px),
    transparent calc(50% + 0.5px)
  );
}
.raw-site .timeline-content:before {
  border-radius: 0;
  transform: rotate(45deg);
  background: var(--paper);
}
.raw-site .timeline:before {
  background: linear-gradient(
    var(--blue),
    rgba(10, 12, 14, 0.16) 18%,
    rgba(10, 12, 14, 0.16) 82%,
    var(--blue)
  );
}

/* Keep the raw language disciplined on mobile. */
@media (max-width: 1000px) {
  .bench-frame,
  .bench-frame.bench-wide,
  .bench-frame.bench-tall,
  .bench-plate {
    grid-column: span 6;
  }
  .engineering-bench-shot,
  .engineering-bench-shot.span-7,
  .engineering-bench-shot.span-5 {
    grid-column: span 6;
  }
}
@media (max-width: 800px) {
  .raw-site .page-hero-content:before,
  .raw-site .hero-content:before {
    top: -18px;
    width: 52px;
    box-shadow: 62px 0 0 rgba(255, 255, 255, 0.45);
  }
  .workbench-grid,
  .engineering-bench-grid {
    grid-template-columns: 1fr;
  }
  .bench-frame,
  .bench-frame.bench-wide,
  .bench-frame.bench-tall,
  .bench-plate,
  .engineering-bench-shot,
  .engineering-bench-shot.span-7,
  .engineering-bench-shot.span-5 {
    grid-column: 1;
  }
  .bench-frame img,
  .bench-wide img,
  .bench-tall img,
  .engineering-bench-shot img {
    height: 340px;
  }
  .bench-frame figcaption {
    align-items: flex-start;
    flex-direction: column;
  }
  .bench-frame figcaption b {
    text-align: left;
  }
  .bench-plate {
    min-height: 290px;
  }
  .bench-plate h3 {
    font-size: 26px;
  }
  .exhibition-note {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 38px;
  }
  .exhibition-note p {
    font-size: 16px;
  }
  .raw-site .past-events article:nth-child(even) {
    transform: none;
  }
}

/* MOTION EDUCATION + MOTIONEER */
.opening-choice-section {
  background: #eeece6;
}
.opening-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.opening-choice-card {
  min-height: 330px;
  padding: 36px;
  background: #fff;
  border: 1px solid rgba(10, 12, 14, 0.2);
  border-top: 3px solid #111;
  box-shadow: 4px 4px 0 rgba(10, 12, 14, 0.06);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: 0.22s;
  position: relative;
  overflow: hidden;
}
.opening-choice-card:before {
  content: "";
  position: absolute;
  right: 16px;
  top: 16px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #969c9e;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.25);
}
.opening-choice-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 rgba(0, 166, 223, 0.14);
  border-top-color: var(--blue);
}
.opening-choice-card.featured {
  grid-column: 1/-1;
  min-height: 390px;
  background:
    linear-gradient(105deg, rgba(6, 9, 11, 0.94), rgba(6, 9, 11, 0.68)),
    url("images/assets/foxtrort-1800.webp") center/cover;
  color: #fff;
  padding: 48px;
}
.opening-choice-card.featured p {
  color: #d8dde0;
  max-width: 720px;
}
.opening-choice-card.featured b {
  color: #fff;
}
.opening-choice-card.featured:before {
  background: var(--blue);
}
.choice-code,
.benefit-num,
.motioneer-path > span,
.brand-destination > span,
.motioneer-panel > span {
  font:
    10px/1.4 ui-monospace,
    "SFMono-Regular",
    Consolas,
    monospace;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #168db8;
}
.opening-choice-card h3 {
  font-size: clamp(31px, 3.4vw, 48px);
  line-height: 1;
  letter-spacing: -0.045em;
  font-weight: 380;
  margin: 64px 0 16px;
  max-width: 760px;
}
.opening-choice-card:not(.featured) h3 {
  font-size: 28px;
  margin-top: 55px;
}
.opening-choice-card p {
  font-size: 15px;
  line-height: 1.62;
  color: #636a6e;
  margin: 0 0 28px;
  max-width: 650px;
}
.opening-choice-card b {
  margin-top: auto;
  font-size: 12px;
  letter-spacing: 0.03em;
  font-weight: 520;
  color: #111;
}
.choice-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 4px 0 32px;
}
.choice-tags span {
  font:
    9px ui-monospace,
    "SFMono-Regular",
    Consolas,
    monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.32);
  padding: 8px 10px;
  color: #fff;
  background: rgba(0, 0, 0, 0.18);
}
.motion-benefits {
  background-color: #eeece6;
  background-image:
    linear-gradient(rgba(10, 12, 14, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 12, 14, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
}
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.benefit-card {
  background: #fff;
  border: 1px solid rgba(10, 12, 14, 0.18);
  border-top: 3px solid #111;
  padding: 30px;
  min-height: 285px;
  box-shadow: 3px 3px 0 rgba(10, 12, 14, 0.055);
}
.benefit-card:hover {
  border-top-color: var(--blue);
}
.benefit-card h3 {
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: -0.025em;
  font-weight: 430;
  margin: 54px 0 13px;
}
.benefit-card p {
  font-size: 14px;
  line-height: 1.62;
  color: #646a6e;
  margin: 0;
}
.benefit-num {
  color: #168db8;
}
.motion-decision-note {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #111;
  color: #fff;
  border-left: 5px solid var(--blue);
}
.motion-decision-note > div {
  padding: 28px 32px;
}
.motion-decision-note > div + div {
  border-left: 1px solid #43484b;
}
.motion-decision-note span {
  font:
    9px ui-monospace,
    "SFMono-Regular",
    Consolas,
    monospace;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--blue2);
}
.motion-decision-note p {
  font-size: 15px;
  line-height: 1.6;
  color: #d2d6d8;
  margin: 11px 0 0;
}
.motion-tech-bridge {
  background: #e8f5f8;
}
.motion-tech-bridge .actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.btn.outline {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
}
.btn.outline:hover {
  border: 1px solid #fff;
  background: #fff;
  color: #111;
}
.motion-comparison-wrap {
  position: relative;
  overflow-x: auto;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(245, 244, 239, 0.98)),
    radial-gradient(circle at top right, rgba(0, 166, 223, 0.1), transparent 35%);
  border: 1px solid rgba(10, 12, 14, 0.14);
  box-shadow:
    0 18px 40px rgba(10, 12, 14, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}
.motion-comparison-wrap:before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(10, 12, 14, 0.05);
  pointer-events: none;
}
.motion-comparison {
  width: 100%;
  border-collapse: collapse;
  min-width: 900px;
  background: transparent;
  position: relative;
  z-index: 1;
}
.motion-comparison th {
  text-align: left;
  background: linear-gradient(180deg, #111 0%, #171b1f 100%);
  color: #fff;
  padding: 20px 22px;
  font:
    9px ui-monospace,
    "SFMono-Regular",
    Consolas,
    monospace;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.motion-comparison td {
  padding: 22px;
  border-top: 1px solid rgba(10, 12, 14, 0.1);
  vertical-align: top;
  font-size: 14px;
  line-height: 1.5;
  color: #5f666a;
  background: rgba(255, 255, 255, 0.65);
  transition: background 0.2s ease;
}
.motion-comparison tbody tr:nth-child(even) td {
  background: rgba(248, 248, 244, 0.8);
}
.motion-comparison tbody tr:hover td {
  background: rgba(255, 255, 255, 0.96);
}
.motion-comparison td:first-child {
  width: 170px;
  color: #111;
}
.motion-comparison td:last-child {
  width: 130px;
  white-space: nowrap;
}
.motion-comparison a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 9px 14px;
  background: #111;
  color: #fff;
  border: 1px solid #111;
  box-shadow: 3px 3px 0 rgba(10, 12, 14, 0.08);
  font-weight: 650;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}
.motion-comparison a:hover {
  transform: translateY(-2px);
  background: var(--blue);
  border-color: var(--blue);
  box-shadow: 4px 6px 0 rgba(10, 12, 14, 0.1);
}
.motion-comparison td:first-child b {
  display: inline-block;
  font-size: 16px;
  letter-spacing: -0.02em;
  margin-bottom: 2px;
}
.destination-section {
  background: #171b1e;
  color: #fff;
  background-image: radial-gradient(
    circle at 1px 1px,
    rgba(255, 255, 255, 0.11) 1px,
    transparent 1.5px
  );
  background-size: 24px 24px;
}
.destination-section .section-title {
  color: #fff;
}
.destination-section .lede {
  color: #b8bec1;
}
.destination-section .kicker {
  color: #9ba2a6;
  border-color: #626a6e !important;
}
.brand-destination-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.brand-destination {
  min-height: 350px;
  border: 1px solid #656c70;
  background: #24292c;
  padding: 38px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.22);
  position: relative;
  overflow: hidden;
  transition: 0.22s;
  color: #fff;
}
.brand-destination:after {
  content: "";
  position: absolute;
  right: 15px;
  top: 15px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #a5aaac;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.55);
}
.brand-destination:hover {
  transform: translate(-2px, -2px);
  border-color: var(--blue);
  box-shadow: 9px 9px 0 rgba(0, 166, 223, 0.12);
}
.brand-destination h3 {
  font-size: clamp(30px, 4vw, 49px);
  line-height: 0.94;
  letter-spacing: -0.05em;
  font-weight: 330;
  margin: 70px 0 18px;
}
.brand-destination p {
  font-size: 15px;
  line-height: 1.62;
  color: #c3c8ca;
  max-width: 610px;
  margin: 0 0 34px;
}
.brand-destination b {
  font-size: 12px;
  margin-top: auto;
  color: #fff;
}
.brand-destination.mor-destination {
  border-top: 5px solid var(--blue);
}
.brand-destination.titan-destination {
  background: linear-gradient(135deg, #22282b, #111416);
}
.brand-destination.volta-destination {
  background: linear-gradient(135deg, #252b2e, #15191b);
}
.brand-destination.pivot-destination {
  background: linear-gradient(135deg, #2c3134, #1a1e20);
}
.motioneer-band {
  background: #0f1214;
  color: #fff;
  background-image: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.035) 1px,
    transparent 1px
  );
  background-size: 54px 100%;
}
.motioneer-intro {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 36px;
}
.motioneer-intro h2 {
  font-size: clamp(39px, 5vw, 67px);
  line-height: 0.93;
  letter-spacing: -0.055em;
  font-weight: 320;
  margin: 17px 0 0;
}
.motioneer-intro p {
  font-size: 17px;
  line-height: 1.65;
  color: #bdc2c4;
  margin: 0;
}
.motioneer-intro .kicker {
  color: #a0a7aa;
  border-color: #5a6165 !important;
}
.motioneer-paths {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.motioneer-path {
  min-height: 330px;
  padding: 36px;
  border: 1px solid #60686c;
  border-top: 4px solid var(--blue);
  background: #202528;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.22);
  transition: 0.22s;
}
.motioneer-path:hover {
  transform: translate(-2px, -2px);
  box-shadow: 9px 9px 0 rgba(0, 166, 223, 0.14);
}
.motioneer-path h3 {
  font-size: 34px;
  letter-spacing: -0.04em;
  line-height: 1;
  font-weight: 360;
  margin: 62px 0 16px;
}
.motioneer-path p {
  font-size: 15px;
  line-height: 1.62;
  color: #c4c9cb;
  margin: 0 0 30px;
}
.motioneer-path b {
  margin-top: auto;
  font-size: 12px;
  color: #fff;
}
.motioneer-choice {
  background: #e7f4f8;
  scroll-margin-top: 120px;
}
.motioneer-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 18px;
  align-items: stretch;
}
.motioneer-split.reverse {
  grid-template-columns: 1.05fr 0.95fr;
}
.motioneer-split-alt {
  background: #fff;
  padding: 52px;
  border: 1px solid rgba(10, 12, 14, 0.16);
  box-shadow: 4px 4px 0 rgba(10, 12, 14, 0.05);
}
.motioneer-split-alt h2 {
  font-size: clamp(40px, 5vw, 63px);
  line-height: 0.94;
  letter-spacing: -0.055em;
  font-weight: 330;
  margin: 18px 0 26px;
}
.motioneer-split-alt p {
  font-size: 16px;
  line-height: 1.68;
  color: #5f6669;
  max-width: 800px;
}
.motioneer-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 30px 0;
}
.motioneer-checks span {
  font:
    9px ui-monospace,
    "SFMono-Regular",
    Consolas,
    monospace;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  background: #eeece6;
  border: 1px solid #cfd0cc;
  padding: 9px 10px;
}
.motioneer-panel {
  background: #171b1e;
  color: #fff;
  padding: 46px;
  border: 1px solid #4d5558;
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.17);
}
.motioneer-panel.light {
  background: #eeece6;
  color: #111;
  border-color: #c8c7c2;
}
.motioneer-panel h3 {
  font-size: 32px;
  line-height: 1.04;
  letter-spacing: -0.04em;
  font-weight: 360;
  margin: 70px 0 26px;
}
.motioneer-panel p {
  font-size: 15px;
  line-height: 1.65;
  color: #c7ccce;
}
.motioneer-panel.light p {
  color: #62686b;
}
.motioneer-panel ol {
  padding: 0;
  margin: 30px 0 0;
  list-style: none;
  counter-reset: route;
}
.motioneer-panel li {
  counter-increment: route;
  border-top: 1px solid #4c5356;
  padding: 22px 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 7px;
}
.motioneer-panel li:before {
  content: "0" counter(route);
  font:
    9px ui-monospace,
    "SFMono-Regular",
    Consolas,
    monospace;
  color: var(--blue2);
  letter-spacing: 0.12em;
}
.motioneer-panel li b {
  font-size: 17px;
  font-weight: 500;
}
.motioneer-panel li small {
  font-size: 13px;
  line-height: 1.5;
  color: #afb5b8;
}
/* .motioneer-hero .page-hero-content {
  max-width: 980px;
} */
.motioneer-hero img {
  object-position: left center;
}
.home-motioneer-strip {
  background: #e8f5f8;
  border-top: 1px solid #b9dfe9;
  border-bottom: 1px solid #b9dfe9;
  padding: 44px 0;
}
.home-motioneer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.home-motioneer-inner > div:first-child span {
  font:
    9px ui-monospace,
    "SFMono-Regular",
    Consolas,
    monospace;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #168db8;
}
.home-motioneer-inner h2 {
  font-size: 29px;
  line-height: 1.04;
  letter-spacing: -0.035em;
  font-weight: 400;
  margin: 12px 0 0;
}
.home-motioneer-inner p {
  font-size: 15px;
  line-height: 1.6;
  color: #5e666a;
  margin: 0 0 18px;
}
.home-motioneer-inner .btn {
  display: inline-flex;
}
@media (max-width: 1000px) {
  .benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .motioneer-intro,
  .motioneer-split,
  .motioneer-split.reverse,
  .home-motioneer-inner {
    grid-template-columns: 1fr;
  }
  .brand-destination-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 800px) {
  .opening-choice-grid,
  .benefit-grid,
  .brand-destination-grid,
  .motioneer-paths {
    grid-template-columns: 1fr;
  }
  .opening-choice-card.featured {
    grid-column: auto;
    padding: 34px;
    min-height: 420px;
  }
  .opening-choice-card,
  .benefit-card {
    min-height: auto;
  }
  .motion-decision-note {
    grid-template-columns: 1fr;
  }
  .motion-decision-note > div + div {
    border-left: 0;
    border-top: 1px solid #43484b;
  }
  .motioneer-intro {
    gap: 24px;
  }
  .motioneer-split-alt,
  .motioneer-panel {
    padding: 30px;
  }
  .brand-destination {
    min-height: 310px;
    padding: 30px;
  }
  .brand-destination h3 {
    margin-top: 54px;
  }
  .motioneer-path {
    min-height: 300px;
  }
  .motioneer-path h3 {
    font-size: 30px;
  }
  .motion-comparison-wrap {
    margin-right: 0;
  }
  .event-strip-inner {
    padding: 28px 24px;
  }
  .innovation-list > div {
    min-height: 0;
    padding: 30px 24px 24px;
  }
  .innovation-list > div:before {
    top: 18px;
    right: 18px;
  }
  .innovation-list h3 {
    margin-top: 40px;
  }
  .engineering-layer-list {
    max-height: 340px;
    animation-duration: 18s;
  }
  .engineering-layer-list > div {
    grid-template-columns: 42px 1fr;
    gap: 10px 14px;
  }
  .engineering-layer-list b,
  .engineering-layer-list p {
    grid-column: 2;
  }
  .home-motioneer-strip {
    padding: 36px 0;
  }
  .home-motioneer-inner {
    gap: 22px;
  }
  .home-motioneer-inner .btn {
    width: 100%;
  }
}

/* V4: homeowner/architect routing, service/parts segmentation and SEO-route UI */
.nav-support {
  color: #555 !important;
}
.nav-support:hover {
  color: #111 !important;
}
.motion-comparison-head {
  margin: 56px 0 18px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}
.motion-comparison-head h3 {
  font-size: clamp(26px, 3vw, 39px);
  font-weight: 380;
  letter-spacing: -0.035em;
  margin: 10px 0 0;
}
.service-hero img {
  object-fit: cover;
  background: #d9d9d6;
}
.service-route-note {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 24px;
  background: #111;
  color: #fff;
  border-left: 5px solid var(--blue);
}
.service-route-note > div {
  padding: 30px 34px;
}
.service-route-note > div + div {
  border-left: 1px solid #444;
}
.service-route-note span {
  font:
    9px ui-monospace,
    "SFMono-Regular",
    Consolas,
    monospace;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--blue2);
}
.service-route-note p {
  font-size: 15px;
  line-height: 1.65;
  color: #d0d5d7;
  margin: 12px 0 0;
}
.service-route-note a {
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
}
.service-partner-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.service-partner-card {
  background: #fff;
  border: 1px solid rgba(10, 12, 14, 0.16);
  border-top: 4px solid var(--blue);
  padding: 34px;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  box-shadow: 4px 4px 0 rgba(10, 12, 14, 0.05);
}
.service-partner-card > span {
  font:
    10px ui-monospace,
    "SFMono-Regular",
    Consolas,
    monospace;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #168db8;
}
.service-partner-card h3 {
  font-size: 30px;
  letter-spacing: -0.04em;
  font-weight: 390;
  margin: 52px 0 14px;
}
.service-partner-card p {
  font-size: 15px;
  line-height: 1.62;
  color: #62686b;
  max-width: 650px;
}
.service-partner-card small {
  font-size: 12px;
  line-height: 1.5;
  color: #7a8083;
  margin-top: 22px;
}
.partner-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
  margin-top: auto;
  padding-top: 20px;
}
.partner-actions a {
  font-size: 13px;
  border-bottom: 1px solid rgba(10, 12, 14, 0.25);
}
.service-other-region {
  margin-top: 18px;
  background: #e8f5f8;
  padding: 34px;
  border: 1px solid #bddfe8;
}
.service-other-region h3 {
  font-size: 26px;
  letter-spacing: -0.035em;
  font-weight: 400;
  margin: 0 0 10px;
}
.service-other-region p {
  color: #5d6568;
  line-height: 1.6;
  max-width: 800px;
}
.service-other-region .btn {
  margin-top: 10px;
}
.network-tabs.three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.service-panel-intro {
  background: #111;
  color: #fff;
  padding: 34px;
  margin-bottom: 16px;
  border-left: 5px solid var(--blue);
}
.service-panel-intro h3 {
  font-size: 27px;
  letter-spacing: -0.035em;
  font-weight: 390;
  margin: 0 0 10px;
}
.service-panel-intro p {
  font-size: 15px;
  line-height: 1.6;
  color: #c7cdcf;
  max-width: 850px;
}
.service-panel-intro .text-link {
  color: #fff;
  margin-top: 10px;
}
.contact-faq .faq-item a,
.service-intro .faq-item a {
  border-bottom: 1px solid currentColor;
  color: #111;
}
@media (max-width: 900px) {
  .service-partner-grid,
  .service-route-note {
    grid-template-columns: 1fr;
  }
  .service-route-note > div + div {
    border-left: 0;
    border-top: 1px solid #444;
  }
  .network-tabs.three {
    grid-template-columns: 1fr;
  }
  .nav-support {
    display: none;
  }
}

/* V5: contact routing, deeper service split and visible SEO hierarchy */
.breadcrumb-bar {
  background: #0e1113;
  color: #aeb5b8;
  border-top: 1px solid #22282b;
  border-bottom: 1px solid #252b2e;
}
.breadcrumb-inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 8px;
  font:
    9px ui-monospace,
    "SFMono-Regular",
    Consolas,
    monospace;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.breadcrumb-inner a {
  color: #d4d9db;
}
.breadcrumb-inner span {
  color: #7e878b;
}
.contact-router {
  background: #eeece6;
}
.contact-route-rule {
  margin: 34px 0 18px;
  padding: 24px 28px;
  background: #111;
  color: #fff;
  border-left: 5px solid var(--blue);
  display: grid;
  grid-template-columns: auto 1fr 1fr;
  gap: 24px;
  align-items: center;
}
.contact-route-rule span,
.contact-route-card > span,
.contact-route-secondary > div > span,
.routing-checklist > span {
  font:
    9px ui-monospace,
    "SFMono-Regular",
    Consolas,
    monospace;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--blue2);
}
.contact-route-rule b {
  font-size: 13px;
  font-weight: 470;
  line-height: 1.45;
}
.contact-route-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.contact-route-card {
  min-height: 560px;
  background: #fff;
  border: 1px solid rgba(10, 12, 14, 0.18);
  border-top: 4px solid #111;
  padding: 40px;
  display: flex;
  flex-direction: column;
  box-shadow: 5px 5px 0 rgba(10, 12, 14, 0.05);
  transition: 0.2s;
}
.contact-route-card.service {
  border-top-color: var(--blue);
}
.contact-route-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 9px 9px 0 rgba(0, 166, 223, 0.12);
}
.contact-route-card h3 {
  font-size: clamp(35px, 4vw, 51px);
  line-height: 0.96;
  letter-spacing: -0.05em;
  font-weight: 350;
  margin: 70px 0 20px;
}
.contact-route-card p {
  font-size: 16px;
  line-height: 1.62;
  color: #60676a;
  margin: 0 0 22px;
}
.contact-route-card ul {
  list-style: none;
  padding: 0;
  margin: 4px 0 34px;
}
.contact-route-card li {
  padding: 11px 0;
  border-top: 1px solid #d8d8d4;
  font-size: 13px;
  color: #33393c;
}
.contact-route-card li:before {
  content: "↳";
  margin-right: 10px;
  color: #1498c5;
}
.contact-route-card .route-cta {
  margin-top: auto;
  font-size: 13px;
  color: #111;
}
.contact-route-secondary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 16px;
}
.contact-route-secondary > div {
  background: #171b1e;
  color: #fff;
  padding: 34px;
  border: 1px solid #41484b;
}
.contact-route-secondary h3 {
  font-size: 26px;
  line-height: 1.05;
  font-weight: 390;
  letter-spacing: -0.035em;
  margin: 38px 0 12px;
}
.contact-route-secondary p {
  font-size: 14px;
  line-height: 1.62;
  color: #c5cbcd;
}
.contact-route-secondary a {
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
}
.service-routing-enquiry {
  background: #e8f5f8;
}
.service-routing-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 18px;
  margin-top: 46px;
}
.routing-checklist {
  background: #111;
  color: #fff;
  padding: 38px;
  border-left: 5px solid var(--blue);
}
.routing-checklist ol {
  padding: 0;
  margin: 48px 0 28px;
  list-style: none;
  counter-reset: servicecheck;
}
.routing-checklist li {
  counter-increment: servicecheck;
  border-top: 1px solid #444b4e;
  padding: 18px 0;
  font-size: 14px;
  line-height: 1.45;
}
.routing-checklist li:before {
  content: "0" counter(servicecheck);
  font:
    9px ui-monospace,
    "SFMono-Regular",
    Consolas,
    monospace;
  color: var(--blue2);
  margin-right: 14px;
}
.routing-checklist p {
  font-size: 13px;
  line-height: 1.6;
  color: #bac1c4;
}
.routing-checklist a {
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
@media (max-width: 900px) {
  .contact-route-rule {
    grid-template-columns: 1fr;
  }
  .contact-route-grid,
  .contact-route-secondary,
  .service-routing-grid {
    grid-template-columns: 1fr;
  }
  .contact-route-card {
    min-height: auto;
  }
  .contact-route-card h3 {
    margin-top: 52px;
  }
}

/* ======================================================================
   V6 WINDOWS + DOORS HUB
   One architect/homeowner-facing hub for Windows & Doors and Door Motion.
   ====================================================================== */
.windows-doors-hero {
  min-height: 760px;
}
.windows-doors-hero img {
  object-position: left center;
}
/* .windows-doors-hero .page-hero-content {
  max-width: 1060px;
} */
.windows-doors-hero .hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 30px;
}
.windows-doors-intro {
  background: #f4f3ef;
}
.motion-visual-section {
  background: #111416;
  color: #fff;
  scroll-margin-top: 120px;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 54px 54px;
}
.motion-visual-section .section-title,
.motion-visual-section .lede {
  color: #fff;
}
.motion-visual-section .lede {
  color: #bbc2c5;
}
.motion-visual-section .kicker {
  color: #aab2b5;
  border-color: #555d61 !important;
}
.priority-finder {
  display: grid;
  grid-template-columns: minmax(210px, 1.1fr) repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 18px;
}
.priority-finder > div,
.priority-finder > a {
  position: relative;
  overflow: hidden;
  min-height: 124px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(104, 116, 121, 0.35);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(33, 39, 42, 0.98) 0%, rgba(19, 22, 24, 0.98) 100%);
  box-shadow:
    0 16px 38px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}
.priority-finder > div {
  justify-content: center;
  background:
    linear-gradient(160deg, rgba(15, 23, 27, 0.98) 0%, rgba(28, 35, 38, 0.98) 100%);
}
.priority-finder > div::before,
.priority-finder > a::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue2), transparent);
  opacity: 0.9;
}
.priority-finder > a::after {
  content: "";
  position: absolute;
  inset: auto -18% -65% auto;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(28, 143, 231, 0.18), transparent 68%);
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
  transform: translateY(10px);
}
.priority-finder > div span {
  font:
    10px ui-monospace,
    "SFMono-Regular",
    Consolas,
    monospace;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--blue2);
}
.priority-finder > div strong {
  margin-top: 14px;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 500;
  color: #fff;
  max-width: 18ch;
}
.priority-finder > div small {
  margin-top: 12px;
  font:
    11px ui-monospace,
    "SFMono-Regular",
    Consolas,
    monospace;
  letter-spacing: 0.08em;
  color: #a7b0b4;
}
.priority-finder a:hover {
  transform: translateY(-3px);
  border-color: rgba(61, 180, 255, 0.6);
  background:
    linear-gradient(180deg, rgba(28, 37, 41, 0.98) 0%, rgba(18, 22, 24, 0.98) 100%);
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(61, 180, 255, 0.12) inset;
}
.priority-finder a:hover::after {
  opacity: 1;
  transform: translateY(0);
}
.priority-finder b {
  font-size: 16px;
  line-height: 1.2;
  font-weight: 520;
  color: #fff;
}
.priority-finder small {
  font:
    10px ui-monospace,
    "SFMono-Regular",
    Consolas,
    monospace;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #97a2a7;
}
.motion-visual-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 16px;
}
.motion-visual-card {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  background: #202428;
  border: 1px solid #4a5155;
  color: #fff;
  box-shadow: 7px 7px 0 rgba(0, 0, 0, 0.2);
}
.motion-span-7 {
  grid-column: span 7;
}
.motion-span-5 {
  grid-column: span 5;
}
.motion-span-4 {
  grid-column: span 4;
}
.motion-span-3 {
  grid-column: span 3;
}
.motion-visual-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition:
    transform 0.6s ease,
    filter 0.35s ease;
}
.motion-visual-card:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(3, 5, 6, 0.04) 16%,
    rgba(3, 5, 6, 0.25) 46%,
    rgba(3, 5, 6, 0.94) 100%
  );
}
.motion-visual-card:hover img {
  transform: scale(1.025);
}
.motion-card-light {
  background: #e9e8e3;
}
.motion-card-light > img {
  object-fit: contain;
  padding: 40px 25px 120px;
}
.motion-card-light:after {
  background: linear-gradient(
    180deg,
    rgba(10, 12, 14, 0.01) 20%,
    rgba(10, 12, 14, 0.08) 50%,
    rgba(10, 12, 14, 0.94) 100%
  );
}
.motion-visual-overlay {
  position: absolute;
  z-index: 2;
  left: 30px;
  right: 30px;
  bottom: 28px;
}
.motion-visual-overlay > span {
  font:
    9px ui-monospace,
    "SFMono-Regular",
    Consolas,
    monospace;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--blue2);
}
.motion-visual-overlay h3 {
  font-size: clamp(34px, 3.4vw, 55px);
  line-height: 0.94;
  letter-spacing: -0.05em;
  font-weight: 340;
  margin: 14px 0;
}
.motion-span-3 .motion-visual-overlay h3 {
  font-size: clamp(30px, 2.8vw, 43px);
}
.motion-visual-overlay p {
  font-size: 14px;
  line-height: 1.55;
  color: #d2d7d9;
  max-width: 580px;
  margin: 0 0 22px;
}
.motion-visual-overlay b {
  font-size: 12px;
  font-weight: 520;
  color: #fff;
}
.decision-section {
  background: #f4f3ef;
}
.engineering-underneath {
  background: #e6f3f7;
}
.engineering-underneath-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 70px;
  align-items: start;
}
.engineering-underneath-grid h2 {
  font-size: clamp(46px, 5.3vw, 78px);
  line-height: 0.93;
  letter-spacing: -0.055em;
  font-weight: 320;
  margin: 18px 0 28px;
}
.engineering-underneath-grid > div:first-child > p {
  font-size: 16px;
  line-height: 1.68;
  color: #596266;
  max-width: 720px;
}
.engineering-layer-list {
  position: relative;
  max-height: clamp(320px, 36vw, 430px);
  overflow: hidden;
  padding: 12px 0;
  border-top: 1px solid rgba(10, 12, 14, 0.22);
  border-bottom: 1px solid rgba(10, 12, 14, 0.22);
  mask-image: linear-gradient(
    180deg,
    transparent 0,
    #000 7%,
    #000 93%,
    transparent 100%
  );
  animation: engineering-layer-scroll 14s ease-in-out infinite alternate;
  will-change: transform;
}
.engineering-layer-list:hover {
  animation-play-state: paused;
}
.engineering-layer-list:before,
.engineering-layer-list:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 24px;
  z-index: 2;
  pointer-events: none;
}
.engineering-layer-list:before {
  top: 0;
  background: linear-gradient(180deg, rgba(230, 243, 247, 1), rgba(230, 243, 247, 0));
}
.engineering-layer-list:after {
  bottom: 0;
  background: linear-gradient(0deg, rgba(230, 243, 247, 1), rgba(230, 243, 247, 0));
}
.engineering-layer-list > div {
  display: grid;
  grid-template-columns: 54px 145px 1fr;
  gap: 18px;
  align-items: start;
  padding: 22px 0;
  border-bottom: 1px solid rgba(10, 12, 14, 0.12);
  position: relative;
  z-index: 1;
}
.engineering-layer-list > div:last-child {
  border-bottom: 0;
  padding-bottom: 10px;
}
.engineering-layer-list span {
  font:
    9px ui-monospace,
    "SFMono-Regular",
    Consolas,
    monospace;
  letter-spacing: 0.13em;
  color: #168db8;
  padding-top: 4px;
}
.engineering-layer-list b {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.03em;
}
.engineering-layer-list p {
  font-size: 13px;
  line-height: 1.55;
  color: #626b6f;
  margin: 0;
}
@keyframes engineering-layer-scroll {
  0%,
  12% {
    transform: translateY(0);
  }
  48% {
    transform: translateY(-18px);
  }
  82% {
    transform: translateY(-8px);
  }
  100% {
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .engineering-layer-list {
    animation: none;
    transform: none;
  }
}
.contact-mini-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 18px 0 21px;
}
.contact-mini-tags span {
  font:
    9px ui-monospace,
    "SFMono-Regular",
    Consolas,
    monospace !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  color: #fff !important;
  border: 1px solid #545d61;
  padding: 7px 9px;
  background: #202528;
}
@media (max-width: 1050px) {
  .priority-finder {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .priority-finder > div {
    grid-column: 1/-1;
    min-height: 88px;
  }
  .motion-span-7,
  .motion-span-5,
  .motion-span-4,
  .motion-span-3 {
    grid-column: span 6;
  }
  .engineering-underneath-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }
}
@media (max-width: 720px) {
  .windows-doors-hero {
    min-height: 690px;
  }
  .priority-finder {
    grid-template-columns: 1fr;
  }
  .priority-finder > div {
    grid-column: 1/-1;
  }
  .motion-visual-grid {
    grid-template-columns: 1fr;
  }
  .motion-span-7,
  .motion-span-5,
  .motion-span-4,
  .motion-span-3 {
    grid-column: 1;
  }
  .motion-visual-card {
    min-height: 430px;
  }
  .cap-card-art {
    width: 92px;
    height: 92px;
    top: 14px;
    right: 12px;
    opacity: 0.1;
  }
  .motion-card-light > img {
    padding: 25px 10px 115px;
  }
  .engineering-layer-list > div {
    grid-template-columns: 45px 1fr;
  }
  .engineering-layer-list p {
    grid-column: 2;
  }
  .motion-visual-overlay {
    left: 24px;
    right: 24px;
    bottom: 24px;
  }
}

/* V9 — expanded CiiLOCK history */
.story-history-hero .page-hero-content {
  max-width: 1120px;
}
.story-history-intro {
  margin-bottom: 44px;
}
.story-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(10, 12, 14, 0.16);
  border: 1px solid rgba(10, 12, 14, 0.16);
  margin: 0 0 110px;
}
.story-fact {
  background: #fff;
  padding: 30px 32px;
  min-height: 190px;
  display: flex;
  flex-direction: column;
}
.story-fact span {
  font:
    10px ui-monospace,
    "SFMono-Regular",
    Consolas,
    monospace;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #73797c;
}
.story-fact strong {
  font-size: clamp(37px, 4vw, 58px);
  font-weight: 330;
  letter-spacing: -0.055em;
  line-height: 1;
  margin: 24px 0 17px;
}
.story-fact p {
  font-size: 14px;
  line-height: 1.55;
  color: #666d70;
  margin: auto 0 0;
  max-width: 270px;
}
.story-timeline {
  margin-top: 0;
}
.timeline-chapter {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 70px;
  margin: 18px 0 92px;
  padding: 32px 0;
  border-top: 4px solid #0a0c0e;
  border-bottom: 1px solid rgba(10, 12, 14, 0.18);
  position: relative;
}
.timeline-chapter:before {
  content: "";
  position: absolute;
  left: 169px;
  top: -8px;
  width: 13px;
  height: 13px;
  background: var(--blue);
  transform: rotate(45deg);
}
.timeline-chapter-code {
  font:
    10px ui-monospace,
    "SFMono-Regular",
    Consolas,
    monospace;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--blue);
  text-align: right;
  padding-top: 7px;
}
.timeline-chapter h3 {
  font-size: clamp(35px, 4vw, 55px);
  line-height: 0.96;
  letter-spacing: -0.05em;
  font-weight: 350;
  margin: 0 0 12px;
}
.timeline-chapter p {
  font-size: 17px;
  line-height: 1.55;
  color: #656b6e;
  max-width: 800px;
  margin: 0;
}
.timeline-item-rich .timeline-content > p + p {
  margin-top: 15px;
}
.timeline-image-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 28px;
}
.timeline-image-pair .timeline-image {
  margin-top: 0;
  height: 360px;
}
.timeline-image-pair .timeline-image img {
  height: 100%;
  max-height: none;
  object-fit: cover;
}
.timeline-item-today {
  padding-bottom: 55px;
}
.timeline-brand-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 32px;
}
.timeline-brand-grid a {
  display: grid;
  grid-template-rows: 220px auto;
  background: #101315;
  color: #fff;
  text-decoration: none;
  overflow: hidden;
  border-top: 3px solid var(--blue);
  transition: 0.2s ease;
}
.timeline-brand-grid a:hover {
  transform: translateY(-3px);
}
.timeline-brand-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  opacity: 0.88;
  transition: 0.2s ease;
}
.timeline-brand-grid a:hover img {
  opacity: 1;
  transform: scale(1.015);
}

.timeline-brand-grid a.timeline-brand-text {
  grid-template-rows: 220px auto;
  background: #e7f4f8;
  color: #0a0c0e;
}
.timeline-brand-text > div {
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-image:
    linear-gradient(90deg, rgba(10, 12, 14, 0.045) 1px, transparent 1px),
    linear-gradient(rgba(10, 12, 14, 0.045) 1px, transparent 1px);
  background-size: 34px 34px;
}
.timeline-brand-text small {
  font:
    9px ui-monospace,
    "SFMono-Regular",
    Consolas,
    monospace;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #168db8;
}
.timeline-brand-text strong {
  font-size: 30px;
  letter-spacing: -0.04em;
  margin: 12px 0 8px;
}
.timeline-brand-text p {
  font-size: 13px;
  line-height: 1.5;
  color: #5e676b;
  margin: 0;
}
.timeline-brand-grid .timeline-brand-text span {
  color: #fff;
  background: #101315;
}
.timeline-brand-grid span {
  padding: 16px 18px;
  font-size: 13px;
  font-weight: 600;
}
.timeline-future {
  margin: 20px 0 0 210px;
  padding: 58px;
  background: #0b0d0f;
  color: #fff;
  border-top: 5px solid var(--blue);
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 46px;
  box-shadow: 9px 9px 0 rgba(0, 0, 0, 0.12);
}
.timeline-future-label {
  font:
    10px ui-monospace,
    "SFMono-Regular",
    Consolas,
    monospace;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #72d5f2;
  padding-top: 9px;
}
.timeline-future h3 {
  font-size: clamp(32px, 4vw, 51px);
  line-height: 0.98;
  letter-spacing: -0.045em;
  font-weight: 350;
  margin: 0 0 22px;
}
.timeline-future p {
  font-size: 17px;
  line-height: 1.66;
  color: #c1c7ca;
  margin: 0;
  max-width: 820px;
}
.story-history-cta .hero-actions {
  justify-content: center;
  gap: 1rem;
  margin-top: 30px;
}
.story-history-cta .outline-light {
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}
@media (max-width: 980px) {
  .story-facts {
    grid-template-columns: 1fr;
    margin-bottom: 78px;
  }
  .story-fact {
    min-height: 0;
  }
  .timeline-chapter {
    grid-template-columns: 1fr;
    gap: 16px;
    padding-left: 32px;
  }
  .timeline-chapter:before {
    left: 0;
  }
  .timeline-chapter-code {
    text-align: left;
  }
  .timeline-future {
    margin-left: 70px;
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
@media (max-width: 720px) {
  .timeline-image-pair,
  .timeline-brand-grid {
    grid-template-columns: 1fr;
  }
  .timeline-image-pair .timeline-image {
    height: 300px;
  }
  .timeline-brand-grid a {
    grid-template-rows: 190px auto;
  }
  .timeline-brand-grid img {
    height: 190px;
  }
  .timeline-future {
    margin: 0 0 0 32px;
    padding: 38px 28px;
  }
  .story-history-cta .hero-actions {
    align-items: stretch;
  }
  .story-history-cta .btn {
    justify-content: center;
  }
}

/* ======================================================================
   V10 final refinement — story alignment + global credibility map
   ====================================================================== */
.story-master {
  background: #efeee9;
  padding: 108px 0 126px;
  overflow: hidden;
}
.story-master-intro {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 38px;
  padding-bottom: 54px;
  border-bottom: 1px solid #b8b9b5;
}
.story-master-intro h2 {
  font-size: clamp(37px, 5vw, 63px);
  line-height: 0.97;
  letter-spacing: -0.052em;
  font-weight: 330;
  margin: 0 0 22px;
  max-width: 950px;
}
.story-master-intro p {
  font-size: 18px;
  line-height: 1.65;
  color: #5e6466;
  max-width: 850px;
  margin: 0;
}
.story-master-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 0 0 62px;
  border-bottom: 1px solid #b8b9b5;
}
.story-master-facts > div {
  padding: 30px 28px 32px;
  border-right: 1px solid #c6c7c3;
  min-height: 165px;
}
.story-master-facts > div:last-child {
  border-right: 0;
}
.story-master-facts span {
  display: block;
  font:
    10px ui-monospace,
    "SFMono-Regular",
    Consolas,
    monospace;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #747a7d;
  margin-bottom: 10px;
}
.story-master-facts strong {
  display: block;
  font-size: 37px;
  line-height: 1;
  letter-spacing: -0.04em;
  font-weight: 420;
}
.story-master-facts p {
  font-size: 13px;
  line-height: 1.45;
  color: #6a7072;
  margin: 11px 0 0;
  max-width: 260px;
}
.story-master-list {
  border-top: 1px solid #16191b;
}
.story-entry {
  display: grid;
  grid-template-columns: 160px minmax(330px, 1fr) minmax(360px, 520px);
  gap: 42px;
  align-items: start;
  padding: 58px 0;
  border-bottom: 1px solid #b8b9b5;
  position: relative;
}
.story-entry:before {
  content: "";
  position: absolute;
  left: 0;
  top: -1px;
  width: 52px;
  height: 3px;
  background: var(--blue);
}
.story-date {
  padding-top: 4px;
}
.story-date span {
  display: block;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 650;
  letter-spacing: -0.01em;
}
.story-date small {
  display: block;
  margin-top: 9px;
  font:
    9px ui-monospace,
    "SFMono-Regular",
    Consolas,
    monospace;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: #777d80;
  line-height: 1.45;
}
.story-alt {
  max-width: 650px;
}
.story-alt h3 {
  font-size: clamp(31px, 3.2vw, 48px);
  line-height: 1.02;
  letter-spacing: -0.045em;
  font-weight: 360;
  margin: 0 0 22px;
}
.story-alt p {
  font-size: 16px;
  line-height: 1.67;
  color: #50575a;
  margin: 0;
}
.story-alt p + p {
  margin-top: 15px;
}
.story-alt strong {
  color: #111;
  font-weight: 600;
}
.story-alt a {
  color: #111;
  text-decoration: none;
  border-bottom: 1px solid #9ba0a2;
}
.story-alt a:hover {
  border-color: var(--blue);
  color: #047ba5;
}
.story-media {
  margin: 0;
  background: #101315;
  position: relative;
  overflow: hidden;
  min-height: 330px;
  height: 100%;
  max-height: 410px;
  align-self: stretch;
  box-shadow: 7px 7px 0 rgba(0, 0, 0, 0.09);
}
.story-media > img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 330px;
  max-height: 410px;
  object-fit: cover;
}
.story-media > img.contain {
  object-fit: contain;
  background: #f4f4f1;
  padding: 20px;
}
.story-media figcaption {
  position: absolute;
  left: 0;
  bottom: 0;
  background: rgba(8, 10, 12, 0.88);
  color: #fff;
  padding: 9px 12px;
  font:
    8px ui-monospace,
    "SFMono-Regular",
    Consolas,
    monospace;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.story-media-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
}
.story-media-pair > img {
  min-width: 0;
  min-height: 330px;
  height: 100%;
  max-height: 410px;
  object-fit: cover;
}
.story-media-pair > img.contain {
  background: #f4f4f1;
  padding: 18px;
  object-fit: contain;
}
.story-media-light {
  background: #f4f4f1;
}
.story-entry-feature {
  padding-top: 72px;
  padding-bottom: 72px;
}
.story-entry-feature .story-media {
  min-height: 390px;
  max-height: 450px;
}
.story-entry-future {
  border-bottom: 0;
  background: #0d1012;
  color: #fff;
  margin: 36px -34px 0;
  padding: 58px 34px;
}
.story-entry-future:before {
  left: 34px;
}
.story-entry-future .story-date small,
.story-entry-future .story-alt p {
  color: #c3c9cb;
}
.story-entry-future .story-alt strong,
.story-entry-future .story-alt h3 {
  color: #fff;
}
.story-now {
  margin-top: 76px;
  background: #dff3fa;
  border-top: 5px solid var(--blue);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 58px;
  padding: 58px;
}
.story-now h2 {
  font-size: clamp(38px, 4.2vw, 60px);
  line-height: 0.98;
  letter-spacing: -0.05em;
  font-weight: 340;
  margin: 14px 0 24px;
}
.story-now p {
  font-size: 16px;
  line-height: 1.65;
  color: #566166;
  margin: 0;
}
.story-now p + p {
  margin-top: 14px;
}
.story-now-brands {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.story-now-brands a {
  min-height: 138px;
  background:
    linear-gradient(180deg, rgba(8, 10, 12, 0.2), rgba(8, 10, 12, 0.82)),
    var(--story-now-bg, #0d1012);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  color: #fff;
  text-decoration: none;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-top: 3px solid var(--blue);
  transition: 0.18s;
}
.story-now-brands a:hover {
  transform: translateY(-3px);
}
.story-now-brands .mor-brand {
  --story-now-bg: url("../images/products/mor-hq.webp");
}
.story-now-brands .titan-brand {
  --story-now-bg: url("../images/products/titan-all.webp");
}
.story-now-brands .volta-brand {
  --story-now-bg: url("../images/products/volta.webp");
}
.story-now-brands .pivotron-brand {
  --story-now-bg: url("../images/products/pivotron.webp");
}
.story-now-brands b {
  font-size: 22px;
  letter-spacing: -0.035em;
}
.story-now-brands span {
  font-size: 11px;
  color: #c8d0d3;
  margin-top: 8px;
}

.contact-global-proof {
  margin: 72px 0 20px;
  padding: 0;
  border-top: 1px solid #b9bbba;
}
.contact-global-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 58px 0 40px;
}
.contact-global-head h2 {
  font-size: clamp(40px, 4.4vw, 64px);
  line-height: 0.97;
  letter-spacing: -0.05em;
  font-weight: 340;
  margin: 13px 0 0;
}
.contact-global-head p {
  font-size: 16px;
  line-height: 1.62;
  color: #5b6265;
  max-width: 650px;
  margin: 0 0 18px;
}
.cred-marker {
  position: absolute;
  left: var(--x);
  top: var(--y);
  transform: translate(-50%, -50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
}
.cred-marker i {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--blue);
  border: 3px solid #fff;
  box-shadow: 0 0 0 7px rgba(0, 166, 223, 0.18);
  margin-bottom: 9px;
}
.cred-marker b,
.cred-marker small {
  background: rgba(8, 10, 12, 0.87);
  color: #fff;
  white-space: nowrap;
  padding: 3px 7px;
}
.cred-marker b {
  font-size: 10px;
  letter-spacing: 0.02em;
}
.cred-marker small {
  font-size: 8px;
  color: #aeb8bc;
  padding-top: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
@media (max-width: 1050px) {
  .story-entry {
    grid-template-columns: 120px minmax(0, 1fr) minmax(300px, 42%);
    gap: 28px;
  }
  .story-master-intro {
    grid-template-columns: 130px 1fr;
  }
  .story-now {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .contact-global-head {
    gap: 36px;
  }
  .cred-marker b,
  .cred-marker small {
    display: none;
  }
  .cred-marker i {
    margin: 0;
  }
}
@media (max-width: 820px) {
  .story-master {
    padding: 78px 0 88px;
  }
  .story-master-intro {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .story-master-facts {
    grid-template-columns: 1fr;
  }
  .story-master-facts > div {
    border-right: 0;
    border-bottom: 1px solid #c6c7c3;
    min-height: 0;
    padding: 22px 0;
  }
  .story-master-facts > div:last-child {
    border-bottom: 0;
  }
  .story-entry {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 42px 0;
  }
  .story-entry:before {
    width: 38px;
  }
  .story-date {
    display: flex;
    gap: 12px;
    align-items: baseline;
  }
  .story-date small {
    margin: 0;
  }
  .story-alt {
    max-width: none;
  }
  .story-media,
  .story-media > img,
  .story-media-pair > img {
    min-height: 260px;
    max-height: 340px;
  }
  .story-entry-feature .story-media {
    min-height: 300px;
    max-height: 380px;
  }
  .story-entry-future {
    margin: 30px -18px 0;
    padding: 42px 18px;
  }
  .story-entry-future:before {
    left: 18px;
  }
  .story-now {
    margin-top: 54px;
    padding: 36px 24px;
  }
  .story-now-brands {
    grid-template-columns: 1fr 1fr;
  }
  .contact-global-head {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 46px 0 28px;
  }
  .cred-marker i {
    width: 11px;
    height: 11px;
    border-width: 2px;
    box-shadow: 0 0 0 5px rgba(0, 166, 223, 0.18);
  }
}
@media (max-width: 520px) {
  .story-now-brands {
    grid-template-columns: 1fr;
  }
  .story-media-pair {
    grid-template-columns: 1fr;
  }
  .story-media-pair > img {
    min-height: 210px;
  }
  .story-media-pair {
    max-height: none;
  }
}

/* V10 map labels: keep the map visually clean; city names are listed directly below. */
.cred-marker b,
.cred-marker small {
  display: none !important;
}
.cred-marker i {
  margin-bottom: 0;
}

/* Events pages */
/* .events-index-page .page-hero-content,
.riddle-page .page-hero-content {
  max-width: 1280px;
} */

.events-index-page .page-hero,
.riddle-page .page-hero {
  min-height: min(760px, calc(100svh - 108px));
  max-height: 760px;
}

.events-index-page .page-hero-content,
.riddle-page .page-hero-content {
  padding-top: 72px;
  padding-bottom: 54px;
}

.events-index-page .page-hero h1,
.riddle-page .page-hero h1 {
  max-width: 920px;
}

.events-index-page .page-hero p,
.riddle-page .page-hero p {
  max-width: 680px;
}

.event-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 18px;
  margin-top: 50px;
  align-items: stretch;
}

.event-feature-alt,
.event-feature-visual,
.riddle-panel {
  background: #fff;
  border-top: 3px solid var(--ink);
}

.event-feature-alt,
.riddle-panel {
  padding: 34px;
}

.event-feature-alt {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.event-meta,
.riddle-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.event-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 10px 14px;
  background: rgba(0, 166, 223, 0.12);
  color: var(--ink);
  border: 1px solid rgba(0, 166, 223, 0.18);
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
}

.event-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.event-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(17, 18, 20, 0.14);
  background: rgba(17, 18, 20, 0.04);
  color: var(--ink);
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  font-weight: 600;
  white-space: nowrap;
}

.event-pill-location {
  background: rgba(0, 166, 223, 0.08);
  border-color: rgba(0, 166, 223, 0.18);
}

.event-feature-visual {
  overflow: hidden;
  height: 100%;
}

.event-feature-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

.event-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-top: 3px solid var(--ink);
  overflow: hidden;
  min-height: 100%;
  cursor: pointer;
  justify-content: space-between;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.event-card[hidden] {
  display: none !important;
}

.event-card-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #e7e5df;
}

.event-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.event-card:hover .event-card-media img {
  transform: scale(1.03);
}
.event-card:hover {
  transform: translateY(-3px);
  border-color: var(--blue);
  box-shadow: 0 18px 32px rgba(10, 12, 14, 0.08);
}
.event-card:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}

.event-card-body {
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.event-card h3 {
  font-size: 24px;
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 0;
}

.event-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.58;
  color: #666b6e;
}
.archive-actions {
  margin-top: 28px;
}
.archive-actions #past-events-toggle {
  background: #111;
  border-color: #111;
  color: #fff;
}
.archive-actions #past-events-toggle:hover {
  background: #000;
  border-color: #000;
  color: #fff;
}

.event-card .event-meta {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6b7073;
}
.event-card .event-meta time {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.event-card .event-tags {
  margin-top: -2px;
}

.event-card .actions {
  margin-top: auto;
}
#updates .event-card .btn.outline {
  background: #111;
  border-color: #111;
  color: #fff;
}
#updates .event-card .btn.outline:hover {
  background: #000;
  border-color: #000;
  color: #fff;
}
#updates .event-card .actions {
  justify-content: flex-start;
  padding-top: 0.5rem;
}

.event-gallery-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 243, 239, 0.98)),
    radial-gradient(circle at top right, rgba(0, 166, 223, 0.07), transparent 35%);
}
.gallery-modal-open {
  overflow: hidden;
}
.event-gallery-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 10px 0 24px;
  flex-wrap: wrap;
}
.event-gallery-meta {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6b7073;
}
.event-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}
.event-gallery-grid.single-image {
  grid-template-columns: minmax(0, 680px);
  justify-content: center;
}
.event-gallery-card {
  appearance: none;
  border: 0;
  padding: 0;
  margin: 0;
  text-align: left;
  display: grid;
  cursor: zoom-in;
  overflow: hidden;
  background: #101315;
  border-radius: 22px;
  box-shadow: 0 18px 34px rgba(10, 12, 14, 0.08);
  position: relative;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease;
}
.event-gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 40px rgba(10, 12, 14, 0.14);
}
.event-gallery-card:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}
.event-gallery-card-media {
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #111;
}
.event-gallery-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
.event-gallery-card:hover .event-gallery-card-media img {
  transform: scale(1.04);
}
.event-gallery-card-overlay {
  position: absolute;
  inset: auto 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  color: #fff;
  background: linear-gradient(180deg, rgba(7, 9, 10, 0), rgba(7, 9, 10, 0.82));
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.event-gallery-card-index {
  opacity: 0.85;
}
.event-lightbox[hidden] {
  display: none;
}
.event-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(8, 10, 12, 0.9);
  backdrop-filter: blur(14px);
}
.event-lightbox-panel {
  width: min(1120px, 100%);
  max-height: calc(100vh - 48px);
  display: grid;
  gap: 18px;
  padding: 18px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(22, 25, 28, 0.96), rgba(14, 16, 18, 0.98)),
    radial-gradient(circle at top left, rgba(0, 166, 223, 0.14), transparent 38%);
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}
.event-lightbox-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.event-lightbox-meta {
  display: grid;
  gap: 4px;
}
.event-lightbox-caption,
.event-lightbox-count {
  color: rgba(255, 255, 255, 0.88);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.event-lightbox-count {
  color: rgba(89, 209, 255, 0.96);
}
.event-lightbox-close {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  border-radius: 999px;
  padding: 12px 18px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.25s ease;
}
.event-lightbox-close:hover {
  border-color: rgba(89, 209, 255, 0.6);
  background: rgba(89, 209, 255, 0.08);
}
.event-lightbox-viewport {
  position: relative;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) 56px;
  align-items: center;
  gap: 14px;
  min-height: 0;
}
.event-lightbox-viewport img {
  width: 100%;
  height: min(72vh, 760px);
  object-fit: contain;
  background: #0f1113;
  border-radius: 22px;
}
.event-lightbox-nav {
  appearance: none;
  width: 56px;
  height: 56px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  transition: 0.25s ease;
}
.event-lightbox-nav:hover {
  background: rgba(89, 209, 255, 0.1);
  border-color: rgba(89, 209, 255, 0.6);
}
.event-lightbox-nav.prev {
  justify-self: end;
}
.event-lightbox-nav.next {
  justify-self: start;
}

.riddle-nav {
  margin-top: 28px;
}

.riddle-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  transition: 0.25s;
}

.riddle-nav a:hover {
  border-color: var(--ink);
  transform: translateY(-1px);
}

.riddle-section {
  padding: 90px 0;
}

.riddle-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 18px;
  margin-top: 40px;
}

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

.riddle-panel {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.riddle-panel.black {
  background: var(--ink);
  color: #fff;
}

.riddle-panel.black p {
  color: rgba(255, 255, 255, 0.84);
}

.riddle-panel .solutions-eyebrow {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 600;
}

.riddle-panel h3 {
  font-size: 24px;
  line-height: 1.04;
  letter-spacing: -0.03em;
  margin: 0;
}

.riddle-panel p {
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
  color: #666b6e;
}

.riddle-media {
  overflow: hidden;
  min-height: 100%;
  background: #e7e5df;
}

.riddle-media img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

@media (max-width: 980px) {
  .event-feature,
  .event-grid,
  .riddle-layout {
    grid-template-columns: 1fr;
  }
  .event-gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  }
  .event-gallery-grid.single-image {
    grid-template-columns: 1fr;
  }
  .event-lightbox {
    padding: 14px;
  }
  .event-lightbox-panel {
    max-height: calc(100vh - 28px);
    padding: 14px;
    border-radius: 22px;
  }
  .event-lightbox-viewport {
    grid-template-columns: 1fr;
  }
  .event-lightbox-nav {
    display: none;
  }

  .event-feature-visual img,
  .riddle-media img {
    min-height: 0;
    height: 100%;
  }
}
