:root {
  --page: #fbfcfe;
  --text: #111318;
  --muted: #667084;
  --line: rgba(18, 23, 33, 0.1);
  --line-soft: rgba(18, 23, 33, 0.06);
  --gold: #c89a45;
  --gold-dark: #b78431;
  --blue-glow: #dce9ff;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 0;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 400;
  color: var(--text);
  background: linear-gradient(180deg, #ffffff 0%, var(--page) 58%, #ffffff 100%);
  letter-spacing: 0;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle at 78% 38%, rgba(220, 233, 255, 0.78), rgba(220, 233, 255, 0) 28%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.72));
}

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

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

.page {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}

.page::after {
  position: absolute;
  right: -18%;
  bottom: -19%;
  z-index: -1;
  width: 56vw;
  height: 42vw;
  content: "";
  background: linear-gradient(135deg, rgba(255, 255, 255, 0), rgba(209, 222, 244, 0.4));
  filter: blur(54px);
  transform: rotate(-8deg);
}

.shell {
  width: min(100% - 96px, 1392px);
  margin-inline: auto;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 104px;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  flex: 0 0 auto;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  color: var(--gold);
  font-family: "Times New Roman", serif;
  font-size: 38px;
  line-height: 1;
}

.brand-name,
h1,
h2,
h3 {
  font-family: "General Sans", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 600;
}

.brand-name {
  font-size: 22px;
  line-height: 1;
  white-space: nowrap;
}

.nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(28px, 4vw, 56px);
  color: #242832;
  font-size: 15px;
  line-height: 1;
}

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

.nav a:hover {
  color: var(--gold-dark);
}

.nav-indicator {
  position: absolute;
  bottom: -26px;
  left: 0;
  width: 0;
  height: 3px;
  border-radius: 999px;
  background: var(--gold);
  opacity: 0;
  pointer-events: none;
  transform: translateX(0);
  transition: none;
  will-change: transform, width;
}

.nav.is-ready .nav-indicator {
  opacity: 1;
  transition:
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1),
    width 420ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 160ms ease;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
}

.nav-cta {
  padding: 0 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 34px rgba(31, 37, 51, 0.05);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.nav-cta:hover {
  border-color: rgba(200, 154, 69, 0.34);
  box-shadow: 0 16px 42px rgba(31, 37, 51, 0.08);
  transform: translateY(-1px);
}

.button {
  min-width: 190px;
  padding: 0 28px;
  border: 1px solid transparent;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.button-primary {
  color: #ffffff;
  background: linear-gradient(180deg, #d1a557 0%, #be8f3e 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.button-primary:hover {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.button-secondary {
  color: #161a22;
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 36px rgba(31, 37, 51, 0.04);
}

.button-secondary:hover {
  border-color: rgba(200, 154, 69, 0.28);
  background: rgba(255, 255, 255, 0.92);
}

.home-main .home-hero {
  display: grid;
  grid-template-columns: minmax(560px, 0.94fr) minmax(520px, 1.06fr);
  align-items: start;
  gap: clamp(56px, 7vw, 116px);
  min-height: auto;
  padding: 48px 0 46px;
}

.home-copy {
  position: relative;
  z-index: 2;
  max-width: 670px;
  padding-top: 8px;
}

.home-copy h1,
.page-title {
  max-width: 780px;
  margin: 0;
  font-size: clamp(42px, 3.85vw, 60px);
  line-height: 1.05;
}

.subhead {
  max-width: 560px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.26vw, 20px);
  line-height: 1.78;
}

.actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 44px;
}

.visual-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 520px;
  margin-right: calc((100vw - min(100vw - 96px, 1392px)) / -2);
}

.visual-wrap::before {
  position: absolute;
  inset: 12% 4% 14% 22%;
  z-index: -1;
  content: "";
  background: radial-gradient(circle at 60% 54%, rgba(220, 233, 255, 0.24), rgba(220, 233, 255, 0) 54%);
  filter: blur(20px);
}

.visual-shell {
  position: absolute;
  top: -18px;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: min(840px, 61vw);
  min-width: 0;
}

.visual-shell::after {
  position: absolute;
  right: 3%;
  bottom: 8%;
  left: 9%;
  height: 92px;
  border-radius: 50%;
  content: "";
  background: rgba(75, 88, 112, 0.11);
  filter: blur(28px);
  pointer-events: none;
}

.hero-visual {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 34px 56px rgba(47, 57, 76, 0.12));
}

.home-main {
  padding-bottom: 12px;
}

.home-section {
  padding: 96px 0;
  border-top: 1px solid var(--line-soft);
}

.home-section-compact {
  padding: 36px 0;
}

.section-top {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(320px, 0.56fr);
  gap: clamp(48px, 8vw, 116px);
  align-items: start;
}

.home-section-title {
  max-width: 760px;
  margin: 0;
  font-size: clamp(34px, 3vw, 48px);
  line-height: 1.08;
}

.home-lead {
  max-width: 430px;
  margin: 46px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
}

.home-cases {
  padding: 90px 0 108px;
  border-top: 1px solid var(--line-soft);
}

.case-preview-list {
  display: grid;
  gap: 0;
  margin-top: 58px;
}

.case-preview {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  padding: clamp(30px, 4vw, 54px);
  border: 1px solid rgba(18, 23, 33, 0.08);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 82% 20%, rgba(220, 233, 255, 0.62), rgba(220, 233, 255, 0) 40%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 253, 0.92));
  box-shadow: 0 26px 74px rgba(36, 43, 58, 0.055);
}

.case-preview::after {
  position: absolute;
  right: 8%;
  bottom: 9%;
  left: 38%;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, rgba(200, 154, 69, 0), rgba(200, 154, 69, 0.26), rgba(200, 154, 69, 0));
}

.case-preview-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--gold-dark);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.case-preview-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 0.56fr) minmax(420px, 1fr);
  gap: clamp(42px, 7vw, 108px);
  align-items: end;
  min-height: 410px;
  margin-top: 32px;
}

.case-preview-copy {
  max-width: 470px;
}

.case-preview-copy h3 {
  margin: 0;
  font-size: clamp(38px, 4.4vw, 70px);
  line-height: 0.98;
}

.case-preview-copy p {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.case-preview-stage {
  position: relative;
  min-height: 360px;
  border-top: 1px solid rgba(18, 23, 33, 0.07);
  border-bottom: 1px solid rgba(18, 23, 33, 0.07);
}

.case-preview-stage::before,
.case-preview-stage::after {
  position: absolute;
  content: "";
}

.case-preview-stage::before {
  inset: 12% 8%;
  background:
    radial-gradient(circle at 56% 44%, rgba(200, 154, 69, 0.12), rgba(200, 154, 69, 0) 32%),
    radial-gradient(circle at 70% 52%, rgba(220, 233, 255, 0.36), rgba(220, 233, 255, 0) 48%);
  filter: blur(12px);
}

.case-preview-stage::after {
  right: 8%;
  bottom: 20%;
  left: 10%;
  height: 1px;
  background: rgba(200, 154, 69, 0.32);
}

.case-preview-logistics .case-preview-stage span {
  position: absolute;
  display: block;
  border: 1px solid rgba(18, 23, 33, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 44px rgba(42, 50, 66, 0.06);
}

.case-preview-logistics .case-preview-stage span:nth-child(1) {
  top: 12%;
  left: 8%;
  width: 42%;
  height: 74px;
}

.case-preview-logistics .case-preview-stage span:nth-child(2) {
  top: 38%;
  left: 22%;
  width: 56%;
  height: 82px;
}

.case-preview-logistics .case-preview-stage span:nth-child(3) {
  right: 6%;
  bottom: 12%;
  width: 38%;
  height: 74px;
}

.case-preview-logistics .case-preview-stage span:nth-child(4) {
  top: 17%;
  right: 14%;
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(200, 154, 69, 0.2), rgba(255, 255, 255, 0.9));
}

.case-preview-logistics {
  z-index: 2;
  margin-bottom: -12px;
  box-shadow:
    0 26px 74px rgba(36, 43, 58, 0.055),
    0 80px 150px rgba(197, 143, 50, 0.045);
}

.case-theme-bridge {
  position: relative;
  z-index: 0;
  min-height: clamp(560px, 58vw, 820px);
  margin-inline: calc((100vw - min(100vw - 96px, 1392px)) / -2);
  overflow: hidden;
  pointer-events: none;
}

.case-theme-bridge::before,
.case-theme-bridge::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.case-theme-bridge-to-network {
  margin-top: -80px;
  margin-bottom: -260px;
  background:
    radial-gradient(circle at 70% 74%, rgba(47, 184, 122, 0.12), rgba(47, 184, 122, 0.035) 24%, rgba(47, 184, 122, 0) 54%),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0) 0%,
      #ffffff 8%,
      #f7f6f1 20%,
      #e7e6df 34%,
      #8d9c90 52%,
      #18241e 72%,
      #030604 91%,
      #000000 100%
    );
}

.case-theme-bridge-to-network::before {
  inset: 36% 4% 10% auto;
  width: min(860px, 60vw);
  background:
    radial-gradient(circle at 50% 50%, rgba(47, 184, 122, 0.16), rgba(47, 184, 122, 0.045) 35%, rgba(47, 184, 122, 0) 70%);
  filter: blur(34px);
  -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0), #000 22%, #000 78%, rgba(0, 0, 0, 0));
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0), #000 22%, #000 78%, rgba(0, 0, 0, 0));
}

.case-theme-bridge-to-network::after {
  inset: 0 0 auto;
  height: 42%;
  background:
    radial-gradient(circle at 24% 12%, rgba(197, 143, 50, 0.09), rgba(197, 143, 50, 0.026) 34%, rgba(197, 143, 50, 0) 68%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0));
}

.case-theme-bridge-from-network {
  margin-top: -210px;
  margin-bottom: -70px;
  background:
    radial-gradient(circle at 34% 18%, rgba(47, 184, 122, 0.1), rgba(47, 184, 122, 0.028) 34%, rgba(47, 184, 122, 0) 66%),
    linear-gradient(
      180deg,
      #000000 0%,
      #030604 15%,
      #0d1913 30%,
      #566a5f 56%,
      #e3ebe4 80%,
      #faf9f5 92%,
      rgba(255, 255, 255, 0) 100%
    );
}

.case-theme-bridge-from-network::before {
  inset: 0 auto 18% 18%;
  width: min(760px, 52vw);
  background:
    radial-gradient(circle at 42% 28%, rgba(37, 211, 140, 0.12), rgba(37, 211, 140, 0.045) 38%, rgba(37, 211, 140, 0) 70%);
  filter: blur(24px);
  opacity: 0.86;
  -webkit-mask-image: linear-gradient(180deg, #000, #000 52%, rgba(0, 0, 0, 0));
  mask-image: linear-gradient(180deg, #000, #000 52%, rgba(0, 0, 0, 0));
}

.case-theme-bridge-from-network::after {
  inset: auto 0 0;
  height: 46%;
  background:
    radial-gradient(circle at 72% 82%, rgba(197, 143, 50, 0.075), rgba(197, 143, 50, 0) 64%),
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.88));
}

.case-preview-memory .case-preview-stage::after {
  top: 46%;
  bottom: auto;
  transform: rotate(14deg);
}

.case-preview-memory .case-preview-stage span {
  position: absolute;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(200, 154, 69, 0.45);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 0 0 12px rgba(255, 255, 255, 0.48);
}

.case-preview-memory .case-preview-stage span:nth-child(1) { top: 22%; left: 14%; }
.case-preview-memory .case-preview-stage span:nth-child(2) { top: 44%; left: 43%; }
.case-preview-memory .case-preview-stage span:nth-child(3) { top: 18%; right: 14%; }
.case-preview-memory .case-preview-stage span:nth-child(4) { bottom: 18%; left: 24%; }
.case-preview-memory .case-preview-stage span:nth-child(5) { right: 22%; bottom: 20%; }

.nm-case {
  --nm-bg: #090d0b;
  --nm-surface: #151a17;
  --nm-surface2: #1c241f;
  --nm-line: rgba(255, 255, 255, 0.07);
  --nm-text: #ecf1ee;
  --nm-text2: #8a968f;
  --nm-text3: #6c776f;
  --nm-accent: #2fb87a;
  --nm-accent2: #5eead4;
  --nm-on-accent: #06140d;
  --nm-spark: #7e6bd0;
  --nm-bday: #f4b45a;
  isolation: isolate;
  min-height: 104vh;
  min-height: 104svh;
  overflow: visible;
  margin-top: -220px;
  margin-inline: calc((100vw - min(100vw - 96px, 1392px)) / -2);
  padding:
    clamp(132px, 12vw, 196px)
    max(48px, calc((100vw - 1392px) / 2 + 56px))
    clamp(120px, 10vw, 172px);
  border: 0;
  border-radius: 0;
  background:
    radial-gradient(circle at 72% 48%, rgba(47, 184, 122, 0.13), rgba(47, 184, 122, 0.035) 28%, rgba(47, 184, 122, 0) 54%),
    radial-gradient(circle at 54% 100%, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0) 34%),
    linear-gradient(180deg, #000000 0%, #030604 38%, #07100c 100%);
  box-shadow: none;
}

.nm-case::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  background:
    radial-gradient(circle at 69% 50%, rgba(94, 234, 212, 0.18), rgba(94, 234, 212, 0.04) 24%, rgba(94, 234, 212, 0) 52%),
    radial-gradient(circle at 72% 62%, rgba(47, 184, 122, 0.12), rgba(47, 184, 122, 0) 44%),
    linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.42));
  opacity: 1;
  pointer-events: none;
}

.has-js .nm-case::before {
  opacity: var(--nm-scene-o, 0);
}

.nm-case::after {
  inset: auto 0 -1px;
  z-index: 0;
  height: 220px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), #000000 56%, rgba(0, 0, 0, 0));
}

.nm-case .case-preview-meta {
  position: relative;
  z-index: 2;
  color: rgba(94, 234, 212, 0.86);
}

.nm-case-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, 0.56fr) minmax(520px, 1fr);
  gap: clamp(38px, 6vw, 96px);
  align-items: center;
  width: min(100%, 1392px);
  min-height: clamp(720px, 76svh, 860px);
  margin: clamp(54px, 5vw, 88px) auto 0;
}

.has-js .nm-case .case-preview-meta {
  opacity: var(--nm-meta-o, 0);
  transform: translate3d(0, var(--nm-meta-y, 28px), 0);
  transition: opacity 120ms linear, transform 120ms linear;
  will-change: opacity, transform;
}

.has-js .nm-case-copy .nm-product-mark,
.has-js .nm-case-copy h3,
.has-js .nm-case-copy p {
  opacity: var(--nm-copy-o, 0);
  transform: translate3d(0, var(--nm-copy-y, 54px), 0);
  filter: blur(var(--nm-copy-blur, 8px));
  transition: opacity 120ms linear, transform 120ms linear, filter 120ms linear;
  will-change: opacity, transform, filter;
}

.has-js .nm-case-copy h3 {
  transition-delay: 40ms;
}

.has-js .nm-case-copy p {
  transition-delay: 80ms;
}

.has-js .nm-tags {
  opacity: var(--nm-tags-o, 0);
  transform: translate3d(0, var(--nm-tags-y, 28px), 0);
  transition: opacity 120ms linear, transform 120ms linear;
  will-change: opacity, transform;
}

.has-js .nm-demo::before {
  opacity: var(--nm-phone-o, 0);
  transform: scale(var(--nm-glow-scale, 0.88));
  transition: opacity 140ms linear, transform 140ms linear;
  will-change: opacity, transform;
}

.has-js .nm-phone {
  opacity: var(--nm-phone-o, 0);
  transform:
    translate3d(0, var(--nm-phone-y, 150px), 0)
    scale(var(--nm-phone-scale, 0.84))
    rotateX(var(--nm-phone-tilt, 7deg));
  filter: blur(var(--nm-phone-blur, 16px));
  transition: opacity 140ms linear, transform 140ms linear, filter 140ms linear;
  will-change: opacity, transform, filter;
}

.has-js .nm-case.is-revealed .nm-phone::after {
  animation: nmPhoneSheen 7.5s ease-in-out infinite;
}

.nm-case-copy {
  max-width: 470px;
}

.nm-product-mark {
  display: inline-flex;
  align-items: center;
  height: 30px;
  padding: 0 12px;
  border: 1px solid rgba(47, 184, 122, 0.28);
  border-radius: 999px;
  color: var(--nm-accent2);
  background: rgba(47, 184, 122, 0.08);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nm-case-copy h3 {
  margin: 26px 0 0;
  color: var(--nm-text);
  font-size: clamp(42px, 5vw, 78px);
  line-height: 0.96;
}

.nm-case-copy p {
  max-width: 440px;
  margin: 26px 0 0;
  color: var(--nm-text2);
  font-size: 16px;
  line-height: 1.72;
}

.nm-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 34px;
}

.nm-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 11px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  color: rgba(236, 241, 238, 0.82);
  background: rgba(255, 255, 255, 0.035);
  font-size: 12px;
  font-weight: 500;
}

.nm-demo {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 20px;
  min-width: 0;
  perspective: 1200px;
}

.nm-demo::before {
  position: absolute;
  inset: 10% 6% 7%;
  content: "";
  background:
    radial-gradient(circle at 58% 44%, rgba(94, 234, 212, 0.14), rgba(47, 184, 122, 0.05) 32%, rgba(47, 184, 122, 0) 66%);
  filter: blur(42px);
  opacity: 0.72;
  pointer-events: none;
  transform: scale(0.92);
}

.nm-phone {
  position: relative;
  display: flex;
  flex-direction: column;
  width: min(380px, 100%);
  height: 780px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 28px;
  background: var(--nm-bg);
  color: var(--nm-text);
  transform-origin: 50% 92%;
  box-shadow:
    0 52px 150px -54px rgba(0, 0, 0, 0.95),
    0 0 96px -42px rgba(94, 234, 212, 0.42),
    0 0 0 1px rgba(47, 184, 122, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.nm-phone::after {
  position: absolute;
  inset: 0;
  z-index: 6;
  border-radius: inherit;
  content: "";
  background:
    linear-gradient(132deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0) 24%),
    radial-gradient(circle at 74% 18%, rgba(94, 234, 212, 0.12), rgba(94, 234, 212, 0) 34%);
  opacity: 0.74;
  pointer-events: none;
}

.nm-phone::before {
  position: absolute;
  top: 10px;
  left: 50%;
  z-index: 4;
  width: 88px;
  height: 5px;
  border-radius: 999px;
  content: "";
  background: rgba(255, 255, 255, 0.12);
  transform: translateX(-50%);
}

.nm-statusbar {
  position: relative;
  z-index: 3;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px 8px;
  color: var(--nm-text2);
  font-size: 12px;
  font-weight: 600;
}

.nm-screens {
  position: relative;
  flex: 1 1 auto;
  min-height: 0;
}

.nm-screen {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 16px 18px 22px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px) scale(0.985);
  transition: opacity 260ms ease, transform 300ms ease, visibility 0ms linear 300ms, filter 300ms ease;
  filter: blur(2px);
}

.nm-screen::-webkit-scrollbar {
  width: 0;
}

.nm-screen {
  scrollbar-width: none;
}

.nm-screen.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  transition-delay: 0ms;
  filter: blur(0);
}

.nm-screen-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 36px;
  color: var(--nm-text);
  font-size: 15px;
}

.nm-screen-head strong,
.nm-profile h4,
.nm-inbox-card h4 {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 600;
}

.nm-user-dot,
.nm-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  color: var(--nm-on-accent);
  font-size: 12px;
  font-weight: 700;
}

.nm-user-dot {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(145deg, #2fb87a, #1f7d5a);
}

.nm-search {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid var(--nm-line);
  border-radius: 12px;
  color: var(--nm-text2);
  background: var(--nm-surface);
  font-size: 14px;
}

.nm-search::before {
  content: none;
}

.nm-search span {
  color: var(--nm-accent2);
  font-size: 17px;
  line-height: 1;
}

.nm-search input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  color: var(--nm-text);
  background: transparent;
  font: inherit;
}

.nm-search input::placeholder {
  color: var(--nm-text2);
}

.nm-reminder-strip {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 10px;
}

.nm-birthday-card,
.nm-silence-card {
  display: grid;
  gap: 4px;
  min-height: 116px;
  padding: 14px;
  border-radius: 16px;
}

.nm-birthday-card {
  color: #201307;
  background: linear-gradient(145deg, #f4b45a, #f6ce8d);
}

.nm-silence-card {
  color: var(--nm-text);
  background: var(--nm-surface2);
}

.nm-birthday-card span,
.nm-silence-card span,
.nm-avatar {
  width: 42px;
  height: 42px;
  border-radius: 13px;
}

.nm-birthday-card span {
  background: rgba(255, 255, 255, 0.42);
}

.nm-silence-card span {
  background: rgba(255, 255, 255, 0.08);
}

.nm-birthday-card small,
.nm-silence-card small,
.nm-contact-row small,
.nm-profile p,
.nm-profile small,
.nm-info-block small,
.nm-fact small,
.nm-reminder-row small,
.nm-inbox-card p,
.nm-node-card span {
  color: var(--nm-text2);
  font-size: 12px;
  line-height: 1.35;
}

.nm-birthday-card small {
  color: rgba(32, 19, 7, 0.66);
}

.nm-list-title {
  margin-top: 4px;
  color: var(--nm-text2);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nm-contact-row,
.nm-reminder-row {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 62px;
  padding: 10px 12px;
  border: 1px solid var(--nm-line);
  border-radius: 15px;
  background: var(--nm-surface);
}

.nm-contact-row {
  width: 100%;
  appearance: none;
  cursor: pointer;
  color: inherit;
  font: inherit;
  text-align: left;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.nm-contact-row:hover,
.nm-contact-row:focus-visible {
  border-color: rgba(47, 184, 122, 0.25);
  background: rgba(47, 184, 122, 0.08);
}

.nm-contact-row div,
.nm-contact-row > span:not(.nm-avatar) {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.nm-contact-row strong,
.nm-reminder-row strong {
  color: var(--nm-text);
  font-size: 14px;
  font-weight: 600;
}

.nm-contact-row i {
  width: 8px;
  height: 8px;
  margin-left: auto;
  border-radius: 50%;
  background: var(--nm-accent);
  box-shadow: 0 0 0 5px rgba(47, 184, 122, 0.12);
}

.nm-avatar-main,
.nm-avatar-hero {
  background: linear-gradient(145deg, #2fb87a, #1f7d5a);
}

.nm-avatar-blue {
  color: #fff;
  background: #3f7ad9;
}

.nm-avatar-pink {
  color: #fff;
  background: #d9577a;
}

.nm-profile {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 6px;
  padding: 28px 12px 18px;
  text-align: center;
}

.nm-echo-ring {
  position: absolute;
  top: 12px;
  left: 50%;
  width: 148px;
  height: 148px;
  border: 1px solid rgba(47, 184, 122, 0.16);
  border-radius: 50%;
  transform: translateX(-50%);
}

.nm-echo-ring::before,
.nm-echo-ring::after {
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(47, 184, 122, 0.12);
  border-radius: 50%;
  content: "";
}

.nm-echo-ring::after {
  inset: 44px;
}

.nm-avatar-hero {
  position: relative;
  width: 84px;
  height: 84px;
  border-radius: 24px;
  font-size: 25px;
  box-shadow: 0 18px 46px rgba(47, 184, 122, 0.24);
}

.nm-profile h4,
.nm-inbox-card h4 {
  margin: 8px 0 0;
  color: var(--nm-text);
  font-size: 21px;
}

.nm-profile p,
.nm-profile small,
.nm-inbox-card p {
  margin: 0;
}

.nm-profile small {
  color: var(--nm-accent2);
}

.nm-tabs {
  display: flex;
  gap: 6px;
  padding: 4px;
  border: 1px solid var(--nm-line);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.03);
}

.nm-tabs span {
  display: inline-flex;
  justify-content: center;
  min-height: 30px;
  flex: 1;
  align-items: center;
  border-radius: 9px;
  color: var(--nm-text2);
  font-size: 12px;
  font-weight: 600;
}

.nm-tabs span:first-child {
  color: var(--nm-on-accent);
  background: var(--nm-accent);
}

.nm-info-block,
.nm-fact,
.nm-inbox-card {
  padding: 14px;
  border: 1px solid var(--nm-line);
  border-radius: 16px;
  background: var(--nm-surface);
}

.nm-info-block p,
.nm-fact p {
  margin: 6px 0 0;
  color: var(--nm-text);
  font-size: 13px;
  line-height: 1.46;
}

.nm-fact {
  border-color: rgba(126, 107, 208, 0.25);
  background:
    radial-gradient(circle at 12% 0%, rgba(126, 107, 208, 0.22), rgba(126, 107, 208, 0) 46%),
    var(--nm-surface);
}

.nm-fact small {
  color: #b8adff;
}

.nm-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.nm-chip-row span,
.nm-graph-filters span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  color: rgba(236, 241, 238, 0.78);
  background: rgba(47, 184, 122, 0.12);
  font-size: 11px;
  font-weight: 600;
}

.nm-back-button,
.nm-icon-button {
  appearance: none;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
  font: inherit;
}

.nm-back-button {
  padding: 0;
  color: var(--nm-text);
  font-weight: 600;
}

.nm-icon-button {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  color: var(--nm-text2);
  background: var(--nm-surface);
}

.nm-mini-button,
.nm-node-card button,
.nm-reminder-row button,
.nm-profile-actions button {
  appearance: none;
  min-height: 36px;
  padding: 0 12px;
  border: 0;
  border-radius: 10px;
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 700;
}

.nm-mini-button {
  margin-top: 5px;
  color: #201307;
  background: rgba(255, 255, 255, 0.56);
}

.nm-mini-button-muted {
  color: var(--nm-text);
  background: rgba(255, 255, 255, 0.08);
}

.nm-profile-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
}

.nm-profile-actions button:first-child,
.nm-node-card button,
.nm-reminder-row button {
  color: var(--nm-on-accent);
  background: var(--nm-accent);
}

.nm-profile-actions button:last-child {
  color: var(--nm-text);
  background: var(--nm-surface2);
}

.nm-graph-filters {
  display: flex;
  gap: 8px;
}

.nm-graph-canvas {
  position: relative;
  min-height: 482px;
  overflow: hidden;
  border: 1px solid var(--nm-line);
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 46%, rgba(47, 184, 122, 0.1), rgba(47, 184, 122, 0) 44%),
    #0b100e;
}

.nm-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(47, 184, 122, 0.14);
  border-radius: 50%;
  animation: echoPulse 6s ease-out infinite;
  transform: translate(-50%, -50%) scale(0.45);
}

.nm-pulse-b {
  animation-delay: 1.8s;
}

.nm-pulse-c {
  animation-delay: 3.6s;
}

.nm-graph-canvas svg {
  position: absolute;
  inset: 4% 0 auto 0;
  width: 100%;
  height: 88%;
}

.nm-edge {
  stroke: rgba(255, 255, 255, 0.1);
  stroke-width: 1.5;
}

.nm-edge-hot {
  stroke: rgba(47, 184, 122, 0.38);
  stroke-width: 2;
}

.nm-node {
  fill: #17211c;
  stroke: rgba(255, 255, 255, 0.16);
  stroke-width: 1.5;
}

.nm-node-main {
  fill: var(--nm-accent);
  stroke: rgba(94, 234, 212, 0.62);
}

.nm-node-blue {
  fill: #3f7ad9;
}

.nm-node-pink {
  fill: #d9577a;
}

.nm-node-org {
  fill: var(--nm-surface2);
}

.nm-graph-canvas text {
  fill: var(--nm-text);
  font-family: "Inter", sans-serif;
  font-size: 19px;
  font-weight: 700;
  text-anchor: middle;
  dominant-baseline: middle;
}

.nm-graph-canvas .nm-node-main-text {
  fill: var(--nm-on-accent);
  font-size: 24px;
}

.nm-node-card {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: grid;
  gap: 4px;
  width: min(220px, calc(100% - 28px));
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 15px;
  background: rgba(22, 30, 26, 0.9);
  backdrop-filter: blur(12px);
}

.nm-node-card strong {
  color: var(--nm-text);
  font-size: 13px;
}

.nm-node-card button {
  margin-top: 5px;
}

.nm-progress {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}

.nm-progress span,
.nm-progress i {
  display: block;
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}

.nm-progress span {
  background: var(--nm-accent);
}

.nm-inbox-card {
  display: grid;
  justify-items: center;
  gap: 11px;
  min-height: 440px;
  padding: 30px 18px 18px;
  text-align: center;
}

.nm-action-row {
  display: flex;
  gap: 10px;
  margin-top: auto;
}

.nm-action-row button,
.nm-birthday-hero button {
  min-height: 46px;
  border: 0;
  border-radius: 13px;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
}

.nm-action-row button:first-child,
.nm-birthday-hero button {
  flex: 1;
  color: var(--nm-on-accent);
  background: var(--nm-accent);
}

.nm-action-row button:last-child {
  width: 48px;
  color: var(--nm-text2);
  background: var(--nm-surface2);
}

.nm-birthday-hero {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  padding: 15px;
  border-radius: 18px;
  color: #201307;
  background: linear-gradient(145deg, var(--nm-bday), #f8d99d);
}

.nm-birthday-hero small {
  display: block;
  margin-top: 4px;
  color: rgba(32, 19, 7, 0.66);
  font-size: 12px;
}

.nm-birthday-hero button {
  grid-column: 1 / -1;
  color: #201307;
  background: rgba(255, 255, 255, 0.5);
}

.nm-reminder-row span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--nm-surface2);
  color: var(--nm-text);
  font-size: 13px;
  font-weight: 700;
}

.nm-reminder-row small {
  margin-left: auto;
}

.nm-reminder-row button {
  flex: 0 0 auto;
  min-height: 34px;
  padding: 0 12px;
}

.nm-reminder-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
}

.nm-reminder-row > span {
  grid-row: 1 / 3;
}

.nm-reminder-row small {
  justify-self: end;
  margin-left: 0;
}

.nm-reminder-row button {
  grid-column: 2 / 4;
  justify-self: start;
}

.nm-alert span {
  background: rgba(217, 87, 122, 0.18);
  color: #ff9ab3;
}

.nm-app-nav {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  flex: 0 0 auto;
  gap: 4px;
  padding: 8px;
  border-top: 1px solid var(--nm-line);
  background: rgba(11, 16, 14, 0.92);
  backdrop-filter: blur(18px);
}

.nm-app-nav button {
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 13px;
  color: rgba(236, 241, 238, 0.74);
  background: rgba(255, 255, 255, 0.035);
  cursor: pointer;
  font: inherit;
  font-size: 10.5px;
  font-weight: 700;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.nm-app-nav button:hover,
.nm-app-nav button.is-active {
  color: var(--nm-on-accent);
  border-color: rgba(47, 184, 122, 0.28);
  background: var(--nm-accent);
}

.nm-toast {
  position: absolute;
  right: 14px;
  bottom: 74px;
  z-index: 5;
  max-width: calc(100% - 28px);
  padding: 10px 12px;
  border: 1px solid rgba(47, 184, 122, 0.2);
  border-radius: 13px;
  color: var(--nm-text);
  background: rgba(22, 30, 26, 0.94);
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.34);
  font-size: 12px;
  font-weight: 600;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 220ms ease, transform 220ms ease;
  pointer-events: none;
}

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

@keyframes echoPulse {
  0% {
    opacity: 0.55;
    transform: translate(-50%, -50%) scale(0.45);
  }
  70% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.9);
  }
}

@keyframes nmPhoneSheen {
  0%,
  58%,
  100% {
    opacity: 0.42;
  }

  72% {
    opacity: 0.76;
  }
}

.case-preview-era .case-preview-stage {
  display: grid;
  align-content: center;
  gap: 18px;
  padding-left: 54px;
}

.case-preview-era .case-preview-stage::after {
  top: 16%;
  bottom: 16%;
  left: 28px;
  width: 1px;
  height: auto;
  background: rgba(200, 154, 69, 0.32);
}

.case-preview-era .case-preview-stage span {
  position: relative;
  display: block;
  width: min(620px, 84%);
  height: 72px;
  border: 1px solid rgba(18, 23, 33, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 44px rgba(42, 50, 66, 0.05);
}

.case-preview-era .case-preview-stage span::before {
  position: absolute;
  top: 50%;
  left: -31px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  content: "";
  background: var(--gold);
  transform: translateY(-50%);
}

.service-grid,
.case-grid {
  display: grid;
  margin-top: 56px;
  border-top: 1px solid var(--line-soft);
}

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

.service-item {
  min-height: 178px;
  padding: 28px 30px 30px 0;
  border-bottom: 1px solid var(--line-soft);
  transition: color 180ms ease, border-color 180ms ease;
}

.service-item:not(:nth-child(3n + 1)) {
  padding-left: 30px;
  border-left: 1px solid var(--line-soft);
}

.service-item h3,
.case-card h3,
.approach-step h3 {
  margin: 0;
  font-size: 21px;
  line-height: 1.16;
}

.service-item p,
.case-card p,
.approach-step p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.68;
}

.service-item:hover,
.case-card:hover,
.approach-step:hover {
  color: var(--gold-dark);
}

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

.case-card {
  min-height: 210px;
  padding: 28px 34px 30px 0;
  border-bottom: 1px solid var(--line-soft);
  transition: color 180ms ease, border-color 180ms ease;
}

.case-card + .case-card {
  padding-left: 34px;
  border-left: 1px solid var(--line-soft);
}

.case-card span,
.approach-number {
  display: block;
  margin-bottom: 24px;
  color: var(--gold-dark);
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
}

.approach-strip {
  padding: 0;
}

.approach-strip-head {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(300px, 0.52fr);
  gap: clamp(32px, 6vw, 88px);
  align-items: start;
}

.approach-strip .section-kicker {
  margin-bottom: 12px;
}

.approach-title {
  max-width: 640px;
  margin: 0;
  font-size: clamp(28px, 2.25vw, 38px);
  line-height: 1.1;
}

.approach-strip-head p {
  max-width: 390px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.68;
}

.approach-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(34px, 5.5vw, 84px);
  margin-top: 44px;
}

.approach-step {
  position: relative;
  z-index: 1;
  min-width: 0;
  transition: color 180ms ease;
}

.approach-step:not(:last-child)::before {
  position: absolute;
  top: 44px;
  left: 88px;
  right: calc(clamp(34px, 5.5vw, 84px) / -2 + 4px);
  z-index: 0;
  height: 1px;
  content: "";
  background-image: linear-gradient(90deg, rgba(200, 154, 69, 0.46) 50%, rgba(200, 154, 69, 0) 0);
  background-size: 12px 1px;
  background-repeat: repeat-x;
}

.approach-step:not(:last-child)::after {
  position: absolute;
  top: 40px;
  right: calc(clamp(34px, 5.5vw, 84px) / -2 - 4px);
  z-index: 2;
  width: 8px;
  height: 8px;
  content: "";
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.86);
}

.approach-step:hover {
  color: var(--gold-dark);
}

.approach-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  margin-bottom: 8px;
  overflow: hidden;
  border: 1px solid rgba(18, 23, 33, 0.07);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 36px rgba(45, 53, 70, 0.075);
}

.approach-icon img {
  display: block;
  width: 178%;
  max-width: none;
  height: auto;
  object-fit: contain;
  opacity: 1;
  transform: translateY(0);
}

.approach-number {
  margin-bottom: 4px;
  font-size: 14px;
}

.approach-step p {
  max-width: 220px;
  margin-top: 8px;
}

.studio-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(320px, 0.52fr);
  gap: clamp(44px, 8vw, 112px);
  align-items: start;
}

.studio-copy p {
  max-width: 470px;
  margin: 46px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
}

.text-link {
  display: inline-flex;
  margin-top: 28px;
  color: var(--gold-dark);
  font-size: 15px;
  font-weight: 600;
}

.contact-architect {
  min-height: calc(100svh - 104px);
  padding: clamp(36px, 5vw, 68px) 0 clamp(58px, 6vw, 84px);
}

.architect-stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(340px, 0.82fr) minmax(180px, 0.34fr) minmax(410px, 0.88fr);
  gap: clamp(38px, 4.8vw, 78px);
  align-items: center;
  min-height: clamp(650px, calc(100svh - 184px), 790px);
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.architect-stage::before {
  display: none;
  content: none;
}

.architect-map {
  position: absolute;
  left: -7%;
  bottom: -20%;
  z-index: 0;
  width: min(58vw, 760px);
  height: auto;
  opacity: 0.26;
  filter: saturate(0.72) contrast(0.88) brightness(1.16);
  mix-blend-mode: multiply;
  pointer-events: none;
  -webkit-mask-image: radial-gradient(circle at 46% 44%, #000 0 28%, rgba(0, 0, 0, 0.64) 48%, rgba(0, 0, 0, 0) 76%);
  mask-image: radial-gradient(circle at 46% 44%, #000 0 28%, rgba(0, 0, 0, 0.64) 48%, rgba(0, 0, 0, 0) 76%);
}

.architect-intro,
.architect-steps,
.architect-card {
  position: relative;
  z-index: 1;
}

.architect-intro {
  align-self: center;
  max-width: 560px;
}

.architect-intro h1 {
  margin: 0;
  font-size: clamp(46px, 4.3vw, 70px);
  line-height: 0.96;
  letter-spacing: 0.01em;
}

.architect-subtitle {
  max-width: 380px;
  margin: clamp(26px, 4vh, 42px) 0 0;
  color: #1c212b;
  font-size: clamp(20px, 1.7vw, 26px);
  line-height: 1.48;
}

.architect-prompt {
  max-width: 370px;
  margin: clamp(54px, 7vh, 82px) 0 0;
  padding: 18px 26px;
  border-left: 1px solid rgba(200, 154, 69, 0.58);
  border-right: 1px solid rgba(200, 154, 69, 0.58);
  color: #4b5362;
  font-size: 16px;
  line-height: 1.7;
}

.architect-prompt span {
  color: var(--gold-dark);
}

.architect-steps {
  align-self: stretch;
  display: grid;
  align-content: center;
  gap: clamp(18px, 3.1vh, 30px);
  margin: 0;
  padding: 30px 0;
  list-style: none;
}

.architect-steps::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 27px;
  width: 1px;
  content: "";
  background: linear-gradient(180deg, rgba(200, 154, 69, 0), rgba(200, 154, 69, 0.42), rgba(18, 23, 33, 0.08));
}

.architect-steps li {
  position: relative;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 54px;
  color: rgba(102, 112, 132, 0.82);
  transition: color 260ms ease, opacity 260ms ease;
}

.architect-steps li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(18, 23, 33, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.76);
  color: #6d7480;
  font-size: 15px;
  line-height: 1;
  box-shadow: 0 14px 34px rgba(31, 37, 51, 0.035);
  transition: border-color 260ms ease, color 260ms ease, background 260ms ease, box-shadow 260ms ease;
}

.architect-steps li strong {
  display: block;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.35;
}

.architect-steps li.is-active {
  color: #1d222d;
}

.architect-steps li.is-complete span {
  border-color: rgba(200, 154, 69, 0.36);
  color: var(--gold-dark);
}

.architect-steps li.is-active span {
  border-color: rgba(200, 154, 69, 0.86);
  background: rgba(255, 255, 255, 0.95);
  color: var(--gold-dark);
  box-shadow:
    0 18px 44px rgba(200, 154, 69, 0.13),
    inset 0 0 0 5px rgba(200, 154, 69, 0.08);
}

.architect-card {
  justify-self: end;
  width: min(100%, 520px);
  padding: clamp(30px, 4vw, 48px);
  border: 1px solid rgba(18, 23, 33, 0.08);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 82% 14%, rgba(220, 233, 255, 0.3), rgba(220, 233, 255, 0) 34%),
    rgba(255, 255, 255, 0.92);
  box-shadow:
    0 30px 80px rgba(31, 37, 51, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(18px);
}

.architect-question-stack {
  position: relative;
  min-height: 420px;
  transition: height 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.architect-question {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: start;
  opacity: 0;
  visibility: hidden;
  filter: blur(10px);
  transform: translate3d(0, 18px, 0);
  pointer-events: none;
  transition:
    opacity 320ms ease,
    visibility 320ms ease,
    filter 320ms ease,
    transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.architect-question.is-active {
  opacity: 1;
  visibility: visible;
  filter: blur(0);
  transform: translate3d(0, 0, 0);
  pointer-events: auto;
}

.architect-question-kicker {
  margin: 0 0 18px;
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
}

.architect-question h2 {
  max-width: 390px;
  margin: 0;
  color: #191d26;
  font-size: clamp(34px, 3.1vw, 48px);
  line-height: 1.08;
}

.architect-line {
  display: block;
  width: 42px;
  height: 1px;
  margin: 30px 0 32px;
  background: var(--gold);
}

.architect-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.architect-options button {
  position: relative;
  min-height: 104px;
  padding: 22px 22px 20px;
  border: 1px solid rgba(18, 23, 33, 0.1);
  border-radius: var(--radius);
  color: #1f2430;
  background: rgba(255, 255, 255, 0.72);
  font: inherit;
  font-size: 15px;
  line-height: 1.38;
  text-align: left;
  cursor: pointer;
  box-shadow: 0 18px 38px rgba(31, 37, 51, 0.035);
  transition:
    border-color 200ms ease,
    background 200ms ease,
    color 200ms ease,
    box-shadow 200ms ease,
    transform 200ms ease;
}

.architect-options button::after {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 9px;
  height: 9px;
  border: 1px solid rgba(200, 154, 69, 0.36);
  border-radius: 50%;
  content: "";
  background: rgba(255, 255, 255, 0.6);
  transition: border-color 200ms ease, background 200ms ease, box-shadow 200ms ease;
}

.architect-options button:hover,
.architect-options button:focus-visible,
.architect-options button.is-selected {
  border-color: rgba(200, 154, 69, 0.56);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 22px 48px rgba(200, 154, 69, 0.09);
  transform: translateY(-1px);
}

.architect-options button:hover::after,
.architect-options button:focus-visible::after,
.architect-options button.is-selected::after {
  border-color: rgba(200, 154, 69, 0.8);
  background: var(--gold);
  box-shadow: 0 0 0 7px rgba(200, 154, 69, 0.1);
}

.architect-contact-box {
  display: grid;
  gap: 18px;
  padding: 22px;
  border: 1px solid rgba(18, 23, 33, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 38px rgba(31, 37, 51, 0.035);
  transition:
    border-color 260ms ease,
    background 260ms ease,
    box-shadow 260ms ease;
}

.architect-contact-box.has-value {
  border-color: rgba(200, 154, 69, 0.34);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 20px 46px rgba(200, 154, 69, 0.08);
}

.architect-contact-box label {
  display: grid;
  gap: 12px;
}

.architect-contact-box label span {
  color: #6f7786;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  transition: color 260ms ease;
}

.architect-contact-box input {
  width: 100%;
  min-height: 58px;
  padding: 0;
  border: 0;
  border-bottom: 1px solid rgba(18, 23, 33, 0.12);
  border-radius: 0;
  outline: 0;
  color: #191d26;
  background: transparent;
  font: inherit;
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 500;
  line-height: 1.2;
  transition: border-color 260ms ease, color 260ms ease;
}

.architect-contact-box input::placeholder {
  color: rgba(102, 112, 132, 0.54);
}

.architect-contact-box.has-value input {
  border-bottom-color: rgba(200, 154, 69, 0.34);
  color: #191d26;
}

.architect-contact-box button {
  justify-self: start;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid rgba(18, 23, 33, 0.1);
  border-radius: var(--radius);
  color: #2a303b;
  background: rgba(255, 255, 255, 0.82);
  font: inherit;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition:
    color 220ms ease,
    background 220ms ease,
    border-color 220ms ease,
    opacity 220ms ease,
    transform 220ms ease;
}

.architect-contact-box button:disabled {
  opacity: 0.46;
  cursor: default;
}

.architect-contact-error {
  margin: -4px 0 0;
  color: #9d3d32;
  font-size: 13px;
  line-height: 1.55;
}

.architect-contact-box.has-value button:not(:disabled) {
  border-color: rgba(200, 154, 69, 0.72);
  color: #fff;
  background: linear-gradient(180deg, #d1a557 0%, #be8f3e 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.architect-contact-box.has-value button:not(:disabled):hover,
.architect-contact-box.has-value button:not(:disabled):focus-visible {
  transform: translateY(-1px);
  background: linear-gradient(180deg, #d6ad62 0%, #c19343 100%);
}

.architect-final p {
  max-width: 360px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.architect-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(18, 23, 33, 0.06);
}

.architect-controls button {
  padding: 0;
  border: 0;
  color: var(--gold-dark);
  background: transparent;
  font: inherit;
  font-size: 14px;
  cursor: pointer;
  transition: color 180ms ease, opacity 180ms ease;
}

.architect-controls button:disabled {
  color: rgba(102, 112, 132, 0.44);
  cursor: default;
}

.architect-controls span {
  color: rgba(102, 112, 132, 0.82);
  font-size: 13px;
  line-height: 1;
}

.approach-head .page-title {
  max-width: 790px;
}

.approach-page-strip {
  margin-top: 72px;
}

.screen {
  min-height: calc(100vh - 104px);
  padding: 84px 0 112px;
}

.screen.approach-page {
  min-height: auto;
  padding-top: 34px;
  padding-bottom: 96px;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
  color: #747e90;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
}

.section-kicker::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  content: "";
  background: var(--gold);
}

.page-head {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.62fr);
  gap: clamp(56px, 9vw, 132px);
  align-items: start;
}

.page-lead {
  max-width: 430px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.statement {
  margin-top: 78px;
  padding: 34px 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  color: #394152;
  font-size: clamp(20px, 1.75vw, 28px);
  line-height: 1.45;
}

.statement strong {
  color: var(--text);
  font-weight: 500;
}

.text-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 72px;
  border-top: 1px solid var(--line-soft);
}

.text-card {
  min-height: 300px;
  padding: 34px 34px 28px 0;
  border-bottom: 1px solid var(--line-soft);
}

.text-card + .text-card {
  padding-left: 34px;
  border-left: 1px solid var(--line-soft);
}

.text-card h3 {
  margin: 0;
  font-size: clamp(22px, 1.7vw, 30px);
  line-height: 1.15;
}

.text-card p {
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.wide-note {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 1fr);
  gap: clamp(48px, 8vw, 112px);
  align-items: start;
  margin-top: 52px;
}

.wide-note-title {
  color: var(--gold-dark);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
}

.wide-note p {
  max-width: 700px;
  margin: 0;
  color: #2d3340;
  font-size: clamp(20px, 2vw, 32px);
  line-height: 1.42;
}

.split-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin-top: 72px;
  border-top: 1px solid var(--line-soft);
}

.split-item {
  min-height: 180px;
  padding: 28px 34px 28px 0;
  border-bottom: 1px solid var(--line-soft);
}

.split-item:nth-child(even) {
  padding-left: 34px;
  border-left: 1px solid var(--line-soft);
}

.split-item h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.16;
}

.split-item p {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.solutions-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.58fr);
  gap: clamp(48px, 8vw, 120px);
  align-items: start;
}

.solutions-hero .section-kicker {
  margin-bottom: 22px;
}

.solution-map {
  margin-top: 66px;
  border-top: 1px solid rgba(200, 154, 69, 0.22);
}

.solution-row {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr) minmax(88px, 150px) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 54px);
  align-items: center;
  min-height: 150px;
  border-bottom: 1px solid var(--line-soft);
}

.solution-number {
  color: var(--gold-dark);
  font-size: 25px;
  font-weight: 600;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.solution-problem span,
.solution-result span {
  display: block;
  margin-bottom: 12px;
  color: var(--gold-dark);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.32em;
  line-height: 1;
  text-transform: uppercase;
}

.solution-problem h3,
.solution-result h3 {
  margin: 0;
  font-size: 21px;
  line-height: 1.18;
}

.solution-problem p,
.solution-result p {
  max-width: 430px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.66;
}

.solution-connector {
  position: relative;
  height: 1px;
  background: linear-gradient(90deg, rgba(200, 154, 69, 0), rgba(200, 154, 69, 0.62));
}

.solution-connector::after {
  position: absolute;
  top: 50%;
  right: 0;
  width: 9px;
  height: 9px;
  border-top: 1px solid var(--gold-dark);
  border-right: 1px solid var(--gold-dark);
  content: "";
  transform: translateY(-50%) rotate(45deg);
}

.studio-main {
  padding-bottom: 0;
}

.studio-hero {
  display: grid;
  grid-template-columns: minmax(480px, 0.9fr) minmax(620px, 1.1fr);
  align-items: center;
  gap: clamp(44px, 5.6vw, 92px);
  min-height: auto;
  padding: 20px 0 46px;
}

.studio-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.studio-hero .section-kicker {
  margin-bottom: 18px;
  color: var(--gold-dark);
}

.studio-hero-title {
  max-width: 720px;
  margin: 0;
  font-size: clamp(38px, 3.05vw, 50px);
  line-height: 1.06;
}

.studio-hero-text {
  max-width: 560px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
}

.studio-principles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  max-width: 690px;
  margin: 38px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.studio-principles li {
  position: relative;
  min-height: 82px;
  padding: 20px 20px 18px 24px;
  color: #252a34;
  font-size: 14px;
  line-height: 1.48;
}

.studio-principles li + li {
  border-left: 1px solid var(--line-soft);
}

.studio-principles li::before {
  position: absolute;
  top: 22px;
  left: 0;
  width: 1px;
  height: 24px;
  content: "";
  background: var(--gold);
}

.studio-visual {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 520px;
  margin: 0 calc((100vw - min(100vw - 96px, 1392px)) / -2) 0 0;
}

.studio-visual::before {
  position: absolute;
  inset: 8% 4% 8% 20%;
  z-index: -1;
  content: "";
  background:
    radial-gradient(circle at 64% 35%, rgba(200, 154, 69, 0.18), rgba(200, 154, 69, 0) 34%),
    radial-gradient(circle at 70% 56%, rgba(220, 233, 255, 0.34), rgba(220, 233, 255, 0) 52%);
  filter: blur(18px);
}

.studio-visual::after {
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 2;
  width: 34%;
  content: "";
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.studio-visual img {
  position: relative;
  z-index: 1;
  display: block;
  width: min(860px, 61vw);
  max-width: none;
  height: auto;
  object-fit: contain;
  opacity: 0.7;
  filter: saturate(0.72) contrast(0.95) brightness(1.08);
  mix-blend-mode: multiply;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.32) 17%, #000 34%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.32) 17%, #000 34%, #000 100%);
}

.studio-graph {
  position: absolute;
  inset: 12% 4% 22% 47%;
  z-index: 3;
  pointer-events: none;
}

.studio-graph::before {
  position: absolute;
  inset: -14% -8% -12% -10%;
  z-index: 0;
  content: "";
  background: radial-gradient(ellipse at 54% 45%, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0) 72%);
}

.graph-line {
  position: absolute;
  z-index: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(200, 154, 69, 0), rgba(200, 154, 69, 0.24), rgba(200, 154, 69, 0));
  transform-origin: left center;
}

.graph-line-a {
  top: 17%;
  left: 20%;
  width: 42%;
  transform: rotate(-18deg);
}

.graph-line-b {
  top: 25%;
  left: 51%;
  width: 34%;
  transform: rotate(30deg);
}

.graph-line-c {
  top: 43%;
  left: 18%;
  width: 46%;
  transform: rotate(15deg);
}

.graph-line-d {
  top: 52%;
  left: 49%;
  width: 32%;
  transform: rotate(-10deg);
}

.graph-line-e {
  top: 63%;
  left: 27%;
  width: 38%;
  transform: rotate(-25deg);
}

.graph-line-f {
  top: 36%;
  left: 73%;
  width: 20%;
  transform: rotate(86deg);
}

.graph-dot {
  position: absolute;
  z-index: 2;
  width: 9px;
  height: 9px;
  border: 1px solid rgba(200, 154, 69, 0.34);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 0 0 7px rgba(255, 255, 255, 0.18);
}

.graph-dot-a {
  top: 15%;
  left: 18%;
}

.graph-dot-b {
  top: 21%;
  left: 50%;
}

.graph-dot-c {
  top: 34%;
  left: 73%;
}

.graph-dot-d {
  top: 44%;
  left: 44%;
}

.graph-dot-e {
  top: 58%;
  left: 28%;
}

.graph-dot-f {
  top: 61%;
  left: 65%;
}

.graph-dot-g {
  top: 73%;
  left: 80%;
}

.studio-origin-section {
  padding: 42px 0 58px;
  border-top: 1px solid var(--line-soft);
}

.studio-origin-section .section-kicker {
  margin-bottom: 24px;
}

.studio-origin-layout {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(420px, 0.7fr);
  gap: clamp(48px, 7vw, 108px);
  align-items: center;
}

.studio-origin-copy h2 {
  max-width: 690px;
  margin: 0;
  font-size: clamp(34px, 3vw, 48px);
  line-height: 1.08;
}

.studio-origin-copy p {
  max-width: 620px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.76;
}

.studio-origin-copy p + p {
  margin-top: 18px;
}

.origin-system {
  position: relative;
  min-height: 300px;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.origin-system::before {
  position: absolute;
  inset: 12% 8%;
  content: "";
  background:
    radial-gradient(circle at 58% 45%, rgba(200, 154, 69, 0.1), rgba(200, 154, 69, 0) 42%),
    radial-gradient(circle at 42% 52%, rgba(220, 233, 255, 0.28), rgba(220, 233, 255, 0) 58%);
  filter: blur(12px);
}

.origin-line {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, rgba(200, 154, 69, 0), rgba(200, 154, 69, 0.28), rgba(200, 154, 69, 0));
  transform-origin: left center;
}

.origin-line-a {
  top: 34%;
  left: 17%;
  width: 36%;
  transform: rotate(16deg);
}

.origin-line-b {
  top: 36%;
  left: 49%;
  width: 31%;
  transform: rotate(-22deg);
}

.origin-line-c {
  top: 58%;
  left: 20%;
  width: 34%;
  transform: rotate(-18deg);
}

.origin-line-d {
  top: 60%;
  left: 50%;
  width: 32%;
  transform: rotate(20deg);
}

.origin-line-e {
  top: 48%;
  left: 40%;
  width: 26%;
  transform: rotate(90deg);
}

.origin-node {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(47, 52, 64, 0.78);
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}

.origin-node::before {
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border: 1px solid rgba(200, 154, 69, 0.52);
  border-radius: 50%;
  content: "";
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.7);
}

.origin-context {
  top: 25%;
  left: 8%;
}

.origin-links {
  top: 50%;
  left: 34%;
}

.origin-causes {
  top: 19%;
  left: 66%;
}

.origin-limits {
  top: 70%;
  left: 18%;
}

.origin-solution {
  top: 62%;
  left: 70%;
  color: var(--gold-dark);
}

.site-footer {
  padding: 24px 0 30px;
  color: #1c2029;
}

.footer-rule {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  color: var(--gold);
}

.footer-rule::before,
.footer-rule::after {
  height: 1px;
  content: "";
  background: rgba(200, 154, 69, 0.28);
}

.footer-rule span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  font-family: "Times New Roman", serif;
  font-size: 38px;
  line-height: 1;
  text-align: center;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(160px, 220px) minmax(0, 1fr);
  gap: clamp(28px, 4.5vw, 64px);
  align-items: center;
  padding: 38px 54px 40px;
  border-bottom: 1px solid rgba(200, 154, 69, 0.2);
}

.footer-brand {
  justify-self: start;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  font-family: "General Sans", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 21px;
  font-weight: 600;
  line-height: 1;
}

.footer-note p {
  margin: 20px 0 0;
  color: rgba(102, 112, 132, 0.86);
  font-size: 15px;
  line-height: 1.58;
}

.footer-statement {
  max-width: 410px;
  margin-top: 28px;
}

.footer-statement p {
  margin: 0;
  color: rgba(109, 119, 139, 0.86);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}

.footer-statement p + p {
  margin-top: 0;
  color: rgba(109, 119, 139, 0.86);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}

.footer-nav {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 14px 34px;
  border-left: 1px solid rgba(18, 23, 33, 0.09);
  border-right: 1px solid rgba(18, 23, 33, 0.09);
  font-size: 17px;
  line-height: 1;
}

.footer-nav::before,
.footer-nav::after {
  position: absolute;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  content: "";
  background: var(--gold);
  transform: translateY(-50%);
}

.footer-nav::before {
  left: -4px;
}

.footer-nav::after {
  right: -4px;
}

.footer-nav a {
  transition: color 180ms ease;
}

.footer-nav a:hover {
  color: var(--gold-dark);
}

.footer-note {
  max-width: 380px;
  justify-self: end;
  display: grid;
  gap: 18px;
  justify-items: start;
}

.footer-note p {
  margin-top: 0;
  max-width: 320px;
  color: rgba(102, 112, 132, 0.82);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.48;
}

.footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-top: 0;
  color: var(--gold-dark);
  font-size: 17px;
  font-weight: 500;
  line-height: 1;
  transition: color 180ms ease, transform 180ms ease;
}

.footer-cta:hover {
  color: var(--gold);
  transform: translateX(2px);
}

.footer-bottom {
  display: grid;
  justify-items: center;
  gap: 16px;
  padding-top: 24px;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom p:first-child {
  color: rgba(47, 52, 64, 0.52);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.footer-bottom p:nth-child(2) {
  color: rgba(200, 154, 69, 0.72);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.58em;
}

.footer-dotline {
  position: relative;
  display: block;
  width: 98px;
  height: 7px;
}

.footer-dotline::before,
.footer-dotline::after {
  position: absolute;
  top: 50%;
  width: 38px;
  height: 1px;
  content: "";
  background: rgba(200, 154, 69, 0.35);
}

.footer-dotline::before {
  left: 0;
}

.footer-dotline::after {
  right: 0;
}

.footer-dotline {
  background: radial-gradient(circle at 50% 50%, var(--gold) 0 3px, transparent 3.5px);
}

:focus-visible {
  outline: 3px solid rgba(200, 154, 69, 0.32);
  outline-offset: 4px;
}

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

@media (max-width: 1180px) {
  .shell {
    width: min(100% - 64px, 1024px);
  }

  body {
    padding-bottom: 88px;
  }

  .header {
    min-height: 92px;
  }

  .nav {
    position: fixed;
    right: 32px;
    bottom: 18px;
    left: 32px;
    z-index: 30;
    display: flex;
    justify-content: center;
    max-width: 520px;
    min-height: 58px;
    margin: 0 auto;
    gap: 4px;
    padding: 5px;
    border: 1px solid rgba(18, 23, 33, 0.09);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 18px 54px rgba(32, 38, 51, 0.16);
    backdrop-filter: blur(18px);
  }

  .nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    flex: 1 1 0;
    padding: 0 14px;
    border-radius: 999px;
    font-size: 14px;
  }

  .nav a[aria-current="page"] {
    color: var(--gold-dark);
  }

  .nav-indicator {
    bottom: 7px;
    height: 2px;
  }

  .home-main .home-hero {
    grid-template-columns: 1fr;
    gap: 34px;
    min-height: auto;
    padding: 48px 0 54px;
  }

  .home-copy {
    max-width: 760px;
  }

  .visual-wrap {
    min-height: auto;
    margin-right: 0;
  }

  .visual-shell {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    justify-content: center;
  }

  .hero-visual {
    width: min(900px, 100%);
  }

  .studio-hero {
    grid-template-columns: 1fr;
    gap: 34px;
    min-height: auto;
    padding: 32px 0 52px;
  }

  .studio-hero-copy {
    max-width: 820px;
  }

  .studio-visual {
    min-height: auto;
    margin-right: 0;
    justify-content: center;
  }

  .studio-visual img {
    width: min(860px, 100%);
    max-width: 100%;
  }

  .studio-graph {
    inset: 10% 8% 22% 46%;
  }

  .studio-origin-layout {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .origin-system {
    min-height: 250px;
    max-width: 720px;
  }

  .screen {
    padding: 76px 0 112px;
  }

  .screen.approach-page {
    padding-top: 32px;
    padding-bottom: 82px;
  }

  .home-section {
    padding: 82px 0;
  }

  .home-cases {
    padding: 76px 0 92px;
  }

  .home-section-compact {
    padding: 34px 0;
  }

  .section-top,
  .approach-strip-head,
  .studio-panel {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .home-lead,
  .approach-strip-head p,
  .studio-copy p {
    max-width: 640px;
    margin-top: 0;
  }

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

  .service-item:not(:nth-child(3n + 1)) {
    padding-left: 0;
    border-left: 0;
  }

  .service-item:nth-child(even) {
    padding-left: 28px;
    border-left: 1px solid var(--line-soft);
  }

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

  .case-preview {
    min-height: 470px;
  }

  .case-preview-layout {
    grid-template-columns: 1fr;
    gap: 32px;
    min-height: auto;
  }

  .case-preview-copy {
    max-width: 620px;
  }

  .case-preview-stage {
    min-height: 260px;
  }

  .nm-case {
    min-height: 104vh;
    min-height: 104svh;
    margin-inline: calc((100vw - min(100vw - 64px, 1024px)) / -2);
    padding: 120px 32px 140px;
  }

  .nm-case-layout {
    grid-template-columns: 1fr;
    gap: 38px;
    width: min(100% - 64px, 1024px);
    min-height: auto;
  }

  .nm-case-copy {
    max-width: 720px;
  }

  .nm-demo {
    justify-items: start;
  }

  .approach-flow {
    gap: clamp(24px, 4vw, 46px);
  }

  .approach-icon {
    width: 82px;
    height: 82px;
  }

  .approach-step:not(:last-child)::before {
    top: 41px;
    left: 82px;
  }

  .approach-step:not(:last-child)::after {
    top: 37px;
  }

  .case-card:nth-child(3) {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid var(--line-soft);
  }

  .page-head,
  .wide-note {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

  .solution-row {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 18px 26px;
    align-items: start;
    padding: 28px 0;
  }

  .solution-connector {
    grid-column: 2;
    width: 120px;
    margin: 0;
  }

  .solution-result {
    grid-column: 2;
  }

  .contact-architect {
    padding-top: 30px;
  }

  .architect-stage {
    grid-template-columns: 1fr;
    gap: 34px;
    min-height: auto;
    padding: 0;
  }

  .architect-map {
    left: auto;
    right: -160px;
    bottom: -180px;
    width: 720px;
    opacity: 0.18;
  }

  .architect-intro {
    max-width: 760px;
  }

  .architect-prompt {
    margin-top: 38px;
  }

  .architect-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-self: auto;
    gap: 12px;
    padding: 0;
  }

  .architect-steps::before {
    display: none;
  }

  .architect-steps li {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 12px;
    min-height: 44px;
    padding: 8px 0;
  }

  .architect-steps li span {
    width: 44px;
    height: 44px;
    font-size: 13px;
  }

  .architect-card {
    justify-self: stretch;
    width: 100%;
    max-width: none;
  }

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

  .text-card {
    min-height: 260px;
    padding: 30px 28px 28px 0;
  }

  .text-card + .text-card {
    padding-left: 28px;
  }

  .text-card:nth-child(3) {
    padding-left: 0;
    border-left: 0;
  }

  .text-card:nth-child(n + 3) {
    border-top: 1px solid var(--line-soft);
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 26px;
    justify-items: center;
    padding: 34px 0 36px;
    text-align: center;
  }

  .footer-brand,
  .footer-note {
    justify-self: center;
  }

  .footer-statement {
    margin-right: auto;
    margin-left: auto;
  }

  .footer-nav {
    flex-direction: row;
    justify-content: center;
    gap: clamp(24px, 5vw, 44px);
    padding: 22px 0;
    border-top: 1px solid rgba(18, 23, 33, 0.08);
    border-right: 0;
    border-bottom: 1px solid rgba(18, 23, 33, 0.08);
    border-left: 0;
  }

  .footer-nav::before,
  .footer-nav::after {
    display: none;
  }

  .footer-note {
    max-width: 620px;
    justify-items: center;
  }

  .footer-note p {
    max-width: 420px;
  }
}

@media (max-width: 720px) {
  .shell {
    width: min(100% - 36px, 540px);
  }

  body {
    padding-bottom: 82px;
  }

  .header {
    min-height: 84px;
  }

  .brand {
    gap: 12px;
  }

  .brand-mark {
    width: 28px;
    height: 28px;
  }

  .brand-name {
    font-size: 18px;
  }

  .nav-cta {
    min-height: 44px;
    padding: 0 16px;
    font-size: 13px;
  }

  .nav {
    right: 16px;
    bottom: 12px;
    left: 16px;
    min-height: 56px;
    border-radius: 24px;
  }

  .nav a {
    min-height: 44px;
    padding: 0 8px;
    font-size: 13px;
  }

  .home-main .home-hero {
    padding: 34px 0 46px;
  }

  .home-copy h1,
  .page-title {
    font-size: clamp(36px, 10.5vw, 44px);
    line-height: 1.08;
  }

  .subhead {
    margin-top: 22px;
    font-size: 16px;
    line-height: 1.72;
  }

  .actions {
    flex-direction: column;
    align-items: stretch;
    margin-top: 36px;
  }

  .button {
    width: 100%;
  }

  .visual-wrap {
    min-height: auto;
    margin-top: 8px;
  }

  .hero-visual {
    width: 100%;
  }

  .screen {
    padding: 46px 0 88px;
  }

  .screen.approach-page {
    padding-top: 26px;
    padding-bottom: 58px;
  }

  .home-main {
    padding-bottom: 8px;
  }

  .home-section {
    padding: 58px 0;
  }

  .home-cases {
    padding: 54px 0 66px;
  }

  .home-section-compact {
    padding: 24px 0;
  }

  .section-kicker {
    margin-bottom: 24px;
  }

  .home-section-title,
  .contact-title {
    font-size: clamp(28px, 8vw, 36px);
    line-height: 1.1;
  }

  .approach-title {
    font-size: clamp(25px, 7vw, 32px);
    line-height: 1.1;
  }

  .home-lead,
  .approach-strip-head p,
  .studio-copy p {
    font-size: 15px;
    line-height: 1.68;
  }

  .service-grid,
  .case-grid {
    grid-template-columns: 1fr;
    margin-top: 34px;
  }

  .case-preview-list {
    gap: 0;
    margin-top: 34px;
  }

  .case-theme-bridge {
    min-height: clamp(500px, 112vw, 680px);
    margin-inline: calc((100vw - min(100vw - 40px, 1392px)) / -2);
  }

  .case-theme-bridge-to-network {
    margin-top: -52px;
    margin-bottom: -190px;
  }

  .case-theme-bridge-from-network {
    margin-top: -164px;
    margin-bottom: -46px;
  }

  .case-preview {
    min-height: auto;
    padding: 24px;
  }

  .case-preview::after {
    right: 24px;
    left: 24px;
  }

  .case-preview-meta {
    align-items: flex-start;
    font-size: 11px;
    line-height: 1.35;
  }

  .case-preview-layout {
    gap: 28px;
    margin-top: 28px;
  }

  .case-preview-copy h3 {
    font-size: clamp(31px, 9vw, 42px);
    line-height: 1.02;
  }

  .case-preview-copy p {
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.64;
  }

  .case-preview-stage {
    min-height: 220px;
  }

  .nm-case {
    min-height: 104vh;
    min-height: 104svh;
    margin-top: -156px;
    margin-inline: calc((100vw - min(100vw - 40px, 1392px)) / -2);
    padding: 104px 20px 118px;
    border-radius: 0;
  }

  .nm-case-layout {
    width: min(100% - 40px, 1392px);
    gap: 30px;
  }

  .nm-case-copy h3 {
    font-size: clamp(32px, 10vw, 44px);
  }

  .nm-case-copy p {
    font-size: 15px;
    line-height: 1.62;
  }

  .nm-tags {
    margin-top: 24px;
  }

  .nm-demo {
    justify-items: center;
    width: 100%;
  }

  .nm-phone {
    width: 100%;
    max-width: 380px;
  }

  .case-preview-era .case-preview-stage {
    padding-left: 42px;
  }

  .case-preview-era .case-preview-stage span {
    width: 100%;
    height: 56px;
  }

  .service-item,
  .service-item:nth-child(even),
  .case-card,
  .case-card + .case-card,
  .case-card:nth-child(3) {
    min-height: auto;
    padding: 24px 0;
    border-left: 0;
  }

  .service-item + .service-item,
  .case-card + .case-card {
    border-top: 1px solid var(--line-soft);
  }

  .approach-strip {
    padding: 0;
  }

  .approach-flow {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 34px;
  }

  .approach-step {
    display: grid;
    grid-template-columns: 80px minmax(0, 1fr);
    column-gap: 20px;
    align-items: center;
  }

  .approach-step:not(:last-child)::before {
    top: 80px;
    bottom: -8px;
    left: 40px;
    right: auto;
    width: 1px;
    height: auto;
    background-image: linear-gradient(180deg, rgba(200, 154, 69, 0.42) 50%, rgba(200, 154, 69, 0) 0);
    background-size: 1px 12px;
    background-repeat: repeat-y;
  }

  .approach-step:not(:last-child)::after {
    top: auto;
    right: auto;
    bottom: -12px;
    left: 36px;
  }

  .approach-icon {
    grid-row: 1 / span 3;
    width: 80px;
    height: 80px;
    margin-bottom: 0;
  }

  .approach-number {
    margin-bottom: 5px;
    font-size: 13px;
  }

  .approach-step h3 {
    font-size: 18px;
  }

  .approach-step p {
    max-width: none;
    margin-top: 6px;
    font-size: 13px;
    line-height: 1.55;
  }

  .approach-page-strip {
    margin-top: 46px;
  }

  .page-lead {
    max-width: none;
    margin-top: 6px;
    font-size: 16px;
    line-height: 1.72;
  }

  .statement {
    margin-top: 48px;
    padding: 26px 0;
    font-size: 19px;
  }

  .text-grid,
  .split-list {
    grid-template-columns: 1fr;
    margin-top: 42px;
  }

  .solution-map {
    margin-top: 42px;
  }

  .solution-row {
    grid-template-columns: 1fr;
    gap: 18px;
    min-height: auto;
    padding: 28px 0;
  }

  .solution-number,
  .solution-result,
  .solution-connector {
    grid-column: auto;
  }

  .solution-number {
    font-size: 20px;
  }

  .solution-connector {
    width: 96px;
  }

  .solution-problem h3,
  .solution-result h3 {
    font-size: 20px;
  }

  .contact-architect {
    padding: 18px 0 54px;
  }

  .architect-stage {
    gap: 28px;
    padding: 0;
  }

  .architect-map {
    right: -220px;
    bottom: -120px;
    width: 620px;
    opacity: 0.14;
  }

  .architect-intro h1 {
    font-size: clamp(42px, 13vw, 66px);
  }

  .architect-subtitle {
    margin-top: 24px;
    font-size: 19px;
  }

  .architect-prompt {
    margin-top: 34px;
    padding: 15px 18px;
    font-size: 15px;
  }

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

  .architect-steps li {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 10px;
    min-height: 38px;
  }

  .architect-steps li span {
    width: 38px;
    height: 38px;
    font-size: 12px;
  }

  .architect-steps li strong {
    font-size: 13px;
  }

  .architect-card {
    padding: 24px 18px 20px;
  }

  .architect-question-stack {
    min-height: 470px;
  }

  .architect-question h2 {
    font-size: 30px;
  }

  .architect-line {
    margin: 24px 0 24px;
  }

  .architect-options {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .architect-options button {
    min-height: 76px;
    padding: 18px 42px 18px 18px;
  }

  .architect-contact-box {
    padding: 18px;
  }

  .architect-contact-box input {
    min-height: 52px;
    font-size: 22px;
  }

  .architect-contact-box button {
    justify-self: stretch;
  }

  .architect-controls {
    margin-top: 20px;
    padding-top: 18px;
  }

  .text-card,
  .text-card + .text-card,
  .text-card:nth-child(3),
  .split-item,
  .split-item:nth-child(even) {
    min-height: auto;
    padding: 28px 0;
    border-left: 0;
  }

  .text-card + .text-card,
  .split-item + .split-item {
    border-top: 1px solid var(--line-soft);
  }

  .text-card h3,
  .split-item h3 {
    font-size: 24px;
  }

  .text-card p,
  .split-item p {
    margin-top: 16px;
    font-size: 15px;
    line-height: 1.72;
  }

  .wide-note {
    margin-top: 34px;
  }

  .wide-note p {
    font-size: 20px;
  }

  .studio-main {
    padding-bottom: 0;
  }

  .studio-hero {
    padding: 24px 0 42px;
  }

  .studio-hero-title {
    font-size: clamp(32px, 8.8vw, 40px);
    line-height: 1.1;
  }

  .studio-hero-text {
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.72;
  }

  .studio-principles {
    grid-template-columns: 1fr;
    margin-top: 28px;
  }

  .studio-principles li {
    min-height: auto;
    padding: 18px 0 18px 22px;
    font-size: 14px;
  }

  .studio-principles li + li {
    border-top: 1px solid var(--line-soft);
    border-left: 0;
  }

  .studio-principles li::before {
    top: 20px;
    height: 22px;
  }

  .studio-visual {
    margin-top: 8px;
  }

  .studio-visual::before {
    inset: 8% 0 10%;
  }

  .studio-visual::after {
    width: 22%;
  }

  .studio-visual img {
    width: 108%;
    max-width: none;
    margin-left: -4%;
  }

  .studio-graph {
    display: none;
  }

  .studio-origin-section {
    padding: 38px 0 48px;
  }

  .studio-origin-copy h2 {
    font-size: clamp(32px, 8vw, 38px);
  }

  .studio-origin-copy p {
    margin-top: 24px;
    font-size: 15px;
    line-height: 1.72;
  }

  .studio-origin-copy p + p {
    margin-top: 16px;
  }

  .origin-system {
    min-height: 230px;
  }

  .origin-node {
    gap: 8px;
    font-size: 11px;
  }

  .origin-node::before {
    width: 7px;
    height: 7px;
  }

  .origin-context {
    left: 2%;
  }

  .origin-links {
    left: 30%;
  }

  .origin-causes {
    left: 58%;
  }

  .origin-limits {
    left: 5%;
  }

  .origin-solution {
    left: 62%;
  }

  .site-footer {
    padding: 22px 0 30px;
  }

  .footer-rule {
    gap: 14px;
  }

  .footer-rule span {
    font-size: 32px;
  }

  .footer-main {
    gap: 22px;
    padding: 26px 0 28px;
  }

  .footer-logo {
    font-size: 18px;
  }

  .footer-note p {
    margin-top: 0;
    font-size: 14px;
    line-height: 1.58;
  }

  .footer-statement {
    margin-right: auto;
    margin-left: auto;
  }

  .footer-statement p {
    font-size: 14px;
  }

  .footer-statement p + p {
    margin-top: 0;
    font-size: 14px;
  }

  .footer-nav {
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 20px 0;
    font-size: 17px;
    text-align: center;
  }

  .footer-cta {
    gap: 14px;
    margin-top: 20px;
    font-size: 16px;
  }

  .footer-bottom {
    gap: 14px;
    padding-top: 22px;
  }

  .footer-bottom p:first-child {
    font-size: 12px;
  }

  .footer-bottom p:nth-child(2) {
    font-size: 9px;
    letter-spacing: 0.26em;
  }

}
