@font-face {
  font-family: "Cormorant Garamond";
  src: url("../../fonts/CormorantGaramond-VariableFont_wght.ttf") format("truetype");
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("../../fonts/CormorantGaramond-Italic-VariableFont_wght.ttf") format("truetype");
  font-weight: 300 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../../fonts/Inter-VariableFont_opsz,wght.ttf") format("truetype");
  font-weight: 300 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "JetBrains Mono";
  src: url("../../fonts/JetBrainsMono-VariableFont_wght.ttf") format("truetype");
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --graphite-deep: #070b12;
  --graphite-1: #0a0e16;
  --graphite-2: #10141c;
  --graphite-line: #2a303a;
  --gold-deep: #a58748;
  --gold: #c9a961;
  --gold-bright: #e6c97a;
  --pearl: #f5f0e8;
  --pearl-dim: #d8d0c2;
  --pearl-mute: #9b948a;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "JetBrains Mono", Consolas, monospace;
  --container: 1280px;
  --pad-x: 60px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
  background: var(--graphite-deep);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--graphite-deep);
  color: var(--pearl-dim);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

button {
  border: 0;
  background: none;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 56px;
  padding: 16px 32px;
  border-radius: 2px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  transition:
    transform 350ms var(--ease),
    border-color 350ms var(--ease),
    color 350ms var(--ease),
    background 350ms var(--ease),
    box-shadow 350ms var(--ease);
}

.btn-primary {
  border: 1px solid rgba(230, 201, 122, .75);
  background: linear-gradient(180deg, #e6c97a 0%, #c9a961 48%, #a88a4a 100%);
  color: #0a0c10;
  box-shadow:
    inset 0 1px 0 rgba(255, 236, 190, .45),
    inset 0 -1px 0 rgba(0, 0, 0, .22),
    0 16px 36px -14px rgba(201, 169, 97, .58),
    0 0 0 1px rgba(201, 169, 97, .14);
  text-shadow: 0 1px 0 rgba(255, 255, 255, .12);
}

.btn-primary:hover {
  transform: translateY(-2px);
  border-color: rgba(240, 214, 137, .88);
  background: linear-gradient(180deg, #f0d689 0%, #d9b96e 48%, #b89559 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 240, 200, .55),
    inset 0 -1px 0 rgba(0, 0, 0, .22),
    0 20px 42px -12px rgba(201, 169, 97, .6),
    0 0 0 1px rgba(230, 201, 122, .25);
}

.btn-ghost {
  border: 1px solid rgba(216, 208, 194, .16);
  background: rgba(7, 11, 18, .18);
  color: var(--pearl);
}

.btn-ghost:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
  color: var(--gold-bright);
}

.arr {
  display: inline-block;
  transition: transform 350ms var(--ease);
}

.btn:hover .arr {
  transform: translateX(4px);
}

.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 40px;
  min-height: 104px;
  padding: 22px var(--pad-x);
  border-bottom: 1px solid transparent;
  background: rgba(7, 11, 18, .58);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  transition:
    min-height 350ms var(--ease),
    padding 350ms var(--ease),
    background 350ms var(--ease),
    border-color 350ms var(--ease);
}

.nav.scrolled {
  min-height: 78px;
  padding-block: 14px;
  border-bottom-color: rgba(216, 208, 194, .09);
  background: rgba(7, 11, 18, .92);
}

.nav-logo {
  display: flex;
  align-items: center;
  width: 324px;
  transition: opacity 300ms var(--ease), width 350ms var(--ease);
}

.nav-logo:hover {
  opacity: .86;
}

.nav-logo img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 14px rgba(201, 169, 97, .22));
  transition:
    filter 300ms var(--ease),
    transform 300ms var(--ease);
}

.nav.scrolled .nav-logo {
  width: 250px;
}

.nav-menu {
  display: flex;
  justify-content: center;
  gap: 38px;
  color: var(--pearl-mute);
  font-family: var(--sans);
  font-size: 12px;
  text-transform: uppercase;
}

.nav-menu a {
  position: relative;
  transition: color 300ms var(--ease);
}

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

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transform: translateX(-50%);
  transition: width 350ms var(--ease);
}

.nav-menu a:hover::after {
  width: 100%;
}

.nav-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
  margin-left: auto;
}

.nav-cabinet {
  padding-right: 28px;
  border-right: 1px solid var(--graphite-line);
  color: var(--pearl-mute);
  font-size: 12px;
  text-transform: uppercase;
  transition: color 300ms var(--ease);
}

.nav-cabinet:hover {
  color: var(--gold-bright);
}

.nav .btn {
  min-height: 46px;
  padding: 12px 24px;
  font-size: 11px;
}

.nav-burger {
  position: relative;
  display: none;
  width: 34px;
  height: 24px;
}

.nav-burger span {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--pearl);
  transition: all 350ms var(--ease);
}

.nav-burger span:nth-child(1) {
  top: 0;
}

.nav-burger span:nth-child(2) {
  top: 50%;
}

.nav-burger span:nth-child(3) {
  bottom: 0;
}

.nav-burger.open span:nth-child(1) {
  top: 50%;
  transform: rotate(45deg);
}

.nav-burger.open span:nth-child(2) {
  opacity: 0;
}

.nav-burger.open span:nth-child(3) {
  bottom: 50%;
  transform: rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 32px;
  background: rgba(7, 11, 18, .97);
  -webkit-backdrop-filter: blur(22px);
  backdrop-filter: blur(22px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 400ms var(--ease);
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu a {
  color: var(--pearl);
  font-family: var(--serif);
  font-size: 32px;
  line-height: 1.1;
  text-align: center;
  transition: color 300ms var(--ease);
}

.mobile-menu a:hover {
  color: var(--gold-bright);
}

.mobile-menu .btn {
  font-family: var(--sans);
  font-size: 12px;
}

.hero {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 100vh;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 180px var(--pad-x) 120px;
  background: #060a11;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("../../fons/Фон для HERO.png");
  background-position: center;
  background-size: cover;
  opacity: .78;
  filter: saturate(.92) brightness(.82) contrast(1.04);
  transform: scale(1.02);
}

.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 62% 54% at 50% 48%, rgba(7, 11, 18, .26), rgba(7, 11, 18, .52) 58%, rgba(3, 5, 9, .78) 100%),
    linear-gradient(180deg, rgba(3, 5, 9, .54), rgba(3, 5, 9, .2) 42%, rgba(3, 5, 9, .58));
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image:
    linear-gradient(to right, rgba(201, 169, 97, .026) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(201, 169, 97, .026) 1px, transparent 1px);
  background-size: 96px 96px;
  -webkit-mask-image: radial-gradient(ellipse 75% 70% at 50% 50%, black 25%, transparent 88%);
  mask-image: radial-gradient(ellipse 75% 70% at 50% 50%, black 25%, transparent 88%);
}

.hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  opacity: .9;
  mix-blend-mode: screen;
}

.hero-canvas .sweep {
  transform-origin: 960px 540px;
  animation: sweepRotate 16s linear infinite;
}

.hero-canvas .topo path {
  animation: topoBreathe 14s ease-in-out infinite;
}

.hero-canvas .topo path:nth-child(2n) {
  animation-delay: -3s;
  animation-duration: 18s;
}

.hero-canvas .topo path:nth-child(3n) {
  animation-delay: -6s;
  animation-duration: 22s;
}

.hero-canvas .pulse-ring {
  transform-origin: 960px 540px;
  animation: pulseRing 3s ease-out infinite;
}

.hero-canvas .star-blink {
  fill: #e6c97a;
  animation: starBlink 4s ease-in-out infinite;
}

.hero-content {
  position: relative;
  z-index: 5;
  width: min(100%, 920px);
  margin: 0 auto;
  text-align: center;
}

.hero-content::before {
  content: "";
  position: absolute;
  inset: -42px -128px;
  z-index: -1;
  background: radial-gradient(ellipse 75% 70% at 50% 50%, rgba(7, 11, 18, .74) 0%, rgba(7, 11, 18, .44) 42%, transparent 80%);
  pointer-events: none;
}

.hero h1 {
  margin: 0 0 32px;
  color: var(--pearl);
  font-family: var(--serif);
  font-size: 74px;
  font-weight: 400;
  line-height: 1.06;
  animation: fadeUp 1s var(--ease) .35s both;
}

.hero h1 .line {
  display: block;
  white-space: nowrap;
}

.hero h1 em {
  color: var(--gold);
  font-style: italic;
  font-weight: 400;
}

.hero h1 .dot {
  color: var(--gold);
}

.hero-sub {
  max-width: 820px;
  margin: 0 auto 28px;
  color: var(--pearl-dim);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.7;
  animation: fadeUp 1s var(--ease) .55s both;
}

.hero-status {
  max-width: 720px;
  margin: 0 auto 56px;
  color: var(--pearl-mute);
  font-size: 14px;
  font-style: italic;
  line-height: 1.7;
  animation: fadeUp 1s var(--ease) .7s both;
}

.hero-meta {
  display: flex;
  width: max-content;
  max-width: 100%;
  align-items: center;
  justify-content: center;
  gap: 36px;
  margin: 0 auto 56px;
  animation: fadeUp 1s var(--ease) .85s both;
}

.hero-meta-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 0 4px;
}

.hero-meta-item .lab {
  color: var(--pearl);
  font-size: 13px;
  white-space: nowrap;
}

.hero-meta-divider {
  width: 1px;
  height: 36px;
  flex-shrink: 0;
  background: var(--graphite-line);
}

.hero-cta {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  animation: fadeUp 1s var(--ease) 1s both;
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  z-index: 6;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  color: var(--pearl-mute);
  font-family: var(--mono);
  font-size: 10px;
  opacity: .74;
  text-transform: uppercase;
  transform: translateX(-50%);
  animation: fadeIn 1.5s var(--ease) 1.6s both;
}

.hero-scroll-line {
  position: relative;
  width: 1px;
  height: 50px;
  overflow: hidden;
  background: linear-gradient(to bottom, transparent, var(--gold));
}

.hero-scroll-line::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 12px;
  background: var(--gold);
  animation: scrollDot 2.4s ease-in-out infinite;
}

.tasks-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding: 140px 0;
  background: #060a11;
  isolation: isolate;
}

.tasks-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image: url("../../fons/Абстрактная волна поток данных.png");
  background-position: center;
  background-size: cover;
  opacity: .42;
  filter: saturate(.78) brightness(.48) contrast(1.08);
  transform: scale(1.02);
}

.tasks-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse 62% 54% at 50% 48%, rgba(7, 11, 18, .58), rgba(7, 11, 18, .76) 58%, rgba(3, 5, 9, .94) 100%),
    linear-gradient(180deg, rgba(3, 5, 9, .82), rgba(3, 5, 9, .52) 42%, rgba(3, 5, 9, .86));
  pointer-events: none;
}

.tasks-grid-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(to right, rgba(201, 169, 97, .026) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(201, 169, 97, .026) 1px, transparent 1px);
  background-size: 96px 96px;
  -webkit-mask-image: radial-gradient(ellipse 75% 70% at 50% 50%, black 25%, transparent 88%);
  mask-image: radial-gradient(ellipse 75% 70% at 50% 50%, black 25%, transparent 88%);
  pointer-events: none;
}

.tasks-head {
  position: relative;
  display: grid;
  grid-template-columns: minmax(120px, auto) 1fr;
  gap: 56px;
  align-items: start;
  max-width: var(--container);
  margin: 0 auto 72px;
  padding: 0 var(--pad-x);
}

.tasks-title {
  max-width: 940px;
  margin: 0;
  color: var(--pearl);
  font-family: var(--serif);
  font-size: 60px;
  font-weight: 400;
  line-height: 1.05;
}

.tasks-title em {
  color: var(--gold);
  font-style: italic;
  font-weight: 400;
}

.tasks-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 56px 40px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

.task-card {
  position: relative;
  min-height: 190px;
  padding: 28px 16px 16px 0;
  border-top: 1px solid rgba(201, 169, 97, .18);
  transition:
    border-color 500ms var(--ease),
    transform 500ms var(--ease);
}

.task-card-glow {
  position: absolute;
  top: -1px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  opacity: 1;
  transition: width 550ms var(--ease);
}

.task-card h3 {
  margin: 0 0 14px;
  color: var(--pearl);
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.22;
  transition: color 400ms var(--ease);
}

.task-card p {
  margin: 0;
  color: var(--pearl-mute);
  font-family: var(--sans);
  font-size: 14.5px;
  font-weight: 300;
  line-height: 1.65;
}

.task-card:hover {
  border-top-color: rgba(201, 169, 97, .5);
}

.task-card:hover .task-card-glow {
  width: 72px;
}

.task-card:hover h3 {
  color: var(--gold-bright);
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 1s var(--ease),
    transform 1s var(--ease);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.reveal-d2 {
  transition-delay: .12s;
}

.reveal-d3 {
  transition-delay: .22s;
}

.outcomes-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding: 140px 0;
  background: #060a11;
  isolation: isolate;
}

.outcomes-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image: url("../../fons/фон для подложек и карточек.png");
  background-position: center;
  background-size: cover;
  opacity: .68;
  filter: saturate(.86) brightness(.68) contrast(1.06);
  transform: scale(1.02);
}

.outcomes-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse 62% 54% at 50% 44%, rgba(7, 11, 18, .38), rgba(7, 11, 18, .62) 58%, rgba(3, 5, 9, .86) 100%),
    linear-gradient(180deg, rgba(3, 5, 9, .66), rgba(3, 5, 9, .34) 42%, rgba(3, 5, 9, .72));
  pointer-events: none;
}

.outcomes-grid-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(to right, rgba(201, 169, 97, .024) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(201, 169, 97, .024) 1px, transparent 1px);
  background-size: 96px 96px;
  -webkit-mask-image: radial-gradient(ellipse 75% 70% at 50% 50%, black 25%, transparent 88%);
  mask-image: radial-gradient(ellipse 75% 70% at 50% 50%, black 25%, transparent 88%);
  pointer-events: none;
}

.outcomes-head {
  position: relative;
  display: grid;
  grid-template-columns: minmax(120px, auto) 1fr;
  gap: 56px;
  align-items: start;
  max-width: var(--container);
  margin: 0 auto 72px;
  padding: 0 var(--pad-x);
}

.outcomes-title {
  max-width: 940px;
  margin: 0;
  color: var(--pearl);
  font-family: var(--serif);
  font-size: 60px;
  font-weight: 400;
  line-height: 1.05;
}

.outcomes-title em {
  color: var(--gold);
  font-style: italic;
  font-weight: 400;
}

.outcomes-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

.outcome-card {
  position: relative;
  min-height: 315px;
  overflow: hidden;
  isolation: isolate;
  padding: 52px 36px 40px;
  border: 1px solid rgba(45, 52, 61, .64);
  border-radius: 2px;
  background:
    linear-gradient(180deg, rgba(22, 26, 33, .74) 0%, rgba(15, 18, 23, .74) 100%),
    rgba(7, 11, 18, .62);
  box-shadow: 0 24px 60px -24px rgba(0, 0, 0, .38);
  transition:
    border-color 500ms var(--ease),
    background 500ms var(--ease),
    box-shadow 500ms var(--ease),
    transform 500ms var(--ease);
}

.outcome-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  border-radius: 2px;
  background:
    linear-gradient(180deg, rgba(201, 169, 97, 0), rgba(201, 169, 97, 0)) padding-box,
    linear-gradient(180deg, rgba(201, 169, 97, .18), rgba(201, 169, 97, .04) 40%, transparent 80%) border-box;
  -webkit-mask: linear-gradient(#000, #000) padding-box, linear-gradient(#000, #000);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  pointer-events: none;
  transition: opacity 500ms var(--ease);
}

.outcome-card-corners span {
  position: absolute;
  width: 12px;
  height: 12px;
  border: 1px solid var(--gold);
  opacity: .35;
  transition: all 500ms var(--ease);
}

.outcome-card-corners .tl {
  top: -1px;
  left: -1px;
  border-right: 0;
  border-bottom: 0;
}

.outcome-card-corners .tr {
  top: -1px;
  right: -1px;
  border-left: 0;
  border-bottom: 0;
}

.outcome-card-corners .bl {
  bottom: -1px;
  left: -1px;
  border-top: 0;
  border-right: 0;
}

.outcome-card-corners .br {
  right: -1px;
  bottom: -1px;
  border-top: 0;
  border-left: 0;
}

.outcome-card-glow {
  position: absolute;
  top: 0;
  left: 50%;
  width: 70%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold) 50%, transparent);
  opacity: .25;
  transform: translateX(-50%);
  transition: opacity 500ms var(--ease);
}

.outcome-card-mark {
  position: absolute;
  top: 38px;
  right: 36px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: .55;
  transition:
    opacity 500ms var(--ease),
    transform 500ms var(--ease);
}

.outcome-card-mark svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1;
}

.outcome-card-num {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  color: var(--pearl-mute);
  font-family: var(--mono);
  font-size: 11px;
}

.outcome-card-num::after {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--pearl-mute);
  transition:
    width 500ms var(--ease),
    background 500ms var(--ease);
}

.outcome-card h3 {
  margin: 0 0 18px;
  color: var(--pearl);
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.18;
  transition: color 400ms var(--ease);
}

.outcome-card p {
  margin: 0;
  color: var(--pearl-mute);
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
}

.outcome-card:hover {
  border-color: rgba(201, 169, 97, .35);
  background:
    linear-gradient(180deg, rgba(28, 32, 40, .86) 0%, rgba(18, 22, 28, .86) 100%),
    rgba(7, 11, 18, .72);
  box-shadow:
    0 24px 60px -20px rgba(0, 0, 0, .5),
    0 0 0 1px rgba(201, 169, 97, .04) inset;
  transform: translateY(-4px);
}

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

.outcome-card:hover .outcome-card-corners span {
  width: 16px;
  height: 16px;
  opacity: 1;
}

.outcome-card:hover .outcome-card-glow {
  opacity: .9;
}

.outcome-card:hover .outcome-card-num {
  color: var(--gold);
}

.outcome-card:hover .outcome-card-num::after {
  width: 40px;
  background: var(--gold);
}

.outcome-card:hover h3 {
  color: var(--gold-bright);
}

.outcome-card:hover .outcome-card-mark {
  opacity: 1;
  transform: rotate(-45deg);
}

.model-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding: 58px 0 48px;
  background:
    radial-gradient(ellipse 70% 58% at 42% 48%, rgba(18, 26, 38, .86), rgba(8, 12, 20, .86) 54%, #05080d 100%),
    linear-gradient(180deg, #080c14 0%, #070b12 52%, #05080d 100%);
  isolation: isolate;
}

.model-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -4;
  background:
    radial-gradient(circle at 33% 51%, rgba(212, 175, 55, .14), transparent 24%),
    radial-gradient(ellipse 42% 20% at 19% 98%, rgba(212, 175, 55, .14), transparent 62%),
    radial-gradient(ellipse 50% 32% at 76% 42%, rgba(42, 52, 72, .28), transparent 68%);
  opacity: .96;
  pointer-events: none;
}

.model-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image:
    linear-gradient(to right, rgba(212, 175, 55, .018) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(212, 175, 55, .014) 1px, transparent 1px);
  background-size: 96px 96px;
  -webkit-mask-image: radial-gradient(ellipse 80% 76% at 50% 52%, black 18%, transparent 88%);
  mask-image: radial-gradient(ellipse 80% 76% at 50% 52%, black 18%, transparent 88%);
  pointer-events: none;
}

.model-background-arcs {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
}

.model-background-arcs::before,
.model-background-arcs::after {
  content: "";
  position: absolute;
  width: 820px;
  aspect-ratio: 1;
  border: 1px solid rgba(212, 175, 55, .13);
  border-radius: 50%;
  opacity: .5;
}

.model-background-arcs::before {
  top: -430px;
  left: -260px;
  box-shadow: inset 0 0 0 86px rgba(212, 175, 55, .018);
}

.model-background-arcs::after {
  right: -360px;
  bottom: -470px;
  box-shadow: inset 0 0 0 92px rgba(212, 175, 55, .015);
}

.model-grain {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .2;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(245, 240, 232, .08) 0 1px, transparent 1px),
    radial-gradient(circle at 78% 20%, rgba(212, 175, 55, .12) 0 1px, transparent 1px),
    radial-gradient(circle at 55% 76%, rgba(245, 240, 232, .06) 0 1px, transparent 1px);
  background-size: 180px 180px, 260px 260px, 220px 220px;
}

.model-head {
  max-width: 1420px;
  margin: 0 auto 32px;
  padding: 0 var(--pad-x);
  text-align: center;
}

.model-title {
  margin: 0;
  color: var(--pearl);
  font-family: var(--serif);
  font-size: clamp(50px, 4.6vw, 74px);
  font-weight: 400;
  line-height: .96;
}

.model-title em {
  color: var(--gold);
  font-style: italic;
  font-weight: 400;
}

.model-layout {
  display: grid;
  grid-template-columns: minmax(0, .98fr) minmax(0, 1.02fr);
  gap: 48px;
  align-items: center;
  max-width: 1420px;
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

.model-diagram {
  position: relative;
  width: min(540px, 100%);
  aspect-ratio: 1;
  margin: 0 auto;
  color: var(--pearl-dim);
}

.model-diagram-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}

.model-diagram-ring {
  fill: none;
  stroke: rgba(212, 175, 55, .15);
  stroke-width: .9;
}

.model-diagram-ring--dotted {
  stroke: rgba(212, 175, 55, .26);
  stroke-dasharray: 2 8;
  stroke-width: .85;
}

.model-diagram-ray {
  stroke: rgba(212, 175, 55, .32);
  stroke-width: .85;
}

.model-diagram-axis {
  stroke: rgba(245, 240, 232, .08);
  stroke-width: .7;
}

.model-center {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 138px;
  height: 138px;
  border: 1px solid rgba(212, 175, 55, .36);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(212, 175, 55, .22), rgba(212, 175, 55, .06) 42%, rgba(8, 12, 20, .82) 72%),
    rgba(8, 12, 20, .68);
  box-shadow:
    0 0 70px rgba(212, 175, 55, .2),
    0 0 132px rgba(212, 175, 55, .09),
    inset 0 0 36px rgba(212, 175, 55, .11);
  transform: translate(-50%, -50%);
}

.model-center::before,
.model-center::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(212, 175, 55, .18);
  border-radius: 50%;
  pointer-events: none;
}

.model-center::before {
  inset: -18px;
}

.model-center::after {
  inset: -34px;
  opacity: .54;
}

.model-center-text {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
  justify-items: center;
  text-align: center;
}

.model-center-brand {
  color: var(--gold-bright);
  font-family: var(--serif);
  font-size: 31px;
  font-style: italic;
  line-height: 1;
}

.model-center-label {
  color: rgba(230, 201, 122, .82);
  font-family: var(--mono);
  font-size: 10px;
  line-height: 1.2;
  text-transform: lowercase;
}

.model-node {
  position: absolute;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--pearl);
  transform: translate(-50%, -50%);
  transition:
    color 420ms var(--ease),
    transform 420ms var(--ease);
}

.model-node-label {
  position: absolute;
  color: currentColor;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.1;
  white-space: nowrap;
  text-shadow: 0 8px 24px rgba(0, 0, 0, .92);
}

.model-node-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(212, 175, 55, .48);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(212, 175, 55, .18), rgba(8, 12, 20, .72) 68%),
    rgba(12, 16, 23, .72);
  box-shadow:
    0 0 24px rgba(212, 175, 55, .14),
    inset 0 0 20px rgba(212, 175, 55, .06);
  transition:
    border-color 420ms var(--ease),
    box-shadow 420ms var(--ease),
    transform 420ms var(--ease);
}

.model-node svg {
  width: 22px;
  height: 22px;
  color: rgba(212, 175, 55, .94);
  stroke: currentColor;
  stroke-width: 1.6;
  fill: none;
}

.model-node:hover,
.model-node.is-active {
  color: var(--gold-bright);
  transform: translate(-50%, -50%) translateY(-2px);
}

.model-node:hover .model-node-icon,
.model-node.is-active .model-node-icon {
  border-color: rgba(230, 201, 122, .78);
  box-shadow:
    0 0 34px rgba(212, 175, 55, .24),
    inset 0 0 24px rgba(212, 175, 55, .1);
}

.model-node--company {
  left: 50%;
  top: 13.9%;
}

.model-node--market {
  left: 81.3%;
  top: 31.9%;
}

.model-node--team {
  left: 81.3%;
  top: 68.1%;
}

.model-node--process {
  left: 50%;
  top: 86.1%;
}

.model-node--strategy {
  left: 18.7%;
  top: 68.1%;
}

.model-node--ai {
  left: 18.7%;
  top: 31.9%;
}

.model-node--company .model-node-label {
  bottom: calc(100% + 13px);
  left: 50%;
  transform: translateX(-50%);
}

.model-node--market .model-node-label,
.model-node--team .model-node-label {
  top: 50%;
  left: calc(100% + 16px);
  transform: translateY(-50%);
}

.model-node--process .model-node-label {
  top: calc(100% + 13px);
  left: 50%;
  transform: translateX(-50%);
}

.model-node--strategy .model-node-label,
.model-node--ai .model-node-label {
  top: 50%;
  right: calc(100% + 16px);
  transform: translateY(-50%);
}

.model-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.model-card {
  position: relative;
  min-height: 122px;
  overflow: hidden;
  padding: 20px 24px 18px;
  border: 1px solid rgba(212, 175, 55, .26);
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(21, 28, 40, .76), rgba(12, 16, 23, .78) 62%, rgba(8, 12, 20, .82)),
    rgba(12, 16, 23, .78);
  box-shadow:
    0 22px 70px -42px rgba(0, 0, 0, .86),
    inset 0 1px 0 rgba(245, 240, 232, .035);
  transition:
    border-color 420ms var(--ease),
    box-shadow 420ms var(--ease),
    transform 420ms var(--ease);
}

.model-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(230, 201, 122, .16), transparent 14%),
    linear-gradient(180deg, rgba(245, 240, 232, .035), transparent 45%);
  opacity: .7;
  pointer-events: none;
}

.model-card::after {
  content: "";
  position: absolute;
  left: 24px;
  bottom: 16px;
  width: 26px;
  height: 1px;
  background: var(--gold);
  opacity: .9;
}

.model-card:hover,
.model-card.is-active {
  border-color: rgba(230, 201, 122, .58);
  box-shadow:
    0 26px 76px -38px rgba(0, 0, 0, .9),
    0 0 34px rgba(212, 175, 55, .09),
    inset 0 1px 0 rgba(245, 240, 232, .055);
  transform: translateY(-2px);
}

.model-card-icon {
  position: absolute;
  top: 18px;
  right: 22px;
  z-index: 1;
  color: rgba(212, 175, 55, .88);
}

.model-card-icon svg {
  width: 34px;
  height: 34px;
  stroke: currentColor;
  stroke-width: 1.45;
  fill: none;
}

.model-card h3 {
  position: relative;
  z-index: 1;
  max-width: calc(100% - 52px);
  margin: 0 0 10px;
  color: var(--pearl);
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.04;
}

.model-card p {
  position: relative;
  z-index: 1;
  max-width: 390px;
  margin: 0;
  padding-bottom: 10px;
  color: var(--pearl-mute);
  font-size: 14px;
  line-height: 1.58;
}

.tech-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding: 56px 0 46px;
  background: #05080d;
  isolation: isolate;
}

.tech-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -5;
  background-image: url("../../fons/Технологи и интерфейсы.png");
  background-position: center;
  background-size: cover;
  opacity: .78;
  filter: saturate(.92) brightness(.7) contrast(1.08);
  transform: scale(1.015);
}

.tech-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -4;
  background:
    radial-gradient(ellipse 56% 44% at 45% 46%, rgba(8, 12, 20, .18), rgba(8, 12, 20, .58) 62%, rgba(3, 5, 9, .88) 100%),
    linear-gradient(90deg, rgba(3, 5, 9, .72), rgba(3, 5, 9, .32) 48%, rgba(3, 5, 9, .74)),
    linear-gradient(180deg, rgba(3, 5, 9, .7), rgba(3, 5, 9, .28) 42%, rgba(3, 5, 9, .78));
  pointer-events: none;
}

.tech-grid-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image:
    linear-gradient(to right, rgba(212, 175, 55, .025) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(212, 175, 55, .02) 1px, transparent 1px);
  background-size: 92px 92px;
  -webkit-mask-image: radial-gradient(ellipse 82% 76% at 50% 54%, black 24%, transparent 90%);
  mask-image: radial-gradient(ellipse 82% 76% at 50% 54%, black 24%, transparent 90%);
  pointer-events: none;
}

.tech-glow {
  position: absolute;
  inset: auto auto -28% -10%;
  z-index: -2;
  width: 760px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, .16), rgba(212, 175, 55, .05) 34%, transparent 70%);
  opacity: .78;
  filter: blur(4px);
  pointer-events: none;
}

.tech-container {
  position: relative;
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

.tech-head {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: 52px;
  align-items: end;
  margin-bottom: 32px;
}

.tech-title {
  margin: 0;
  color: var(--pearl);
  font-family: var(--serif);
  font-size: clamp(50px, 4.7vw, 76px);
  font-weight: 400;
  line-height: .98;
}

.tech-title em {
  color: var(--gold);
  font-style: italic;
  font-weight: 400;
}

.tech-text-row {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: 52px;
  align-items: start;
  margin-bottom: 30px;
}

.tech-lead {
  max-width: 620px;
  margin: 0;
  color: var(--pearl);
  font-family: var(--serif);
  font-size: clamp(25px, 2.05vw, 34px);
  font-weight: 400;
  line-height: 1.24;
}

.tech-lead em {
  color: var(--gold-bright);
  font-style: italic;
}

.tech-copy {
  max-width: 620px;
  margin: 0;
  color: var(--pearl-dim);
  font-size: 16px;
  line-height: 1.72;
}

.tech-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  align-items: center;
  max-width: 1060px;
  margin: 0 auto 30px;
}

.tech-flow-card {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 96px;
  padding: 24px 22px;
  border: 1px solid rgba(212, 175, 55, .25);
  border-radius: 14px;
  background:
    linear-gradient(145deg, rgba(22, 29, 40, .72), rgba(10, 14, 21, .8)),
    rgba(12, 16, 23, .76);
  color: var(--pearl);
  font-family: var(--serif);
  font-size: 25px;
  line-height: 1.1;
  text-align: center;
  box-shadow:
    0 22px 70px -42px rgba(0, 0, 0, .9),
    inset 0 1px 0 rgba(245, 240, 232, .035);
  transition:
    border-color 420ms var(--ease),
    box-shadow 420ms var(--ease),
    transform 420ms var(--ease);
}

.tech-flow-card--active {
  border-color: rgba(230, 201, 122, .68);
  color: var(--gold-bright);
  box-shadow:
    0 22px 76px -40px rgba(0, 0, 0, .9),
    0 0 34px rgba(212, 175, 55, .14),
    inset 0 0 24px rgba(212, 175, 55, .05);
}

.tech-flow-card:hover {
  border-color: rgba(230, 201, 122, .62);
  box-shadow:
    0 28px 76px -42px rgba(0, 0, 0, .92),
    0 0 32px rgba(212, 175, 55, .1);
  transform: translateY(-2px);
}

.tech-flow-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 30px;
  height: 1px;
  background: linear-gradient(90deg, rgba(212, 175, 55, .12), rgba(230, 201, 122, .9));
  transform: translateY(-50%);
  pointer-events: none;
}

.tech-flow-arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 9px;
  height: 9px;
  border-top: 1px solid rgba(230, 201, 122, .9);
  border-right: 1px solid rgba(230, 201, 122, .9);
  transform: translateY(-50%) rotate(45deg);
}

.tech-flow-arrow--one {
  left: calc(33.333% - 15px);
}

.tech-flow-arrow--two {
  left: calc(66.666% - 15px);
}

.tech-module-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}

.tech-module-card {
  position: relative;
  min-height: 170px;
  overflow: hidden;
  padding: 24px 25px 22px;
  border: 1px solid rgba(212, 175, 55, .26);
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(18, 25, 36, .78), rgba(10, 14, 21, .82) 64%, rgba(8, 12, 20, .84)),
    rgba(13, 18, 27, .86);
  box-shadow:
    0 22px 70px -44px rgba(0, 0, 0, .9),
    inset 0 1px 0 rgba(245, 240, 232, .04);
  backdrop-filter: blur(10px);
  transition:
    border-color 420ms var(--ease),
    box-shadow 420ms var(--ease),
    transform 420ms var(--ease);
}

.tech-module-card:nth-child(1),
.tech-module-card:nth-child(2),
.tech-module-card:nth-child(3) {
  grid-column: span 2;
}

.tech-module-card:nth-child(4),
.tech-module-card:nth-child(5) {
  grid-column: span 3;
}

.tech-module-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(230, 201, 122, .15), transparent 15%),
    linear-gradient(180deg, rgba(245, 240, 232, .03), transparent 48%);
  pointer-events: none;
}

.tech-module-card::after {
  content: "→";
  position: absolute;
  top: 20px;
  right: 24px;
  color: var(--gold-bright);
  font-family: var(--serif);
  font-size: 31px;
  line-height: 1;
  opacity: .88;
  transition:
    opacity 420ms var(--ease),
    transform 420ms var(--ease);
}

.tech-module-card:hover {
  border-color: rgba(230, 201, 122, .58);
  box-shadow:
    0 28px 76px -42px rgba(0, 0, 0, .92),
    0 0 34px rgba(212, 175, 55, .1),
    inset 0 1px 0 rgba(245, 240, 232, .06);
  transform: translateY(-2px);
}

.tech-module-card:hover::after {
  opacity: 1;
  transform: translateX(3px);
}

.tech-module-num {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
  color: var(--gold-bright);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
}

.tech-module-num::after {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: .9;
}

.tech-module-card h3 {
  position: relative;
  z-index: 1;
  max-width: calc(100% - 44px);
  margin: 0 0 10px;
  color: var(--pearl);
  font-family: var(--serif);
  font-size: 29px;
  font-weight: 400;
  line-height: 1.04;
}

.tech-module-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--pearl-dim);
  font-size: 15px;
  line-height: 1.58;
}

.pricing-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding: 58px 0 52px;
  background: #05080d;
  isolation: isolate;
}

.pricing-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -4;
  background-image: url("../../fons/Фон для крупных блоков.png");
  background-position: center;
  background-size: cover;
  opacity: .9;
  filter: saturate(.9) brightness(.72) contrast(1.08);
  transform: scale(1.015);
}

.pricing-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(ellipse 56% 42% at 50% 28%, rgba(212, 175, 55, .07), transparent 60%),
    linear-gradient(180deg, rgba(3, 5, 9, .58), rgba(3, 5, 9, .18) 34%, rgba(3, 5, 9, .7)),
    linear-gradient(90deg, rgba(3, 5, 9, .62), rgba(3, 5, 9, .24) 48%, rgba(3, 5, 9, .64));
  pointer-events: none;
}

.pricing-grain {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(to right, rgba(212, 175, 55, .018) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(212, 175, 55, .014) 1px, transparent 1px);
  background-size: 100px 100px;
  -webkit-mask-image: radial-gradient(ellipse 82% 70% at 50% 54%, black 18%, transparent 90%);
  mask-image: radial-gradient(ellipse 82% 70% at 50% 54%, black 18%, transparent 90%);
  pointer-events: none;
}

.pricing-container {
  position: relative;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

.pricing-head {
  max-width: 980px;
  margin: 0 auto 32px;
  text-align: center;
}

.pricing-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 12px;
  color: rgba(230, 201, 122, .76);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
  text-transform: uppercase;
}

.pricing-eyebrow::before,
.pricing-eyebrow::after {
  content: "";
  width: 44px;
  height: 1px;
  background: currentColor;
  opacity: .76;
}

.pricing-title {
  margin: 0;
  color: var(--pearl);
  font-family: var(--serif);
  font-size: clamp(38px, 3.25vw, 50px);
  font-weight: 400;
  line-height: 1.04;
  white-space: nowrap;
}

.pricing-subtitle {
  margin: 10px 0 0;
  color: var(--pearl-mute);
  font-size: 16px;
  line-height: 1.45;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.tariff-card,
.partner-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(243, 238, 230, .14);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(20, 26, 36, .78), rgba(8, 12, 20, .84) 62%, rgba(7, 10, 16, .88)),
    rgba(8, 12, 20, .82);
  box-shadow:
    0 24px 74px -46px rgba(0, 0, 0, .9),
    inset 0 1px 0 rgba(245, 240, 232, .04);
  backdrop-filter: blur(12px);
}

.tariff-card {
  display: flex;
  flex-direction: column;
  min-height: 670px;
  padding: 34px 32px 28px;
  transition:
    border-color 420ms var(--ease),
    box-shadow 420ms var(--ease),
    transform 420ms var(--ease);
}

.tariff-card::before,
.partner-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(230, 201, 122, .14), transparent 13%),
    linear-gradient(180deg, rgba(245, 240, 232, .03), transparent 48%);
  opacity: .75;
  pointer-events: none;
}

.tariff-card:hover {
  border-color: rgba(230, 201, 122, .44);
  box-shadow:
    0 28px 82px -44px rgba(0, 0, 0, .92),
    0 0 34px rgba(212, 175, 55, .08),
    inset 0 1px 0 rgba(245, 240, 232, .06);
  transform: translateY(-2px);
}

.tariff-card--featured {
  border-color: rgba(212, 175, 55, .65);
  background:
    linear-gradient(145deg, rgba(30, 29, 23, .76), rgba(10, 14, 21, .86) 58%, rgba(8, 12, 20, .9)),
    rgba(8, 12, 20, .82);
  box-shadow:
    0 30px 86px -42px rgba(0, 0, 0, .95),
    0 0 42px rgba(212, 175, 55, .18),
    inset 0 1px 0 rgba(230, 201, 122, .12);
  transform: translateY(-12px);
}

.tariff-card--featured:hover {
  box-shadow:
    0 36px 92px -42px rgba(0, 0, 0, .95),
    0 0 52px rgba(212, 175, 55, .24),
    inset 0 1px 0 rgba(230, 201, 122, .14);
  transform: translateY(-14px);
}

.tariff-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex: 1;
  flex-direction: column;
}

.tariff-title {
  margin: 0 0 13px;
  color: var(--pearl);
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 400;
  line-height: 1.04;
}

.tariff-card--featured .tariff-title {
  color: var(--gold-bright);
}

.tariff-price {
  margin: 0;
  color: var(--gold-bright);
  font-family: var(--serif);
  font-size: 27px;
  line-height: 1.1;
}

.tariff-meta {
  margin: 8px 0 0;
  color: var(--pearl-mute);
  font-size: 13px;
  line-height: 1.45;
}

.tariff-divider {
  width: 100%;
  height: 1px;
  margin: 20px 0 18px;
  background: linear-gradient(90deg, rgba(212, 175, 55, .3), rgba(245, 240, 232, .12), transparent);
}

.tariff-description {
  margin: 0;
  color: var(--pearl-dim);
  font-size: 14px;
  line-height: 1.6;
}

.tariff-result {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(212, 175, 55, .15);
}

.tariff-result p:not(.tariff-label) {
  margin: 0;
  color: var(--pearl-dim);
  font-size: 14px;
  line-height: 1.55;
}

.tariff-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 11px;
  color: var(--gold-bright);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}

.tariff-label::after {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: .7;
}

.tariff-list {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tariff-list li {
  position: relative;
  padding-left: 19px;
  color: var(--pearl-dim);
  font-size: 14px;
  line-height: 1.42;
}

.tariff-list li::before {
  content: "";
  position: absolute;
  top: .58em;
  left: 2px;
  width: 5px;
  height: 5px;
  border: 1px solid var(--gold-bright);
  transform: rotate(45deg);
}

.tariff-key-list {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(212, 175, 55, .15);
}

.tariff-actions {
  display: grid;
  gap: 10px;
  margin-top: auto;
  padding-top: 22px;
}

.pricing-details {
  position: relative;
}

.pricing-details summary,
.partner-details summary {
  list-style: none;
  cursor: pointer;
}

.pricing-details summary::-webkit-details-marker,
.partner-details summary::-webkit-details-marker {
  display: none;
}

.pricing-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  border: 1px solid rgba(243, 238, 230, .18);
  border-radius: 3px;
  color: var(--pearl);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  transition:
    border-color 320ms var(--ease),
    background 320ms var(--ease),
    box-shadow 320ms var(--ease),
    color 320ms var(--ease);
}

.pricing-btn:hover {
  border-color: rgba(230, 201, 122, .55);
  background: rgba(212, 175, 55, .06);
}

.pricing-btn--primary {
  border-color: rgba(230, 201, 122, .78);
  color: #101014;
  background: linear-gradient(180deg, rgba(248, 222, 135, .95), rgba(193, 150, 55, .95));
  box-shadow: 0 18px 44px -24px rgba(212, 175, 55, .75);
}

.pricing-btn--primary:hover {
  color: #090c12;
  box-shadow:
    0 22px 52px -24px rgba(212, 175, 55, .9),
    0 0 22px rgba(212, 175, 55, .13);
}

.pricing-details-panel {
  display: grid;
  gap: 16px;
  margin-top: 14px;
  padding: 18px;
  border: 1px solid rgba(212, 175, 55, .18);
  border-radius: 5px;
  background: rgba(5, 8, 13, .58);
}

.pricing-details-panel p {
  margin: 0;
  color: var(--pearl-dim);
  font-size: 14px;
  line-height: 1.56;
}

.pricing-details-panel strong {
  color: var(--pearl);
  font-weight: 500;
}

.partner-card {
  margin-top: 22px;
  padding: 28px 30px;
}

.partner-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(220px, .7fr) minmax(0, 1.1fr) minmax(280px, .9fr);
  gap: 34px;
  align-items: start;
}

.partner-mark {
  width: 24px;
  height: 24px;
  margin-bottom: 16px;
  border: 1px solid rgba(230, 201, 122, .84);
  transform: rotate(45deg);
  box-shadow: 0 0 22px rgba(212, 175, 55, .2);
}

.partner-title {
  margin: 0 0 12px;
  color: var(--pearl);
  font-family: var(--serif);
  font-size: 35px;
  font-weight: 400;
  line-height: 1.04;
}

.partner-actions {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.partner-details {
  grid-column: 1 / -1;
}

.partner-details[open] {
  margin-top: 6px;
}

.partner-details .pricing-details-panel {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.addons-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding: 72px 0;
  background: #05080d;
  isolation: isolate;
}

.addons-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -5;
  background-image: url("../../fons/Рост График.png");
  background-position: center;
  background-size: cover;
  opacity: .78;
  filter: saturate(.85) brightness(.66) contrast(1.08);
  transform: scale(1.015);
}

.addons-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -4;
  background:
    radial-gradient(ellipse 62% 50% at 50% 46%, rgba(8, 12, 20, .18), rgba(8, 12, 20, .56) 60%, rgba(3, 5, 9, .84) 100%),
    linear-gradient(90deg, rgba(3, 5, 9, .72), rgba(3, 5, 9, .28) 48%, rgba(3, 5, 9, .7)),
    linear-gradient(180deg, rgba(3, 5, 9, .62), rgba(3, 5, 9, .22) 42%, rgba(3, 5, 9, .76));
  pointer-events: none;
}

.addons-grid-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image:
    linear-gradient(to right, rgba(212, 175, 55, .018) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(212, 175, 55, .014) 1px, transparent 1px);
  background-size: 92px 92px;
  -webkit-mask-image: radial-gradient(ellipse 80% 74% at 50% 52%, black 20%, transparent 88%);
  mask-image: radial-gradient(ellipse 80% 74% at 50% 52%, black 20%, transparent 88%);
  pointer-events: none;
}

.addons-mist {
  position: absolute;
  inset: auto auto -32% -18%;
  z-index: -2;
  width: 780px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, .14), rgba(212, 175, 55, .04) 36%, transparent 72%);
  filter: blur(4px);
  opacity: .78;
  pointer-events: none;
}

.addons-container {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

.addons-head {
  max-width: 960px;
  margin: 0 auto 34px;
  text-align: center;
}

.addons-title {
  margin: 0;
  color: var(--pearl);
  font-family: var(--serif);
  font-size: clamp(50px, 5vw, 78px);
  font-weight: 400;
  line-height: 1.04;
}

.addons-title em {
  color: var(--gold);
  font-style: italic;
  font-weight: 400;
}

.addons-copy {
  max-width: 900px;
  margin: 18px auto 0;
  color: var(--pearl-dim);
  font-size: 16px;
  line-height: 1.72;
}

.addons-accordion {
  display: grid;
  gap: 9px;
  width: min(980px, 100%);
  margin: 0 auto;
}

.addon-category {
  overflow: hidden;
  border: 1px solid rgba(243, 238, 230, .1);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(18, 24, 34, .72), rgba(10, 14, 20, .86)),
    rgba(10, 14, 20, .8);
  box-shadow:
    0 20px 64px -44px rgba(0, 0, 0, .9),
    inset 0 1px 0 rgba(245, 240, 232, .035);
  backdrop-filter: blur(12px);
  transition:
    border-color 360ms var(--ease),
    box-shadow 360ms var(--ease),
    transform 360ms var(--ease);
}

.addon-category:hover {
  border-color: rgba(212, 175, 55, .35);
  transform: translateY(-1px);
}

.addon-category[open] {
  border-color: rgba(212, 175, 55, .55);
  background:
    linear-gradient(145deg, rgba(20, 25, 34, .82), rgba(8, 12, 20, .92)),
    rgba(10, 14, 20, .9);
  box-shadow:
    0 26px 72px -46px rgba(0, 0, 0, .94),
    0 0 32px rgba(212, 175, 55, .08),
    inset 0 1px 0 rgba(230, 201, 122, .08);
}

.addon-summary {
  position: relative;
  display: grid;
  grid-template-columns: 54px 54px 1fr 32px;
  gap: 14px;
  align-items: center;
  min-height: 78px;
  padding: 0 30px;
  color: var(--pearl);
  list-style: none;
  cursor: pointer;
}

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

.addon-summary::after {
  content: "+";
  justify-self: end;
  color: var(--gold-bright);
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1;
}

.addon-category[open] .addon-summary::after {
  content: "−";
}

.addon-num {
  color: var(--gold-bright);
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
}

.addon-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-left: 1px solid rgba(243, 238, 230, .12);
  color: rgba(212, 175, 55, .94);
}

.addon-icon svg {
  width: 27px;
  height: 27px;
  stroke: currentColor;
  stroke-width: 1.45;
  fill: none;
}

.addon-title {
  color: var(--pearl);
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.1;
}

.addon-list {
  display: grid;
  padding: 0 30px 20px 110px;
}

.addon-item {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(130px, auto);
  gap: 26px;
  padding: 17px 0;
  border-top: 1px solid rgba(243, 238, 230, .09);
}

.addon-item::before {
  content: "";
  position: absolute;
  top: 26px;
  left: -28px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold-bright);
  box-shadow: 0 0 14px rgba(212, 175, 55, .35);
}

.addon-item h3 {
  margin: 0 0 4px;
  color: var(--pearl);
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.18;
}

.addon-item p {
  max-width: 650px;
  margin: 0;
  color: var(--pearl-mute);
  font-size: 13px;
  line-height: 1.55;
}

.addon-item p + p {
  margin-top: 4px;
}

.addon-price {
  justify-self: end;
  color: var(--gold-bright) !important;
  font-family: var(--mono);
  font-size: 13px !important;
  font-weight: 500;
  line-height: 1.35 !important;
  text-align: right;
  white-space: nowrap;
}

.work-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding: 54px 0 38px;
  background: #05080d;
  isolation: isolate;
}

.work-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -5;
  background-image: url("../../fons/Фон для секций с контентом.png");
  background-position: center;
  background-size: cover;
  opacity: .78;
  filter: saturate(.78) brightness(.58) contrast(1.08);
  transform: scale(1.015);
}

.work-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -4;
  background:
    radial-gradient(ellipse 48% 34% at 50% 35%, rgba(212, 175, 55, .1), transparent 64%),
    radial-gradient(ellipse 70% 62% at 50% 48%, rgba(8, 12, 20, .18), rgba(8, 12, 20, .56) 62%, rgba(3, 5, 9, .84) 100%),
    linear-gradient(180deg, rgba(3, 5, 9, .62), rgba(3, 5, 9, .2) 44%, rgba(3, 5, 9, .72)),
    linear-gradient(90deg, rgba(3, 5, 9, .74), rgba(3, 5, 9, .18) 50%, rgba(3, 5, 9, .74));
  pointer-events: none;
}

.work-container {
  position: relative;
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 42px;
}

.work-head {
  margin: 0 auto 30px;
  text-align: center;
}

.work-title {
  margin: 0;
  color: var(--pearl);
  font-family: var(--serif);
  font-size: clamp(58px, 6.2vw, 88px);
  font-weight: 400;
  line-height: .9;
  text-shadow:
    0 0 38px rgba(243, 238, 230, .08),
    0 0 32px rgba(212, 175, 55, .08);
}

.work-title-rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: min(330px, 72vw);
  margin: 20px auto 0;
  color: var(--gold);
}

.work-title-rule::before,
.work-title-rule::after {
  content: "";
  height: 1px;
  flex: 1;
  background: currentColor;
  opacity: .62;
}

.work-title-rule span {
  width: 8px;
  height: 8px;
  border: 1px solid currentColor;
  transform: rotate(45deg);
}

.work-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.work-step-card {
  position: relative;
  min-height: 248px;
  padding: 26px 25px 24px;
  border: 1px solid rgba(212, 175, 55, .3);
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(23, 29, 39, .72), rgba(10, 14, 20, .86)),
    rgba(10, 14, 20, .82);
  box-shadow:
    0 24px 76px -48px rgba(0, 0, 0, .94),
    inset 0 1px 0 rgba(243, 238, 230, .04);
  backdrop-filter: blur(12px);
  transition:
    border-color 360ms var(--ease),
    box-shadow 360ms var(--ease),
    transform 360ms var(--ease);
}

.work-step-card:hover {
  border-color: rgba(230, 201, 122, .58);
  box-shadow:
    0 30px 84px -48px rgba(0, 0, 0, .96),
    0 0 34px rgba(212, 175, 55, .12),
    inset 0 1px 0 rgba(243, 238, 230, .06);
  transform: translateY(-2px);
}

.work-step-card::before,
.work-step-card::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border-color: rgba(212, 175, 55, .42);
  border-style: solid;
  opacity: .84;
  pointer-events: none;
}

.work-step-card::before {
  top: -1px;
  left: -1px;
  border-width: 1px 0 0 1px;
}

.work-step-card::after {
  right: -1px;
  bottom: -1px;
  border-width: 0 1px 1px 0;
}

.work-step-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.work-step-number {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(230, 201, 122, .72);
  border-radius: 14px;
  color: var(--gold-bright);
  font-family: var(--serif);
  font-size: 25px;
  line-height: 1;
  background: rgba(5, 8, 13, .42);
  box-shadow: inset 0 0 18px rgba(212, 175, 55, .05);
}

.work-step-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: rgba(212, 175, 55, .96);
}

.work-step-icon svg {
  width: 38px;
  height: 38px;
  stroke: currentColor;
  stroke-width: 1.45;
  fill: none;
}

.work-step-card h3 {
  margin: 0;
  color: #e8dfd2;
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 400;
  line-height: 1.04;
}

.work-card-rule {
  position: relative;
  width: 74px;
  height: 1px;
  margin: 16px 0 14px;
  background: var(--gold);
  opacity: .72;
}

.work-card-rule::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  border: 1px solid var(--gold);
  background: rgba(10, 14, 20, .86);
  transform: translate(-50%, -50%) rotate(45deg);
}

.work-step-card p {
  margin: 0;
  color: var(--pearl-muted);
  font-size: 13px;
  line-height: 1.5;
}

.work-footer-rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  width: min(760px, 86vw);
  margin: 28px auto 0;
  color: rgba(212, 175, 55, .74);
  font-family: var(--mono);
  font-size: 10px;
  line-height: 1.6;
  text-align: center;
  text-transform: uppercase;
}

.work-footer-rule::before,
.work-footer-rule::after {
  content: "";
  height: 1px;
  flex: 1;
  background: currentColor;
  opacity: .34;
}

.why-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding: 66px 0;
  background: var(--graphite-deep);
  isolation: isolate;
}

.why-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -5;
  background-image: url("../../fons/Глобус мировая карта.png");
  background-position: center;
  background-size: cover;
  opacity: .84;
  filter: saturate(.88) brightness(.64) contrast(1.08);
  transform: scale(1.015);
}

.why-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -4;
  background:
    radial-gradient(ellipse 62% 46% at 50% 48%, rgba(8, 12, 20, .14), rgba(8, 12, 20, .52) 58%, rgba(3, 5, 9, .84) 100%),
    linear-gradient(180deg, rgba(3, 5, 9, .62), rgba(3, 5, 9, .2) 42%, rgba(3, 5, 9, .74)),
    linear-gradient(90deg, rgba(3, 5, 9, .72), rgba(3, 5, 9, .18) 50%, rgba(3, 5, 9, .72));
  pointer-events: none;
}

.why-container {
  position: relative;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

.why-head {
  max-width: 780px;
  margin: 0 auto 28px;
  text-align: center;
}

.why-title {
  margin: 0;
  color: var(--gold);
  font-family: var(--serif);
  font-size: clamp(54px, 5.8vw, 82px);
  font-weight: 400;
  line-height: .92;
  text-shadow: 0 0 44px rgba(212, 175, 55, .16);
}

.why-title-rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: min(310px, 70vw);
  margin: 18px auto 0;
  color: var(--gold);
}

.why-title-rule::before,
.why-title-rule::after {
  content: "";
  height: 1px;
  flex: 1;
  background: currentColor;
  opacity: .62;
}

.why-title-rule span {
  width: 8px;
  height: 8px;
  border: 1px solid currentColor;
  transform: rotate(45deg);
}

.why-main {
  position: relative;
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 34px;
  width: min(920px, 100%);
  margin: 0 auto 18px;
  padding: 40px 48px 42px 34px;
  border: 1px solid rgba(212, 175, 55, .38);
  border-radius: 10px;
  background:
    linear-gradient(145deg, rgba(22, 28, 38, .68), rgba(10, 14, 20, .88)),
    rgba(10, 14, 20, .82);
  box-shadow:
    0 30px 92px -54px rgba(0, 0, 0, .96),
    0 0 38px rgba(212, 175, 55, .08),
    inset 0 1px 0 rgba(243, 238, 230, .04);
  backdrop-filter: blur(12px);
}

.why-main::before,
.why-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at 50% 0%, rgba(230, 201, 122, .14), transparent 16%),
    linear-gradient(180deg, rgba(243, 238, 230, .028), transparent 44%);
  pointer-events: none;
}

.why-icon-box {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  border: 1px solid rgba(212, 175, 55, .42);
  border-radius: 10px;
  color: rgba(212, 175, 55, .92);
  background: rgba(5, 8, 13, .35);
}

.why-icon-box svg {
  width: 48px;
  height: 48px;
  stroke: currentColor;
  stroke-width: 1.35;
  fill: none;
}

.why-main-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.why-main h3 {
  margin: 0 0 22px;
  color: var(--pearl-dim);
  font-family: var(--serif);
  font-size: clamp(38px, 4vw, 56px);
  font-weight: 400;
  line-height: 1.02;
}

.why-main p,
.why-card p {
  margin: 0;
  color: rgba(243, 238, 230, .68);
  font-size: 16px;
  line-height: 1.66;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.why-card {
  position: relative;
  min-height: 258px;
  padding: 26px 24px 24px;
  border: 1px solid rgba(212, 175, 55, .28);
  border-radius: 10px;
  background:
    linear-gradient(145deg, rgba(20, 27, 38, .66), rgba(10, 14, 20, .88)),
    rgba(10, 14, 20, .82);
  box-shadow:
    0 24px 76px -50px rgba(0, 0, 0, .94),
    inset 0 1px 0 rgba(243, 238, 230, .035);
  backdrop-filter: blur(12px);
  transition:
    border-color 360ms var(--ease),
    box-shadow 360ms var(--ease),
    transform 360ms var(--ease);
}

.why-card:hover {
  border-color: rgba(230, 201, 122, .56);
  box-shadow:
    0 30px 84px -50px rgba(0, 0, 0, .96),
    0 0 34px rgba(212, 175, 55, .1),
    inset 0 1px 0 rgba(243, 238, 230, .06);
  transform: translateY(-2px);
}

.why-card-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 20px;
  border: 1px solid rgba(212, 175, 55, .38);
  border-radius: 9px;
  color: rgba(212, 175, 55, .92);
  background: rgba(5, 8, 13, .28);
}

.why-card-icon svg {
  width: 36px;
  height: 36px;
  stroke: currentColor;
  stroke-width: 1.45;
  fill: none;
}

.why-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 18px;
  color: var(--pearl-dim);
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 400;
  line-height: 1.06;
}

.why-card p {
  position: relative;
  z-index: 1;
  font-size: 14px;
  line-height: 1.58;
}

.contact-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding: 60px 0 28px;
  background: var(--graphite-deep);
  isolation: isolate;
}

.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -5;
  background-image: url("../../fons/Команда и встреча.png");
  background-position: center;
  background-size: cover;
  opacity: .72;
  filter: saturate(.82) brightness(.62) contrast(1.08);
  transform: scale(1.02);
}

.contact-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -4;
  background:
    radial-gradient(ellipse 52% 42% at 38% 36%, rgba(212, 175, 55, .09), transparent 64%),
    radial-gradient(ellipse 70% 58% at 50% 48%, rgba(8, 12, 20, .16), rgba(8, 12, 20, .56) 62%, rgba(3, 5, 9, .86) 100%),
    linear-gradient(90deg, rgba(3, 5, 9, .68), rgba(3, 5, 9, .22) 48%, rgba(3, 5, 9, .72)),
    linear-gradient(180deg, rgba(3, 5, 9, .5), rgba(3, 5, 9, .18) 40%, rgba(3, 5, 9, .78));
  pointer-events: none;
}

.contact-lines {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image:
    linear-gradient(to right, rgba(212, 175, 55, .018) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(212, 175, 55, .014) 1px, transparent 1px);
  background-size: 96px 96px;
  -webkit-mask-image: radial-gradient(ellipse 82% 74% at 50% 52%, black 18%, transparent 90%);
  mask-image: radial-gradient(ellipse 82% 74% at 50% 52%, black 18%, transparent 90%);
  pointer-events: none;
}

.contact-container {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

.contact-head {
  max-width: 780px;
  margin-bottom: 30px;
}

.contact-title {
  margin: 0;
  color: var(--gold-bright);
  font-family: var(--serif);
  font-size: clamp(58px, 6.2vw, 92px);
  font-weight: 400;
  line-height: .9;
  text-shadow: 0 0 42px rgba(212, 175, 55, .14);
}

.contact-copy {
  max-width: 760px;
  margin: 16px 0 0;
  color: rgba(243, 238, 230, .68);
  font-size: 17px;
  line-height: 1.72;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(290px, .34fr);
  gap: 24px;
  align-items: stretch;
}

.contact-form-card,
.contact-info-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, .42);
  border-radius: 20px;
  background:
    linear-gradient(145deg, rgba(19, 25, 34, .72), rgba(10, 14, 20, .88)),
    rgba(10, 14, 20, .84);
  box-shadow:
    0 28px 88px -54px rgba(0, 0, 0, .96),
    0 0 34px rgba(212, 175, 55, .1),
    inset 0 1px 0 rgba(243, 238, 230, .04);
  backdrop-filter: blur(14px);
}

.contact-form-card {
  padding: 32px;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: 28px;
}

.contact-field-stack,
.contact-project-stack {
  display: grid;
  gap: 17px;
  align-content: start;
}

.contact-field {
  display: grid;
  gap: 7px;
}

.contact-field label,
.contact-fieldset-title,
.contact-consent {
  color: var(--pearl-dim);
  font-size: 13px;
  line-height: 1.35;
}

.contact-req {
  color: var(--gold-bright);
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  border: 1px solid rgba(243, 238, 230, .14);
  border-radius: 9px;
  outline: none;
  background: rgba(8, 12, 18, .78);
  color: var(--pearl);
  font-size: 14px;
  line-height: 1.4;
  transition:
    border-color 260ms var(--ease),
    box-shadow 260ms var(--ease),
    background 260ms var(--ease);
}

.contact-field input {
  min-height: 46px;
  padding: 0 15px;
}

.contact-field textarea {
  min-height: 124px;
  padding: 13px 15px;
  resize: vertical;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: rgba(243, 238, 230, .42);
}

.contact-field input:focus,
.contact-field textarea:focus {
  border-color: rgba(212, 175, 55, .65);
  background: rgba(8, 12, 18, .88);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, .1);
}

.contact-choice-tree {
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, .32);
  border-radius: 12px;
  background: rgba(8, 12, 18, .62);
}

.contact-tree-section + .contact-tree-section {
  border-top: 1px solid rgba(243, 238, 230, .1);
}

.contact-tree-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 44px;
  padding: 0 15px;
  color: var(--gold-bright);
  cursor: pointer;
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1;
  list-style: none;
}

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

.contact-tree-summary::after {
  content: "⌄";
  color: var(--gold-bright);
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1;
  transform: rotate(180deg);
}

.contact-tree-section:not([open]) .contact-tree-summary::after {
  transform: rotate(0deg);
}

.contact-choice-list {
  display: grid;
  gap: 9px;
  padding: 0 15px 15px;
}

.contact-choice {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 9px;
  align-items: start;
  color: rgba(243, 238, 230, .68);
  font-size: 13px;
  line-height: 1.35;
}

.contact-choice input {
  width: 15px;
  height: 15px;
  margin: 2px 0 0;
  accent-color: var(--gold);
}

.contact-info-note {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  padding: 14px 0 0;
  border-top: 1px solid rgba(212, 175, 55, .24);
  color: rgba(243, 238, 230, .68);
  font-size: 12px;
  line-height: 1.45;
}

.contact-info-note p {
  margin: 0;
}

.contact-info-note svg {
  width: 18px;
  height: 18px;
  color: var(--gold-bright);
  stroke: currentColor;
  stroke-width: 1.6;
  fill: none;
}

.contact-consent {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 9px;
  align-items: start;
}

.contact-consent input {
  width: 16px;
  height: 16px;
  margin: 2px 0 0;
  accent-color: var(--gold);
}

.contact-consent a {
  color: var(--gold-bright);
  text-decoration: underline;
  text-decoration-color: rgba(212, 175, 55, .45);
  text-underline-offset: 3px;
}

.contact-submit-btn {
  width: 100%;
  min-height: 54px;
  border: 1px solid rgba(230, 201, 122, .76);
  border-radius: 9px;
  background: linear-gradient(180deg, #e6c97a, #c9a961);
  color: #080c14;
  cursor: pointer;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 0 20px 48px -26px rgba(212, 175, 55, .82);
  transition:
    box-shadow 260ms var(--ease),
    transform 260ms var(--ease),
    filter 260ms var(--ease);
}

.contact-submit-btn:hover {
  filter: brightness(1.04);
  box-shadow:
    0 24px 56px -26px rgba(212, 175, 55, .94),
    0 0 24px rgba(212, 175, 55, .16);
  transform: translateY(-1px);
}

.contact-form-status {
  min-height: 18px;
  margin: 0;
  color: var(--gold-bright);
  font-size: 12px;
  line-height: 1.4;
}

.contact-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-info-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
  padding: 48px 36px;
  text-align: center;
}

.contact-info-card::before {
  content: "";
  position: absolute;
  inset: auto -20% -18% auto;
  width: 260px;
  aspect-ratio: 1;
  border: 1px solid rgba(212, 175, 55, .16);
  border-radius: 50%;
  opacity: .7;
}

.contact-info-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 108px;
  height: 108px;
  margin: 0 auto 46px;
  border: 1px solid rgba(212, 175, 55, .38);
  border-radius: 50%;
  color: var(--gold-bright);
  background: radial-gradient(circle, rgba(212, 175, 55, .14), rgba(10, 14, 20, .62) 68%);
  box-shadow:
    0 0 36px rgba(212, 175, 55, .14),
    inset 0 0 28px rgba(212, 175, 55, .08);
}

.contact-info-mark img {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 74px;
  max-width: 68%;
  height: auto;
  transform: translate(calc(-50% + 3px), -50%);
  filter: drop-shadow(0 0 14px rgba(230, 201, 122, .18));
}

.contact-info-mark::before,
.contact-info-mark::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 74px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, .54));
}

.contact-info-mark::before {
  right: 100%;
}

.contact-info-mark::after {
  left: 100%;
  transform: rotate(180deg);
}

.contact-info-card-text {
  position: relative;
  margin: 0;
  color: var(--pearl-dim);
  font-family: var(--serif);
  font-size: clamp(25px, 2.35vw, 34px);
  line-height: 1.24;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.contact-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(212, 175, 55, .24);
  color: rgba(230, 201, 122, .72);
  font-size: 13px;
  line-height: 1.4;
}

.contact-footer-address {
  text-align: center;
  color: rgba(243, 238, 230, .62);
}

.contact-footer a {
  color: rgba(230, 201, 122, .82);
  justify-self: end;
  text-decoration: underline;
  text-decoration-color: rgba(212, 175, 55, .45);
  text-underline-offset: 3px;
}

@keyframes scrollDot {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(420%);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes sweepRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes topoBreathe {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

@keyframes pulseRing {
  0% {
    opacity: .8;
    transform: scale(.4);
  }
  100% {
    opacity: 0;
    transform: scale(3.2);
  }
}

@keyframes starBlink {
  0%,
  100% {
    opacity: .15;
  }
  50% {
    opacity: 1;
  }
}

@media (max-width: 1200px) {
  :root {
    --pad-x: 34px;
  }

  .nav-logo {
    width: 244px;
  }

  .nav.scrolled .nav-logo {
    width: 210px;
  }

  .nav-menu {
    display: none;
  }

  .nav-burger {
    display: block;
  }

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

  .hero h1 .line {
    white-space: normal;
  }

  .tasks-section {
    padding: 100px 0;
  }

  .tasks-head {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .tasks-spacer {
    display: none;
  }

  .tasks-title {
    font-size: 46px;
  }

  .tasks-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px 28px;
  }

  .outcomes-section {
    padding: 100px 0;
  }

  .outcomes-head {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .outcomes-spacer {
    display: none;
  }

  .outcomes-title {
    font-size: 46px;
  }

  .outcomes-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .model-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .model-diagram {
    width: min(620px, 88vw);
  }

  .tech-head,
  .tech-text-row {
    grid-template-columns: 1fr;
    gap: 22px;
  }

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

  .tech-module-card:nth-child(n) {
    grid-column: auto;
  }

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

  .tariff-card,
  .tariff-card--featured {
    min-height: auto;
    transform: none;
  }

  .tariff-card--featured:hover {
    transform: translateY(-2px);
  }

  .partner-inner {
    grid-template-columns: 1fr;
    gap: 22px;
  }

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

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

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

  .contact-info-card {
    min-height: 360px;
  }
}

@media (max-width: 760px) {
  :root {
    --pad-x: 22px;
  }

  .nav {
    min-height: 82px;
  }

  .nav-logo,
  .nav.scrolled .nav-logo {
    width: 174px;
  }

  .nav-cabinet,
  .nav-right > .btn {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 130px var(--pad-x) 92px;
  }

  .hero-content::before {
    inset: -30px -28px;
  }

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

  .hero-sub {
    font-size: 16px;
  }

  .hero-meta {
    display: grid;
    width: auto;
    gap: 16px;
  }

  .hero-meta-divider {
    display: none;
  }

  .hero-cta {
    display: grid;
    width: 100%;
  }

  .hero-cta .btn {
    width: 100%;
  }

  .tasks-section {
    padding: 80px 0;
  }

  .tasks-title {
    font-size: 32px;
  }

  .tasks-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .task-card {
    min-height: auto;
    padding: 24px 0 12px;
  }

  .task-card h3 {
    font-size: 22px;
  }

  .outcomes-section {
    padding: 80px 0;
  }

  .outcomes-title {
    font-size: 32px;
  }

  .outcomes-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .outcome-card {
    min-height: auto;
    padding: 36px 28px 32px;
  }

  .outcome-card h3 {
    font-size: 22px;
  }

  .model-section {
    padding: 82px 0 58px;
  }

  .model-title {
    font-size: clamp(44px, 15vw, 58px);
  }

  .model-diagram {
    width: min(360px, 90vw);
  }

  .model-center {
    width: 118px;
    height: 118px;
  }

  .model-center-brand {
    font-size: 26px;
  }

  .model-center-label {
    font-size: 9px;
  }

  .model-node,
  .model-node-icon {
    width: 34px;
    height: 34px;
  }

  .model-node-label {
    font-size: 12px;
  }

  .model-node svg {
    width: 17px;
    height: 17px;
  }

  .model-cards {
    grid-template-columns: 1fr;
  }

  .model-card {
    min-height: 156px;
    padding: 24px 22px 22px;
  }

  .model-card h3 {
    font-size: 28px;
  }

  .model-card-icon {
    right: 22px;
  }

  .tech-section {
    padding: 72px 0;
  }

  .tech-head,
  .tech-text-row {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .tech-title {
    font-size: clamp(42px, 13vw, 58px);
  }

  .tech-lead {
    font-size: 24px;
  }

  .tech-flow {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .tech-flow-card {
    min-height: 82px;
  }

  .tech-flow-arrow {
    display: none;
  }

  .tech-module-grid {
    grid-template-columns: 1fr;
  }

  .tech-module-card:nth-child(n) {
    grid-column: auto;
  }

  .pricing-section {
    padding: 70px 0;
  }

  .pricing-section::before {
    filter: saturate(.82) brightness(.46) contrast(1.08);
  }

  .pricing-eyebrow {
    gap: 10px;
    font-size: 10px;
  }

  .pricing-eyebrow::before,
  .pricing-eyebrow::after {
    width: 28px;
  }

  .pricing-title {
    font-size: clamp(38px, 12vw, 52px);
    white-space: normal;
  }

  .tariff-card,
  .partner-card {
    padding: 26px 22px 22px;
  }

  .tariff-title {
    font-size: 36px;
  }

  .partner-title {
    font-size: 32px;
  }

  .pricing-btn {
    width: 100%;
  }

  .partner-details .pricing-details-panel {
    grid-template-columns: 1fr;
  }

  .addons-section {
    padding: 70px 0;
  }

  .addons-section::before {
    filter: saturate(.78) brightness(.48) contrast(1.06);
  }

  .addons-title {
    font-size: clamp(42px, 13vw, 58px);
  }

  .addon-summary {
    grid-template-columns: 38px 38px 1fr 28px;
    gap: 10px;
    min-height: 72px;
    padding: 0 18px;
  }

  .addon-icon {
    width: 30px;
    height: 30px;
  }

  .addon-icon svg {
    width: 23px;
    height: 23px;
  }

  .addon-title {
    font-size: 21px;
  }

  .addon-list {
    padding: 0 18px 18px 64px;
  }

  .addon-item {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 15px 0;
  }

  .addon-price {
    justify-self: start;
    text-align: left;
  }

  .work-section {
    min-height: auto;
    padding: 70px 0 56px;
  }

  .work-section::before {
    filter: saturate(.68) brightness(.42) contrast(1.06);
  }

  .work-container {
    padding: 0 var(--pad-x);
  }

  .work-title {
    font-size: clamp(42px, 13vw, 56px);
  }

  .work-steps-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .work-step-card {
    min-height: auto;
    padding: 24px 22px 22px;
  }

  .work-step-card h3 {
    font-size: 24px;
  }

  .work-footer-rule {
    display: none;
  }

  .why-section {
    min-height: auto;
    padding: 70px 0;
  }

  .why-section::before {
    filter: saturate(.78) brightness(.46) contrast(1.06);
  }

  .why-title {
    font-size: clamp(42px, 13vw, 56px);
  }

  .why-main {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 30px 24px;
  }

  .why-main h3 {
    font-size: clamp(34px, 10vw, 44px);
  }

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

  .why-card {
    min-height: auto;
  }

  .contact-section {
    min-height: auto;
    padding: 70px 0 28px;
  }

  .contact-section::before {
    filter: saturate(.72) brightness(.42) contrast(1.06);
  }

  .contact-title {
    font-size: clamp(42px, 13vw, 58px);
  }

  .contact-form-card {
    padding: 24px 20px;
  }

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

  .contact-info-card {
    min-height: 320px;
    padding: 36px 24px;
  }

  .contact-info-card-text {
    font-size: clamp(25px, 9vw, 32px);
  }

  .contact-footer {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .contact-footer a {
    justify-self: center;
  }
}

/* Cabinet and admin compatibility styles */
.stack {
  display: grid;
  gap: 18px;
}

.stack-sm {
  display: grid;
  gap: 10px;
}

.cluster {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.grid {
  display: grid;
  gap: 20px;
}

.grid > *,
.form > *,
.cabinet-content > * {
  min-width: 0;
}

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

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

.meta {
  margin: 0;
  color: var(--gold-bright);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.section-title,
.page-title,
.card-title {
  margin: 0;
  color: var(--pearl);
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: 0;
}

.section-title,
.page-title {
  font-size: clamp(44px, 7vw, 84px);
  line-height: .95;
}

.card-title {
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.05;
}

.lead {
  color: var(--pearl-dim);
  font-size: 18px;
  line-height: 1.7;
}

.copy,
.copy-sm {
  color: var(--pearl-mute);
}

.copy-sm {
  font-size: 14px;
}

.form {
  display: grid;
  gap: 18px;
}

.field {
  display: grid;
  gap: 8px;
}

.label {
  color: var(--pearl);
  font-size: 14px;
  font-weight: 600;
}

.input,
.select,
.textarea {
  width: 100%;
  border: 1px solid rgba(243, 238, 230, .14);
  border-radius: 8px;
  outline: none;
  background: rgba(8, 12, 18, .78);
  color: var(--pearl);
  padding: 13px 14px;
  transition:
    border-color 220ms var(--ease),
    box-shadow 220ms var(--ease),
    background 220ms var(--ease);
}

.textarea {
  min-height: 138px;
  resize: vertical;
}

.input:focus,
.select:focus,
.textarea:focus {
  border-color: rgba(230, 201, 122, .66);
  background: rgba(8, 12, 18, .9);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, .1);
}

.btn--primary,
.btn--ghost,
.btn--text {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid rgba(212, 175, 55, .34);
  border-radius: 8px;
  padding: 12px 18px;
  cursor: pointer;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition:
    border-color 220ms var(--ease),
    background 220ms var(--ease),
    box-shadow 220ms var(--ease),
    transform 220ms var(--ease);
}

.btn--primary {
  border-color: rgba(230, 201, 122, .7);
  background: linear-gradient(180deg, #e6c97a, #c9a961);
  color: #080c14;
  box-shadow: 0 18px 46px -28px rgba(212, 175, 55, .85);
}

.btn--primary:hover,
.btn--ghost:hover,
.btn--text:hover {
  transform: translateY(-1px);
}

.btn--ghost {
  background: rgba(201, 169, 97, .06);
  color: var(--pearl);
}

.btn--ghost:hover {
  border-color: rgba(230, 201, 122, .6);
  background: rgba(201, 169, 97, .13);
}

.btn--text {
  min-height: auto;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--gold-bright);
}

.card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, .24);
  border-radius: 10px;
  background:
    linear-gradient(145deg, rgba(19, 25, 34, .72), rgba(10, 14, 20, .88)),
    rgba(10, 14, 20, .84);
  box-shadow:
    0 28px 88px -54px rgba(0, 0, 0, .96),
    inset 0 1px 0 rgba(243, 238, 230, .04);
}

.card-pad {
  padding: clamp(22px, 3vw, 34px);
}

.notice {
  border: 1px solid rgba(212, 175, 55, .24);
  border-radius: 10px;
  padding: 16px;
  background: rgba(245, 240, 232, .035);
  color: var(--pearl-dim);
}

.notice p {
  margin: 0;
}

.notice p + p {
  margin-top: 8px;
}

.notice--success {
  border-color: rgba(143, 185, 142, .5);
  color: #cde4cc;
}

.notice--error {
  border-color: rgba(201, 131, 124, .55);
  color: #e7c5c1;
}

.login-screen {
  display: grid;
  min-height: 100vh;
  place-items: center;
  overflow: hidden;
  padding: 28px;
}

.login-screen--client {
  position: relative;
  isolation: isolate;
  background:
    radial-gradient(ellipse at 50% -12%, rgba(230, 201, 122, .14), rgba(201, 169, 97, .04) 24%, transparent 48%),
    radial-gradient(ellipse at 50% 42%, rgba(18, 32, 54, .42), transparent 58%),
    linear-gradient(180deg, #070b12 0%, #050811 58%, #03060c 100%);
}

.login-screen--client::before,
.login-screen--client::after {
  position: absolute;
  z-index: -1;
  pointer-events: none;
  content: "";
}

.login-screen--client::before {
  inset: 0;
  background-image:
    radial-gradient(circle at -6% -18%, transparent 0 23%, rgba(230, 201, 122, .32) 23.08% 23.2%, transparent 23.36% 32%, rgba(201, 169, 97, .14) 32.08% 32.18%, transparent 32.34%),
    linear-gradient(38deg, transparent 0 10%, rgba(201, 169, 97, .1) 10.08% 10.14%, transparent 10.28% 12%, rgba(230, 201, 122, .07) 12.08% 12.14%, transparent 12.28%),
    linear-gradient(218deg, transparent 0 12%, rgba(230, 201, 122, .12) 12.08% 12.15%, transparent 12.28% 14%, rgba(201, 169, 97, .07) 14.08% 14.15%, transparent 14.28%);
  opacity: .74;
}

.login-screen--client::after {
  right: -14vw;
  bottom: -20vw;
  width: min(720px, 88vw);
  aspect-ratio: 1;
  border: 1px solid rgba(201, 169, 97, .14);
  border-radius: 50%;
}

.login-panel {
  width: min(100%, 420px);
  border: 1px solid rgba(212, 175, 55, .28);
  border-radius: 10px;
  padding: clamp(28px, 5vw, 42px);
  background: rgba(7, 13, 22, .88);
  box-shadow: 0 24px 80px rgba(0, 0, 0, .28);
}

.login-panel--client {
  display: grid;
  width: min(100%, 760px);
  gap: 18px;
  border-color: rgba(201, 169, 97, .28);
  border-radius: 0;
  padding: clamp(38px, 5.5vw, 68px) clamp(28px, 6vw, 72px);
  background:
    linear-gradient(180deg, rgba(13, 23, 36, .92), rgba(3, 8, 18, .9)),
    var(--graphite-deep);
  box-shadow:
    0 34px 120px rgba(0, 0, 0, .42),
    inset 0 1px 0 rgba(245, 240, 232, .04);
  text-align: center;
}

.login-logo {
  display: block;
  width: min(320px, 100%);
  margin-inline: auto;
}

.login-logo img {
  width: 100%;
  height: auto;
}

.login-panel--client .meta {
  margin-top: 8px;
  margin-bottom: clamp(8px, 2vw, 18px);
  color: var(--gold-bright);
  letter-spacing: .42em;
  text-align: center;
}

.login-panel--client .card-title {
  margin-bottom: 4px;
}

.login-panel--client .field {
  width: min(100%, 460px);
  margin-inline: auto;
  text-align: left;
}

.login-panel--client .label {
  color: var(--gold-bright);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.login-panel--client .input {
  min-height: 54px;
  border-color: rgba(201, 169, 97, .32);
  border-radius: 0;
  background: rgba(5, 7, 10, .82) !important;
  color: var(--pearl) !important;
  caret-color: var(--pearl);
  color-scheme: dark;
  -webkit-text-fill-color: var(--pearl) !important;
  box-shadow:
    inset 0 0 0 1px rgba(201, 169, 97, .06),
    inset 0 0 0 1000px rgba(5, 7, 10, .82);
}

.login-panel--client .input:focus {
  border-color: rgba(230, 201, 122, .76);
  background: rgba(5, 7, 10, .92) !important;
  box-shadow:
    0 0 0 3px rgba(201, 169, 97, .1),
    inset 0 0 0 1000px rgba(5, 7, 10, .92);
}

.login-panel--client .input:-webkit-autofill,
.login-panel--client .input:-webkit-autofill:hover,
.login-panel--client .input:-webkit-autofill:focus,
.login-panel--client .input:-webkit-autofill:active {
  border-color: rgba(201, 169, 97, .42) !important;
  -webkit-text-fill-color: var(--pearl) !important;
  caret-color: var(--pearl);
  box-shadow:
    inset 0 0 0 1px rgba(201, 169, 97, .08),
    inset 0 0 0 1000px rgba(5, 7, 10, .94) !important;
  transition: background-color 9999s ease-out 0s;
}

.login-panel--client .btn--primary {
  width: min(100%, 180px);
  margin: 6px auto 0;
  border-color: rgba(201, 169, 97, .82);
  border-radius: 0;
  background: rgba(10, 12, 16, .78);
  color: var(--gold-bright);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  box-shadow: none;
}

.login-panel--client .btn--primary:hover {
  background: rgba(201, 169, 97, .12);
  box-shadow: 0 18px 50px rgba(201, 169, 97, .12);
}

.cabinet-shell,
.admin-shell {
  display: grid;
  min-height: 100vh;
}

.cabinet-shell {
  grid-template-columns: minmax(0, 1fr);
}

.admin-shell {
  grid-template-columns: 280px minmax(0, 1fr);
}

.cabinet-sidebar,
.admin-sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  border-right: 1px solid rgba(243, 238, 230, .1);
  background: rgba(10, 12, 16, .74);
  padding: 28px;
}

.cabinet-main,
.admin-main {
  min-width: 0;
  padding: clamp(24px, 5vw, 56px);
}

.cabinet-topbar,
.admin-topbar {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 34px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(243, 238, 230, .1);
}

.cabinet-topbar .brand,
.admin-topbar .brand,
.cabinet-sidebar .brand,
.admin-sidebar .brand {
  display: inline-flex;
  align-items: center;
}

.cabinet-topbar .brand img,
.admin-topbar .brand img,
.cabinet-sidebar .brand img,
.admin-sidebar .brand img {
  width: clamp(96px, 10vw, 148px);
  height: auto;
}

.cabinet-content {
  display: grid;
  gap: 24px;
}

.cabinet-content > .btn {
  width: fit-content;
}

.cabinet-section {
  min-height: clamp(260px, 42vh, 520px);
}

.section-cards {
  display: grid;
  gap: 18px;
}

.section-card {
  color: inherit;
  text-decoration: none;
  transition:
    border-color 220ms var(--ease),
    box-shadow 220ms var(--ease),
    transform 220ms var(--ease);
}

.section-card:hover {
  border-color: rgba(230, 201, 122, .55);
  box-shadow: 0 20px 70px rgba(201, 169, 97, .12);
  transform: translateY(-2px);
}

.cabinet-content .section-cards {
  gap: clamp(18px, 2vw, 24px);
}

.cabinet-content .section-card {
  display: grid;
  min-height: 178px;
  align-content: start;
  gap: 16px;
  padding: clamp(22px, 2.2vw, 30px);
  background:
    linear-gradient(145deg, rgba(23, 29, 38, .82), rgba(8, 12, 18, .9)),
    rgba(10, 14, 20, .84);
}

.cabinet-content .section-card .card-index {
  display: inline-flex;
  width: fit-content;
  color: var(--gold-bright);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  line-height: 1;
}

.cabinet-content .section-card .card-title {
  max-width: 100%;
  color: var(--pearl);
  font-size: clamp(28px, 2.4vw, 38px);
  line-height: 1.04;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.cabinet-content .section-card p {
  margin: 0;
  color: var(--pearl-mute);
  font-size: 15px;
  line-height: 1.58;
}

.cabinet-content .section-card .btn,
.cabinet-content .section-card .btn--ghost {
  width: fit-content;
  min-width: 118px;
  min-height: 42px;
  margin-top: auto;
  padding-inline: 18px;
  white-space: nowrap;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(243, 238, 230, .1);
  border-radius: 10px;
}

.table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  background: rgba(16, 20, 26, .78);
}

.table th,
.table td {
  border-bottom: 1px solid rgba(243, 238, 230, .1);
  padding: 14px 16px;
  text-align: left;
  vertical-align: top;
}

.table th {
  color: var(--gold-bright);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}

.table td {
  color: var(--pearl-dim);
}

.status {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(243, 238, 230, .14);
  border-radius: 999px;
  padding: 4px 9px;
  color: var(--pearl-mute);
  font-family: var(--mono);
  font-size: 12px;
}

.status--active {
  border-color: rgba(143, 185, 142, .52);
  color: #cde4cc;
}

.status--disabled {
  border-color: rgba(201, 131, 124, .55);
  color: #e7c5c1;
}

@media (max-width: 980px) {
  .grid-2,
  .grid-3,
  .section-cards {
    grid-template-columns: 1fr;
  }

  .cabinet-shell,
  .admin-shell {
    grid-template-columns: 1fr;
  }

  .cabinet-sidebar,
  .admin-sidebar {
    display: none;
  }
}

@media (max-width: 640px) {
  .btn--primary,
  .btn--ghost,
  .btn--text {
    width: 100%;
  }

  .cluster {
    align-items: stretch;
  }

  .cabinet-main,
  .admin-main {
    padding: 22px 14px 44px;
  }

  .cabinet-topbar,
  .admin-topbar {
    align-items: flex-start;
    flex-direction: column;
  }
}

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