:root {
  color-scheme: dark;
  --ink: #070707;
  --ink-2: #140a24;
  --ink-3: #1d1035;
  --paper: #fffdf5;
  --mint: #e2ffd9;
  --mint-strong: #b9ff84;
  --orange: #ff9f10;
  --cyan: #00e3ce;
  --blue: #3857ff;
  --violet: #a429ff;
  --pink: #ff2fa7;
  --muted: rgba(255, 253, 245, 0.74);
  --muted-dark: rgba(16, 15, 34, 0.68);
  --line: rgba(255, 253, 245, 0.18);
  --line-dark: rgba(16, 15, 34, 0.16);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

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

body {
  position: relative;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(135deg, rgba(0, 227, 206, 0.14), rgba(0, 227, 206, 0) 42%),
    linear-gradient(315deg, rgba(127, 221, 255, 0.1), rgba(255, 47, 167, 0.06) 58%, rgba(255, 47, 167, 0) 78%),
    linear-gradient(180deg, #050806 0%, #090713 48%, #080309 100%);
  color: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body.is-locked {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

::selection {
  background: rgba(226, 255, 217, 0.28);
}

h1,
h2,
h3,
p,
dd,
dt {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 0.95;
  letter-spacing: 0;
}

p {
  margin: 0;
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  gap: 24px;
  overflow: hidden;
  background: #030303;
  color: var(--paper);
  transition: opacity 450ms ease, visibility 450ms ease;
  animation: loader-failsafe 420ms ease 4.1s forwards;
}

.loader::before {
  content: "";
  position: absolute;
  inset: -20%;
  z-index: 0;
  background:
    conic-gradient(from 210deg, transparent 0deg, rgba(0, 227, 206, 0.85) 62deg, rgba(164, 41, 255, 0.7) 134deg, rgba(255, 47, 167, 0.72) 202deg, transparent 300deg),
    linear-gradient(135deg, #050505, #160a2f 48%, #040404);
  filter: blur(36px);
  opacity: 0.74;
  animation: glow-shift 4s ease-in-out infinite alternate;
}

.loader::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(115deg, transparent 0 38%, rgba(226, 255, 217, 0.12) 46%, rgba(0, 227, 206, 0.1) 50%, transparent 58%),
    linear-gradient(90deg, rgba(226, 255, 217, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(226, 255, 217, 0.055) 1px, transparent 1px),
    radial-gradient(circle at 50% 50%, rgba(0, 227, 206, 0.16), transparent 36%),
    radial-gradient(circle at 30% 78%, rgba(255, 47, 167, 0.12), transparent 30%);
  background-size: 190% 100%, 72px 72px, 72px 72px, 100% 100%, 100% 100%;
  background-position: -120% 0, 0 0, 0 0, 0 0, 0 0;
  opacity: 0.72;
  mask-image: radial-gradient(circle at 50% 50%, #000 0 48%, rgba(0, 0, 0, 0.74) 62%, transparent 100%);
  pointer-events: none;
  animation: loader-bg-flow 3.8s ease-in-out infinite;
}

.loader.is-hidden {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  animation: none;
}

.loader p {
  position: relative;
  z-index: 1;
  margin: 245px 0 0;
  color: rgba(255, 253, 245, 0.78);
  font-size: 0.95rem;
}

.loader__orbit {
  position: absolute;
  z-index: 1;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(226, 255, 217, 0.3);
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.loader__orbit::before,
.loader__orbit::after {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: inherit;
  border: 3px solid transparent;
  border-top-color: var(--mint);
  border-right-color: var(--cyan);
  animation: orbit 1.15s linear infinite;
}

.loader__orbit::after {
  inset: 34px;
  border-top-color: var(--violet);
  border-right-color: transparent;
  animation-duration: 1.8s;
  animation-direction: reverse;
}

.loader__mark {
  width: 118px;
  height: 118px;
  display: grid;
  place-items: center;
  filter:
    drop-shadow(0 0 26px rgba(0, 227, 206, 0.22))
    drop-shadow(0 0 28px rgba(255, 47, 167, 0.2));
}

.loader__mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.loader__code {
  position: absolute;
  color: rgba(255, 253, 245, 0.74);
  font-family: "Cascadia Code", "Fira Code", Consolas, monospace;
  font-size: 0.76rem;
}

.loader__code--top {
  top: -18px;
}

.loader__code--right {
  right: -18px;
  top: 82px;
}

.loader__code--bottom {
  bottom: -18px;
}

.loader__code--left {
  left: -12px;
  top: 82px;
}

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

@keyframes loader-failsafe {
  to {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    z-index: -1;
  }
}

@keyframes glow-shift {
  from {
    transform: translate3d(-2%, -1%, 0) rotate(0deg);
  }
  to {
    transform: translate3d(2%, 1%, 0) rotate(8deg);
  }
}

@keyframes loader-bg-flow {
  0% {
    background-position: -120% 0, 0 0, 0 0, 0 0, 0 0;
    opacity: 0.52;
  }
  45% {
    opacity: 0.82;
  }
  100% {
    background-position: 120% 0, 42px 28px, -28px 42px, 0 0, 0 0;
    opacity: 0.58;
  }
}

@keyframes hero-scan {
  0%,
  42% {
    transform: translateX(-45%) rotate(10deg);
    opacity: 0;
  }
  55% {
    opacity: 1;
  }
  76%,
  100% {
    transform: translateX(45%) rotate(10deg);
    opacity: 0;
  }
}

@keyframes logo-breathe {
  0%,
  100% {
    transform: translateY(0) scale(1);
    filter:
      drop-shadow(0 0 18px rgba(0, 227, 206, 0.16))
      drop-shadow(0 0 24px rgba(255, 47, 167, 0.12));
  }
  50% {
    transform: translateY(-5px) scale(1.018);
    filter:
      drop-shadow(0 0 28px rgba(0, 227, 206, 0.22))
      drop-shadow(0 0 34px rgba(255, 47, 167, 0.18));
  }
}

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

@keyframes status-idle {
  0%,
  100% {
    border-color: rgba(226, 255, 217, 0.16);
    background-position: 0% 50%;
  }
  50% {
    border-color: rgba(0, 227, 206, 0.32);
    background-position: 100% 50%;
  }
}

@keyframes line-flow {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 240px 0;
  }
}

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

@keyframes content-in {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: min(calc(100% - 28px), var(--max));
  min-height: 0;
  margin: 14px auto 0;
  padding: 8px;
  border: 1px solid rgba(226, 255, 217, 0.16);
  border-radius: 999px;
  isolation: isolate;
  background:
    linear-gradient(135deg, rgba(255, 253, 245, 0.055), rgba(0, 227, 206, 0.032) 42%, rgba(255, 47, 167, 0.032)),
    rgba(3, 5, 5, 0.14);
  box-shadow:
    inset 0 0 0 1px rgba(255, 253, 245, 0.035),
    0 18px 54px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(20px);
  transition: background 260ms ease, border-color 260ms ease, box-shadow 260ms ease, transform 260ms ease;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 5px;
  z-index: 0;
  border-radius: inherit;
  background:
    linear-gradient(90deg, transparent, rgba(0, 227, 206, 0.12), transparent 58%),
    repeating-linear-gradient(90deg, transparent 0 38px, rgba(226, 255, 217, 0.08) 38px 39px);
  opacity: 0.62;
  pointer-events: none;
}

.site-header::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 5px;
  z-index: 2;
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), var(--mint), var(--pink));
  box-shadow: 0 0 18px rgba(0, 227, 206, 0.28);
  transform: scaleX(var(--scroll-progress, 0));
  transform-origin: left center;
  transition: transform 120ms linear;
}

.brand,
.site-nav,
.nav-toggle {
  position: relative;
  z-index: 1;
}

body.has-scrolled .site-header {
  background:
    linear-gradient(135deg, rgba(255, 253, 245, 0.065), rgba(0, 227, 206, 0.045) 42%, rgba(255, 47, 167, 0.038)),
    rgba(4, 6, 7, 0.34);
  border-color: rgba(226, 255, 217, 0.22);
  box-shadow:
    inset 0 0 0 1px rgba(255, 253, 245, 0.04),
    0 18px 54px rgba(0, 0, 0, 0.3);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 5px 14px 5px 6px;
  border: 1px solid rgba(226, 255, 217, 0.16);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.1);
  color: var(--paper);
  font-weight: 900;
  text-decoration: none;
  box-shadow: inset 0 0 20px rgba(0, 227, 206, 0.035);
  transition: color 220ms ease, transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.brand:hover,
.brand:focus-visible {
  color: var(--mint);
  transform: translateY(-1px);
  border-color: rgba(226, 255, 217, 0.34);
  background: rgba(0, 227, 206, 0.055);
  outline: none;
}

.brand__mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(226, 255, 217, 0.1);
  border-radius: 50%;
  background: rgba(255, 253, 245, 0.025);
  filter: drop-shadow(0 0 12px rgba(255, 47, 167, 0.26));
  transition: filter 260ms ease, transform 260ms ease;
}

.brand:hover .brand__mark,
.brand:focus-visible .brand__mark {
  transform: rotate(-4deg) scale(1.04);
  filter:
    drop-shadow(0 0 16px rgba(0, 227, 206, 0.24))
    drop-shadow(0 0 18px rgba(255, 47, 167, 0.24));
}

.brand__mark img {
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  border-radius: 50%;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  padding: 5px;
  gap: 6px;
  border: 1px solid rgba(226, 255, 217, 0.13);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.12);
  box-shadow: inset 0 0 20px rgba(255, 253, 245, 0.035);
}

.site-nav a {
  position: relative;
  overflow: hidden;
  padding: 9px 14px;
  color: rgba(255, 253, 245, 0.84);
  font-size: 0.94rem;
  font-weight: 800;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 999px;
  transition: color 220ms ease, background 220ms ease, transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 13px;
  right: 13px;
  bottom: 6px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), var(--mint), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 240ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  border-color: rgba(226, 255, 217, 0.2);
  background:
    radial-gradient(circle at 50% 0%, rgba(0, 227, 206, 0.18), transparent 62%),
    rgba(226, 255, 217, 0.1);
  color: var(--mint);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0, 227, 206, 0.08);
  outline: none;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.site-nav a.site-nav__cta {
  margin-left: 2px;
  border-color: rgba(226, 255, 217, 0.42);
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.34), transparent 62%),
    linear-gradient(135deg, var(--mint), rgba(0, 227, 206, 0.68));
  color: #141023;
  box-shadow: 0 10px 26px rgba(0, 227, 206, 0.16);
}

.site-nav a.site-nav__cta::after {
  display: none;
}

.site-nav a.site-nav__cta:hover,
.site-nav a.site-nav__cta:focus-visible {
  border-color: rgba(226, 255, 217, 0.7);
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.46), transparent 62%),
    linear-gradient(135deg, rgba(226, 255, 217, 0.98), rgba(0, 227, 206, 0.78));
  color: #141023;
  box-shadow: 0 14px 34px rgba(0, 227, 206, 0.22);
}

.language-switch {
  --switch-padding: 3px;
  --switch-track: calc((100% - (var(--switch-padding) * 2)) / 2);
  position: relative;
  display: inline-grid;
  grid-template-columns: repeat(2, minmax(38px, 1fr));
  align-items: center;
  margin-left: 4px;
  padding: var(--switch-padding);
  border: 1px solid rgba(226, 255, 217, 0.13);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 253, 245, 0.055), rgba(0, 227, 206, 0.045), rgba(255, 47, 167, 0.035)),
    rgba(0, 0, 0, 0.18);
  box-shadow:
    inset 0 0 18px rgba(255, 253, 245, 0.035),
    0 10px 24px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  isolation: isolate;
}

.language-switch::before {
  content: "";
  position: absolute;
  top: var(--switch-padding);
  bottom: var(--switch-padding);
  left: var(--switch-padding);
  z-index: 0;
  width: var(--switch-track);
  border: 1px solid rgba(226, 255, 217, 0.2);
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 0%, rgba(226, 255, 217, 0.26), transparent 64%),
    linear-gradient(135deg, rgba(0, 227, 206, 0.28), rgba(255, 47, 167, 0.18));
  box-shadow:
    0 0 18px rgba(0, 227, 206, 0.16),
    inset 0 0 14px rgba(255, 253, 245, 0.08);
  transform: translateX(0);
  transition: transform 320ms cubic-bezier(0.2, 0.85, 0.2, 1);
}

.language-switch--en::before {
  transform: translateX(100%);
}

.language-switch--en[data-from="cz"]::before {
  animation: lang-slide-cz-en 360ms cubic-bezier(0.2, 0.85, 0.2, 1) both;
}

.language-switch--cz[data-from="en"]::before {
  animation: lang-slide-en-cz 360ms cubic-bezier(0.2, 0.85, 0.2, 1) both;
}

.site-nav .language-switch a {
  position: relative;
  z-index: 1;
  min-width: 38px;
  padding: 7px 10px;
  font-size: 0.76rem;
  letter-spacing: 0;
  text-align: center;
  border-color: transparent;
  background: transparent;
  box-shadow: none;
  transform: none;
}

.site-nav .language-switch a::after {
  display: none;
}

.site-nav .language-switch a:hover,
.site-nav .language-switch a:focus-visible {
  border-color: transparent;
  background: transparent;
  box-shadow: none;
  transform: none;
}

.site-nav .language-switch a[aria-current="true"],
.site-nav .language-switch a:hover,
.site-nav .language-switch a:focus-visible {
  color: var(--mint);
}

@keyframes lang-slide-cz-en {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(100%);
  }
}

@keyframes lang-slide-en-cz {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(226, 255, 217, 0.18);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.12);
  color: var(--paper);
  transition: border-color 220ms ease, background 220ms ease, transform 220ms ease;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  border-color: rgba(226, 255, 217, 0.34);
  background: rgba(0, 227, 206, 0.065);
  transform: translateY(-1px);
  outline: none;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero,
.page-hero {
  position: relative;
  overflow: hidden;
  background: transparent;
}

.hero::before,
.page-hero::before,
.section--ink::before {
  content: "";
  position: absolute;
  inset: -18%;
  background:
    conic-gradient(from 220deg at 40% 52%, transparent 0deg, rgba(54, 71, 255, 0.82) 58deg, rgba(0, 227, 206, 0.78) 118deg, rgba(255, 47, 167, 0.75) 204deg, transparent 310deg),
    linear-gradient(120deg, transparent 0%, rgba(226, 255, 217, 0.08) 44%, transparent 68%);
  filter: blur(48px);
  opacity: 0.88;
  transform: rotate(-7deg);
  pointer-events: none;
  display: none;
}

.hero {
  min-height: 86svh;
  display: grid;
  align-items: center;
  padding: 76px 22px 96px;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 88px max(22px, calc((100% - var(--max)) / 2)) 86px;
  z-index: 0;
  border-top: 1px solid rgba(226, 255, 217, 0.11);
  border-bottom: 1px solid rgba(0, 227, 206, 0.09);
  background:
    linear-gradient(90deg, rgba(226, 255, 217, 0.08) 1px, transparent 1px) 0 0 / 96px 96px,
    linear-gradient(180deg, rgba(226, 255, 217, 0.06) 1px, transparent 1px) 0 0 / 96px 96px;
  opacity: 0.38;
  pointer-events: none;
  mask-image: linear-gradient(90deg, transparent, #000 14%, #000 86%, transparent);
}

.hero__image {
  position: absolute;
  inset: auto -8% -12% auto;
  width: min(680px, 70vw);
  opacity: 0.12;
  mix-blend-mode: screen;
}

.ambient-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.72;
  mix-blend-mode: screen;
}

.ambient-bg--fixed {
  position: fixed;
  z-index: 0;
  opacity: 0.76;
}

.hero > .ambient-bg,
.page-hero > .ambient-bg,
.ambient-bg--fixed {
  display: block;
}

.hero__shade {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.1)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.46));
}

.hero__inner {
  position: relative;
  z-index: 1;
  width: min(100%, var(--max));
  min-width: 0;
  margin: 0 auto;
}

.hero-logo {
  width: 100%;
  display: grid;
  justify-items: center;
  gap: 8px;
  margin-bottom: 62px;
  text-align: center;
  animation: content-in 720ms ease 140ms both;
}

.hero-logo__frame {
  position: relative;
  width: 182px;
  height: 182px;
  display: grid;
  place-items: center;
  margin-bottom: 6px;
  border: 1px solid rgba(226, 255, 217, 0.18);
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(0, 227, 206, 0.12), rgba(255, 47, 167, 0.08) 52%, rgba(255, 253, 245, 0.04)),
    rgba(0, 0, 0, 0.22);
  box-shadow:
    inset 0 0 30px rgba(0, 227, 206, 0.07),
    0 0 46px rgba(0, 227, 206, 0.1),
    0 0 62px rgba(255, 47, 167, 0.08);
  overflow: hidden;
  animation: logo-breathe 6.2s ease-in-out infinite;
}

.hero-logo__frame::before,
.hero-logo__frame::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero-logo__frame::before {
  inset: 9px;
  border: 1px solid rgba(226, 255, 217, 0.22);
  border-radius: 50%;
  box-shadow: inset 0 0 24px rgba(0, 227, 206, 0.06);
}

.hero-logo__frame::after {
  inset: -35%;
  background: linear-gradient(115deg, transparent 38%, rgba(226, 255, 217, 0.16), transparent 58%);
  animation: hero-scan 4.8s ease-in-out infinite;
}

.hero-logo__mark {
  position: relative;
  z-index: 1;
  width: 154px;
  height: 154px;
  object-fit: contain;
  filter:
    drop-shadow(0 0 28px rgba(0, 227, 206, 0.16))
    drop-shadow(0 0 34px rgba(255, 47, 167, 0.28));
  animation: soft-float 7s ease-in-out infinite;
}

.hero-logo__corner {
  position: absolute;
  z-index: 2;
  width: 22px;
  height: 22px;
  border-color: rgba(226, 255, 217, 0.62);
  border-style: solid;
  pointer-events: none;
}

.hero-logo__corner--tl {
  top: 12px;
  left: 12px;
  border-width: 1px 0 0 1px;
}

.hero-logo__corner--tr {
  top: 12px;
  right: 12px;
  border-width: 1px 1px 0 0;
}

.hero-logo__corner--bl {
  bottom: 12px;
  left: 12px;
  border-width: 0 0 1px 1px;
}

.hero-logo__corner--br {
  right: 12px;
  bottom: 12px;
  border-width: 0 1px 1px 0;
}

.hero-logo__name {
  font-size: 1.9rem;
  font-weight: 950;
  text-transform: uppercase;
}

.hero-logo__tag {
  color: var(--mint);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-logo__status {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
  color: rgba(226, 255, 217, 0.76);
  font-family: "Cascadia Code", "Fira Code", Consolas, monospace;
  font-size: 0.72rem;
}

.hero-logo__status span {
  padding: 6px 9px;
  border: 1px solid rgba(226, 255, 217, 0.16);
  border-radius: 6px;
  background:
    linear-gradient(90deg, rgba(0, 227, 206, 0.04), rgba(226, 255, 217, 0.09), rgba(255, 47, 167, 0.04)),
    rgba(0, 0, 0, 0.24);
  background-size: 220% 100%;
  animation: status-idle 6.4s ease-in-out infinite;
}

.hero-logo__status span:nth-child(2) {
  animation-delay: 850ms;
}

.hero-logo__status span:nth-child(3) {
  animation-delay: 1.55s;
}

.hero__copy {
  position: relative;
  width: min(100%, 1080px);
  margin: 0 auto;
  padding: 26px 24px 0;
  text-align: center;
  animation: content-in 780ms ease 260ms both;
}

.hero__copy::before,
.hero__copy::after {
  content: "";
  position: absolute;
  left: 0;
  pointer-events: none;
}

.hero__copy::before {
  top: 0;
  left: 50%;
  width: min(620px, 100%);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(0, 227, 206, 0.68), transparent);
}

.hero__copy::after {
  top: 0;
  left: 50%;
  width: 1px;
  height: 30px;
  background: linear-gradient(180deg, rgba(0, 227, 206, 0.62), transparent);
}

.hero__techline {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 18px;
  color: rgba(255, 253, 245, 0.64);
  font-family: "Cascadia Code", "Fira Code", Consolas, monospace;
  font-size: 0.74rem;
}

.hero h1 {
  max-width: min(1180px, 100%);
  margin: 0 auto;
  font-size: 2.95rem;
  line-height: 0.92;
  white-space: nowrap;
}

.hero__techline span {
  padding: 6px 9px;
  border: 1px solid rgba(0, 227, 206, 0.18);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.24);
  transition: border-color 220ms ease, color 220ms ease, transform 220ms ease, background 220ms ease;
}

.hero__techline span:hover {
  border-color: rgba(226, 255, 217, 0.34);
  background: rgba(0, 227, 206, 0.08);
  color: var(--mint);
  transform: translateY(-2px);
}

.eyebrow {
  margin: 0 0 15px;
  color: var(--mint);
  font-family: "Cascadia Code", "Fira Code", Consolas, monospace;
  font-size: 0.82rem;
  font-weight: 850;
}

h1 {
  max-width: min(930px, 100%);
  font-size: 4.1rem;
  font-weight: 950;
  text-transform: uppercase;
}

.hero h1 span,
.page-hero h1 span {
  display: block;
}

.hero h1 span:last-child,
.page-hero h1 span:last-child,
.project-detail__content h2,
.section__head h2 strong {
  text-decoration: underline;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.08em;
}

.hero__lead {
  max-width: 790px;
  margin: 28px auto 0;
  color: var(--paper);
  font-size: 1.1rem;
  font-weight: 650;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 34px;
}

.button {
  --spot-x: 50%;
  --spot-y: 50%;
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 950;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
  transition:
    transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1),
    border-color 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease,
    color 220ms ease;
}

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

.button::before {
  background: radial-gradient(circle at var(--spot-x) var(--spot-y), rgba(255, 255, 255, 0.44), transparent 34%);
  opacity: 0;
  transition: opacity 220ms ease;
}

.button::after {
  right: auto;
  width: 42%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.48), transparent);
  transform: translateX(-160%) skewX(-18deg);
  transition: transform 520ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px);
  outline: none;
}

.button:hover::before,
.button:focus-visible::before {
  opacity: 0.7;
}

.button:hover::after,
.button:focus-visible::after {
  transform: translateX(260%) skewX(-18deg);
}

.button:active {
  transform: translateY(-1px) scale(0.985);
}

.button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.button--primary {
  background:
    linear-gradient(135deg, var(--mint), rgba(226, 255, 217, 0.86));
  color: #141023;
  box-shadow: 0 18px 44px rgba(226, 255, 217, 0.18);
}

.button--primary:hover,
.button--primary:focus-visible {
  box-shadow:
    0 18px 50px rgba(226, 255, 217, 0.24),
    0 0 0 1px rgba(0, 227, 206, 0.2);
}

.button--ghost {
  border-color: rgba(255, 253, 245, 0.32);
  color: var(--paper);
  background: rgba(255, 253, 245, 0.08);
}

.button--ghost:hover,
.button--ghost:focus-visible {
  border-color: rgba(226, 255, 217, 0.54);
  background: rgba(226, 255, 217, 0.12);
  box-shadow: 0 14px 36px rgba(0, 227, 206, 0.1);
}

.button--dark {
  border-color: rgba(20, 16, 35, 0.18);
  color: #141023;
  background: rgba(20, 16, 35, 0.05);
  box-shadow: none;
}

.button--dark:hover,
.button--dark:focus-visible {
  border-color: rgba(20, 16, 35, 0.34);
  background: rgba(20, 16, 35, 0.08);
}

.hero__signals {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 860px;
  margin: 30px auto 0;
}

.hero__signals span {
  padding: 9px 12px;
  border: 1px solid rgba(226, 255, 217, 0.24);
  border-radius: 6px;
  background: rgba(255, 253, 245, 0.08);
  color: rgba(255, 253, 245, 0.84);
  font-size: 0.9rem;
  font-weight: 800;
}

.quick-strip {
  position: relative;
  z-index: 1;
  width: min(100%, var(--max));
  margin: -46px auto 0;
  padding: 0 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  background: transparent;
}

.quick-strip div {
  min-height: 190px;
  padding: 30px 24px;
  border: 1px solid rgba(226, 255, 217, 0.2);
  border-radius: 8px;
  background: rgba(226, 255, 217, 0.92);
  color: #141023;
  text-align: center;
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.22);
}

.quick-strip div:hover {
  background: rgba(226, 255, 217, 0.96);
}

.quick-strip strong,
.quick-strip span {
  display: block;
}

.quick-strip strong {
  margin-bottom: 16px;
  font-size: 1.2rem;
  line-height: 1.15;
}

.quick-strip span {
  color: var(--muted-dark);
  font-size: 1.08rem;
}

.section {
  position: relative;
  padding: 98px 22px;
}

.section > * {
  position: relative;
  width: min(100%, var(--max));
  min-width: 0;
  margin-left: auto;
  margin-right: auto;
}

.section--light {
  background: transparent;
  color: var(--paper);
}

.section--ink {
  overflow: hidden;
  background: transparent;
  color: var(--paper);
}

.section--ink::before {
  opacity: 0.42;
}

.section__head {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(260px, 0.65fr);
  gap: 34px;
  align-items: end;
  margin-bottom: 44px;
}

.section__head--narrow {
  grid-template-columns: 1fr;
  max-width: 790px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section__head--center {
  grid-template-columns: 1fr;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
  justify-items: center;
  gap: 18px;
  text-align: center;
}

.section__head--center::after {
  content: "";
  display: block;
  width: min(520px, 100%);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 227, 206, 0.62), rgba(255, 47, 167, 0.34), transparent);
}

.section__head--center p:not(.eyebrow) {
  max-width: 760px;
}

.section__head--feature {
  grid-template-columns: 1fr;
  max-width: 940px;
  align-items: center;
  justify-items: center;
  gap: 18px;
  text-align: center;
}

.section__head--feature::before,
.section__head--feature::after {
  content: "";
  display: block;
  width: min(560px, 100%);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 227, 206, 0.58), rgba(226, 255, 217, 0.34), transparent);
}

.section__head--feature .eyebrow {
  margin-bottom: 0;
}

.section__head--feature h2 {
  max-width: 860px;
  text-shadow: 0 0 28px rgba(0, 227, 206, 0.1);
}

.section__head--feature p:not(.eyebrow) {
  max-width: 760px;
  font-size: 1.08rem;
}

.section__chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px;
  margin-top: 4px;
  color: rgba(226, 255, 217, 0.8);
  font-family: "Cascadia Code", "Fira Code", Consolas, monospace;
  font-size: 0.75rem;
}

.section__chips span {
  padding: 7px 10px;
  border: 1px solid rgba(226, 255, 217, 0.18);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.22);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, color 220ms ease;
}

.section__chips span:hover {
  transform: translateY(-2px);
  border-color: rgba(226, 255, 217, 0.34);
  background: rgba(0, 227, 206, 0.1);
  color: var(--paper);
}

.cta-panel {
  overflow: hidden;
  border-top: 1px solid rgba(226, 255, 217, 0.12);
  border-bottom: 1px solid rgba(226, 255, 217, 0.12);
  background:
    linear-gradient(90deg, rgba(0, 227, 206, 0.08), transparent 24%, rgba(255, 47, 167, 0.06) 78%, transparent),
    rgba(255, 253, 245, 0.018);
  text-align: center;
}

.cta-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent, rgba(226, 255, 217, 0.12), transparent 52%),
    repeating-linear-gradient(90deg, transparent 0 46px, rgba(226, 255, 217, 0.055) 46px 47px);
  opacity: 0.32;
}

.cta-panel__inner {
  display: grid;
  justify-items: center;
  gap: 18px;
  max-width: 980px;
}

.cta-panel h2 {
  max-width: 940px;
  color: var(--paper);
  font-size: 2.65rem;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.cta-panel p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.08rem;
}

.cta-panel__flow {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 6px;
  color: rgba(226, 255, 217, 0.82);
  font-family: "Cascadia Code", "Fira Code", Consolas, monospace;
  font-size: 0.76rem;
  font-weight: 800;
}

.cta-panel__flow span {
  position: relative;
  padding: 8px 12px;
  border: 1px solid rgba(226, 255, 217, 0.18);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 0 18px rgba(0, 227, 206, 0.035);
}

.cta-panel__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 8px;
}

.section__head h2,
.about h2,
.seo-band h2,
.faq h2,
.contact h2 {
  font-size: 2.65rem;
  font-weight: 950;
  text-transform: uppercase;
}

.section__head p:not(.eyebrow),
.about__text,
.contact__intro p,
.faq-item__content p,
.seo-band__grid p {
  color: var(--muted-dark);
}

.section--ink .section__head p:not(.eyebrow) {
  color: var(--muted);
}

.section--light .section__head p:not(.eyebrow) {
  color: var(--muted);
}

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

.service-card,
.process-list li,
.project-card {
  border: 1px solid var(--line-dark);
  border-radius: 8px;
}

.service-card,
.process-list li,
.project-preview-card,
.project-case__visual,
.project-case__content,
.project-slot,
.project-detail__media,
.project-detail__content,
.project-detail__columns article,
.seo-band__grid p,
.faq-item,
.quick-strip div,
.contact-links span,
.contact-links a,
.contact-form {
  --spot-x: 50%;
  --spot-y: 0%;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  transition:
    transform 260ms cubic-bezier(0.2, 0.8, 0.2, 1),
    border-color 260ms ease,
    box-shadow 260ms ease,
    background 260ms ease,
    filter 260ms ease;
}

.service-card::before,
.process-list li::before,
.project-preview-card::before,
.project-case__visual::before,
.project-case__content::before,
.project-slot::before,
.project-detail__media::before,
.project-detail__content::before,
.project-detail__columns article::before,
.seo-band__grid p::before,
.faq-item::before,
.quick-strip div::before,
.contact-links span::before,
.contact-links a::before,
.contact-form::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at var(--spot-x) var(--spot-y), rgba(226, 255, 217, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(0, 227, 206, 0.08), transparent 46%, rgba(255, 47, 167, 0.08));
  opacity: 0;
  transition: opacity 260ms ease;
}

.service-card:hover,
.process-list li:hover,
.project-preview-card:hover,
.project-case__visual:hover,
.project-case__content:hover,
.project-slot:hover,
.project-detail__media:hover,
.project-detail__content:hover,
.project-detail__columns article:hover,
.seo-band__grid p:hover,
.faq-item:hover,
.faq-item[open],
.quick-strip div:hover,
.contact-links span:hover,
.contact-links a:hover,
.contact-form:focus-within {
  transform: translateY(-6px);
  border-color: rgba(226, 255, 217, 0.34);
  box-shadow:
    0 22px 54px rgba(0, 0, 0, 0.22),
    0 0 0 1px rgba(0, 227, 206, 0.06);
}

.service-card:hover::before,
.process-list li:hover::before,
.project-preview-card:hover::before,
.project-case__visual:hover::before,
.project-case__content:hover::before,
.project-slot:hover::before,
.project-detail__media:hover::before,
.project-detail__content:hover::before,
.project-detail__columns article:hover::before,
.seo-band__grid p:hover::before,
.faq-item:hover::before,
.faq-item[open]::before,
.quick-strip div:hover::before,
.contact-links span:hover::before,
.contact-links a:hover::before,
.contact-form:focus-within::before {
  opacity: 1;
}

.service-card > *,
.process-list li > *,
.project-preview-card > *,
.project-case__visual > *,
.project-case__content > *,
.project-slot > *,
.project-detail__media > *,
.project-detail__content > *,
.project-detail__columns article > *,
.faq-item > *,
.quick-strip div > *,
.contact-form > * {
  position: relative;
  z-index: 1;
}

.service-card {
  min-height: 290px;
  padding: 24px;
  background: rgba(255, 253, 245, 0.58);
  color: #141023;
  text-align: center;
}

.service-card__index {
  display: inline-block;
  margin-bottom: 42px;
  color: #4f2dff;
  font-family: "Cascadia Code", "Fira Code", Consolas, monospace;
  font-weight: 850;
  transition: transform 260ms ease, color 260ms ease;
}

.service-card:hover .service-card__index {
  color: var(--blue);
  transform: translateY(-3px);
}

.service-card h3,
.process-list h3,
.project-card h3 {
  font-size: 1.2rem;
  font-weight: 950;
}

.service-card p,
.process-list p,
.project-card p {
  color: var(--muted-dark);
}

.process {
  background: transparent;
  color: var(--paper);
  overflow: hidden;
}

.process::before {
  content: "";
  position: absolute;
  inset: -28% -18%;
  background:
    conic-gradient(from 140deg, transparent, rgba(0, 227, 206, 0.42), rgba(255, 47, 167, 0.36), transparent 74%),
    linear-gradient(120deg, transparent, rgba(226, 255, 217, 0.08), transparent);
  filter: blur(54px);
  opacity: 0.68;
  display: none;
}

.process .section__head p:not(.eyebrow),
.process-list p {
  color: var(--muted);
}

.process-list {
  position: relative;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  padding: 0;
}

.process-list::before {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  top: 30px;
  height: 1px;
  background:
    linear-gradient(90deg, transparent, rgba(0, 227, 206, 0.36), rgba(226, 255, 217, 0.2), transparent),
    repeating-linear-gradient(90deg, transparent 0 18px, rgba(226, 255, 217, 0.18) 18px 19px);
  background-size: 100% 100%, 240px 100%;
  opacity: 0.58;
  animation: line-flow 9s linear infinite;
}

.process-list li {
  z-index: 1;
  min-height: 300px;
  padding: 24px;
  background: rgba(0, 0, 0, 0.38);
  border-color: rgba(226, 255, 217, 0.18);
  text-align: center;
}

.process-list span {
  display: inline-block;
  margin-bottom: 46px;
  color: var(--mint);
  font-family: "Cascadia Code", "Fira Code", Consolas, monospace;
  font-weight: 850;
  transition: transform 260ms ease, color 260ms ease;
}

.process-list li:hover span {
  color: var(--cyan);
  transform: translateY(-3px);
}

.project-card {
  display: grid;
  grid-template-columns: 0.55fr 1fr;
  overflow: hidden;
  border-color: rgba(226, 255, 217, 0.2);
  background: rgba(255, 253, 245, 0.07);
}

.project-card__meta {
  min-height: 280px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--mint);
  color: #141023;
}

.project-card__meta span {
  font-family: "Cascadia Code", "Fira Code", Consolas, monospace;
  color: rgba(20, 16, 35, 0.64);
  font-size: 0.84rem;
}

.project-card__meta strong {
  font-size: 2.1rem;
  line-height: 1;
}

.project-card__body {
  padding: 34px;
  align-self: end;
}

.project-card__body p {
  max-width: 630px;
  color: var(--muted);
}

.project-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.project-preview-card {
  min-height: 448px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid rgba(226, 255, 217, 0.2);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.36);
  color: var(--paper);
  text-align: center;
}

.project-preview-card--featured {
  background:
    linear-gradient(155deg, rgba(226, 255, 217, 0.16), rgba(0, 227, 206, 0.08) 44%, rgba(164, 41, 255, 0.12)),
    rgba(0, 0, 0, 0.42);
}

.project-preview-card--empty {
  border-style: dashed;
}

.project-preview-card--light {
  border-color: rgba(20, 16, 35, 0.16);
  background: rgba(255, 253, 245, 0.6);
  color: #141023;
}

.project-preview-card__top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 98px;
  margin-bottom: 24px;
}

.project-preview-card__top span {
  color: var(--mint);
  font-family: "Cascadia Code", "Fira Code", Consolas, monospace;
  font-weight: 850;
}

.project-preview-card--light .project-preview-card__top span {
  color: #4f2dff;
}

.project-preview-card__top > img {
  width: 82px;
  height: 82px;
  object-fit: contain;
  padding: 9px;
  border-radius: 50%;
  background: transparent;
  transition: transform 300ms ease, box-shadow 300ms ease;
}

.project-preview-card:hover .project-preview-card__top > img {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
}

.project-preview-card h3 {
  font-size: 1.45rem;
  font-weight: 950;
}

.project-preview-card p,
.project-preview-card dd {
  color: var(--muted);
}

.project-preview-card--light p,
.project-preview-card--light dd {
  color: var(--muted-dark);
}

.project-preview-card .text-link {
  margin-top: auto;
  align-self: center;
}

.project-points {
  display: grid;
  gap: 16px;
  margin: 22px 0 26px;
}

.project-points dt {
  color: var(--mint);
  font-family: "Cascadia Code", "Fira Code", Consolas, monospace;
  font-size: 0.82rem;
  font-weight: 850;
}

.project-points dd {
  margin: 5px 0 0;
}

.section-action {
  margin-top: 24px;
}

.page-hero {
  padding: 112px 22px 92px;
}

.page-hero > div {
  position: relative;
  z-index: 1;
  width: min(100%, var(--max));
  min-width: 0;
  margin: 0 auto;
}

.page-hero h1 {
  max-width: 1040px;
  font-size: 4rem;
  font-weight: 950;
  text-transform: uppercase;
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 1.1rem;
}

.project-hero {
  padding-bottom: 72px;
  text-align: center;
}

.project-hero > div {
  display: grid;
  justify-items: center;
}

.project-hero h1 {
  max-width: 1080px;
}

.project-hero p:not(.eyebrow) {
  max-width: 820px;
}

.project-hero__signals {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px;
  margin-top: 28px;
}

.project-hero__signals span,
.project-case__tags span {
  padding: 8px 11px;
  border: 1px solid rgba(226, 255, 217, 0.18);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.22);
  color: rgba(226, 255, 217, 0.82);
  font-family: "Cascadia Code", "Fira Code", Consolas, monospace;
  font-size: 0.76rem;
}

.project-case {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(0, 1.14fr);
  gap: 22px;
  align-items: stretch;
  color: var(--paper);
}

.project-case > * {
  width: auto;
  margin: 0;
}

.project-case__visual,
.project-case__content {
  border: 1px solid rgba(226, 255, 217, 0.18);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.36);
  color: var(--paper);
}

.project-case__visual {
  display: grid;
  align-content: space-between;
  gap: 16px;
  padding: 18px;
}

.project-browser {
  min-height: 440px;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid rgba(226, 255, 217, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(226, 255, 217, 0.1), rgba(0, 227, 206, 0.06), rgba(255, 47, 167, 0.08)),
    rgba(0, 0, 0, 0.3);
}

.project-browser__bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 13px;
  border-bottom: 1px solid rgba(226, 255, 217, 0.14);
  background: rgba(0, 0, 0, 0.24);
}

.project-browser__bar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(226, 255, 217, 0.34);
}

.project-browser__bar span:nth-child(2) {
  background: rgba(0, 227, 206, 0.42);
}

.project-browser__bar span:nth-child(3) {
  background: rgba(255, 47, 167, 0.42);
}

.project-browser__bar strong {
  margin-left: auto;
  color: rgba(255, 253, 245, 0.72);
  font-family: "Cascadia Code", "Fira Code", Consolas, monospace;
  font-size: 0.78rem;
}

.project-browser__stage {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 24px;
  padding: 34px;
  text-align: center;
}

.project-browser__stage strong {
  display: block;
  margin-top: 10px;
  font-size: 2.1rem;
  font-weight: 950;
  text-transform: uppercase;
}

.project-browser__stage p {
  max-width: 360px;
  margin-top: 10px;
  color: var(--muted);
}

.project-browser__label {
  color: var(--mint);
  font-family: "Cascadia Code", "Fira Code", Consolas, monospace;
  font-size: 0.8rem;
  font-weight: 850;
}

.project-case__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.project-case__stats div {
  min-height: 98px;
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 16px;
  border: 1px solid rgba(226, 255, 217, 0.16);
  border-radius: 8px;
  background: rgba(226, 255, 217, 0.08);
  text-align: center;
}

.project-case__stats span,
.project-case__steps span,
.project-slot span {
  color: var(--mint);
  font-family: "Cascadia Code", "Fira Code", Consolas, monospace;
  font-size: 0.78rem;
  font-weight: 850;
}

.project-case__stats strong {
  font-size: 0.98rem;
}

.project-case__content {
  display: grid;
  align-content: center;
  padding: 34px;
}

.project-case__content h2 {
  font-size: 3.2rem;
  font-weight: 950;
  text-transform: uppercase;
}

.project-case__content > p:not(.eyebrow) {
  max-width: 720px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.08rem;
}

.project-case__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.project-case__steps {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 28px;
}

.project-case__steps article {
  min-height: 210px;
  background: rgba(255, 253, 245, 0.08);
  border-color: rgba(226, 255, 217, 0.16);
}

.project-case__steps h3 {
  margin-top: 22px;
  color: var(--paper);
}

.project-case__steps p {
  color: var(--muted);
}

.project-next {
  background: transparent;
  color: var(--paper);
}

.project-next .section__head p:not(.eyebrow) {
  color: var(--muted);
}

.project-slot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.project-slot {
  min-height: 270px;
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 24px;
  border: 1px dashed rgba(226, 255, 217, 0.2);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.3);
  color: var(--paper);
  text-align: center;
}

.project-slot h3 {
  font-size: 1.28rem;
  font-weight: 950;
}

.project-slot p {
  color: var(--muted);
}

.project-slot--cta {
  border-style: solid;
  background:
    linear-gradient(155deg, rgba(226, 255, 217, 0.12), rgba(0, 227, 206, 0.08), rgba(255, 47, 167, 0.08)),
    rgba(0, 0, 0, 0.34);
}

.project-slot .text-link {
  justify-self: center;
  margin-top: auto;
}

.pricing-hero > div {
  max-width: 900px;
}

.pricing-hero__badges,
.pricing-note__checks,
.pricing-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 26px;
}

.pricing-hero__badges span,
.pricing-note__checks span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 13px;
  border: 1px solid rgba(226, 255, 217, 0.18);
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 0%, rgba(0, 227, 206, 0.16), transparent 64%),
    rgba(255, 253, 245, 0.055);
  color: rgba(255, 253, 245, 0.86);
  font-size: 0.84rem;
  font-weight: 850;
}

.pricing-section {
  padding-top: 92px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
  width: min(100%, var(--max));
  margin: 48px auto 0;
}

.pricing-card {
  --spot-x: 50%;
  --spot-y: 0%;
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  grid-column: span 2;
  min-height: 640px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgba(226, 255, 217, 0.15);
  border-radius: 22px;
  background:
    radial-gradient(circle at var(--spot-x) var(--spot-y), rgba(0, 227, 206, 0.2), transparent 34%),
    linear-gradient(145deg, rgba(255, 253, 245, 0.085), rgba(0, 227, 206, 0.045) 44%, rgba(255, 47, 167, 0.04)),
    rgba(5, 6, 8, 0.62);
  box-shadow:
    inset 0 0 0 1px rgba(255, 253, 245, 0.035),
    0 24px 70px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(16px);
  transform: translateY(0);
  transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease, background 260ms ease;
}

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

.pricing-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -2;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(0, 227, 206, 0.28), transparent 34%, rgba(255, 47, 167, 0.24) 70%, rgba(255, 159, 16, 0.28));
  opacity: 0;
  transition: opacity 280ms ease;
}

.pricing-card::after {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: -1;
  border-radius: 21px;
  background:
    linear-gradient(180deg, rgba(5, 6, 8, 0.94), rgba(9, 7, 19, 0.82));
}

.pricing-card:hover,
.pricing-card:focus-within {
  transform: translateY(-8px);
  border-color: rgba(226, 255, 217, 0.3);
  box-shadow:
    inset 0 0 0 1px rgba(255, 253, 245, 0.05),
    0 34px 90px rgba(0, 0, 0, 0.3),
    0 0 36px rgba(0, 227, 206, 0.08);
}

.pricing-card:hover::before,
.pricing-card:focus-within::before {
  opacity: 0.82;
}

.pricing-card--featured {
  border-color: rgba(226, 255, 217, 0.34);
  box-shadow:
    inset 0 0 0 1px rgba(226, 255, 217, 0.07),
    0 34px 96px rgba(0, 227, 206, 0.14),
    0 24px 70px rgba(0, 0, 0, 0.28);
}

.pricing-card--premium {
  background:
    radial-gradient(circle at var(--spot-x) var(--spot-y), rgba(255, 47, 167, 0.18), transparent 34%),
    linear-gradient(145deg, rgba(255, 253, 245, 0.085), rgba(255, 159, 16, 0.06) 45%, rgba(0, 227, 206, 0.035)),
    rgba(5, 6, 8, 0.62);
}

.pricing-card__ribbon {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  padding: 7px 10px;
  border: 1px solid rgba(226, 255, 217, 0.24);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(0, 227, 206, 0.28), rgba(255, 47, 167, 0.18)),
    rgba(0, 0, 0, 0.32);
  color: var(--mint);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.pricing-card__top {
  display: grid;
  gap: 12px;
  min-height: 182px;
}

.pricing-card__tag {
  width: fit-content;
  padding: 6px 10px;
  border: 1px solid rgba(0, 227, 206, 0.28);
  border-radius: 999px;
  background: rgba(0, 227, 206, 0.08);
  color: var(--mint);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.pricing-card h3 {
  margin: 0;
  color: var(--paper);
  font-size: clamp(1.55rem, 2.2vw, 2.15rem);
  line-height: 1.05;
}

.pricing-card p {
  margin: 0;
  color: rgba(255, 253, 245, 0.72);
}

.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 22px 0 20px;
  color: var(--paper);
  font-size: clamp(2rem, 4vw, 3.05rem);
  font-weight: 950;
  line-height: 1;
}

.pricing-card__price span {
  color: var(--mint);
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

.pricing-list li {
  position: relative;
  padding-left: 25px;
  color: rgba(255, 253, 245, 0.82);
  font-size: 0.95rem;
}

.pricing-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 12px;
  height: 7px;
  border-left: 2px solid var(--cyan);
  border-bottom: 2px solid var(--mint);
  transform: rotate(-45deg);
}

.pricing-bonus {
  display: grid;
  gap: 7px;
  margin-top: auto;
  margin-bottom: 20px;
  padding: 16px;
  border: 1px solid rgba(255, 159, 16, 0.2);
  border-radius: 16px;
  background:
    radial-gradient(circle at 0% 0%, rgba(255, 159, 16, 0.18), transparent 48%),
    rgba(255, 253, 245, 0.055);
}

.pricing-bonus strong {
  color: var(--orange);
  font-size: 0.9rem;
  text-transform: uppercase;
}

.pricing-bonus span {
  color: rgba(255, 253, 245, 0.78);
  font-size: 0.92rem;
}

.pricing-card .button {
  width: 100%;
  justify-content: center;
}

.pricing-note__panel,
.pricing-cta__inner {
  width: min(100%, 980px);
  margin: 0 auto;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid rgba(226, 255, 217, 0.16);
  border-radius: 24px;
  background:
    radial-gradient(circle at 15% 0%, rgba(0, 227, 206, 0.16), transparent 36%),
    radial-gradient(circle at 85% 20%, rgba(255, 47, 167, 0.12), transparent 34%),
    rgba(255, 253, 245, 0.06);
  text-align: center;
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.pricing-note__panel h2,
.pricing-cta__inner h2 {
  max-width: 780px;
  margin: 0 auto 18px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.04;
}

.pricing-note__panel p,
.pricing-cta__inner p {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(255, 253, 245, 0.76);
}

.pricing-cta__actions .button {
  min-width: 190px;
}

.project-detail {
  display: grid;
  grid-template-columns: minmax(250px, 0.55fr) minmax(0, 1fr);
  gap: 42px;
  align-items: stretch;
  background: transparent;
  color: var(--paper);
}

.project-detail > * {
  width: auto;
  margin: 0;
}

.project-detail__media,
.project-detail__content {
  border: 1px solid var(--line-dark);
  border-radius: 8px;
}

.project-detail__media {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  background:
    linear-gradient(145deg, rgba(255, 253, 245, 0.68), rgba(226, 255, 217, 0.62)),
    var(--mint);
  color: #141023;
}

.project-detail__media span {
  color: #4f2dff;
  font-family: "Cascadia Code", "Fira Code", Consolas, monospace;
  font-weight: 850;
}

.project-logo {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  place-items: center;
  border: 1px solid rgba(226, 255, 217, 0.18);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 45%, rgba(226, 255, 217, 0.08), transparent 58%),
    rgba(0, 0, 0, 0.18);
  box-shadow:
    inset 0 0 28px rgba(0, 227, 206, 0.08),
    0 0 34px rgba(0, 227, 206, 0.1),
    0 0 42px rgba(255, 47, 167, 0.08);
}

.project-logo::before,
.project-logo::after {
  content: "";
  position: absolute;
  border-radius: inherit;
  pointer-events: none;
}

.project-logo::before {
  inset: -42%;
  z-index: 0;
  background:
    conic-gradient(from 0deg, transparent 0deg, rgba(0, 227, 206, 0.86) 58deg, rgba(226, 255, 217, 0.52) 102deg, transparent 148deg, rgba(255, 47, 167, 0.72) 230deg, transparent 310deg);
  opacity: 0.72;
  animation: project-logo-ring 7.5s linear infinite;
}

.project-logo::after {
  inset: 8px;
  z-index: 1;
  border: 1px solid rgba(226, 255, 217, 0.13);
  background:
    radial-gradient(circle at 50% 42%, rgba(226, 255, 217, 0.08), transparent 58%),
    rgba(0, 0, 0, 0.28);
}

.project-logo--large {
  width: min(250px, 100%);
  aspect-ratio: 1;
}

.project-logo--small {
  flex: 0 0 82px;
  width: 82px;
  height: 82px;
  transition: transform 300ms ease, box-shadow 300ms ease;
}

.project-preview-card:hover .project-logo--small {
  transform: translateY(-3px) scale(1.05);
  box-shadow:
    inset 0 0 28px rgba(0, 227, 206, 0.1),
    0 16px 34px rgba(0, 0, 0, 0.18),
    0 0 42px rgba(0, 227, 206, 0.12);
}

.project-logo img {
  position: relative;
  z-index: 2;
  width: 70%;
  height: 70%;
  object-fit: contain;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.22));
}

.project-detail__content {
  padding: 34px;
  background: rgba(255, 253, 245, 0.82);
  color: #141023;
}

.project-detail__content h2 {
  font-size: 2.65rem;
  font-weight: 950;
  text-transform: uppercase;
}

.project-detail__content > p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted-dark);
}

.project-detail__columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 30px;
}

.project-detail__columns article {
  min-height: 190px;
  padding: 20px;
  border: 1px solid rgba(20, 16, 35, 0.12);
  border-radius: 8px;
  background: rgba(255, 253, 245, 0.72);
}

.project-detail__columns h3 {
  font-size: 1.08rem;
}

.project-detail__columns p {
  color: var(--muted-dark);
}

.project-detail__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.project-case__steps.project-detail__columns article {
  border-color: rgba(226, 255, 217, 0.16);
  background: rgba(255, 253, 245, 0.08);
}

.project-case__steps.project-detail__columns p {
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  align-items: center;
  color: var(--mint);
  font-weight: 950;
  text-decoration: none;
  transition: color 220ms ease, transform 220ms ease;
}

.section--light .text-link,
.project-detail .text-link {
  color: #4f2dff;
}

.text-link::after {
  content: ">";
  margin-left: 8px;
  font-family: "Cascadia Code", "Fira Code", Consolas, monospace;
  transition: transform 220ms ease;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--cyan);
  transform: translateY(-1px);
  outline: none;
}

.text-link:hover::after,
.text-link:focus-visible::after {
  transform: translateX(4px);
}

.about {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: center;
  justify-items: center;
  background: transparent;
  color: var(--paper);
  text-align: center;
}

.about > * {
  width: min(100%, 920px);
  margin: 0 auto;
}

.about__panel,
.about__text {
  max-width: 920px;
}

.about__text {
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.78;
}

.about__panel::after {
  content: "";
  display: block;
  width: min(460px, 100%);
  height: 1px;
  margin: 22px auto 0;
  background: linear-gradient(90deg, transparent, rgba(226, 255, 217, 0.52), rgba(0, 227, 206, 0.46), transparent);
}

.about__text p + p {
  margin-top: 20px;
}

.about-more {
  margin-top: 20px;
}

.about-more summary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  border: 1px solid rgba(0, 227, 206, 0.34);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(226, 255, 217, 0.1), rgba(0, 227, 206, 0.05)),
    rgba(255, 253, 245, 0.04);
  color: var(--mint);
  cursor: pointer;
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0;
  list-style: none;
  box-shadow: 0 16px 44px rgba(0, 227, 206, 0.08);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

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

.about-more summary:hover,
.about-more summary:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(226, 255, 217, 0.62);
  background:
    linear-gradient(135deg, rgba(226, 255, 217, 0.15), rgba(0, 227, 206, 0.08)),
    rgba(255, 253, 245, 0.06);
  box-shadow: 0 20px 54px rgba(0, 227, 206, 0.13);
}

.about-more summary:focus-visible {
  outline: 2px solid rgba(226, 255, 217, 0.58);
  outline-offset: 4px;
}

.about-more__close {
  display: none;
}

.about-more[open] .about-more__open {
  display: none;
}

.about-more[open] .about-more__close {
  display: inline;
}

.about-more__content {
  margin-top: 20px;
  animation: about-more-in 260ms ease both;
}

@keyframes about-more-in {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

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

.seo-band {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
  justify-items: center;
  background: transparent;
  color: var(--paper);
  border-top: 1px solid rgba(226, 255, 217, 0.12);
  border-bottom: 1px solid rgba(226, 255, 217, 0.12);
  text-align: center;
}

.seo-band > * {
  width: min(100%, 1000px);
  margin: 0 auto;
}

.seo-band__intro {
  max-width: 880px;
}

.seo-band__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.seo-band__grid p {
  display: grid;
  place-items: center;
  min-height: 160px;
  padding: 20px;
  border: 1px solid rgba(226, 255, 217, 0.18);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.34);
  color: var(--muted);
  text-align: center;
}

.faq {
  overflow: hidden;
  background: transparent;
  color: var(--paper);
}

.faq__head {
  margin-bottom: 30px;
}

.faq .section__head p:not(.eyebrow) {
  color: var(--muted);
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 980px;
}

.faq-item {
  border: 1px solid rgba(226, 255, 217, 0.18);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.34);
  color: var(--paper);
}

.faq-item[open] {
  background: rgba(0, 0, 0, 0.42);
}

.faq-item summary {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 72px;
  padding: 20px 22px;
  color: var(--paper);
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 950;
  list-style: none;
  outline: none;
}

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

.faq-item summary::after {
  content: "+";
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(226, 255, 217, 0.18);
  border-radius: 50%;
  background: rgba(226, 255, 217, 0.08);
  color: var(--mint);
  font-family: "Cascadia Code", "Fira Code", Consolas, monospace;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, color 220ms ease;
}

.faq-item:hover summary::after,
.faq-item summary:focus-visible::after {
  border-color: rgba(226, 255, 217, 0.34);
  background: rgba(0, 227, 206, 0.1);
}

.faq-item[open] summary {
  color: var(--mint);
}

.faq-item[open] summary::after {
  content: "-";
  transform: rotate(180deg);
  border-color: rgba(0, 227, 206, 0.34);
  background: rgba(0, 227, 206, 0.12);
  color: var(--paper);
}

.faq-item summary:focus-visible {
  color: var(--mint);
}

.faq-item__content {
  position: relative;
  z-index: 1;
  padding: 0 22px 22px;
  animation: content-in 240ms ease both;
}

.faq-item__content p {
  max-width: 820px;
  color: var(--muted);
  font-size: 1rem;
}

.contact {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: center;
  justify-items: center;
  overflow: hidden;
  background: transparent;
  color: var(--paper);
  text-align: center;
}

.contact::before {
  content: "";
  position: absolute;
  inset: -25%;
  background:
    conic-gradient(from 300deg, transparent, rgba(0, 227, 206, 0.34), rgba(255, 47, 167, 0.3), transparent 70%),
    linear-gradient(110deg, transparent, rgba(226, 255, 217, 0.07), transparent);
  filter: blur(52px);
  opacity: 0.78;
  display: none;
}

.contact > * {
  width: min(100%, 880px);
  margin: 0 auto;
}

.contact__intro p {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  color: var(--muted);
}

.contact-links {
  display: grid;
  justify-items: center;
  gap: 12px;
  margin-top: 28px;
}

.contact-links span,
.contact-links a {
  width: min(100%, 620px);
  padding: 14px 16px;
  border: 1px solid rgba(226, 255, 217, 0.18);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.35);
  text-align: center;
}

.contact-links a {
  color: var(--mint);
  font-weight: 900;
  text-decoration: none;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 24px;
  border: 1px solid rgba(226, 255, 217, 0.18);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.42);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  text-align: left;
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form span {
  color: var(--paper);
  font-weight: 850;
  transition: color 220ms ease, transform 220ms ease;
}

.contact-form label:focus-within > span {
  color: var(--mint);
  transform: translateY(-1px);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(226, 255, 217, 0.18);
  border-radius: 6px;
  background: rgba(255, 253, 245, 0.95);
  color: #141023;
  padding: 13px 14px;
  outline: none;
  transition: border-color 220ms ease, box-shadow 220ms ease, background 220ms ease, transform 220ms ease;
}

.contact-form textarea {
  resize: vertical;
  min-height: 150px;
}

.contact-form input:hover,
.contact-form select:hover,
.contact-form textarea:hover {
  border-color: rgba(0, 227, 206, 0.32);
  background: #ffffff;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--mint);
  box-shadow: 0 0 0 4px rgba(226, 255, 217, 0.16);
  background: #ffffff;
  transform: translateY(-1px);
}

.contact-form__wide {
  grid-column: 1 / -1;
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.consent {
  grid-template-columns: auto 1fr;
  align-items: start;
}

.consent input {
  width: 18px;
  height: 18px;
  margin-top: 4px;
  accent-color: var(--mint);
}

.consent span {
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 650;
}

.contact-form__footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.form-status {
  min-height: 24px;
  color: var(--muted);
  font-weight: 750;
  text-align: center;
}

.form-status.is-error {
  color: #ff9aa8;
}

.form-status.is-success {
  color: var(--mint);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 26px max(22px, calc((100% - var(--max)) / 2));
  color: rgba(255, 253, 245, 0.74);
  background: #160a2a;
}

.site-footer a {
  color: var(--mint);
  font-weight: 900;
  text-decoration: none;
}

.sticky-cta {
  position: fixed;
  left: 22px;
  bottom: 22px;
  z-index: 60;
  display: grid;
  min-width: 218px;
  padding: 12px 18px 13px;
  border: 1px solid rgba(226, 255, 217, 0.36);
  border-radius: 999px;
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.32), transparent 42%),
    linear-gradient(135deg, rgba(226, 255, 217, 0.96), rgba(0, 227, 206, 0.74));
  color: #141023;
  text-decoration: none;
  box-shadow:
    0 18px 54px rgba(0, 0, 0, 0.34),
    0 0 34px rgba(0, 227, 206, 0.16);
  transform: translateY(0) scale(1);
  transform-origin: left bottom;
  transition:
    opacity 220ms ease,
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.sticky-cta::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(20, 16, 35, 0.1);
  border-radius: inherit;
  pointer-events: none;
}

.sticky-cta span,
.sticky-cta strong {
  position: relative;
  z-index: 1;
}

.sticky-cta span {
  color: rgba(20, 16, 35, 0.64);
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
}

.sticky-cta strong {
  font-size: 0.98rem;
  line-height: 1.1;
}

.sticky-cta:hover,
.sticky-cta:focus-visible {
  border-color: rgba(255, 253, 245, 0.72);
  box-shadow:
    0 22px 62px rgba(0, 0, 0, 0.4),
    0 0 42px rgba(0, 227, 206, 0.24);
  transform: translateY(-3px) scale(1.01);
  outline: none;
}

.sticky-cta.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px) scale(0.96);
}

.sent-toast {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 14px;
  width: min(360px, calc(100% - 44px));
  padding: 16px;
  border: 1px solid rgba(226, 255, 217, 0.28);
  border-radius: 8px;
  background: var(--mint);
  color: #141023;
  box-shadow: var(--shadow);
  animation: toast-in 360ms ease both;
}

.sent-toast[hidden] {
  display: none;
}

.sent-toast p {
  margin: 2px 0 0;
  color: var(--muted-dark);
}

.sent-toast__icon {
  position: relative;
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(20, 16, 35, 0.12);
  animation: soft-float 2.8s ease-in-out infinite;
}

.sent-toast__icon::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 13px;
  width: 15px;
  height: 8px;
  border-left: 3px solid #141023;
  border-bottom: 3px solid #141023;
  transform: rotate(-45deg);
}

@keyframes toast-in {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(22px) scale(0.985);
  transition:
    opacity 620ms ease var(--reveal-delay, 0ms),
    transform 620ms cubic-bezier(0.2, 0.8, 0.2, 1) var(--reveal-delay, 0ms);
}

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

.service-card.reveal.is-visible:hover,
.process-list li.reveal.is-visible:hover,
.project-preview-card.reveal.is-visible:hover,
.project-case__visual.reveal.is-visible:hover,
.project-case__content.reveal.is-visible:hover,
.project-slot.reveal.is-visible:hover,
.project-detail__media.reveal.is-visible:hover,
.project-detail__content.reveal.is-visible:hover,
.pricing-card.reveal.is-visible:hover,
.faq-item.reveal.is-visible:hover,
.faq-item.reveal.is-visible[open] {
  transform: translateY(-6px) scale(1);
}

@media (min-width: 980px) {
  h1 {
    font-size: 7rem;
  }

  .hero h1 {
    font-size: 4.35rem;
  }

  .page-hero h1 {
    font-size: 5.4rem;
  }

  .hero__lead {
    font-size: 1.24rem;
  }
}

@media (max-width: 1080px) {
  .service-grid,
  .project-preview-grid,
  .project-slot-grid,
  .pricing-grid,
  .project-detail,
  .project-case,
  .project-detail__columns {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-card,
  .pricing-card:nth-child(4),
  .pricing-card:nth-child(5) {
    grid-column: span 1;
  }

  .project-detail,
  .project-case,
  .project-case__steps,
  .project-detail__columns {
    grid-template-columns: 1fr;
  }

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

  .seo-band,
  .contact,
  .about,
  .section__head {
    grid-template-columns: 1fr;
  }

  .seo-band__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    margin-top: 10px;
    padding: 7px;
  }

  .site-header::before {
    inset: 4px;
  }

  .site-header::after {
    left: 14px;
    right: 14px;
    bottom: 4px;
  }

  .brand {
    min-height: 44px;
    padding: 4px 11px 4px 5px;
    gap: 8px;
  }

  .brand__mark {
    width: 36px;
    height: 36px;
  }

  .nav-toggle {
    display: block;
    flex: 0 0 42px;
  }

  .site-nav {
    position: fixed;
    inset: 82px 12px auto 12px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 7px;
    padding: 10px;
    border: 1px solid rgba(226, 255, 217, 0.18);
    border-radius: 18px;
    background:
      linear-gradient(135deg, rgba(255, 253, 245, 0.06), rgba(0, 227, 206, 0.04), rgba(255, 47, 167, 0.04)),
      rgba(7, 7, 7, 0.74);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 13px 14px;
    text-align: center;
  }

  .site-nav a.site-nav__cta {
    margin-left: 0;
  }

  .language-switch {
    justify-content: center;
    margin-left: 0;
    width: 100%;
  }

  .site-nav .language-switch a {
    min-width: 0;
  }

  .hero {
    min-height: auto;
    padding-top: 64px;
    padding-bottom: 98px;
  }

  .hero::after {
    inset: 78px 18px 120px;
  }

  .hero-logo {
    margin-bottom: 50px;
  }

  .hero-logo__frame {
    width: 154px;
    height: 154px;
  }

  .hero-logo__mark {
    width: 132px;
    height: 132px;
  }

  .hero-logo__name {
    font-size: 1.45rem;
  }

  h1 {
    font-size: 2.75rem;
  }

  .hero h1 {
    font-size: 1.82rem;
    white-space: nowrap;
  }

  .page-hero h1 {
    font-size: 2.45rem;
  }

  .hero__lead,
  .page-hero p:not(.eyebrow) {
    font-size: 1rem;
  }

  .hero__copy {
    padding: 22px 0 0;
  }

  .hero__techline {
    gap: 6px;
  }

  .hero__techline span {
    padding: 5px 7px;
  }

  .hero h1,
  .hero__lead,
  .hero__signals {
    max-width: 21rem;
  }

  .hero__signals {
    display: grid;
  }

  .quick-strip,
  .service-grid,
  .process-list,
  .project-preview-grid,
  .project-slot-grid,
  .pricing-grid,
  .project-case__stats,
  .project-card,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    gap: 16px;
  }

  .pricing-card {
    min-height: auto;
    padding: 20px;
  }

  .pricing-card__top {
    min-height: auto;
  }

  .pricing-card__ribbon {
    position: static;
    width: fit-content;
    margin-bottom: 12px;
  }

  .process-list::before {
    display: none;
  }

  .quick-strip div {
    min-height: auto;
    padding: 30px 22px;
  }

  .section,
  .page-hero {
    padding: 68px 22px;
  }

  .section__head h2,
  .about h2,
  .seo-band h2,
  .faq h2,
  .contact h2,
  .cta-panel h2,
  .pricing-note__panel h2,
  .pricing-cta__inner h2,
  .project-case__content h2,
  .project-detail__content h2 {
    font-size: 2.05rem;
  }

  .project-card__meta {
    min-height: 190px;
  }

  .project-preview-card {
    min-height: auto;
  }

  .faq-item summary {
    min-height: 66px;
    padding: 18px;
    font-size: 1rem;
  }

  .faq-item__content {
    padding: 0 18px 20px;
  }

  .project-detail__media {
    min-height: 280px;
  }

  .project-case__visual,
  .project-case__content {
    padding: 18px;
  }

  .project-browser {
    min-height: 360px;
  }

  .project-browser__stage {
    padding: 24px 18px;
  }

  .project-browser__stage strong {
    font-size: 1.55rem;
  }

  .project-slot {
    min-height: auto;
  }

  .pricing-note__panel,
  .pricing-cta__inner {
    padding: 24px 18px;
  }

  .project-detail__content {
    padding: 24px;
  }

  .contact-form__footer {
    align-items: stretch;
  }

  .contact-form__footer .button {
    width: 100%;
  }

  .cta-panel__actions,
  .cta-panel__actions .button {
    width: 100%;
  }

  .sticky-cta {
    left: 12px;
    right: 12px;
    bottom: 12px;
    min-width: 0;
    place-items: center;
    text-align: center;
    transform-origin: center bottom;
  }
}

@media (max-width: 430px) {
  .brand span:last-child {
    max-width: 170px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .hero h1,
  .hero__lead,
  .hero__signals {
    max-width: 21rem;
  }

  h1 {
    font-size: 2.18rem;
  }

  .hero h1 {
    font-size: 1.42rem;
  }

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

  .hero__actions .button,
  .project-detail__actions .button {
    width: 100%;
  }
}

@media (max-width: 360px) {
  .hero h1 {
    font-size: 1.24rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ambient-bg {
    display: none;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }
}
