:root {
  --black: #050505;
  --black-soft: #0a0b0a;
  --white: #f2f4ef;
  --muted: #a3a8a1;
  --line: rgba(242, 244, 239, .14);
  --green: #79c842;
  --gutter: clamp(18px, 3.2vw, 52px);
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  min-height: 100%;
  background: var(--black);
}

body {
  margin: 0;
  min-height: 100svh;
  overflow-x: hidden;
  background: var(--black);
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

button,
a {
  font: inherit;
}

.studio-shell {
  position: relative;
  isolation: isolate;
  z-index: 10;
  min-height: 100svh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 24px var(--gutter) 22px;
  overflow: hidden;
}

.utility-row,
.studio-footer {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.status-note,
.studio-footer {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
  text-transform: uppercase;
}

.status-note::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 9px;
  background: var(--green);
  box-shadow: 0 0 18px rgba(121, 200, 66, .45);
}

.language-switch {
  display: grid;
  grid-template-columns: 42px 42px;
  flex: 0 0 auto;
  width: 86px;
  height: 40px;
  border: 1px solid var(--line);
  background: rgba(5, 5, 5, .48);
}

.language-switch button {
  min-width: 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
}

.language-switch button[aria-pressed="true"] {
  background: var(--white);
  color: var(--black);
}

.brand-stage {
  position: relative;
  z-index: 10;
  align-self: center;
  width: min(100%, 1180px);
  padding: clamp(54px, 10vh, 108px) 0 clamp(38px, 7vh, 76px);
}

.hero-brand {
  margin: 0;
}

.hero-brand img {
  display: block;
  width: min(72vw, 980px);
  height: auto;
}

.positioning {
  margin-top: clamp(28px, 4vh, 48px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
}

.agency-line,
.launch-line,
.service-rail {
  margin: 0;
}

.agency-line {
  max-width: 760px;
  font-size: 46px;
  font-weight: 400;
  line-height: .98;
}

.launch-line {
  max-width: 250px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.service-rail {
  position: relative;
  z-index: 20;
  margin-top: 26px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
  text-transform: uppercase;
}

.studio-footer a {
  color: var(--white);
  text-transform: none;
  text-decoration: none;
  border-bottom: 1px solid var(--green);
}

html[data-language="en"] .copy-bm,
html[data-language="bm"] .copy-en {
  display: none;
}

.capability-list {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

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

@media (max-width: 720px) {
  .studio-shell {
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .status-note {
    max-width: 150px;
  }

  .brand-stage {
    padding: 72px 0 52px;
  }

  .hero-brand img {
    width: min(90vw, 572px);
  }

  .positioning {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
  }

  .agency-line {
    font-size: 36px;
  }

  .launch-line {
    max-width: 100%;
  }

  .service-rail {
    line-height: 1.6;
  }

  .studio-footer {
    align-items: flex-end;
    font-size: 10px;
  }
}

@media (max-width: 370px) {
  .status-note {
    max-width: 116px;
    font-size: 10px;
  }

  .language-switch {
    grid-template-columns: 39px 39px;
    width: 80px;
  }

  .brand-stage {
    padding-top: 56px;
    padding-bottom: 40px;
  }

  .agency-line {
    font-size: 32px;
  }

  .studio-footer > span {
    max-width: 104px;
  }
}

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