/* ── Variables (extracted from Frame.pdf) ── */
:root {
  --color-bg: #0c0c0c;
  --color-surface: #121212;
  --color-surface-raised: #161616;
  --color-text: #ffffff;
  --color-text-muted: #8c8c8c;
  --color-text-light: #505050;
  --color-border: #2c2c2c;
  --color-border-light: #343434;

  --color-accent: #33cf85;
  --color-accent-bright: #67f9af;
  --color-accent-hover: #2bb872;
  --color-accent-dark: #1e4e36;
  --color-accent-deep: #183c2a;
  --color-accent-mid: #246042;
  --color-accent-soft: #2a6648;
  --color-accent-glow: #60f8a8;
  --color-accent-pale: #90dec0;
  --color-accent-muted: #698079;
  --color-accent-on: #0c0c0c;

  --gradient-accent: linear-gradient(145deg, #000000 0%, #5fe7a3 100%);
  --gradient-accent-featured: linear-gradient(145deg, #000000 0%, #5fe7a3 100%);
  --gradient-hero-fade: linear-gradient(180deg, rgba(12, 12, 12, 0.2) 0%, rgba(12, 12, 12, 0.45) 35%, rgba(12, 12, 12, 0.78) 68%, #0c0c0c 100%);

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius: 20px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --container: 1120px;
  --container-narrow: 720px;
  --header-h: 64px;
  --section-gap: 120px;
}

/* ── Reset ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
}

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

ul {
  list-style: none;
}

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

/* ── Utility ── */
.text-accent {
  color: var(--color-accent);
}

/* ── Layout ── */
.page__main {
  padding-top: var(--header-h);
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.container--narrow {
  max-width: var(--container-narrow);
}

/* ── Header ── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(12, 12, 12, 0.82);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(44, 44, 44, 0.5);
  transform: translateZ(0);
}

.header__inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 32px;
}

.header__logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 19.5px;
  font-weight: 700;
  flex-shrink: 0;
  color: var(--color-text);
}

.header__logo-mark {
  flex-shrink: 0;
  width: 31px;
  height: 31px;
  color: var(--color-accent-bright);
}

.header__nav {
  display: flex;
  gap: 28px;
  flex: 1;
}

.header__drawer {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1;
  min-width: 0;
}

.header__link {
  font-size: 14px;
  color: var(--color-text-muted);
  transition: color 0.15s;
}

.header__link:hover {
  color: var(--color-text);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

html.sntz-has-auth-token .header__actions > .button {
  display: none !important;
}

html.sntz-has-auth-token .header__actions:not(.sntz-auth-ready) {
  min-width: 7.5rem;
  min-height: 2.25rem;
}

.public-user-menu {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: auto;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  color: #ffffff;
  text-decoration: none;
  box-sizing: border-box;
  max-width: min(280px, 42vw);
}

.public-user-menu:hover {
  color: #ffffff;
  opacity: 0.88;
}

.public-user-menu__name {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 14px;
  line-height: 1.2;
}

.public-user-menu-wrap + .public-account-link,
.public-user-menu-wrap + .sntz-chatwoot-header-btn {
  margin-left: 12px;
}

.public-account-link {
  white-space: nowrap;
  color: #0c0c0c;
}

.public-account-link:hover {
  color: #0c0c0c;
}

.public-account-link--plain {
  background: transparent;
  border: none;
  padding: 0;
  min-height: auto;
  font-weight: 400;
  color: var(--color-text-muted);
}

.public-account-link--plain:hover {
  color: var(--color-text);
}

.header__actions .public-account-link--plain {
  padding: 0;
  min-height: auto;
}

.public-user-menu-wrap {
  position: relative;
}

button.public-user-menu {
  cursor: pointer;
  font: inherit;
}

.public-user-menu--open {
  opacity: 1;
}

.public-user-menu__dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 180px;
  padding: 6px;
  border-radius: 12px;
  border: 1px solid #2c2c2c;
  background: #121212;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
  z-index: 120;
}

.public-user-menu__dropdown-item {
  display: block;
  width: 100%;
  padding: 10px 12px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #ffffff;
  font-size: 14px;
  line-height: 1.2;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
  box-sizing: border-box;
}

.public-user-menu__dropdown-item:hover {
  background: rgba(255, 255, 255, 0.06);
}

.header__actions .button {
  min-height: 27px;
  padding-top: 7px;
  padding-bottom: 7px;
  height: auto;
}

.header__actions .button--outline {
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--color-text-muted);
}

.header__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.header__burger-line {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--color-text);
  transition: transform 0.2s, opacity 0.2s;
}

.header__burger[aria-expanded="true"] .header__burger-line:first-child {
  transform: translateY(3.75px) rotate(45deg);
}

.header__burger[aria-expanded="true"] .header__burger-line:last-child {
  transform: translateY(-3.75px) rotate(-45deg);
}

/* ── Button ── */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.25;
  min-height: 40px;
  border-radius: 100px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s, opacity 0.15s;
  white-space: nowrap;
  box-sizing: border-box;
}

.button--primary {
  background: var(--color-accent);
  color: var(--color-accent-on);
}

.button--primary:hover {
  background: var(--color-accent-hover);
}

.button--outline {
  background: transparent;
  border-color: var(--color-border-light);
  color: var(--color-text);
}

.button--outline:hover {
  border-color: var(--color-accent-muted);
  color: var(--color-text);
}

.button--lg {
  padding: 14px 28px;
  font-size: 15px;
  min-height: 48px;
  border-radius: 100px;
}

.button--block {
  width: 100%;
}

/* ── Hero ── */
.hero {
  position: relative;
  margin-top: calc(-1 * var(--header-h));
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--header-h) + 48px) 0 64px;
  overflow: hidden;
  text-align: center;
  isolation: isolate;
  background: #0c0c0c url('/landing/assets/images/background.webp') no-repeat 50% bottom / cover;
}

.hero__fade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: var(--gradient-hero-fade);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--color-text-muted);
  border-radius: 100px;
  padding: 6px 16px 6px 14px;
  margin-bottom: 36px;
  background: #141414;
}

.hero__badge-dot {
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent-bright);
}

.hero__title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 auto 24px;
  max-width: 780px;
}

.hero__subtitle {
  font-size: 18px;
  line-height: 1.65;
  color: #e8e8e8;
  max-width: 560px;
  margin: 0 auto 16px;
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.9),
    0 4px 24px rgba(0, 0, 0, 0.85),
    0 0 48px rgba(12, 12, 12, 0.75);
}

.hero__note {
  font-size: 14px;
  color: var(--color-text);
  margin-bottom: 40px;
}

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

/* ── Section ── */
.section {
  padding: var(--section-gap) 0;
}

.section--composition,
.section--connection,
.section--audience,
.section--pricing,
.section--steps,
.section--roadmap {
  border-top: 1px solid var(--color-border);
}

#features,
#pricing,
#pricing-view,
#roadmap,
#faq {
  scroll-margin-top: calc(var(--header-h) + 16px);
}

.card--composition {
  display: flex;
  flex-direction: column;
}

.card--composition .card__icon {
  margin-bottom: 16px;
}

.card--composition .card__icon--app {
  background: rgba(73, 170, 119, 0.12);
  border-radius: 12px;
}

.card--composition .card__title {
  margin-bottom: 6px;
}

.card--composition .card__tag {
  margin-bottom: 10px;
}

.card--composition .card__text {
  margin-bottom: 0;
}

.card--composition .card__media {
  margin-top: 28px;
  padding: 20px 28px 24px;
  background: #0a0a0a;
  border: 1px solid #222222;
}

.card--composition .card__media img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.card--composition .card__media--flat {
  margin-top: 24px;
  padding: 4px 40px 0;
  background: none;
  border: none;
  display: flex;
  justify-content: center;
}

.card--composition .card__media--flat img {
  width: auto;
  max-width: min(72%, 280px);
}

.composition-video {
  margin-bottom: 16px;
}

.product-video-anchor,
#features-video {
  scroll-margin-top: calc(var(--header-h) + 24px);
}

.composition-video__inner {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: 16px;
  overflow: hidden;
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.composition-video__inner iframe,
.composition-video__player {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: contain;
  background: #0a0a0a;
}

.composition-video__cover {
  position: absolute;
  inset: 0;
  z-index: 3;
  margin: 0;
  padding: 0;
  border: 0;
  cursor: pointer;
  pointer-events: auto;
  background: rgba(0, 0, 0, 0.42);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.composition-video__cover:hover {
  background: rgba(0, 0, 0, 0.28);
}

.composition-video__play {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(73, 170, 119, 0.92);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
  position: relative;
  pointer-events: none;
}

.composition-video__play::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 54%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 12px 0 12px 20px;
  border-color: transparent transparent transparent #fff;
}

.section--benefits .cards--grid-4 {
  gap: 12px;
}

.section--benefits .card--tile {
  padding: 28px;
  min-height: 132px;
}

.section__head {
  margin-bottom: 56px;
}

.section__head--row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  overflow: visible;
}

.section__head--row .section__title {
  margin-bottom: 0;
}

.section__head--row .section__link {
  margin-top: 0;
  flex-shrink: 0;
}

.section__label {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-accent-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.section__title {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section__desc {
  font-size: 16px;
  color: var(--color-text-muted);
  max-width: 600px;
  line-height: 1.65;
}

.section__link {
  display: inline-block;
  margin-top: 16px;
  font-size: 14px;
  color: var(--color-accent);
  border-bottom: 1px solid rgba(51, 207, 133, 0.3);
  transition: border-color 0.15s;
}

.section__link:hover {
  border-color: var(--color-accent);
}

.section__link--pill {
  margin-top: 0;
  padding: 14px 33px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.25;
  color: var(--color-accent-bright);
  border: 1px solid rgba(95, 231, 163, 0.5);
  border-radius: 100px;
  border-bottom: 1px solid rgba(95, 231, 163, 0.5);
  transition: border-color 0.15s, background 0.15s;
  flex-shrink: 0;
  align-self: center;
}

.section__link--pill:hover {
  border-color: var(--color-accent-bright);
  background: rgba(95, 231, 163, 0.06);
}

.section__callout {
  margin-top: 40px;
  padding: 25px 33px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--color-text);
  background: rgba(147, 226, 179, 0.06);
  border: 1px solid rgba(147, 226, 179, 0.15);
  border-radius: 20px;
}

.section__callout strong {
  font-weight: 600;
}

.section__callout--muted {
  color: var(--color-accent-dark);
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 16px 20px;
}

.section__footnote {
  margin-top: 40px;
  font-size: 14px;
  color: var(--color-text-light);
  max-width: 640px;
  line-height: 1.65;
}

.section__footnote--center {
  max-width: none;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section__footnote--center strong {
  color: var(--color-text);
  font-weight: 600;
}

/* ── Cards ── */
.cards {
  display: grid;
  gap: 16px;
}

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

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

.cards--grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.cards--pricing {
  margin-bottom: 48px;
}

.pricing-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 48px;
}

.pricing-stack__base {
  max-width: 520px;
}

.pricing-model-cards {
  display: grid;
  gap: 12px;
}

.pricing-model-cards--aside {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pricing-model-cards--below {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (min-width: 961px) {
  .pricing-stack {
    display: grid;
    grid-template-columns: minmax(300px, 520px) minmax(0, 1fr);
    grid-template-areas:
      'base aside'
      'below below';
    gap: 12px 16px;
    align-items: stretch;
  }

  .pricing-stack__base {
    grid-area: base;
    max-width: none;
    display: flex;
    flex-direction: column;
    min-height: 100%;
  }

  .pricing-stack__base .card__footer {
    margin-top: auto;
    padding-top: 20px;
  }

  .pricing-model-cards--aside {
    grid-area: aside;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: repeat(3, minmax(132px, auto));
  }

  .pricing-model-cards--below {
    grid-area: below;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 1280px) {
  .pricing-model-cards--aside {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.pricing-model-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 132px;
  padding: 14px 16px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.015) 100%);
}

.pricing-model-card__head {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.pricing-model-card__logo {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border-radius: 8px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.04);
}

.pricing-model-card__meta {
  min-width: 0;
}

.pricing-model-card__tokens {
  margin: 0;
  font-size: 11px;
  line-height: 1.45;
  color: var(--color-text-muted);
}

.pricing-model-card--active {
  border-color: rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
}

.pricing-model-card--soon {
  opacity: 0.62;
  border-color: rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.02);
}

.pricing-model-card__title {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #ffffff;
}

.pricing-model-card__provider {
  margin: 0;
  font-size: 13px;
  line-height: 1.4;
  color: var(--color-text-muted);
}

.pricing-model-card__price {
  margin: auto 0 0;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 6px;
  font-size: 13px;
  line-height: 1.2;
}

.pricing-model-card__price-label,
.pricing-model-card__price-suffix {
  color: var(--color-text-muted);
}

.pricing-model-card__price-value {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
}

.pricing-model-card__soon {
  margin: auto 0 0;
  font-size: 13px;
  line-height: 1.4;
  color: var(--color-text-muted);
}

.card {
  position: relative;
  background: linear-gradient(180deg, var(--color-surface-raised) 0%, var(--color-surface) 100%);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 28px;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035) 0%, transparent 35%);
  pointer-events: none;
}

.card--accent {
  background: var(--gradient-accent);
  border-color: #202020;
}

.card--accent::before {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, transparent 40%);
}

.card--bordered {
  border-color: rgba(51, 207, 133, 0.35);
}

.card--accent .card__title,
.card--accent .card__text,
.card--accent .card__tag,
.card--accent .card__price,
.card--accent .card__amount,
.card--accent .card__list li {
  color: var(--color-text);
}

.card--accent .card__tag {
  color: rgba(255, 255, 255, 0.7);
}

.card--accent .card__list li::before,
.card--accent .card__list--check li::before {
  color: var(--color-accent-bright);
}

.card--accent .button--primary {
  background: var(--color-text);
  color: var(--color-accent-on);
}

.card--pricing.card--accent {
  background: var(--gradient-accent-featured);
}

.card--accent .button--primary:hover {
  background: #e8e8e8;
}

.card--tile {
  padding: 24px;
  border-radius: var(--radius-md);
}

.audience__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
  overflow: visible;
}

.step__download-link {
  display: block;
  font-size: 15px;
  color: #d9d9d9;
  transition: color 0.15s;
}

.step__download-link:hover {
  color: var(--color-text);
}

.card__footer--links {
  display: flex;
  flex-direction: column;
  gap: 3px;
  align-items: flex-start;
}

.card--step .card__text {
  flex: 1;
}

.card--pricing {
  padding: 36px 32px;
}

.card--pricing .card__list {
  flex: 1;
}

.card--step {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding-top: 32px;
}

.card__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.card__badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  background: var(--color-accent);
  color: var(--color-accent-on);
  border-radius: 100px;
  padding: 4px 10px;
  margin-bottom: 16px;
}

.card__badge--spacer {
  visibility: hidden;
  pointer-events: none;
}

.card__title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  position: relative;
}

.card--tile .card__title {
  font-size: 15px;
  margin-bottom: 6px;
}

.card__tag {
  font-size: 13px;
  color: var(--color-text-muted);
  margin-bottom: 12px;
  position: relative;
}

.card__text {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.65;
  position: relative;
}

.card--tile .card__text {
  font-size: 13px;
  line-height: 1.55;
}

.card__price {
  font-size: 15px;
  color: var(--color-text-muted);
  margin-bottom: 4px;
  position: relative;
}

.card__amount {
  font-size: 40px;
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: -0.02em;
}

.card__providers {
  position: absolute;
  top: 28px;
  right: 24px;
  width: min(48%, 220px);
  height: auto;
  opacity: 0.82;
  pointer-events: none;
}

.card__media {
  margin-top: 24px;
  border-radius: var(--radius-md);
  background: #0a0a0a;
  border: 1px solid #222222;
  overflow: hidden;
  position: relative;
}

.card__media img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: top center;
}

.card__list {
  margin: 20px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
}

.card__list--pricing {
  margin-bottom: 28px;
}

.card__list li {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.55;
  padding-left: 20px;
  position: relative;
}

.card__list li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--color-text-light);
}

.card__list--check li::before {
  display: none;
}

.card__check-icon {
  position: absolute;
  left: 0;
  top: 3px;
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.card__list--check li {
  padding-left: 24px;
}

.card__list-item--no .card__check-icon {
  opacity: 0.45;
}

.card__footer {
  margin-top: auto;
  padding-top: 24px;
  position: relative;
}

.card__step-num {
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.03em;
  color: rgba(255, 255, 255, 0.06);
  margin-bottom: 8px;
  position: relative;
}

.card--tile-icon .card__tile-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
  margin-bottom: 14px;
}

/* ── Showcase ── */
.showcase {
  position: relative;
  margin-bottom: 48px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--color-border);
  background: #0a0a0a;
}

.showcase__screen {
  width: 100%;
  height: auto;
  display: block;
}

.showcase__cursor {
  position: absolute;
  left: 38%;
  bottom: 22%;
  width: 17px;
  height: auto;
  pointer-events: none;
}

.showcase--video {
  border: none;
  background: transparent;
}

.showcase--video .composition-video {
  margin-bottom: 0;
}

.showcase--video .composition-video__inner {
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
}

/* ── Capabilities ── */
.capabilities-panel {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(180deg, var(--color-surface-raised) 0%, var(--color-surface) 100%);
}

.capabilities {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.capability {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px 26px;
  background: transparent;
  border: none;
  border-radius: 0;
  border-right: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.capability:nth-child(3n) {
  border-right: none;
}

.capability--last {
  grid-column: 1 / -1;
  border-bottom: none;
  border-right: none;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px 24px;
}

.capability__body {
  flex: 1;
  min-width: 200px;
}

.capability__action {
  flex-shrink: 0;
  white-space: nowrap;
}

.capability__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.capability__title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
}

.capability__text {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.55;
}

/* ── Integrations ── */
.integrations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 40px;
}

.integration-card {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 88px;
  padding: 20px 22px;
  background: linear-gradient(180deg, var(--color-surface-raised) 0%, var(--color-surface) 100%);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}

.integration-card--active {
  border-color: rgba(51, 207, 133, 0.35);
}

.integration-card__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.integration-card__icon--muted {
  opacity: 0.45;
}

.integration-card__body {
  min-width: 0;
}

.integration-card__title {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 4px;
}

.integration-card__status {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.4;
}

.integration-card__status--active {
  color: var(--color-accent);
}

/* ── Steps bar ── */
.steps__bar {
  margin-top: 16px;
  padding: 18px 28px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--color-text-muted);
  text-align: center;
  background: linear-gradient(180deg, var(--color-surface-raised) 0%, var(--color-surface) 100%);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}

/* ── Pricing details ── */
.pricing__details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  padding-top: 48px;
  border-top: 1px solid var(--color-border);
}

.pricing__detail-title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 12px;
}

.pricing__detail-text {
  font-size: 14px;
  color: var(--color-text-muted);
  margin-bottom: 12px;
  line-height: 1.6;
}

.pricing__detail-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pricing__detail-list li {
  font-size: 14px;
  color: var(--color-text-muted);
  padding-left: 16px;
  position: relative;
}

.pricing__detail-list li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--color-accent-muted);
}

/* ── FAQ ── */
.faq {
  display: flex;
  flex-direction: column;
}

.faq__item {
  border-bottom: 1px solid var(--color-border);
}

.faq__item:first-child {
  border-top: 1px solid var(--color-border);
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.faq__question::-webkit-details-marker {
  display: none;
}

.faq__question::after {
  content: '';
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-left: 16px;
  background:
    linear-gradient(
      45deg,
      transparent calc(50% - 1px),
      rgba(255, 255, 255, 0.72) calc(50% - 1px),
      rgba(255, 255, 255, 0.72) calc(50% + 1px),
      transparent calc(50% + 1px)
    ),
    linear-gradient(
      -45deg,
      transparent calc(50% - 1px),
      rgba(255, 255, 255, 0.72) calc(50% - 1px),
      rgba(255, 255, 255, 0.72) calc(50% + 1px),
      transparent calc(50% + 1px)
    );
  opacity: 0.75;
  transition: transform 0.2s, opacity 0.2s;
}

.faq__item[open] .faq__question::after {
  transform: rotate(45deg);
  opacity: 1;
}

.faq__answer {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.65;
  padding-bottom: 20px;
}

/* ── Footer ── */
.footer {
  border-top: 1px solid var(--color-border);
  padding: 64px 0 32px;
  background: var(--color-bg);
}

.footer__top {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  margin-bottom: 48px;
}

.footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 19.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

.footer__logo-mark {
  flex-shrink: 0;
  width: 31px;
  height: 31px;
  color: var(--color-accent-bright);
}

.footer__tagline {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer__contacts {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer__contact {
  font-size: 14px;
  color: var(--color-text-muted);
  transition: color 0.15s;
}

.footer__contact:hover {
  color: var(--color-accent);
}

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

.footer__col-title {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__link {
  font-size: 14px;
  color: var(--color-text-muted);
  transition: color 0.15s;
}

button.footer__link {
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.footer__link:hover {
  color: var(--color-text);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid var(--color-border);
}

.footer__copy {
  font-size: 13px;
  color: var(--color-text-light);
}

.footer__links {
  font-size: 13px;
  color: var(--color-text-light);
}

.footer__sep {
  margin: 0 8px;
}

/* ── Large screens: wider content, less empty side margin ── */
@media (min-width: 1280px) {
  :root {
    --container: 1280px;
  }
}

@media (min-width: 1440px) {
  :root {
    --container: 1360px;
  }

  .container {
    padding: 0 32px;
  }

  .section__head {
    margin-bottom: 64px;
  }

  .card--composition .card__media {
    padding: 24px 32px 28px;
  }
}

@media (min-width: 1680px) {
  :root {
    --container: 1480px;
  }
}

@media (min-width: 1920px) {
  :root {
    --container: 1560px;
  }
}

/* ── Responsive ── */
@media (max-width: 960px) {
  :root {
    --section-gap: 80px;
  }

  .header__drawer {
    display: none;
  }

  .header__drawer--open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: fixed;
    top: calc(var(--header-h) + 10px);
    left: 10px;
    right: 10px;
    flex: none;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 18px;
    padding: 22px 22px 26px;
    gap: 22px;
    z-index: 99;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.55);
    max-height: calc(100dvh - var(--header-h) - 20px);
    overflow-y: auto;
  }

  .header__drawer--open .header__nav {
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex: none;
  }

  .header__drawer--open .header__actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
  }

  .header__drawer--open .header__actions .button {
    width: 100%;
    justify-content: center;
    white-space: normal;
    text-align: center;
  }

  .header__burger {
    display: flex;
    margin-left: auto;
  }
  .cards--grid-2,
  .cards--grid-3,
  .cards--grid-4,
  .capabilities,
  .integrations-grid,
  .pricing__details {
    grid-template-columns: 1fr;
  }

  .pricing-model-cards--aside,
  .pricing-model-cards--below {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-stack {
    display: flex;
    flex-direction: column;
  }

  .pricing-stack__base {
    max-width: none;
  }

  .section__head--row {
    flex-direction: column;
    align-items: flex-start;
  }

  .capability,
  .capability:nth-child(3n),
  .capability--last {
    border-right: none;
    border-bottom: 1px solid var(--color-border);
  }

  .capability:last-child {
    border-bottom: none;
  }

  .card__providers {
    position: static;
    width: 100%;
    max-width: 220px;
    margin-bottom: 16px;
    opacity: 0.75;
  }

  .footer__top {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

@media (max-width: 600px) {
  .cards--grid-2,
  .cards--grid-3,
  .cards--grid-4 {
    gap: 12px;
  }

  .card {
    padding: 22px 20px;
  }

  .card--pricing {
    padding: 28px 22px;
  }

  .hero {
    margin-top: calc(-1 * var(--header-h));
    padding: calc(var(--header-h) + 32px) 0 48px;
    min-height: 100vh;
    min-height: 100dvh;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .footer__nav {
    grid-template-columns: 1fr;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .capability--last {
    flex-direction: column;
    align-items: flex-start;
  }

  .capability__action {
    width: 100%;
    white-space: normal;
    text-align: center;
    justify-content: center;
  }
}

/* ── Isolate landing from global theme.css (body.theme-dark) ── */
.theme-dark .page {
  font-family: var(--font);
  color: var(--color-text);
}

.theme-dark .page h1,
.theme-dark .page .hero__title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 auto 24px;
  color: var(--color-text);
}

.theme-dark .page h2,
.theme-dark .page .section__title {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: var(--color-text);
}

.theme-dark .page h3,
.theme-dark .page .card__title,
.theme-dark .page .capability__title,
.theme-dark .page .integration-card__title,
.theme-dark .page .pricing__detail-title {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: normal;
  color: var(--color-text);
}

.theme-dark .page .card--tile .card__title {
  font-size: 15px;
}

.theme-dark .page h4.footer__col-title {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: normal;
  color: var(--color-text);
}

.theme-dark .page .pricing__detail-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text);
}

.theme-dark .page a.button--primary,
.theme-dark .page .button--primary {
  color: var(--color-accent-on);
}

.theme-dark .page a.button--primary:hover,
.theme-dark .page .button--primary:hover {
  color: var(--color-accent-on);
}

.theme-dark .page a.button--outline,
.theme-dark .page .button--outline {
  color: var(--color-text);
}

.theme-dark .page .header__actions a.button--outline {
  color: var(--color-text-muted);
}

.theme-dark .page .header__actions a.button--outline:hover {
  color: var(--color-text);
}

.theme-dark .page .card--accent a.button--primary,
.theme-dark .page .card--accent .button--primary {
  background: var(--color-text);
  color: var(--color-accent-on);
}

.theme-dark .page .card--accent a.button--primary:hover,
.theme-dark .page .card--accent .button--primary:hover {
  background: #e8e8e8;
  color: var(--color-accent-on);
}

.theme-dark .page .footer a,
.theme-dark .page .footer__link,
.theme-dark .page .footer__contact,
.theme-dark .page .footer span.footer__contact {
  color: var(--color-text-muted);
}

.theme-dark .page .footer__link:hover,
.theme-dark .page .footer__contact:hover {
  color: var(--color-text);
}

.theme-dark .page .footer__logo {
  color: var(--color-text);
}

.theme-dark .page .footer__copy,
.theme-dark .page .footer__links {
  color: var(--color-text-light);
}

.theme-dark .page .footer__links a {
  color: var(--color-text-light);
}

.theme-dark .page .footer__links a:hover {
  color: var(--color-text-muted);
}

.theme-dark .page .header__logo {
  color: var(--color-text);
}

.theme-dark .page .header__link {
  color: var(--color-text-muted);
}

.theme-dark .page .header__link:hover {
  color: var(--color-text);
}

/* ── Auth pages (login / register) ── */
.auth-page {
  min-height: 100vh;
  min-height: 100dvh;
  background: #0c0c0c url('/landing/assets/images/background.webp') no-repeat 50% bottom / cover;
}

.auth-page__header {
  position: fixed;
}

.auth-page__main {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--header-h) + 48px) 24px 64px;
  position: relative;
  isolation: isolate;
}

.auth-page__main::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-hero-fade);
  pointer-events: none;
}

.auth-card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 440px;
  background: linear-gradient(180deg, var(--color-surface-raised) 0%, var(--color-surface) 100%);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
}

.auth-card__title {
  font-size: clamp(28px, 4vw, 32px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 28px;
  color: var(--color-text);
  text-align: center;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.auth-field {
  display: block;
}

.auth-field__label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-muted);
  margin-bottom: 8px;
}

.auth-field__input {
  display: block;
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.4;
  color: var(--color-text);
  background: #0a0a0a;
  border: 1px solid var(--color-border-light);
  border-radius: 12px;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
  box-sizing: border-box;
}

.auth-field__input::placeholder {
  color: var(--color-text-light);
}

.auth-field__input:focus {
  border-color: rgba(51, 207, 133, 0.55);
  box-shadow: 0 0 0 3px rgba(51, 207, 133, 0.12);
}

.auth-card__footer {
  margin: 24px 0 0;
  text-align: center;
  font-size: 14px;
  color: var(--color-text-muted);
}

.auth-message {
  margin: 16px 0 0;
  font-size: 14px;
  line-height: 1.55;
  text-align: center;
}

.auth-message--ok {
  color: var(--color-accent-bright);
}

.auth-message--err {
  color: #ff8a65;
}

.theme-dark .page.auth-page .auth-card__footer a {
  color: var(--color-accent);
  font-weight: 500;
}

.auth-card__secondary {
  margin-top: 12px;
}

.auth-card__kicker {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  color: var(--color-accent-muted);
}

.auth-card__subtitle {
  margin: -12px 0 24px;
  font-size: 14px;
  line-height: 1.6;
  text-align: center;
  color: var(--color-text-muted);
}

.auth-link-btn {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  color: var(--color-accent);
  text-decoration: underline;
  cursor: pointer;
}

.auth-link-btn:disabled {
  opacity: 0.6;
  cursor: default;
}

.theme-dark .page.auth-page .auth-link-btn {
  color: var(--color-accent);
}

.theme-dark .page.auth-page .auth-card__footer a:hover {
  color: var(--color-accent-bright);
}

.theme-dark .page.auth-page h1.auth-card__title {
  font-size: clamp(28px, 4vw, 32px);
  font-weight: 600;
  margin: 0 0 28px;
}

.theme-dark .page.auth-page label {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-muted);
}

.theme-dark .page.auth-page .header__logo {
  color: var(--color-text);
}

@media (max-width: 600px) {
  .auth-card {
    padding: 28px 20px;
  }
}

/* ── Register page (two-column, no scroll) ── */
.auth-page--register {
  overflow: hidden;
}

.auth-page--register .auth-page__main--register {
  min-height: 100dvh;
  max-height: 100dvh;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  padding: calc(var(--header-h) + 12px) 24px 12px;
}

.register-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 400px);
  gap: clamp(20px, 3vw, 40px);
  align-items: start;
  width: 100%;
  max-width: var(--container, 1120px);
  max-height: calc(100dvh - var(--header-h) - 24px);
  margin: 0 auto;
}

.register-info {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 0;
  overflow: hidden;
}

.register-info__stack {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 10px;
  width: 100%;
  max-width: 100%;
  height: 100%;
  margin-inline: auto;
  justify-items: stretch;
  align-content: start;
}

.register-info__video {
  margin: 0;
  min-height: 0;
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
}

.register-info__video .composition-video {
  margin: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
}

.register-info__video .composition-video__inner {
  position: relative;
  padding-bottom: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: transparent;
}

.register-info__video .composition-video__player,
.register-info__video .composition-video__inner iframe {
  object-fit: cover;
  background: transparent;
}

.register-info__plate {
  flex-shrink: 0;
  width: 100%;
  padding: 12px 14px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--color-text-muted);
  background: rgba(12, 12, 12, 0.35);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  backdrop-filter: blur(18px) saturate(1.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  text-align: left;
}

.register-info__plate-lead {
  margin: 0 0 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.35;
  color: var(--color-text);
}

.register-info__plate-text {
  margin: 0;
}

.register-info__corp {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
  color: var(--color-text-muted);
}

.register-info__corp a {
  color: var(--color-accent);
  text-decoration: none;
  font-weight: 500;
}

.register-info__corp a:hover {
  color: var(--color-accent-bright);
}

.register-card {
  position: static;
  padding: 24px 28px;
  align-self: center;
  height: fit-content;
}

.register-card__title {
  text-align: left;
  margin-bottom: 16px;
  font-size: clamp(22px, 2.8vw, 28px);
}

.auth-page--register .auth-field__input {
  background: #000;
  border-color: rgba(255, 255, 255, 0.12);
}

.auth-page--register .auth-form--compact {
  gap: 10px;
}

.auth-form--compact .auth-field__label {
  margin-bottom: 4px;
  font-size: 12px;
}

.auth-form--compact .auth-field__input {
  padding: 9px 12px;
  font-size: 14px;
}

.auth-page--register .register-consent {
  display: grid;
  grid-template-columns: 14px minmax(0, 1fr);
  gap: 6px;
  align-items: start;
  margin: 2px 0 0;
  cursor: pointer;
}

.register-consent__checkbox {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  margin: 2px 0 0;
  accent-color: var(--color-accent);
  cursor: pointer;
}

.register-consent__text {
  font-size: 11px;
  line-height: 1.45;
  color: var(--color-text-muted);
}

.register-consent__text a {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.register-consent__text a:hover {
  color: var(--color-accent-bright);
}

.auth-page--register .auth-card__footer {
  margin-top: 12px;
  font-size: 13px;
}

.theme-dark .page.auth-page--register .register-card__title {
  text-align: left;
  margin-bottom: 16px;
}

@media (max-width: 960px) {
  .auth-page--register .auth-page__main--register {
    max-height: none;
    overflow: auto;
    align-items: flex-start;
    padding-bottom: 32px;
  }

  .register-layout {
    grid-template-columns: 1fr;
    max-width: 440px;
    max-height: none;
  }

  .register-info {
    align-items: stretch;
  }

  .register-info__stack {
    width: 100%;
    height: auto;
  }

  .register-info__video .composition-video {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .register-info__video .composition-video__inner {
    height: auto;
    aspect-ratio: 16 / 9;
  }
}

.theme-dark .page .step__download-link {
  color: #d9d9d9;
}

.theme-dark .page .step__download-link:hover {
  color: var(--color-text);
}

.theme-dark .page .section__link {
  color: var(--color-accent);
}

.theme-dark .page .section__link--pill {
  color: var(--color-accent-bright);
}

.theme-dark .page .capability__action {
  color: var(--color-text);
}

.reg-paused-modal {
  position: fixed;
  inset: 0;
  z-index: 4000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.72);
}

.reg-paused-modal--open {
  display: flex;
}

body.reg-paused-modal-open {
  overflow: hidden;
}

.reg-paused-modal__card {
  position: relative;
  width: min(100%, 440px);
  padding: 28px 24px 24px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #141414;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
}

.reg-paused-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #878787;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.reg-paused-modal__close:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.reg-paused-modal__title {
  margin: 0 0 12px;
  color: #fff;
  font-size: 20px;
  line-height: 1.3;
  font-weight: 600;
  letter-spacing: -0.02em;
  padding-right: 28px;
}

.reg-paused-modal__text {
  margin: 0 0 20px;
  color: #a8a8a8;
  font-size: 15px;
  line-height: 1.5;
}

.reg-paused-modal__contacts {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.reg-paused-modal__contact {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: inherit;
  text-decoration: none;
  text-align: left;
  transition: border-color 0.15s, background 0.15s;
}

.reg-paused-modal__contact:hover {
  border-color: rgba(103, 250, 176, 0.35);
  background: rgba(103, 250, 176, 0.06);
}

.reg-paused-modal__contact--btn {
  cursor: pointer;
  font: inherit;
  width: 100%;
}

.reg-paused-modal__contact-label {
  font-size: 11px;
  line-height: 1.2;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #878787;
}

.reg-paused-modal__contact-value {
  font-size: 15px;
  line-height: 1.35;
  color: #fff;
  word-break: break-word;
}
