:root {
  --blue: #5271ff;
  --ink: #050505;
  --muted: #616161;
  --soft: #f7f7f7;
  --line: #e7e7e7;
  --white: #ffffff;
  --shadow: 0 18px 32px rgba(0, 0, 0, 0.14);
  --content: min(1040px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

.site-header {
  display: flex;
  justify-content: center;
  padding: 26px 20px 10px;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 168px;
}

.brand img {
  width: 100%;
}

.section {
  width: var(--content);
  margin-inline: auto;
}

.hero {
  padding: 32px 0 70px;
  text-align: center;
}

.hero-inner {
  display: grid;
  width: 100%;
  justify-items: center;
}

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

h1 {
  width: 100%;
  max-width: 920px;
  font-size: clamp(48px, 7vw, 72px);
  line-height: 1.08;
  letter-spacing: 0;
  font-weight: 800;
}

.handwritten,
.button {
  font-family: "Shantell Sans", "Comic Sans MS", cursive;
  font-weight: 800;
}

.handwritten {
  margin-top: 28px;
  font-size: clamp(26px, 4vw, 38px);
  line-height: 1.2;
}

.hero-art {
  width: min(810px, 92vw);
  margin-top: 48px;
}

.hero-copy {
  width: 100%;
  max-width: 830px;
  margin-top: 52px;
  font-size: clamp(26px, 3.2vw, 34px);
  line-height: 1.45;
  font-weight: 600;
}

.button {
  display: inline-flex;
  min-height: 60px;
  align-items: center;
  justify-content: center;
  margin-top: 34px;
  padding: 14px 34px 16px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  font-size: 24px;
  line-height: 1;
  text-decoration: none;
  box-shadow: var(--shadow);
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 38px rgba(0, 0, 0, 0.18);
}

.button:focus-visible,
.faq-item button:focus-visible {
  outline: 3px solid rgba(82, 113, 255, 0.45);
  outline-offset: 4px;
}

.feature {
  padding: 42px 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  gap: clamp(36px, 7vw, 96px);
  align-items: center;
}

.feature-flip .feature-grid {
  grid-template-columns: minmax(0, 1fr) 330px;
}

.feature-flip .feature-art {
  order: 2;
}

.feature-art {
  display: flex;
  justify-content: center;
}

.feature-art img {
  width: min(300px, 72vw);
}

.feature-copy h2,
.section-heading h2 {
  font-size: clamp(38px, 5vw, 56px);
  line-height: 1.08;
  letter-spacing: 0;
  font-weight: 800;
}

.feature-copy p {
  margin-top: 20px;
  color: var(--muted);
  font-family: Manrope, Inter, sans-serif;
  font-weight: 600;
  font-size: 18px;
}

.feature-copy .lede {
  color: var(--ink);
  font-family: Inter, system-ui, sans-serif;
  font-size: 20px;
  line-height: 1.45;
  font-weight: 700;
}

.process,
.pricing,
.faq {
  padding: 78px 0;
}

.section-heading {
  margin-bottom: 34px;
}

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

.step,
.price-card,
.faq-item {
  border-radius: 8px;
  background: var(--soft);
}

.step {
  padding: 28px;
}

.step-number {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border-radius: 8px;
  background: var(--blue);
  color: var(--white);
  font-family: "Shantell Sans", cursive;
  font-size: 28px;
  font-weight: 800;
}

.step h3 {
  font-size: 22px;
  line-height: 1.25;
  font-weight: 800;
}

.step p {
  margin-top: 14px;
  color: var(--muted);
  font-family: Manrope, Inter, sans-serif;
  font-weight: 600;
}

.pricing {
  text-align: center;
}

.pricing .section-heading {
  text-align: left;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  text-align: left;
}

.price-card {
  display: grid;
  align-content: start;
  min-height: 390px;
  padding: 30px;
  border: 1px solid var(--line);
  background: var(--white);
}

.price-card.featured {
  border-color: rgba(82, 113, 255, 0.55);
  box-shadow: 0 20px 40px rgba(82, 113, 255, 0.12);
}

.price-card h3 {
  font-size: 20px;
  line-height: 1.2;
  font-weight: 800;
}

.price {
  margin-top: 26px;
  color: var(--muted);
  font-weight: 700;
}

.price span {
  color: var(--ink);
  font-size: 48px;
  line-height: 1;
  font-weight: 800;
}

.price-card ul {
  display: grid;
  gap: 14px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 30px;
  color: var(--muted);
  font-weight: 700;
}

.price-card li::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--ink);
}

.price-card li::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 6px;
  width: 9px;
  height: 5px;
  border-bottom: 2px solid var(--white);
  border-left: 2px solid var(--white);
  transform: rotate(-45deg);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  overflow: hidden;
}

.faq-item h3 {
  font-size: 18px;
}

.faq-item button {
  display: flex;
  width: 100%;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  border: 0;
  padding: 22px 26px;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.plus {
  position: relative;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  opacity: 0.35;
}

.plus::before,
.plus::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 3px;
  border-radius: 999px;
  background: var(--ink);
  transform: translate(-50%, -50%);
}

.plus::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 180ms ease;
}

.faq-item.is-open .plus::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 220ms ease;
}

.faq-answer p {
  min-height: 0;
  overflow: hidden;
  padding: 0 26px;
  color: var(--muted);
  font-family: Manrope, Inter, sans-serif;
  font-weight: 600;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-answer p {
  padding-bottom: 24px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: var(--content);
  margin: 0 auto;
  padding: 34px 0;
  color: #e6e6e6;
  background: var(--ink);
  box-shadow: 0 0 0 100vmax var(--ink);
  clip-path: inset(0 -100vmax);
  font-size: 14px;
  font-weight: 600;
}

.site-footer a {
  color: var(--white);
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .feature-grid,
  .feature-flip .feature-grid,
  .steps,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .feature-flip .feature-art {
    order: 0;
  }

  .feature,
  .process,
  .pricing,
  .faq {
    padding: 52px 0;
  }

  .pricing-grid {
    text-align: left;
  }

  .price-card {
    min-height: auto;
  }
}

@media (max-width: 560px) {
  :root {
    --content: min(calc(100vw - 28px), 1040px);
  }

  .site-header {
    padding-top: 18px;
  }

  .brand {
    width: 144px;
  }

  .hero {
    padding-top: 22px;
    padding-bottom: 42px;
  }

  h1 {
    font-size: 36px;
  }

  .handwritten {
    margin-top: 20px;
    font-size: 25px;
  }

  .hero-art {
    width: 100%;
    max-width: 520px;
    margin-top: 34px;
  }

  .hero-copy {
    margin-top: 34px;
    font-size: 21px;
  }

  .button {
    width: min(100%, 260px);
    min-height: 56px;
    font-size: 22px;
  }

  .feature-copy h2,
  .section-heading h2 {
    font-size: 36px;
  }

  .feature-copy p,
  .feature-copy .lede {
    font-size: 17px;
  }

  .step,
  .price-card {
    padding: 24px;
  }

  .site-footer {
    flex-direction: column;
  }
}
