@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Oxanium:wght@500;600;700&display=swap");

:root {
  --ink: #030607;
  --night: #071014;
  --panel: rgba(7, 16, 20, 0.74);
  --line: rgba(197, 255, 247, 0.16);
  --text: #f4fbfb;
  --muted: rgba(244, 251, 251, 0.72);
  --soft: rgba(244, 251, 251, 0.52);
  --cyan: #27f5ea;
  --aqua: #6ef7d1;
  --lime: #9ee9d3;
  --coral: #ff715b;
  --violet: #a179ff;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
  overflow-x: clip;
}

body {
  margin: 0;
  min-width: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    var(--ink);
  background-size: 96px 96px;
  color: var(--text);
  font-family: "Manrope", sans-serif;
  overflow-x: clip;
}

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

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

.page-noise {
  position: fixed;
  inset: 0;
  z-index: 50;
  pointer-events: none;
  opacity: 0.11;
  mix-blend-mode: screen;
  background-image:
    repeating-radial-gradient(circle at 12% 20%, rgba(255,255,255,0.08) 0 1px, transparent 1px 5px),
    repeating-linear-gradient(120deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 7px);
}

.cursor-glow {
  position: fixed;
  z-index: 49;
  width: 360px;
  height: 360px;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 220ms ease;
  background:
    radial-gradient(circle, rgba(39, 245, 234, 0.16), rgba(204, 255, 102, 0.06) 38%, transparent 68%);
  filter: blur(10px);
}

.site-header {
  position: fixed;
  top: 16px;
  left: 16px;
  right: 16px;
  z-index: 60;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(3, 6, 7, 0.58);
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(22px);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-family: "Oxanium", sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cyan);
}

.brand-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 38px;
  height: 32px;
  flex: 0 0 38px;
  isolation: isolate;
  transform-origin: 50% 50%;
  animation: logo-box-spin 6.5s linear infinite;
  will-change: transform;
}

.brand-mark::before,
.brand-mark::after,
.brand-orbit {
  content: "";
  position: absolute;
  inset: -4px -3px;
  border: 1px solid rgba(39, 245, 234, 0.34);
  pointer-events: none;
}

.brand-mark::before {
  animation: logo-frame-shift 5.8s ease-in-out infinite;
}

.brand-mark::after {
  border-color: rgba(158, 233, 211, 0.18);
  transform: scale(0.78) rotate(0deg);
  animation: logo-frame-inner 4.6s ease-in-out infinite;
}

.brand-orbit {
  inset: -8px -7px;
  border-color: transparent;
  background:
    linear-gradient(90deg, transparent, rgba(39, 245, 234, 0.88), transparent) top left / 64% 1px no-repeat,
    linear-gradient(180deg, transparent, rgba(158, 233, 211, 0.82), transparent) top right / 1px 74% no-repeat,
    linear-gradient(90deg, transparent, rgba(255, 113, 91, 0.62), transparent) bottom right / 58% 1px no-repeat;
  filter: drop-shadow(0 0 10px rgba(39, 245, 234, 0.48));
  animation: logo-orbit 3.9s linear infinite;
}

.brand-lockup img {
  position: relative;
  z-index: 1;
  width: 38px;
  height: 32px;
  object-fit: contain;
  filter: drop-shadow(0 0 14px rgba(39, 245, 234, 0.48));
  animation: logo-mark-drift 4.8s ease-in-out infinite;
}

.desktop-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 6px;
}

.desktop-nav a,
.language-switcher button {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  color: var(--muted);
  background: transparent;
  font: 700 0.75rem/1 "Manrope", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: border-color 180ms ease, color 180ms ease, background 180ms ease;
}

.desktop-nav a {
  padding: 0 14px;
}

.desktop-nav a:hover,
.language-switcher button:hover,
.language-switcher button[aria-pressed="true"] {
  color: var(--text);
  border-color: rgba(39, 245, 234, 0.44);
  background: rgba(39, 245, 234, 0.09);
}

.language-switcher {
  display: flex;
  gap: 4px;
  padding: 3px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
}

.language-switcher button {
  width: 38px;
  cursor: pointer;
}

main {
  position: relative;
}

.panel {
  position: relative;
  min-height: 100svh;
  padding: clamp(96px, 12vw, 148px) clamp(18px, 5vw, 72px) clamp(48px, 8vw, 88px);
  overflow: hidden;
}

.section-video,
.section-video-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.section-video {
  z-index: 0;
  object-fit: cover;
  opacity: 0.42;
  filter: saturate(1.08) contrast(1.12) brightness(0.68);
}

.section-video-shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(3, 6, 7, 0.9), rgba(3, 6, 7, 0.62) 44%, rgba(3, 6, 7, 0.74)),
    linear-gradient(180deg, rgba(3, 6, 7, 0.78), rgba(3, 6, 7, 0.36) 44%, rgba(3, 6, 7, 0.88));
}

.packages-video-shade {
  background:
    linear-gradient(90deg, rgba(3, 6, 7, 0.88), rgba(3, 6, 7, 0.54) 50%, rgba(3, 6, 7, 0.84)),
    linear-gradient(180deg, rgba(5, 9, 11, 0.86), rgba(5, 9, 11, 0.42) 48%, rgba(5, 9, 11, 0.9));
}

.method-video-shade {
  background:
    linear-gradient(90deg, rgba(6, 16, 19, 0.9), rgba(6, 16, 19, 0.58) 44%, rgba(6, 16, 19, 0.82)),
    radial-gradient(circle at 82% 18%, rgba(39, 245, 234, 0.16), transparent 30%),
    linear-gradient(180deg, rgba(6, 16, 19, 0.76), rgba(6, 16, 19, 0.52) 50%, rgba(6, 16, 19, 0.92));
}

.services > :not(.section-video):not(.section-video-shade),
.packages > :not(.section-video):not(.section-video-shade),
.method > :not(.section-video):not(.section-video-shade) {
  position: relative;
  z-index: 2;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(260px, 0.42fr);
  align-items: center;
  gap: clamp(24px, 5vw, 80px);
  isolation: isolate;
}

.hero-video,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video {
  z-index: -3;
  object-fit: cover;
  filter: saturate(1.18) contrast(1.1) brightness(0.72);
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(3, 6, 7, 0.9) 0%, rgba(3, 6, 7, 0.62) 38%, rgba(3, 6, 7, 0.24) 100%),
    linear-gradient(0deg, rgba(3, 6, 7, 0.74) 0%, rgba(3, 6, 7, 0) 46%, rgba(3, 6, 7, 0.58) 100%);
}

.kinetic-field {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.line {
  position: absolute;
  height: 1px;
  width: 42vw;
  transform-origin: center;
  background: linear-gradient(90deg, transparent, rgba(39, 245, 234, 0.76), transparent);
  box-shadow: 0 0 24px rgba(39, 245, 234, 0.34);
}

.line-a {
  right: -8vw;
  top: 26%;
  animation: drift-a 12s ease-in-out infinite;
}

.line-b {
  left: 6vw;
  bottom: 22%;
  width: 30vw;
  background: linear-gradient(90deg, transparent, rgba(204, 255, 102, 0.68), transparent);
  animation: drift-b 15s ease-in-out infinite;
}

.line-c {
  right: 24vw;
  bottom: 12%;
  width: 24vw;
  background: linear-gradient(90deg, transparent, rgba(255, 113, 91, 0.62), transparent);
  animation: drift-c 17s ease-in-out infinite;
}

.scan {
  position: absolute;
  inset: 0;
  opacity: 0.3;
  background: linear-gradient(180deg, transparent 0%, rgba(39, 245, 234, 0.14) 50%, transparent 100%);
  transform: translateY(-100%);
  animation: scan 6.8s linear infinite;
}

.hero-content {
  max-width: 900px;
  padding-bottom: 0;
}

.hero-logo {
  width: min(280px, 64vw);
  max-height: 126px;
  object-fit: contain;
  object-position: left center;
  margin: 0 0 clamp(8px, 1.4vw, 18px);
  filter: drop-shadow(0 0 30px rgba(39, 245, 234, 0.34));
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--lime);
  font: 700 clamp(0.72rem, 1.2vw, 0.86rem)/1.1 "Oxanium", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

h1,
h2 {
  margin: 0;
  font-family: "Oxanium", sans-serif;
  letter-spacing: 0;
}

h1 {
  max-width: 980px;
  font-size: clamp(2.3rem, 4vw, 4.55rem);
  line-height: 0.98;
  text-transform: uppercase;
  text-wrap: balance;
}

h2 {
  font-size: clamp(2.1rem, 5.8vw, 5.8rem);
  line-height: 0.98;
  text-wrap: balance;
}

p {
  font-size: clamp(1rem, 1.45vw, 1.18rem);
  line-height: 1.68;
  color: var(--muted);
}

.hero-copy {
  max-width: 720px;
  margin: 14px 0 0;
  color: rgba(244, 251, 251, 0.84);
  font-size: clamp(1rem, 1.45vw, 1.16rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.button.primary {
  color: var(--text);
  border-color: rgba(39, 245, 234, 0.46);
  background:
    linear-gradient(135deg, rgba(39, 245, 234, 0.18), rgba(158, 233, 211, 0.12)),
    rgba(3, 10, 12, 0.72);
  box-shadow: 0 18px 44px rgba(39, 245, 234, 0.14);
  backdrop-filter: blur(14px);
}

.button.ghost {
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
  backdrop-filter: blur(10px);
}

.button:hover {
  transform: translateY(-2px);
  border-color: rgba(39, 245, 234, 0.54);
}

.hero-metrics {
  align-self: end;
  display: grid;
  gap: 10px;
  margin-bottom: clamp(0px, 2vw, 18px);
}

.hero-metrics div,
.service-card,
.price-card,
.steps li,
.brief-panel {
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(7, 16, 20, 0.64);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-metrics div {
  padding: 18px;
}

.hero-metrics .growth-card {
  display: grid;
  gap: 12px;
}

.growth-chart {
  position: relative;
  height: 104px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(39, 245, 234, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.03);
}

.growth-chart svg {
  position: absolute;
  inset: 8px;
  width: calc(100% - 16px);
  height: calc(100% - 16px);
}

.chart-grid {
  fill: none;
  stroke: rgba(244, 251, 251, 0.12);
  stroke-width: 1;
}

.chart-line {
  fill: none;
  stroke: var(--cyan);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: 240;
  stroke-dashoffset: 240;
  filter: drop-shadow(0 0 8px rgba(39, 245, 234, 0.72));
  animation: draw-chart 2.6s ease-out 0.35s forwards;
}

.chart-fill {
  fill: rgba(39, 245, 234, 0.12);
  opacity: 0;
  animation: reveal-fill 1.2s ease-out 1.8s forwards;
}

.growth-chart .bar {
  position: absolute;
  bottom: 8px;
  width: 10px;
  background: linear-gradient(180deg, rgba(158, 233, 211, 0.94), rgba(39, 245, 234, 0.16));
  transform-origin: bottom;
  transform: scaleY(0.1);
  animation: grow-bar 2.4s cubic-bezier(.2,.8,.2,1) forwards;
}

.bar-one {
  left: 18px;
  height: 30px;
  animation-delay: 0.1s;
}

.bar-two {
  left: 42px;
  height: 48px;
  animation-delay: 0.25s;
}

.bar-three {
  left: 66px;
  height: 64px;
  animation-delay: 0.4s;
}

.bar-four {
  left: 90px;
  height: 82px;
  animation-delay: 0.55s;
}

.hero-metrics strong {
  display: block;
  font: 700 clamp(1.8rem, 4.2vw, 3.4rem)/0.9 "Oxanium", sans-serif;
  color: var(--cyan);
  text-shadow: 0 0 26px rgba(39, 245, 234, 0.38);
}

.hero-metrics span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.35;
}

.services,
.method {
  background:
    linear-gradient(120deg, rgba(39, 245, 234, 0.05), transparent 34%),
    linear-gradient(300deg, rgba(255, 113, 91, 0.06), transparent 38%),
    #061013;
}

.section-copy {
  max-width: 980px;
}

.section-copy p:last-child {
  max-width: 760px;
}

.section-copy.compact {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(260px, 0.55fr);
  gap: clamp(22px, 5vw, 72px);
  align-items: end;
  max-width: none;
}

.section-copy.compact .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -10px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-top: clamp(34px, 6vw, 76px);
}

.service-card {
  min-height: 194px;
  padding: 18px;
  position: relative;
  overflow: hidden;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.service-card::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 18px;
  width: 32px;
  height: 2px;
  background: var(--cyan);
  box-shadow: 0 0 20px rgba(39, 245, 234, 0.5);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(39, 245, 234, 0.42);
  background: rgba(15, 30, 35, 0.86);
}

.service-card h3 {
  margin: 48px 0 12px;
  font: 700 1.08rem/1.12 "Oxanium", sans-serif;
  text-transform: uppercase;
}

.service-card p {
  margin: 0;
  color: var(--soft);
  font-size: 0.93rem;
  line-height: 1.5;
}

.marquee {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.035);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 24s linear infinite;
}

.marquee span {
  padding: 14px 26px;
  color: rgba(244, 251, 251, 0.42);
  font: 700 0.82rem/1 "Oxanium", sans-serif;
  letter-spacing: 0.18em;
}

.packages {
  background:
    linear-gradient(180deg, rgba(204, 255, 102, 0.08), transparent 24%),
    linear-gradient(90deg, rgba(161, 121, 255, 0.08), transparent 44%),
    #05090b;
}

.packages h2 {
  font-size: clamp(2.05rem, 4.65vw, 4.85rem);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: clamp(24px, 4vw, 44px);
}

.price-card {
  position: relative;
  display: grid;
  min-height: 548px;
  padding: 24px;
  overflow: hidden;
  transition: transform 240ms ease, border-color 240ms ease, background 240ms ease;
}

.price-card.featured {
  border-color: rgba(204, 255, 102, 0.46);
  background: rgba(17, 28, 29, 0.84);
}

.price-card::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  top: 76px;
  height: 1px;
  background: linear-gradient(90deg, var(--cyan), transparent);
  opacity: 0.5;
}

.price-card:hover {
  transform: translateY(-7px);
  border-color: rgba(39, 245, 234, 0.42);
}

.price-card .tag {
  justify-self: start;
  margin-bottom: 28px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--lime);
  font: 700 0.73rem/1 "Oxanium", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.price-card h3 {
  margin: 0;
  font: 700 clamp(1.5rem, 2.8vw, 2.35rem)/1.02 "Oxanium", sans-serif;
}

.price {
  margin: 18px 0 0;
  color: var(--cyan);
  font: 700 clamp(2.2rem, 5vw, 4.4rem)/0.92 "Oxanium", sans-serif;
}

.price small {
  display: block;
  margin-top: 8px;
  color: var(--soft);
  font: 700 0.78rem/1.2 "Manrope", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.price-card p {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.price-card ul {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.price-card li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  color: rgba(244, 251, 251, 0.82);
  font-size: 0.95rem;
  line-height: 1.45;
}

.price-card li::before {
  content: "✦";
  color: var(--lime);
  line-height: 1.35;
}

.price-note {
  max-width: 820px;
  margin: 18px 0 0;
  color: rgba(244, 251, 251, 0.52);
  font-size: 0.9rem;
}

.method {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(360px, 0.58fr);
  gap: clamp(22px, 3.4vw, 48px);
  align-items: center;
  padding-top: clamp(92px, 9vw, 118px);
}

.method h2 {
  font-size: clamp(2.05rem, 4.25vw, 4.45rem);
}

.method-map {
  display: grid;
  gap: clamp(24px, 3vw, 38px);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.steps li {
  min-height: 168px;
  padding: 16px;
  counter-increment: step;
}

.steps li::before {
  content: "0" counter(step);
  color: var(--coral);
  font: 700 0.86rem/1 "Oxanium", sans-serif;
}

.steps h3 {
  margin: 24px 0 8px;
  font: 700 1.06rem/1.15 "Oxanium", sans-serif;
  text-transform: uppercase;
}

.steps p {
  margin: 0;
  color: var(--soft);
  font-size: 0.92rem;
  line-height: 1.5;
}

.brief-panel {
  align-self: center;
  display: flex;
  min-height: auto;
  flex-direction: column;
  justify-content: start;
  padding: clamp(24px, 4vw, 36px);
  overflow: hidden;
  position: relative;
  background:
    linear-gradient(180deg, rgba(39, 245, 234, 0.12), rgba(7, 16, 20, 0.72)),
    radial-gradient(circle at 70% 18%, rgba(158, 233, 211, 0.14), transparent 34%),
    rgba(7, 16, 20, 0.72);
}

.brief-panel::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(39, 245, 234, 0.12);
  pointer-events: none;
}

.brief-panel img {
  position: absolute;
  top: 24px;
  right: 20px;
  z-index: 0;
  width: min(230px, 58%);
  margin: 0;
  opacity: 0.18;
  filter: drop-shadow(0 0 32px rgba(39, 245, 234, 0.36));
  animation: mark-float 7.5s ease-in-out infinite;
}

.brief-panel > :not(img) {
  position: relative;
  z-index: 1;
}

.brief-panel h2 {
  font-size: clamp(1.9rem, 2.8vw, 3.05rem);
  line-height: 1.03;
}

.outcome-list {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.outcome-list span {
  display: flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.045);
  color: rgba(244, 251, 251, 0.82);
  font-size: 0.92rem;
  font-weight: 700;
}

.outcome-list span::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-right: 10px;
  background: var(--cyan);
  box-shadow: 0 0 16px rgba(39, 245, 234, 0.7);
}

.closing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.closing-actions .button {
  flex: 1 1 142px;
  padding-inline: 12px;
}

.brief-panel .button {
  align-self: start;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  padding: 22px clamp(18px, 5vw, 72px);
  color: rgba(244, 251, 251, 0.54);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #030607;
  font-size: 0.9rem;
}

.footer-main {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}

.footer-main span:first-child {
  color: rgba(244, 251, 251, 0.82);
  font-weight: 800;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  gap: 8px 14px;
}

.legal-links button,
.modal-close {
  border: 0;
  color: rgba(244, 251, 251, 0.58);
  background: transparent;
  font: 800 0.72rem/1.1 "Manrope", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
}

.legal-links button:hover,
.modal-close:hover {
  color: var(--cyan);
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 70;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  max-width: 980px;
  margin-inline: auto;
  padding: 14px;
  border: 1px solid rgba(39, 245, 234, 0.24);
  background: rgba(3, 6, 7, 0.86);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.46);
  backdrop-filter: blur(22px);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner strong {
  display: block;
  color: var(--text);
  font: 700 0.9rem/1.1 "Oxanium", sans-serif;
  text-transform: uppercase;
}

.cookie-banner p {
  margin: 6px 0 0;
  font-size: 0.86rem;
  line-height: 1.45;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cookie-actions .button {
  min-height: 40px;
  padding-inline: 14px;
  font-size: 0.86rem;
  cursor: pointer;
}

.legal-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 100%;
  padding: 0;
  border: 0;
  color: var(--text);
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(8px);
}

.legal-modal[hidden] {
  display: none;
}

.legal-modal-panel {
  position: relative;
  width: min(680px, calc(100vw - 28px));
  max-height: calc(100svh - 28px);
  overflow: auto;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(39, 245, 234, 0.24);
  background:
    linear-gradient(180deg, rgba(39, 245, 234, 0.1), rgba(7, 16, 20, 0.9)),
    rgba(3, 6, 7, 0.96);
  box-shadow: var(--shadow);
}

.legal-modal h2 {
  max-width: 560px;
  font-size: clamp(1.8rem, 4vw, 3.1rem);
}

.legal-modal p[data-legal-copy] {
  margin: 18px 0 0;
  white-space: pre-line;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 1.5rem;
  line-height: 1;
}

body.modal-open {
  overflow: hidden;
}

@keyframes logo-box-spin {
  to { transform: rotate(360deg); }
}

@keyframes logo-mark-drift {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  35% { transform: translate3d(1px, -2px, 0) scale(1.08); }
  70% { transform: translate3d(-1px, 1px, 0) scale(0.98); }
}

@keyframes logo-frame-shift {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); opacity: 0.74; }
  50% { transform: translate3d(2px, -2px, 0) rotate(6deg); opacity: 1; }
}

@keyframes logo-frame-inner {
  0%, 100% { transform: scale(0.78) rotate(0deg); opacity: 0.42; }
  50% { transform: scale(1.02) rotate(-8deg); opacity: 0.82; }
}

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

@keyframes drift-a {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-24deg); opacity: 0.36; }
  50% { transform: translate3d(-12vw, 8vh, 0) rotate(-18deg); opacity: 0.86; }
}

@keyframes drift-b {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(18deg); opacity: 0.25; }
  50% { transform: translate3d(9vw, -10vh, 0) rotate(8deg); opacity: 0.72; }
}

@keyframes drift-c {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-7deg); opacity: 0.2; }
  50% { transform: translate3d(10vw, -3vh, 0) rotate(-18deg); opacity: 0.62; }
}

@keyframes scan {
  to { transform: translateY(100%); }
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

@keyframes mark-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(18px) rotate(-4deg); }
}

@keyframes draw-chart {
  to { stroke-dashoffset: 0; }
}

@keyframes reveal-fill {
  to { opacity: 1; }
}

@keyframes grow-bar {
  to { transform: scaleY(1); }
}

html[lang="ru"] h1,
html[lang="ru"] h2 {
  line-height: 1.12;
}

html[lang="ru"] .brief-panel h2,
html[lang="ru"] .method h2 {
  line-height: 1.14;
}

html[lang="ru"] .brief-panel h2 {
  font-size: clamp(1.9rem, 3.1vw, 3.05rem);
}

@media (max-width: 1120px) {
  .service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .pricing-grid,
  .method,
  .section-copy.compact {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 820px) {
  .site-header {
    grid-template-columns: 1fr auto;
    top: 10px;
    left: 10px;
    right: 10px;
  }

  .brand-lockup > span:not(.brand-mark) {
    display: none;
  }

  .desktop-nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    align-items: end;
  }

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

  .hero-metrics div {
    padding: 12px;
  }

  .hero-metrics strong {
    font-size: clamp(1.4rem, 7vw, 2.2rem);
  }

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

  .service-card,
  .steps li {
    min-height: 164px;
  }

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

  .brief-panel {
    min-height: 460px;
  }

  .site-footer {
    flex-direction: column;
    grid-template-columns: 1fr;
    align-items: start;
  }

  .legal-links {
    justify-content: start;
  }

  .cookie-banner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .panel {
    padding: 92px 14px 46px;
  }

  .language-switcher button {
    width: 34px;
    min-height: 34px;
    font-size: 0.68rem;
  }

  .hero-logo {
    width: min(230px, 82vw);
    max-height: 108px;
  }

  h1 {
    font-size: clamp(1.9rem, 10vw, 2.85rem);
    line-height: 1.02;
  }

  .hero-copy {
    font-size: 0.96rem;
    line-height: 1.58;
  }

  .button {
    width: 100%;
  }

  .cookie-actions .button {
    width: auto;
  }

  .hero-metrics {
    display: none;
  }
}

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

  .cursor-glow {
    display: none;
  }
}
