:root {
  --lp-bg: #f6f7ef;
  --lp-bg-soft: #f9f3ff;
  --lp-surface: #ffffff;
  --lp-surface-pink: #f7d8f2;
  --lp-surface-green: #dff6ba;
  --lp-surface-yellow: #f6f3be;
  --lp-text: #111111;
  --lp-text-muted: #4e4e4e;
  --lp-accent: #97f15b;
  --lp-accent-2: #cc86d8;
  --lp-accent-3: #9fd0ff;
  --lp-border: #d9d9d2;
  --lp-radius-sm: 14px;
  --lp-radius-md: 22px;
  --lp-radius-lg: 34px;
  --lp-shadow: 0 12px 30px rgba(17, 17, 17, 0.08);
  --lp-shadow-soft: 0 6px 16px rgba(17, 17, 17, 0.06);
  --lp-btn-radius: 999px;
}

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

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--lp-text);
  background:
    radial-gradient(circle at 8% 16%, #efdfff 0, #efdfff 14%, transparent 15%),
    radial-gradient(circle at 82% 22%, #dcf4c5 0, #dcf4c5 12%, transparent 13%),
    repeating-linear-gradient(
      -34deg,
      transparent 0,
      transparent 138px,
      rgba(200, 206, 229, 0.35) 138px,
      rgba(200, 206, 229, 0.35) 140px
    ),
    linear-gradient(180deg, #fcfcf8 0%, var(--lp-bg) 100%);
  line-height: 1.45;
}

.required-mark {
  color: #b91c1c;
  font-weight: 900;
}

.request-form {
  position: relative;
}

.form-loader {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(8px);
  z-index: 10;
}

.form-loader[hidden] {
  display: none !important;
}

.form-loader-spinner {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 3px solid rgba(17, 17, 17, 0.18);
  border-top-color: rgba(204, 134, 216, 1);
  animation: form-spin 0.9s linear infinite;
}

.form-loader-text {
  font-weight: 800;
  color: var(--lp-text-muted);
  font-size: 14px;
}

@keyframes form-spin {
  to { transform: rotate(360deg); }
}

.landing-header {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid #dfe5d2;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
}

.landing-header--try {
  justify-content: flex-start;
}

.landing-header-inner {
  width: min(1140px, calc(100% - 48px));
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
}

.landing-header--try .landing-header-inner {
  width: 100%;
  max-width: none;
}

.landing-header-brand {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.landing-back-link {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
  color: var(--lp-accent-2);
  padding: 8px 14px;
  border-radius: var(--lp-btn-radius);
  border: 1px solid #d8e2c8;
  background: #eef4dd;
  transition: transform 0.15s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.landing-back-link:hover {
  transform: translateY(-1px);
  background: #eef4dd;
  border-color: #d8e2c8;
}

.landing-back-icon {
  font-weight: 900;
}

.landing-header-spacer {
  justify-self: end;
}

.try-screen {
  width: 100%;
  min-height: calc(100vh - 72px);
  min-height: calc(100dvh - 72px);
}

.section-try {
  margin-top: 24px;
  position: relative;
  overflow: hidden;
}

.section-try::before,
.section-try::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  z-index: 0;
}

.section-try::before {
  width: 320px;
  height: 320px;
  right: -120px;
  top: -150px;
  border: 1px solid #cfd9f7;
}

.section-try::after {
  width: 230px;
  height: 230px;
  left: -90px;
  bottom: -120px;
  background: #eef1ff;
}

.section-try > * {
  position: relative;
  z-index: 1;
}

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

.try-card {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: var(--lp-radius-md);
  border: 1px solid #d6d5cf;
  padding: 24px;
  box-shadow: var(--lp-shadow-soft);
  background: linear-gradient(180deg, #ffffff 0%, #fbfbf6 100%);
  position: relative;
  overflow: hidden;
  transition: transform 0.15s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  min-height: 240px;
}

.try-card::after {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  right: -52px;
  bottom: -64px;
  border-radius: 50%;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(204, 134, 216, 0.12);
}

.try-card:nth-child(2)::after {
  background: rgba(159, 241, 91, 0.14);
}

.try-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--lp-shadow);
  border-color: rgba(204, 134, 216, 0.55);
}

.try-card:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(151, 241, 91, 0.35), var(--lp-shadow);
}

.try-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(17, 17, 17, 0.12);
  background: #fff;
  margin-bottom: 12px;
  font-size: 24px;
  font-weight: 800;
  position: relative;
  z-index: 1;
}

.try-card-title {
  margin: 0 0 10px;
  font-size: 26px;
  line-height: 1.05;
  position: relative;
  z-index: 1;
}

.try-card-text {
  margin: 0;
  color: #414141;
  font-size: 15px;
  max-width: 44ch;
  position: relative;
  z-index: 1;
}

.try-card-cta {
  display: inline-flex;
  margin-top: 18px;
  padding: 10px 16px;
  border-radius: var(--lp-btn-radius);
  background: var(--lp-accent);
  color: #111;
  font-weight: 800;
  border: 1px solid rgba(17, 17, 17, 0.06);
  position: relative;
  z-index: 1;
}

.hero,
.section,
.footer {
  width: min(1140px, calc(100% - 48px));
  margin: 0 auto;
}

.hero {
  position: relative;
  padding: 58px 44px 52px;
  margin-top: 24px;
  border-radius: var(--lp-radius-lg);
  background: linear-gradient(180deg, #ffffff 0%, #fbfbf6 100%);
  border: 1px solid #e2e2db;
  box-shadow: var(--lp-shadow-soft);
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  z-index: 0;
}

.hero::before {
  width: 320px;
  height: 320px;
  right: -110px;
  top: -140px;
  border: 1px solid #cfd9f7;
}

.hero::after {
  width: 230px;
  height: 230px;
  left: -80px;
  bottom: -105px;
  background: #eef1ff;
}

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

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: -0.02em;
}

.hero h1 {
  font-size: clamp(42px, 7vw, 76px);
  font-weight: 900;
  line-height: 0.95;
  max-width: 920px;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.hero h2 {
  font-size: clamp(16px, 2vw, 21px);
  font-weight: 500;
  max-width: 760px;
  color: var(--lp-text-muted);
  margin-bottom: 24px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}

.btn {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: var(--lp-btn-radius);
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  border: 1px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  background: var(--lp-accent);
  color: #111;
  box-shadow: var(--lp-shadow-soft);
}

.btn-primary:hover {
  background: #89e652;
}

.btn-secondary {
  background: #fff;
  border-color: var(--lp-border);
  color: var(--lp-text);
}

.btn-secondary:hover {
  background: #f5f5f0;
}

.hero-note {
  margin: 0;
  max-width: 740px;
  color: #5d5d5d;
  font-size: 14px;
}

.section {
  margin-top: 26px;
  border-radius: var(--lp-radius-lg);
  background: var(--lp-surface);
  padding: 36px;
  border: 1px solid #e2e2da;
  box-shadow: 0 8px 20px rgba(17, 17, 17, 0.05);
  position: relative;
  overflow: hidden;
}

.section h2 {
  font-size: clamp(36px, 5vw, 62px);
  line-height: 0.95;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-subtitle {
  margin: 0 0 22px;
  color: var(--lp-text-muted);
  max-width: 780px;
  font-size: 17px;
}

.cards,
.steps {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

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

.section-how .steps {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.card,
.step {
  border-radius: var(--lp-radius-md);
  border: 1px solid #d6d5cf;
  padding: 22px;
  min-height: 230px;
  box-shadow: var(--lp-shadow-soft);
  position: relative;
  overflow: hidden;
}

.card::after,
.step::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  right: -34px;
  bottom: -44px;
  border-radius: 50%;
  border: 1px solid rgba(17, 17, 17, 0.08);
}

.cards .card:nth-child(1),
.steps .step:nth-child(1) {
  grid-column: span 5;
  background: var(--lp-surface-pink);
}

.cards .card:nth-child(2),
.steps .step:nth-child(2) {
  grid-column: span 4;
  background: var(--lp-surface-green);
}

.cards .card:nth-child(3),
.steps .step:nth-child(3) {
  grid-column: span 3;
  background: #ece8ff;
}

.section-why .cards .card {
  grid-column: auto;
  min-height: 230px;
}

.section-how .steps .step {
  grid-column: auto;
  min-height: 230px;
}

.section-soon .cards .card {
  grid-column: auto;
  min-height: 230px;
}

.section-soon .cards .card:nth-child(1),
.section-soon .cards .card:nth-child(2),
.section-soon .cards .card:nth-child(3) {
  grid-column: auto;
  justify-self: stretch;
  width: 100%;
}

.card-icon,
.step-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(17, 17, 17, 0.12);
  background: #fff;
  margin-bottom: 12px;
  font-size: 24px;
  font-weight: 800;
}

.card h3,
.step h3 {
  font-size: 22px;
  line-height: 1.05;
  margin-bottom: 10px;
}

.card p,
.step p,
.section-soon p,
.form-disclaimer,
.footer-copy {
  margin: 0;
  color: #414141;
  font-size: 15px;
}

.section-how .btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 240px;
  min-height: 56px;
  padding: 14px 30px;
  font-size: 16px;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
}

.btn-product-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  min-width: 240px;
  min-height: 56px;
  padding: 14px 30px;
  font-size: 16px;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
}

.section-why .btn-product-cta {
  margin-left: auto !important;
  margin-right: auto !important;
}

.section-soon {
  background:
    radial-gradient(circle at 88% 70%, #f2daf7 0, #f2daf7 12%, transparent 13%),
    linear-gradient(180deg, #fff 0%, #f6f8ec 100%);
}

.section-form {
  background: linear-gradient(180deg, #fff 0%, #f3f7e4 100%);
}

.request-form {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.request-form textarea,
.request-form button {
  grid-column: 1 / -1;
}

.request-form .form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.request-form .form-label {
  font-size: 14px;
  font-weight: 600;
  color: #2a2a2a;
}

.request-form input,
.request-form textarea {
  width: 100%;
  border: 1px solid var(--lp-border);
  border-radius: 14px;
  background: #fff;
  padding: 14px 16px;
  font-size: 15px;
  color: #181818;
}

.request-form input:focus,
.request-form textarea:focus {
  outline: none;
  border-color: #9ddf76;
  box-shadow: 0 0 0 3px rgba(157, 223, 118, 0.22);
}

.form-success {
  padding: 14px 16px;
  border-radius: 14px;
  background: #e8f8d8;
  color: #24520f;
  border: 1px solid #cbeab2;
  font-weight: 600;
}

.form-disclaimer {
  margin-top: 12px;
  font-size: 13px;
}

.footer {
  margin: 26px auto 32px;
  padding: 22px 30px;
  border-radius: var(--lp-radius-lg);
  background: #fff;
  border: 1px solid #e2e2da;
  box-shadow: var(--lp-shadow-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-brand {
  font-size: 24px;
  font-weight: 900;
  margin: 0;
  text-transform: uppercase;
}

.footer a {
  color: #191919;
  font-weight: 600;
}

@media (max-width: 980px) {
  .landing-header-inner {
    width: min(1140px, calc(100% - 26px));
  }

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

  .hero,
  .section,
  .footer {
    width: min(1140px, calc(100% - 26px));
  }

  .hero {
    padding: 34px 22px;
  }

  .section {
    padding: 24px 18px;
  }

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

  .section-why .cards {
    grid-template-columns: 1fr;
  }

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

  .section-soon .cards {
    grid-template-columns: 1fr;
  }

  .cards .card,
  .steps .step {
    grid-column: auto;
    min-height: 0;
  }

  .cards .card:nth-child(1),
  .cards .card:nth-child(2),
  .cards .card:nth-child(3),
  .steps .step:nth-child(1),
  .steps .step:nth-child(2),
  .steps .step:nth-child(3) {
    grid-column: auto;
    width: 100%;
  }

  .section-soon .cards .card {
    min-height: 220px;
  }
}

@media (max-width: 620px) {
  .try-card {
    padding: 18px;
    min-height: 0;
  }

  .try-card::after {
    width: 120px;
    height: 120px;
    right: -44px;
    bottom: -54px;
  }

  .try-card-icon {
    width: 48px;
    height: 48px;
    font-size: 22px;
    margin-bottom: 10px;
  }

  .try-card-title {
    font-size: 22px;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .try-card-text {
    font-size: 14px;
    max-width: none;
  }

  .hero h1 {
    font-size: 42px;
  }

  .section h2 {
    font-size: 32px;
    line-height: 1.05;
    overflow-wrap: anywhere;
    word-break: break-word;
    hyphens: none;
  }

  .request-form {
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
  }

  .landing-back-text {
    display: none;
  }

  .landing-back-link {
    width: 40px;
    height: 40px;
    padding: 0;
    gap: 0;
    justify-content: center;
  }
}

@media (max-width: 380px) {
  .try-grid {
    gap: 12px;
  }

  .try-card {
    padding: 16px;
  }

  .try-card-title {
    font-size: 20px;
  }
}
