/* ForHost public landing — light, modern */
:root {
  --lp-ink: #0f172a;
  --lp-text: #0f172a;
  --lp-muted: #64748b;
  --lp-line: #e2e8f0;
  --lp-surface: #f8fafc;
  --lp-surface-2: #ffffff;
  --lp-accent: #ff007f;
  --lp-accent-soft: #ffe4f2;
  --lp-accent-deep: #d4006a;
  --lp-green: #166534;
  --lp-green-deep: #14532d;
  --lp-navy: #031b3c;
  --lp-navy-deep: #021229;
  --lp-control-h: 2.75rem;
  --lp-font: "Manrope", system-ui, sans-serif;
  --lp-font-display: "Sora", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body.lp {
  margin: 0;
  font-family: var(--lp-font);
  color: var(--lp-text);
  background: var(--lp-surface);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-height: var(--lp-control-h);
  padding: 0.55rem 1.15rem;
  border-radius: 0.65rem;
  font-family: var(--lp-font);
  font-weight: 600;
  font-size: 0.9rem;
  line-height: 1.25;
  text-decoration: none;
  border: 1px solid transparent;
  white-space: nowrap;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.lp-btn--lg {
  min-height: 3rem;
  padding: 0.7rem 1.4rem;
  font-size: 0.95rem;
  border-radius: 0.75rem;
}

.lp-btn--solid {
  background: var(--lp-accent);
  color: #fff;
  box-shadow: 0 6px 18px rgba(255, 0, 127, 0.28);
}

.lp-btn--solid:hover {
  background: var(--lp-accent-deep);
  box-shadow: 0 8px 22px rgba(255, 0, 127, 0.34);
}

.lp-btn--ghost {
  background: #fff;
  color: var(--lp-ink);
  border-color: var(--lp-line);
}

.lp-btn--ghost:hover {
  border-color: #cbd5e1;
  background: #f8fafc;
}

.lp-btn--green {
  background: var(--lp-navy);
  color: #fff;
  border-color: #0a2b55;
  box-shadow: 0 4px 14px rgba(3, 27, 60, 0.22);
}

.lp-btn--green:hover {
  background: var(--lp-navy-deep);
  color: #fff;
}

.lp-top {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1.5rem;
  background: rgba(248, 250, 252, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--lp-line);
  color: var(--lp-ink);
}

.lp-top__brand {
  display: inline-flex;
  align-items: center;
}

.lp-top__logo {
  height: 2.25rem;
  width: auto;
  object-fit: contain;
}

.lp-top__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.lp-lang {
  display: inline-flex;
  align-items: center;
}

.lp-lang__select {
  appearance: none;
  -webkit-appearance: none;
  box-sizing: border-box;
  min-height: var(--lp-control-h);
  height: auto;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2364748b' d='M1.4 0.6L6 5.2 10.6.6 12 2 6 8 0 2z'/%3E%3C/svg%3E") no-repeat right 0.85rem center;
  color: var(--lp-ink);
  border: 1px solid var(--lp-line);
  border-radius: 0.65rem;
  padding: 0.55rem 2rem 0.55rem 0.9rem;
  font-family: var(--lp-font);
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.25;
  cursor: pointer;
}

.lp-lang__select:hover {
  border-color: #cbd5e1;
}

.lp-hero {
  position: relative;
  min-height: min(92vh, 48rem);
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 4.5rem 1.5rem 5rem;
  color: var(--lp-ink);
}

.lp-hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 50% at 50% 0%, rgba(255, 0, 127, 0.16), transparent 58%),
    radial-gradient(ellipse 45% 40% at 8% 70%, rgba(3, 27, 60, 0.08), transparent 55%),
    radial-gradient(ellipse 40% 35% at 92% 30%, rgba(255, 0, 127, 0.1), transparent 50%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 42%, #fff0f7 100%);
}

.lp-hero__bg::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 18%;
  width: min(34rem, 88vw);
  height: min(34rem, 88vw);
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 0, 127, 0.14) 0%, rgba(255, 0, 127, 0.04) 42%, transparent 70%);
  pointer-events: none;
}

.lp-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at 50% 38%, black 18%, transparent 72%);
  opacity: 0.85;
}

.lp-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 46rem;
  text-align: center;
  animation: lp-rise 0.7s ease both;
}

@keyframes lp-rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.lp-hero__mark {
  width: min(240px, 58vw);
  height: auto;
  margin: 0 auto 1.35rem;
  display: block;
  filter: drop-shadow(0 12px 28px rgba(255, 0, 127, 0.18));
  animation: lp-rise 0.75s ease 0.05s both;
}

.lp-hero__title {
  margin: 0 0 1rem;
  font-family: var(--lp-font-display);
  font-size: clamp(2.05rem, 5.8vw, 3.15rem);
  font-weight: 800;
  letter-spacing: 0.05em;
  line-height: 1.12;
  text-transform: uppercase;
  color: #031b3c;
  text-wrap: balance;
  animation: lp-rise 0.75s ease 0.1s both;
}

.lp-hero__lead {
  margin: 0 auto 2rem;
  max-width: 36rem;
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  line-height: 1.55;
  color: #475569;
  animation: lp-rise 0.75s ease 0.22s both;
}

.lp-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  animation: lp-rise 0.75s ease 0.28s both;
}

.lp-hero__cta .lp-btn--lg {
  min-height: 3.25rem;
  padding: 0.8rem 1.65rem;
  font-size: 1rem;
}

.lp-section {
  padding: 4rem 1.5rem;
}

.lp-section--compare {
  background: var(--lp-surface-2);
  border-top: 1px solid var(--lp-line);
  border-bottom: 1px solid var(--lp-line);
}

.lp-section__inner {
  max-width: 72rem;
  margin: 0 auto;
}

.lp-section__title {
  margin: 0 0 0.45rem;
  font-family: var(--lp-font-display);
  font-size: clamp(1.55rem, 2.8vw, 2rem);
  letter-spacing: -0.03em;
  font-weight: 700;
}

.lp-section__lead {
  margin: 0 0 2rem;
  max-width: 40rem;
  color: var(--lp-muted);
}

.lp-plans {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.lp-plan {
  padding: 1.3rem 1.15rem 1.35rem;
  border: 1px solid var(--lp-line);
  border-radius: 1rem;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.lp-plan:hover {
  transform: translateY(-2px);
  border-color: #f9a8d4;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
}

.lp-plan--featured {
  border-color: var(--lp-accent);
  background: linear-gradient(180deg, #ffffff 0%, #fdf2f8 100%);
  box-shadow: 0 10px 28px rgba(255, 0, 127, 0.12);
}

.lp-plan__name {
  margin: 0;
  font-family: var(--lp-font-display);
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.lp-plan__price {
  margin: 0;
  font-family: var(--lp-font-display);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--lp-ink);
}

.lp-plan__hint {
  margin: 0 0 0.7rem;
  font-size: 0.86rem;
  color: var(--lp-muted);
  flex: 1;
}

.lp-plan .lp-btn {
  width: 100%;
}

.lp-addon {
  margin: 0;
  padding: 1rem 1.15rem;
  border: 1px solid #14532d;
  background: #166534;
  border-radius: 0.85rem;
  color: #fff;
  font-size: 0.95rem;
}

.lp-addon strong {
  color: #fff;
}

.lp-addons {
  margin: 1.75rem 0 0;
  display: grid;
  gap: 0.75rem;
}

.lp-section--compare .lp-section__inner {
  max-width: 52rem;
}

.lp-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--lp-line);
  border-radius: 1rem;
  background: #fff;
  max-width: 52rem;
}

.lp-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  min-width: 0;
  font-size: 0.92rem;
}

.lp-table th,
.lp-table td {
  padding: 0.7rem 0.85rem;
  border-bottom: 1px solid var(--lp-line);
  vertical-align: middle;
}

.lp-table thead th {
  background: #f1f5f9;
  color: var(--lp-ink);
  font-weight: 650;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  position: sticky;
  top: 0;
}

.lp-table thead th:first-child,
.lp-table tbody th {
  text-align: left;
  font-weight: 500;
  color: var(--lp-ink);
  width: auto;
}

.lp-table thead th:nth-child(2),
.lp-table thead th:nth-child(3),
.lp-table tbody td {
  width: 10.5rem;
  text-align: center;
  vertical-align: top;
}

.lp-table tbody td.is-note {
  width: 10.5rem;
}

.lp-table tbody th,
.lp-table tbody td {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.lp-table__bullet {
  display: inline-block;
  width: 0.45rem;
  height: 0.45rem;
  margin-right: 0.55rem;
  margin-bottom: 0.1rem;
  border-radius: 50%;
  background: var(--lp-green);
  vertical-align: middle;
  flex-shrink: 0;
}

.lp-table__val {
  display: block;
  min-width: 0;
}

.lp-table tbody tr:nth-child(even) {
  background: #f8fafc;
}

.lp-table tbody tr:hover {
  background: #fdf2f8;
}

.lp-table td {
  font-weight: 700;
  white-space: nowrap;
}

.lp-table td.is-yes {
  color: var(--lp-accent-deep);
}

.lp-table td.is-no {
  color: #94a3b8;
  font-weight: 500;
}

.lp-table td.is-addon {
  color: var(--lp-accent-deep);
  font-size: 0.78rem;
  font-weight: 600;
  white-space: normal;
  line-height: 1.3;
}

.lp-table td.is-note {
  color: var(--lp-ink);
  font-size: 0.78rem;
  font-weight: 550;
  white-space: normal;
  line-height: 1.35;
  text-align: center;
  overflow: hidden;
}

.lp-table td.is-note .lp-table__val {
  text-align: left;
  display: inline-block;
  max-width: 100%;
}

.lp-table__addon-price {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.74rem;
  font-weight: 700;
}

.lp-promo {
  margin-top: 1.75rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: center;
  padding: 1.75rem 1.5rem;
  border-radius: 1rem;
  background: #031b3c;
  color: #fff;
  border: 1px solid #0a2b55;
  box-shadow: 0 12px 32px rgba(3, 27, 60, 0.22);
}

.lp-promo--contact {
  margin-top: 1rem;
  background: #062447;
  border-color: #0d3a6b;
}

.lp-promo__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0 0 0.65rem;
  color: #fdcf37;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  font-weight: 700;
}

.lp-promo__title {
  margin: 0 0 0.65rem;
  font-family: var(--lp-font-display);
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #fff;
}

.lp-promo__lead {
  margin: 0 0 1rem;
  max-width: 40rem;
  font-size: 1.02rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
}

.lp-promo__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.55rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
}

.lp-promo__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.lp-promo__list li::before {
  content: "✓";
  flex: 0 0 auto;
  color: #fdcf37;
  font-weight: 700;
  line-height: 1.35;
}

.lp-promo__aside {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.lp-promo__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 3.1rem;
  padding: 0.85rem 1.5rem;
  border-radius: 0.65rem;
  background: #ff007f;
  color: #fff;
  font-family: var(--lp-font);
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 4px 14px rgba(255, 0, 127, 0.28);
  transition: filter 0.18s ease;
}

.lp-promo__cta:hover {
  filter: brightness(1.1);
}

.lp-promo__hint {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.7);
}

@media (min-width: 900px) {
  .lp-promo {
    grid-template-columns: minmax(0, 1.7fr) minmax(12rem, 0.9fr);
    gap: 2rem;
    padding: 2rem 2.25rem;
  }

  .lp-promo__list {
    grid-template-columns: 1fr 1fr;
  }

  .lp-promo__aside {
    align-items: stretch;
  }

  .lp-promo__hint {
    text-align: right;
  }
}

.lp-footer {
  padding: 2.5rem 1.5rem 3rem;
  background: #fff;
  border-top: 1px solid var(--lp-line);
  color: var(--lp-muted);
}

.lp-footer__inner {
  max-width: 72rem;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  align-items: center;
  justify-content: space-between;
}

.lp-footer__brand {
  margin: 0;
  font-family: var(--lp-font-display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--lp-ink);
}

.lp-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.25rem;
}

.lp-footer__nav a {
  color: var(--lp-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
}

.lp-footer__nav a:hover {
  color: var(--lp-accent-deep);
}

@media (max-width: 900px) {
  .lp-plans {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .lp-top {
    padding: 0.75rem 1rem;
  }

  .lp-top__logo {
    height: 1.9rem;
  }

  .lp-top__actions .lp-btn--ghost {
    display: none;
  }

  .lp-top__actions .lp-btn--green {
    display: none;
  }

  .lp-hero {
    min-height: auto;
    padding: 2.5rem 1rem 3rem;
  }

  .lp-table-wrap {
    overflow: visible;
  }

  .lp-table {
    table-layout: auto;
    min-width: 0;
    font-size: 0.88rem;
  }

  .lp-table thead {
    display: none;
  }

  .lp-table,
  .lp-table tbody,
  .lp-table tr,
  .lp-table th,
  .lp-table td {
    display: block;
    width: 100% !important;
  }

  .lp-table tbody tr {
    padding: 0.85rem 0.9rem;
    border-bottom: 1px solid var(--lp-line);
  }

  .lp-table tbody tr:last-child {
    border-bottom: 0;
  }

  .lp-table tbody th {
    padding: 0 0 0.55rem;
    border-bottom: 0;
    font-weight: 600;
  }

  .lp-table tbody td {
    display: grid;
    grid-template-columns: 5.5rem minmax(0, 1fr);
    align-items: start;
    column-gap: 0.75rem;
    row-gap: 0;
    width: 100% !important;
    padding: 0.35rem 0;
    border-bottom: 0;
    text-align: left;
    white-space: normal;
  }

  .lp-table tbody td::before {
    content: attr(data-label);
    grid-column: 1;
    grid-row: 1;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--lp-muted);
    line-height: 1.35;
    padding-top: 0.1rem;
  }

  .lp-table tbody td > .lp-table__val {
    grid-column: 2;
    grid-row: 1;
    min-width: 0;
    text-align: left;
    display: block;
  }

  .lp-table tbody td.is-note,
  .lp-table tbody td.is-addon,
  .lp-table tbody td.is-yes,
  .lp-table tbody td.is-no {
    text-align: left;
  }

  .lp-table tbody td.is-note .lp-table__val {
    display: block;
    max-width: none;
    text-align: left;
  }

  .lp-table__addon-price {
    margin-top: 0.15rem;
  }
}

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

@media (prefers-reduced-motion: reduce) {
  .lp-hero__inner,
  .lp-hero__mark,
  .lp-hero__mark,
  .lp-hero__title,
  .lp-hero__lead,
  .lp-hero__cta {
    animation: none !important;
  }
}

/* About us */
.lp-about-hero {
  padding: 3.5rem 1.5rem 2.75rem;
  background:
    radial-gradient(ellipse 70% 80% at 15% 20%, rgba(255, 0, 127, 0.12), transparent 55%),
    radial-gradient(ellipse 50% 60% at 90% 10%, rgba(3, 27, 60, 0.08), transparent 50%),
    linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  border-bottom: 1px solid var(--lp-line);
}

.lp-about-hero__inner {
  max-width: 46rem;
  margin: 0 auto;
}

.lp-about-hero__badge {
  margin: 0 0 0.85rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lp-accent-deep);
}

.lp-about-hero__title {
  margin: 0 0 1rem;
  font-family: var(--lp-font-display);
  font-size: clamp(1.75rem, 4vw, 2.55rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--lp-navy);
}

.lp-about-hero__lead {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.55;
  color: var(--lp-muted);
}

.lp-about-who {
  max-width: 46rem;
}

.lp-about-who__p {
  margin: 0 0 1rem;
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--lp-text);
}

.lp-about-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.lp-about-stat {
  padding: 1.15rem 1.1rem;
  background: var(--lp-surface);
  border: 1px solid var(--lp-line);
  border-radius: 12px;
}

.lp-about-stat__value {
  margin: 0 0 0.35rem;
  font-family: var(--lp-font-display);
  font-size: 1.65rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--lp-navy);
  line-height: 1.2;
}

.lp-about-stat__value--text {
  font-size: 1.05rem;
  margin: 0;
}

.lp-about-stat__label {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.4;
  color: var(--lp-muted);
}

.lp-about-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
  margin-top: 1.75rem;
}

.lp-about-card {
  padding: 1.35rem 1.25rem;
  background: #fff;
  border: 1px solid var(--lp-line);
  border-radius: 12px;
}

.lp-about-card__title {
  margin: 0 0 0.55rem;
  font-family: var(--lp-font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--lp-navy);
  letter-spacing: -0.02em;
}

.lp-about-card__body {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--lp-muted);
}

.lp-about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.lp-section--soft {
  background: var(--lp-surface);
  border-top: 1px solid var(--lp-line);
}

@media (max-width: 800px) {
  .lp-about-stats,
  .lp-about-cards {
    grid-template-columns: 1fr;
  }
}

