:root {
  color-scheme: dark;
  --bg: #050505;
  --text: #f6f6f6;
  --muted: rgba(246, 246, 246, 0.72);
  --soft: rgba(246, 246, 246, 0.5);
  --glass: rgba(255, 255, 255, 0.075);
  --glass-strong: rgba(255, 255, 255, 0.12);
  --stroke: rgba(255, 255, 255, 0.18);
  --stroke-strong: rgba(255, 255, 255, 0.34);
  --radius: 8px;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.56);
  font-family: Inter, Manrope, "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--bg);
}

body {
  min-height: 100vh;
  margin: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.11), transparent 23%),
    linear-gradient(225deg, rgba(255, 255, 255, 0.075), transparent 25%),
    linear-gradient(20deg, transparent 36%, rgba(255, 255, 255, 0.028) 50%, transparent 64%),
    linear-gradient(180deg, #121212 0%, #070707 48%, #020202 100%);
  color: var(--text);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.04), transparent),
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), transparent 31%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.018) 0 1px, transparent 1px 96px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.012) 0 1px, transparent 1px 96px),
    url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.78' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.32'/%3E%3C/svg%3E");
  opacity: 0.62;
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 18%, rgba(255, 255, 255, 0.035) 100%);
  mix-blend-mode: screen;
  opacity: 0.35;
}

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

.preloader {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: grid;
  place-items: center;
  pointer-events: none;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), transparent 35%),
    rgba(5, 5, 5, 0.88);
  backdrop-filter: blur(24px) saturate(120%);
  -webkit-backdrop-filter: blur(24px) saturate(120%);
  animation: preloaderOut 640ms 520ms ease forwards;
}

.preloader span {
  position: relative;
  width: 128px;
  height: 6px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 22px 70px rgba(0, 0, 0, 0.42);
}

.preloader span::before {
  position: absolute;
  inset: -1px auto -1px 0;
  width: 46%;
  content: "";
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 0 22px rgba(255, 255, 255, 0.36);
  animation: preloaderLine 520ms ease both;
}

.cursor-light {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
  width: 260px;
  height: 260px;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.13) 0%, rgba(255, 255, 255, 0.045) 34%, transparent 68%);
  mix-blend-mode: screen;
  transform: translate3d(-50%, -50%, 0);
  transition: opacity 180ms ease;
}

body.pointer-active .cursor-light {
  opacity: 1;
}

@keyframes preloaderOut {
  to {
    visibility: hidden;
    opacity: 0;
  }
}

@keyframes preloaderLine {
  from {
    transform: translateX(-100%);
  }

  to {
    transform: translateX(240%);
  }
}

img,
svg {
  display: block;
}

.sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.page-shell {
  width: min(100% - 32px, 780px);
  margin: 0 auto;
  padding: 52px 0 56px;
}

@keyframes glassIn {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.hero {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 18px;
  margin-bottom: 34px;
  padding: 28px 24px 30px;
  overflow: hidden;
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), transparent 18%, transparent 76%, rgba(0, 0, 0, 0.18)),
    linear-gradient(145deg, rgba(255, 255, 255, 0.16), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035));
  box-shadow:
    var(--shadow),
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    inset 0 -1px 0 rgba(0, 0, 0, 0.34),
    inset 0 0 0 1px rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(30px) saturate(150%);
  -webkit-backdrop-filter: blur(30px) saturate(150%);
  animation: glassIn 520ms ease both;
}

.hero::before,
.project-card::before,
.quick-link::before {
  position: absolute;
  top: -35%;
  bottom: -35%;
  left: -80%;
  width: 58%;
  pointer-events: none;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.34), transparent);
  opacity: 0.34;
  transform: skewX(-18deg);
  transition: left 720ms ease, opacity 220ms ease;
}

.hero:hover::before,
.project-card:hover::before,
.quick-link:hover::before,
.quick-link:focus-visible::before,
.project-card:focus-visible::before {
  left: 122%;
  opacity: 0.52;
}

.avatar-frame,
h1,
.quick-links {
  position: relative;
  z-index: 1;
}

.avatar-frame {
  display: block;
  width: 136px;
  height: 136px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.045)),
    rgba(255, 255, 255, 0.08);
  box-shadow:
    0 18px 52px rgba(0, 0, 0, 0.48),
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    inset 0 -12px 24px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.08);
  transform: perspective(720px) rotateX(var(--avatar-tilt-y, 0deg)) rotateY(var(--avatar-tilt-x, 0deg));
  transition: transform 240ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.avatar-frame::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: radial-gradient(
    circle at var(--avatar-shine-x, 50%) var(--avatar-shine-y, 50%),
    rgba(255, 255, 255, 0.18),
    transparent 38%
  );
  opacity: 0;
  transition: opacity 220ms ease;
}

.hero:hover .avatar-frame {
  border-color: rgba(255, 255, 255, 0.72);
  box-shadow:
    0 20px 58px rgba(0, 0, 0, 0.52),
    inset 0 1px 0 rgba(255, 255, 255, 0.34),
    inset 0 -12px 24px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.1);
}

.hero:hover .avatar-frame::after {
  opacity: 1;
}

.avatar {
  width: 194px;
  height: auto;
  max-width: none;
  transform: translate(-31px, -70px);
}

h1 {
  max-width: 100%;
  margin: 0;
  font-size: 3rem;
  line-height: 1.02;
  font-weight: 740;
  letter-spacing: 0;
  overflow-wrap: anywhere;
  text-align: center;
}

h1 span {
  display: inline-block;
  color: transparent;
  background:
    linear-gradient(180deg, #ffffff 0%, #ededed 36%, #bdbdbd 70%, #7f7f7f 100%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.35));
  -webkit-background-clip: text;
  background-clip: text;
  filter: drop-shadow(0 14px 24px rgba(0, 0, 0, 0.5));
  transition: filter 200ms ease, opacity 200ms ease;
}

h1:hover span {
  filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.56)) brightness(1.08);
}

h1::after {
  display: block;
  width: min(220px, 64vw);
  height: 1px;
  margin: 14px auto 0;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.74), transparent);
}

.support-engrave {
  position: relative;
  z-index: 1;
  min-height: 0;
  margin-top: -8px;
  padding: 0;
  color: rgba(255, 255, 255, 0.34);
  border: 0;
  background: transparent;
  font: inherit;
  font-size: 0.74rem;
  font-weight: 720;
  letter-spacing: 0;
  text-transform: lowercase;
  cursor: pointer;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.08), 0 -1px 0 rgba(0, 0, 0, 0.8);
  transition: color 180ms ease, transform 180ms ease, text-shadow 180ms ease;
}

.support-engrave::after {
  display: none;
  width: 0;
  height: 0;
  margin-top: 0;
  content: "";
  background: none;
  opacity: 0;
}

.support-engrave:hover,
.support-engrave:focus-visible {
  color: rgba(255, 255, 255, 0.68);
  text-shadow: 0 0 18px rgba(255, 255, 255, 0.16);
  transform: translateY(-1px);
  outline: 0;
}

.quick-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(14px, 4vw, 28px);
  width: 100%;
  margin-top: 4px;
}

.quick-link {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.045)),
    rgba(255, 255, 255, 0.035);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.22);
  outline: 0;
  backdrop-filter: blur(22px) saturate(150%);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
  transition: transform 180ms ease, color 180ms ease, border-color 180ms ease, background 180ms ease;
  animation: glassIn 460ms ease both;
}

.quick-link::after {
  display: none;
}

.quick-link:nth-child(1) {
  animation-delay: 80ms;
}

.quick-link:nth-child(2) {
  animation-delay: 120ms;
}

.quick-link:nth-child(3) {
  animation-delay: 160ms;
}

.quick-link:nth-child(4) {
  animation-delay: 200ms;
}

.quick-link:nth-child(5) {
  animation-delay: 240ms;
}

.quick-link:nth-child(6) {
  animation-delay: 280ms;
}

.quick-link::before {
  opacity: 0.36;
}

.quick-link svg {
  position: relative;
  z-index: 1;
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.quick-link:hover,
.quick-link:focus-visible {
  transform: translateY(-2px);
  color: #ffffff;
  border-color: var(--stroke-strong);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.06)),
    rgba(255, 255, 255, 0.06);
}

.quick-link:hover::after,
.quick-link:focus-visible::after {
  display: none;
}

.projects {
  position: relative;
  display: grid;
  gap: 16px;
  padding-top: 26px;
}

.projects::before {
  position: absolute;
  top: 0;
  right: 4px;
  left: 4px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
}

.projects h2 {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.16rem;
  line-height: 1.2;
  font-weight: 720;
  letter-spacing: 0;
  animation: glassIn 520ms 150ms ease both;
}

.project-list {
  display: grid;
  gap: 16px;
}

.project-card {
  position: relative;
  display: grid;
  grid-template-columns: 176px minmax(0, 1fr);
  align-items: center;
  gap: 30px;
  min-height: 226px;
  padding: 28px 30px 32px;
  overflow: hidden;
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.072), transparent 18%, transparent 78%, rgba(0, 0, 0, 0.2)),
    linear-gradient(140deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04) 48%, rgba(255, 255, 255, 0.075)),
    rgba(255, 255, 255, 0.035);
  box-shadow:
    var(--shadow),
    inset 0 1px 0 rgba(255, 255, 255, 0.26),
    inset 0 -1px 0 rgba(0, 0, 0, 0.34),
    inset 0 0 0 1px rgba(255, 255, 255, 0.035);
  outline: 0;
  backdrop-filter: blur(30px) saturate(150%);
  -webkit-backdrop-filter: blur(30px) saturate(150%);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
  animation: glassIn 560ms 220ms ease both;
}

.project-card::before {
  opacity: 0.46;
}

.project-card::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  border-radius: inherit;
  background:
    radial-gradient(circle at 16% 20%, rgba(255, 255, 255, 0.13), transparent 26%),
    linear-gradient(90deg, transparent 3%, rgba(255, 255, 255, 0.22) 16%, transparent 34%),
    linear-gradient(180deg, transparent calc(100% - 15px), rgba(255, 255, 255, 0.18), transparent);
  opacity: 0.62;
  transition: opacity 220ms ease, background-position 260ms ease;
}

.project-card:hover,
.project-card:focus-visible {
  transform: translateY(-3px);
  border-color: var(--stroke-strong);
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.1), transparent 28%),
    linear-gradient(140deg, rgba(255, 255, 255, 0.19), rgba(255, 255, 255, 0.055) 48%, rgba(255, 255, 255, 0.11)),
    rgba(255, 255, 255, 0.05);
  box-shadow:
    0 34px 100px rgba(0, 0, 0, 0.62),
    0 0 0 1px rgba(255, 255, 255, 0.07),
    0 0 42px rgba(255, 255, 255, 0.035),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.project-card:hover::after,
.project-card:focus-visible::after {
  opacity: 0.95;
}

.project-logo,
.project-copy,
.project-corner {
  position: relative;
  z-index: 1;
}

.project-corner {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  color: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
  opacity: 0.72;
  transition: opacity 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.project-corner svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.project-card:hover .project-corner,
.project-card:focus-visible .project-corner {
  opacity: 1;
  transform: translate(1px, -1px);
  border-color: rgba(255, 255, 255, 0.28);
}

.project-logo {
  display: grid;
  place-items: center;
  width: 176px;
  height: 176px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.44), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.project-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  transform: scale(1);
  transition: transform 260ms ease;
}

.project-card:hover .project-logo img,
.project-card:focus-visible .project-logo img {
  transform: scale(1.025);
}

.project-copy {
  display: grid;
  min-width: 0;
  gap: 12px;
}

.project-title {
  color: var(--text);
  font-size: 2.35rem;
  line-height: 1.08;
  font-weight: 760;
  overflow-wrap: anywhere;
}

.project-text {
  max-width: 58ch;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.56;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 2px;
}

.project-tags span {
  display: inline-grid;
  min-height: 30px;
  place-items: center;
  padding: 0 11px;
  color: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.03);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  font-size: 0.82rem;
  font-weight: 680;
  line-height: 1.1;
  white-space: nowrap;
}

.project-card:hover .project-tags span,
.project-card:focus-visible .project-tags span {
  color: rgba(255, 255, 255, 0.78);
  border-color: rgba(255, 255, 255, 0.2);
}

.section-divider {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 26px;
  margin: 28px 0 24px;
  color: rgba(255, 255, 255, 0.72);
}

.section-divider span {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.68));
}

.section-divider span:last-child {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.68), transparent);
}

.section-divider b {
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.32rem;
  line-height: 1;
  font-weight: 760;
  text-shadow: 0 12px 30px rgba(0, 0, 0, 0.54);
}

.services-panel {
  display: grid;
  min-height: 68px;
  place-items: center;
  padding: 18px 22px;
  overflow: hidden;
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.032)),
    rgba(255, 255, 255, 0.026);
  box-shadow:
    0 22px 70px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    inset 0 -1px 0 rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(26px) saturate(145%);
  -webkit-backdrop-filter: blur(26px) saturate(145%);
}

.services-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.18rem;
  font-weight: 720;
  line-height: 1.25;
  text-align: center;
}

.services-panel-link {
  cursor: pointer;
  outline: 0;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.services-panel-link:hover,
.services-panel-link:focus-visible {
  transform: translateY(-2px);
  border-color: var(--stroke-strong);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.04);
  box-shadow:
    0 28px 78px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    inset 0 -1px 0 rgba(0, 0, 0, 0.3);
}

.service-shell {
  display: grid;
  gap: 24px;
}

.page-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.82rem;
  font-weight: 720;
  animation: glassIn 420ms ease both;
}

.back-link {
  display: inline-grid;
  min-height: 38px;
  place-items: center;
  padding: 0 13px;
  color: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.03);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.13);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.back-link:hover,
.back-link:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.28);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.04);
  outline: 0;
}

.service-head {
  display: grid;
  justify-items: center;
  gap: 14px;
  padding: 10px 0 4px;
  text-align: center;
  animation: glassIn 520ms 80ms ease both;
}

.service-head h1 {
  justify-self: stretch;
  width: 100%;
  white-space: normal;
  word-break: normal;
  overflow-wrap: anywhere;
}

.service-head h1 span {
  display: inline;
  white-space: normal;
  overflow-wrap: anywhere;
}

.service-page h1::after {
  display: none;
}

.service-head-compact {
  padding-bottom: 0;
}

.service-head p {
  max-width: 58ch;
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
}

.service-grid,
.service-detail {
  display: grid;
  gap: 16px;
}

.service-category-card,
.price-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.076), transparent 24%, rgba(0, 0, 0, 0.16)),
    linear-gradient(140deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.034) 50%, rgba(255, 255, 255, 0.065)),
    rgba(255, 255, 255, 0.03);
  box-shadow:
    0 24px 76px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    inset 0 -1px 0 rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(28px) saturate(145%);
  -webkit-backdrop-filter: blur(28px) saturate(145%);
  animation: glassIn 560ms 160ms ease both;
}

.service-category-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  min-height: 108px;
  padding: 24px;
  outline: 0;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.service-category-card:hover,
.service-category-card:focus-visible {
  transform: translateY(-3px);
  border-color: var(--stroke-strong);
  background:
    radial-gradient(circle at 16% 18%, rgba(255, 255, 255, 0.1), transparent 30%),
    linear-gradient(140deg, rgba(255, 255, 255, 0.17), rgba(255, 255, 255, 0.046) 52%, rgba(255, 255, 255, 0.09)),
    rgba(255, 255, 255, 0.045);
  box-shadow:
    0 32px 96px rgba(0, 0, 0, 0.56),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.service-category-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.04);
  font-size: 1.52rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.service-category-copy {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.service-category-copy strong {
  color: rgba(255, 255, 255, 0.93);
  font-size: 1.28rem;
  line-height: 1.2;
}

.service-category-copy small {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.42;
}

.price-card {
  padding: 24px;
}

.price-card-main {
  animation-delay: 180ms;
}

.price-card h2 {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  line-height: 1.25;
}

.price-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.price-name {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.25rem;
  font-weight: 760;
}

.price-head strong {
  color: #fff;
  font-size: 1.62rem;
  line-height: 1;
}

.service-list {
  display: grid;
  gap: 10px;
  counter-reset: service-step;
  margin: 20px 0 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.78);
  list-style: none;
}

.service-list li {
  position: relative;
  min-height: 48px;
  padding: 12px 14px 12px 58px;
  border: 1px solid rgba(255, 255, 255, 0.105);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.054), rgba(255, 255, 255, 0.018)),
    rgba(255, 255, 255, 0.018);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.095),
    0 12px 30px rgba(0, 0, 0, 0.16);
  counter-increment: service-step;
  line-height: 1.42;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.service-list li::before {
  position: absolute;
  top: 50%;
  left: 14px;
  z-index: 1;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.04);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 10px 24px rgba(0, 0, 0, 0.26);
  content: counter(service-step, decimal-leading-zero);
  font-size: 0.68rem;
  font-weight: 780;
  transform: translateY(-50%);
}

.service-list li:not(:last-child)::after {
  position: absolute;
  top: calc(50% + 18px);
  bottom: -19px;
  left: 29px;
  width: 1px;
  content: "";
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.22), transparent);
}

.service-list li:hover {
  transform: translateX(2px);
  border-color: rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.078), rgba(255, 255, 255, 0.026)),
    rgba(255, 255, 255, 0.026);
}

.service-time {
  display: inline-grid;
  min-height: 34px;
  place-items: center;
  width: fit-content;
  margin: 18px 0 0;
  padding: 0 12px;
  color: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.022)),
    rgba(255, 255, 255, 0.025);
  font-weight: 720;
}

.offer-list {
  display: grid;
  gap: 12px;
}

.offer-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 6px 18px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.028);
}

.offer-row span,
.extra-list span {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 720;
}

.offer-row strong,
.extra-list strong {
  color: rgba(255, 255, 255, 0.96);
}

.offer-row small {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.42;
}

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

.extra-list p {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  margin: 0;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.028);
  line-height: 1.42;
}

.service-copy-card {
  display: grid;
  gap: 18px;
}

.service-feature-list {
  display: grid;
  gap: 12px;
}

.service-feature {
  display: grid;
  gap: 7px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    rgba(255, 255, 255, 0.02);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.service-feature strong,
.brief-list li,
.service-summary-card span {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 720;
}

.service-feature p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

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

.brief-list li {
  position: relative;
  padding: 14px 16px 14px 42px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.022);
  line-height: 1.45;
}

.brief-list li::before {
  position: absolute;
  top: 14px;
  left: 16px;
  color: rgba(255, 255, 255, 0.54);
  content: "•";
  font-size: 1.2rem;
  line-height: 1;
}

.service-summary-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.service-summary-card p {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.062), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.024);
}

.service-summary-card strong {
  color: rgba(255, 255, 255, 0.98);
  font-size: 1.26rem;
  line-height: 1.2;
}

.service-summary-card small {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.42;
}

.service-page .page-nav,
.service-page .service-head,
.service-page .service-category-card,
.service-page .price-card {
  animation: none;
}

.site-footer {
  margin-top: 36px;
  color: rgba(255, 255, 255, 0.34);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0;
  text-align: center;
}

.reveal-item {
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal-item:not(.is-visible) {
  opacity: 0;
  transform: translateY(16px) scale(0.99);
}

.toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 40;
  max-width: min(320px, calc(100vw - 40px));
  padding: 12px 14px;
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(10, 10, 10, 0.72);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.52), inset 0 1px 0 rgba(255, 255, 255, 0.14);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease;
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
}

.link-tooltip {
  position: fixed;
  z-index: 45;
  padding: 6px 9px;
  pointer-events: none;
  color: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(10, 10, 10, 0.74);
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  font-size: 0.78rem;
  white-space: nowrap;
  opacity: 0;
  transform: translate(-50%, -4px);
  transition: opacity 160ms ease, transform 160ms ease;
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
}

.link-tooltip.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

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

body.modal-open {
  overflow: hidden;
}

.donation-modal {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: grid;
  place-items: center;
  padding: 20px;
}

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

.donation-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.58);
  opacity: 0;
  transition: opacity 180ms ease;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.donation-dialog {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  width: min(100%, 430px);
  padding: 24px;
  color: var(--text);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), transparent 22%, rgba(0, 0, 0, 0.18)),
    linear-gradient(145deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.04)),
    rgba(10, 10, 10, 0.82);
  box-shadow: 0 30px 110px rgba(0, 0, 0, 0.68), inset 0 1px 0 rgba(255, 255, 255, 0.22);
  opacity: 0;
  transform: translateY(14px) scale(0.985);
  transition: opacity 180ms ease, transform 180ms ease;
  backdrop-filter: blur(30px) saturate(145%);
  -webkit-backdrop-filter: blur(30px) saturate(145%);
}

.donation-modal.is-open .donation-backdrop,
.donation-modal.is-open .donation-dialog {
  opacity: 1;
}

.donation-modal.is-open .donation-dialog {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  padding: 0;
  color: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  font: inherit;
  font-size: 1.3rem;
  cursor: pointer;
}

.modal-kicker {
  margin: 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: lowercase;
}

.donation-dialog h2 {
  margin: 0 38px 2px 0;
  font-size: 1.7rem;
  line-height: 1.1;
}

.donation-dialog label {
  display: grid;
  gap: 7px;
}

.donation-dialog label span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
}

.donation-dialog input,
.donation-dialog textarea {
  width: 100%;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.28);
  outline: 0;
}

.donation-dialog input {
  min-height: 44px;
  padding: 0 12px;
}

.donation-dialog textarea {
  min-height: 104px;
  padding: 12px;
  resize: vertical;
}

.donation-dialog input:focus,
.donation-dialog textarea:focus {
  border-color: var(--stroke-strong);
  background: rgba(0, 0, 0, 0.38);
}

.donation-note,
.donation-message {
  margin: 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.86rem;
  line-height: 1.45;
}

.donation-message {
  min-height: 1.25em;
  color: rgba(255, 255, 255, 0.78);
}

.donation-message.is-error {
  color: #ffbdbd;
}

.donation-submit {
  min-height: 46px;
  color: var(--text);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.05)),
    rgba(255, 255, 255, 0.06);
  font: inherit;
  font-weight: 720;
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.donation-submit:hover,
.donation-submit:focus-visible {
  border-color: var(--stroke-strong);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.19), rgba(255, 255, 255, 0.07)),
    rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.donation-submit:disabled {
  cursor: wait;
  opacity: 0.58;
  transform: none;
}

@media (max-width: 620px) {
  .page-shell {
    width: min(100% - 20px, 780px);
    padding-top: 30px;
  }

  .hero {
    gap: 16px;
    margin-bottom: 30px;
    padding: 22px 14px 26px;
  }

  .avatar-frame {
    width: 118px;
    height: 118px;
  }

  .avatar {
    width: 169px;
    transform: translate(-27px, -61px);
  }

  .quick-links {
    gap: 10px;
  }

  .quick-link {
    width: 48px;
    height: 48px;
  }

  .quick-link::after {
    display: none;
  }

  .quick-link svg {
    width: 28px;
    height: 28px;
  }

  .project-card {
    grid-template-columns: 128px minmax(0, 1fr);
    gap: 16px;
    min-height: 174px;
    padding: 20px 18px 24px;
  }

  .project-logo {
    width: 128px;
    height: 128px;
  }

  .project-text {
    font-size: 0.93rem;
    line-height: 1.5;
  }

  h1 {
    font-size: 2.22rem;
  }

  .service-page h1 {
    font-size: 2rem;
  }

  .project-title {
    font-size: 1.95rem;
  }

  .project-tags {
    gap: 7px;
  }

  .project-tags span {
    min-height: 28px;
    padding: 0 9px;
    font-size: 0.78rem;
  }

  .section-divider {
    gap: 18px;
    margin: 24px 0 20px;
  }

  .services-panel {
    min-height: 64px;
    padding: 16px 18px;
  }

  .services-panel p {
    font-size: 1.06rem;
  }

  .service-shell {
    gap: 20px;
  }

  .page-nav {
    font-size: 0.78rem;
  }

  .service-head p {
    font-size: 0.94rem;
  }

  .service-category-card {
    gap: 14px;
    min-height: 96px;
    padding: 18px;
  }

  .service-category-icon {
    width: 48px;
    height: 48px;
    font-size: 1.32rem;
  }

  .service-category-copy strong {
    font-size: 1.12rem;
  }

  .price-card {
    padding: 18px;
  }

  .service-list {
    gap: 8px;
  }

  .service-list li {
    min-height: 44px;
    padding: 11px 12px 11px 52px;
    font-size: 0.94rem;
  }

  .service-list li::before {
    left: 12px;
    width: 28px;
    height: 28px;
    font-size: 0.64rem;
  }

  .service-list li:not(:last-child)::after {
    left: 26px;
  }

  .service-time {
    min-height: 32px;
    font-size: 0.92rem;
  }

  .price-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .price-head strong {
    font-size: 1.42rem;
  }

  .offer-row,
  .extra-list p,
  .service-summary-card {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .service-feature,
  .brief-list li,
  .service-summary-card p {
    padding: 14px;
  }

  .brief-list li {
    padding-left: 38px;
  }

  .brief-list li::before {
    left: 14px;
  }

  .project-corner {
    top: 14px;
    right: 14px;
    width: 30px;
    height: 30px;
  }

  .site-footer {
    margin-top: 30px;
  }

  .donation-dialog {
    padding: 20px;
  }
}

@media (max-width: 430px) {
  .project-card {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .project-copy {
    justify-items: center;
  }

  .project-logo {
    width: 146px;
    height: 146px;
  }

  h1 {
    font-size: 1.92rem;
  }

  .service-page h1 {
    font-size: 1.74rem;
  }

  .project-tags {
    justify-content: center;
  }

  .page-nav {
    align-items: flex-start;
    flex-direction: column-reverse;
  }

  .service-category-card {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
}

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

  .preloader {
    display: none;
  }
}

@media (pointer: coarse) {
  .cursor-light {
    display: none;
  }
}
