:root {
  --ink: #0b141a;
  --paper: #f6f3ee;
  --muted: #51606a;
  --muted-2: #7a8a95;
  --line: rgba(11, 20, 26, 0.14);
  --accent: #00c08b;
  --accent-2: #ffb000;
  --danger: #b42318;
  --ok: #067647;
  --hero: #061117;
  --hero-2: #0b141a;
  --radius: 22px;
  --radius-sm: 14px;
  --shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
  --shadow-soft: 0 12px 30px rgba(0, 0, 0, 0.14);
  --font-h: "Heebo", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-b: "Assistant", system-ui, -apple-system, "Segoe UI", sans-serif;
}

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

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: var(--font-b);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.35;
}

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

a {
  color: inherit;
}

.wrap {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.skip {
  position: absolute;
  inset-inline-start: 12px;
  inset-block-start: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  background: #ffffff;
  color: #000;
  transform: translateY(-140%);
  transition: transform 200ms ease;
  z-index: 50;
}

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

.top {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(6, 17, 23, 0.62);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 14px;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 240px;
}

.brand__mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #061117;
  font-family: var(--font-h);
  font-weight: 900;
  letter-spacing: 0.03em;
  background: transparent;
  box-shadow: none;
}

.brand__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0;
}

.brand__mark--small {
  width: 38px;
  height: 38px;
  border-radius: 13px;
  box-shadow: none;
}

.brand__name {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 800;
  font-family: var(--font-h);
  font-size: 15px;
}

.brand__tag {
  color: rgba(255, 255, 255, 0.65);
  font-size: 12px;
  margin-top: 1px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav__link {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  padding: 9px 10px;
  border-radius: 12px;
  transition: background 160ms ease, color 160ms ease;
}

.nav__link:hover {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.9);
}

.nav__cta {
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
  padding: 10px 14px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(0, 192, 139, 0.95), rgba(0, 192, 139, 0.72));
  color: #041011;
  border: 1px solid rgba(0, 0, 0, 0.2);
  box-shadow: 0 12px 22px rgba(0, 192, 139, 0.18);
  transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
}

.nav__cta:hover {
  transform: translateY(-1px);
  filter: saturate(1.08);
  box-shadow: 0 18px 30px rgba(0, 192, 139, 0.22);
}

.nav__cta--big {
  font-size: 15px;
  padding: 12px 18px;
}

.hero {
  position: relative;
  padding: 48px 0 58px;
  color: rgba(255, 255, 255, 0.92);
  background:
    radial-gradient(1100px 640px at 12% -10%, rgba(0, 192, 139, 0.36), transparent 56%),
    radial-gradient(900px 520px at 92% 18%, rgba(255, 176, 0, 0.26), transparent 60%),
    linear-gradient(180deg, var(--hero), var(--hero-2));
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  background:
    radial-gradient(600px 240px at 12% 28%, rgba(255, 255, 255, 0.08), transparent 60%),
    repeating-linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.12),
      rgba(255, 255, 255, 0.12) 1px,
      transparent 1px,
      transparent 12px
    );
  mix-blend-mode: overlay;
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 34px;
  align-items: start;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}

.badge {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(0, 192, 139, 0.16);
  border: 1px solid rgba(0, 192, 139, 0.35);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
  font-size: 13px;
}

.badge--ghost {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.78);
  font-weight: 600;
}

.hero__h1 {
  font-family: var(--font-h);
  font-weight: 900;
  font-size: clamp(32px, 3.2vw, 44px);
  margin: 0 0 14px;
  letter-spacing: -0.02em;
}

.accent {
  color: rgba(0, 192, 139, 1);
  text-shadow: 0 0 0.8px rgba(0, 0, 0, 0.3);
}

.hero__sub {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16.5px;
  line-height: 1.55;
}

.points {
  display: grid;
  gap: 12px;
  margin: 20px 0 0;
}

.point {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 14px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.point__icon {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: rgba(0, 192, 139, 0.95);
  background: rgba(0, 192, 139, 0.12);
  border: 1px solid rgba(0, 192, 139, 0.24);
  flex: 0 0 auto;
}

.point__title {
  font-weight: 800;
  font-family: var(--font-h);
  letter-spacing: -0.01em;
}

.point__desc {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  line-height: 1.5;
}

.hero__mini {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 14px;
  align-items: stretch;
}

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

.mini-card__kicker {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 700;
}

.mini-card__line {
  margin-top: 10px;
  font-weight: 800;
  font-family: var(--font-h);
  font-size: 16px;
}

.mini-card__value {
  margin-top: 8px;
  font-weight: 900;
  font-family: var(--font-h);
  font-size: 34px;
  letter-spacing: -0.03em;
  color: rgba(0, 192, 139, 0.95);
}

.mini-card__note {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  line-height: 1.45;
}

.chat-mock {
  border-radius: var(--radius);
  background: rgba(8, 18, 22, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}

.chat-mock__top {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
}

.chat-mock__dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
}

.chat-mock__title {
  margin-inline-start: auto;
  font-weight: 800;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}

.chat-mock__body {
  padding: 14px 14px 16px;
  display: grid;
  gap: 10px;
}

.bubble {
  max-width: 92%;
  padding: 10px 12px;
  border-radius: 16px;
  font-size: 13px;
  line-height: 1.45;
}

.bubble--ai {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.86);
  justify-self: start;
}

.bubble--me {
  background: rgba(0, 192, 139, 0.16);
  border: 1px solid rgba(0, 192, 139, 0.3);
  color: rgba(255, 255, 255, 0.92);
  justify-self: end;
}

.bubble--pill {
  border-radius: 999px;
  padding-inline: 12px;
  background: rgba(255, 176, 0, 0.12);
  border-color: rgba(255, 176, 0, 0.26);
  color: rgba(255, 255, 255, 0.85);
  font-weight: 700;
  font-size: 12px;
}

.lead {
  position: sticky;
  top: 86px;
}

.lead__card {
  border-radius: 26px;
  background: rgba(246, 243, 238, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow);
  padding: 18px 18px;
  color: var(--ink);
}

.lead__head {
  margin-bottom: 14px;
}

.lead__title {
  margin: 0;
  font-family: var(--font-h);
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -0.02em;
}

.lead__subtitle {
  margin: 8px 0 0;
  color: rgba(11, 20, 26, 0.72);
  line-height: 1.5;
  font-size: 14px;
}

.form {
  display: grid;
  gap: 12px;
}

.form__error {
  border-radius: 16px;
  border: 1px solid rgba(180, 35, 24, 0.22);
  background: rgba(180, 35, 24, 0.06);
  padding: 10px 12px;
  color: var(--danger);
  font-weight: 800;
  font-size: 13px;
  line-height: 1.45;
}

.field label {
  display: block;
  font-weight: 800;
  font-family: var(--font-h);
  font-size: 13px;
  margin-bottom: 6px;
  color: rgba(11, 20, 26, 0.9);
}

.field input,
.field select {
  width: 100%;
  padding: 11px 12px;
  border-radius: 14px;
  border: 1px solid rgba(11, 20, 26, 0.18);
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink);
  font-size: 15px;
  outline: none;
  transition: box-shadow 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.field input:focus,
.field select:focus {
  border-color: rgba(0, 192, 139, 0.65);
  box-shadow: 0 0 0 4px rgba(0, 192, 139, 0.14);
}

.field input[aria-invalid="true"],
.field select[aria-invalid="true"] {
  border-color: rgba(180, 35, 24, 0.55);
  box-shadow: 0 0 0 4px rgba(180, 35, 24, 0.14);
}

.field__error {
  min-height: 16px;
  margin-top: 6px;
  color: var(--danger);
  font-size: 12px;
  font-weight: 700;
}

.check {
  border-radius: 16px;
  border: 1px solid rgba(11, 20, 26, 0.12);
  background: rgba(255, 255, 255, 0.72);
  padding: 10px 12px;
}

.check.is-invalid {
  border-color: rgba(180, 35, 24, 0.35);
  box-shadow: 0 0 0 4px rgba(180, 35, 24, 0.12);
}

.check__row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  line-height: 1.45;
  color: rgba(11, 20, 26, 0.82);
  font-weight: 600;
}

.check input {
  margin-top: 2px;
}

.btn {
  border: 0;
  border-radius: 18px;
  padding: 14px 14px;
  background: linear-gradient(135deg, rgba(0, 192, 139, 0.98), rgba(255, 176, 0, 0.92));
  color: #071016;
  font-family: var(--font-h);
  font-weight: 900;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 18px 28px rgba(0, 0, 0, 0.14);
  transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
  text-align: center;
}

.btn:hover {
  transform: translateY(-1px);
  filter: saturate(1.06);
  box-shadow: 0 22px 34px rgba(0, 0, 0, 0.18);
}

.btn.is-loading {
  opacity: 0.8;
  cursor: progress;
}

.btn:disabled {
  transform: none;
}

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

.btn__sub {
  display: block;
  margin-top: 2px;
  font-family: var(--font-b);
  font-weight: 700;
  font-size: 12px;
  color: rgba(7, 16, 22, 0.72);
}

.btn--ghost {
  background: transparent;
  border: 1px solid rgba(11, 20, 26, 0.22);
  color: rgba(11, 20, 26, 0.92);
  box-shadow: none;
}

.btn--ghost:hover {
  box-shadow: 0 14px 22px rgba(0, 0, 0, 0.08);
}

.fine {
  margin: 2px 0 0;
  color: rgba(11, 20, 26, 0.66);
  font-size: 12px;
  line-height: 1.5;
}

.success {
  border-radius: 22px;
  border: 1px solid rgba(6, 118, 71, 0.22);
  background: rgba(6, 118, 71, 0.07);
  padding: 16px 14px;
}

.success__title {
  font-family: var(--font-h);
  font-weight: 900;
  font-size: 18px;
  color: rgba(6, 118, 71, 0.92);
}

.success__text {
  margin-top: 8px;
  color: rgba(11, 20, 26, 0.78);
  line-height: 1.55;
  font-size: 14px;
}

.section {
  padding: 64px 0;
}

.section--dark {
  background: linear-gradient(180deg, #081216, #071016);
  color: rgba(255, 255, 255, 0.92);
}

.h2 {
  margin: 0 0 18px;
  font-family: var(--font-h);
  font-weight: 900;
  letter-spacing: -0.02em;
  font-size: clamp(24px, 2.4vw, 34px);
}

.h2--light {
  color: rgba(255, 255, 255, 0.95);
}

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

.step {
  border-radius: var(--radius);
  padding: 16px 16px;
  background: #ffffff;
  border: 1px solid rgba(11, 20, 26, 0.1);
  box-shadow: var(--shadow-soft);
}

.step__num {
  width: 34px;
  height: 34px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-family: var(--font-h);
  font-weight: 900;
  color: rgba(7, 16, 22, 0.92);
  background: rgba(0, 192, 139, 0.18);
  border: 1px solid rgba(0, 192, 139, 0.28);
}

.step__title {
  margin-top: 12px;
  font-family: var(--font-h);
  font-weight: 900;
  letter-spacing: -0.01em;
}

.step__desc {
  margin-top: 6px;
  color: rgba(11, 20, 26, 0.72);
  line-height: 1.55;
}

.faq {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.qa {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.qa summary {
  cursor: pointer;
  padding: 14px 14px;
  font-family: var(--font-h);
  font-weight: 900;
  letter-spacing: -0.01em;
  list-style: none;
  outline: none;
}

.qa summary::-webkit-details-marker {
  display: none;
}

.qa summary::after {
  content: "+";
  float: left;
  color: rgba(0, 192, 139, 0.9);
}

details[open] summary::after {
  content: "–";
}

.qa__a {
  padding: 0 14px 14px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
}

.bottom-cta {
  margin-top: 18px;
  border-radius: var(--radius);
  padding: 16px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 192, 139, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.bottom-cta__text {
  font-family: var(--font-h);
  font-weight: 900;
  letter-spacing: -0.01em;
}

.footer {
  background: #050f14;
  color: rgba(255, 255, 255, 0.72);
  padding: 26px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

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

.footer__title {
  font-family: var(--font-h);
  font-weight: 900;
  color: rgba(255, 255, 255, 0.9);
}

.footer__muted {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  line-height: 1.5;
}

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

.footer__links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
}

.footer__links a:hover {
  color: rgba(255, 255, 255, 0.92);
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

html.js .reveal {
  opacity: 0;
  transform: translateY(14px);
  filter: blur(2px);
  transition: opacity 700ms ease, transform 700ms ease, filter 700ms ease;
  animation: revealFallback 1ms 2200ms forwards;
}

html.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
  animation: none;
}

@keyframes revealFallback {
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

.points .point.reveal:nth-child(2) {
  transition-delay: 80ms;
}

.points .point.reveal:nth-child(3) {
  transition-delay: 160ms;
}

.hero__mini .reveal:nth-child(2) {
  transition-delay: 120ms;
}

.steps .step.reveal:nth-child(2) {
  transition-delay: 80ms;
}

.steps .step.reveal:nth-child(3) {
  transition-delay: 160ms;
}

.faq .qa.reveal:nth-child(2) {
  transition-delay: 60ms;
}

.faq .qa.reveal:nth-child(3) {
  transition-delay: 120ms;
}

.faq .qa.reveal:nth-child(4) {
  transition-delay: 180ms;
}

@media (max-width: 980px) {
  .nav__link {
    display: none;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .lead {
    position: static;
  }

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

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

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

  .bottom-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html.js .reveal {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
    animation: none;
  }

  .btn,
  .nav__cta,
  .nav__link,
  .field input,
  .field select {
    transition: none;
  }
}
