:root {
  color-scheme: dark;
  --bg: #030607;
  --ink: #f6fbff;
  --muted: #a8b8c4;
  --soft: rgba(255, 255, 255, 0.08);
  --line: rgba(255, 255, 255, 0.14);
  --blue: #1f8fff;
  --cyan: #62e8ff;
  --green: #79ffb5;
  --dark-card: rgba(7, 14, 18, 0.72);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  scroll-behavior: auto;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(circle at 50% 0%, rgba(31, 143, 255, 0.22), transparent 38rem),
    linear-gradient(180deg, #010304 0%, #061016 46%, #030607 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

#motion-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -3;
  background: #020506;
}

.noise {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.11;
  mix-blend-mode: screen;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
}

.page-shell {
  position: relative;
  isolation: isolate;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 50;
  width: min(94vw, 1180px);
  height: 68px;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 24px;
  padding: 0 14px 0 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(3, 7, 10, 0.72);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
  transform: translateX(-50%);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-logo {
  width: 158px;
  height: auto;
}

.desktop-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 6px;
}

.desktop-nav a,
.mobile-menu a,
.mobile-menu button {
  color: #dbe7ee;
  padding: 11px 13px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  font-size: 14px;
  font-weight: 700;
  text-align: left;
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.desktop-nav a:hover,
.mobile-menu a:hover,
.mobile-menu button:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 800;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.nav-cta,
.button.primary {
  color: #00111d;
  background: linear-gradient(135deg, var(--cyan), var(--green));
}

.button.ghost {
  color: #f9fcff;
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.07);
}

.nav-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 6px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 0.25s ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: 96px;
  left: 50%;
  z-index: 45;
  display: none;
  width: min(94vw, 520px);
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(3, 7, 10, 0.92);
  transform: translateX(-50%);
  backdrop-filter: blur(18px);
}

.mobile-menu.is-open {
  display: grid;
}

.hero {
  position: relative;
  width: 100%;
  max-width: 100vw;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 150px 24px 76px;
  overflow: hidden;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  mask-image: linear-gradient(180deg, #000 76%, transparent);
}

.hero-orbit {
  position: absolute;
  width: 54vw;
  aspect-ratio: 1;
  border-radius: 999px;
  filter: blur(70px);
  opacity: 0.6;
  will-change: transform;
}

.orbit-one {
  left: -11vw;
  top: 14vh;
  background: rgba(31, 143, 255, 0.75);
}

.orbit-two {
  right: -12vw;
  bottom: 4vh;
  background: rgba(121, 255, 181, 0.46);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(255,255,255,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 70px 70px;
  transform: perspective(800px) rotateX(64deg) translateY(20vh) scale(1.35);
  transform-origin: 50% 100%;
}

.hero-content {
  width: min(1120px, 100%);
  max-width: calc(100vw - 48px);
  text-align: center;
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-kicker.centered {
  text-align: center;
}

.hero-title {
  max-width: 1080px;
  margin: 0 auto;
  font-size: clamp(56px, 9vw, 80px);
  line-height: 0.9;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero-title span {
  display: block;
}

.hero-copy {
  max-width: 760px;
  margin: 30px auto 0;
  color: #d8e3eb;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.35;
  text-wrap: balance;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.hero-meter {
  position: absolute;
  left: 50%;
  bottom: 26px;
  display: grid;
  width: min(92vw, 640px);
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.meter-track {
  height: 2px;
  background: rgba(255, 255, 255, 0.18);
}

.meter-fill {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--green));
}

.intro-band,
.services,
.portfolio,
.quote-section {
  padding: 120px 24px;
}

.intro-grid,
.section-heading,
.access-section,
.showcase-section,
.quote-cta,
.site-footer {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.8fr;
  gap: 72px;
  align-items: start;
}

.section-title,
.section-heading h2,
.sticky-copy h2,
.access-copy h2,
.quote-cta h2,
.quote-modal h2 {
  margin: 0;
  font-size: clamp(36px, 5vw, 65px);
  line-height: 0.98;
  letter-spacing: 0;
  text-wrap: balance;
}

.intro-copy {
  display: grid;
  gap: 20px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.intro-copy p,
.sticky-copy p,
.access-copy p {
  margin: 0;
}

.mission-section {
  min-height: 220vh;
  padding: 0 24px;
}

.sticky-stage {
  position: sticky;
  top: 0;
  min-height: 100svh;
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1fr);
  gap: clamp(44px, 6vw, 96px);
  align-items: center;
}

.sticky-copy {
  width: 100%;
  max-width: 500px;
  min-width: 0;
}

.sticky-copy h2 {
  max-width: 500px;
  font-size: clamp(36px, 4.3vw, 68px);
}

.sticky-copy p:last-child {
  max-width: 460px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.5;
}

.timeline-panel {
  position: relative;
  min-width: 0;
  min-height: 520px;
}

.timeline-panel::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 33px;
  width: 1px;
  background: linear-gradient(transparent, rgba(98, 232, 255, 0.9), transparent);
}

.timeline-card {
  position: absolute;
  left: 0;
  right: 0;
  min-height: 148px;
  padding: 24px 24px 24px 92px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--dark-card);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.timeline-card:nth-child(1) { top: 0; }
.timeline-card:nth-child(2) { top: 182px; }
.timeline-card:nth-child(3) { top: 364px; }

.timeline-card span {
  position: absolute;
  left: 18px;
  top: 22px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: #00111d;
  border-radius: 50%;
  background: var(--cyan);
  font-size: 12px;
  font-weight: 900;
}

.timeline-card h3,
.service-card h3 {
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 1;
}

.timeline-card p,
.service-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.section-heading {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 52px;
  align-items: end;
  margin-bottom: 42px;
}

.section-heading.centered {
  grid-template-columns: 1fr;
  justify-items: center;
  max-width: 920px;
  text-align: center;
}

.section-heading.centered .section-kicker {
  margin-bottom: 0;
}

.service-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.service-card {
  min-height: 330px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  transition: transform 0.35s ease, background 0.35s ease, border-color 0.35s ease;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(98, 232, 255, 0.55);
  background: linear-gradient(180deg, rgba(31,143,255,0.18), rgba(255,255,255,0.04));
}

.service-icon {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  margin-bottom: 54px;
  border: 1px solid rgba(98, 232, 255, 0.32);
  border-radius: 8px;
  color: var(--cyan);
  background: rgba(98, 232, 255, 0.08);
  filter: drop-shadow(0 16px 26px rgba(98, 232, 255, 0.24));
}

.service-icon svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.access-section {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 72px;
  align-items: center;
  min-height: 92svh;
  padding: 110px 24px;
}

.access-visual {
  position: relative;
  min-height: 520px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 48%, rgba(98, 232, 255, 0.2), transparent 36%),
    rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.data-ring {
  position: absolute;
  inset: 64px;
  border: 1px solid rgba(98, 232, 255, 0.36);
  border-radius: 50%;
  box-shadow: inset 0 0 42px rgba(98, 232, 255, 0.16), 0 0 70px rgba(31, 143, 255, 0.22);
}

.data-ring::before,
.data-ring::after {
  content: "";
  position: absolute;
  inset: 58px;
  border: 1px dashed rgba(255, 255, 255, 0.18);
  border-radius: 50%;
}

.data-ring::after {
  inset: 118px;
}

.metric {
  position: absolute;
  width: 160px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(3, 7, 10, 0.78);
  backdrop-filter: blur(14px);
}

.metric:nth-child(2) { left: 32px; top: 42px; }
.metric:nth-child(3) { right: 32px; top: 45%; }
.metric:nth-child(4) { left: 22%; bottom: 36px; }

.metric strong,
.metric span {
  display: block;
}

.metric strong {
  font-size: 22px;
}

.metric span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

.access-copy {
  display: grid;
  gap: 24px;
}

.access-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.portfolio {
  overflow: hidden;
}

.showcase-section {
  padding: 120px 24px;
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 16px;
}

.showcase-card {
  position: relative;
  min-height: 320px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.showcase-card.large {
  grid-row: span 2;
  min-height: 660px;
}

.showcase-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.82;
  transform: scale(1.02);
  transition: transform 0.55s ease, opacity 0.55s ease;
}

.showcase-card:hover img {
  opacity: 1;
  transform: scale(1.06);
}

.showcase-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(2, 5, 6, 0.82));
}

.showcase-card div {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  z-index: 1;
}

.showcase-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.showcase-card h3 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(22px, 2.4vw, 38px);
  line-height: 1.02;
  text-wrap: balance;
}

.portfolio-track {
  display: flex;
  gap: 16px;
  width: max-content;
  will-change: transform;
}

.portfolio-track figure {
  position: relative;
  width: min(72vw, 470px);
  aspect-ratio: 1.28;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.portfolio-track figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(1, 5, 7, 0.84));
  opacity: 0;
  transition: opacity 0.35s ease;
}

.portfolio-track img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.portfolio-track figure:hover img {
  transform: scale(1.04);
}

.portfolio-track figure:hover::after,
.portfolio-track figure:hover figcaption {
  opacity: 1;
}

.portfolio-track figcaption {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;
  z-index: 1;
  color: #fff;
  opacity: 0;
  font-size: clamp(20px, 2vw, 30px);
  font-weight: 900;
  line-height: 1;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.42);
  transition: opacity 0.35s ease, transform 0.35s ease;
  transform: translateY(8px);
}

.portfolio-track figure:hover figcaption {
  transform: translateY(0);
}

.quote-section {
  padding-bottom: 80px;
}

.quote-cta {
  display: flex;
  min-height: 520px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  text-align: center;
}

.quote-cta h2 {
  max-width: 940px;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.68);
  backdrop-filter: blur(18px);
}

.modal-backdrop[hidden] {
  display: none;
}

.quote-modal {
  position: relative;
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 34px;
  width: min(980px, 100%);
  max-height: min(860px, 92svh);
  padding: 34px;
  border: 1px solid rgba(98, 232, 255, 0.34);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 0 0, rgba(98, 232, 255, 0.16), transparent 34rem),
    rgba(4, 9, 12, 0.94);
  box-shadow: 0 32px 120px rgba(0, 0, 0, 0.52);
  overflow: auto;
}

.quote-modal-copy {
  align-self: center;
}

.quote-modal-copy p:last-child {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.5;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
}

.modal-close::before,
.modal-close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  background: #fff;
}

.modal-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.modal-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.quote-form {
  display: grid;
  gap: 12px;
}

.quote-form label {
  color: #dbe7ee;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: -4px;
}

.quote-form input,
.quote-form textarea {
  width: 100%;
  min-height: 48px;
  color: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  outline: 0;
  background: rgba(0, 0, 0, 0.25);
  padding: 12px 14px;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.quote-form textarea {
  min-height: 116px;
  resize: vertical;
}

.quote-form input:focus,
.quote-form textarea:focus {
  border-color: var(--cyan);
  background: rgba(0, 0, 0, 0.38);
}

.quote-form input.erro,
.quote-form textarea.erro {
  border-color: #ff6b6b;
  background: rgba(255, 63, 94, 0.12);
  box-shadow: 0 0 0 1px rgba(255, 107, 107, 0.28), 0 0 30px rgba(255, 63, 94, 0.08);
}

.field-error {
  display: block;
  margin-top: -2px;
  color: #ffb5bd;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
}

.form-response-backdrop {
  position: fixed;
  inset: 0;
  z-index: 140;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(4, 8, 14, 0.68);
  backdrop-filter: blur(18px);
  opacity: 0;
  transition: opacity 0.22s ease;
}

.form-response-backdrop[hidden] {
  display: none;
}

.form-response-backdrop.is-open {
  opacity: 1;
}

.form-response-dialog {
  position: relative;
  display: grid;
  width: min(520px, 100%);
  grid-template-columns: 64px 1fr;
  gap: 20px;
  padding: 28px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(12, 21, 32, 0.98), rgba(2, 8, 16, 0.96));
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.38);
  transform: translateY(16px) scale(0.97);
  transition: transform 0.22s ease;
}

.form-response-backdrop.is-open .form-response-dialog {
  transform: translateY(0) scale(1);
}

.form-response-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.form-response-close::before,
.form-response-close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 2px;
  background: #fff;
}

.form-response-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.form-response-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.form-response-icon {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.form-response-icon::before {
  content: "";
  display: block;
  width: 24px;
  height: 12px;
  margin: 22px auto 0;
  border-bottom: 3px solid currentColor;
  border-left: 3px solid currentColor;
  transform: rotate(-45deg);
}

.form-response-backdrop.is-success .form-response-icon {
  color: #69f4c5;
  background: rgba(51, 214, 159, 0.12);
}

.form-response-backdrop.is-error .form-response-icon {
  color: #ff7a8b;
  background: rgba(255, 63, 94, 0.12);
}

.form-response-backdrop.is-error .form-response-icon::before {
  width: 24px;
  height: 3px;
  margin-top: 30px;
  border: 0;
  background: currentColor;
  transform: rotate(45deg);
  box-shadow: 0 0 0 0 currentColor;
}

.form-response-backdrop.is-error .form-response-icon::after {
  content: "";
  display: block;
  width: 24px;
  height: 3px;
  margin: -3px auto 0;
  background: currentColor;
  transform: rotate(-45deg);
}

.form-response-kicker {
  margin: 0 0 8px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.form-response-content h3 {
  margin: 0;
  font-size: clamp(25px, 4vw, 38px);
  line-height: 1;
}

.form-response-content p[data-form-response-message] {
  margin: 14px 0 0;
  color: #d7e3ea;
  font-size: 16px;
  line-height: 1.55;
}

.response-errors {
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.response-errors summary {
  padding: 13px 14px;
  color: #fff;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
}

.response-errors ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0 14px 14px 30px;
  color: #f4c6cc;
  font-size: 14px;
  line-height: 1.45;
}

.form-message {
  display: none;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: #fff;
  font-size: 14px;
  line-height: 1.4;
}

.form-message.success {
  border-color: rgba(121, 255, 181, 0.38);
  background: rgba(121, 255, 181, 0.12);
}

.form-message.error {
  border-color: rgba(255, 107, 107, 0.42);
  background: rgba(255, 107, 107, 0.12);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: end;
  padding: 48px 24px 64px;
  color: var(--muted);
}

.site-footer img {
  width: 146px;
  margin-bottom: 18px;
}

.site-footer p,
.site-footer address {
  margin: 0;
  font-style: normal;
  line-height: 1.55;
}

.footer-contact {
  display: grid;
  justify-items: end;
  gap: 10px;
  line-height: 1.55;
}

.footer-contact a {
  color: inherit;
  transition: color 0.25s ease;
}

.footer-contact a:hover {
  color: #fff;
}

.footer-contact > span {
  color: rgba(255, 255, 255, 0.64);
}

.footer-phones {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer-phones a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-phones svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .desktop-nav,
  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .intro-grid,
  .sticky-stage,
  .section-heading,
  .access-section,
  .showcase-grid,
  .quote-modal,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-contact {
    justify-items: start;
  }

  .footer-phones {
    justify-content: flex-start;
  }

  .mission-section {
    min-height: auto;
    padding: 90px 24px;
  }

  .sticky-stage {
    position: relative;
    min-height: auto;
    gap: 44px;
  }

  .sticky-copy,
  .sticky-copy h2,
  .sticky-copy p:last-child {
    max-width: none;
  }

  .timeline-panel {
    min-height: auto;
    display: grid;
    gap: 14px;
  }

  .timeline-card,
  .timeline-card:nth-child(1),
  .timeline-card:nth-child(2),
  .timeline-card:nth-child(3) {
    position: relative;
    top: auto;
  }

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

  .access-section {
    min-height: auto;
  }

  .showcase-card.large {
    min-height: 440px;
  }
}

@media (max-width: 620px) {
  .site-header {
    top: 10px;
    height: 60px;
    padding-left: 14px;
  }

  .brand-logo {
    width: 128px;
  }

  .hero {
    padding: 120px 18px 92px;
  }

  .hero-title {
    font-size: clamp(34px, 10.6vw, 42px);
    line-height: 0.94;
  }

  .eyebrow {
    max-width: 300px;
    margin-inline: auto;
    font-size: 11px;
    line-height: 1.35;
  }

  .hero-copy {
    font-size: 17px;
    max-width: 330px;
  }

  .hero-actions {
    width: 100%;
    max-width: 280px;
    margin-inline: auto;
  }

  .hero-actions .button {
    width: 100%;
  }

  .intro-band,
  .services,
  .showcase-section,
  .portfolio,
  .quote-section {
    padding: 82px 18px;
  }

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

  .service-card {
    min-height: 280px;
  }

  .access-section {
    padding: 82px 18px;
  }

  .access-visual {
    min-height: 390px;
  }

  .data-ring {
    inset: 46px;
  }

  .metric {
    width: 138px;
  }

  .quote-modal {
    padding: 24px;
  }

  .modal-backdrop {
    padding: 12px;
  }

  .quote-modal h2 {
    font-size: 34px;
  }

  .form-response-dialog {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 24px;
  }

  .form-response-icon {
    width: 54px;
    height: 54px;
  }

  .form-response-icon::before {
    margin-top: 18px;
  }

  .form-response-backdrop.is-error .form-response-icon::before {
    margin-top: 25px;
  }

  .showcase-card,
  .showcase-card.large {
    min-height: 340px;
  }

  .site-footer {
    padding-inline: 18px;
  }
}

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