@charset "UTF-8";
@import url(https://fonts.googleapis.com/css?family=Asap:400,700|Lato:400,700,900|Source+Sans+Pro:400,700&display=swap);
*, :after, :before {
  box-sizing: border-box;
}

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

body {
  margin: 0;
  font: 14px asap, arial;
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
}

main {
  margin: 0 auto 0 auto;
  padding: 0 20px;
  width: 100%;
  max-width: 1000px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.hamburger {
  display: none;
}
@media screen and (max-width: 790px) {
  .hamburger {
    display: block;
  }
}
.hamburger .line {
  width: 50px;
  height: 5px;
  display: block;
  background-color: #1d5f86;
  margin: 8px auto;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.hamburger:hover {
  cursor: pointer;
}
.hamburger.is-active .line:nth-child(2) {
  opacity: 0;
}
.hamburger.is-active .line:nth-child(1) {
  -webkit-transform: translateY(13px) rotate(45deg);
  -ms-transform: translateY(13px) rotate(45deg);
  -o-transform: translateY(13px) rotate(45deg);
  transform: translateY(13px) rotate(45deg);
}
.hamburger.is-active .line:nth-child(3) {
  -webkit-transform: translateY(-13px) rotate(-45deg);
  -ms-transform: translateY(-13px) rotate(-45deg);
  -o-transform: translateY(-13px) rotate(-45deg);
  transform: translateY(-13px) rotate(-45deg);
}

.site-header {
  background: linear-gradient(90deg, #eef8ff, #ffffff 55%, #eef8ff);
  border-bottom: 1px solid #e3f0fb;
  position: sticky;
  top: 0;
  z-index: 20;
}

.site-top-alert {
  background: #fff0f0;
  border-bottom: 1px solid #f0b9b9;
}

.site-top-alert__inner {
  align-items: center;
  color: #9b1c1c;
  display: flex;
  font-size: 14px;
  font-weight: 700;
  gap: 10px;
  line-height: 1.35;
  margin: 0 auto;
  max-width: 1080px;
  padding: 10px 20px;
}

.site-top-alert__inner--error::before {
  align-items: center;
  background: #d63c3c;
  border-radius: 999px;
  color: #fff;
  content: "✕";
  display: inline-flex;
  flex: 0 0 18px;
  font-size: 12px;
  font-weight: 700;
  height: 18px;
  justify-content: center;
  line-height: 1;
  width: 18px;
}

.header-inner {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1160px;
  padding: 12px 20px;
}

.brand-link {
  align-items: center;
  color: #123348;
  display: inline-flex;
  font-size: 26px;
  font-weight: 700;
  gap: 8px;
  letter-spacing: 0.04em;
  text-decoration: none;
}
.brand-link img {
  width: 52px;
  object-fit: contain;
}

.header-nav {
  align-items: center;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #d8e8f5;
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(14, 70, 107, 0.08);
  display: flex;
  padding: 6px;
  row-gap: 5px;
  column-gap: 2px;
}
.header-nav .brand-link {
  display: none;
}
@media screen and (max-width: 790px) {
  .header-nav {
    row-gap: 12px;
    position: fixed;
    left: 0;
    bottom: 0;
    height: 100%;
    border-radius: 0;
    flex-direction: column;
    align-items: flex-start;
    min-width: 250px;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    background: white;
    padding: 20px 10px;
  }
  .header-nav > a {
    order: 2;
  }
  .header-nav > .brand-link {
    order: 0;
  }
  .header-nav > .locale-switcher {
    order: 1;
  }
  .header-nav .brand-link {
    display: flex;
    font-size: 20px;
    margin-bottom: 15px;
  }
  .header-nav .brand-link img {
    width: 42px;
  }
  .header-nav.is-active {
    transform: translateX(0);
    pointer-events: auto;
  }
}
@media screen and (max-width: 790px) {
  [dir="rtl"] .header-nav {
    left: auto;
    right: 0;
    transform: translateX(100%);
  }
  [dir="rtl"] .header-nav.is-active {
    transform: translateX(0);
  }
}
[dir="rtl"] .ab-variants-table td,
[dir="rtl"] .ab-variants-table th,
[dir="rtl"] .admin-hero h1,
[dir="rtl"] .admin-kpi-card p,
[dir="rtl"] .admin-section__header h2,
[dir="rtl"] .admin-table td,
[dir="rtl"] .admin-table th,
[dir="rtl"] .api-panel h2,
[dir="rtl"] .auth-hero h1,
[dir="rtl"] .auth-hero p,
[dir="rtl"] .box p.example,
[dir="rtl"] .csv-panel h2,
[dir="rtl"] .faq-section h2,
[dir="rtl"] .hero-card > p,
[dir="rtl"] .hero-card .create-form-v2__hint,
[dir="rtl"] .hero-card h2,
[dir="rtl"] .hero-copy h1,
[dir="rtl"] .hero-description,
[dir="rtl"] .how-section h2,
[dir="rtl"] .my-links-short-copy,
[dir="rtl"] .my-links-table td,
[dir="rtl"] .my-links-table th,
[dir="rtl"] .plan-panel h2,
[dir="rtl"] .pricing-card__head h2,
[dir="rtl"] .pricing-card__item strong,
[dir="rtl"] .pricing-page h1,
[dir="rtl"] .pricing-teaser__copy h2,
[dir="rtl"] .result .metric-block {
  text-align: right;
}
[dir="rtl"] .locale-switcher {
  margin-left: 0;
  margin-right: 4px;
}
@media screen and (max-width: 790px) {
  [dir="rtl"] .locale-switcher {
    margin-right: 0;
  }
}

.locale-switcher {
  margin-left: 4px;
  margin-right: 0;
  position: relative;
}
@media screen and (max-width: 790px) {
  .locale-switcher {
    margin-left: 0;
    margin-right: 0;
  }
}

.locale-switcher__summary {
  align-items: center;
  background: #fff;
  border: 1px solid #d7e8f7;
  border-radius: 999px;
  color: #29475c;
  cursor: pointer;
  display: inline-flex;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  list-style: none;
  min-height: 34px;
  padding: 9px 11px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  user-select: none;
}
@media screen and (max-width: 790px) {
  .locale-switcher__summary {
    justify-content: space-between;
    width: 100%;
  }
}
.locale-switcher__summary:hover {
  border-color: #b7d4ef;
  box-shadow: 0 8px 18px rgba(19, 88, 131, 0.12);
  transform: translateY(-1px);
}
.locale-switcher__summary::-webkit-details-marker {
  display: none;
}

.locale-switcher[open] .locale-switcher__summary {
  border-color: #92c4ea;
  box-shadow: 0 10px 20px rgba(12, 94, 150, 0.16);
}

.locale-switcher__code {
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.locale-switcher__chevron {
  border-bottom: 1.8px solid #4d6e88;
  border-right: 1.8px solid #4d6e88;
  display: inline-block;
  height: 7px;
  margin-top: -2px;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
  width: 7px;
}

.locale-switcher[open] .locale-switcher__chevron {
  margin-top: 2px;
  transform: rotate(-135deg);
}

.locale-switcher__menu {
  background: #fff;
  border: 1px solid #d5e5f4;
  border-radius: 14px;
  box-shadow: 0 14px 34px rgba(9, 58, 94, 0.18);
  display: none;
  left: auto;
  max-height: calc(100dvh - 110px);
  min-width: 180px;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  z-index: 40;
  padding-block: 5px;
}
@media screen and (max-width: 790px) {
  .locale-switcher__menu {
    left: 0;
    max-height: calc(100dvh - 180px);
    margin-top: 0;
    right: auto;
    width: 100%;
  }
}

.locale-switcher[open] .locale-switcher__menu {
  display: block;
}

.locale-switcher__option {
  align-items: center;
  color: #2d4a5f;
  display: flex;
  line-height: 1.2;
  padding: 10px 12px;
  text-decoration: none;
  width: 100%;
  transition: background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.locale-switcher__option:hover {
  background: #eef7ff;
  color: #0f6fac;
}

.locale-switcher__option--active {
  background: #e0f1ff;
  color: #085f94;
  font-weight: 700;
}

.locale-switcher__option-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.locale-switcher__option-native {
  font-size: 13px;
  font-weight: 600;
}

.locale-switcher__option-english {
  color: #6b879e;
  font-size: 11px;
}

.header-nav__link {
  border-radius: 999px;
  color: #2f4453;
  display: inline-flex;
  font-size: 14px;
  font-weight: 600;
  gap: 7px;
  line-height: 1;
  padding: 9px 14px;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.header-nav__link:hover {
  background: #e8f4fd;
  color: #0c79c1;
  transform: translateY(-1px);
}
@media screen and (max-width: 790px) {
  .header-nav__link {
    font-size: 16px;
  }
}

@media screen and (max-width: 790px) {
  #urlBox {
    order: -1;
  }
}

.header-nav__link--active {
  background: #d8ecfb;
  color: #0c79c1;
}

.header-nav__cta {
  align-items: center;
  background: linear-gradient(135deg, #056ea8, #099bff);
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  font-size: 14px;
  gap: 7px;
  font-weight: 700;
  line-height: 1;
  padding: 9px 16px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.header-nav__cta:hover {
  background: var(--btn-hover);
  box-shadow: 0 8px 16px rgba(8, 117, 183, 0.35);
  transform: translateY(-1px);
}

.header-nav__icon {
  border-radius: 4px;
  display: inline-block;
  height: 12px;
  position: relative;
  width: 12px;
}

.header-nav__icon--shorten {
  background: linear-gradient(145deg, #36b0ff, #0a7ac2);
}

.header-nav__icon--counter {
  background: linear-gradient(180deg, #2ca7d8 0, #2ca7d8 30%, #1179b9 30%, #1179b9 60%, #085b8f 60%);
}

.header-nav__icon--pricing {
  background: #fff;
  border: 2px solid #0b7fc5;
  border-radius: 50%;
}
.header-nav__icon--pricing::before {
  background: #0b7fc5;
  border-radius: 50%;
  content: "";
  height: 4px;
  left: 2px;
  position: absolute;
  top: 2px;
  width: 4px;
}

.header-nav__icon--wiki {
  background: #fff;
  border: 2px solid #0b7fc5;
  border-radius: 2px;
}
.header-nav__icon--wiki::before {
  background: #0b7fc5;
  content: "";
  height: 8px;
  left: 3px;
  position: absolute;
  top: 0;
  width: 1px;
}
.header-nav__icon--wiki::after {
  background: #0b7fc5;
  content: "";
  height: 1px;
  left: 5px;
  position: absolute;
  top: 5px;
  width: 5px;
}

.header-nav__icon--upgrade {
  background: linear-gradient(180deg, #2dc269, #129248);
  border-radius: 3px;
}
.header-nav__icon--upgrade::before {
  border-bottom: 4px solid #fff;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  content: "";
  height: 0;
  left: 2px;
  position: absolute;
  top: 1px;
  width: 0;
}
.header-nav__icon--upgrade::after {
  background: #fff;
  border-radius: 2px;
  content: "";
  height: 4px;
  left: 5px;
  position: absolute;
  top: 5px;
  width: 2px;
}

.header-nav__icon--links {
  background: #188ac8;
}
.header-nav__icon--links::before {
  background: #fff;
  border-radius: 2px;
  content: "";
  height: 2px;
  left: 2px;
  position: absolute;
  top: 3px;
  width: 8px;
}
.header-nav__icon--links::after {
  background: #fff;
  border-radius: 2px;
  content: "";
  height: 2px;
  left: 2px;
  position: absolute;
  top: 7px;
  width: 6px;
}

.header-nav__icon--login {
  border: 2px solid #3e6c87;
}

.header-nav__icon--register {
  background: #fff;
}
.header-nav__icon--register::before {
  background: #0b7fc5;
  content: "";
  height: 2px;
  left: 2px;
  position: absolute;
  top: 5px;
  width: 8px;
}
.header-nav__icon--register::after {
  background: #0b7fc5;
  content: "";
  height: 8px;
  left: 5px;
  position: absolute;
  top: 2px;
  width: 2px;
}

.header-nav__icon--logout {
  background: #fff;
}
.header-nav__icon--logout::before {
  background: #0678ba;
  content: "";
  height: 2px;
  left: 1px;
  position: absolute;
  top: 5px;
  width: 7px;
}
.header-nav__icon--logout::after {
  border-bottom: 3px solid transparent;
  border-left: 4px solid #0678ba;
  border-top: 3px solid transparent;
  content: "";
  height: 0;
  position: absolute;
  right: 0;
  top: 3px;
  width: 0;
}

h1 {
  font-size: 3.2em;
  margin: 0.67em 0;
  text-align: center;
}
@media screen and (max-width: 700px) {
  h1 {
    font-size: 2em;
  }
}

h2 {
  font-size: 24px;
  color: var(--title-color);
}
@media screen and (max-width: 700px) {
  h2 {
    font-size: 1.6em;
  }
}

h3 {
  color: var(--title-color);
  font-size: 20px;
}

hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

a {
  background-color: transparent;
}

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

button,
input { /* 1 */
  overflow: visible;
}

button,
select { /* 1 */
  text-transform: none;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=checkbox],
[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

details {
  display: block;
}

summary {
  display: list-item;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

:root {
  --text-color: #202020;
  --title-color: #555;
  --icon-color: brightness(0) saturate(100%) invert(8%) sepia(8%) saturate(502%) hue-rotate(314deg) brightness(89%) contrast(88%);
  --btn-bg: #099bff;
  --btn-hover: #0a8fed;
  --btn-active: #005f98;
}

.btn {
  border: none;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s ease;
  background: var(--btn-bg);
  display: inline-block;
  text-decoration: none;
}
.btn:hover {
  background: var(--btn-hover);
}
.btn:active {
  background: var(--btn-active);
}

.btn--secondary {
  background: #f1f7fc;
  border: 1px solid #c7dced;
  color: #1a4d6d;
}
.btn--secondary:hover {
  background: #e5f0f9;
}

.btn--ui-action {
  align-items: center;
  border-radius: 10px;
  color: #fff !important;
  display: inline-flex;
  font-size: 14px;
  font-weight: 600;
  justify-content: center;
  line-height: 1;
  min-height: 40px;
  padding: 0 16px;
  text-decoration: none;
  white-space: nowrap;
}
.btn--ui-action:hover {
  text-decoration: none;
}

.btn--ui-action.btn--secondary {
  color: #1a4d6d !important;
}

.form-url {
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.05);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
@media screen and (max-width: 700px) {
  .form-url {
    flex-wrap: wrap;
    background: transparent;
    margin-bottom: 20px;
  }
}
.form-url label {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
}
.form-url label img {
  display: block;
  width: 26px;
  height: 26px;
  filter: var(--icon-color);
}
@media screen and (max-width: 700px) {
  .form-url label {
    display: none;
  }
}
.form-url input {
  flex: 1;
  height: 64px;
  line-height: 1;
  font-size: 1.6rem;
  background: transparent;
  padding: 0 20px 0 60px;
  border: 1px solid #f6f6f6;
  border-radius: 10px 0 0 10px;
  color: var(--text-color);
}
@media screen and (max-width: 700px) {
  .form-url input {
    width: 100%;
    flex: unset;
    border-radius: 10px 10px 0 0;
    font-size: 1.4rem;
    padding: 0 15px;
    border-color: #c1c1c1;
  }
}
.form-url input:focus-within {
  outline: none;
  border-color: #aeaeae;
  background: #fff;
}
.form-url button {
  font-size: 1.6rem;
  padding: 0 30px;
  align-self: stretch;
}
@media screen and (max-width: 700px) {
  .form-url button {
    width: 100%;
    padding: 10px 15px;
  }
}

.box p {
  font-size: 1.4em;
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 700px) {
  .box p {
    font-size: 1.1em;
  }
}
.box p.example {
  margin-top: 10px;
  text-align: left;
  font-size: 16px;
  color: #373737;
}
.box p.example span {
  color: black;
  font-weight: 600;
}

.alias-row {
  align-items: stretch;
  display: flex;
  gap: 10px;
  margin-top: 10px;
}
@media screen and (max-width: 700px) {
  .alias-row {
    flex-direction: column;
  }
}
.alias-row input {
  border: 1px solid #c1c1c1;
  border-radius: 10px;
  color: var(--text-color);
  flex: 1;
  font-size: 1rem;
  height: 48px;
  padding: 0 15px;
}
.alias-row input:focus {
  background: #fff;
  border-color: #aeaeae;
  outline: none;
}

.check-alias-btn {
  border-radius: 10px;
  font-size: 1rem;
  padding: 0 20px;
}
@media screen and (max-width: 700px) {
  .check-alias-btn {
    height: 42px;
  }
}

.alias-status {
  font-size: 14px;
  margin-top: 8px;
  min-height: 20px;
}
.alias-status:empty {
  display: none;
}
.alias-status--checking {
  color: #8f8f8f;
}
.alias-status--error {
  color: #c83838;
}
.alias-status--ok {
  color: #1f8f46;
}

.security-row {
  align-items: center;
  display: flex;
  gap: 15px;
  margin-top: 8px;
}
@media screen and (max-width: 700px) {
  .security-row {
    align-items: flex-start;
    flex-direction: column;
  }
}
.security-row input[type=password] {
  border: 1px solid #c1c1c1;
  border-radius: 10px;
  color: var(--text-color);
  flex: 1;
  font-size: 1rem;
  height: 44px;
  padding: 0 15px;
}
.security-row input[type=password]:focus {
  background: #fff;
  border-color: #aeaeae;
  outline: none;
}

.one-time-label {
  align-items: center;
  color: #373737;
  display: flex;
  font-size: 14px;
  gap: 8px;
  user-select: none;
}

.ttl-row {
  align-items: center;
  display: flex;
  gap: 10px;
  margin-top: 8px;
}
@media screen and (max-width: 700px) {
  .ttl-row {
    align-items: flex-start;
    flex-direction: column;
  }
}
.ttl-row select,
.ttl-row input[type=date] {
  border: 1px solid #c1c1c1;
  border-radius: 10px;
  color: var(--text-color);
  font-size: 1rem;
  height: 44px;
  padding: 0 15px;
}
.ttl-row select {
  flex: 1;
}
.ttl-row input[type=date] {
  min-width: 200px;
}
.ttl-row input[type=date]:disabled {
  background: #f3f3f3;
  color: #8f8f8f;
}

.tags-row input {
  border: 1px solid #c1c1c1;
  border-radius: 10px;
  color: var(--text-color);
  font-size: 1rem;
  height: 44px;
  margin-top: 8px;
  padding: 0 15px;
  width: 100%;
}

footer {
  background: #202020;
  border-top: 3px solid var(--btn-bg);
  min-height: 60px;
  width: 100%;
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 15px 0;
  color: #fff;
}
footer nav {
  display: flex;
  gap: 15px;
}
footer a {
  text-decoration: none;
  font-size: 16px;
  color: var(--btn-bg);
}
footer a:hover {
  text-decoration: underline;
}
footer p {
  margin-bottom: 0;
}

.advantages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: auto;
}
@media screen and (max-width: 700px) {
  .advantages {
    grid-template-columns: repeat(2, 1fr);
  }
}
.advantages .item {
  text-align: center;
}
.advantages .item p {
  font-size: 16px;
}
@media screen and (max-width: 700px) {
  .advantages .item p {
    font-size: 14px;
    margin-bottom: 0;
  }
  .advantages .item p br {
    display: none;
  }
}
.advantages .item h3 {
  margin-bottom: 0;
}
@media screen and (max-width: 700px) {
  .advantages .item h3 {
    font-size: 18px;
    margin-top: 6px;
  }
}
.advantages .item img {
  width: 50px;
  height: 50px;
  filter: var(--icon-color);
}

.content {
  margin-top: auto;
  margin-bottom: 50px;
}
@media screen and (max-width: 700px) {
  .content {
    margin-bottom: 20px;
  }
}
.content p {
  text-align: center;
  font-size: 16px;
}
.content h2 {
  text-align: center;
}

.result {
  align-items: center;
  background-color: #fbfbfb;
  border: 1px dashed #c1c1c1;
  border-radius: 10px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  margin-top: 10px;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
  padding: 20px 15px;
  width: 100%;
}
.result:focus {
  outline: none;
}
.result.result--hidden {
  display: none;
}
.result span {
  color: #a5a5a5;
  font-size: 12px;
  margin-top: 15px;
}
@media screen and (max-width: 700px) {
  .result span {
    text-align: center;
  }
}
.result p, .result h1 {
  text-align: center;
  font-size: 1.6rem;
  color: #000;
  margin: 0 0 15px;
  font-weight: 600;
  max-width: 100%;
  min-width: 0;
  overflow-wrap: anywhere;
  width: 100%;
  word-break: break-word;
}
.result h1 {
  margin-bottom: 0;
}
.result .btn {
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 16px;
}
.result .qr-block {
  display: none;
  margin-bottom: 15px;
  text-align: center;
}
.result .qr-block img {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  display: block;
  margin: 0 auto 10px;
  max-width: 220px;
  width: 100%;
}
.result .qr-block.qr-block--visible {
  display: block;
}
.result.details p span {
  font-size: 14px;
  font-weight: 400;
}
.result.details a {
  font-size: 16px;
}
.result .metrics-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 15px;
  width: 100%;
}
@media screen and (max-width: 700px) {
  .result .metrics-grid {
    grid-template-columns: 1fr;
  }
}
.result .metric-block {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 8px;
  padding: 10px 12px;
  text-align: left;
}
.result .metric-block h4 {
  color: #373737;
  font-size: 14px;
  margin: 0 0 8px;
}
.result .metric-block ul {
  margin: 0;
  padding-left: 18px;
}
.result .metric-block li {
  color: #2d2d2d;
  font-size: 13px;
  margin-bottom: 4px;
}

.text-content p {
  font-size: 17px;
}
.text-content h2 {
  font-size: 28px;
}
.text-content ul li {
  font-size: 17px;
  margin-bottom: 5px;
}
.text-content ul li::marker {
  color: var(--btn-bg);
  font-size: 1.25em;
}

.page-main {
  margin: 0 auto;
  max-width: 1160px;
  padding: 30px 20px 46px;
  gap: 20px;
}

.dashboard-card,
.legal-card,
.tool-card {
  background: #fff;
  border: 1px solid #e2ebf2;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(12, 74, 110, 0.08);
  margin: 0 auto 18px;
  max-width: 100%;
  padding: 22px;
}

.dashboard-card h1,
.legal-card h1,
.tool-card h1 {
  color: #0f3550;
  font-size: 34px;
  line-height: 1.1;
  margin-bottom: 10px;
}

.dashboard-card p,
.legal-card p,
.tool-card p {
  color: #355569;
  line-height: 1.65;
}

.legal-card a {
  color: #0f89d3;
}
.legal-card h2 {
  color: #214a62;
  font-size: 24px;
  margin-top: 26px;
}

.legal-card__published-text {
  background: #f7fbff;
  border: 1px solid #dbeaf6;
  border-radius: 12px;
  color: #2d4f65;
  line-height: 1.6;
  padding: 12px;
}

.tool-card .result.details {
  border-top: 1px solid #e8eef4;
  margin-top: 16px;
  padding-top: 16px;
}

.wiki-page {
  width: 100%;
}

.error-page {
  text-align: center;
}

.error-page__actions {
  margin: 18px 0 0;
}
.error-page__actions .btn {
  align-items: center;
  border-radius: 10px;
  color: #fff !important;
  display: inline-flex;
  font-size: 15px;
  font-weight: 600;
  justify-content: center;
  line-height: 1;
  min-height: 42px;
  padding: 0 18px;
  text-decoration: none;
}
.error-page__actions .btn:hover {
  text-decoration: none;
}

.wiki-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 20px;
}

.wiki-card {
  background: #f7fbff;
  border: 1px solid #dbeaf6;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  min-height: 200px;
  padding: 18px;
}
.wiki-card h2 {
  font-size: 24px;
  margin: 0 0 10px;
}
.wiki-card p {
  color: #335467;
  flex: 1;
  font-size: 15px;
  margin: 0 0 14px;
}

.wiki-card__btn {
  width: fit-content;
  padding: 10px;
  color: #fff !important;
  border-radius: 6px;
}

.wiki-page__back {
  font-size: 14px;
  margin: 0 0 8px;
}
.wiki-page__back a {
  color: #0f89d3;
  text-decoration: none;
}
.wiki-page__back a:hover {
  text-decoration: underline;
}

.wiki-related-list li {
  margin-bottom: 8px;
}

.content-card {
  background: #fff;
  border: 1px solid #e2ebf2;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(12, 74, 110, 0.08);
  padding: 24px;
}

.auth-page {
  max-width: 1160px;
  padding: 30px 20px 46px;
}

.auth-shell {
  align-items: stretch;
  animation: authFadeIn 0.45s ease;
  display: flex;
  gap: 16px;
  margin: 0 auto;
  width: 100%;
}

.auth-hero {
  background: linear-gradient(170deg, #0f7ec6, #0a9bff);
  border-radius: 16px;
  color: #fff;
  flex: 1.05;
  min-height: 360px;
  padding: 32px 26px;
}

.auth-kicker {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.08em;
  margin: 0 0 12px;
  opacity: 0.8;
  text-transform: uppercase;
}

.auth-hero h1 {
  font-size: 34px;
  line-height: 1.15;
  margin: 0 0 14px;
  text-align: left;
}

.auth-hero p {
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
  text-align: left;
}

.auth-card {
  background: #fff;
  border: 1px solid #e8edf1;
  border-radius: 16px;
  box-shadow: 0 12px 34px rgba(9, 69, 112, 0.08);
  flex: 0.95;
  padding: 26px;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.auth-card:hover {
  box-shadow: 0 16px 36px rgba(9, 69, 112, 0.14);
  transform: translateY(-2px);
}
.auth-card h2 {
  margin: 0 0 16px;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.auth-form input:not([type=checkbox]):not([type=radio]) {
  border: 1px solid #c1c1c1;
  border-radius: 10px;
  font-size: 16px;
  height: 48px;
  padding: 0 15px;
}
.auth-form label {
  color: #355569;
  font-size: 14px;
  font-weight: 600;
}
.auth-form select,
.auth-form textarea {
  border: 1px solid #c1c1c1;
  border-radius: 10px;
  font-size: 16px;
  padding: 10px 15px;
}
.auth-form select {
  height: 48px;
}
.auth-form textarea {
  min-height: 90px;
  resize: vertical;
}
.auth-form .btn {
  border-radius: 12px;
  box-shadow: 0 9px 18px rgba(9, 117, 183, 0.25);
  font-weight: 700;
  height: 48px;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.auth-form .btn:hover {
  box-shadow: 0 12px 20px rgba(9, 117, 183, 0.32);
  transform: translateY(-1px);
}

.privacy-region-form {
  align-items: flex-start;
  max-width: 420px;
}
.privacy-region-form .btn {
  box-shadow: none;
  font-weight: 600;
  height: auto;
  min-height: 40px;
  padding: 0 16px;
}
.privacy-region-form .btn:hover {
  box-shadow: none;
  transform: none;
}
.privacy-region-form select {
  width: min(100%, 320px);
}

.data-rights-form {
  align-items: flex-start;
  max-width: 520px;
  width: 100%;
}
.data-rights-form .btn {
  border-radius: 10px;
  box-shadow: none;
  font-weight: 600;
  height: auto;
  min-height: 40px;
  padding: 0 16px;
  width: auto;
}
.data-rights-form .btn:hover {
  box-shadow: none;
  transform: none;
}
.data-rights-form input:not([type=checkbox]):not([type=radio]),
.data-rights-form select,
.data-rights-form textarea {
  width: 100%;
}

.data-rights-export-btn {
  margin-bottom: 8px;
}

.auth-switch {
  color: #4f6473;
  font-size: 14px;
  margin: 14px 0 0;
}
.auth-switch a {
  color: #0c79c1;
}

@media screen and (max-width: 900px) {
  .auth-shell {
    flex-direction: column;
  }
  .auth-hero {
    min-height: auto;
  }
}
.auth-error {
  background: #fff1f1;
  border: 1px solid #ffd6d6;
  border-radius: 10px;
  color: #c83838;
  margin: 0 0 14px;
  padding: 10px 12px;
}

.auth-success {
  background: #e9fff0;
  border: 1px solid #ccf2d8;
  border-radius: 10px;
  color: #1f8f46;
  margin: 0 0 14px;
  padding: 10px 12px;
}

@keyframes authFadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.my-links-filter {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
}
.my-links-filter .btn {
  align-items: center;
  border-radius: 10px;
  display: inline-flex;
  font-size: 14px;
  height: 42px;
  justify-content: center;
  line-height: 1;
  padding: 0 16px;
  white-space: nowrap;
}
.my-links-filter input {
  border: 1px solid #c1c1c1;
  border-radius: 10px;
  flex: 1;
  font-size: 15px;
  height: 42px;
  padding: 0 12px;
}
.my-links-filter select {
  border: 1px solid #c1c1c1;
  border-radius: 10px;
  color: #344e60;
  font-size: 15px;
  height: 42px;
  min-width: 150px;
  padding: 0 12px;
}
@media screen and (max-width: 700px) {
  .my-links-filter {
    flex-direction: column;
  }
}

.btn--danger {
  background: #d14a5d;
}
.btn--danger:hover {
  background: #be3a4d;
}

.api-panel {
  background: #fafdff;
  border: 1px solid #dbeaf6;
  border-radius: 14px;
  margin: 16px 0 18px;
  padding: 16px;
}
.api-panel h2 {
  color: #1f4a67;
  font-size: 24px;
  margin: 0 0 6px;
  text-align: left;
}
.api-panel p {
  color: #4f6a7b;
  font-size: 14px;
  line-height: 1.5;
  margin: 0 0 10px;
}

.api-panel__notice {
  background: #ecf8ff;
  border: 1px solid #bfe4f7;
  border-radius: 10px;
  color: #2b607f;
  padding: 10px 12px;
}
.api-panel__notice:empty {
  display: none;
}

.api-panel__token-title {
  color: #3e5f74;
  font-weight: 700;
  margin-bottom: 6px;
}

.api-panel__token {
  background: #0f2433;
  border-radius: 10px;
  color: #e6f5ff;
  font-size: 13px;
  margin: 0 0 10px;
  overflow-x: auto;
  padding: 10px 12px;
  white-space: pre-wrap;
  word-break: break-all;
}
.api-panel__token:empty {
  display: none;
}

.api-panel__meta {
  display: grid;
  gap: 4px;
  margin-bottom: 12px;
}
.api-panel__meta span {
  color: #446173;
  font-size: 13px;
}

.api-panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
}
.api-panel__actions form {
  margin: 0;
}
.api-panel__actions .btn {
  min-height: 40px;
  padding: 0 16px;
}

.api-panel__docs {
  background: #fff;
  border: 1px solid #dbe7f2;
  border-radius: 10px;
  padding: 12px;
}
.api-panel__docs p {
  margin-bottom: 6px;
}
.api-panel__docs code {
  background: #f2f8fd;
  border-radius: 6px;
  padding: 2px 6px;
}

.api-panel__example {
  background: #0f2433;
  border-radius: 10px;
  color: #e6f5ff;
  font-size: 12px;
  line-height: 1.45;
  margin: 10px 0 0;
  overflow-x: auto;
  padding: 10px 12px;
  white-space: pre;
}

.plan-badge {
  border-radius: 999px;
  display: inline-flex;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  margin-left: 8px;
  padding: 5px 8px;
  text-transform: uppercase;
}

.plan-badge--warning {
  background: #fff3d9;
  border: 1px solid #f4d68d;
  color: #8a6714;
}

.plan-panel {
  background: #fafdff;
  border: 1px solid #dbeaf6;
  border-radius: 14px;
  margin: 16px 0 18px;
  padding: 16px;
}
.plan-panel h2 {
  color: #1f4a67;
  font-size: 24px;
  margin: 0 0 6px;
  text-align: left;
}
.plan-panel h3 {
  color: #35566a;
  font-size: 14px;
  margin: 0 0 8px;
  text-transform: uppercase;
}
.plan-panel p {
  color: #4f6a7b;
  font-size: 14px;
  line-height: 1.5;
  margin: 0 0 10px;
}

.plan-panel__actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
}
.plan-panel__actions .btn {
  align-items: center;
  border-radius: 10px;
  display: inline-flex;
  font-size: 14px;
  font-weight: 700;
  gap: 6px;
  height: 40px;
  justify-content: center;
  line-height: 1;
  padding: 0 16px;
  text-decoration: none;
  margin-top: 4px;
}
.plan-panel__actions form {
  margin: 0;
}

.plan-panel__action-form {
  align-items: center;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
}

.plan-panel__btn-primary {
  background: linear-gradient(135deg, #0a75b8, #0ba3ff);
  color: #fff;
}
.plan-panel__btn-primary:hover {
  background: linear-gradient(135deg, #0868a5, #0997ec);
}

.plan-panel__btn-secondary {
  background: #eaf6ff;
  border: 1px solid #c5e4f9;
  color: #1f638d;
}
.plan-panel__btn-secondary:hover {
  background: #d6ecfb;
  color: #0f4f76;
}

.plan-panel__hint {
  color: #587283;
  font-size: 12px;
  margin: 0 0 10px;
}

.plan-panel__limits {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 10px;
}

.plan-panel__limit {
  background: #fff;
  border: 1px solid #dbe7f2;
  border-radius: 10px;
  display: grid;
  gap: 4px;
  padding: 10px;
}
.plan-panel__limit small {
  color: #658198;
  font-size: 12px;
}
.plan-panel__limit span {
  color: #456377;
  font-size: 13px;
}
.plan-panel__limit strong {
  color: #1f4a67;
  font-size: 16px;
}

.plan-panel__orders {
  background: #fff;
  border: 1px solid #dbe7f2;
  border-radius: 10px;
  padding: 10px;
}
.plan-panel__orders ul {
  display: grid;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.plan-panel__orders li {
  border-top: 1px solid #e6eff7;
  display: grid;
  gap: 2px;
  padding-top: 8px;
}
.plan-panel__orders li small {
  color: #557286;
  font-size: 12px;
  word-break: break-all;
}
.plan-panel__orders li span {
  color: #2d5168;
  font-size: 13px;
}
.plan-panel__orders li:first-child {
  border-top: 0;
  padding-top: 0;
}

.plan-panel__order--focus {
  background: #f0f9ff;
  border: 1px solid #c6e7f9;
  border-radius: 8px;
  margin: -4px;
  padding: 8px;
}

.plan-panel__orders strong {
  color: #113f5d;
}

.plan-panel__order-link {
  font-size: 13px;
  font-weight: 700;
  margin-top: 4px;
  min-width: 124px;
  width: fit-content;
}

.plan-panel__orders .plan-panel__order-link {
  align-items: center;
  display: inline-flex;
  font-size: 13px;
  height: 34px;
  justify-content: center;
  line-height: 1;
  padding: 0 12px;
  text-decoration: none;
}

.plan-panel__stats {
  display: grid;
  gap: 4px;
  margin-bottom: 10px;
}
.plan-panel__stats span {
  color: #4f6a7b;
  font-size: 13px;
}

.plan-panel__status {
  background: #e8f6ff;
  border: 1px solid #c5e4f9;
  border-radius: 10px;
  color: #1f4f6a;
  font-size: 13px;
  margin: 0;
  padding: 8px 10px;
}

.plan-panel__status-row {
  flex: 1 1 100%;
}

.plan-panel__toggle {
  margin-bottom: 10px;
}

.plan-upsell-note {
  background: #ecf8ff;
  border: 1px solid #bfe4f7;
  border-radius: 10px;
  color: #2b607f;
  margin: 10px 0 0;
  padding: 10px 12px;
}
.plan-upsell-note a {
  color: #0b7fc5;
  font-weight: 700;
  margin-left: 6px;
  text-decoration: none;
}
.plan-upsell-note a:hover {
  text-decoration: underline;
}

.csv-panel {
  background: #fff;
  border: 1px solid #dbe7f2;
  border-radius: 14px;
  margin: 16px 0 18px;
  padding: 16px;
}
.csv-panel h2 {
  color: #1f4a67;
  font-size: 24px;
  margin: 0 0 6px;
  text-align: left;
}
.csv-panel p {
  color: #4f6a7b;
  font-size: 14px;
  line-height: 1.5;
  margin: 0 0 10px;
}
.csv-panel p code {
  background: #f2f8fd;
  border-radius: 6px;
  padding: 2px 6px;
}

.csv-panel__actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ab-actions .btn,
.ab-form .btn,
.bulk-toolbar .btn,
.csv-panel__actions .btn,
.csv-panel__import .btn,
.webhook-form .btn {
  align-items: center;
  border-radius: 10px;
  display: inline-flex;
  font-size: 14px;
  height: 40px;
  justify-content: center;
  line-height: 1;
  padding: 0 16px;
  white-space: nowrap;
}

.csv-panel__import {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.csv-panel__import input[type=file] {
  border: 1px solid #d3e2ef;
  border-radius: 10px;
  font-size: 13px;
  max-width: 320px;
  padding: 8px 10px;
}

.csv-panel__example {
  background: #0f2433;
  border-radius: 10px;
  color: #e6f5ff;
  font-size: 12px;
  line-height: 1.45;
  margin: 12px 0 0;
  overflow-x: auto;
  padding: 10px 12px;
  white-space: pre;
}

.webhook-form {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}
.webhook-form select,
.webhook-form input[type=number],
.webhook-form input[type=url] {
  border: 1px solid #c1c1c1;
  border-radius: 10px;
  color: #344e60;
  font-size: 14px;
  height: 40px;
  padding: 0 12px;
}
.webhook-form select {
  min-width: 200px;
}
.webhook-form input[type=url] {
  flex: 1;
  min-width: 240px;
}
.webhook-form input[type=number] {
  min-width: 120px;
}

.webhook-form--disable {
  margin-top: 10px;
}

.ab-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.ab-actions form {
  margin: 0;
}

.ab-form {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}
.ab-form input[type=number],
.ab-form input[type=text],
.ab-form input[type=url],
.ab-form select {
  border: 1px solid #c1c1c1;
  border-radius: 10px;
  color: #344e60;
  font-size: 14px;
  height: 40px;
  padding: 0 12px;
}
.ab-form input[type=url] {
  flex: 1;
  min-width: 240px;
}
.ab-form input[type=number] {
  min-width: 140px;
}
.ab-form input[type=text] {
  min-width: 180px;
}
.ab-form select {
  min-width: 170px;
}

.ab-variants-table {
  border-collapse: collapse;
  width: 100%;
}
.ab-variants-table td,
.ab-variants-table th {
  border-bottom: 1px solid #eaeaea;
  padding: 10px 8px;
  text-align: left;
  vertical-align: top;
}
.ab-variants-table th {
  color: #555;
  font-size: 14px;
}
.ab-variants-table td {
  font-size: 14px;
}
.ab-variants-table td a {
  word-break: break-all;
}

.ab-variants-wrap {
  margin-top: 12px;
  overflow-x: auto;
}

.bulk-toolbar {
  align-items: center;
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}
.bulk-toolbar select {
  border: 1px solid #c1c1c1;
  border-radius: 10px;
  color: #344e60;
  font-size: 14px;
  height: 40px;
  padding: 0 12px;
}
.bulk-toolbar .btn[disabled] {
  cursor: not-allowed;
  opacity: 0.55;
}

.status-pill {
  border-radius: 999px;
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 5px 9px;
  text-transform: uppercase;
}

.status-pill--active {
  background: #e7f9ef;
  color: #1f8f46;
}

.status-pill--paused {
  background: #fff5dd;
  color: #a17300;
}

.status-pill--deleted {
  background: #ffecee;
  color: #b3404f;
}

@media screen and (max-width: 700px) {
  .csv-panel__actions,
  .csv-panel__import {
    flex-direction: column;
  }
  .webhook-form {
    flex-direction: column;
  }
  .ab-form {
    flex-direction: column;
  }
  .csv-panel__actions .btn,
  .csv-panel__import .btn,
  .csv-panel__import input[type=file],
  .ab-form .btn,
  .ab-form input[type=number],
  .ab-form input[type=text],
  .ab-form input[type=url],
  .ab-form select,
  .webhook-form .btn,
  .webhook-form input[type=number],
  .webhook-form input[type=url],
  .webhook-form select {
    width: 100%;
  }
  .csv-panel__import input[type=file] {
    max-width: none;
  }
  .api-panel__actions {
    flex-direction: column;
  }
  .api-panel__actions .btn {
    width: 100%;
  }
  .plan-panel__actions .btn,
  .plan-panel__actions .plan-panel__action-form {
    width: 100%;
  }
  .bulk-toolbar {
    flex-direction: column;
  }
  .bulk-toolbar .btn,
  .bulk-toolbar select {
    width: 100%;
  }
  .my-links-filter .btn,
  .my-links-filter select {
    width: 100%;
  }
}
.my-links-table-wrap {
  overflow-x: auto;
}

.pagination-row {
  align-items: center;
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 12px;
}
.pagination-row span {
  color: #355569;
  font-size: 14px;
  font-weight: 600;
}

.my-links-table {
  border-collapse: collapse;
  width: 100%;
}
.my-links-table td,
.my-links-table th {
  border-bottom: 1px solid #eaeaea;
  padding: 10px 8px;
  text-align: left;
  vertical-align: top;
}
.my-links-table th {
  color: #555;
  font-size: 14px;
}
.my-links-table td {
  font-size: 14px;
}
.my-links-table td a {
  word-break: break-all;
}

.my-links-short-copy {
  background: transparent;
  border: 0;
  color: var(--btn-bg);
  cursor: pointer;
  font: inherit;
  margin: 0;
  padding: 0;
  position: relative;
  text-align: left;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  transition: color 0.15s ease;
}
.my-links-short-copy::after {
  background: #253848;
  border-radius: 6px;
  color: #fff;
  content: attr(data-tooltip);
  font-size: 12px;
  font-weight: 600;
  left: 50%;
  opacity: 0;
  padding: 4px 8px;
  pointer-events: none;
  position: absolute;
  top: 0;
  transform: translate(-50%, -100%);
  transition: opacity 0.15s ease, transform 0.15s ease;
  white-space: nowrap;
  z-index: 3;
}
.my-links-short-copy:hover {
  color: var(--btn-hover);
}
.my-links-short-copy:focus-visible {
  border-radius: 4px;
  outline: 2px solid var(--btn-hover);
  outline-offset: 2px;
}

.my-links-short-copy--tooltip-visible::after {
  opacity: 1;
  transform: translate(-50%, -120%);
}

.my-links-short-copy--copied {
  color: #1f8f46;
  text-decoration: none;
}

.my-links-short-copy--copied.my-links-short-copy--tooltip-visible::after {
  background: #1f8f46;
}

.my-links-short-copy--failed {
  color: #d14a5d;
  text-decoration: none;
}

.my-links-short-copy--failed.my-links-short-copy--tooltip-visible::after {
  background: #d14a5d;
}

.analytics-toggle {
  align-items: center;
  border-radius: 10px;
  display: inline-flex;
  font-size: 14px;
  height: 40px;
  justify-content: center;
  line-height: 1;
  padding: 0 16px;
  white-space: nowrap;
}

.my-links-analytics-row > td {
  background: #f9fcff;
}

.my-link-analytics {
  background: #fff;
  border: 1px solid #dceaf5;
  border-radius: 12px;
  padding: 12px;
}

.my-link-analytics__summary {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 10px;
}

.my-link-analytics__summary-item {
  background: #f7fbff;
  border: 1px solid #e2edf7;
  border-radius: 10px;
  padding: 10px;
}
.my-link-analytics__summary-item h4 {
  color: #2f5268;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin: 0 0 6px;
  text-transform: uppercase;
}
.my-link-analytics__summary-item p {
  color: #1f4a67;
  font-size: 14px;
  margin: 0;
}

.my-link-analytics__grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 12px;
}

.my-link-analytics__metric {
  background: #f7fbff;
  border: 1px solid #e2edf7;
  border-radius: 10px;
  padding: 10px;
}
.my-link-analytics__metric h4 {
  color: #2f5268;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin: 0 0 6px;
  text-transform: uppercase;
}
.my-link-analytics__metric ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.my-link-analytics__metric li {
  align-items: baseline;
  color: #2f5268;
  display: flex;
  font-size: 13px;
  gap: 6px;
  justify-content: space-between;
  line-height: 1.4;
  padding: 2px 0;
}
.my-link-analytics__metric li strong {
  color: #164662;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.my-link-analytics__empty {
  color: #678296;
  font-size: 13px;
  margin: 0;
}

.my-link-analytics__recent {
  background: #f7fbff;
  border: 1px solid #e2edf7;
  border-radius: 10px;
  padding: 10px;
}
.my-link-analytics__recent h4 {
  color: #2f5268;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin: 0 0 6px;
  text-transform: uppercase;
}
.my-link-analytics__recent ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.my-link-analytics__recent li {
  border-top: 1px solid #e6eef6;
  color: #355569;
  display: grid;
  gap: 2px;
  line-height: 1.4;
  padding: 7px 0;
}
.my-link-analytics__recent li strong {
  color: #173d55;
  font-size: 13px;
  font-weight: 700;
}
.my-link-analytics__recent li small {
  color: #4f6d82;
  font-size: 12px;
}
.my-link-analytics__recent li:first-child {
  border-top: 0;
  padding-top: 0;
}
.my-link-analytics__recent li:last-child {
  padding-bottom: 0;
}

@media screen and (max-width: 1100px) {
  .plan-panel__limits {
    grid-template-columns: 1fr;
  }
  .my-link-analytics__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 700px) {
  .my-link-analytics__summary {
    grid-template-columns: 1fr;
  }
  .my-link-analytics__grid {
    grid-template-columns: 1fr;
  }
}
.admin-page {
  gap: 14px;
  padding-bottom: 24px;
}

.admin-hero {
  background: linear-gradient(140deg, #f5fbff 0%, #ffffff 56%, #eef8ff 100%);
  border: 1px solid #dce9f5;
  overflow: hidden;
  position: relative;
}

.admin-hero::before {
  background: radial-gradient(circle at 0 0, rgba(17, 133, 204, 0.14), transparent 62%);
  content: "";
  height: 230px;
  pointer-events: none;
  position: absolute;
  right: -40px;
  top: -84px;
  width: 230px;
}

.admin-hero__top {
  align-items: flex-start;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.admin-hero__copy {
  max-width: 700px;
}

.admin-hero__eyebrow {
  background: #e8f4fd;
  border: 1px solid #d3e7f7;
  border-radius: 999px;
  color: #0a79bd;
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin: 0 0 10px;
  padding: 7px 10px;
  text-transform: uppercase;
}

.admin-hero h1 {
  color: #133247;
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.08;
  margin: 0;
  text-align: left;
}

.admin-hero__subtitle {
  color: #3b5a6f;
  font-size: 16px;
  line-height: 1.55;
  margin: 10px 0 0;
  max-width: 680px;
}

.admin-hero__user {
  background: #fff;
  border: 1px solid #dce7f2;
  border-radius: 12px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 220px;
  padding: 12px 14px;
}

.admin-hero__user span {
  color: #5c7384;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.admin-hero__user strong {
  color: #12364f;
  font-size: 16px;
  overflow-wrap: anywhere;
}

.admin-notice {
  margin-top: 12px;
  position: relative;
  z-index: 1;
}

.admin-kpi-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 14px;
  position: relative;
  z-index: 1;
}

.admin-kpi-card {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid #dde9f4;
  border-radius: 14px;
  min-height: 104px;
  padding: 12px 14px;
}

.admin-kpi-card h3 {
  color: #4e6678;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin: 0;
  text-transform: uppercase;
}

.admin-kpi-card p {
  color: #15374f;
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
  margin: 10px 0 0;
  text-align: left;
}

.admin-section {
  padding: 20px;
}

.admin-section--last {
  margin-bottom: 24px;
}

.admin-section__header {
  align-items: flex-end;
  display: flex;
  gap: 10px;
  justify-content: space-between;
  margin-bottom: 14px;
}

.admin-section__header h2 {
  margin: 0;
  text-align: left;
}

.admin-section__header p {
  color: #4f6779;
  line-height: 1.5;
  margin: 6px 0 0;
  max-width: 730px;
}

.admin-toolbar {
  background: #f7fbff;
  border: 1px solid #dce9f5;
  border-radius: 12px;
  margin-bottom: 14px;
  padding: 10px;
}

.admin-table {
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
}

.admin-table td,
.admin-table th {
  border-bottom: 1px solid #e2edf6;
  padding: 12px 10px;
  text-align: left;
  vertical-align: top;
}

.admin-table th {
  background: #f4f9ff;
  color: #2f5268;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.admin-table td {
  color: #234759;
  font-size: 14px;
  line-height: 1.45;
}

.admin-table td a {
  color: #0977ba;
}

.admin-table tbody tr:hover td {
  background: #fbfdff;
}

.admin-actions {
  gap: 6px;
}

.admin-actions .btn {
  border-radius: 9px;
  font-size: 12px;
  min-height: 32px;
  padding: 0 10px;
}

.admin-pagination {
  margin-top: 14px;
}

.admin-pagination .btn {
  border-radius: 10px;
  min-height: 38px;
  padding: 0 13px;
}

.admin-code {
  background: #f2f8fd;
  border: 1px solid #d8e8f3;
  border-radius: 8px;
  color: #214c68;
  display: block;
  font-size: 12px;
  line-height: 1.45;
  max-width: 520px;
  overflow: auto;
  padding: 8px 10px;
  white-space: pre-wrap;
  word-break: break-word;
}

.admin-login-page .auth-hero--admin {
  background: linear-gradient(165deg, #0d78ba 0%, #0797f0 50%, #31b0ff 100%);
}

.admin-login-page .auth-card--admin {
  border-color: #d7e7f3;
}

@media screen and (max-width: 1000px) {
  .admin-kpi-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 700px) {
  .admin-actions .btn,
  .admin-toolbar .btn,
  .admin-toolbar input,
  .admin-toolbar select {
    width: 100%;
  }
  .admin-page {
    padding-bottom: 18px;
  }
  .admin-section__header {
    align-items: flex-start;
    flex-direction: column;
  }
  .admin-toolbar {
    flex-direction: column;
  }
}
@media screen and (max-width: 560px) {
  .admin-kpi-grid {
    grid-template-columns: 1fr;
  }
}
.notification {
  position: fixed;
  right: 15px;
  top: 15px;
  padding: 15px 20px;
  border-radius: 10px;
  background: black;
  color: white;
  font-size: 18px;
}
@media screen and (max-width: 420px) {
  .notification {
    left: 15px;
    right: 15px;
  }
}

.home-main {
  gap: 20px;
  max-width: 1160px;
  padding: 30px 20px 46px;
}

.hero-layout {
  align-items: stretch;
  display: grid;
  gap: 16px;
}

.hero-copy {
  background: radial-gradient(circle at 20% 20%, #f1f9ff, #ffffff 58%);
  border: 1px solid #e6f0f9;
  border-radius: 18px;
  padding: 24px 20px;
}

.hero-kicker {
  color: #0d7fc3;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.hero-copy h1 {
  color: #17364b;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.08;
  margin: 0 0 14px;
  text-align: left;
}

.hero-description {
  color: #3b5566;
  font-size: 17px;
  line-height: 1.55;
  margin: 0;
  text-align: left;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.hero-badges span {
  background: #eaf5ff;
  border: 1px solid #d4e8f9;
  border-radius: 999px;
  color: #1d5f86;
  font-size: 12px;
  font-weight: 600;
  padding: 8px 11px;
}

.hero-stats {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 18px;
}
.hero-stats div {
  background: #fff;
  border: 1px solid #e7edf2;
  border-radius: 12px;
  padding: 12px;
}
.hero-stats strong {
  color: #154465;
  display: block;
  font-size: 16px;
  margin-bottom: 4px;
}
.hero-stats p {
  color: #5a7487;
  font-size: 12px;
  margin: 0;
}

.hero-card {
  background: #fff;
  border: 1px solid #e8edf1;
  border-radius: 18px;
  box-shadow: 0 14px 30px rgba(12, 71, 108, 0.08);
  padding: 24px 20px;
}
.hero-card h2 {
  margin: 0 0 8px;
  text-align: left;
}
.hero-card > p {
  color: #587080;
  font-size: 15px;
  margin: 0 0 15px;
  text-align: left;
}
.hero-card .create-form-v2 {
  display: grid;
  gap: 12px;
}
.hero-card .create-form-v2__core {
  background: #fafdff;
  border: 1px solid #dbeaf6;
  border-radius: 14px;
  padding: 12px;
}
.hero-card .create-form-v2__label {
  align-items: center;
  color: #476479;
  display: inline-flex;
  font-size: 12px;
  font-weight: 700;
  gap: 6px;
  letter-spacing: 0.06em;
  margin: 0 0 7px;
  text-transform: uppercase;
}
.hero-card .create-form-v2__label::before {
  background: linear-gradient(180deg, #d7e9f7, #b8d8f2);
  border-radius: 4px;
  content: "";
  display: inline-block;
  height: 12px;
  width: 12px;
}
.hero-card .create-form-v2__label--alias::before {
  border-radius: 999px;
}
.hero-card .create-form-v2__label--password::before {
  border-radius: 2px;
}
.hero-card .create-form-v2__label--tags::before {
  transform: rotate(45deg);
}
.hero-card .create-form-v2__label--ttl::before {
  border-radius: 50%;
  box-shadow: inset 0 0 0 2px #8db7d5;
}
.hero-card .create-form-v2__url-row {
  align-items: center;
  display: flex;
  position: relative;
}
.hero-card .create-form-v2__url-icon {
  left: 14px;
  pointer-events: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.hero-card .create-form-v2__url-icon img {
  display: block;
  filter: var(--icon-color);
  height: 22px;
  width: 22px;
}
.hero-card .create-form-v2__url-row input {
  background: #fff;
  border: 1px solid #cfe1ef;
  border-radius: 12px;
  color: var(--text-color);
  font-size: 1rem;
  height: 52px;
  padding: 0 14px 0 46px;
  width: 100%;
}
.hero-card .create-form-v2__url-row input:focus {
  border-color: #7eb8dd;
  box-shadow: 0 0 0 3px rgba(18, 130, 199, 0.12);
  outline: none;
}
.hero-card .create-form-v2__submit {
  align-items: center;
  background: linear-gradient(180deg, #0b9cff, #0488de);
  border-radius: 12px;
  box-shadow: 0 12px 22px rgba(4, 136, 222, 0.28);
  display: inline-flex;
  font-size: 1rem;
  font-weight: 600;
  justify-content: center;
  min-height: 52px;
  width: 100%;
}
.hero-card .create-form-v2__submit:hover {
  background: linear-gradient(180deg, #0993f1, #027bca);
}
.hero-card .create-form-v2__hint {
  color: #5d7688;
  font-size: 13px;
  margin: 0;
  text-align: left;
}
.hero-card .create-form-v2__advanced {
  background: #fafdff;
  border: 1px solid #dbeaf6;
  border-radius: 14px;
  overflow: hidden;
}
.hero-card .create-form-v2__advanced summary {
  color: #1e4e6a;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  list-style: none;
  padding: 12px 14px;
  position: relative;
}
.hero-card .create-form-v2__advanced summary::after {
  content: "+";
  font-size: 20px;
  line-height: 1;
  position: absolute;
  right: 14px;
  top: 9px;
}
.hero-card .create-form-v2__advanced summary::-webkit-details-marker {
  display: none;
}
.hero-card .create-form-v2__advanced[open] summary::after {
  content: "-";
}
.hero-card .create-form-v2__advanced-body {
  border-top: 1px solid #e4eef7;
  display: grid;
  gap: 12px;
  padding: 12px 14px 14px;
}
.hero-card .create-form-v2__advanced-fields {
  border: 0;
  display: grid;
  gap: 12px;
  margin: 0;
  min-width: 0;
  padding: 0;
}
.hero-card .create-form-v2__advanced-fields[disabled] {
  opacity: 0.55;
}
.hero-card .create-form-v2__pro-note {
  background: #eef7ff;
  border: 1px dashed #bcdcf3;
  border-radius: 10px;
  color: #2c556f;
  font-size: 13px;
  line-height: 1.5;
  margin: 0;
  padding: 10px 12px;
}
.hero-card .create-form-v2__pro-note a {
  color: #0b7fc5;
  font-weight: 700;
  margin-left: 6px;
  text-decoration: none;
}
.hero-card .create-form-v2__pro-note a:hover {
  text-decoration: underline;
}
.hero-card .create-form-v2__grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.hero-card .create-form-v2 .create-form-v2__row {
  display: grid;
  gap: 6px;
}
.hero-card .create-form-v2 .alias-row,
.hero-card .create-form-v2 .security-row,
.hero-card .create-form-v2 .tags-row {
  margin-top: 0;
}
.hero-card .create-form-v2 .security-row {
  display: block;
}
.hero-card .create-form-v2 .alias-row input,
.hero-card .create-form-v2 .security-row input[type=password],
.hero-card .create-form-v2 .tags-row input {
  background: #fff;
  border: 1px solid #d8e6f1;
  border-radius: 12px;
  height: 46px;
  min-height: 46px;
  margin-top: 0;
  width: 100%;
}
.hero-card .create-form-v2__ttl-layout {
  align-items: center;
  display: grid;
  gap: 8px;
  grid-template-columns: 1fr;
}
.hero-card .create-form-v2__ttl-layout--with-date {
  grid-template-columns: minmax(0, 1fr) 188px;
}
.hero-card .create-form-v2__select-wrap, .hero-card .create-form-v2__date-wrap {
  position: relative;
}
.hero-card .create-form-v2__select-wrap::after {
  border-bottom: 2px solid #5886a5;
  border-right: 2px solid #5886a5;
  content: "";
  height: 7px;
  pointer-events: none;
  position: absolute;
  right: 14px;
  top: 16px;
  transform: rotate(45deg);
  width: 7px;
}
.hero-card .create-form-v2__ttl-layout select, .hero-card .create-form-v2__date-wrap input[type=date] {
  -webkit-appearance: none;
  appearance: none;
  background: linear-gradient(180deg, #fff, #f8fcff);
  border: 1px solid #cfe1ef;
  border-radius: 12px;
  color: #2f5268;
  font-size: 14px;
  font-weight: 600;
  height: 46px;
  outline: none;
  padding: 0 14px;
  width: 100%;
}
.hero-card .create-form-v2__ttl-layout select {
  padding-right: 34px;
}
.hero-card .create-form-v2__ttl-layout select:focus, .hero-card .create-form-v2__date-wrap input[type=date]:focus {
  border-color: #7eb8dd;
  box-shadow: 0 0 0 3px rgba(18, 130, 199, 0.12);
}
.hero-card .create-form-v2__date-wrap::before {
  color: #5a8098;
  content: "Date";
  font-size: 11px;
  font-weight: 700;
  left: 12px;
  letter-spacing: 0.06em;
  pointer-events: none;
  position: absolute;
  text-transform: uppercase;
  top: 4px;
}
.hero-card .create-form-v2__date-wrap input[type=date] {
  padding: 12px 12px 0;
}
.hero-card .create-form-v2__date-wrap input[type=date]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  filter: contrast(110%) saturate(80%);
  opacity: 0.7;
}
.hero-card .create-form-v2 .check-alias-btn {
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  min-width: 128px;
}
.hero-card .create-form-v2 .one-time-label {
  align-items: center;
  background: #fff;
  border: 1px solid #d8e6f1;
  border-radius: 12px;
  display: flex;
  gap: 12px;
  justify-content: space-between;
  min-height: 46px;
  padding: 10px 12px;
  width: 100%;
}
.hero-card .create-form-v2 .one-time-label__copy {
  display: grid;
  gap: 2px;
}
.hero-card .create-form-v2 .one-time-label__title {
  color: #28495f;
  font-size: 14px;
  font-weight: 700;
}
.hero-card .create-form-v2 .one-time-label__note {
  color: #658090;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.25;
}
.hero-card .create-form-v2 .one-time-label input[type=checkbox] {
  accent-color: #099bff;
  flex: 0 0 auto;
  height: 16px;
  margin: 0;
  width: 16px;
}
.hero-card .create-form-v2 .alias-status {
  margin-top: 8px;
  min-height: 0;
}
.hero-card .result {
  border-top: 1px solid #e8eef4;
  margin-top: 14px;
  padding-top: 14px;
}

.hero-card--premium {
  background: linear-gradient(180deg, #fff, #fcfeff 38%, #f8fbff);
  border-color: #d7e9f8;
  box-shadow: 0 18px 36px rgba(10, 83, 130, 0.12);
}

.pricing-teaser {
  background: linear-gradient(150deg, #f5fbff 0, #fff 50%, #eef8ff 100%);
  border: 1px solid #dbeaf6;
  border-radius: 16px;
  display: grid;
  gap: 12px;
  padding: 18px;
}

.pricing-teaser__actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  grid-column: 1/-1;
}

.pricing-teaser__actions form {
  display: inline-flex;
  margin: 0;
}

.pricing-teaser__actions .btn {
  align-items: center;
  border-radius: 10px;
  display: inline-flex;
  font-size: 14px;
  height: 42px;
  justify-content: center;
  line-height: 1;
  padding: 0 16px;
  text-decoration: none;
  white-space: nowrap;
}

.pricing-teaser__btn-secondary {
  background: #eaf6ff;
  color: #1f638d;
}
.pricing-teaser__btn-secondary:hover {
  background: #d6ecfb;
  color: #0f4f76;
}

.pricing-teaser__card {
  background: #fff;
  border: 1px solid #e2edf7;
  border-radius: 12px;
  padding: 12px;
}
.pricing-teaser__card p {
  color: #4e6c80;
  font-size: 13px;
  margin: 0 0 4px;
}
.pricing-teaser__card h3 {
  color: #214b66;
  font-size: 18px;
  margin: 0 0 8px;
}

.pricing-teaser__card--pro {
  background: #f3f9ff;
  border-color: #cde6f9;
}

.pricing-teaser__cards {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.pricing-teaser__copy h2 {
  color: #173c56;
  margin: 0 0 8px;
  text-align: left;
}
.pricing-teaser__copy p {
  color: #4f6c80;
  margin: 0;
}

.pricing-teaser__kicker {
  color: #0f7fc4;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin: 0 0 8px;
  text-transform: uppercase;
}

.home-strip {
  background: #fff;
  border: 1px solid #e8edf1;
  border-radius: 14px;
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 16px 18px;
}
.home-strip div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.home-strip strong {
  color: #1c5579;
  font-size: 15px;
}
.home-strip span {
  color: #5f7686;
  font-size: 13px;
}

.how-section {
  background: #fff;
  border: 1px solid #e8edf1;
  border-radius: 16px;
  padding: 20px;
}
.how-section h2 {
  margin-top: 0;
  text-align: left;
}

.how-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.how-grid article {
  background: #f7fbff;
  border: 1px solid #dfecf7;
  border-radius: 12px;
  padding: 14px;
}
.how-grid span {
  color: #0f7fc4;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.how-grid h3 {
  font-size: 18px;
  margin: 8px 0 6px;
}
.how-grid p {
  color: #547181;
  font-size: 14px;
  margin: 0;
}

.advantages .item {
  background: #fff;
  border: 1px solid #e8edf1;
  border-radius: 12px;
  padding: 14px 12px;
}

.faq-section {
  background: #fff;
  border: 1px solid #e8edf1;
  border-radius: 16px;
  padding: 20px;
}
.faq-section h2 {
  margin-top: 0;
  text-align: left;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-list details {
  background: #f8fbff;
  border: 1px solid #e2edf7;
  border-radius: 10px;
  padding: 12px 14px;
}
.faq-list summary {
  color: #1f4a67;
  cursor: pointer;
  font-weight: 700;
}
.faq-list p {
  color: #577180;
  margin: 8px 0 0;
}

.pricing-page h1 {
  margin-top: 0;
  text-align: left;
}

.pricing-page__actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pricing-page__actions form {
  align-items: center;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
}

.pricing-page__active-note {
  background: #e8f6ff;
  border: 1px solid #c5e4f9;
  border-radius: 10px;
  color: #1f4f6a;
  flex: 1 1 100%;
  font-size: 13px;
  margin: 0;
  padding: 10px 12px;
}

.pricing-page__bottom-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.pricing-page__btn-secondary {
  background: #eaf6ff;
  color: #1f638d;
}
.pricing-page__btn-secondary:hover {
  background: #d6ecfb;
  color: #0f4f76;
}

.pricing-page__hero {
  display: grid;
  gap: 12px;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  margin-top: 16px;
}

.pricing-page__actions .btn,
.pricing-page__bottom-cta .btn {
  align-items: center;
  border-radius: 10px;
  display: inline-flex;
  font-size: 14px;
  height: 42px;
  justify-content: center;
  line-height: 1;
  padding: 0 16px;
  white-space: nowrap;
}

.pricing-page .btn.pricing-page__btn-secondary {
  background: #eaf6ff;
  color: #1f638d;
}

.pricing-page .btn.pricing-page__btn-secondary:hover {
  background: #d6ecfb;
  color: #0f4f76;
}

.pricing-page__kicker {
  color: #0f7fc4;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin: 0 0 8px;
  text-transform: uppercase;
}

.pricing-page__note-card,
.pricing-page__price-card {
  background: #f8fcff;
  border: 1px solid #dceaf5;
  border-radius: 12px;
  padding: 14px;
}

.pricing-page__note-card h3 {
  color: #224a65;
  margin: 0 0 8px;
}
.pricing-page__note-card ul {
  margin: 0;
  padding-left: 18px;
}

.pricing-page__price {
  align-items: baseline;
  color: #0f3651;
  display: flex;
  font-size: 34px;
  font-weight: 800;
  gap: 7px;
  line-height: 1;
  margin: 0 0 8px;
}
.pricing-page__price span {
  color: #5c798d;
  font-size: 14px;
  font-weight: 600;
}

.pricing-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 16px;
}

.pricing-card {
  background: #fff;
  border: 1px solid #dde9f3;
  border-radius: 12px;
  padding: 14px;
}

.pricing-card__audience {
  color: #638094;
  font-size: 12px;
  font-weight: 600;
  margin: 0;
}

.pricing-card__badge {
  background: #e7f9ef;
  border: 1px solid #b9e4c8;
  border-radius: 999px;
  color: #1f8f46;
  font-size: 11px;
  font-weight: 700;
  margin: 0;
  padding: 4px 8px;
  text-transform: uppercase;
}

.pricing-card__head {
  align-items: baseline;
  display: flex;
  gap: 8px;
  justify-content: space-between;
}

.pricing-card__head h2 {
  margin: 0 0 6px;
  text-align: left;
}

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

.pricing-card__item {
  align-items: center;
  background: #f8fbff;
  border: 1px solid #e2edf7;
  border-radius: 10px;
  display: grid;
  gap: 8px;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 10px 10px 10px 30px;
  position: relative;
}

.pricing-card__item::before {
  align-items: center;
  border-radius: 50%;
  display: inline-flex;
  font-size: 11px;
  font-weight: 800;
  height: 16px;
  justify-content: center;
  left: 9px;
  line-height: 1;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
}

.pricing-card__item span {
  color: #35556a;
  font-size: 13px;
}

.pricing-card__item strong {
  font-size: 12px;
  font-weight: 700;
  text-align: right;
}

.pricing-card__item--limited::before {
  background: #fff5dd;
  border: 1px solid #f0d38e;
  color: #9b6b00;
  content: "!";
}

.pricing-card__item--limited strong {
  color: #9b6b00;
}

.pricing-card__item--off::before {
  background: #ffecee;
  border: 1px solid #edbec5;
  color: #b6404f;
  content: "x";
}

.pricing-card__item--off strong {
  color: #b6404f;
}

.pricing-card__item--ok::before {
  background: #e7f9ef;
  border: 1px solid #b9e4c8;
  color: #1f8f46;
  content: "+";
}

.pricing-card__item--ok strong {
  color: #1f8f46;
}

.pricing-card--pro {
  background: linear-gradient(180deg, #f5fbff, #fff);
  border-color: #cde5f8;
}

.pricing-card__price {
  color: #113d5b;
  font-size: 26px;
  font-weight: 800;
  margin: 0;
}

.cookie-banner {
  bottom: 14px;
  left: 50%;
  max-width: 640px;
  position: fixed;
  transform: translateX(-50%);
  width: calc(100% - 28px);
  z-index: 1000;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.cookie-banner__actions .btn {
  border-radius: 10px;
  padding: 9px 12px;
}

.cookie-banner__content {
  background: #fff;
  border: 1px solid #d8e7f3;
  border-radius: 14px;
  box-shadow: 0 18px 42px rgba(8, 66, 103, 0.2);
  padding: 14px;
}

.cookie-banner__text {
  color: #355569;
  font-size: 14px;
  margin: 0 0 10px;
}

.cookie-banner__title {
  color: #0f3550;
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 8px;
}

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

.cookie-settings-form .cookie-settings__option {
  align-items: center;
  cursor: pointer;
  display: flex;
  gap: 10px;
}
.cookie-settings-form .cookie-settings__option input[type=checkbox] {
  height: 18px;
  margin: 0;
  min-height: 18px;
  min-width: 18px;
  width: 18px;
}
.cookie-settings-form .cookie-settings__option span {
  color: #355569;
  font-size: 15px;
  line-height: 1.35;
}

.site-footer {
  background: linear-gradient(180deg, #0e1f2b, #132c3d);
  margin-top: 20px;
  padding: 26px 20px 16px;
}

.footer-inner {
  display: grid;
  gap: 18px;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  margin: 0 auto;
  max-width: 1080px;
}

.footer-brand h3 {
  color: #fff;
  font-size: 30px;
  margin: 0 0 10px;
}

.footer-brand p {
  color: #b8ccdb;
  font-size: 14px;
  line-height: 1.5;
  margin: 0 0 12px;
}

.footer-brand .btn {
  align-items: center;
  border-radius: 10px;
  color: #fff;
  display: inline-flex;
  font-size: 14px;
  height: 40px;
  justify-content: center;
  line-height: 1;
  padding: 0 16px;
  text-decoration: none;
  white-space: nowrap;
}
.footer-brand .btn:hover {
  text-decoration: none;
}

.footer-col h4 {
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.04em;
  margin: 6px 0 10px;
  text-transform: uppercase;
}

.footer-col a {
  color: #b7cbda;
  display: block;
  font-size: 14px;
  margin-bottom: 8px;
  text-decoration: none;
}
.footer-col a:hover {
  color: #fff;
}

.footer-copy {
  color: #8fafc6;
  font-size: 13px;
  margin: 16px auto 0;
  max-width: 1080px;
}

@media screen and (max-width: 900px) {
  .hero-card .create-form-v2__grid {
    grid-template-columns: 1fr;
  }
  .hero-card .create-form-v2__ttl-layout--with-date {
    grid-template-columns: 1fr;
  }
  .hero-card .create-form-v2 .alias-row {
    flex-direction: column;
  }
  .hero-card .create-form-v2 .check-alias-btn {
    height: 42px;
    width: 100%;
  }
  .hero-layout {
    grid-template-columns: 1fr;
  }
  .hero-stats {
    grid-template-columns: 1fr;
  }
  .home-strip {
    grid-template-columns: 1fr;
  }
  .pricing-grid,
  .pricing-page__hero,
  .pricing-teaser,
  .wiki-grid {
    grid-template-columns: 1fr;
  }
  .how-grid {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 600px) {
  .pricing-card__item {
    grid-template-columns: 1fr;
    padding-right: 10px;
  }
  .pricing-card__item strong {
    text-align: left;
  }
  [dir="rtl"] .pricing-card__item strong {
    text-align: right;
  }
  .pricing-page__actions .btn,
  .pricing-page__bottom-cta .btn,
  .pricing-teaser__actions .btn {
    width: 100%;
  }
  .pricing-teaser__actions form {
    width: 100%;
  }
  .pricing-teaser__actions form .btn {
    width: 100%;
  }
  .pricing-page__actions form {
    width: 100%;
  }
  .pricing-page__actions form .btn {
    width: 100%;
  }
  .footer-inner {
    grid-template-columns: 1fr;
  }
  main {
    padding: 0 12px;
  }
}

/*# sourceMappingURL=style.css.map */
