:root {
  --ink: #29232d;
  --muted: #6e6571;
  --pink: #ed5c99;
  --pink-dark: #d94783;
  --pink-soft: #ffe4ef;
  --purple: #8a67d6;
  --paper: #fffafc;
  --white: #ffffff;
  --line: #f0dce5;
  --shadow: 0 24px 70px rgba(105, 67, 88, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 7% 7%, rgba(244, 136, 181, 0.16), transparent 25rem),
    radial-gradient(circle at 93% 16%, rgba(138, 103, 214, 0.1), transparent 24rem),
    var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

.site-header,
main,
footer {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: var(--pink-soft);
  font-size: 20px;
}

nav {
  display: flex;
  gap: 28px;
}

nav a,
.footer-links a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

nav a:hover,
.footer-links a:hover,
.text-link:hover {
  color: var(--pink-dark);
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: 16px;
  background: var(--pink);
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(237, 92, 153, 0.24);
  transition: transform 160ms ease, background 160ms ease;
}

.button:hover {
  background: var(--pink-dark);
  transform: translateY(-2px);
}

.button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(138, 103, 214, 0.35);
  outline-offset: 3px;
}

.button-small {
  min-height: 42px;
  padding-inline: 18px;
  border-radius: 13px;
  font-size: 14px;
}

.hero {
  min-height: 610px;
  display: grid;
  grid-template-columns: 0.93fr 1.07fr;
  align-items: center;
  gap: 64px;
  padding: 60px 0 72px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--pink-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(44px, 5.4vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

h1 span {
  color: var(--pink);
}

.hero-lead {
  max-width: 580px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 18px;
}

.text-link {
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  text-underline-offset: 5px;
}

.microcopy {
  color: #8c838e;
  font-size: 12px;
}

.hero-art {
  position: relative;
}

.hero-art::before,
.hero-art::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  z-index: -1;
}

.hero-art::before {
  width: 180px;
  height: 180px;
  top: -48px;
  right: -30px;
  background: rgba(138, 103, 214, 0.16);
}

.hero-art::after {
  width: 140px;
  height: 140px;
  bottom: -38px;
  left: -34px;
  background: rgba(237, 92, 153, 0.18);
}

.hero-art img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid rgba(237, 92, 153, 0.16);
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.section {
  padding: 110px 0;
}

.section-heading {
  max-width: 680px;
  margin-bottom: 44px;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

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

.step-card,
.price-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
}

.step-card {
  min-height: 260px;
  padding: 28px;
}

.step-number {
  display: inline-block;
  margin-bottom: 48px;
  color: var(--pink);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.step-card h3 {
  margin-bottom: 10px;
  font-size: 22px;
  letter-spacing: -0.03em;
}

.step-card p,
.price-card p,
.support-section p {
  color: var(--muted);
}

.pro-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 72px;
  align-items: center;
}

.feature-list {
  display: grid;
  gap: 13px;
  margin: 30px 0 24px;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 30px;
}

.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--pink);
  font-weight: 800;
}

.availability {
  color: #8c838e;
  font-size: 13px;
}

.pricing {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.price-card {
  position: relative;
  min-height: 290px;
  padding: 30px;
}

.price-card-featured {
  border-color: rgba(237, 92, 153, 0.46);
  box-shadow: var(--shadow);
}

.price-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--pink-soft);
  color: var(--pink-dark);
  font-size: 11px;
  font-weight: 800;
}

.price-name {
  margin-bottom: 46px;
  color: var(--ink) !important;
  font-weight: 700;
}

.price {
  display: grid;
  margin-bottom: 20px;
}

.price strong {
  color: var(--ink);
  font-size: 42px;
  line-height: 1;
  letter-spacing: -0.05em;
}

.price span {
  margin-top: 8px;
  font-size: 13px;
}

.support-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  margin: 20px 0 100px;
  padding: 54px;
  border-radius: 30px;
  background: var(--ink);
  color: var(--white);
}

.support-section > div {
  max-width: 650px;
}

.support-section h2 {
  margin-bottom: 14px;
  font-size: clamp(32px, 3.5vw, 46px);
}

.support-section p:not(.eyebrow) {
  margin-bottom: 0;
  color: #cfc7d1;
}

.button-dark {
  flex: 0 0 auto;
  background: var(--white);
  color: var(--ink);
  box-shadow: none;
}

.button-dark:hover {
  background: var(--pink-soft);
}

footer {
  min-height: 130px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  border-top: 1px solid var(--line);
}

.footer-links {
  display: flex;
  gap: 24px;
}

footer > p {
  margin: 0;
  color: #9a909c;
  font-size: 12px;
  text-align: right;
}

.legal-main {
  max-width: 820px;
  padding: 80px 0 120px;
}

.legal-header {
  margin-bottom: 52px;
}

.legal-header h1 {
  margin-bottom: 16px;
  font-size: clamp(40px, 5vw, 62px);
}

.legal-updated {
  color: var(--muted);
  font-size: 14px;
}

.legal-content {
  padding: 48px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--white);
  box-shadow: 0 18px 60px rgba(105, 67, 88, 0.07);
}

.legal-content h2 {
  margin-top: 42px;
  margin-bottom: 14px;
  font-size: 25px;
  letter-spacing: -0.025em;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content h3 {
  margin-top: 26px;
  margin-bottom: 8px;
  font-size: 18px;
}

.legal-content p,
.legal-content li {
  color: #5f5662;
  font-size: 15px;
}

.legal-content ul,
.legal-content ol {
  padding-left: 22px;
}

.legal-note {
  padding: 18px 20px;
  border-radius: 16px;
  background: #f8f4ff;
  color: #5f526c !important;
}

@media (max-width: 900px) {
  nav {
    display: none;
  }

  .hero,
  .pro-section {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 42px;
    padding-top: 44px;
  }

  .hero-copy {
    max-width: 680px;
  }

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

  .step-card {
    min-height: 0;
  }

  .step-number {
    margin-bottom: 32px;
  }

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

  footer {
    grid-template-columns: 1fr;
    padding: 34px 0;
  }

  footer > p {
    text-align: left;
  }
}

@media (max-width: 620px) {
  .site-header,
  main,
  footer {
    width: min(100% - 28px, 1160px);
  }

  .site-header .button-small {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-bottom: 54px;
  }

  h1 {
    font-size: 44px;
  }

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

  .text-link {
    text-align: center;
  }

  .section {
    padding: 78px 0;
  }

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

  .support-section {
    margin-bottom: 70px;
    padding: 34px 26px;
  }

  .button-dark {
    width: 100%;
  }

  .footer-links {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .legal-main {
    padding-top: 54px;
  }

  .legal-content {
    padding: 28px 22px;
    border-radius: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button {
    transition: none;
  }
}
