:root {
  --ink: #f4f7f2;
  --ink-soft: #c8d1ce;
  --muted: #83918f;
  --night: #05070b;
  --night-blue: #07121d;
  --panel: #0a1823;
  --panel-soft: rgba(10, 24, 35, 0.66);
  --lime: #c9ff3d;
  --lime-deep: #a6eb2b;
  --cyan: #5de6dc;
  --violet: #9078ff;
  --line: rgba(211, 235, 230, 0.13);
  --line-strong: rgba(201, 255, 61, 0.3);
  --shadow: 0 32px 80px rgba(0, 0, 0, 0.28);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 34px;
  --shell: 1380px;
  --gutter: clamp(20px, 4.4vw, 72px);
  --header-height: 84px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
  background: var(--night);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(circle at 78% 3%, rgba(93, 230, 220, 0.09), transparent 23rem),
    radial-gradient(circle at 5% 22%, rgba(201, 255, 61, 0.055), transparent 27rem),
    linear-gradient(145deg, #030509 0%, var(--night-blue) 45%, #050b11 100%);
  font-family: "Avenir Next", "Segoe UI", Helvetica, Arial, sans-serif;
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(170, 206, 205, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(170, 206, 205, 0.05) 1px, transparent 1px);
  background-size: 92px 92px;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 85%);
}

::selection {
  color: var(--night);
  background: var(--lime);
}

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

button,
summary,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
  font: inherit;
}

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

h1,
h2,
h3,
p,
ul,
ol {
  margin-top: 0;
}

.shell {
  width: min(calc(100% - (var(--gutter) * 2)), var(--shell));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 12px 16px;
  color: var(--night);
  background: var(--lime);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 4px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: var(--header-height);
  border-bottom: 1px solid var(--line);
  background: rgba(5, 7, 11, 0.72);
  backdrop-filter: blur(20px) saturate(125%);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(5, 7, 11, 0.9);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
}

.navigation {
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  width: max-content;
  line-height: 1;
  text-transform: uppercase;
}

.brand__mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--night);
  background: var(--lime);
  border-radius: 12px;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: -0.08em;
  box-shadow: 0 0 25px rgba(201, 255, 61, 0.11);
  transform: rotate(-1.5deg);
}

.brand__copy {
  display: grid;
  gap: 5px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.17em;
}

.brand__copy small {
  color: var(--muted);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.25em;
}

.navigation__links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 3vw, 46px);
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.navigation__links a {
  position: relative;
  transition: color 180ms ease;
}

.navigation__links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 1px;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.navigation__links a:hover,
.navigation__links a:focus-visible {
  color: var(--lime);
}

.navigation__links a:hover::after,
.navigation__links a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 54px;
  padding: 0 22px;
  color: var(--night);
  background: var(--lime);
  border: 1px solid var(--lime);
  border-radius: 999px;
  box-shadow: 0 16px 38px rgba(201, 255, 61, 0.1);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.button span {
  font-size: 15px;
  transition: transform 180ms ease;
}

.button:hover {
  color: var(--night);
  background: #d6ff72;
  border-color: #d6ff72;
  box-shadow: 0 20px 48px rgba(201, 255, 61, 0.18);
  transform: translateY(-2px);
}

.button:hover span {
  transform: translate(3px, -3px);
}

.button--small {
  justify-self: end;
  min-height: 42px;
  padding-inline: 18px;
  color: var(--ink);
  background: rgba(201, 255, 61, 0.045);
  border-color: rgba(201, 255, 61, 0.27);
  box-shadow: none;
  font-size: 10px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 16px;
  height: 1px;
  margin: 5px auto;
  background: var(--ink);
  transition: transform 180ms ease;
}

.hero {
  min-height: calc(100svh - var(--header-height));
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(430px, 0.86fr);
  align-items: center;
  gap: clamp(42px, 7vw, 112px);
  padding-block: clamp(56px, 7vw, 110px);
}

.eyebrow,
.section-label {
  color: var(--lime);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}

.eyebrow span {
  width: 30px;
  height: 1px;
  background: currentColor;
  box-shadow: 0 0 12px currentColor;
}

.hero h1 {
  max-width: 870px;
  margin-bottom: 30px;
  font-size: clamp(58px, 6vw, 96px);
  line-height: 0.92;
  font-weight: 620;
  letter-spacing: -0.07em;
  text-wrap: balance;
}

.hero h1 em,
.manifesto h2 em {
  color: var(--lime);
  font-style: normal;
  text-shadow: 0 0 34px rgba(201, 255, 61, 0.085);
}

.hero__intro {
  max-width: 770px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 42px;
}

.hero__intro p {
  max-width: 590px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.76;
}

.round-link {
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  color: var(--night);
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 16px 42px rgba(201, 255, 61, 0.12);
  font-size: 23px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.round-link:hover {
  transform: translateY(4px);
  box-shadow: 0 20px 54px rgba(201, 255, 61, 0.2);
}

.signal {
  min-height: 470px;
  position: relative;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.signal__halo {
  position: absolute;
  z-index: -2;
  border: 1px solid rgba(93, 230, 220, 0.12);
  border-radius: 50%;
}

.signal__halo--one {
  width: 420px;
  height: 420px;
}

.signal__halo--two {
  width: 310px;
  height: 310px;
  border-color: rgba(201, 255, 61, 0.16);
}

.signal__orbit {
  position: absolute;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(131, 145, 143, 0.16);
  border-radius: 50%;
  animation: orbit 58s linear infinite;
}

.signal__orbit span {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 15px rgba(201, 255, 61, 0.56);
}

.signal__orbit span:first-child {
  top: 67px;
  left: 35px;
}

.signal__orbit span:last-child {
  right: 24px;
  bottom: 85px;
  background: var(--cyan);
  box-shadow: 0 0 15px rgba(93, 230, 220, 0.48);
}

.glass-panel {
  border: 1px solid var(--line-strong);
  background: linear-gradient(150deg, rgba(13, 36, 52, 0.91), rgba(5, 15, 25, 0.8));
  box-shadow: var(--shadow), inset 0 1px rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(18px);
}

.signal__card {
  width: min(100%, 345px);
  padding: 27px;
  border-radius: 30px;
  transform: rotate(1.5deg);
}

.signal__status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 72px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.signal__status strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--lime);
  font-size: 8px;
}

.signal__status strong::before {
  content: "";
  width: 7px;
  height: 7px;
  background: currentColor;
  border-radius: 50%;
  box-shadow: 0 0 11px currentColor;
}

.signal__number {
  margin-bottom: 18px;
  font-size: 84px;
  line-height: 0.78;
  font-weight: 720;
  letter-spacing: -0.09em;
}

.signal__caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.signal__caption strong {
  color: var(--lime);
  font-size: 14px;
}

.signal__note {
  position: absolute;
  z-index: 2;
  padding: 14px 17px;
  color: var(--ink-soft);
  background: rgba(7, 19, 31, 0.72);
  border: 1px solid var(--line);
  border-radius: 15px;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(12px);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.signal__note strong {
  margin-right: 5px;
  color: var(--lime);
}

.signal__note--talent {
  top: 42px;
  right: -8px;
}

.signal__note--culture {
  bottom: 42px;
  left: -2px;
}

.manifesto {
  padding-block: clamp(92px, 12vw, 180px);
  border-block: 1px solid var(--line);
  background:
    linear-gradient(120deg, rgba(201, 255, 61, 0.035), transparent 38%),
    rgba(4, 10, 16, 0.58);
}

.manifesto__grid {
  display: grid;
  grid-template-columns: 0.28fr 1fr;
  gap: 50px;
}

.manifesto__copy h2 {
  max-width: 950px;
  margin-bottom: 36px;
  font-size: clamp(44px, 5.3vw, 82px);
  line-height: 0.98;
  font-weight: 590;
  letter-spacing: -0.06em;
  text-wrap: balance;
}

.manifesto__copy > p {
  max-width: 710px;
  margin: 0 0 0 auto;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.manifesto__rail {
  grid-column: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 42px;
  border-block: 1px solid var(--line);
}

.manifesto__rail span {
  padding: 22px;
  color: var(--muted);
  border-right: 1px solid var(--line);
  font-size: 12px;
  line-height: 1.5;
}

.manifesto__rail span:last-child {
  border-right: 0;
}

.manifesto__rail strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 13px;
}

.services,
.method {
  padding-block: clamp(90px, 11vw, 160px);
}

.section-heading {
  display: grid;
  grid-template-columns: 0.32fr minmax(0, 1fr);
  gap: 48px;
  align-items: end;
  margin-bottom: clamp(46px, 7vw, 86px);
}

.section-heading h2 {
  max-width: 880px;
  margin-bottom: 0;
  font-size: clamp(40px, 4.5vw, 68px);
  line-height: 1.01;
  font-weight: 590;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-card {
  min-height: 420px;
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-content: start;
  padding: clamp(26px, 3.6vw, 54px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(12, 29, 43, 0.36), rgba(5, 13, 21, 0.13));
  overflow: hidden;
  transition: background 220ms ease;
}

.service-card::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--lime);
  box-shadow: 0 0 15px rgba(201, 255, 61, 0.6);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 280ms ease;
}

.service-card:hover {
  background: linear-gradient(145deg, rgba(13, 36, 51, 0.64), rgba(6, 17, 27, 0.35));
}

.service-card:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.service-card__index {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.service-card__icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--lime);
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  font-size: 18px;
}

.service-card h3 {
  grid-column: 1 / -1;
  align-self: end;
  margin: clamp(70px, 10vw, 120px) 0 16px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.045em;
}

.service-card p {
  grid-column: 1 / -1;
  max-width: 580px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.72;
}

.service-card ul {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 0;
  padding: 0;
  list-style: none;
}

.service-card li {
  padding: 8px 11px;
  color: var(--ink-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.portfolio {
  padding-block: clamp(90px, 11vw, 160px);
  border-block: 1px solid var(--line);
  background:
    radial-gradient(circle at 85% 20%, rgba(144, 120, 255, 0.07), transparent 28rem),
    rgba(4, 10, 16, 0.6);
}

.section-heading--portfolio {
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.55fr);
}

.section-heading--portfolio .section-label {
  margin-bottom: 20px;
}

.section-heading--portfolio > p {
  max-width: 430px;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.work-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 20px;
}

.work-card {
  display: grid;
  grid-template-rows: minmax(320px, 1fr) auto;
  min-height: 610px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, rgba(11, 29, 43, 0.82), rgba(5, 14, 23, 0.76));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.03);
  overflow: hidden;
  transition: border-color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.work-card--hero {
  grid-row: span 2;
  min-height: 820px;
}

.work-card:not(.work-card--hero) {
  min-height: 400px;
  grid-template-rows: 230px auto;
}

.work-card:hover {
  border-color: rgba(201, 255, 61, 0.27);
  box-shadow: 0 28px 68px rgba(0, 0, 0, 0.19), inset 0 1px rgba(255, 255, 255, 0.04);
  transform: translateY(-4px);
}

.work-card__visual {
  position: relative;
  min-height: 100%;
  overflow: hidden;
}

.visual-campaign {
  background:
    linear-gradient(135deg, transparent 0 49.7%, rgba(201, 255, 61, 0.28) 50%, transparent 50.3%),
    radial-gradient(circle at 74% 31%, rgba(93, 230, 220, 0.25), transparent 12rem),
    linear-gradient(145deg, #0d2634, #06101b 65%);
}

.visual-campaign::before,
.visual-campaign::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.visual-campaign::before {
  top: 16%;
  right: 6%;
  width: 54%;
  aspect-ratio: 1;
  border: 1px solid rgba(93, 230, 220, 0.25);
  box-shadow: 0 0 0 52px rgba(93, 230, 220, 0.025), 0 0 0 104px rgba(201, 255, 61, 0.02);
}

.visual-campaign::after {
  right: 23%;
  bottom: 18%;
  width: 14px;
  height: 14px;
  background: var(--lime);
  box-shadow: 0 0 24px rgba(201, 255, 61, 0.64);
}

.visual-campaign__type {
  position: absolute;
  top: 42px;
  left: 42px;
  z-index: 2;
  font-size: clamp(46px, 5.2vw, 74px);
  line-height: 0.83;
  font-weight: 700;
  letter-spacing: -0.07em;
  text-transform: uppercase;
}

.visual-campaign__frame {
  position: absolute;
  right: 9%;
  bottom: 10%;
  width: 41%;
  aspect-ratio: 0.72;
  border: 1px solid rgba(201, 255, 61, 0.32);
  border-radius: 44% 44% 18px 18px;
  transform: rotate(7deg);
}

.work-card__content {
  position: relative;
  z-index: 2;
  padding: 30px;
  border-top: 1px solid var(--line);
}

.work-card__content > span {
  color: var(--lime);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.work-card__content h3 {
  margin: 12px 0 10px;
  font-size: clamp(25px, 2.6vw, 38px);
  line-height: 1.04;
  font-weight: 600;
  letter-spacing: -0.045em;
}

.work-card__content p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.5;
  text-transform: uppercase;
}

.visual-series {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.visual-series span {
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  color: var(--ink-soft);
  background:
    radial-gradient(circle at 50% 40%, rgba(144, 120, 255, 0.22), transparent 38%),
    linear-gradient(155deg, #142235, #07111b);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.visual-series span::before {
  content: "";
  position: absolute;
  top: 22%;
  left: 50%;
  width: 55%;
  aspect-ratio: 1;
  border: 1px solid rgba(201, 255, 61, 0.2);
  border-radius: 50%;
  transform: translateX(-50%);
}

.visual-series span:nth-child(2) {
  background:
    radial-gradient(circle at 50% 40%, rgba(93, 230, 220, 0.2), transparent 38%),
    linear-gradient(155deg, #0d2833, #07111b);
}

.visual-launch {
  display: grid;
  place-items: center;
  background:
    linear-gradient(90deg, transparent 49.8%, rgba(201, 255, 61, 0.1) 50%, transparent 50.2%),
    linear-gradient(transparent 49.8%, rgba(201, 255, 61, 0.1) 50%, transparent 50.2%),
    radial-gradient(circle at 50% 50%, rgba(201, 255, 61, 0.1), transparent 45%),
    #06111b;
}

.visual-launch__ring {
  position: absolute;
  width: 165px;
  aspect-ratio: 1;
  border: 1px solid rgba(201, 255, 61, 0.28);
  border-radius: 50%;
  box-shadow: inset 0 0 58px rgba(93, 230, 220, 0.05);
}

.visual-launch strong {
  z-index: 1;
  color: var(--ink);
  font-size: 29px;
  line-height: 0.83;
  letter-spacing: -0.055em;
  text-align: center;
}

.portfolio__note {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.06em;
}

.method__steps {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.method__steps li {
  display: grid;
  grid-template-columns: 0.24fr 1fr;
  gap: 42px;
  padding: 36px 0;
  border-bottom: 1px solid var(--line);
}

.method__steps li > span {
  color: var(--lime);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.method__steps div {
  display: grid;
  grid-template-columns: 0.65fr 1fr;
  align-items: center;
  gap: 40px;
}

.method__steps h3 {
  margin-bottom: 0;
  font-size: clamp(25px, 2.5vw, 36px);
  font-weight: 600;
  letter-spacing: -0.04em;
}

.method__steps p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.contact {
  padding-bottom: clamp(90px, 10vw, 150px);
}

.contact__panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 56px;
  padding: clamp(36px, 6vw, 78px);
  border: 1px solid rgba(201, 255, 61, 0.22);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 100% 0, rgba(93, 230, 220, 0.13), transparent 28rem),
    linear-gradient(125deg, rgba(201, 255, 61, 0.1), rgba(8, 24, 36, 0.78) 45%, rgba(144, 120, 255, 0.08));
  overflow: hidden;
}

.contact__panel::after {
  content: "08";
  position: absolute;
  right: -15px;
  bottom: -56px;
  z-index: 0;
  color: rgba(255, 255, 255, 0.025);
  font-size: 260px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.1em;
}

.contact__panel > * {
  position: relative;
  z-index: 1;
}

.contact__panel h2 {
  max-width: 820px;
  margin: 18px 0 18px;
  font-size: clamp(40px, 5vw, 74px);
  line-height: 0.97;
  font-weight: 600;
  letter-spacing: -0.06em;
  text-wrap: balance;
}

.contact__panel p:not(.section-label) {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.contact__actions {
  display: grid;
  justify-items: center;
  gap: 16px;
  min-width: 220px;
}

.contact__phone {
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  transition: color 180ms ease;
}

.contact__phone:hover {
  color: var(--lime);
}

.footer {
  border-top: 1px solid var(--line);
  background: rgba(3, 6, 10, 0.72);
}

.footer__top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 40px;
  padding-block: 46px;
}

.brand--footer .brand__mark {
  width: 46px;
  height: 46px;
}

.footer__top > p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer__links {
  justify-self: end;
  display: flex;
  gap: 22px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer__links a:hover {
  color: var(--lime);
}

.legal {
  border-top: 1px solid var(--line);
}

.legal summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 24px;
  color: var(--ink-soft);
  cursor: pointer;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  list-style: none;
  text-transform: uppercase;
}

.legal summary::-webkit-details-marker {
  display: none;
}

.legal summary span {
  color: var(--lime);
  font-size: 18px;
  transition: transform 180ms ease;
}

.legal[open] summary span {
  transform: rotate(45deg);
}

.legal__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  padding-bottom: 38px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.legal__grid div {
  display: grid;
  gap: 8px;
  padding: 22px;
  background: #06101a;
}

.legal__grid span {
  color: var(--muted);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.legal__grid strong {
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.55;
}

.legal__wide {
  grid-column: 1 / -1;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 24px 30px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 680ms cubic-bezier(0.16, 1, 0.3, 1), transform 680ms cubic-bezier(0.16, 1, 0.3, 1);
}

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

@keyframes orbit {
  to { transform: rotate(360deg); }
}

@media (max-width: 1060px) {
  .navigation {
    grid-template-columns: 1fr auto;
  }

  .navigation__links {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .hero__copy {
    max-width: 900px;
  }

  .signal {
    width: min(100%, 640px);
    margin-inline: auto;
  }

  .manifesto__grid,
  .section-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .manifesto__rail {
    grid-column: 1;
  }

  .section-heading--portfolio {
    grid-template-columns: 1fr;
  }

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

  .contact__actions {
    justify-items: start;
  }
}

@media (max-width: 780px) {
  :root {
    --header-height: 72px;
  }

  .navigation {
    position: relative;
    grid-template-columns: 1fr auto;
  }

  .navigation__cta {
    display: none;
  }

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

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

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

  .navigation__links {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 12px var(--gutter) 22px;
    background: rgba(5, 7, 11, 0.97);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 22px 42px rgba(0, 0, 0, 0.26);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .navigation__links.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .navigation__links a {
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
  }

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

  .navigation__links a::after {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 66px;
  }

  .hero h1 {
    font-size: clamp(48px, 14.7vw, 74px);
  }

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

  .round-link {
    display: none;
  }

  .signal {
    min-height: 390px;
    transform: scale(0.9);
  }

  .manifesto__rail,
  .services__grid,
  .work-grid {
    grid-template-columns: 1fr;
  }

  .manifesto__rail span {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .manifesto__rail span:last-child {
    border-bottom: 0;
  }

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

  .work-card--hero {
    grid-row: auto;
    min-height: 650px;
  }

  .work-card:not(.work-card--hero) {
    min-height: 430px;
  }

  .method__steps li,
  .method__steps div {
    grid-template-columns: 1fr;
    gap: 16px;
  }

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

  .footer__links {
    justify-self: start;
    flex-wrap: wrap;
  }

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

  .legal__wide {
    grid-column: auto;
  }

  .footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .brand__copy {
    display: none;
  }

  .hero {
    padding-top: 52px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero__intro p {
    font-size: 14px;
  }

  .signal {
    left: 50%;
    width: 450px;
    margin-left: -225px;
    transform: scale(0.74);
  }

  .manifesto__copy h2 {
    font-size: 42px;
  }

  .service-card {
    padding: 28px 24px;
  }

  .visual-campaign__type {
    top: 28px;
    left: 28px;
    font-size: 44px;
  }

  .contact__panel {
    padding: 34px 25px;
    border-radius: 24px;
  }

  .contact__actions,
  .contact__actions .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
