@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;600;700&display=swap");
:root {
  --color-gray-100: hsl(220, 12%, 98%);
  --color-gray-200: hsl(220, 12%, 90%);
  --color-gray-300: hsl(220, 12%, 85%);
  --color-gray-400: hsl(220, 12%, 65%);
  --color-gray-500: hsl(220, 12%, 45%);
  --color-dark-100: hsl(240, 10%, 15%);
  --color-dark-200: hsl(240, 10%, 12%);
  --color-dark-300: hsl(240, 10%, 9%);
  --color-dark-400: hsl(240, 10%, 6%);
  --color-dark-500: hsl(240, 10%, 3%);
  --color-blue-100: hsl(249, 97%, 80%); /* ~ #a99afe */
  --color-blue-200: hsl(249, 97%, 75%); /* ~ #9481fd */
  --color-blue-300: hsl(249, 97%, 70%); /*     #7e68fd */
  --color-blue-400: hsl(249, 97%, 60%); /* ~ #5336fc */
  --color-blue-500: hsl(249, 97%, 55%); /* ~ #3e1dfc */
  --color-green-300: hsl(145, 65%, 48%);
  --color-amber-300: hsl(38, 90%, 55%);
  --color-red-300: hsl(0, 75%, 60%);
  --color-border: hsla(0, 0%, 100%, 0.10);
  --color-border-soft: hsla(0, 0%, 100%, 0.07);
  --color-surface: hsla(240, 10%, 12%, 0.78);
  --color-surface-2: hsla(240, 10%, 10%, 0.92);
  --radius-xl: 1.25rem;
  --radius-lg: 1rem;
  --radius-md: 0.85rem;
  --shadow-small: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px,
    rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
  --shadow-medium: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px,
    rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
  --shadow-large: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px,
    rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
  --shadow-extra: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px,
    rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
}

*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  list-style: none;
  list-style-type: none;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

html {
  font-size: 100%;
  box-sizing: inherit;
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
  height: -webkit-fill-available;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    transition: none !important;
    animation: none !important;
  }
}
body {
  font-family: "Roboto", ui-sans-serif, sans-serif;
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-gray-100);
  background-color: #000;
}

body.is-lock {
  overflow: hidden;
}

main,
section {
  overflow: hidden;
}

a,
button {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  white-space: nowrap;
  border: none;
  outline: none;
  color: inherit;
  background: unset;
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 3px solid rgba(82, 145, 255, 0.45);
  outline-offset: 3px;
  border-radius: 0.75rem;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: inherit;
  line-height: 1.25;
  text-wrap: balance;
  word-wrap: break-word;
}

p,
li {
  font-family: inherit;
  line-height: 1.5;
  text-wrap: pretty;
  word-wrap: break-word;
}

img,
svg,
picture {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  -o-object-fit: cover;
     object-fit: cover;
  background-size: cover;
  background-repeat: no-repeat;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: -moz-crisp-edges;
  image-rendering: crisp-edges;
}

.section {
  padding-block: 6rem 3.5rem;
}

.container {
  max-width: 75rem;
  height: auto;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.center {
  text-align: center;
  vertical-align: middle;
}

.truncate {
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.muted {
  color: #fff;
}

.link {
  color: var(--color-gray-100);
  text-decoration: none;
  opacity: 0.9;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.link:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 0.75rem;
  padding: 0.6rem 0.9rem;
  border-radius: 0.9rem;
  background: var(--color-gray-100);
  color: var(--color-dark-400);
  transform: translateY(-150%);
  transition: transform 0.2s ease;
  z-index: 1000;
}

.skip-link:focus {
  transform: translateY(0);
}

.title-small {
  font-family: inherit;
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 700;
  line-height: 1.25;
}
.title-medium {
  font-family: inherit;
  font-size: clamp(2.15rem, 5vw, 3.15rem);
  font-weight: 700;
  line-height: 1.15;
}
.title-large {
  font-family: inherit;
  font-size: clamp(2.55rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.text-small {
  font-family: inherit;
  font-size: 0.88rem;
  line-height: 1.5;
}
.text-base {
  font-family: inherit;
  font-size: 1rem;
  line-height: 1.55;
}
.text-medium {
  font-family: inherit;
  font-size: 1.15rem;
  line-height: 1.55;
}
.text-large {
  font-family: inherit;
  font-size: 1.28rem;
  line-height: 1.55;
}
.text-upper {
  text-transform: uppercase;
}
.text-lower {
  text-transform: lowercase;
}
.text-capital {
  text-transform: capitalize;
}

.font-light {
  font-weight: 300;
}
.font-normal {
  font-weight: 400;
}
.font-medium {
  font-weight: 500;
}
.font-semi {
  font-weight: 600;
}
.font-bold {
  font-weight: 700;
}

.btn {
  display: inline-flex;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
  align-items: center;
  white-space: nowrap;
  text-align: center;
  justify-content: center;
  vertical-align: middle;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
  padding-block: 0.75rem;
  padding-inline: 1.25rem;
  border-radius: 3rem;
  transition: transform 0.15s ease, filter 0.15s ease, box-shadow 0.2s ease;
}
.btn-primary {
  color: var(--color-gray-100);
  background: linear-gradient(135deg, var(--color-blue-300), var(--color-blue-500));
  box-shadow: var(--shadow-large);
}
.btn-neutral {
  color: var(--color-dark-300);
  background-color: var(--color-gray-100);
  box-shadow: var(--shadow-medium);
}
.btn-darken {
  color: var(--color-gray-100);
  background-color: var(--color-dark-100);
  box-shadow: var(--shadow-medium);
  border: 1px solid var(--color-border-soft);
}
.btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.06);
}
.btn:active {
  transform: translateY(0);
  filter: brightness(1.02);
}
.btn.btn-lg {
  padding-block: 0.85rem;
  padding-inline: 1.45rem;
}

/* Card base */
.card {
  background: linear-gradient(180deg, var(--color-surface), var(--color-surface-2));
  border: 1px solid var(--color-border-soft);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-medium);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

.card--glow {
  position: relative;
}

.card--glow::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: var(--radius-xl);
  background: radial-gradient(420px 220px at 25% 25%, rgba(82, 145, 255, 0.35), transparent 60%);
  filter: blur(18px);
  opacity: 0.7;
  z-index: -1;
}

/* Header section */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  width: 100%;
  height: auto;
  margin: 0 auto;
  transition: all 0.25s ease;
  background: transparent;
}
body.admin-bar .header {
  top: 32px;
}
@media (max-width: 782px) {
  body.admin-bar .header {
    top: 46px;
  }
}
@media only screen and (min-width: 900px) {
  .header.on-scroll {
    background-color: rgba(10, 10, 12, 0.72);
    -webkit-backdrop-filter: blur(12px);
            backdrop-filter: blur(12px);
    box-shadow: var(--shadow-medium);
    border-bottom: 1px solid var(--color-border-soft);
    width: 70%;
    border-radius: 10000px;
    padding: 4px;
    margin: auto;
    top: 5px;
    left: 0;
    right: 0;
  }
  body.admin-bar .header.on-scroll {
    top: 37px;
  }
}
@media (max-width: 782px) {
  body.admin-bar .header.on-scroll {
    top: 51px;
  }
}
@media only screen and (max-width: 900px) {
  .header .navbar {
    background: rgba(0, 0, 0, 0.81);
    border-radius: 24px;
    margin: 6px;
    width: calc(100% - 12px);
  }
}

@media only screen and (max-width: 900px) {
  .menu-block {
    display: none;
  }
}
.navbar {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  width: 100%;
  height: 4.25rem;
  margin-inline: auto;
}

.brand {
  font-family: inherit;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--color-gray-100);
}

.menu {
  position: fixed;
  z-index: 95;
  top: -110%;
  left: 0;
  width: 100%;
  height: auto;
  overflow: hidden;
  padding-block: 5rem 2.5rem;
  background-color: rgba(12, 12, 14, 0.96);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  box-shadow: var(--shadow-large);
  transition: all 0.25s ease;
}
.menu.is-active {
  top: 0;
  left: 0;
}
.menu-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 1.25rem;
}
.menu-link {
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.5;
  text-transform: uppercase;
  color: var(--color-gray-100);
  opacity: 0.9;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.menu-link:hover {
  opacity: 1;
  transform: translateY(-1px);
}
.menu-link.is-active {
  opacity: 1;
  color: var(--color-blue-200);
}
.menu-block {
  margin-left: auto;
}
@media screen and (min-width: 48rem) {
  .menu {
    position: relative;
    z-index: initial;
    top: initial;
    width: auto;
    padding: 0;
    margin-left: auto;
    background: unset;
    box-shadow: unset;
    -webkit-backdrop-filter: none;
            backdrop-filter: none;
    transition: unset;
  }
  .menu-inner {
    display: flex;
    flex-direction: row;
    -moz-column-gap: 1.75rem;
         column-gap: 1.75rem;
    margin-inline: auto;
  }
  .menu-link {
    text-transform: none;
    font-weight: 500;
    font-size: 1rem;
    opacity: 0.85;
  }
  .menu-block {
    margin-left: 1.25rem;
  }
}

.burger {
  cursor: pointer;
  position: relative;
  display: block;
  order: -1;
  z-index: 110;
  width: 1.6rem;
  height: 1.15rem;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  visibility: visible;
}
@media screen and (min-width: 48rem) {
  .burger {
    display: none;
    visibility: hidden;
  }
}
.burger-line {
  position: absolute;
  display: block;
  left: 0;
  opacity: 1;
  width: 100%;
  height: 2px;
  background-color: var(--color-gray-100);
  transition: all 0.2s ease;
}
.burger-line:nth-child(1) {
  top: 0px;
}
.burger-line:nth-child(2) {
  top: 0.55rem;
  width: 70%;
}
.burger-line:nth-child(3) {
  top: 1.1rem;
}
.burger.is-active .burger-line:nth-child(1) {
  top: 0.55rem;
  transform: rotate(135deg);
}
.burger.is-active .burger-line:nth-child(2) {
  left: -1rem;
  opacity: 0;
}
.burger.is-active .burger-line:nth-child(3) {
  top: 0.55rem;
  transform: rotate(-135deg);
}

.overlay {
  position: fixed;
  display: none;
  inset: 0;
  z-index: 90;
  width: 100%;
  height: 100%;
  opacity: 0.55;
  background-color: rgba(0, 0, 0, 0.85);
  transition: all 0.2s ease;
}
.overlay.is-active {
  display: block;
}

/* Section head */
.section-head {
  max-width: 52rem;
  margin-bottom: 2.25rem;
}

.section-head .title-medium {
  margin-bottom: 0.65rem;
}

/* HERO / Banner */
.banner-section {
  position: relative;
  padding-top: 7rem;
}

.banner-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(600px 360px at 30% 20%, rgba(82, 145, 255, 0.26), transparent 60%), radial-gradient(520px 320px at 80% 25%, rgba(82, 145, 255, 0.16), transparent 62%);
  pointer-events: none;
}

.banner-column {
  position: relative;
  display: grid;
  align-items: start;
  row-gap: 2.5rem;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
}
@media screen and (min-width: 48rem) {
  .banner-column {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: center;
    margin-top: 2rem;
    align-items: center;
  }
}
@media screen and (min-width: 64rem) {
  .banner-column {
    grid-template-columns: 1.05fr 0.95fr;
    -moz-column-gap: 3rem;
         column-gap: 3rem;
  }
}
.banner-inner {
  display: flex;
  flex-direction: column;
  align-items: baseline;
  row-gap: 1.25rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  -moz-column-gap: 0.6rem;
       column-gap: 0.6rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--color-border-soft);
  background: rgba(255, 255, 255, 0.04);
  color: var(--color-gray-200);
  font-size: 0.95rem;
}

.eyebrow .dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: var(--color-blue-300);
  box-shadow: 0 0 0 6px rgba(82, 145, 255, 0.15);
}

.check-form {
  width: 100%;
  margin-top: 0.75rem;
}

.check-form__grid {
  display: grid;
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.5rem;
}

.field__label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-gray-200);
}

.field__input {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 0.95rem;
  border: 1px solid var(--color-border-soft);
  background: rgba(255, 255, 255, 0.04);
  color: var(--color-gray-100);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.field__input:hover {
  border-color: rgba(82, 145, 255, 0.35);
}

.field__input:focus {
  border-color: rgba(82, 145, 255, 0.55);
  background: rgba(255, 255, 255, 0.06);
}

.field__hint {
  color: var(--color-gray-400);
  font-size: 0.88rem;
}

.check-form__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media screen and (min-width: 34rem) {
  .check-form__actions {
    flex-direction: row;
    align-items: center;
  }
}

.trust {
  margin-top: 1rem;
  display: grid;
  gap: 0.65rem;
}
@media screen and (min-width: 34rem) {
  .trust {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.trust__item {
  display: flex;
  gap: 0.65rem;
  align-items: center;
  padding: 0.75rem 0.85rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-soft);
  background: rgba(255, 255, 255, 0.03);
}

.trust__icon {
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(82, 145, 255, 0.12);
}

.trust__text {
  font-size: 0.95rem;
  color: var(--color-gray-200);
}

.disclaimer {
  margin-top: 0.75rem;
}

.banner-preview {
  display: grid;
  gap: 1rem;
}

.result-card {
  padding: 1rem;
}

.card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.85rem;
}

.card__title {
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.2;
}

.card__subtitle {
  display: inline-block;
  margin-left: 0.5rem;
  font-weight: 500;
  font-size: 0.88rem;
  color: var(--color-gray-400);
}

.card__body {
  display: grid;
  gap: 0.9rem;
}

.kv {
  display: grid;
  gap: 0.55rem;
}

.kv__row {
  display: grid;
  grid-template-columns: 9rem 1fr;
  gap: 0.75rem;
  padding: 0.6rem 0.7rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
}
@media screen and (max-width: 26rem) {
  .kv__row {
    grid-template-columns: 1fr;
  }
}

.kv__key {
  color: var(--color-gray-400);
  font-size: 0.92rem;
}

.kv__val {
  color: var(--color-gray-100);
  font-weight: 600;
  font-size: 0.98rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  border: 1px solid var(--color-border-soft);
  background: rgba(255, 255, 255, 0.04);
}

.badge--ok {
  border-color: rgba(0, 0, 0, 0);
  background: rgba(44, 199, 116, 0.14);
  color: hsl(145, 75%, 70%);
}

.badge--warn {
  border-color: rgba(0, 0, 0, 0);
  background: rgba(255, 193, 71, 0.14);
  color: hsl(38, 95%, 75%);
}

.badge--danger {
  border-color: rgba(0, 0, 0, 0);
  background: rgba(255, 92, 92, 0.14);
  color: hsl(0, 85%, 75%);
}

.signal {
  padding: 0.85rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.03);
}

.signal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.65rem;
}

.signal__title {
  font-weight: 700;
  color: var(--color-gray-200);
}

.signal__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  background: rgba(82, 145, 255, 0.12);
  border: 1px solid rgba(82, 145, 255, 0.18);
  color: var(--color-gray-200);
  font-size: 0.9rem;
  font-weight: 600;
}

.card__footer {
  margin-top: 0.95rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-note {
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.mini-grid {
  display: grid;
  gap: 0.85rem;
}
@media screen and (min-width: 34rem) {
  .mini-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.mini {
  padding: 0.95rem;
}

.mini__top {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.55rem;
}

.mini__icon {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(82, 145, 255, 0.14);
}

.mini__title {
  font-weight: 700;
  color: var(--color-gray-100);
}

/* Steps */
.steps-grid {
  display: grid;
  gap: 1rem;
}
@media screen and (min-width: 48rem) {
  .steps-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.step {
  padding: 1.1rem 1.1rem 1.2rem;
  position: relative;
}

.step__num {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  background: rgba(82, 145, 255, 0.16);
  border: 1px solid rgba(82, 145, 255, 0.22);
  margin-bottom: 0.75rem;
}

.step__title {
  font-weight: 800;
  margin-bottom: 0.45rem;
}

/* Callout */
.callout {
  margin-top: 1.25rem;
  padding: 1.1rem 1.2rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border-soft);
  background: rgba(255, 255, 255, 0.03);
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.callout__title {
  font-weight: 800;
  margin-bottom: 0.2rem;
}

.callout__text {
  max-width: 46rem;
}

/* Features */
.features-grid {
  display: grid;
  gap: 1rem;
}
@media screen and (min-width: 48rem) {
  .features-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.feature {
  padding: 1.1rem;
}

.feature__icon {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 0.95rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(82, 145, 255, 0.14);
  border: 1px solid rgba(82, 145, 255, 0.18);
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.feature__title {
  font-weight: 800;
  margin-bottom: 0.35rem;
}

.note {
  margin-top: 1rem;
  padding: 1.1rem 1.2rem;
}

.note__title {
  font-weight: 800;
  margin-bottom: 0.35rem;
}

/* Audience */
.audience-grid {
  display: grid;
  gap: 1rem;
}
@media screen and (min-width: 48rem) {
  .audience-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.audience {
  padding: 1.1rem;
}

.audience__top {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.55rem;
}

.audience__icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.95rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.audience__title {
  font-weight: 800;
}

/* Pricing */
.pricing-grid {
  display: grid;
  gap: 1rem;
}
@media screen and (min-width: 48rem) {
  .pricing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
  }
}

.pricing {
  padding: 1.2rem;
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing__head {
  display: grid;
  gap: 0.65rem;
  margin-bottom: 0.85rem;
}

.pricing__title {
  font-weight: 900;
}

.pricing__price {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
}

.pricing__value {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.pricing__period {
  color: var(--color-gray-400);
  font-weight: 600;
  font-size: 0.95rem;
}

.pricing__list {
  display: grid;
  gap: 0.55rem;
  padding-left: 0.2rem;
  margin-bottom: 1.1rem;
}

.pricing__list li {
  position: relative;
  padding-left: 1.2rem;
  color: var(--color-gray-200);
  font-size: 0.98rem;
}

.pricing__list li::before {
  content: "•";
  position: absolute;
  left: 0.25rem;
  top: 0;
  color: rgba(82, 145, 255, 0.85);
  font-weight: 900;
}

.pricing__btn {
  margin-top: auto;
  width: 100%;
}

.pricing--popular {
  border-color: rgba(82, 145, 255, 0.28);
  box-shadow: var(--shadow-extra);
}

.ribbon {
  position: absolute;
  top: 0.95rem;
  right: 0.95rem;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  background: rgba(82, 145, 255, 0.18);
  border: 1px solid rgba(82, 145, 255, 0.25);
  color: var(--color-gray-100);
  font-weight: 800;
  font-size: 0.88rem;
}

.pricing-note {
  margin-top: 0.9rem;
}

/* FAQ */
.faq-head {
  margin: auto;
  margin-bottom: 2.25rem;
  text-align: center;
}

.faq-list {
  display: grid;
  gap: 0.85rem;
  max-width: 56rem;
  margin: auto;
}

.faq-item {
  padding: 0.25rem;
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1rem;
  border-radius: var(--radius-xl);
  font-weight: 800;
  text-align: left;
  font-size: 1.15rem;
}

.faq-q .chev {
  opacity: 0.8;
  transition: transform 0.2s ease;
}

.faq-q[aria-expanded=true] .chev {
  transform: rotate(180deg);
}

.faq-a {
  padding: 0 1rem 1rem 1rem;
}

/* CTA */
.cta {
  padding: 1.25rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.cta__content {
  max-width: 44rem;
}

.cta__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* Footer */
.footer {
  padding-block: 2.5rem 2.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(10, 10, 12, 0.35);
}
.footer .slogan_text {
  color: hsl(249.2, 85.05%, 71.94%);
}
.footer .slogan_text b {
  color: hsl(249.2, 100%, 78.09%);
  font-size: 16px;
}

.footer-grid {
  display: grid;
  gap: 1.5rem;
}
@media screen and (min-width: 48rem) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 2rem;
  }
}

.footer-brand {
  font-weight: 900;
  font-size: 1.15rem;
  margin-bottom: 0.55rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.footer-title {
  font-weight: 900;
  margin-bottom: 0.6rem;
}

.footer-links {
  display: grid;
  gap: 0.5rem;
}

.footer-bottom {
  grid-column: 1/-1;
  margin-top: 0.5rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.footer-bottom .sep {
  opacity: 0.6;
}

/* ===== Premium full-width HERO with 3D app-like form ===== */
:root {
  --p-bg: #0b0b0f;
  --p-text: rgba(255,255,255,.92);
  --p-muted: rgba(255,255,255,.68);
  --p-muted2: rgba(255,255,255,.50);
  --p-border: rgba(255,255,255,.12);
  --p-border-soft: rgba(255,255,255,.08);
  --p-glass: rgba(255,255,255,.05);
  --p-glass2: rgba(255,255,255,.035);
  --p-accent: #7e68fd;
  --p-radius: 28px;
}

/* visually hidden */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* HERO full width */
.hero {
  position: relative;
  width: 100%;
  background: var(--p-bg);
  color: var(--p-text);
  overflow: hidden;
}

.hero--full {
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding-top: 6.5rem; /* учитывает фиксированную шапку */
  padding-bottom: 5rem;
  justify-content: center;
}

.hero__bg {
  position: absolute;
  inset: -2px;
  background: radial-gradient(900px 600px at 15% 10%, rgba(10, 132, 255, 0.22), transparent 60%), radial-gradient(700px 520px at 85% 18%, rgba(10, 132, 255, 0.14), transparent 62%), radial-gradient(1000px 700px at 55% 95%, rgba(10, 132, 255, 0.1), transparent 60%);
  opacity: 0.9;
  pointer-events: none;
}

.hero__wrap {
  position: relative;
  width: 100%;
  max-width: 78rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  gap: 2.2rem;
  align-items: center;
}
@media (min-width: 56rem) {
  .hero__wrap {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3.5rem;
  }
}

.hero__text {
  max-width: 44rem;
}

.hero__kicker {
  font-size: 0.98rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--p-muted2);
  margin-bottom: 0.9rem;
}

.hero__title {
  font-size: clamp(2.7rem, 5.8vw, 4.4rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero__lead {
  font-size: clamp(1.05rem, 2.15vw, 1.35rem);
  line-height: 1.6;
  color: var(--p-muted);
  margin-bottom: 0.75rem;
}

.hero__sub {
  font-size: 1rem;
  color: var(--p-muted2);
  letter-spacing: 0.02em;
}

/* 3D stage */
.hero__stage {
  display: flex;
  justify-content: center;
  align-items: center;
}

.app3d {
  width: min(560px, 100%);
  border-radius: var(--p-radius);
  border: 1px solid var(--p-border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025));
  -webkit-backdrop-filter: blur(16px);
          backdrop-filter: blur(16px);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  padding: 1.25rem 1.25rem 1.05rem;
  transform-style: preserve-3d;
  /* ощущение “девайса” */
}
@media (min-width: 56rem) {
  .app3d {
    transform: perspective(1200px) rotateX(10deg) rotateY(-12deg);
  }
}

/* верхний “блик/рамка”, как у корпуса */
.app3d__chrome {
  position: absolute;
  inset: 10px;
  border-radius: calc(var(--p-radius) - 10px);
  pointer-events: none;
  background: radial-gradient(420px 220px at 30% 18%, rgba(255, 255, 255, 0.14), transparent 60%), radial-gradient(520px 260px at 85% 25%, rgba(10, 132, 255, 0.16), transparent 62%);
  opacity: 0.55;
  filter: blur(10px);
  transform: translateZ(2px);
}

.app3d__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.95rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transform: translateZ(6px);
}

.app3d__brand {
  font-weight: 650;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.92);
}

.app3d__meta {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.02em;
}

.app3d__form {
  padding-top: 1.1rem;
  display: grid;
  gap: 0.9rem;
  transform-style: preserve-3d;
}

/* “Выползающее” поле: главный 3D-эффект */
.pop-field {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0.75rem 0.75rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.18);
  -webkit-backdrop-filter: blur(18px);
          backdrop-filter: blur(18px);
  /* выдвижение вперёд */
  transform: translateZ(26px);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* нижняя мягкая “тень от парения” */
.pop-field::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: -18px;
  height: 28px;
  background: radial-gradient(closest-side, rgba(0, 0, 0, 0.55), transparent 70%);
  filter: blur(8px);
  opacity: 0.75;
  transform: translateZ(-1px);
  pointer-events: none;
}

.pop-field__input {
  width: 100%;
  min-width: 0;
  height: 3.2rem;
  padding: 0 0.6rem 0 0.15rem;
  border: none;
  outline: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}

.pop-field__input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.pop-field__input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.pop-field__btn {
  height: 3.2rem;
  padding: 0 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--p-accent);
  color: rgba(255, 255, 255, 0.95);
  font-weight: 650;
  letter-spacing: 0.01em;
  box-shadow: 0 14px 34px rgba(10, 132, 255, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.14);
  transition: filter 0.15s ease, transform 0.15s ease;
}

.pop-field__btn:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
}

.pop-field__btn:active {
  transform: translateY(0px);
  filter: brightness(1.02);
}

/* ссылки под формой — максимально чисто */
.app3d__links {
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateZ(10px);
}

.app3d__link {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  padding: 0.25rem 0;
  transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.app3d__link:hover {
  color: rgba(255, 255, 255, 0.95);
  border-color: rgba(255, 255, 255, 0.55);
  transform: translateY(-1px);
}

/* focus */
.pop-field__input:focus-visible {
  outline: none;
}

.pop-field:has(.pop-field__input:focus-visible) {
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.55), 0 0 0 6px rgba(10, 132, 255, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  border-color: rgba(10, 132, 255, 0.45);
}

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  .app3d {
    transform: none !important;
  }
  .pop-field, .pop-field__btn, .app3d__link {
    transition: none !important;
  }
}
/* small screens */
@media (max-width: 56rem) {
  .hero--full {
    min-height: auto;
    padding-top: 6.25rem;
  }
  .hero__wrap {
    gap: 1.6rem;
  }
  .app3d {
    transform: none;
  }
}
/* ===========================
   AUTH split (как на примере)
   =========================== */
.auth-shell {
  width: min(1100px, 100%);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  overflow: hidden;
  min-height: 620px;
  border-radius: calc(var(--radius-xl) + 0.25rem);
  border: 1px solid var(--color-border-soft);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
}

/* LEFT panel */
.auth-shell__left {
  position: relative;
  padding: 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.25rem;
}

/* backgrounds per slide */
.auth-shell[data-slide="0"] .auth-shell__left {
  background: url("/wp-content/themes/mycontragent/assets/img/slide_2one.png");
  background-size: cover;
}

.auth-shell[data-slide="1"] .auth-shell__left {
  background: url("/wp-content/themes/mycontragent/assets/img/slide_1one.png");
  background-size: cover;
}

.auth-shell[data-slide="2"] .auth-shell__left {
  background: url("/wp-content/themes/mycontragent/assets/img/slide_3one.png");
  background-size: cover;
}

/* subtle inner frame */
.auth-shell__left::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: calc(var(--radius-xl) + 0.15rem);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.auth-shell__left > * {
  position: relative;
  z-index: 1;
}

.auth-left__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.auth-left__brand {
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: 1.05rem;
}

.auth-left__back {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.88);
  font-weight: 600;
  transition: transform 0.15s ease, filter 0.15s ease;
}

.auth-left__back:hover {
  transform: translateY(-1px);
  filter: brightness(1.06);
}

.auth-left__bottom {
  padding: 1rem 1rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.18);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

.auth-left__headline {
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  font-weight: 800;
  margin-bottom: 0.55rem;
}

.auth-dots {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

.auth-dot {
  width: 30px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: filter 0.15s ease, transform 0.15s ease, background 0.2s ease;
}

.auth-dot:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}

.auth-dot.is-active {
  background: rgba(255, 255, 255, 0.7);
}

/* RIGHT panel */
.auth-shell__right {
  padding: 2.1rem 2.1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.1rem;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.08);
}

.auth-right__head {
  margin-bottom: 0.35rem;
}

.auth-right__title {
  font-size: clamp(2rem, 3.4vw, 2.75rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 800;
  margin-bottom: 0.45rem;
}

.auth-right__switch {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.auth-link {
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  padding: 0.15rem 0;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  transition: transform 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.auth-link:hover {
  transform: translateY(-1px);
  border-bottom-color: rgba(255, 255, 255, 0.55);
  color: rgba(255, 255, 255, 0.95);
}

/* Panels */
.auth-panel {
  display: none;
}

.auth-panel.is-active {
  display: grid;
  gap: 0.95rem;
}

.auth-errors {
  margin-left: 1.15rem;
  display: grid;
  gap: 0.35rem;
}

.auth-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.auth-check {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--color-gray-200);
  font-size: 0.95rem;
}

.auth-check input {
  accent-color: var(--p-accent);
}

.auth-submit .btn {
  width: 100%;
}

.auth-mini {
  font-size: 0.9rem;
  line-height: 1.55;
}

/* register grid */
.auth-grid2 {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

/* password eye */
.auth-pass {
  position: relative;
}

.auth-eye {
  position: absolute;
  right: 0.95rem;
  top: 2.55rem;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  opacity: 0.85;
  transition: transform 0.15s ease, filter 0.15s ease, opacity 0.15s ease;
}

.auth-eye:hover {
  transform: translateY(-1px);
  filter: brightness(1.06);
  opacity: 1;
}

/* mobile */
@media (max-width: 56rem) {
  .auth-shell {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .auth-shell__right {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.6rem 1.25rem;
  }
  .auth-shell__left {
    padding: 1.15rem 1.15rem;
  }
  .auth-grid2 {
    grid-template-columns: 1fr;
  }
}
.logotype {
  background: url(/wp-content/themes/mycontragent/assets/img/lmk.png);
  background-size: cover;
  width: 250px;
  height: 42px;
}

.stars-webgl {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1; /* выше hero__bg, но ниже контента */
  opacity: 0.9;
}

/* чтобы контент был поверх звёзд */
.hero__wrap,
.hero__text,
.hero__stage {
  position: relative;
  z-index: 2;
}/*# sourceMappingURL=style.css.map */