@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap");

:root {
  --accent: #49c4f0;
  --accent-rgb: 73, 196, 240;
  --ink: #25272d;
  --graphite: #3c3d43;
  --muted: #72757c;
  --line: #dfe4e7;
  --surface: #ffffff;
  --soft: #f4f7f8;
  --steel: #101317;
  --max: 1120px;
  --content-max: 980px;
  --wide: 1400px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: Roboto, Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

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

[hidden] {
  display: none !important;
}

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

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  background: var(--ink);
  color: #fff;
  padding: .7rem 1rem;
  z-index: 20;
}

.skip-link:focus { top: 1rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(14px);
}

.contact-bar {
  min-height: 42px;
  display: grid;
  grid-template-columns: minmax(260px, 1.35fr) minmax(210px, .9fr) minmax(170px, .75fr) auto;
  gap: clamp(.8rem, 2vw, 1.6rem);
  align-items: center;
  padding: 0 clamp(1rem, 4vw, 4rem);
  font-size: .88rem;
  color: #565a60;
  font-weight: 800;
  border-bottom: 1px solid rgba(0,0,0,.06);
  background: rgba(255,255,255,.74);
}

.contact-bar a {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color .18s ease;
}

.contact-bar a:hover,
.top-actions button:hover {
  color: #111317;
}

.contact-bar > a:first-child {
  justify-content: flex-start;
}

.contact-bar > a:nth-child(2) {
  justify-content: center;
}

.contact-bar > a:nth-child(3) {
  justify-content: flex-end;
}

.contact-icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  flex: 0 0 auto;
  color: var(--accent);
}

.contact-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.top-actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: .4rem;
  white-space: nowrap;
}

.top-actions a,
.top-actions button {
  min-height: 26px;
  border: 1px solid rgba(var(--accent-rgb), .45);
  border-radius: 6px;
  background: rgba(var(--accent-rgb), .08);
  color: #2f3339;
  padding: .25rem .55rem;
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
  cursor: pointer;
}

.top-actions a[aria-current="page"] {
  background: var(--accent);
  border-color: var(--accent);
  color: #071116;
}

.main-nav {
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: clamp(1.4rem, 3.2vw, 3.7rem);
  padding: 0 clamp(1.2rem, 4vw, 4.5rem);
}

.brand {
  width: min(170px, 24vw);
  flex: 0 0 auto;
  transform: translateY(10px);
}

.nav-panel {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(1.05rem, 2.2vw, 2.45rem);
  width: auto;
  flex: 1 1 auto;
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
  transform: translateY(9px);
}

.nav-panel > a,
.nav-item > a,
.text-button {
  color: var(--ink);
  background: none;
  border: 0;
  padding: .75rem .1rem;
  cursor: pointer;
  letter-spacing: .15em;
  white-space: nowrap;
  position: relative;
  transition: color .18s ease;
}

.nav-panel > a::after,
.nav-item > a::after {
  content: "";
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: .45rem;
  height: 2px;
  background: var(--accent);
  transition: left .2s ease, right .2s ease;
}

.nav-panel > a:hover,
.nav-item:hover > a,
.text-button:hover,
.nav-panel .lang {
  color: var(--accent);
}

.nav-panel > a:hover::after,
.nav-panel > a:focus-visible::after,
.nav-item:hover > a::after,
.nav-item:focus-within > a::after {
  left: 0;
  right: 0;
}

.has-menu {
  position: relative;
}

.has-menu > a {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
}

.has-menu > a::before {
  content: "";
  order: 2;
  width: .42rem;
  height: .42rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-.12rem) rotate(45deg);
  opacity: .66;
  transition: transform .18s ease, opacity .18s ease;
}

.has-menu:hover > a::before,
.has-menu:focus-within > a::before {
  transform: translateY(.02rem) rotate(45deg);
  opacity: 1;
}

.dropdown {
  position: absolute;
  top: calc(100% + .35rem);
  left: 50%;
  transform: translate(-50%, 8px);
  width: max-content;
  min-width: 245px;
  max-width: 320px;
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  background: rgba(255,255,255,.97);
  padding: .7rem .9rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 22px 58px rgba(16,19,23,.14);
  transition: opacity .2s ease, transform .2s ease;
}

.has-menu:hover .dropdown,
.has-menu:focus-within .dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.dropdown a {
  display: block;
  padding: .72rem .85rem;
  text-align: left;
  color: #5f646b;
  border-bottom: 1px solid rgba(6, 19, 26, .1);
  letter-spacing: .12em;
  font-size: .76rem;
  border-radius: 6px;
  transition: background .18s ease, color .18s ease, padding-left .18s ease;
}

.dropdown a:hover,
.dropdown a:focus-visible {
  background: rgba(var(--accent-rgb), .1);
  color: #111317;
  padding-left: 1rem;
}

.dropdown a:last-child { border-bottom: 0; }

.request-link {
  color: var(--accent) !important;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 6px;
  padding: .7rem .9rem;
  font-weight: 900;
  text-transform: uppercase;
}

.brand-strip {
  position: relative;
  overflow: visible;
  isolation: isolate;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 28px;
  padding: 0 clamp(1rem, 4vw, 4rem);
  background: transparent;
  color: rgba(15,18,21,.76);
  text-transform: uppercase;
  letter-spacing: .24em;
  font-size: .68rem;
  font-weight: 900;
  margin-bottom: -1px;
}

.brand-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, var(--accent), #7bd8f5);
  clip-path: polygon(0 0, calc(100% - 28px) 0, 100% 100%, 0 100%);
}

.brand-strip span {
  position: relative;
  z-index: 1;
  white-space: nowrap;
}

.brand-strip span:last-child {
  padding-right: 42px;
}

.hero {
  min-height: calc(100svh - 144px);
  padding: clamp(1.4rem, 3vw, 2.8rem) 0 clamp(2.5rem, 5vw, 4rem);
  display: grid;
  align-items: end;
  gap: clamp(1.8rem, 4vw, 3rem);
  background: #fff;
}

.hero-intro {
  width: min(390px, 62vw);
  margin: 0 auto;
  display: grid;
  gap: .45rem;
  justify-items: center;
  animation: introLift .9s ease both;
}

.hero-intro img {
  width: 100%;
}

.hero-intro span,
.hero-intro strong {
  color: #8e9296;
  font-size: .82rem;
  font-weight: 700;
}

.hero-copy {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.eyebrow {
  margin: 0 0 .75rem;
  color: var(--graphite);
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .2em;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.1rem, 4.6vw, 3.9rem);
  font-weight: 300;
  line-height: 1.05;
}

.technology-stage {
  width: min(var(--wide), calc(100% - 3rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  min-height: min(44svh, 470px);
  overflow: hidden;
  background: #000;
}

.tech-panel {
  position: relative;
  display: flex;
  min-height: 350px;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(1rem, 2.2vw, 2.2rem);
  color: #fff;
  isolation: isolate;
  overflow: hidden;
}

.tech-panel video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  opacity: .66;
  z-index: -2;
  transition: transform .6s ease, filter .6s ease, opacity .6s ease;
}

.tech-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.2), rgba(0,0,0,.82));
  z-index: -1;
}

.tech-panel:hover video {
  transform: scale(1.05);
  filter: grayscale(.15);
  opacity: .88;
}

.tech-panel span {
  position: absolute;
  top: 1.4rem;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: fit-content;
  background: rgba(255,255,255,.86);
  color: #26282d;
  padding: .65rem 1.8rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: clamp(.72rem, 1vw, .88rem);
}

.tech-panel h2 {
  margin: 0 0 .7rem;
  color: var(--accent);
  text-transform: uppercase;
  font-size: clamp(1.15rem, 1.9vw, 1.6rem);
  letter-spacing: .18em;
  line-height: 1.2;
}

.tech-panel p {
  margin: 0;
  max-width: 27rem;
  font-size: clamp(.9rem, 1.15vw, 1.05rem);
  font-weight: 700;
}

.section,
.media-band,
.company-section,
.contact-section {
  padding: clamp(3rem, 6vw, 5.5rem) 2rem;
}

.split,
.section-heading,
.media-band,
.company-section,
.contact-section,
.admin-preview {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(1.8rem, 4vw, 4rem);
  align-items: start;
}

.section h2,
.media-band h2,
.company-section h2,
.contact-section h2 {
  margin: 0;
  font-size: clamp(1.55rem, 3vw, 2.75rem);
  font-weight: 300;
  line-height: 1.08;
}

.body-copy p,
.media-band p,
.company-section p,
.contact-section p {
  font-size: clamp(.98rem, 1.16vw, 1.12rem);
  color: #565b61;
}

.feature-row,
.timeline {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 1.4rem;
}

.feature-row span,
.timeline span {
  border: 1px solid rgba(var(--accent-rgb), .4);
  color: #24323a;
  padding: .55rem .75rem;
  border-radius: 6px;
  font-weight: 900;
  text-transform: uppercase;
  font-size: .72rem;
  letter-spacing: .12em;
}

.media-band,
.company-section {
  align-items: center;
}

.media-band img,
.company-section img {
  width: 100%;
  aspect-ratio: 1.25;
  object-fit: cover;
}

.section-heading {
  grid-template-columns: 1fr auto;
  margin-bottom: 1.5rem;
  align-items: end;
}

.section-heading h2 { margin-top: 0; }

.section-heading a {
  color: var(--accent);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .82rem;
}

.project-grid,
.news-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.project-card,
.news-grid article,
.admin-panel,
.metric-grid article,
.editor-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.project-card img,
.news-grid img {
  width: 100%;
  aspect-ratio: 1.35;
  object-fit: cover;
  filter: saturate(.82);
}

.project-card p,
.news-grid span {
  display: block;
  margin: 1rem 1rem .4rem;
  color: var(--accent);
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .16em;
}

.project-card h3,
.news-grid h3 {
  margin: 0 1rem 1.1rem;
  min-height: 3.2rem;
  font-size: 1rem;
}

.news-section {
  background: var(--soft);
  max-width: none;
}

.news-section .section-heading,
.news-section .news-grid {
  max-width: var(--max);
}

.company-section {
  background: #111;
  color: #fff;
  max-width: none;
}

.company-section > * {
  max-width: var(--max);
}

.company-section img {
  justify-self: end;
  max-width: 540px;
}

.company-section p {
  color: rgba(255,255,255,.72);
}

.admin-preview {
  align-items: center;
}

.admin-panel {
  padding: 1.2rem;
  box-shadow: 0 24px 70px rgba(16,19,23,.1);
}

.admin-panel-head {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: .12em;
  font-size: .82rem;
}

.admin-panel-head strong { color: var(--accent); }

.admin-panel a,
.request-form button,
.login-box button[type="submit"],
.admin-login button,
.admin-dashboard button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 40px;
  border: 0;
  border-radius: 6px;
  background: var(--accent);
  color: #071116;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
  padding: .68rem .9rem;
  font-size: .82rem;
  cursor: pointer;
}

.contact-section {
  align-items: start;
}

.contact-section address {
  margin: 1rem 0;
  font-style: normal;
  color: #565b61;
}

.contact-section a {
  display: block;
  margin: .5rem 0;
  font-weight: 900;
}

.request-form,
.login-box,
.admin-login form {
  display: grid;
  gap: 1rem;
}

label {
  display: grid;
  gap: .35rem;
  color: #5a5e64;
  font-weight: 800;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: .72rem .85rem;
  background: #fff;
  color: var(--ink);
}

.consent {
  grid-template-columns: auto 1fr;
  align-items: start;
}

.consent input {
  width: auto;
  margin-top: .25rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 2.4rem 2rem;
  display: grid;
  gap: 1.5rem;
  justify-items: center;
  text-align: center;
}

.site-footer img { width: 180px; }

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.2rem;
  font-weight: 900;
  text-transform: uppercase;
  font-size: .8rem;
  letter-spacing: .14em;
}

.login-dialog {
  border: 0;
  border-radius: 8px;
  padding: 0;
  width: min(480px, calc(100vw - 2rem));
  box-shadow: 0 24px 90px rgba(0,0,0,.24);
}

.login-dialog::backdrop {
  background: rgba(10,12,16,.6);
}

.login-box {
  padding: 2rem;
}

.close {
  justify-self: end;
  border: 0;
  background: transparent;
  font-weight: 900;
  cursor: pointer;
}

.login-message {
  margin: 0;
  min-height: 1.4rem;
  color: #9a1b1b;
  font-weight: 900;
}

.admin-body {
  min-height: 100svh;
  background: var(--soft);
}

.admin-shell {
  min-height: 100svh;
}

.admin-login {
  min-height: 100svh;
  width: min(440px, calc(100vw - 2rem));
  margin: 0 auto;
  display: grid;
  align-content: center;
  gap: 1rem;
}

.admin-login img { width: 210px; }

.admin-login h1,
.admin-dashboard h1 {
  margin: 0;
  font-size: clamp(1.65rem, 3.4vw, 2.8rem);
  font-weight: 300;
}

.admin-dashboard {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
}

.admin-dashboard aside {
  background: #fff;
  border-right: 1px solid var(--line);
  padding: 1.5rem;
  display: grid;
  align-content: start;
  gap: 1.4rem;
  position: sticky;
  top: 0;
  min-height: 100svh;
}

.admin-dashboard aside img { width: 160px; }

.admin-dashboard nav {
  display: grid;
  gap: .8rem;
  font-weight: 900;
}

.admin-dashboard nav a {
  border-left: 3px solid transparent;
  padding: .45rem .65rem;
  color: var(--muted);
}

.admin-dashboard nav a.is-active,
.admin-dashboard nav a:hover {
  border-left-color: var(--accent);
  color: var(--ink);
  background: rgba(var(--accent-rgb), .08);
}

.dashboard-main {
  padding: clamp(1rem, 3vw, 2.2rem);
}

.dashboard-main header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
}

.dashboard-main header a {
  color: var(--accent);
  font-weight: 900;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}

.metric-grid article,
.editor-grid article {
  padding: 1rem;
}

.metric-grid span {
  color: var(--muted);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .76rem;
}

.metric-grid strong {
  display: block;
  margin: .5rem 0;
  font-size: 2.25rem;
  color: var(--accent);
}

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

.cms-workspace {
  display: grid;
  gap: 1.1rem;
}

.cms-section {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
  gap: 1rem;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 1rem;
}

.cms-section > header {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  border-bottom: 1px solid var(--line);
  padding-bottom: 1rem;
}

.cms-section h2,
.cms-section h3 {
  margin: 0;
}

.cms-section h2 {
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  font-weight: 300;
}

.cms-editor,
.cms-list {
  display: grid;
  gap: .9rem;
}

.cms-editor {
  border-right: 1px solid var(--line);
  padding-right: 1rem;
}

.cms-editor textarea {
  min-height: 120px;
  resize: vertical;
}

.format-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
}

.format-toolbar button,
.cms-actions button,
.cms-secondary {
  min-height: 34px;
  border: 1px solid rgba(var(--accent-rgb), .42);
  border-radius: 6px;
  background: rgba(var(--accent-rgb), .08);
  color: #111317;
  padding: .45rem .65rem;
  font-size: .74rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  cursor: pointer;
}

.rich-editor {
  min-height: 180px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: .8rem;
  background: #fff;
  color: var(--ink);
  outline: none;
}

.rich-editor:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(var(--accent-rgb), .18);
}

.cms-actions {
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
  align-items: center;
}

.cms-status {
  min-height: 1.3rem;
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.cms-card {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: .9rem;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: .75rem;
  background: #fff;
}

.cms-card img {
  width: 96px;
  aspect-ratio: 1.15;
  object-fit: cover;
  border-radius: 6px;
  background: var(--soft);
}

.cms-card h3 {
  font-size: 1rem;
  line-height: 1.25;
}

.cms-card p {
  margin: .35rem 0 .6rem;
  color: var(--muted);
  font-size: .88rem;
}

.cms-card small {
  display: block;
  margin-bottom: .6rem;
  color: var(--accent);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.cms-empty {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

@keyframes introLift {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1080px) {
  .contact-bar {
    grid-template-columns: 1fr 1fr;
    padding-top: .45rem;
    padding-bottom: .45rem;
    font-size: .8rem;
  }

  .contact-bar > a,
  .contact-bar > a:nth-child(2),
  .contact-bar > a:nth-child(3),
  .top-actions {
    justify-content: flex-start;
  }

  .main-nav {
    min-height: 68px;
    gap: 1rem;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .nav-panel {
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    display: none;
    padding: .8rem 1.5rem 1.4rem;
    background: #fff;
    border-top: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    gap: .25rem;
    width: 100%;
    transform: none;
  }

  .nav-panel.is-open {
    display: flex;
  }

  .dropdown {
    position: static;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    width: 100%;
    box-shadow: none;
    margin-top: .4rem;
  }

  .nav-panel > a::after,
  .nav-item > a::after {
    display: none;
  }

  .brand-strip {
    min-height: 26px;
    letter-spacing: .22em;
  }

  .hero {
    min-height: calc(100svh - 106px);
  }

  .technology-stage,
  .project-grid,
  .news-grid,
  .metric-grid,
  .editor-grid,
  .cms-section {
    grid-template-columns: 1fr;
  }

  .cms-editor {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding-right: 0;
    padding-bottom: 1rem;
  }

  .tech-panel {
    min-height: 290px;
  }

  .split,
  .section-heading,
  .media-band,
  .company-section,
  .contact-section,
  .admin-preview,
  .admin-dashboard {
    grid-template-columns: 1fr;
  }

  .admin-dashboard aside {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    position: static;
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .contact-bar {
    grid-template-columns: 1fr;
    gap: .45rem;
  }

  .main-nav {
    padding: 0 1rem;
  }

  .brand {
    width: 146px;
    transform: none;
  }

  .brand-strip {
    padding: .35rem 1rem;
    display: grid;
    gap: .2rem;
    letter-spacing: .14em;
    font-size: .64rem;
  }

  .hero {
    padding-top: 1.4rem;
  }

  .hero h1 {
    font-size: clamp(1.85rem, 10vw, 2.7rem);
  }

  .technology-stage {
    width: 100%;
  }

  .tech-panel span {
    position: static;
    margin: 0 0 4rem;
    padding: .6rem .8rem;
    letter-spacing: .12em;
  }

  .section,
  .media-band,
  .company-section,
  .contact-section {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .section h2,
  .media-band h2,
  .company-section h2,
  .contact-section h2 {
    font-size: clamp(1.55rem, 8vw, 2.35rem);
  }

  .dashboard-main header {
    display: grid;
  }
}

.route-page {
  min-height: 100svh;
  padding: clamp(1.5rem, 4vw, 3rem);
  padding-top: clamp(2rem, 5vw, 4rem);
  background: #fff;
}

.route-brand {
  display: inline-block;
  width: min(220px, 55vw);
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.route-hero {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  max-width: var(--content-max);
  margin: 0 auto;
}

.route-hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 300;
  line-height: 1.08;
}

.route-hero address {
  font-style: normal;
  color: #565b61;
  font-weight: 700;
  margin: 1.4rem 0;
}

.route-hero iframe {
  width: 100%;
  min-height: 520px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.route-actions {
  display: grid;
  gap: .7rem;
  max-width: 340px;
}

.route-actions a {
  min-height: 42px;
  border-radius: 6px;
  background: var(--accent);
  color: #071116;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .78rem;
}

.route-info {
  max-width: var(--content-max);
  margin: clamp(2rem, 5vw, 4rem) auto 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.route-info article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.2rem;
}

.contact-layout {
  max-width: var(--content-max);
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: minmax(210px, 30fr) minmax(0, 70fr);
  gap: clamp(1.6rem, 3.4vw, 3.6rem);
  align-items: start;
}

.contact-page {
  background:
    linear-gradient(180deg, #fff 0%, #f6fbfe 100%);
}

.contact-intro {
  position: sticky;
  top: 140px;
  padding-top: .35rem;
  border-top: 4px solid var(--accent);
}

.contact-layout h1,
.listing-hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 300;
  line-height: 1.08;
}

.contact-intro h1 {
  max-width: 10ch;
  font-size: clamp(1.8rem, 3.2vw, 3rem);
}

.contact-layout p,
.listing-hero p {
  color: #565b61;
  font-size: 1.08rem;
}

.contact-intro p {
  max-width: 28ch;
  font-size: .98rem;
}

.contact-quick {
  display: grid;
  gap: 0;
  margin-top: clamp(1.2rem, 2.4vw, 2rem);
  border-top: 1px solid rgba(6, 19, 26, .12);
}

.contact-quick a {
  display: grid;
  gap: .28rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(6, 19, 26, .11);
  color: var(--ink);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
  transition: color .18s ease, padding-left .18s ease;
}

.contact-quick a:hover,
.contact-quick a:focus-visible {
  color: var(--accent);
  padding-left: .35rem;
}

.contact-quick span {
  max-width: none;
  color: #565b61;
  font-size: .98rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.35;
  text-align: left;
  text-transform: none;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(1rem, 2.4vw, 1.8rem);
  row-gap: 1.05rem;
  border: 1px solid rgba(6, 19, 26, .12);
  border-radius: 8px;
  padding: clamp(1.25rem, 3vw, 2.2rem);
  background:
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(248,251,253,.98));
  box-shadow: 0 20px 60px rgba(16, 19, 23, .08);
}

.contact-form label {
  display: grid;
  gap: .4rem;
  color: #4a4e55;
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(6, 19, 26, .24);
  border-radius: 0;
  padding: .82rem 0 .7rem;
  color: var(--ink);
  font: inherit;
  font-size: 1rem;
  text-transform: none;
  letter-spacing: 0;
  background: transparent;
  transition: border-color .18s ease, box-shadow .18s ease;
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 0;
  border-color: rgba(var(--accent-rgb), .8);
  box-shadow: 0 8px 0 -7px rgba(var(--accent-rgb), 1);
}

.contact-wide,
.contact-form .consent,
.contact-form button {
  grid-column: 1 / -1;
}

.contact-form .consent {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  color: #565b61;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.45;
  text-transform: none;
}

.contact-form .consent input {
  width: auto;
  margin-top: .2rem;
}

.contact-form button {
  min-height: 48px;
  border: 0;
  border-radius: 6px;
  background: var(--accent);
  color: #071116;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
  cursor: pointer;
  transition: transform .18s ease, filter .18s ease, box-shadow .18s ease;
}

.contact-form button:hover,
.contact-form button:focus-visible {
  transform: translateY(-1px);
  filter: brightness(1.02);
  box-shadow: 0 14px 30px rgba(var(--accent-rgb), .28);
}

.contact-route {
  max-width: var(--content-max);
  padding-top: clamp(2rem, 5vw, 3.5rem);
  border-top: 1px solid rgba(6,19,26,.12);
}

.contact-route h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.5rem, 3vw, 2.6rem);
  font-weight: 300;
  line-height: 1.12;
}

.listing-page {
  min-height: 100svh;
  padding: clamp(1.5rem, 4vw, 3rem);
  padding-top: clamp(1.8rem, 4vw, 3.2rem);
  background: #fff;
}

.listing-hero {
  max-width: var(--content-max);
  margin: 0 auto clamp(1.6rem, 4vw, 3rem);
  border-bottom: 1px solid var(--line);
  padding-bottom: clamp(1rem, 2.5vw, 1.6rem);
}

.listing-hero p {
  max-width: 58ch;
}

.listing-grid {
  max-width: var(--content-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.listing-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  transition: border-color .18s ease, transform .18s ease;
}

.listing-grid article:hover {
  transform: translateY(-2px);
  border-color: rgba(var(--accent-rgb), .7);
}

.listing-grid img {
  width: 100%;
  aspect-ratio: 1.6;
  object-fit: cover;
  filter: saturate(.86);
}

.listing-grid span {
  display: block;
  margin: 1rem 1rem .35rem;
  color: var(--accent);
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .16em;
}

.listing-grid h2 {
  margin: 0 1rem 1.2rem;
  min-height: 3.2rem;
  font-size: 1.04rem;
  line-height: 1.3;
}

.listing-grid article.cms-generated {
  padding-bottom: 0;
}

.listing-card-link {
  display: grid;
  height: 100%;
}

.listing-grid article.cms-generated img {
  width: 100%;
  aspect-ratio: 1.6;
  object-fit: cover;
  filter: saturate(.86);
}

.listing-copy {
  margin: 0 1rem;
  color: #565b61;
  font-size: .92rem;
  line-height: 1.55;
}

.listing-copy p {
  margin: 0 0 .7rem;
}

.listing-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .35rem;
  margin: 1rem;
}

.listing-gallery img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 6px;
}

.listing-grid.is-detail {
  display: block;
}

.project-detail {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: clamp(1.4rem, 4vw, 3rem);
  align-items: start;
  border: 0 !important;
  border-radius: 0 !important;
  overflow: visible !important;
}

.project-detail:hover {
  transform: none !important;
  border-color: transparent !important;
}

.project-detail > img {
  width: 100%;
  aspect-ratio: 1.32;
  object-fit: cover;
  border-radius: 8px;
}

.project-detail h2 {
  margin: .35rem 0 1rem;
  min-height: 0;
  font-size: clamp(1.65rem, 3vw, 2.7rem);
  font-weight: 300;
  line-height: 1.12;
}

.project-detail .listing-copy {
  margin: 0;
  font-size: 1rem;
}

.listing-back {
  grid-column: 1 / -1;
  width: fit-content;
  color: var(--accent);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.project-detail-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .5rem;
  margin-top: 1.2rem;
}

.project-detail-gallery img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 6px;
}

@media (max-width: 780px) {
  .route-hero,
  .route-info,
  .contact-layout,
  .listing-grid,
  .project-detail {
    grid-template-columns: 1fr;
  }

  .contact-intro {
    position: static;
  }

  .contact-intro h1,
  .contact-intro p {
    max-width: none;
  }

  .contact-quick span {
    max-width: none;
  }

  .route-hero iframe {
    min-height: 360px;
  }
}

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