:root {
  --bg: #080706;
  --panel: rgba(21, 20, 18, 0.78);
  --panel-strong: rgba(28, 26, 23, 0.92);
  --line: rgba(255, 128, 24, 0.28);
  --line-soft: rgba(255, 255, 255, 0.11);
  --text: #f4eee6;
  --muted: #b9ada0;
  --dim: #776d63;
  --accent: #ff7a18;
  --accent-2: #ffb15f;
  --shadow: 0 30px 120px rgba(0, 0, 0, 0.56);
  --radius: 8px;
  --font-display: "Cormorant Garamond", Didot, "Bodoni 72", "Times New Roman", Georgia, serif;
  --font-body: Manrope, "Helvetica Neue", Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 76% 8%, rgba(255, 122, 24, 0.16), transparent 29rem),
    radial-gradient(circle at 18% 22%, rgba(255, 122, 24, 0.11), transparent 25rem),
    linear-gradient(120deg, #050505 0%, #11100e 48%, #070605 100%);
  font-family: var(--font-body);
  font-weight: 300;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px) 0 0 / 96px 96px,
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px) 0 0 / 96px 96px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.17;
  background:
    linear-gradient(90deg, transparent 0 18%, rgba(255, 106, 0, 0.12) 18.08%, transparent 18.18% 72%, rgba(154, 171, 178, 0.11) 72.08%, transparent 72.18%),
    linear-gradient(0deg, transparent 0 54%, rgba(255, 106, 0, 0.055) 54.08%, transparent 54.18%),
    radial-gradient(circle at 82% 18%, rgba(255, 106, 0, 0.16), transparent 24rem);
  mix-blend-mode: screen;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.site-shell {
  position: relative;
  isolation: isolate;
  width: min(1560px, calc(100% - 28px));
  margin: 8px auto 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(5, 5, 5, 0.82);
  box-shadow: var(--shadow);
}

.light-architecture {
  position: absolute;
  inset: 80px 0 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background:
    linear-gradient(90deg, transparent 0 8%, rgba(255, 106, 0, 0.14) 8.06%, transparent 8.16% 34%, rgba(154, 171, 178, 0.08) 34.06%, transparent 34.18% 91%, rgba(255, 106, 0, 0.1) 91.06%, transparent 91.16%),
    linear-gradient(0deg, transparent 0 23%, rgba(255, 106, 0, 0.06) 23.06%, transparent 23.16% 48%, rgba(255, 106, 0, 0.13) 48.06%, transparent 48.18% 82%, rgba(154, 171, 178, 0.06) 82.06%, transparent 82.16%),
    linear-gradient(118deg, transparent 0 54%, rgba(154, 171, 178, 0.08) 54.08%, transparent 54.18%),
    radial-gradient(circle at 74% 12%, rgba(255, 106, 0, 0.12), transparent 22rem),
    radial-gradient(circle at 92% 74%, rgba(154, 171, 178, 0.08), transparent 24rem);
  opacity: 0.34;
  filter: drop-shadow(0 0 18px rgba(255, 106, 0, 0.08));
  mix-blend-mode: screen;
  mask-image: linear-gradient(to bottom, transparent 0, black 6%, black 92%, transparent 100%);
  animation: architectureDrift 18s ease-in-out infinite alternate;
}

.light-architecture::before,
.light-architecture::after {
  position: absolute;
  content: "";
  pointer-events: none;
  mix-blend-mode: screen;
}

.light-architecture::before {
  right: 7%;
  top: 8%;
  width: 30%;
  height: 18%;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-right: 1px solid rgba(154, 171, 178, 0.16);
  opacity: 0.5;
  transform: skewX(-12deg);
  filter: drop-shadow(0 0 18px rgba(255, 255, 255, 0.08));
}

.light-architecture::after {
  left: 6%;
  top: 38%;
  width: 22%;
  height: 26%;
  border-left: 1px solid rgba(255, 106, 0, 0.2);
  border-bottom: 1px solid rgba(255, 106, 0, 0.14);
  opacity: 0.44;
  transform: skewX(-10deg);
  filter: drop-shadow(0 0 20px rgba(255, 106, 0, 0.12));
}

.topbar,
main,
.site-footer {
  position: relative;
  z-index: 1;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(18px, 2.6vw, 34px);
  min-height: 68px;
  padding: 0 clamp(18px, 3.4vw, 48px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(7, 7, 6, 0.82);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  width: max-content;
  text-transform: uppercase;
}

.brand-name {
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.24em;
}

.brand-sub {
  display: block;
  width: 100%;
  color: var(--accent);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.36em;
  text-align: center;
  text-indent: 0.36em;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(28px, 3.2vw, 58px);
  color: rgba(217, 209, 200, 0.82);
  font-size: 13px;
  font-weight: 300;
}

.nav a {
  transition: color 0.2s ease;
}

.nav a:hover {
  color: var(--accent-2);
}

.top-action {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 22px;
  border: 1px solid rgba(255, 122, 24, 0.56);
  border-radius: 4px;
  color: var(--accent-2);
  font-size: 13px;
  font-weight: 400;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 4px;
  background: transparent;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 6px auto;
  background: var(--text);
}

.section-frame {
  position: relative;
  border-bottom: 1px solid rgba(255, 122, 24, 0.18);
  background:
    linear-gradient(135deg, rgba(255, 122, 24, 0.07), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent);
}

.section-frame::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 0 14%, rgba(255, 106, 0, 0.1) 14.04%, transparent 14.14% 64%, rgba(154, 171, 178, 0.08) 64.04%, transparent 64.16%),
    linear-gradient(0deg, transparent 0 38%, rgba(255, 106, 0, 0.035) 38.04%, transparent 38.12% 67%, rgba(255, 106, 0, 0.08) 67.04%, transparent 67.14%),
    linear-gradient(128deg, transparent 0 68%, rgba(154, 171, 178, 0.055) 68.06%, transparent 68.18%),
    radial-gradient(circle at 84% 42%, rgba(255, 106, 0, 0.08), transparent 22rem);
  opacity: 0.42;
  mix-blend-mode: screen;
  mask-image:
    linear-gradient(90deg, transparent 0, black 8%, black 94%, transparent 100%),
    linear-gradient(to bottom, transparent 0, black 14%, black 86%, transparent 100%);
}

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

.process::after {
  opacity: 0.035;
}

.hero {
  display: grid;
  grid-template-columns: minmax(330px, 0.42fr) minmax(560px, 0.58fr);
  min-height: 780px;
  align-items: center;
  gap: clamp(12px, 2vw, 34px);
  padding: clamp(58px, 7vw, 104px) clamp(32px, 5vw, 70px) 78px;
  overflow: hidden;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  background:
    radial-gradient(circle at 74% 42%, rgba(255, 111, 19, 0.18), transparent 28rem),
    radial-gradient(circle at 88% 18%, rgba(255, 177, 95, 0.08), transparent 21rem),
    linear-gradient(90deg, rgba(0, 0, 0, 0.18), transparent 58%);
  pointer-events: none;
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 0 54%, rgba(255, 106, 0, 0.26) 54.05%, transparent 54.16% 61%, rgba(154, 171, 178, 0.16) 61.05%, transparent 61.18% 78%, rgba(255, 106, 0, 0.08) 78.05%, transparent 78.16%),
    linear-gradient(0deg, transparent 0 34%, rgba(255, 106, 0, 0.08) 34.05%, transparent 34.14% 44%, rgba(255, 106, 0, 0.22) 44.05%, transparent 44.18% 68%, rgba(154, 171, 178, 0.12) 68.05%, transparent 68.14%),
    linear-gradient(115deg, transparent 0 63%, rgba(154, 171, 178, 0.06) 63.06%, transparent 63.2%),
    radial-gradient(circle at 74% 52%, rgba(255, 106, 0, 0.18), transparent 28rem);
  opacity: 0.5;
  mix-blend-mode: screen;
  filter: brightness(1.05) saturate(1.04) drop-shadow(0 0 22px rgba(255, 106, 0, 0.16));
  mask-image:
    radial-gradient(ellipse 48% 58% at 72% 48%, black 0 44%, transparent 75%),
    linear-gradient(90deg, transparent 0, black 30%, black 100%);
  mask-composite: intersect;
  animation: heroArchitectureBreathe 16s ease-in-out infinite alternate;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 590px;
  transform: translateY(-20%);
}

.hero-content .eyebrow,
.hero-title,
.hero-lead,
.hero-actions {
  opacity: 1;
  visibility: visible;
  filter: none;
  transform: none;
  animation: none;
  transition: none;
}

.eyebrow {
  margin: 0 0 20px;
  color: #ff7417;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0;
  text-wrap: balance;
}

h1 {
  max-width: 590px;
  margin-bottom: 26px;
  font-size: clamp(58px, 4.75vw, 82px);
  line-height: 0.94;
  text-shadow: 0 14px 34px rgba(0, 0, 0, 0.36);
}

.hero-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(58px, 4.75vw, 82px);
  font-weight: 500;
  line-height: 0.94;
  letter-spacing: 0;
}

h1 span {
  display: block;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(38px, 4.2vw, 74px);
  line-height: 0.98;
}

h3 {
  margin-bottom: 12px;
  font-family: var(--font-display);
  font-size: 31px;
  font-weight: 400;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 485px;
  margin-bottom: 34px;
  color: #e0d7ce;
  font-family: Manrope, "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(16px, 1.08vw, 19px);
  font-weight: 300;
  line-height: 1.56;
}

.hero-trust {
  max-width: 560px;
  margin: 14px 0 0;
  color: rgba(224, 215, 206, 0.66);
  font-size: 13px;
  line-height: 1.55;
}

.hero-trust span {
  color: #ff7417;
  padding: 0 7px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-actions {
  gap: 12px;
  max-width: 560px;
}

.hero-actions .button {
  min-height: 48px;
  padding: 0 22px;
  gap: 14px;
  font-size: 13.5px;
  transition: none;
}

.hero-actions .button-ghost {
  min-height: 42px;
  padding: 0 16px;
  font-size: 12.5px;
}

.hero-actions .button:hover {
  transform: none;
}

.legal-note {
  max-width: 560px;
  margin: 12px 0 0;
  color: rgba(224, 215, 206, 0.48);
  font-size: 10.5px;
  font-weight: 300;
  line-height: 1.45;
}

.legal-note a {
  color: rgba(255, 177, 95, 0.82);
  text-decoration: underline;
  text-decoration-color: rgba(255, 177, 95, 0.28);
  text-underline-offset: 3px;
}

.legal-note a:hover {
  color: #ffb15f;
  text-decoration-color: rgba(255, 177, 95, 0.62);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 56px;
  padding: 0 28px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 400;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

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

.button-primary {
  border: 1px solid rgba(255, 177, 95, 0.8);
  color: #fff7ee;
  background: linear-gradient(180deg, #ff9a2f 0%, #df5d08 100%);
  box-shadow: 0 18px 42px rgba(255, 104, 12, 0.26);
}

.button-ghost {
  border: 1px solid rgba(255, 122, 24, 0.45);
  color: #f0dfcf;
  background: rgba(5, 5, 5, 0.4);
}

.hero-visual {
  position: relative;
  z-index: 2;
  min-height: 630px;
  min-width: 0;
  background: transparent !important;
  background-image: none !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  filter: none !important;
  mask-image: none !important;
  -webkit-mask-image: none !important;
  overflow: visible;
}

.hero-visual::before,
.hero-visual::after {
  content: none !important;
  display: none !important;
}

.hero-visual__image {
  display: block;
  position: absolute;
  right: -8%;
  top: -2%;
  width: min(1040px, 124%);
  height: auto;
  max-width: none;
  border: 0;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  filter: none !important;
  object-fit: contain;
  opacity: 1;
  mix-blend-mode: normal;
  mask-image: none !important;
  -webkit-mask-image: none !important;
  transform: translate3d(var(--hero-x, 0), var(--hero-y, 0), 0);
}

.services,
.business-tasks,
.scenarios,
.about-lab,
.proof,
.technologies,
.faq,
.contact {
  padding: 72px clamp(28px, 5vw, 74px);
}

.business-tasks,
.scenarios,
.about-lab,
.technologies,
.faq {
  overflow: hidden;
}

.process {
  padding: 70px clamp(28px, 5vw, 74px) 66px;
}

.section-head {
  max-width: 860px;
  margin-bottom: 42px;
}

.section-head .eyebrow {
  color: #ff7417;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.section-head-center {
  margin-inline: auto;
  text-align: center;
}

.process .section-head {
  max-width: 1200px;
  margin-bottom: 50px;
}

.process .eyebrow {
  margin-bottom: 16px;
  font-size: 11px;
  letter-spacing: 0.24em;
}

.process h2 {
  max-width: 1200px;
  margin-inline: auto;
  margin-bottom: 0;
  font-size: clamp(42px, 3.05vw, 48px);
  line-height: 1.02;
  white-space: nowrap;
}

.section-subtitle {
  max-width: 680px;
  margin: 0 auto;
  color: rgba(224, 215, 206, 0.68);
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.55;
}

.section-subtitle-left {
  margin-inline: 0;
}

.technologies {
  padding-top: 48px;
  padding-bottom: 48px;
}

.technologies .section-head {
  max-width: 760px;
  margin-bottom: 14px;
}

.technologies h2 {
  font-size: clamp(36px, 3.25vw, 58px);
}

.task-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  width: min(100%, 980px);
  margin: 0 auto;
}

.task-card {
  position: relative;
  min-height: 218px;
  padding: 26px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 122, 24, 0.13), transparent 38%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), transparent 48%),
    rgba(17, 16, 14, 0.78);
  box-shadow: inset 0 0 0 1px rgba(255, 122, 24, 0.035), 0 24px 70px rgba(0, 0, 0, 0.2);
  transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease;
}

.task-card::after,
.scenario-row::after,
.principle-list article::after {
  position: absolute;
  right: -42px;
  bottom: -42px;
  width: 120px;
  height: 120px;
  content: "";
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 122, 24, 0.16), transparent 68%);
  opacity: 0.68;
  pointer-events: none;
}

.task-card span,
.scenario-row span,
.principle-list span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.task-card > span,
.scenario-row > div > span,
.principle-list article > span,
.proof-mark,
.process-line span b {
  display: none !important;
}

.task-card h3,
.scenario-row h3,
.principle-list h3 {
  margin-bottom: 12px;
  color: #fff6ef;
  font-size: 30px;
  line-height: 1.02;
}

.task-card p,
.scenario-row p,
.about-copy p,
.principle-list p,
.faq-panel p {
  color: var(--muted);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.58;
}

.task-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 122, 24, 0.42);
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 122, 24, 0.2), transparent 42%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), transparent 48%),
    rgba(22, 20, 18, 0.88);
}

.section-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  width: min(100%, 1400px);
  margin: 30px auto 0;
  padding: 20px 22px;
  border: 1px solid rgba(255, 122, 24, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 122, 24, 0.045);
}

.section-cta p {
  max-width: 740px;
  margin: 0;
  color: #ded3c8;
  line-height: 1.55;
}

.section-cta-center {
  justify-content: center;
  border: 0;
  background: transparent;
}

.scenario-toggle {
  cursor: pointer;
}

.services {
  overflow: hidden;
}

.services::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  background:
    linear-gradient(90deg, transparent 0 9%, rgba(255, 106, 0, 0.18) 9.05%, transparent 9.16% 14%, rgba(154, 171, 178, 0.12) 14.05%, transparent 14.18% 87%, rgba(255, 106, 0, 0.12) 87.05%, transparent 87.15%),
    linear-gradient(0deg, transparent 0 30%, rgba(255, 106, 0, 0.05) 30.05%, transparent 30.15% 48%, rgba(255, 106, 0, 0.16) 48.05%, transparent 48.18% 73%, rgba(154, 171, 178, 0.07) 73.05%, transparent 73.15%),
    linear-gradient(118deg, transparent 0 18%, rgba(154, 171, 178, 0.045) 18.06%, transparent 18.18% 80%, rgba(255, 106, 0, 0.1) 80.05%, transparent 80.16%),
    radial-gradient(circle at 16% 42%, rgba(255, 106, 0, 0.16), transparent 24rem),
    radial-gradient(circle at 88% 54%, rgba(154, 171, 178, 0.09), transparent 22rem);
  opacity: 0.35;
  mix-blend-mode: screen;
  filter: drop-shadow(0 0 18px rgba(255, 106, 0, 0.08));
  mask-image:
    radial-gradient(ellipse 72% 70% at 50% 42%, black 0 46%, transparent 82%),
    linear-gradient(90deg, transparent 0, black 7%, black 93%, transparent 100%);
  animation: architectureDrift 20s ease-in-out infinite alternate;
  pointer-events: none;
}

.service-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.service-card,
.lead-form {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), transparent 42%),
    rgba(18, 17, 15, 0.78);
}

.service-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(86px, 0.52fr) 1fr;
  grid-template-rows: auto auto;
  column-gap: 14px;
  align-items: center;
  overflow: hidden;
  min-height: 150px;
  padding: 16px 18px;
  box-shadow: inset 0 0 0 1px rgba(255, 122, 24, 0.035), 0 20px 56px rgba(0, 0, 0, 0.18);
  transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease;
}

.service-card::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 24% 28%, rgba(255, 122, 24, 0.16), transparent 34%),
    linear-gradient(90deg, rgba(255, 122, 24, 0.08), transparent 58%);
  opacity: 0;
  transition: opacity 0.24s ease;
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 122, 24, 0.48);
  background:
    linear-gradient(145deg, rgba(255, 122, 24, 0.12), transparent 45%),
    rgba(21, 20, 18, 0.9);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card p,
.proof p {
  color: var(--muted);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.42;
}

.service-visual {
  position: relative;
  z-index: 1;
  grid-row: 1 / 3;
  width: min(100%, 118px);
  height: auto;
  min-width: 82px;
  margin: 0 0 0 -8px;
  object-fit: contain;
  filter: drop-shadow(0 14px 26px rgba(255, 99, 9, 0.2));
}

.service-card h3,
.service-card p {
  position: relative;
  z-index: 1;
  margin: 0;
}

.service-card h3 {
  align-self: end;
  font-size: clamp(21px, 1.55vw, 27px);
  line-height: 1.04;
}

.service-card p {
  align-self: start;
}


.manifest-section {
  position: relative;
  isolation: isolate;
  min-height: 620px;
  height: min(680px, 74vh);
  padding: 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 122, 24, 0.18);
  background:
    radial-gradient(circle at 58% 50%, rgba(255, 106, 0, 0.075), transparent 40%),
    #070707;
}

.manifest-section::before,
.manifest-section::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
}

.manifest-section::before {
  z-index: 0;
  background:
    radial-gradient(ellipse at 7% 22%, rgba(255, 106, 0, 0.16), transparent 28%),
    radial-gradient(ellipse at 92% 72%, rgba(255, 106, 0, 0.13), transparent 30%),
    linear-gradient(124deg, transparent 0 15%, rgba(255, 138, 50, 0.16) 22%, transparent 36%),
    linear-gradient(55deg, transparent 0 62%, rgba(255, 106, 0, 0.13) 72%, transparent 88%),
    radial-gradient(ellipse at 16% 78%, rgba(255, 255, 255, 0.07), transparent 34%);
  filter: blur(24px);
  opacity: 0.72;
  mix-blend-mode: screen;
  animation: manifestSmokeDrift 18s ease-in-out infinite alternate;
}

.manifest-section::after {
  z-index: 0;
  background:
    linear-gradient(112deg, transparent 0 18%, rgba(255, 116, 23, 0.32) 20%, rgba(255, 180, 95, 0.14) 21%, transparent 32%),
    linear-gradient(65deg, transparent 0 67%, rgba(255, 116, 23, 0.28) 74%, rgba(255, 210, 150, 0.1) 75%, transparent 87%),
    linear-gradient(140deg, transparent 0 7%, rgba(154, 171, 178, 0.1) 13%, transparent 25%),
    linear-gradient(28deg, transparent 0 76%, rgba(154, 171, 178, 0.08) 83%, transparent 94%);
  opacity: 0.42;
  mix-blend-mode: screen;
  mask-image: radial-gradient(ellipse 58% 70% at 50% 50%, transparent 0 35%, black 66%, black 100%);
}

.manifest-composition {
  position: relative;
  z-index: 1;
  left: -3%;
  width: clamp(470px, 33vw, 550px);
  aspect-ratio: 1023 / 1537;
  margin: 0 auto;
  overflow: visible;
  transform: none;
}

.manifest-art {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
}

.manifest-copy {
  position: absolute;
  z-index: 2;
  left: 27%;
  top: 8%;
  width: 37%;
  color: #f4efe9;
}

.manifest-label {
  margin: 0 0 14px;
  color: #ff7417;
  font-family: var(--font-body);
  font-size: clamp(8px, 0.55vw, 10px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.manifest-title {
  margin: 0;
  font-family: var(--font-body);
  letter-spacing: 0;
  text-transform: uppercase;
}

.manifest-small {
  display: block;
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.58);
  font-size: clamp(10px, 0.72vw, 13px);
  font-weight: 500;
  line-height: 1.1;
}

.manifest-white,
.manifest-accent {
  display: block;
  font-size: clamp(24px, 1.62vw, 31px);
  font-weight: 500;
  line-height: 0.91;
  letter-spacing: -0.035em;
}

.manifest-white span,
.manifest-accent span {
  display: block;
}

.manifest-white {
  margin-bottom: 12px;
  color: #f4efe9;
}

.manifest-accent {
  margin-top: 7px;
  color: #ff7417;
}

.manifest-description {
  width: 100%;
  margin: 16px 0 13px;
  color: rgba(255, 255, 255, 0.65);
  font-size: clamp(10px, 0.65vw, 12px);
  font-weight: 300;
  line-height: 1.45;
}

.manifest-chain {
  display: inline-block;
  max-width: 100%;
  margin: 0;
  padding: 8px 10px;
  border: 1px solid rgba(255, 106, 0, 0.3);
  color: rgba(255, 220, 194, 0.82);
  font-size: 8px;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0.08em;
}

.manifest-copy > * {
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: translateY(10px);
}

.manifest-section.is-visible .manifest-copy > * {
  animation: manifestTextIn 0.62s 0.18s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.scenario-list {
  display: grid;
  gap: 12px;
  width: min(100%, 1400px);
  margin: 0 auto;
}

.scenario-extra {
  display: grid;
  gap: 12px;
}

.scenario-extra[hidden] {
  display: none;
}

.scenario-row {
  position: relative;
  display: grid;
  grid-template-columns: 0.8fr 0.9fr 1.18fr 1fr;
  gap: 24px;
  align-items: center;
  overflow: hidden;
  min-height: 136px;
  padding: 22px 24px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(255, 122, 24, 0.08), transparent 34%),
    rgba(17, 16, 14, 0.76);
  transition: border-color 0.24s ease, transform 0.24s ease;
}

.scenario-row:hover {
  transform: translateX(4px);
  border-color: rgba(255, 122, 24, 0.38);
}

.scenario-row h3 {
  margin: 0;
  font-size: 26px;
}

.scenario-row p {
  margin: 0;
}

.scenario-chain {
  display: inline-flex;
  width: fit-content;
  padding: 10px 13px;
  border: 1px solid rgba(255, 122, 24, 0.25);
  border-radius: 999px;
  color: #f3d0b1 !important;
  background: rgba(255, 122, 24, 0.07);
  font-size: 13px !important;
  white-space: nowrap;
}

.scenario-row strong {
  color: #ffb15f;
  font-weight: 600;
}

.about-lab {
  display: grid;
  grid-template-columns: 0.92fr 1fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  width: min(100%, 1460px);
  margin-inline: auto;
  padding-top: 64px;
  padding-bottom: 64px;
}

.about-copy {
  max-width: 590px;
}

.about-copy > .eyebrow {
  margin-bottom: 18px;
  color: #ff7417;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.about-copy h2 {
  max-width: 560px;
  font-size: clamp(42px, 3.7vw, 66px);
}

.about-copy strong {
  display: block;
  margin-top: 26px;
  padding: 18px 20px;
  border-left: 2px solid var(--accent);
  color: #fff3e8;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  line-height: 1.08;
  background: rgba(255, 122, 24, 0.07);
}

.about-founder {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 122, 24, 0.18);
}

.principle-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px 0;
  isolation: isolate;
}

.about-lab .principle-list::before {
  position: absolute;
  inset: -14% -8% -18% -10%;
  z-index: -1;
  content: "";
  background:
    radial-gradient(circle at 70% 24%, rgba(255, 106, 0, 0.18), transparent 34%),
    radial-gradient(circle at 58% 75%, rgba(255, 122, 24, 0.14), transparent 36%),
    linear-gradient(135deg, transparent 18%, rgba(255, 106, 0, 0.11), transparent 62%);
  filter: blur(8px);
  opacity: 0.9;
  pointer-events: none;
}

.principle-list article,
.faq-item {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), transparent 46%),
    rgba(18, 17, 15, 0.78);
}

.principle-list article {
  min-height: 154px;
  padding: 20px 22px;
  background:
    radial-gradient(circle at 86% 82%, rgba(255, 106, 0, 0.16), transparent 38%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), transparent 48%),
    rgba(18, 17, 15, 0.74);
  box-shadow:
    inset 0 0 0 1px rgba(255, 122, 24, 0.035),
    0 22px 74px rgba(255, 106, 0, 0.055);
}

.about-lab .principle-list article:nth-child(1) {
  grid-column: 1 / 7;
}

.about-lab .principle-list article:nth-child(2) {
  grid-column: 7 / 13;
  transform: translateY(36px);
}

.about-lab .principle-list article:nth-child(3) {
  grid-column: 3 / 9;
  transform: translateY(14px);
}

.principle-list h3 {
  font-size: 23px;
}

.tech-tags {
  position: relative;
  min-height: 230px;
  width: min(100%, 1040px);
  margin: -2px auto 0;
  isolation: isolate;
}

.tech-tags::before {
  position: absolute;
  inset: 8% 4% 2% 26%;
  z-index: -1;
  content: "";
  background:
    radial-gradient(circle at 42% 52%, rgba(255, 106, 0, 0.18), transparent 34%),
    radial-gradient(circle at 78% 30%, rgba(255, 122, 24, 0.11), transparent 26%),
    linear-gradient(120deg, transparent, rgba(255, 106, 0, 0.08), transparent);
  filter: blur(16px);
  opacity: 0.9;
  pointer-events: none;
}

.tech-tags span {
  position: absolute;
  display: block;
  color: rgba(255, 244, 235, 0.82);
  font-family: var(--font-body);
  font-size: clamp(18px, 2.1vw, 36px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: 0;
  text-shadow: 0 0 34px rgba(255, 106, 0, 0.16);
  white-space: nowrap;
}

.tech-tags span:nth-child(1) {
  top: 12%;
  left: 4%;
  color: rgba(255, 244, 235, 0.54);
  font-size: clamp(14px, 1.05vw, 19px);
}

.tech-tags span:nth-child(2) {
  top: 2%;
  left: 42%;
  color: rgba(255, 244, 235, 0.72);
  font-size: clamp(20px, 2vw, 36px);
}

.tech-tags span:nth-child(3) {
  top: 25%;
  left: 22%;
  color: rgba(255, 244, 235, 0.9);
  font-size: clamp(26px, 3vw, 52px);
}

.tech-tags span:nth-child(4) {
  top: 32%;
  right: 8%;
  color: rgba(255, 244, 235, 0.72);
  font-size: clamp(20px, 2.05vw, 36px);
}

.tech-tags span:nth-child(5) {
  top: 58%;
  left: 12%;
  color: rgba(255, 122, 24, 0.9);
  font-size: clamp(22px, 2.35vw, 42px);
}

.tech-tags span:nth-child(6) {
  top: 58%;
  left: 43%;
  color: rgba(255, 244, 235, 0.82);
  font-size: clamp(22px, 2.55vw, 46px);
}

.tech-tags span:nth-child(7) {
  right: 16%;
  bottom: 9%;
  color: rgba(255, 244, 235, 0.48);
  font-size: clamp(14px, 1.15vw, 21px);
}

.tech-tags span:nth-child(8) {
  bottom: 5%;
  left: 3%;
  color: rgba(255, 244, 235, 0.58);
  font-size: clamp(15px, 1.35vw, 24px);
}

.tech-tags span:nth-child(9) {
  right: 4%;
  top: 8%;
  color: rgba(255, 122, 24, 0.72);
  font-size: clamp(14px, 1.2vw, 22px);
}

.tech-tags span:nth-child(10) {
  right: 28%;
  top: 78%;
  color: rgba(255, 244, 235, 0.58);
  font-size: clamp(15px, 1.3vw, 23px);
}

.process-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  width: min(100%, 1400px);
  padding: 0;
  margin: 0 auto;
  list-style: none;
}

.process-line::before {
  display: block;
  position: absolute;
  top: 23px;
  right: 7%;
  left: 7%;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 122, 24, 0.38), transparent);
}

.process-line li {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 10px;
  align-content: start;
  min-height: 0;
  padding: 0 12px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-align: center;
}

.process-line li::after {
  display: none;
}

.process-line li:last-child::after {
  display: none;
}

.process-line span {
  position: relative;
  display: grid;
  width: 48px;
  height: 48px;
  margin: 0;
  place-items: center;
  border: 1px solid rgba(255, 122, 24, 0.58);
  border-radius: 50%;
  color: var(--accent-2);
  background:
    linear-gradient(180deg, rgba(255, 122, 24, 0.2), rgba(255, 122, 24, 0.05)),
    #0d0c0b;
  box-shadow: 0 0 0 5px rgba(255, 122, 24, 0.035), 0 0 18px rgba(255, 122, 24, 0.14);
}

.process-line span svg {
  width: 20px;
  height: 20px;
  color: var(--accent-2);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 7px rgba(255, 122, 24, 0.24));
}

.process-line span b {
  display: none !important;
}

.process-line h3 {
  margin: 2px 0 7px;
  font-size: 21px;
  line-height: 1.02;
}

.process-line p {
  max-width: none;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.42;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-items: center;
  gap: clamp(28px, 5vw, 72px);
  width: min(100%, 1120px);
  margin: 0 auto;
}

.proof article {
  position: relative;
  display: grid;
  grid-template-rows: 150px auto auto;
  justify-items: center;
  align-content: start;
  width: min(100%, 300px);
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-align: center;
}

.proof article::before {
  position: absolute;
  top: 12px;
  left: 50%;
  width: 190px;
  height: 132px;
  content: "";
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 122, 24, 0.2), rgba(255, 122, 24, 0.055) 48%, transparent 72%);
  filter: blur(18px);
  opacity: 0.72;
  pointer-events: none;
  transform: translateX(-50%);
}

.proof-mark {
  position: relative;
  z-index: 1;
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--accent);
  font-weight: 700;
}

.proof-image {
  position: relative;
  z-index: 1;
  align-self: center;
  justify-self: center;
  width: 178px;
  height: 138px;
  margin: 0 0 18px;
  object-fit: contain;
  filter:
    drop-shadow(0 0 18px rgba(255, 122, 24, 0.2))
    drop-shadow(0 24px 36px rgba(0, 0, 0, 0.42));
}

.proof-card h3,
.proof-card p {
  position: relative;
  z-index: 1;
}

.proof-card h3 {
  margin-bottom: 9px;
  font-size: 30px;
}

.proof-card p {
  max-width: 250px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.45;
}

.faq-list {
  display: grid;
  gap: 10px;
  width: min(100%, 980px);
  margin: 0 auto;
}

.faq::after {
  background:
    linear-gradient(90deg, transparent 0 14%, rgba(255, 106, 0, 0.08) 14.04%, transparent 14.14% 64%, rgba(154, 171, 178, 0.045) 64.04%, transparent 64.16%),
    linear-gradient(128deg, transparent 0 68%, rgba(154, 171, 178, 0.035) 68.06%, transparent 68.18%),
    radial-gradient(circle at 82% 36%, rgba(255, 106, 0, 0.06), transparent 20rem);
  opacity: 0.28;
}

.faq-item {
  padding: 0;
}

.faq-item h3 {
  margin: 0;
  font-family: var(--font-body);
  font-size: 18px;
}

.faq-item button {
  position: relative;
  width: 100%;
  min-height: 64px;
  padding: 18px 58px 18px 22px;
  border: 0;
  color: #fff4eb;
  text-align: left;
  background: transparent;
  cursor: pointer;
}

.faq-item button::after {
  position: absolute;
  top: 50%;
  right: 22px;
  width: 24px;
  height: 24px;
  content: "+";
  border: 1px solid rgba(255, 122, 24, 0.32);
  border-radius: 50%;
  color: var(--accent-2);
  line-height: 22px;
  text-align: center;
  transform: translateY(-50%);
  transition: transform 0.22s ease, background 0.22s ease;
}

.faq-item.is-open button::after {
  content: "−";
  background: rgba(255, 122, 24, 0.12);
}

.faq-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.24s ease;
}

.faq-panel > p {
  overflow: hidden;
  margin: 0;
  padding: 0 58px 0 22px;
}

.faq-item.is-open .faq-panel {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-panel > p {
  padding-bottom: 22px;
}

.contact {
  display: grid;
  grid-template-columns: 0.9fr 1.05fr;
  gap: 38px;
  align-items: start;
  overflow: hidden;
  background:
    radial-gradient(circle at 25% 15%, rgba(255, 122, 24, 0.17), transparent 24rem),
    rgba(15, 13, 11, 0.8);
}

.contact::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 0 5%, rgba(255, 106, 0, 0.16) 5.05%, transparent 5.16% 42%, rgba(154, 171, 178, 0.12) 42.05%, transparent 42.15% 95%, rgba(255, 106, 0, 0.13) 95.05%, transparent 95.16%),
    linear-gradient(0deg, transparent 0 22%, rgba(255, 106, 0, 0.045) 22.05%, transparent 22.15% 78%, rgba(255, 106, 0, 0.13) 78.05%, transparent 78.16%),
    linear-gradient(120deg, transparent 0 72%, rgba(154, 171, 178, 0.045) 72.05%, transparent 72.18%),
    radial-gradient(circle at 72% 52%, rgba(255, 106, 0, 0.2), transparent 22rem);
  opacity: 0.3;
  mix-blend-mode: screen;
  filter: drop-shadow(0 0 18px rgba(255, 106, 0, 0.1));
  mask-image: linear-gradient(90deg, black 0, black 38%, transparent 64%, black 82%, transparent 100%);
}

.contact-copy p {
  max-width: 440px;
  color: var(--muted);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.6;
}

.lead-form {
  padding: 20px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), transparent 45%),
    rgba(15, 14, 13, 0.62);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

label {
  display: grid;
  gap: 6px;
  color: var(--dim);
  font-size: 12px;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 4px;
  color: var(--text);
  background: rgba(0, 0, 0, 0.28);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input {
  min-height: 46px;
  padding: 0 14px;
}

textarea {
  resize: vertical;
  min-height: 82px;
  padding: 13px 14px;
}

input:focus,
textarea:focus {
  border-color: rgba(255, 122, 24, 0.72);
  box-shadow: 0 0 0 3px rgba(255, 122, 24, 0.12);
}

.consent {
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 9px;
  margin: 12px 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}

.consent input {
  width: 16px;
  min-height: 16px;
  margin-top: 2px;
  accent-color: var(--accent);
}

.consent label {
  display: inline;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
  cursor: pointer;
}

.consent-text p {
  margin: 5px 0 0;
}

.consent a {
  color: var(--accent-2);
  text-decoration: underline;
  text-decoration-color: rgba(255, 122, 24, 0.32);
  text-underline-offset: 3px;
}

.consent a:hover {
  text-decoration-color: rgba(255, 122, 24, 0.72);
}

.form-submit {
  width: 100%;
}

.form-note {
  min-height: 20px;
  margin: 10px 0 0;
  color: var(--accent-2);
  font-size: 12px;
}

.form-note.is-error {
  color: #ff9f75;
}

.site-footer {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 106, 0, 0.18);
  background: #070707;
}

.footer-main {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr;
  gap: clamp(48px, 7vw, 110px);
  align-items: start;
  padding: 52px clamp(24px, 5vw, 58px) 42px;
}

.footer-brand {
  max-width: 340px;
}

.footer-logo {
  display: inline-grid;
  gap: 2px;
  text-transform: uppercase;
}

.footer-logo span {
  color: rgba(255, 255, 255, 0.94);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.3em;
  line-height: 1;
}

.footer-logo small {
  justify-self: center;
  color: #ff7417;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.28em;
  line-height: 1;
}

.footer-description {
  max-width: 310px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 15px;
  line-height: 1.5;
}

.footer-nav,
.footer-contacts {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-title {
  margin: 0 0 5px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-nav a,
.footer-contacts a,
.footer-legal a,
.footer-to-top {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 1.4;
  transition: color 180ms ease;
}

.footer-nav a:hover,
.footer-contacts a:hover,
.footer-legal a:hover,
.footer-to-top:hover {
  color: #ff7417;
}

.footer-phone {
  color: rgba(255, 255, 255, 0.78) !important;
  font-size: 16px !important;
  font-weight: 500;
}

.footer-phone:hover {
  color: #ff7417 !important;
}

.footer-messengers {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

.footer-messengers a {
  min-height: 38px;
  padding: 0 15px 0 13px;
  gap: 9px;
  border: 1px solid rgba(255, 122, 24, 0.34);
  border-radius: 999px;
  background:
    radial-gradient(circle at 18% 50%, rgba(255, 122, 24, 0.16), transparent 58%),
    rgba(255, 122, 24, 0.045);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.025);
  color: rgba(255, 238, 224, 0.84) !important;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, transform 180ms ease;
}

.footer-messengers svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  fill: #ff7417;
  filter: drop-shadow(0 0 10px rgba(255, 116, 23, 0.35));
}

.footer-messengers span {
  line-height: 1;
}

.footer-privacy-note {
  max-width: 300px;
  margin-top: 10px;
  font-size: 10.5px;
}

.footer-messengers a:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 122, 24, 0.62);
  background:
    radial-gradient(circle at 18% 50%, rgba(255, 122, 24, 0.24), transparent 58%),
    rgba(255, 122, 24, 0.08);
  color: #fff5ed !important;
}

.footer-to-top {
  position: absolute;
  top: 52px;
  right: clamp(24px, 5vw, 58px);
  color: rgba(255, 255, 255, 0.45);
  font-size: 13px;
  letter-spacing: 0.02em;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
  min-height: 72px;
  padding: 18px clamp(24px, 5vw, 58px);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-copyright,
.footer-requisites {
  margin: 0;
  color: rgba(255, 255, 255, 0.36);
  font-size: 12px;
  line-height: 1.45;
}

.footer-legal {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 28px;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.42);
  font-size: 12px;
  line-height: 1.45;
}

.footer-requisites {
  text-align: right;
  white-space: nowrap;
}

.legal-shell {
  min-height: calc(100vh - 30px);
}

.legal-page {
  width: min(880px, calc(100% - 36px));
  margin: 0 auto;
  padding: 76px 0 96px;
}

.legal-page h1 {
  font-size: clamp(42px, 5vw, 74px);
}

.legal-page h2 {
  margin-top: 42px;
  color: #fff6ed;
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 400;
}

.legal-page p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}

.legal-page a {
  color: var(--accent-2);
}

@media (max-width: 1200px) {
  .process h2 {
    white-space: normal;
  }
}

@media (max-width: 1180px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-content {
    max-width: 760px;
  }

  .hero-visual {
    min-height: 520px;
  }

  .hero-visual__image {
    right: auto;
    top: -5%;
    left: 50%;
    width: min(780px, 112%);
    transform: translateX(-50%);
  }

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

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

  .scenario-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .scenario-chain {
    white-space: normal;
  }

  .manifest-section {
    min-height: 620px;
  }

  .manifest-composition {
    left: -3%;
    width: clamp(460px, 40vw, 540px);
    min-height: auto;
    transform: none;
  }

  .manifest-art {
    inset: 0;
    width: 100%;
    height: 100%;
    transform: none;
  }

  .manifest-copy {
    left: 27%;
    top: 8%;
    width: 37%;
    transform: none;
  }

  .about-lab {
    grid-template-columns: 1fr;
  }

  .about-lab .principle-list {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    max-width: 860px;
    margin-inline: auto;
  }

  .process {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .process .section-head {
    max-width: 820px;
    margin-bottom: 42px;
  }

  .process h2 {
    font-size: 42px;
    white-space: normal;
  }

  .process-line {
    grid-template-columns: 1fr;
    row-gap: 0;
  }

  .process-line::before {
    top: 0;
    bottom: 0;
    left: 23px;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, rgba(255, 122, 24, 0.42), rgba(255, 122, 24, 0.08));
  }

  .process-line li {
    grid-template-columns: 48px 1fr;
    padding: 0 0 26px;
    text-align: left;
    justify-items: stretch;
  }

  .process-line h3,
  .process-line p {
    grid-column: 2;
  }

  .footer-main {
    gap: 42px;
  }

  .footer-contacts {
    grid-column: auto;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 14px;
  }

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

  .footer-requisites {
    text-align: left;
    white-space: normal;
  }
}

@media (max-width: 860px) {
  body::after {
    opacity: 0.12;
  }

  .site-shell {
    width: calc(100% - 12px);
    margin-top: 6px;
    margin-bottom: 12px;
    border-radius: 7px;
  }

  .topbar {
    grid-template-columns: auto auto;
    min-height: 60px;
    padding: 0 18px;
  }

  .nav,
  .top-action {
    display: none;
  }

  .topbar.is-open {
    align-items: start;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .topbar.is-open .brand,
  .topbar.is-open .menu-button {
    align-self: center;
  }

  .topbar.is-open .nav {
    display: grid;
    grid-column: 1 / -1;
    order: 3;
    width: 100%;
    gap: 0;
    margin-top: 10px;
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .topbar.is-open .nav a {
    padding: 11px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 14px;
  }

  .menu-button {
    display: block;
    justify-self: end;
    cursor: pointer;
  }

  .menu-button span {
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .topbar.is-open .menu-button span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .topbar.is-open .menu-button span:last-child {
    transform: translateY(-3px) rotate(-45deg);
  }

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

  .brand-sub {
    font-size: 8px;
    letter-spacing: 0.28em;
  }

  .hero,
  .business-tasks,
  .services,
  .scenarios,
  .process,
  .about-lab,
  .proof,
  .technologies,
  .faq,
  .contact {
    padding-inline: 18px;
  }

  .hero {
    gap: 20px;
    padding-top: 22px;
    padding-bottom: 30px;
  }

  .hero-content {
    transform: none;
  }

  .business-tasks,
  .services,
  .scenarios,
  .about-lab,
  .proof,
  .faq,
  .contact {
    padding-top: 54px;
    padding-bottom: 56px;
  }

  .technologies {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .technologies .section-head {
    margin-bottom: 18px;
  }

  .section-frame::after {
    opacity: 0.16;
  }

  .light-architecture,
  .hero::after,
  .services::before,
  .contact::before {
    opacity: 0.18;
    animation: none;
  }

  .light-architecture::before,
  .light-architecture::after {
    display: none;
  }

  .process {
    padding-top: 54px;
    padding-bottom: 56px;
  }

  .process .section-head {
    margin-bottom: 34px;
  }

  .process h2 {
    font-size: 34px;
    line-height: 1.02;
    white-space: normal;
  }

  h1 {
    font-size: 42px;
    line-height: 0.96;
  }

  .hero-title {
    max-width: 355px;
    margin-bottom: 18px;
    font-size: clamp(39px, 11.2vw, 48px);
    line-height: 0.96;
  }

  h2 {
    font-size: 32px;
    line-height: 1.04;
  }

  h3 {
    font-size: 26px;
  }

  .hero-lead {
    max-width: 340px;
    margin-bottom: 24px;
    font-size: 15px;
    line-height: 1.55;
  }

  .hero-actions .button {
    width: 100%;
    min-height: 50px;
  }

  .hero-actions .button-ghost {
    min-height: 44px;
    font-size: 12.5px;
  }

  .hero-visual {
    min-height: clamp(292px, 76vw, 356px);
    margin: -8px 0 -8px;
    overflow: visible;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
  }

  .hero-visual__image {
    top: -1%;
    right: auto;
    left: 50%;
    width: min(100%, 430px);
    transform: translateX(-50%);
  }

  .section-head {
    max-width: 340px;
    margin-bottom: 34px;
  }

  .section-head-center {
    max-width: 340px;
  }

  .section-subtitle {
    font-size: 15.5px;
    line-height: 1.52;
  }

  .manifest-section {
    min-height: 0;
    height: auto;
    padding: 0;
  }

  .manifest-section::before {
    opacity: 0.38;
    filter: blur(20px);
    animation: none;
  }

  .manifest-section::after {
    opacity: 0.2;
  }

  .manifest-composition {
    left: auto;
    width: min(386px, 94vw);
    max-width: none;
    min-height: auto;
    margin: -10px auto -6px;
    transform: none;
  }

  .manifest-art {
    inset: 0;
    width: 100%;
    height: 100%;
    transform: none;
  }

  .manifest-copy {
    left: 27%;
    top: 8.5%;
    width: 37%;
    transform: none;
  }

  .manifest-label {
    margin-bottom: 10px;
    font-size: 6.5px;
  }

  .manifest-small {
    font-size: 8px;
  }

  .manifest-white,
  .manifest-accent {
    font-size: 18px;
  }

  .manifest-description {
    margin-top: 11px;
    font-size: 8.5px;
    line-height: 1.35;
  }

  .manifest-chain {
    display: none;
  }

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

  .service-grid,
  .proof-grid,
  .task-grid,
  .process-line {
    grid-template-columns: 1fr;
  }

  .task-card,
  .principle-list article {
    min-height: auto;
    padding: 20px;
  }

  .task-card h3,
  .principle-list h3 {
    font-size: 25px;
  }

  .section-cta {
    display: grid;
    padding: 18px;
  }

  .section-cta .button {
    width: 100%;
  }

  .scenario-row {
    min-height: auto;
    padding: 20px;
  }

  .scenario-row p,
  .task-card p,
  .principle-list p,
  .faq-panel p {
    font-size: 14px;
    line-height: 1.55;
  }

  .scenario-row h3 {
    font-size: 25px;
  }

  .about-copy strong {
    font-size: 26px;
  }

  .about-lab .principle-list {
    display: grid;
    grid-template-columns: 1fr !important;
    gap: 12px;
    width: 100%;
    max-width: 100%;
    margin-top: 26px;
  }

  .about-lab .principle-list article:nth-child(1),
  .about-lab .principle-list article:nth-child(2),
  .about-lab .principle-list article:nth-child(3) {
    grid-column: 1 / -1 !important;
    width: 100%;
    transform: none !important;
  }

  .about-lab .principle-list article {
    min-height: auto;
    padding: 18px;
  }

  .about-lab .principle-list h3 {
    margin-bottom: 8px;
    font-size: 22px;
  }

  .about-lab .principle-list p {
    font-size: 13.5px;
    line-height: 1.48;
  }

  .tech-tags {
    display: block;
    position: relative;
    min-height: 268px;
    width: 100%;
    max-width: 360px;
    margin: 24px auto 0;
    overflow: visible;
  }

  .tech-tags::before {
    inset: 15% 10% 10%;
    background:
      radial-gradient(circle at 50% 48%, rgba(255, 106, 0, 0.18), transparent 42%),
      linear-gradient(126deg, transparent 8%, rgba(255, 106, 0, 0.08), transparent 74%);
    filter: blur(18px);
    opacity: 0.78;
  }

  .tech-tags span,
  .tech-tags span:nth-child(n) {
    position: absolute;
    display: inline-block;
    width: max-content;
    max-width: calc(100vw - 48px);
    color: rgba(255, 244, 235, 0.68);
    font-size: 16px;
    font-weight: 300;
    line-height: 1.05;
    text-align: center;
    text-shadow: 0 0 22px rgba(255, 106, 0, 0.12);
    white-space: nowrap;
  }

  .tech-tags span:nth-child(1) {
    top: 18px;
    left: 6%;
    font-size: 17px;
  }

  .tech-tags span:nth-child(2) {
    top: 24px;
    right: 9%;
    font-size: 18px;
  }

  .tech-tags span:nth-child(3) {
    top: 74px;
    left: 7%;
    color: rgba(255, 122, 24, 0.9);
    font-size: 25px;
  }

  .tech-tags span:nth-child(4) {
    top: 81px;
    right: 4%;
    font-size: 20px;
  }

  .tech-tags span:nth-child(5) {
    top: 121px;
    left: 0;
    color: rgba(255, 122, 24, 0.9);
    font-size: 25px;
  }

  .tech-tags span:nth-child(6) {
    top: 154px;
    left: 18%;
    color: rgba(255, 122, 24, 0.88);
    font-size: 23px;
  }

  .tech-tags span:nth-child(7) {
    top: 209px;
    left: 3%;
    font-size: 17px;
  }

  .tech-tags span:nth-child(8) {
    top: 208px;
    left: 34%;
    font-size: 17px;
  }

  .tech-tags span:nth-child(9) {
    top: 208px;
    right: 3%;
    color: rgba(255, 122, 24, 0.72);
    font-size: 17px;
  }

  .tech-tags span:nth-child(10) {
    top: 236px;
    left: 50%;
    font-size: 18px;
    transform: translateX(-50%);
  }

  .faq-item button {
    min-height: 58px;
    padding: 16px 50px 16px 18px;
    font-size: 16px;
  }

  .faq-panel > p {
    padding-right: 18px;
    padding-left: 18px;
  }

  .service-card {
    grid-template-columns: 78px 1fr;
    min-height: 124px;
    padding: 14px;
    column-gap: 10px;
  }

  .service-visual {
    width: 96px;
    min-width: 0;
    margin-left: -12px;
  }

  .service-card p {
    font-size: 12.5px;
    line-height: 1.38;
  }

  .service-card h3 {
    font-size: 20px;
  }

  .proof article {
    grid-template-rows: 126px auto auto;
    width: min(100%, 280px);
    padding: 0;
  }

  .proof article::before {
    top: 4px;
    left: 50%;
    width: 168px;
    height: 112px;
  }

  .proof-image {
    width: 152px;
    height: 116px;
    margin: 0 0 14px;
  }

  .proof-card h3 {
    font-size: 26px;
  }

  .proof-card p {
    max-width: 218px;
    font-size: 13px;
    line-height: 1.42;
  }

  .process-line li {
    display: grid;
    grid-template-columns: 48px 1fr;
    min-height: 0;
    padding: 0 0 26px 0;
    column-gap: 14px;
    text-align: left;
    justify-items: stretch;
  }

  .process-line::before {
    top: 0;
    bottom: 0;
    left: 23px;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, rgba(255, 122, 24, 0.42), rgba(255, 122, 24, 0.08));
  }

  .process-line li::after {
    display: none;
  }

  .process-line span {
    grid-row: span 2;
    width: 48px;
    height: 48px;
    margin: 0;
  }

  .process-line span svg {
    width: 20px;
    height: 20px;
  }

  .process-line span b {
    display: none !important;
  }

  .process-line h3 {
    margin-top: 2px;
    margin-bottom: 5px;
    font-size: 22px;
  }

  .process-line p {
    max-width: none;
    margin: 0;
    font-size: 13px;
    line-height: 1.45;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .lead-form {
    padding: 18px;
  }

  input {
    min-height: 46px;
  }

  textarea {
    min-height: 86px;
  }

  .contact-copy p {
    font-size: 15px;
  }

  .site-footer {
    border-top-color: rgba(255, 106, 0, 0.18);
    background:
      radial-gradient(circle at 16% 12%, rgba(255, 122, 24, 0.11), transparent 160px),
      #070707;
  }

  .footer-to-top {
    top: 32px;
    right: 24px;
    padding: 8px 11px;
    border: 1px solid rgba(255, 122, 24, 0.22);
    border-radius: 999px;
    color: rgba(255, 238, 224, 0.68);
    background: rgba(255, 122, 24, 0.045);
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 32px 24px 24px;
  }

  .footer-brand {
    max-width: none;
  }

  .footer-description {
    max-width: 245px;
    margin-top: 14px;
    font-size: 13.5px;
    line-height: 1.45;
  }

  .footer-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.075);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.025);
  }

  .footer-nav .footer-title {
    grid-column: 1 / -1;
  }

  .footer-nav a {
    width: 100%;
    min-height: 34px;
    padding: 0 10px;
    border: 1px solid rgba(255, 122, 24, 0.14);
    border-radius: 999px;
    background: rgba(255, 122, 24, 0.035);
  }

  .footer-contacts {
    grid-column: auto;
    margin-top: 0;
    padding: 16px;
    border: 1px solid rgba(255, 122, 24, 0.18);
    border-radius: 8px;
    background:
      radial-gradient(circle at 100% 0%, rgba(255, 122, 24, 0.12), transparent 130px),
      rgba(255, 122, 24, 0.035);
  }

  .footer-title {
    margin-bottom: 4px;
    font-size: 12px;
  }

  .footer-nav a,
  .footer-contacts a {
    font-size: 13px;
  }

  .footer-phone {
    font-size: 18px !important;
  }

  .footer-messengers {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .footer-messengers a {
    width: 100%;
    min-height: 38px;
    padding: 0 13px 0 11px;
    font-size: 12.5px;
  }

  .footer-messengers svg {
    width: 17px;
    height: 17px;
    flex-basis: 17px;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 11px;
    padding: 18px 24px 24px;
    background: rgba(255, 255, 255, 0.018);
  }

  .footer-legal {
    justify-content: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .footer-copyright,
  .footer-requisites,
  .footer-legal a {
    font-size: 12px;
  }

  .footer-requisites {
    text-align: left;
    white-space: normal;
    line-height: 1.6;
  }

  .footer-privacy-note {
    max-width: none;
    margin-top: 10px;
    font-size: 9.8px;
    line-height: 1.45;
  }

}

@media (max-width: 430px) {
  .hero-visual {
    min-height: clamp(270px, 72vw, 312px);
    margin-right: 0;
    margin-left: 0;
  }

  .hero-visual__image {
    top: 0;
    width: 100%;
  }

  .manifest-section {
    min-height: 0;
    height: auto;
  }

  .manifest-composition {
    left: auto;
    width: min(340px, 92vw);
    min-height: auto;
    margin: -6px auto -4px;
    transform: none;
  }

  .manifest-art {
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .manifest-copy {
    left: 27%;
    top: 8%;
    width: 37%;
    transform: none;
  }

  .manifest-white,
  .manifest-accent {
    font-size: 17px;
  }

  .manifest-description {
    font-size: 8px;
  }

  .footer-main,
  .footer-bottom {
    padding-right: 20px;
    padding-left: 20px;
  }
}

@keyframes architectureDrift {
  0% {
    transform: translate3d(-4px, 0, 0);
    opacity: 0.28;
  }

  100% {
    transform: translate3d(8px, -8px, 0);
    opacity: 0.42;
  }
}

@keyframes heroArchitectureBreathe {
  0% {
    transform: translate3d(-3px, 2px, 0);
    opacity: 0.42;
  }

  100% {
    transform: translate3d(8px, -6px, 0);
    opacity: 0.56;
  }
}

@keyframes manifestSmokeDrift {
  0% {
    transform: translate3d(-10px, 8px, 0) scale(1);
    opacity: 0.56;
  }

  100% {
    transform: translate3d(12px, -10px, 0) scale(1.04);
    opacity: 0.76;
  }
}

@keyframes manifestLightMove {
  0% {
    transform: translate3d(-4px, 0, 0);
    opacity: 0.2;
  }

  100% {
    transform: translate3d(8px, -6px, 0);
    opacity: 0.3;
  }
}

@keyframes manifestTextIn {
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes manifestAccentGlow {
  0% {
    filter: drop-shadow(0 0 0 rgba(255, 106, 0, 0));
  }

  55% {
    filter: drop-shadow(0 0 28px rgba(255, 106, 0, 0.38));
  }

  100% {
    filter: drop-shadow(0 0 18px rgba(255, 106, 0, 0.2));
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    scroll-behavior: auto !important;
    transition: none !important;
  }

  .hero-content .eyebrow,
  .hero-title,
  .hero-lead,
  .hero-actions,
  .manifest-copy > * {
    opacity: 1;
    filter: none;
    transform: none;
  }
}
