:root {
  color-scheme: dark;
  --bg: #04070c;
  --bg-soft: #07111d;
  --navy: #0d1b2a;
  --navy-2: #102235;
  --surface: rgba(9, 22, 35, 0.76);
  --surface-strong: rgba(13, 27, 42, 0.92);
  --surface-light: rgba(24, 44, 64, 0.72);
  --text: #f7fbff;
  --muted: #aebbc6;
  --muted-strong: #dce7ef;
  --blue: #1e88e5;
  --blue-light: #64b5f6;
  --orange: #ff8a00;
  --gold: #ffb74d;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.24);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
  --glow-blue: 0 0 34px rgba(30, 136, 229, 0.26);
  --glow-orange: 0 0 34px rgba(255, 138, 0, 0.18);
  --container: 1160px;
  --radius: 8px;
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  background:
    linear-gradient(145deg, rgba(30, 136, 229, 0.12), transparent 32%),
    linear-gradient(315deg, rgba(255, 138, 0, 0.1), transparent 44%),
    var(--bg);
  font-family: Sora, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  isolation: isolate;
}

body::before {
  content: "";
  position: fixed;
  inset: -30% -20%;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(118deg, transparent 0%, rgba(30, 136, 229, 0.12) 34%, transparent 62%),
    linear-gradient(300deg, transparent 8%, rgba(255, 138, 0, 0.09) 42%, transparent 70%);
  opacity: 0.86;
  transform: translate3d(-2%, 0, 0);
  animation: ambient-shift 18s ease-in-out infinite alternate;
}

body.modal-open,
body.nav-open {
  overflow: hidden;
}

.cursor-glow {
  position: fixed;
  left: 0;
  top: 0;
  z-index: -1;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(30, 136, 229, 0.14), rgba(255, 138, 0, 0.055) 42%, transparent 68%);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(calc(var(--cursor-x, 50vw) - 50%), calc(var(--cursor-y, 50vh) - 50%), 0);
  transition: opacity 300ms ease;
}

body.has-cursor-glow .cursor-glow {
  opacity: 1;
}

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

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

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

button {
  cursor: pointer;
}

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

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 200;
  padding: 0.7rem 0.9rem;
  border-radius: var(--radius);
  color: var(--text);
  background: var(--blue);
  box-shadow: var(--shadow);
  transform: translateY(-140%);
  transition: transform 180ms ease;
}

.skip-link:focus-visible {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.07);
}

.scroll-progress::after {
  content: "";
  display: block;
  width: calc(var(--progress, 0) * 100%);
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--blue-light), var(--orange));
  box-shadow: 0 0 24px rgba(30, 136, 229, 0.44);
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 80;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 1rem;
  min-height: var(--header-height);
  padding: 0.82rem 1.25rem;
  transition: min-height 260ms ease, padding 260ms ease, background-color 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.site-header.is-scrolled,
.nav-open .site-header {
  min-height: 66px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(5, 10, 17, 0.78);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
}

.logo-badge {
  position: relative;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  padding: 2px;
  overflow: hidden;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), rgba(255, 255, 255, 0.22), var(--orange));
  box-shadow: var(--glow-blue), var(--glow-orange), 0 14px 36px rgba(0, 0, 0, 0.38);
}

.logo-badge::after {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14);
  pointer-events: none;
}

.logo-badge img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  background: var(--navy);
}

.logo-badge-header {
  width: 48px;
  height: 48px;
  transition: width 260ms ease, height 260ms ease;
}

.site-header.is-scrolled .logo-badge-header {
  width: 42px;
  height: 42px;
}

.logo-badge-hero {
  width: 150px;
  height: 150px;
  margin-bottom: 1.25rem;
}

.logo-badge-footer {
  width: 72px;
  height: 72px;
}

.logo-badge-contact {
  width: 62px;
  height: 62px;
  margin-bottom: 1.1rem;
}

.logo-badge-modal {
  width: 58px;
  height: 58px;
  margin-bottom: 1rem;
}

.site-nav {
  position: fixed;
  top: calc(var(--header-height) + 10px);
  left: 1.25rem;
  right: 1.25rem;
  display: grid;
  gap: 0.35rem;
  padding: 0.8rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(7, 17, 29, 0.96);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity 240ms ease, transform 240ms ease;
  backdrop-filter: blur(18px);
}

.nav-open .site-nav {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.site-nav a {
  position: relative;
  padding: 0.85rem 0.9rem;
  border-radius: var(--radius);
  color: var(--muted-strong);
  transition: color 180ms ease, background-color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
  color: var(--text);
  background: rgba(30, 136, 229, 0.13);
}

.site-nav a.is-active::after {
  content: "";
  position: absolute;
  left: 0.9rem;
  right: 0.9rem;
  bottom: 0.42rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue-light), var(--orange));
}

.nav-toggle {
  position: relative;
  display: grid;
  place-items: center;
  justify-self: end;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  color: var(--text);
  background: rgba(255, 255, 255, 0.07);
  transition: border-color 180ms ease, background-color 180ms ease;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  border-color: rgba(30, 136, 229, 0.5);
  background: rgba(30, 136, 229, 0.14);
}

.nav-toggle span[aria-hidden="true"] {
  position: absolute;
  width: 18px;
  height: 2px;
  border-radius: 10px;
  background: currentColor;
  transition: transform 220ms ease;
}

.nav-toggle span[aria-hidden="true"]:first-of-type {
  transform: translateY(-4px);
}

.nav-toggle span[aria-hidden="true"]:last-of-type {
  transform: translateY(4px);
}

.nav-toggle[aria-expanded="true"] span[aria-hidden="true"]:first-of-type {
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span[aria-hidden="true"]:last-of-type {
  transform: rotate(-45deg);
}

.nav-cta {
  display: none;
}

.language-switcher {
  align-items: center;
  gap: 0.35rem;
}

.language-switcher button {
  min-height: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--muted-strong);
  background: rgba(255, 255, 255, 0.06);
  font-weight: 900;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: 8rem 1.25rem 4.5rem;
  overflow: hidden;
}

.hero-media,
.hero-fallback,
.hero-video,
.hero-overlay,
.hero-glow {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -1;
  overflow: hidden;
  background: #070b11;
}

.hero-fallback {
  background-image:
    linear-gradient(120deg, rgba(5, 8, 13, 0.22), rgba(5, 8, 13, 0.74)),
    url("assets/hero/hero-poster.jpg"),
    linear-gradient(135deg, rgba(30, 136, 229, 0.18), rgba(255, 138, 0, 0.12));
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: translate3d(0, var(--hero-shift, 0px), 0) scale(var(--hero-scale, 1.04));
  transition: opacity 600ms ease, transform 120ms linear;
  animation: hero-zoom 18s ease-in-out infinite alternate;
}

.hero-video.is-ready {
  opacity: 0.9;
}

.hero-video.is-missing {
  opacity: 0;
}

.hero-overlay {
  background:
    linear-gradient(88deg, rgba(4, 7, 12, 0.96) 0%, rgba(4, 7, 12, 0.74) 48%, rgba(4, 7, 12, 0.34) 100%),
    linear-gradient(180deg, rgba(4, 7, 12, 0.48) 0%, rgba(4, 7, 12, 0.28) 46%, rgba(4, 7, 12, 0.96) 100%);
}

.hero-glow {
  background:
    linear-gradient(120deg, transparent 12%, rgba(30, 136, 229, 0.16) 42%, transparent 68%),
    linear-gradient(300deg, transparent 24%, rgba(255, 138, 0, 0.13) 52%, transparent 78%);
  mix-blend-mode: screen;
  opacity: 0.8;
  transform: translate3d(-4%, 0, 0);
  animation: hero-glow 13s ease-in-out infinite alternate;
}

.hero-content {
  width: min(var(--container), 100%);
  margin-inline: auto;
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--blue-light);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 960px;
  margin: 0;
  font-size: clamp(2.8rem, 8.6vw, 5.35rem);
  line-height: 0.98;
}

.hero-subtitle {
  max-width: 660px;
  margin: 1.2rem 0 0;
  color: var(--muted-strong);
  font-size: clamp(1.03rem, 2vw, 1.24rem);
}

.hero-actions {
  display: grid;
  gap: 0.8rem;
  margin-top: 2rem;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.9rem 1.25rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  overflow: hidden;
  font-weight: 900;
  text-align: center;
  transition: transform 200ms ease, border-color 200ms ease, background-color 200ms ease, box-shadow 200ms ease;
}

.button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  opacity: 0;
  transform: translateX(-60%);
  transition: opacity 220ms ease, transform 520ms ease;
}

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

.button:disabled {
  cursor: not-allowed;
  opacity: 0.58;
  transform: none;
}

.button:hover::after,
.button:focus-visible::after {
  opacity: 1;
  transform: translateX(60%);
}

.button-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  box-shadow: 0 16px 42px rgba(30, 136, 229, 0.3);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 20px 54px rgba(30, 136, 229, 0.42);
}

.button-secondary {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(255, 138, 0, 0.62);
  background: rgba(255, 255, 255, 0.13);
  box-shadow: 0 14px 40px rgba(255, 138, 0, 0.15);
}

.usp-grid {
  display: grid;
  gap: 0.65rem;
  max-width: 900px;
  margin-top: 2.2rem;
}

.usp-grid span {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem;
  border: 1px solid rgba(100, 181, 246, 0.24);
  border-radius: var(--radius);
  color: var(--muted-strong);
  background: rgba(13, 27, 42, 0.58);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  text-align: center;
  font-weight: 800;
}

.showreel-strip {
  position: relative;
  padding: 4.2rem 0 4.8rem;
  margin-top: 0;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(4, 7, 12, 0), rgba(4, 7, 12, 0.94) 42%, var(--bg));
}

.showreel-intro {
  position: relative;
  width: min(760px, calc(100% - 40px));
  margin: 0 auto 1.7rem;
  padding-bottom: 1.25rem;
  text-align: center;
}

.showreel-intro::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(180px, 42vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(100, 181, 246, 0.56), rgba(255, 138, 0, 0.42), transparent);
  box-shadow: 0 0 30px rgba(30, 136, 229, 0.28);
  transform: translateX(-50%);
}

.showreel-intro span {
  color: var(--blue-light);
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
}

.showreel-intro p {
  margin: 0.45rem auto 0;
  color: var(--muted);
}

.showreel-gallery {
  width: min(1120px, calc(100% - 40px));
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem;
  margin-inline: auto;
  align-items: stretch;
}

.showreel-frame {
  position: relative;
  aspect-ratio: 16 / 11;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: #07111d;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.34);
  transform: translateZ(0);
  transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.showreel-frame:hover {
  border-color: rgba(100, 181, 246, 0.42);
  box-shadow: 0 30px 82px rgba(0, 0, 0, 0.42), 0 0 42px rgba(30, 136, 229, 0.13);
  transform: translateY(-4px);
}

.showreel-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.showreel-frame:hover img {
  transform: scale(1.055);
}

.showreel-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 7, 12, 0.08), rgba(4, 7, 12, 0.74)),
    linear-gradient(90deg, rgba(30, 136, 229, 0.1), transparent 42%, rgba(255, 138, 0, 0.09));
}

.showreel-frame figcaption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 2;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
}

.showreel-frame span {
  color: var(--blue-light);
  font-size: 0.78rem;
  font-weight: 950;
}

.showreel-frame strong {
  max-width: 180px;
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.15;
  text-align: right;
}

.section {
  position: relative;
  padding: 5rem 0;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 2rem;
}

.section-heading-split {
  display: grid;
  gap: 1rem;
  max-width: none;
}

.section-heading h2,
.about-copy h2,
.contact-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 5.5vw, 3.15rem);
  line-height: 1.08;
}

.section-heading p:not(.eyebrow),
.about-copy p:not(.eyebrow),
.contact-copy p:not(.eyebrow) {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 1rem;
}

.projects-section {
  background:
    linear-gradient(180deg, var(--bg), var(--bg-soft));
}

.project-filters {
  display: flex;
  gap: 0.55rem;
  padding: 0.35rem;
  margin: -0.3rem 0 1.5rem;
  overflow-x: auto;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  scrollbar-width: none;
}

.project-filters::-webkit-scrollbar {
  display: none;
}

.category-links {
  display: grid;
  gap: 0.75rem;
  margin: -0.2rem 0 0;
}

.category-links a,
.category-switcher a {
  position: relative;
  display: grid;
  gap: 0.2rem;
  padding: 0.95rem 1rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  color: var(--text);
  background:
    linear-gradient(135deg, rgba(30, 136, 229, 0.12), rgba(255, 138, 0, 0.05)),
    rgba(255, 255, 255, 0.035);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.category-links a::before,
.category-switcher a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(30, 136, 229, 0.24), rgba(255, 138, 0, 0.2));
  opacity: 0;
  transition: opacity 180ms ease;
}

.category-links span,
.category-switcher span {
  position: relative;
  color: var(--blue-light);
  font-weight: 950;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.category-links strong,
.category-switcher strong {
  position: relative;
  color: var(--muted-strong);
  font-size: 0.92rem;
  line-height: 1.45;
}

.category-links a:hover,
.category-links a:focus-visible,
.category-switcher a:hover,
.category-switcher a:focus-visible,
.category-switcher a.is-active {
  border-color: rgba(100, 181, 246, 0.38);
  background-color: rgba(30, 136, 229, 0.06);
  box-shadow: 0 18px 42px rgba(30, 136, 229, 0.12), 0 0 32px rgba(255, 138, 0, 0.06);
  transform: translateY(-3px);
}

.category-links a:hover::before,
.category-links a:focus-visible::before,
.category-switcher a:hover::before,
.category-switcher a:focus-visible::before,
.category-switcher a.is-active::before {
  opacity: 0.34;
}

.filter-button {
  min-height: 40px;
  padding: 0.62rem 0.9rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  color: var(--muted-strong);
  background: transparent;
  white-space: nowrap;
  font-weight: 850;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.filter-button:hover,
.filter-button:focus-visible,
.filter-button.is-active {
  color: var(--text);
  border-color: rgba(100, 181, 246, 0.34);
  background: rgba(30, 136, 229, 0.16);
  box-shadow: 0 10px 28px rgba(30, 136, 229, 0.16);
}

.project-grid,
.services-grid,
.trust-card-grid {
  display: grid;
  gap: 1rem;
}

.project-card,
.service-card,
.process-step,
.trust-card,
.contact-form {
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent),
    var(--surface);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
}

.project-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: opacity 220ms ease, transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.project-card.is-hidden {
  display: none;
}

.project-card:hover,
.project-card:focus-within {
  border-color: rgba(100, 181, 246, 0.46);
  box-shadow: var(--shadow), 0 0 42px rgba(30, 136, 229, 0.15), 0 0 44px rgba(255, 138, 0, 0.08);
  transform: translateY(-6px);
}

.project-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(30, 136, 229, 0.22), rgba(255, 138, 0, 0.12)),
    #0b1420;
}

.project-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms ease, opacity 240ms ease;
}

.project-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 7, 12, 0.05), rgba(4, 7, 12, 0.76));
  opacity: 0.88;
  pointer-events: none;
}

.project-card:hover .project-media img,
.project-card:focus-within .project-media img {
  transform: scale(1.065);
}

.project-badge,
.soon-label {
  position: absolute;
  z-index: 4;
  left: 0.85rem;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0.35rem 0.65rem;
  border-radius: var(--radius);
  pointer-events: none;
  font-size: 0.78rem;
  font-weight: 900;
}

.project-badge {
  top: 0.85rem;
  color: var(--text);
  border: 1px solid rgba(100, 181, 246, 0.44);
  background: rgba(13, 27, 42, 0.74);
  backdrop-filter: blur(14px);
}

.soon-label {
  top: 3.35rem;
  color: #101010;
  border: 1px solid rgba(255, 138, 0, 0.58);
  background: linear-gradient(135deg, var(--orange), var(--gold));
}

.project-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  place-items: center;
  gap: 0.55rem;
  width: 100%;
  border: 0;
  color: var(--text);
  background: rgba(4, 7, 12, 0.42);
  opacity: 0;
  transition: opacity 220ms ease;
}

.project-card:hover .project-overlay,
.project-card:focus-within .project-overlay {
  opacity: 1;
}

.play-symbol {
  position: relative;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(30, 136, 229, 0.34), rgba(255, 138, 0, 0.2)),
    rgba(255, 255, 255, 0.09);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(12px);
}

.play-symbol::before {
  content: "";
  position: absolute;
  left: 23px;
  top: 19px;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 14px solid currentColor;
}

.project-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.15rem;
}

.project-content h3,
.service-card h3,
.process-step h3,
.trust-card h3 {
  margin: 0;
  font-size: 1.12rem;
}

.project-content p,
.service-card p,
.process-step p,
.trust-card p {
  margin: 0.55rem 0 0;
  color: var(--muted);
}

.project-link {
  margin-top: auto;
  padding: 1rem 0 0;
  border: 0;
  color: var(--blue-light);
  background: transparent;
  font-weight: 900;
}

.project-location {
  display: block;
  margin-top: 0.3rem;
  color: var(--blue-light);
  font-size: 0.82rem;
  font-weight: 900;
}

.project-empty {
  margin: 1.2rem 0 0;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.045);
  text-align: center;
}

.services-section {
  background:
    linear-gradient(180deg, var(--bg-soft), var(--bg));
}

.service-card,
.trust-card {
  padding: 1.25rem;
  transition: transform 220ms ease, border-color 220ms ease, background-color 220ms ease, box-shadow 220ms ease;
}

.service-card:hover,
.service-card:focus-within,
.trust-card:hover,
.trust-card:focus-within {
  border-color: rgba(100, 181, 246, 0.44);
  background:
    linear-gradient(180deg, rgba(30, 136, 229, 0.1), transparent),
    var(--surface-strong);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.26), 0 0 38px rgba(30, 136, 229, 0.12);
  transform: translateY(-5px);
}

.service-icon {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  margin-bottom: 1rem;
  border: 1px solid rgba(30, 136, 229, 0.42);
  border-radius: var(--radius);
  color: var(--blue-light);
  background: rgba(30, 136, 229, 0.12);
}

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

.service-card strong {
  display: block;
  margin-top: 1rem;
  color: var(--text);
  font-size: 0.92rem;
}

.about-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent),
    var(--bg);
}

.about-layout,
.contact-layout {
  display: grid;
  gap: 2rem;
}

.about-copy,
.contact-copy {
  align-self: center;
}

.value-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.5rem;
}

.value-list span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0.5rem 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  color: var(--muted-strong);
  background: rgba(255, 255, 255, 0.055);
  font-weight: 850;
}

.style-values {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  padding: 0;
  margin: 1.5rem 0 0;
  list-style: none;
}

.style-values li {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.75rem;
  border: 1px solid rgba(100, 181, 246, 0.2);
  border-radius: var(--radius);
  color: var(--muted-strong);
  background: rgba(255, 255, 255, 0.055);
  font-weight: 850;
}

.about-visual {
  position: relative;
  min-height: 360px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: #0b1420;
  box-shadow: var(--shadow);
}

.about-visual img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.about-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 36%, rgba(4, 7, 12, 0.78));
}

.about-visual figcaption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 2;
  display: grid;
  gap: 0.2rem;
}

.about-visual figcaption span {
  color: var(--blue-light);
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.about-visual figcaption strong {
  font-size: 1.3rem;
}

.process-section {
  background: linear-gradient(180deg, var(--bg-soft), var(--bg));
}

.process-list {
  position: relative;
  display: grid;
  gap: 1rem;
}

.process-list::before {
  content: "";
  position: absolute;
  left: 25px;
  top: 12px;
  bottom: 12px;
  width: 1px;
  background: linear-gradient(180deg, var(--blue), rgba(255, 138, 0, 0.58), transparent);
}

.process-step {
  position: relative;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 1rem;
  padding: 1.15rem;
}

.step-number {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(100, 181, 246, 0.52);
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  box-shadow: 0 12px 32px rgba(30, 136, 229, 0.24);
  font-weight: 950;
}

.trust-section {
  background:
    linear-gradient(145deg, rgba(30, 136, 229, 0.08), transparent 40%),
    linear-gradient(180deg, var(--bg), var(--bg-soft));
}

.trust-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 1rem;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue), var(--orange));
  font-weight: 950;
}

.map-section {
  background:
    linear-gradient(145deg, rgba(30, 136, 229, 0.08), transparent 42%),
    linear-gradient(180deg, var(--bg), var(--bg-soft));
}

.map-shell {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid rgba(100, 181, 246, 0.22);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(30, 136, 229, 0.14), rgba(255, 138, 0, 0.08)),
    #07111d;
  box-shadow: var(--shadow);
}

.flight-map {
  display: none;
  width: 100%;
  min-height: 430px;
  background: #07111d;
}

.map-shell.is-map-ready .flight-map {
  display: block;
}

.map-shell.is-map-ready .map-placeholder {
  display: none;
}

.map-placeholder {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 0.75rem;
  padding: 2rem;
  text-align: center;
  background:
    radial-gradient(circle at 50% 30%, rgba(30, 136, 229, 0.2), transparent 36%),
    rgba(4, 7, 12, 0.78);
}

.map-placeholder strong {
  font-size: 1.35rem;
}

.map-placeholder p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
}

.map-marker {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--orange));
  box-shadow: 0 0 0 6px rgba(30, 136, 229, 0.18), 0 12px 24px rgba(0, 0, 0, 0.28);
}

.map-marker::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ffffff;
}

.leaflet-container {
  font-family: inherit;
  background: #07111d;
}

.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
  color: #0d1b2a;
  background: #ffffff;
}

.map-popup strong {
  display: block;
  margin-bottom: 0.5rem;
}

.map-popup-button {
  min-height: 34px;
  padding: 0.45rem 0.7rem;
  border: 0;
  border-radius: var(--radius);
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  font-weight: 900;
}

.map-popup-muted {
  display: inline-flex;
  color: rgba(13, 27, 42, 0.68);
  font-weight: 800;
}

.contact-section {
  background:
    linear-gradient(135deg, rgba(30, 136, 229, 0.13), transparent 34%),
    linear-gradient(315deg, rgba(255, 138, 0, 0.12), transparent 46%),
    #05080d;
}

.contact-steps {
  display: grid;
  gap: 0.75rem;
  padding: 0;
  margin: 1.5rem 0 0;
  list-style: none;
}

.contact-steps li {
  position: relative;
  padding-left: 1.75rem;
  color: var(--muted-strong);
}

.contact-steps li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-light), var(--orange));
  box-shadow: 0 0 18px rgba(30, 136, 229, 0.34);
}

.contact-links {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.contact-links a {
  color: var(--muted-strong);
  font-weight: 900;
}

.contact-links a:hover,
.contact-links a:focus-visible {
  color: var(--blue-light);
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: 1.15rem;
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
}

.contact-form span {
  color: var(--muted-strong);
  font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  outline: 0;
  padding: 0.92rem 1rem;
  transition: border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form .honeypot {
  display: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(100, 181, 246, 0.76);
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 0 0 4px rgba(30, 136, 229, 0.14);
}

.form-button {
  width: 100%;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.form-status {
  min-height: 1.4rem;
  margin: 0;
  color: var(--blue-light);
  font-size: 0.9rem;
  font-weight: 850;
}

.privacy-check {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 0.7rem;
}

.privacy-check input {
  width: 18px;
  height: 18px;
  margin-top: 0.25rem;
  accent-color: var(--blue);
}

.privacy-check span {
  color: var(--muted);
  font-weight: 700;
}

.privacy-check a {
  color: var(--blue-light);
  font-weight: 900;
}

.credentials-band {
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(4, 7, 12, 0.82);
}

.credentials-band .container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.75rem;
  align-items: center;
  color: var(--muted);
  font-size: 0.9rem;
}

.credentials-band span:not(:last-child)::after {
  content: "·";
  margin-left: 0.75rem;
  color: rgba(100, 181, 246, 0.7);
}

.site-footer {
  padding: 2.8rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: #04070c;
}

.footer-layout {
  display: grid;
  gap: 1.6rem;
}

.footer-brand {
  margin-bottom: 0.9rem;
}

.site-footer p,
.footer-social span {
  margin: 0;
  color: var(--muted);
}

.footer-links,
.footer-social {
  display: grid;
  gap: 0.65rem;
}

.footer-links a,
.footer-social a {
  color: var(--muted-strong);
  font-weight: 900;
}

.footer-links a:hover,
.footer-social a:hover,
.footer-links a:focus-visible,
.footer-social a:focus-visible {
  color: var(--blue-light);
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.74);
  backdrop-filter: blur(10px);
}

.modal-dialog {
  position: relative;
  z-index: 1;
  width: min(940px, 100%);
  max-height: calc(100vh - 2rem);
  overflow: auto;
  padding: 1rem;
  border: 1px solid rgba(100, 181, 246, 0.28);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(30, 136, 229, 0.08), transparent),
    #08111d;
  box-shadow: var(--shadow), 0 0 48px rgba(30, 136, 229, 0.13);
  transform: translateY(18px) scale(0.98);
  transition: transform 220ms ease;
}

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

.modal-close {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

.modal-close span {
  position: absolute;
  width: 18px;
  height: 2px;
  background: currentColor;
}

.modal-close span:first-child {
  transform: rotate(45deg);
}

.modal-close span:last-child {
  transform: rotate(-45deg);
}

.modal-copy {
  padding-right: 3.5rem;
}

.modal-category {
  margin: 0 0 0.5rem;
  color: var(--blue-light);
  font-weight: 900;
  text-transform: uppercase;
}

.modal h2 {
  margin: 0;
  font-size: clamp(1.65rem, 4vw, 2.35rem);
  line-height: 1.1;
}

.modal-copy p:last-child {
  margin: 0.8rem 0 0;
  color: var(--muted);
}

.modal-copy [data-modal-location] {
  margin: 0.65rem 0 0;
  color: var(--blue-light);
  font-weight: 900;
}

.modal-media {
  display: grid;
  place-items: center;
  min-height: 260px;
  margin: 1rem 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(30, 136, 229, 0.2), rgba(255, 138, 0, 0.13)),
    #04070c;
}

.modal-media iframe,
.modal-media video {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

.modal-empty {
  display: grid;
  gap: 0.4rem;
  place-items: center;
  padding: 2rem;
  text-align: center;
}

.modal-empty strong {
  font-size: 1.2rem;
}

.modal-empty p {
  max-width: 460px;
  margin: 0;
  color: var(--muted);
}

.external-placeholder {
  display: grid;
  gap: 0.7rem;
  place-items: center;
  padding: 2rem;
  text-align: center;
}

.external-placeholder p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
}

.modal-contact {
  width: 100%;
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 160;
  display: none;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  width: min(980px, calc(100% - 2rem));
  margin-inline: auto;
  padding: 1rem;
  border: 1px solid rgba(100, 181, 246, 0.24);
  border-radius: var(--radius);
  background: rgba(7, 17, 29, 0.96);
  box-shadow: var(--shadow), 0 0 42px rgba(30, 136, 229, 0.12);
  backdrop-filter: blur(18px);
}

.cookie-banner.is-visible {
  display: grid;
}

.cookie-banner p {
  margin: 0;
  color: var(--muted-strong);
}

.cookie-banner div {
  display: flex;
  gap: 0.7rem;
  align-items: center;
}

.simple-page {
  padding: 8.5rem 0 4rem;
}

.category-page {
  background:
    radial-gradient(circle at 18% 12%, rgba(30, 136, 229, 0.12), transparent 30rem),
    radial-gradient(circle at 82% 22%, rgba(255, 138, 0, 0.08), transparent 28rem),
    linear-gradient(180deg, var(--bg), var(--bg-soft) 45%, var(--bg));
}

.category-hero {
  padding-bottom: 2.2rem;
}

.category-hero-grid {
  display: grid;
  gap: 1.3rem;
  align-items: end;
}

.category-hero h1 {
  margin: 0;
  max-width: 820px;
  font-size: clamp(2.55rem, 7vw, 5rem);
  line-height: 0.98;
}

.category-hero p:not(.eyebrow) {
  margin: 1rem 0 0;
  max-width: 650px;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.12rem);
}

.category-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.category-switcher {
  display: grid;
  gap: 0.75rem;
  margin: 1.7rem 0 2.2rem;
}

.category-note {
  max-width: 780px;
  margin: 0 0 1.4rem;
  color: var(--muted);
}

.simple-page .section-heading {
  margin-bottom: 1.5rem;
}

.content-card {
  display: grid;
  gap: 1.2rem;
  padding: 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent),
    var(--surface);
  box-shadow: var(--shadow);
}

.content-card h2,
.content-card h3,
.content-card p {
  margin: 0;
}

.content-card h2,
.content-card h3 {
  line-height: 1.16;
}

.content-card p,
.content-card li {
  color: var(--muted);
}

.content-card a {
  color: var(--blue-light);
  font-weight: 900;
}

html.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 760ms ease, transform 760ms ease;
}

html.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes hero-zoom {
  from {
    transform: translate3d(0, var(--hero-shift, 0px), 0) scale(var(--hero-scale, 1.04));
  }
  to {
    transform: translate3d(0, var(--hero-shift, 0px), 0) scale(calc(var(--hero-scale, 1.04) + 0.035));
  }
}

@keyframes hero-glow {
  from {
    transform: translate3d(-5%, 0, 0);
  }
  to {
    transform: translate3d(5%, 2%, 0);
  }
}

@keyframes ambient-shift {
  from {
    transform: translate3d(-2%, 0, 0) rotate(0deg);
  }
  to {
    transform: translate3d(2%, 1%, 0) rotate(2deg);
  }
}

@media (min-width: 640px) {
  .hero-actions {
    display: flex;
    align-items: center;
  }

  .button {
    min-width: 190px;
  }

  .usp-grid,
  .services-grid,
  .trust-card-grid,
  .style-values,
  .category-links,
  .category-switcher {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

@media (min-width: 780px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    padding-inline: 2rem;
  }

  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    justify-self: center;
    display: flex;
    align-items: center;
    gap: 0.15rem;
    width: auto;
    padding: 0.25rem;
    border-radius: var(--radius);
    opacity: 1;
    pointer-events: auto;
    transform: none;
    background: rgba(255, 255, 255, 0.055);
    box-shadow: none;
  }

  .site-nav a {
    padding: 0.58rem 0.82rem;
    font-size: 0.94rem;
  }

  .nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0.65rem 0.95rem;
    border: 1px solid rgba(100, 181, 246, 0.5);
    border-radius: var(--radius);
    color: var(--text);
    background: rgba(30, 136, 229, 0.15);
    box-shadow: 0 12px 32px rgba(30, 136, 229, 0.16);
    font-weight: 900;
    transition: background-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
  }

  .nav-cta:hover,
  .nav-cta:focus-visible {
    background: rgba(30, 136, 229, 0.25);
    box-shadow: 0 16px 40px rgba(30, 136, 229, 0.24);
    transform: translateY(-1px);
  }

  .hero {
    padding-inline: 2rem;
  }

  .showreel-strip {
    padding: 5rem 0 4.8rem;
  }

  .showreel-gallery {
    width: min(1120px, calc(100% - 72px));
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
  }

  .showreel-frame {
    aspect-ratio: 4 / 5;
  }

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

  .section {
    padding: 6.2rem 0;
  }

  .section-heading-split {
    grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.72fr);
    align-items: end;
  }

  .about-layout,
  .contact-layout {
    grid-template-columns: minmax(0, 0.86fr) minmax(0, 1fr);
    align-items: center;
  }

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

  .process-list::before {
    left: 8%;
    right: 8%;
    top: 36px;
    bottom: auto;
    width: auto;
    height: 1px;
  }

  .process-step {
    grid-template-columns: 1fr;
    align-content: start;
    min-height: 230px;
  }

  .footer-layout {
    grid-template-columns: 1.2fr 0.7fr 1fr;
    align-items: start;
  }

  .category-hero-grid {
    grid-template-columns: minmax(0, 1fr) auto;
  }
}

@media (min-width: 1040px) {
  .project-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

@media (max-width: 520px) {
  .container {
    width: min(var(--container), calc(100% - 28px));
  }

  .site-header {
    padding-inline: 0.9rem;
  }

  .hero {
    align-items: end;
    padding: 6.8rem 0.9rem 4rem;
  }

  .logo-badge-header {
    width: 44px;
    height: 44px;
  }

  .logo-badge-hero {
    width: 118px;
    height: 118px;
  }

  .hero h1 {
    font-size: clamp(2.48rem, 13vw, 3.25rem);
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .showreel-strip {
    padding: 3.5rem 0 3.8rem;
  }

  .showreel-gallery {
    width: min(340px, calc(100% - 28px));
    grid-template-columns: 1fr;
  }

  .showreel-frame figcaption {
    left: 0.8rem;
    right: 0.8rem;
    bottom: 0.8rem;
  }

  .showreel-frame strong {
    max-width: 160px;
    font-size: 1rem;
  }

  .project-filters {
    margin-inline: -0.1rem;
  }

  .modal-copy {
    padding-right: 2.8rem;
  }

  .style-values {
    grid-template-columns: 1fr;
  }

  .map-shell,
  .flight-map {
    min-height: 360px;
  }

  .cookie-banner {
    grid-template-columns: 1fr;
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
    width: auto;
  }

  .cookie-banner div {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .credentials-band .container {
    display: grid;
  }

  .credentials-band span::after {
    display: none;
  }
}

@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;
  }
}
