:root {
  --orange: #ea4e1b;
  --white: #ffffff;
  --black: #232323;

  --o: 234 78 27;
  --w: 255 255 255;
  --b: 35 35 35;

  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;

  --shadow: 0 28px 70px rgb(var(--b) / 0.55);
  --shadow-soft: 0 14px 38px rgb(var(--b) / 0.32);
  --ring: 0 0 0 3px rgb(var(--o) / 0.35);

  color-scheme: dark;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: clip;
}

::selection {
  background: rgb(var(--o) / 0.35);
}

.srOnly {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip {
  position: absolute;
  left: 16px;
  top: 10px;
  transform: translateY(-220%);
  background: var(--white);
  color: var(--black);
  padding: 10px 14px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  box-shadow: var(--shadow-soft);
  z-index: 9999;
}

.skip:focus {
  transform: translateY(0);
  outline: none;
  box-shadow: var(--shadow-soft), var(--ring);
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgb(var(--b) / 0.6);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgb(var(--w) / 0.08);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.ctaText--short {
  display: none;
}

.brand__mark {
  width: 18px;
  height: 18px;
  border-radius: 6px;
  background: radial-gradient(circle at 30% 30%, rgb(var(--w) / 1), rgb(var(--o) / 1));
  box-shadow: 0 0 0 1px rgb(var(--w) / 0.16), 0 14px 30px rgb(var(--o) / 0.22);
}

.brand--small .brand__mark {
  width: 14px;
  height: 14px;
  border-radius: 5px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgb(var(--w) / 0.12);
  background: rgb(var(--b) / 0.5);
  color: var(--white);
  cursor: pointer;
}

.nav__toggle:focus-visible {
  outline: none;
  box-shadow: var(--ring);
}

.nav__toggleLines {
  width: 18px;
  height: 2px;
  background: var(--white);
  position: relative;
  border-radius: 999px;
}

.nav__toggleLines::before,
.nav__toggleLines::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--white);
  border-radius: 999px;
  transform-origin: center;
}

.nav__toggleLines::before {
  top: -6px;
}

.nav__toggleLines::after {
  top: 6px;
}

.nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  gap: 8px;
  align-items: center;
}

.nav__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border-radius: 999px;
  text-decoration: none;
  color: rgb(var(--w) / 0.86);
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: background 160ms ease, color 160ms ease;
}

.nav__link:hover {
  background: rgb(var(--w) / 0.08);
  color: rgb(var(--w) / 1);
}

.nav__link:focus-visible {
  outline: none;
  box-shadow: var(--ring);
}

@media (min-width: 860px) {
  .nav__toggle {
    display: none;
  }

  .nav__list {
    display: flex;
  }
}

.nav[data-open="true"] .nav__list {
  display: grid;
  position: absolute;
  top: 70px;
  right: 20px;
  width: min(320px, calc(100% - 40px));
  padding: 12px;
  border-radius: 18px;
  background: rgb(var(--b) / 0.92);
  border: 1px solid rgb(var(--w) / 0.12);
  box-shadow: var(--shadow-soft);
}

@media (min-width: 860px) {
  .nav[data-open="true"] .nav__list {
    position: static;
    width: auto;
    padding: 0;
    border: 0;
    box-shadow: none;
    background: transparent;
    display: flex;
  }
}

@media (max-width: 520px) {
  .topbar__inner {
    gap: 12px;
    padding: 12px 0;
  }

  .brand .logo {
    height: 26px;
    max-width: 120px;
  }

  .topbar .btn--primary {
    padding: 10px 12px;
    font-size: 13px;
    gap: 8px;
    white-space: nowrap;
  }

  .ctaText--full {
    display: none;
  }

  .ctaText--short {
    display: inline;
  }

  .nav__toggle {
    width: 40px;
    height: 40px;
    border-radius: 14px;
  }
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: -0.02em;
  cursor: pointer;
  user-select: none;
  will-change: transform;
  transform: translate3d(var(--mx, 0), var(--my, 0), 0);
  transition: transform 240ms cubic-bezier(0.2, 0.8, 0.2, 1), background 160ms ease,
    border-color 160ms ease;
}

.btn:focus-visible {
  outline: none;
  box-shadow: var(--ring);
}

.btn--primary {
  background: rgb(var(--o) / 1);
  color: var(--white);
  border-color: rgb(var(--o) / 1);
  box-shadow: 0 20px 55px rgb(var(--o) / 0.2);
}

.btn--primary:hover {
  background: rgb(var(--o) / 0.92);
  border-color: rgb(var(--o) / 0.92);
}

.btn--ghost {
  background: rgb(var(--w) / 0.06);
  border-color: rgb(var(--w) / 0.14);
  color: rgb(var(--w) / 0.92);
}

.btn--ghost:hover {
  background: rgb(var(--w) / 0.09);
  border-color: rgb(var(--w) / 0.18);
}

.btn__shine {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  pointer-events: none;
  background: radial-gradient(120px 120px at var(--sx, 20%) var(--sy, 20%), rgb(var(--w) / 0.42), transparent 55%);
  mix-blend-mode: overlay;
  opacity: 0;
  transition: opacity 220ms ease;
}

.btn--primary:hover .btn__shine {
  opacity: 1;
}

.btnIcon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgb(var(--w) / 0.12);
  background: rgb(var(--b) / 0.52);
  color: var(--white);
  cursor: pointer;
  transform: translate3d(var(--mx, 0), var(--my, 0), 0);
  transition: transform 240ms cubic-bezier(0.2, 0.8, 0.2, 1), background 160ms ease,
    border-color 160ms ease;
}

.btnIcon:hover {
  background: rgb(var(--w) / 0.08);
}

.btnIcon:focus-visible {
  outline: none;
  box-shadow: var(--ring);
}

.btnIcon__glyph {
  font-size: 16px;
  line-height: 1;
}

.link {
  color: rgb(var(--w) / 0.9);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: -0.01em;
  transform: translate3d(var(--mx, 0), var(--my, 0), 0);
  transition: transform 240ms cubic-bezier(0.2, 0.8, 0.2, 1), color 160ms ease;
}

.link:hover {
  color: rgb(var(--o) / 1);
}

.link:focus-visible {
  outline: none;
  box-shadow: var(--ring);
  border-radius: 10px;
  padding: 6px 8px;
}

.hero {
  position: relative;
  padding: clamp(60px, 7vw, 90px) 0 clamp(40px, 6vw, 70px);
  overflow: hidden;
}

.hero__techImg {
  position: absolute;
  right: clamp(-220px, -8vw, -60px);
  top: clamp(-160px, -10vw, -90px);
  width: min(1040px, 98vw);
  opacity: 0.62;
  pointer-events: none;
  filter: saturate(1.12) contrast(1.06);
  transform: rotate(4deg);
  mix-blend-mode: screen;
  z-index: 0;
}

@media (max-width: 820px) {
  .hero__techImg {
    right: -280px;
    top: -200px;
    opacity: 0.42;
  }
}

.field {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.75;
  filter: saturate(1.1);
}

.hero__grid {
  display: grid;
  gap: 28px;
  align-items: start;
  position: relative;
  z-index: 1;
}

@media (min-width: 980px) {
  .hero__grid {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: end;
  }
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgb(var(--w) / 0.12);
  background: rgb(var(--b) / 0.45);
  backdrop-filter: blur(10px);
  margin: 0 0 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.kicker__dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgb(var(--o) / 1);
  box-shadow: 0 0 0 4px rgb(var(--o) / 0.16);
}

.hero__title {
  margin: 0;
  font-size: clamp(40px, 6.2vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.accent {
  background: linear-gradient(90deg, rgb(var(--w) / 1), rgb(var(--o) / 1));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__subtitle {
  margin: 14px 0 22px;
  font-size: clamp(16px, 1.6vw, 18px);
  line-height: 1.5;
  color: rgb(var(--w) / 0.86);
  max-width: 54ch;
}

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

.stats {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.techShot {
  margin-top: 14px;
  border-radius: 20px;
  border: 1px solid rgb(var(--w) / 0.12);
  background: rgb(var(--w) / 0.04);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  height: 108px;
  position: relative;
}

.techShot::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: radial-gradient(520px 220px at 20% 20%, rgb(var(--o) / 0.26), transparent 60%),
    radial-gradient(520px 220px at 80% 80%, rgb(var(--w) / 0.12), transparent 62%);
  pointer-events: none;
  opacity: 0.9;
}

.techShot__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.95;
  transform: scale(1.08);
  filter: saturate(1.08) contrast(1.04);
}

.stat {
  padding: 14px 14px;
  border-radius: 18px;
  border: 1px solid rgb(var(--w) / 0.1);
  background: rgb(var(--b) / 0.4);
  backdrop-filter: blur(10px);
}

.stat__num {
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: 18px;
}

.stat__label {
  margin-top: 6px;
  color: rgb(var(--w) / 0.72);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: -0.01em;
}

.hero__lab {
  position: relative;
}

.lab {
  border-radius: var(--radius-xl);
  border: 1px solid rgb(var(--w) / 0.12);
  background: linear-gradient(180deg, rgb(var(--w) / 0.08), rgb(var(--w) / 0.04));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.lab::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: calc(var(--radius-xl) + 2px);
  background: radial-gradient(700px 300px at 15% 15%, rgb(var(--o) / 0.28), transparent 60%),
    radial-gradient(600px 240px at 80% 15%, rgb(var(--w) / 0.18), transparent 60%);
  pointer-events: none;
  opacity: 0.95;
}

.lab>* {
  position: relative;
}

.lab__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 18px 10px;
}

.lab__title {
  display: grid;
  gap: 6px;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgb(var(--w) / 0.12);
  background: rgb(var(--b) / 0.5);
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: 12px;
}

.lab__name {
  font-weight: 800;
  letter-spacing: -0.03em;
}

.lab__controls {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 10px 18px 14px;
}

.ctrl {
  display: grid;
  gap: 6px;
}

.ctrl--span2 {
  grid-column: 1 / -1;
}

.ctrl__label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: rgb(var(--w) / 0.86);
}

.ctrl__value {
  color: rgb(var(--o) / 1);
}

.ctrl__input {
  height: 42px;
  padding: 0 12px;
  border-radius: 14px;
  border: 1px solid rgb(var(--w) / 0.14);
  background: rgb(var(--b) / 0.55);
  color: rgb(var(--w) / 0.92);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.ctrl__input:focus-visible {
  outline: none;
  box-shadow: var(--ring);
}

.ctrl__range {
  width: 100%;
  accent-color: var(--orange);
}

.lab__preview {
  padding: 0 18px 16px;
}

site-preview {
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgb(var(--w) / 0.12);
  background: rgb(var(--b) / 0.72);
  box-shadow: var(--shadow-soft);
}

.lab__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 18px 18px;
  border-top: 1px solid rgb(var(--w) / 0.08);
}

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

.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgb(var(--w) / 0.06);
  border: 1px solid rgb(var(--w) / 0.1);
  color: rgb(var(--w) / 0.82);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: -0.02em;
}

.chipBtn {
  appearance: none;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 240ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.chipBtn:hover {
  background: rgb(var(--w) / 0.09);
  border-color: rgb(var(--w) / 0.16);
  color: rgb(var(--w) / 0.92);
}

.chipBtn[aria-pressed="true"] {
  background: rgb(var(--o) / 0.14);
  border-color: rgb(var(--o) / 0.42);
  color: rgb(var(--w) / 0.96);
}

.chipBtn[aria-pressed="false"] {
  opacity: 0.7;
}

.chipBtn:focus-visible {
  outline: none;
  box-shadow: var(--ring);
}

.section {
  padding: clamp(52px, 6.5vw, 90px) 0;
}

.section--alt {
  background: linear-gradient(180deg, rgb(var(--w) / 0.02), rgb(var(--w) / 0.04), rgb(var(--w) / 0.02));
}

.section__head {
  display: grid;
  gap: 10px;
  margin-bottom: 26px;
}

.section__title {
  margin: 0;
  font-size: clamp(26px, 3.2vw, 40px);
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.section__subtitle {
  margin: 0;
  color: rgb(var(--w) / 0.82);
  line-height: 1.5;
  max-width: 68ch;
}

.features {
  display: grid;
  gap: 12px;
}

@media (min-width: 860px) {
  .features {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }
}

.card {
  padding: 18px 18px 16px;
  border-radius: var(--radius-xl);
  border: 1px solid rgb(var(--w) / 0.1);
  background: radial-gradient(700px 220px at 30% 0%, rgb(var(--o) / 0.18), transparent 65%),
    rgb(var(--w) / 0.04);
  box-shadow: var(--shadow-soft);
}

.card__title {
  margin: 0;
  font-size: 18px;
  letter-spacing: -0.03em;
}

.card__text {
  margin: 10px 0 14px;
  color: rgb(var(--w) / 0.82);
  line-height: 1.55;
}

.card__meta {
  color: rgb(var(--w) / 0.74);
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: 12px;
}

.grid3 {
  display: grid;
  gap: 12px;
}

@media (min-width: 860px) {
  .grid3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }
}

.pricingWrap {
  position: relative;

  --pricing-gap: 14px;
  --pricing-card: 360px;
}

.pricingHint {
  display: block;
  margin: 0 0 8px;
  color: rgb(var(--w) / 0.68);
  font-weight: 800;
  font-size: 12px;
}

.pricingViewport {
  position: relative;
  overflow: hidden;
}

.pricingViewport::before,
.pricingViewport::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 86px;
  pointer-events: none;
  z-index: 2;
  filter: blur(10px);
}

.pricingViewport::before {
  left: -18px;
  background: linear-gradient(90deg,
      rgb(var(--b) / 1) 0%,
      rgb(var(--b) / 0.88) 22%,
      rgb(var(--b) / 0.4) 55%,
      rgb(var(--b) / 0) 100%);
}

.pricingViewport::after {
  right: -18px;
  background: linear-gradient(270deg,
      rgb(var(--b) / 1) 0%,
      rgb(var(--b) / 0.88) 22%,
      rgb(var(--b) / 0.4) 55%,
      rgb(var(--b) / 0) 100%);
}

.showcase {
  position: relative;
  padding: 16px 16px 18px;
  border-radius: var(--radius-xl);
  border: 1px solid rgb(var(--w) / 0.12);
  background: rgb(var(--w) / 0.04);
  box-shadow: var(--shadow-soft);
  transform: translate3d(0, var(--active-y, 0px), 0) scale(var(--active-scale, 1)) perspective(900px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
  transition: transform 160ms ease, border-color 240ms ease, box-shadow 240ms ease;
  will-change: transform;
}

.showcase::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: calc(var(--radius-xl) + 1px);
  background: radial-gradient(380px 220px at var(--px, 30%) var(--py, 30%), rgb(var(--o) / 0.22), transparent 62%);
  pointer-events: none;
  opacity: 0.9;
}

.showcase>* {
  position: relative;
}

.showcase__frame {
  border-radius: 18px;
  padding: 12px;
  border: 1px solid rgb(var(--w) / 0.1);
  background: rgb(var(--b) / 0.55);
  overflow: hidden;
}

.mock {
  height: 170px;
  border-radius: 14px;
  background: rgb(var(--w) / 0.06);
  position: relative;
  overflow: hidden;
}

.mock__iframe {
  position: absolute;
  inset: 0;
  width: 160%;
  height: 160%;
  border: 0;
  transform: scale(0.625);
  transform-origin: 0 0;
  pointer-events: none;
  filter: saturate(1.02) contrast(1.02);
}

.mock::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(220px 120px at 30% 20%, rgb(var(--o) / 0.22), transparent 60%),
    radial-gradient(220px 120px at 80% 60%, rgb(var(--w) / 0.18), transparent 60%);
  opacity: 1;
}

.mock::after {
  content: "";
  position: absolute;
  left: -30%;
  top: -20%;
  width: 60%;
  height: 140%;
  background: linear-gradient(90deg, transparent, rgb(var(--w) / 0.16), transparent);
  transform: rotate(18deg);
  opacity: 0.7;
  animation: sweep 3.4s linear infinite;
}

.mock[data-has-iframe="true"]::before {
  opacity: 0.22;
}

.mock[data-has-iframe="true"]::after {
  opacity: 0.22;
}

@keyframes sweep {
  0% {
    transform: translateX(-40%) rotate(18deg);
  }

  100% {
    transform: translateX(280%) rotate(18deg);
  }
}

.modal__panel--demo {
  width: min(1100px, calc(100% - 12px));
  padding: 14px;
}

.modal__panel--demo .modal__head {
  margin-bottom: 12px;
}

.modal__headActions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.demoFrame {
  border-radius: 18px;
  border: 1px solid rgb(var(--w) / 0.12);
  background: rgb(var(--b) / 0.7);
  overflow: hidden;
  height: min(72vh, 760px);
}

.demoFrame__iframe {
  width: 100%;
  height: 100%;
  border: 0;
  background: #ffffff;
}

.mock--rest::before {
  background: radial-gradient(260px 120px at 18% 30%, rgb(var(--o) / 0.26), transparent 60%),
    radial-gradient(300px 160px at 85% 70%, rgb(var(--w) / 0.18), transparent 60%);
}

.mock--barb::before {
  background: radial-gradient(300px 160px at 70% 30%, rgb(var(--o) / 0.22), transparent 60%),
    radial-gradient(260px 120px at 12% 70%, rgb(var(--w) / 0.16), transparent 60%);
}

.mock--imob::before {
  background: radial-gradient(300px 160px at 22% 60%, rgb(var(--o) / 0.24), transparent 60%),
    radial-gradient(260px 120px at 80% 20%, rgb(var(--w) / 0.18), transparent 60%);
}

.showcase__title {
  margin: 14px 0 8px;
  letter-spacing: -0.03em;
}

.showcase__text {
  margin: 0 0 12px;
  color: rgb(var(--w) / 0.82);
  line-height: 1.5;
}

.pricing {
  display: flex;
  gap: var(--pricing-gap);
  padding: 2px 0 12px;
  transform: translate3d(var(--pricing-x, 0px), 0, 0);
  will-change: transform;
  touch-action: pan-y;
  user-select: none;
  cursor: grab;
}

.pricing[data-dragging="true"] {
  cursor: grabbing;
}

.pricing .price,
.pricing .showcase {
  flex: 0 0 var(--pricing-card);
  user-select: text;
}

.pricing .price {
  transition: transform 420ms ease, border-color 240ms ease, box-shadow 240ms ease;
  transform: translate3d(0, var(--active-y, 0px), 0) scale(var(--active-scale, 1));
}

.pricing .price[data-active="true"],
.pricing .showcase[data-active="true"] {
  border-color: rgb(var(--o) / 0.35);
  box-shadow: var(--shadow);
  --active-y: -2px;
  --active-scale: 1.015;
}

.pricing--single {
  max-width: 520px;
  margin-inline: auto;
}

@media (min-width: 920px) {
  .pricingWrap {
    --pricing-gap: 14px;
    --pricing-card: 360px;
  }
}

.price {
  padding: 18px 18px 18px;
  border-radius: var(--radius-xl);
  border: 1px solid rgb(var(--w) / 0.12);
  background: rgb(var(--w) / 0.04);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 12px;
}

@media (max-width: 860px) {
  .pricingHint {
    display: block;
  }

  .pricingWrap {
    --pricing-gap: 12px;
    --pricing-card: 86%;
  }

  .pricingViewport {
    margin-inline: -20px;
    padding-inline: 20px;
  }
}

.price--featured {
  border-color: rgb(var(--o) / 0.55);
  background: radial-gradient(700px 220px at 50% 0%, rgb(var(--o) / 0.22), transparent 65%),
    rgb(var(--w) / 0.04);
  box-shadow: var(--shadow);
}

.price__top {
  display: grid;
  gap: 4px;
}

.price__name {
  margin: 0;
  letter-spacing: -0.03em;
}

.price__tag {
  margin: 0;
  color: rgb(var(--w) / 0.74);
  font-weight: 700;
}

.price__value {
  font-size: 34px;
  font-weight: 900;
  letter-spacing: -0.05em;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.price__per {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: rgb(var(--w) / 0.72);
  white-space: nowrap;
}

.who {
  display: grid;
  gap: 14px;
  align-items: start;
}

@media (min-width: 860px) {
  .who {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}

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

.checklist li {
  padding: 14px 14px;
  border-radius: 18px;
  border: 1px solid rgb(var(--w) / 0.12);
  background: rgb(var(--w) / 0.04);
  box-shadow: var(--shadow-soft);
  color: rgb(var(--w) / 0.86);
  font-weight: 650;
  letter-spacing: -0.01em;
}

.checklist li::before {
  content: "✓";
  display: inline-flex;
  width: 22px;
  height: 22px;
  margin-right: 10px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgb(var(--o) / 0.18);
  border: 1px solid rgb(var(--o) / 0.35);
  color: rgb(var(--w) / 0.95);
  font-weight: 900;
}

.price__list {
  margin: 0;
  padding-left: 18px;
  color: rgb(var(--w) / 0.82);
  line-height: 1.65;
  font-weight: 600;
}

.faq {
  display: grid;
  gap: 10px;
}

.qa {
  border-radius: var(--radius-xl);
  border: 1px solid rgb(var(--w) / 0.12);
  background: rgb(var(--w) / 0.04);
  padding: 14px 16px;
  box-shadow: var(--shadow-soft);
}

.qa summary {
  cursor: pointer;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.qa p {
  margin: 10px 0 0;
  color: rgb(var(--w) / 0.82);
  line-height: 1.6;
}

.contact {
  display: grid;
  gap: 18px;
  align-items: start;
}

@media (min-width: 980px) {
  .contact {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }
}

.contact__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.badge {
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgb(var(--w) / 0.12);
  background: rgb(var(--b) / 0.5);
  color: rgb(var(--w) / 0.84);
  font-weight: 900;
  letter-spacing: -0.02em;
  font-size: 12px;
}

.form {
  border-radius: var(--radius-xl);
  border: 1px solid rgb(var(--w) / 0.12);
  background: rgb(var(--w) / 0.04);
  padding: 18px;
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 12px;
}

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

.fieldInput__label {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: rgb(var(--w) / 0.86);
}

.fieldInput__control {
  width: 100%;
  padding: 12px 12px;
  border-radius: 16px;
  border: 1px solid rgb(var(--w) / 0.14);
  background: rgb(var(--b) / 0.55);
  color: rgb(var(--w) / 0.92);
  font-weight: 700;
  letter-spacing: -0.01em;
  resize: vertical;
}

.fieldInput__control::placeholder {
  color: rgb(var(--w) / 0.5);
}

.fieldInput__control:focus-visible {
  outline: none;
  box-shadow: var(--ring);
}

.fine {
  margin: 0;
  color: rgb(var(--w) / 0.72);
  font-weight: 600;
  line-height: 1.4;
  font-size: 12px;
}

.footer {
  border-top: 1px solid rgb(var(--w) / 0.08);
  padding: 24px 0;
  background: rgb(var(--b) / 0.6);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

@media (max-width: 720px) {
  .footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

.footer__right {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

@media (max-width: 720px) {
  .footer__right {
    justify-content: flex-start;
  }
}

.footerSocial {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footerSocial__icon {
  display: block;
  width: 18px;
  height: 18px;
  color: rgb(var(--w) / 0.92);
}

.footerSocial:hover .footerSocial__icon {
  color: rgb(var(--o) / 1);
}

.footer__text {
  margin: 10px 0 0;
  color: rgb(var(--w) / 0.7);
  font-weight: 600;
}

.fab {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  border: 1px solid rgb(var(--o) / 0.5);
  background: rgb(var(--o) / 1);
  color: rgb(var(--w) / 1);
  box-shadow: 0 22px 60px rgb(var(--o) / 0.24), var(--shadow-soft);
  padding: 12px 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.fab:focus-visible {
  outline: none;
  box-shadow: var(--ring), 0 22px 60px rgb(var(--o) / 0.24), var(--shadow-soft);
}

.fab__icon {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgb(var(--w) / 0.16);
  box-shadow: inset 0 0 0 1px rgb(var(--w) / 0.18);
  font-weight: 900;
}

.fab__text {
  font-weight: 900;
  letter-spacing: -0.02em;
}

@media (max-width: 420px) {
  .fab__text {
    display: none;
  }

  .fab {
    padding: 12px 12px;
  }
}

.modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 18px;
  z-index: 95;
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms ease;
}

.modal[data-open="true"] {
  opacity: 1;
  pointer-events: auto;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgb(var(--b) / 0.72);
  backdrop-filter: blur(10px);
}

.modal__panel {
  position: relative;
  width: min(520px, calc(100% - 12px));
  border-radius: var(--radius-xl);
  border: 1px solid rgb(var(--w) / 0.12);
  background: linear-gradient(180deg, rgb(var(--w) / 0.08), rgb(var(--w) / 0.04));
  box-shadow: var(--shadow);
  padding: 18px;
}

.modal__panel::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: calc(var(--radius-xl) + 2px);
  background: radial-gradient(520px 240px at 15% 15%, rgb(var(--o) / 0.28), transparent 60%),
    radial-gradient(520px 240px at 85% 15%, rgb(var(--w) / 0.18), transparent 60%);
  pointer-events: none;
  opacity: 0.95;
}

.modal__panel>* {
  position: relative;
}

.modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.modal__title {
  margin: 0;
  font-size: 20px;
  letter-spacing: -0.04em;
  font-weight: 900;
}

.modal__text {
  margin: 0 0 14px;
  color: rgb(var(--w) / 0.84);
  font-weight: 650;
  line-height: 1.45;
}

.modal__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  align-items: center;
}

@media (max-width: 520px) {
  .modal__actions {
    grid-template-columns: 1fr;
  }
}

.modal__fine {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}

.modal__line {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.modal__label {
  color: rgb(var(--w) / 0.68);
  font-weight: 800;
  letter-spacing: -0.01em;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%) translateY(18px);
  opacity: 0;
  pointer-events: none;
  padding: 12px 14px;
  border-radius: 999px;
  background: rgb(var(--b) / 0.92);
  border: 1px solid rgb(var(--o) / 0.45);
  color: rgb(var(--w) / 0.92);
  font-weight: 800;
  letter-spacing: -0.02em;
  box-shadow: var(--shadow-soft);
  transition: transform 220ms ease, opacity 220ms ease;
  max-width: min(520px, calc(100% - 40px));
  text-align: center;
}

.toast[data-show="true"] {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 500ms ease, transform 520ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal[data-in="true"] {
  opacity: 1;
  transform: translateY(0);
}

.cursor {
  position: fixed;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, rgb(var(--w) / 0.9), rgb(var(--o) / 0.6));
  box-shadow: 0 0 0 10px rgb(var(--o) / 0.07);
  transform: translate3d(-100px, -100px, 0);
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 0;
  transition: opacity 220ms ease;
  z-index: 80;
}

@media (hover: hover) and (pointer: fine) {
  .cursor {
    opacity: 1;
  }
}

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

  .cursor {
    display: none;
  }
}
