:root {
  --bg: #0b0b10;
  --bg2: #0e0f18;
  --text: rgba(255, 255, 255, .90);
  --muted: rgba(255, 255, 255, .68);
  --muted2: rgba(255, 255, 255, .50);
  --shadow: 0 18px 60px rgba(0, 0, 0, .55);
  --r: 18px;
  --r2: 26px;
  --container: 1180px;

  --safeTop: env(safe-area-inset-top, 0px);
  --safeBottom: env(safe-area-inset-bottom, 0px);
  scroll-padding-top: 110px;
}


* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(1200px 600px at 10% 10%, rgba(255, 90, 195, .12), transparent 60%),
    radial-gradient(1000px 520px at 90% 20%, rgba(120, 125, 255, .12), transparent 60%),
    linear-gradient(180deg, #0b0b10 0%, #0e0f18 100%);
  color: var(--text);
  overflow-x: hidden;
}

/* =========================
   Smooth animated background
   ========================= */
@keyframes bg-float {
  0%   { background-position: 0% 0%, 100% 0%, 0% 0%; }
  50%  { background-position: 100% 30%, 0% 20%, 0% 0%; }
  100% { background-position: 0% 0%, 100% 0%, 0% 0%; }
}

body{
  background-size:
    140% 140%,
    140% 140%,
    100% 100%;
  animation: bg-float 32s ease-in-out infinite;
}



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

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

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

/* Cursor glow */
.cursor-glow {
  position: fixed;
  inset: -200px;
  pointer-events: none;
  background: radial-gradient(500px 500px at var(--x, 50%) var(--y, 50%),
      rgba(255, 255, 255, .08), transparent 60%);
  mix-blend-mode: screen;
  opacity: .9;
  z-index: 1;
}

/* =========================
   Topbar
   ========================= */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 18px;
  margin: calc(14px + var(--safeTop)) auto 0;
  width: min(var(--container), calc(100% - 24px));
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 999px;
  backdrop-filter: blur(18px);
  background: rgba(10, 10, 18, .55);
  box-shadow: 0 12px 36px rgba(0, 0, 0, .35);
  flex-wrap: nowrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 220px;
  flex: 0 0 auto;
}

.brand__mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-weight: 900;
  letter-spacing: .5px;
  background: linear-gradient(135deg, rgba(255, 90, 195, .9), rgba(120, 125, 255, .9));
  box-shadow: 0 12px 40px rgba(255, 90, 195, .18);
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand__name {
  font-weight: 800;
}

.brand__tag {
  font-size: 12px;
  color: var(--muted2);
  margin-top: 3px;
}

.nav {
  display: flex;
  gap: 14px;
}

.nav__link {
  font-size: 13px;
  color: var(--muted);
  padding: 10px 10px;
  border-radius: 999px;
  transition: .2s ease;
  white-space: nowrap;
}

.nav__link:hover {
  color: var(--text);
  background: rgba(255, 255, 255, .06);
}

.topbar__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  justify-content: flex-end;
  white-space: nowrap;
}

.btn {
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .06);
  color: var(--text);
  padding: 11px 14px;
  border-radius: 999px;
  cursor: pointer;
  transition: .22s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  user-select: none;
  flex: 0 0 auto;
}

.btn:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, .08);
}

.btn:active {
  transform: translateY(0px);
}

.btn--primary {
  border: 1px solid rgba(255, 255, 255, .18);
  background: linear-gradient(135deg, rgba(255, 90, 195, .95), rgba(120, 125, 255, .95));
  box-shadow: 0 14px 50px rgba(120, 125, 255, .18);
  font-weight: 800;
}

.btn--primary:hover {
  filter: brightness(1.04);
}

.btn--ghost {
  background: rgba(255, 255, 255, .04);
}

.burger {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .06);
  cursor: pointer;
}

.burger span {
  display: block;
  width: 18px;
  height: 2px;
  background: rgba(255, 255, 255, .85);
  margin: 0 auto;
  border-radius: 99px;
}

.burger span+span {
  margin-top: 6px;
}

/* =========================
   Hero
   ========================= */
.hero {
  position: relative;
  padding: 56px 0 22px;
  z-index: 2;
}

.hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.grid {
  position: absolute;
  inset: -200px;
  background-image:
    linear-gradient(rgba(255, 255, 255, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .06) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: .12;
  transform: rotate(3deg);
}

.noise{
  position:absolute;
  inset:0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.6' numOctaves='2'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='.18'/%3E%3C/svg%3E");
  opacity:.04;
  pointer-events:none;
}


.blob{
  filter: blur(80px);
  opacity: .25;
  animation: blob-float 22s ease-in-out infinite;
}

@keyframes blob-float{
  0%   { transform: translate(0,0); }
  50%  { transform: translate(30px, -20px); }
  100% { transform: translate(0,0); }
}

.blob--a {
  left: -120px;
  top: -140px;
  background: radial-gradient(circle at 30% 30%, rgba(255, 90, 195, .95), transparent 60%),
    radial-gradient(circle at 60% 60%, rgba(120, 125, 255, .85), transparent 60%);
}

.blob--b {
  right: -160px;
  top: 60px;
  background: radial-gradient(circle at 30% 30%, rgba(120, 125, 255, .95), transparent 60%),
    radial-gradient(circle at 60% 60%, rgba(255, 90, 195, .75), transparent 60%);
}

.hero__wrap {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 34px;
  align-items: start;
}

.pill {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-size: 12px;
  color: var(--muted);
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .05);
  border-radius: 999px;
  padding: 10px 12px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 0 0 6px rgba(255, 255, 255, .08);
}

.hero__title {
  margin: 16px 0 0;
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1.05;
  letter-spacing: -.02em;
  font-weight: 900;
}

.grad {
  background: linear-gradient(135deg, rgba(255, 90, 195, 1), rgba(120, 125, 255, 1));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__subtitle {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
  max-width: 54ch;
}

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

.hero__trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.trust-card {
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .05);
  border-radius: 16px;
  padding: 12px;
}

.trust-card__k {
  font-weight: 800;
}

.trust-card__t {
  font-size: 12px;
  color: var(--muted2);
  margin-top: 4px;
}

.note {
  margin-top: 12px;
  font-size: 12px;
  color: var(--muted2);
  max-width: 64ch;
}

/* Device */
.hero__showcase {
  position: relative;
}

.device {
  border-radius: var(--r2);
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .05);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.device__top {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, .10);
  background: rgba(0, 0, 0, .12);
}

.macdot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .20);
}

.device__title {
  margin-left: 8px;
  font-size: 12px;
  color: var(--muted2);
}

.device__body {
  padding: 14px;
}

.mock {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 12px;
}

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

.mock__right {
  display: block;
}

.mini-card {
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 16px;
  padding: 12px;
  background: rgba(255, 255, 255, .05);
}

.mini-card__h {
  font-size: 12px;
  color: var(--muted2);
}

.mini-card__v {
  font-size: 22px;
  font-weight: 900;
  margin-top: 6px;
}

.mini-card__s {
  font-size: 12px;
  color: var(--muted2);
  margin-top: 2px;
}

.shop-card {
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 18px;
  background: rgba(255, 255, 255, .05);
  overflow: hidden;
}

.shop-card__img {
  height: 120px;
  background:
    radial-gradient(120px 80px at 30% 40%, rgba(255, 90, 195, .55), transparent 60%),
    radial-gradient(140px 90px at 70% 60%, rgba(120, 125, 255, .45), transparent 60%),
    linear-gradient(135deg, rgba(255, 255, 255, .10), rgba(255, 255, 255, .02));
}

.shop-card__meta {
  padding: 12px;
}

.shop-card__name {
  font-weight: 800;
}

.shop-card__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
}

.price {
  font-weight: 900;
}

.badge {
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .05);
  color: var(--muted);
}

.shop-card__btn {
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .14);
  text-align: center;
  font-weight: 700;
}

.sync {
  margin-top: 10px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 18px;
  background: rgba(255, 255, 255, .05);
  padding: 12px;
}

.sync__h {
  font-size: 12px;
  color: var(--muted2);
}

.sync__row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.chip {
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .05);
  font-size: 12px;
  color: var(--muted);
}

.chip--hot {
  background: rgba(255, 90, 195, .14);
  color: rgba(255, 255, 255, .85);
}

.chip--ok {
  background: rgba(120, 125, 255, .14);
  color: rgba(255, 255, 255, .85);
}

.arrow {
  color: var(--muted2);
  font-size: 14px;
}

.sparkline {
  margin-top: 10px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 18px;
  background: rgba(255, 255, 255, .05);
  padding: 12px;
}

.sparkline__h {
  font-size: 12px;
  color: var(--muted2);
  margin-bottom: 10px;
}

.bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 56px;
}

.bars span {
  width: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .10);
  height: 10px;
}

.bars span:nth-child(1) {
  height: 12px;
}

.bars span:nth-child(2) {
  height: 18px;
}

.bars span:nth-child(3) {
  height: 14px;
}

.bars span:nth-child(4) {
  height: 22px;
}

.bars span:nth-child(5) {
  height: 28px;
}

.bars span:nth-child(6) {
  height: 20px;
}

.bars span:nth-child(7) {
  height: 34px;
}

.bars span:nth-child(8) {
  height: 30px;
}

.bars span:nth-child(9) {
  height: 42px;
}

.bars span:nth-child(10) {
  height: 36px;
}

.bars span:nth-child(11) {
  height: 48px;
}

.bars span:nth-child(12) {
  height: 52px;
}

.floating {
  position: absolute;
  right: -8px;
  bottom: -18px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.floating__item {
  font-size: 12px;
  color: rgba(255, 255, 255, .82);
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(0, 0, 0, .25);
  padding: 8px 10px;
  border-radius: 999px;
  backdrop-filter: blur(12px);
}

/* =========================
   Sections
   ========================= */
.section {
  padding: 72px 0;
  position: relative;
  z-index: 2;
}

.section--alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, .02), rgba(255, 255, 255, .00));
  border-top: 1px solid rgba(255, 255, 255, .06);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.section__head {
  margin-bottom: 22px;
}

.h2 {
  margin: 0;
  font-size: clamp(26px, 3vw, 38px);
  letter-spacing: -.02em;
  line-height: 1.15;
  font-weight: 900;
}

.sub {
  margin: 10px 0 0;
  color: var(--muted);
  max-width: 72ch;
  line-height: 1.6;
}

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

.card {
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .05);
  border-radius: var(--r);
  padding: 18px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .25);
}

.card__icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
}

.card__title {
  margin: 14px 0 0;
  font-size: 16px;
  font-weight: 900;
}

.card__text {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 14px;
}

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

.kpi__card {
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .05);
  border-radius: var(--r);
  padding: 22px 18px;
}

.kpi__value {
  font-size: clamp(34px, 4.5vw, 56px);
  font-weight: 900;
  letter-spacing: -.03em;
}

.kpi__unit {
  color: rgba(255, 255, 255, .85);
}

.kpi__label {
  margin-top: 6px;
  font-weight: 900;
}

.kpi__hint {
  margin-top: 6px;
  font-size: 12px;
  color: var(--muted2);
}

.kpi__note {
  margin-top: 14px;
  font-size: 12px;
  color: var(--muted2);
}

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

.feature {
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .05);
  border-radius: var(--r);
  padding: 18px;
}

.feature__title {
  font-weight: 900;
}

.feature__text {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.6;
  font-size: 14px;
}

.pricing {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 14px;
  align-items: start;
}

.pricing__card {
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--r2);
  padding: 20px;
  background: rgba(255, 255, 255, .05);
  box-shadow: var(--shadow);
}

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

.pricing__title {
  font-size: 18px;
  font-weight: 900;
}

.pricing__badge {
  font-size: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .05);
  color: var(--muted);
}

.pricing__list {
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.8;
}

.pricing__cta {
  margin-top: 16px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.pricing__fine {
  margin-top: 12px;
  font-size: 12px;
  color: var(--muted2);
}

.pricing__aside {
  display: grid;
  gap: 14px;
}

.aside-card {
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .05);
  border-radius: var(--r);
  padding: 18px;
}

.aside-card__h {
  font-weight: 900;
}

.aside-card__p {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.6;
}

.contact {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 14px;
  align-items: start;
}

.form {
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--r2);
  padding: 18px;
  background: rgba(255, 255, 255, .05);
  box-shadow: var(--shadow);
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
}

.field--full {
  grid-column: 1 / -1;
}

.field__label {
  font-size: 12px;
  color: var(--muted2);
}

.field__input {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(0, 0, 0, .18);
  padding: 12px 12px;
  outline: none;
}

.field__input:focus {
  border-color: rgba(255, 255, 255, .25);
  box-shadow: 0 0 0 6px rgba(120, 125, 255, .12);
}

.field__textarea {
  resize: vertical;
  min-height: 110px;
}

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

.form__hint {
  font-size: 12px;
  color: var(--muted2);
}

.form__toast {
  margin-top: 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, .86);
  min-height: 18px;
}

.contact__side {
  display: grid;
  gap: 14px;
}

.sidebox {
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .05);
  border-radius: var(--r);
  padding: 18px;
}

.sidebox__title {
  font-weight: 900;
}

.sidebox__list {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.8;
  padding-left: 18px;
}

.footer {
  margin-top: 26px;
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted2);
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.footer__link {
  color: rgba(255, 255, 255, .75);
}

.footer__link:hover {
  color: rgba(255, 255, 255, .92);
}



/* =========================
   Modal
   ========================= */
.modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
}

.modal.is-open {
  display: block;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .55);
  backdrop-filter: blur(10px);
}

.modal__panel {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(560px, calc(100% - 24px));
  border-radius: var(--r2);
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(15, 15, 22, .85);
  box-shadow: var(--shadow);
}

.modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, .10);
}

.modal__title {
  font-weight: 900;
}

.modal__close {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .06);
  cursor: pointer;
}

.modal__form {
  padding: 16px;
}

/* =========================
   Mobile menu
   ========================= */
.mobile {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: none;
}

.mobile.is-open {
  display: block;
}

.mobile__panel {
  position: absolute;
  right: 12px;
  left: 12px;
  top: calc(74px + var(--safeTop));
  width: auto;
  max-width: 420px;
  margin-left: auto;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(15, 15, 22, .92);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
  padding: 14px;
  transform-origin: top right;
}

.mobile__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile__title {
  font-weight: 900;
}

.mobile__close {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .06);
  cursor: pointer;
}

.mobile__link {
  display: block;
  padding: 12px 10px;
  margin-top: 6px;
  border-radius: 14px;
  color: var(--muted);
  border: 1px solid transparent;
  width: 100%;
}

.mobile__link:hover {
  color: var(--text);
  background: rgba(255, 255, 255, .06);
  border-color: rgba(255, 255, 255, .10);
}

.mobile__cta {
  width: 100%;
  margin-top: 10px;
  justify-content: center;
}

/* Reveal baseline */
.reveal {
  opacity: 0;
  transform: translateY(16px);
}

/* =========================
   Sticky CTA (mobile)
   ========================= */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: linear-gradient(180deg,
      rgba(10, 10, 18, .0),
      rgba(10, 10, 18, .85) 35%,
      rgba(10, 10, 18, .95));
  backdrop-filter: blur(10px);
}

.sticky-cta__inner {
  max-width: 640px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
  border-radius: 18px;
  padding: 12px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .14);
}

.sticky-cta__text {
  display: flex;
  flex-direction: column;
  font-size: 13px;
  line-height: 1.2;
}

.sticky-cta__text span {
  color: var(--muted2);
  font-size: 12px;
}

.sticky-cta__btn {
  padding: 12px 16px;
  border-radius: 14px;
  background: linear-gradient(135deg, #ff5ac3, #7a7dff);
  font-weight: 800;
  white-space: nowrap;
}

/* =========================
   Skeleton shimmer
   ========================= */
@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

.skeleton {
  position: relative;
  overflow: hidden;
  background: linear-gradient(110deg,
      rgba(255, 255, 255, .06) 25%,
      rgba(255, 255, 255, .14) 37%,
      rgba(255, 255, 255, .06) 63%);
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite linear;
}

/* =========================
   Responsive
   ========================= */
@media (max-width: 980px) {
  .nav {
    display: none;
  }

  .burger {
    display: inline-grid;
    place-items: center;
  }

  .topbar {
    width: min(var(--container), calc(100% - 16px));
    padding: 12px 14px;
    gap: 10px;
  }

  .brand {
    min-width: unset;
    max-width: 52%;
  }

  .brand__text {
    display: none;
  }

  .topbar__actions {
    gap: 8px;
  }

  .topbar__actions .btn--ghost {
    display: none;
  }

  .topbar__actions a.btn--primary {
    display: none;
  }

  /* CTA снизу */

  .hero {
    padding-top: 28px;
  }

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

  .hero__subtitle {
    font-size: 15px;
  }

  .hero__cta .btn {
    width: 100%;
    justify-content: center;
  }

  .hero__trust {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .mock {
    grid-template-columns: 1fr;
    gap: 10px;
  }

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

  .mini-card {
    padding: 10px;
  }

  .mini-card__v {
    font-size: 18px;
  }

  .floating {
    position: static;
    margin-top: 10px;
    justify-content: flex-start;
  }

  .section {
    padding: 54px 0;
  }

  .section__head {
    margin-bottom: 16px;
  }

  .cards,
  .kpi,
  .features,
  .pricing,
  .contact,
  .cases {
    grid-template-columns: 1fr;
  }

  .pricing__cta .btn {
    width: 100%;
    justify-content: center;
  }

  .sticky-cta {
    display: block;
  }
}

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

@media (min-width: 981px) {
  .sticky-cta {
    display: none;
  }
}

/* Mobile perf: glow off */
@media (hover: none) and (pointer: coarse) {
  .cursor-glow {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .cursor-glow {
    display: none;
  }
}


/* =========================
   Desktop header always visible on scroll
   ========================= */
@media (min-width: 981px) {
  .topbar {
    position: fixed !important;
    top: 14px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;

    width: min(var(--container), calc(100% - 24px)) !important;
    margin: 0 !important;

    z-index: 999 !important;
    will-change: transform;
  }

  /* чтобы контент не прятался под фикс шапкой */
  body {
    padding-top: 96px;
  }
}



/* =========================
   Premium header: transparent → solid
   ========================= */
@media (min-width: 981px) {

  /* стартовое состояние — прозрачная */
  .topbar {
    background: rgba(10, 10, 18, 0) !important;
    border-color: rgba(255, 255, 255, 0) !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    transition:
      background .25s ease,
      box-shadow .25s ease,
      border-color .25s ease,
      padding .25s ease;
  }

  /* состояние после скролла */
  .topbar.is-solid {
    background: rgba(10, 10, 18, .62) !important;
    border-color: rgba(255, 255, 255, .14) !important;
    backdrop-filter: blur(18px) !important;
    box-shadow: 0 14px 46px rgba(0, 0, 0, .45) !important;
  }

  /* лёгкое сжатие */
  .topbar.is-compact {
    padding: 10px 14px !important;
  }
}
@media (prefers-reduced-motion: reduce){
  body{ animation: none; }
  .blob{ animation: none; }
}

/* =========================
   Active nav link on scroll
   ========================= */
.nav__link.is-active{
  color: rgba(255,255,255,.92);
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
}

.nav__link{
  border: 1px solid transparent; /* чтобы не прыгало при активном состоянии */
}

/* =========================
   Magnetic + glow buttons (desktop only)
   ========================= */
@media (hover: hover) and (pointer: fine){
  .btn{
    position: relative;
    will-change: transform;
    transform: translate3d(0,0,0);
  }

  .btn::after{
    content:"";
    position:absolute;
    inset:-14px;
    border-radius: 999px;
    background: radial-gradient(220px 120px at 50% 60%, rgba(255,255,255,.14), transparent 70%);
    opacity: 0;
    pointer-events:none;
    transition: opacity .22s ease;
    filter: blur(2px);
  }

  .btn:hover::after{ opacity: .9; }

  .btn--primary::after{
    background: radial-gradient(240px 120px at 50% 60%, rgba(255,90,195,.25), transparent 70%),
                radial-gradient(240px 120px at 55% 50%, rgba(120,125,255,.22), transparent 70%);
  }
}


/* =========================
   Premium reveal baseline
   ========================= */
.reveal{
  opacity: 0;
  transform: translateY(16px) scale(.985);
  filter: blur(6px);
  will-change: transform, opacity, filter;
}
