:root {
  --ux-ink: #f2eef2;
  --ux-ink-soft: rgba(235, 230, 241, 0.82);
  --ux-ink-muted: rgba(218, 212, 229, 0.64);
  --ux-accent: #8fb4ff;
  --ux-accent-warm: #f2a66a;
  --sp-ink: #f2eef2;
  --sp-ink-soft: rgba(235, 230, 241, 0.82);
  --sp-accent: #8fb4ff;
  --ux-bg: #100d21;
  --ux-panel: #18132b;
  --ux-panel-soft: #211b38;
  --ux-border: rgba(255, 255, 255, 0.12);
}

@font-face {
  font-family: "The Seasons Bold";
  src: url("https://db.onlinewebfonts.com/t/f7d34c9e4c3102c89048d775c27a78f3.eot");
  src:
    url("https://db.onlinewebfonts.com/t/f7d34c9e4c3102c89048d775c27a78f3.eot?#iefix")
      format("embedded-opentype"),
    url("https://db.onlinewebfonts.com/t/f7d34c9e4c3102c89048d775c27a78f3.woff2")
      format("woff2"),
    url("https://db.onlinewebfonts.com/t/f7d34c9e4c3102c89048d775c27a78f3.woff")
      format("woff"),
    url("https://db.onlinewebfonts.com/t/f7d34c9e4c3102c89048d775c27a78f3.ttf")
      format("truetype"),
    url("https://db.onlinewebfonts.com/t/f7d34c9e4c3102c89048d775c27a78f3.svg#The Seasons Bold")
      format("svg");
  font-weight: 700;
  font-style: normal;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ux-ink);
  background:
    radial-gradient(
      circle at 10% 8%,
      rgba(139, 180, 255, 0.18),
      transparent 40%
    ),
    radial-gradient(
      circle at 90% 10%,
      rgba(243, 166, 106, 0.14),
      transparent 44%
    ),
    var(--ux-bg);
}

.ux-page {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 24px 34px;
}

.ux-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid var(--ux-border);
  border-radius: 18px;
  padding: 14px 18px;
  background: rgba(23, 19, 40, 0.72);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 12px;
  z-index: 20;
}

.ux-brand {
  color: var(--ux-ink);
  text-decoration: none;
  font-family: "The Seasons Bold", serif;
  font-size: 28px;
  letter-spacing: -0.01em;
}

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

.ux-nav a {
  color: var(--ux-ink-soft);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

.ux-nav a:hover {
  color: var(--ux-ink);
}

.ux-top-cta,
.ux-primary-btn {
  border: 1px solid rgba(143, 180, 255, 0.6);
  color: #f8fbff;
  text-decoration: none;
  background:
    radial-gradient(
      120% 120% at 10% 5%,
      rgba(143, 180, 255, 0.38),
      rgba(35, 31, 60, 0.7)
    ),
    rgba(22, 20, 39, 0.75);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "The Seasons Bold", serif;
  letter-spacing: 0.01em;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.ux-top-cta {
  min-height: 40px;
  padding: 0 18px;
  font-size: 15px;
}

.ux-primary-btn {
  min-height: 48px;
  padding: 0 22px;
  font-size: 17px;
}

.ux-top-cta:hover,
.ux-primary-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(143, 180, 255, 0.24);
}

.ux-kicker {
  margin: 0;
  color: rgba(143, 180, 255, 0.95);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-size: 11px;
}

.ux-hero {
  padding: 56px 48px;
  position: relative;
  overflow: hidden;
}

.ux-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(130deg, rgba(143, 180, 255, 0.14), transparent 42%),
    linear-gradient(320deg, rgba(242, 166, 106, 0.12), transparent 44%);
  pointer-events: none;
}

.ux-hero h1 {
  margin: 16px 0 0;
  max-width: 14ch;
  font-family: "The Seasons Bold", serif;
  font-size: clamp(42px, 6.6vw, 70px);
  line-height: 0.95;
  letter-spacing: -0.018em;
  position: relative;
}

.ux-hero-sub {
  margin: 22px 0 0;
  max-width: 60ch;
  color: var(--ux-ink-soft);
  line-height: 1.6;
  font-size: 18px;
  position: relative;
}

.ux-hero .ux-primary-btn {
  margin-top: 28px;
  position: relative;
}

.ux-intro {
  padding: 42px 38px;
}

.ux-intro h2 {
  margin: 0;
  font-family: "The Seasons Bold", serif;
  font-size: 42px;
  line-height: 0.98;
  max-width: 15ch;
}

.ux-intro-lead {
  margin: 14px 0 0;
  color: rgba(143, 180, 255, 0.95);
  font-size: 30px;
  font-family: "The Seasons Bold", serif;
}

.ux-questions {
  padding: 38px;
  background:
    linear-gradient(145deg, rgba(143, 180, 255, 0.12), rgba(25, 20, 41, 0.92)),
    rgba(19, 16, 33, 0.88);
}

.ux-questions h2 {
  margin: 0;
  font-family: "The Seasons Bold", serif;
  font-size: 38px;
  line-height: 0.98;
  letter-spacing: -0.01em;
}

.ux-questions ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.ux-questions li {
  margin: 0;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(25, 20, 42, 0.82);
  color: var(--ux-ink-soft);
}

.ux-define-grid {
  margin-top: 22px;
}

.ux-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: var(--ux-panel);
  padding: 20px;
}

.ux-card h3 {
  margin: 0;
  font-family: "The Seasons Bold", serif;
  font-size: 26px;
  line-height: 1;
}

.ux-card ul {
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--ux-ink-soft);
  line-height: 1.55;
}

.ux-card li + li {
  margin-top: 7px;
}

.ux-signs-list {
  margin: 0;
  padding: 18px 20px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--ux-panel-soft);
  list-style: none;
  display: grid;
  gap: 11px;
}

.ux-signs-list li {
  color: var(--ux-ink-soft);
  line-height: 1.5;
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 10px;
  align-items: start;
}

.ux-signs-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 7px;
  border-radius: 50%;
  background: rgba(143, 180, 255, 0.95);
  box-shadow: 0 0 16px rgba(143, 180, 255, 0.5);
}

.ux-process-grid {
  margin-top: 22px;
}

.ux-step {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: var(--ux-panel);
  padding: 20px;
}

.ux-step-num {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.22em;
  color: rgba(143, 180, 255, 0.95);
}

.ux-step h3 {
  margin: 10px 0 0;
  font-family: "The Seasons Bold", serif;
  font-size: 28px;
  line-height: 1;
}

.ux-step p {
  margin: 12px 0 0;
  color: var(--ux-ink-soft);
  line-height: 1.6;
  font-size: 15px;
}

.ux-deliverables-grid {
  margin-top: 18px;
}

.ux-deliverables-grid p {
  margin: 0;
  padding: 14px 16px;
  border-radius: 12px;
  background: var(--ux-panel);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--ux-ink-soft);
}

.ux-final-cta {
  text-align: center;
  padding-top: 50px;
  padding-bottom: 52px;
  background:
    linear-gradient(150deg, rgba(143, 180, 255, 0.14), rgba(22, 19, 39, 0.92)),
    rgba(18, 15, 32, 0.88);
}

.ux-final-cta p {
  margin: 18px auto 0;
  max-width: 56ch;
  color: var(--ux-ink-soft);
  line-height: 1.6;
}

.ux-final-cta .ux-primary-btn {
  margin-top: 24px;
}

@media (max-width: 720px) {
  .ux-hero,
  .ux-intro,
  .ux-questions,
  .ux-define,
  .ux-process,
  .ux-deliverables,
  .ux-why,
  .ux-final-cta,
  .ux-signs {
    padding: 26px 20px;
  }

  .ux-intro h2,
  .ux-questions h2,
  .ux-define h2,
  .ux-process h2,
  .ux-deliverables h2,
  .ux-why h2,
  .ux-final-cta h2,
  .ux-signs h2 {
    font-size: 33px;
  }

  .ux-define-grid,
  .ux-questions ul,
  .ux-deliverables-grid,
  .ux-process-grid {
    grid-template-columns: 1fr;
  }
}
