@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Manrope:wght@600;700;800&display=swap");

:root {
  --ink: #171323;
  --muted: #6d6878;
  --line: #e9e6ef;
  --surface: #f8f7f5;
  --lavender: #fff2f0;
  --purple: #e5484d;
  --purple-dark: #b8323b;
  --purple-soft: #ff7478;
  --coral: #e5484d;
  --white: #ffffff;
  --radius: 24px;
  --radius-small: 16px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body,
button,
a {
  font-family: "Inter", Arial, sans-serif;
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

h1,
h2,
h3 {
  color: var(--ink);
  font-family: "Manrope", "Inter", sans-serif;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(2.75rem, 4.4vw, 4.25rem);
  font-weight: 800;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.15rem, 4vw, 3.5rem);
  font-weight: 800;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.3rem;
  font-weight: 700;
}

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

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(233, 230, 239, 0.85);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  display: flex;
  min-height: 78px;
  align-items: center;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Manrope", "Inter", sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand img {
  width: 40px;
  height: 40px;
  border-radius: 11px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
  color: #4d4857;
  font-size: 0.94rem;
  font-weight: 600;
}

.nav-links a,
.footer-links a {
  transition: color 160ms ease;
}

.nav-links a:hover,
.footer-links a:hover {
  color: var(--purple);
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid var(--purple);
  border-radius: 999px;
  background: var(--purple);
  color: var(--white);
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1;
  transition:
    transform 160ms ease,
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  border-color: var(--purple-dark);
  background: var(--purple-dark);
  color: var(--white);
}

.button:focus-visible {
  outline: 3px solid rgba(229, 72, 77, 0.28);
  outline-offset: 3px;
}

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

.button-small {
  min-height: 44px;
  padding-inline: 20px;
  font-size: 0.9rem;
}

.button-secondary {
  border-color: var(--line);
  background: var(--white);
  color: var(--ink);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: #c9c4cf;
  background: var(--surface);
  color: var(--ink);
}

.button-light {
  border-color: var(--white);
  background: var(--white);
  color: var(--purple-dark);
}

.button-light:hover,
.button-light:focus-visible {
  border-color: var(--purple);
  background: var(--purple);
  color: var(--white);
}

.button-full {
  width: 100%;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
}

.menu-button span {
  width: 19px;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
}

.hero {
  overflow: hidden;
  padding: 88px 0 96px;
  background: var(--white);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.93fr) minmax(480px, 1.07fr);
  align-items: center;
  gap: clamp(50px, 7vw, 92px);
}

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

.eyebrow {
  margin-bottom: 17px;
  color: var(--purple);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.hero-lead,
.section-heading > p:not(.eyebrow),
.split-copy > p,
.plan-description {
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-lead {
  max-width: 610px;
  margin-bottom: 31px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 28px;
  color: #514b5c;
  font-size: 0.85rem;
  font-weight: 600;
}

.hero-facts span::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--coral);
  vertical-align: 1px;
}

.media-placeholder {
  position: relative;
  display: flex;
  overflow: hidden;
  min-height: 470px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 54px;
  border: 1px dashed rgba(229, 72, 77, 0.42);
  border-radius: 30px;
  background: #fbfaf9;
  text-align: center;
}

.media-placeholder::before {
  display: none;
}

.placeholder-window {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  gap: 7px;
  padding: 17px 20px;
  border-bottom: 1px solid rgba(229, 72, 77, 0.16);
  background: rgba(255, 255, 255, 0.75);
}

.placeholder-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(229, 72, 77, 0.25);
}

.placeholder-icon {
  display: grid;
  width: 94px;
  height: 94px;
  margin-bottom: 28px;
  place-items: center;
  border-radius: 26px;
  background: var(--purple);
  color: var(--white);
  font-family: "Manrope", sans-serif;
  font-size: 2rem;
  font-weight: 800;
}

.media-placeholder p {
  margin-bottom: 9px;
  font-family: "Manrope", sans-serif;
  font-size: 1.08rem;
  font-weight: 800;
}

.media-placeholder > span {
  max-width: 430px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.section {
  padding: 108px 0;
}

.section-heading {
  max-width: 670px;
  margin-bottom: 52px;
}

.section-heading.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading.compact {
  margin-bottom: 44px;
}

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

.step-card {
  min-height: 265px;
  padding: 29px;
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  background: var(--white);
  transition:
    transform 180ms ease,
    border-color 180ms ease;
}

.step-card:hover {
  transform: translateY(-4px);
  border-color: #e7b9bb;
}

.step-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.step-card code,
.code-pill {
  padding: 3px 7px;
  border-radius: 7px;
  background: var(--lavender);
  color: var(--purple-dark);
  font-family: Consolas, monospace;
  font-size: 0.88em;
  font-weight: 700;
}

.step-number {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 38px;
  place-items: center;
  border-radius: 50%;
  background: var(--lavender);
  color: var(--purple);
  font-family: "Manrope", sans-serif;
  font-weight: 800;
}

.print-section {
  background: var(--lavender);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  align-items: center;
  gap: clamp(52px, 8vw, 104px);
}

.print-media {
  min-height: 500px;
  border-style: solid;
}

.sheet-preview {
  display: grid;
  width: min(100%, 390px);
  margin-bottom: 26px;
  padding: 24px;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  border-radius: 10px;
  background: var(--white);
}

.sheet-preview span {
  display: grid;
  aspect-ratio: 1.55;
  place-items: center;
  border: 1px dashed #b8a3de;
  border-radius: 7px;
  background: #faf8ff;
  color: var(--purple);
  font-family: "Manrope", sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
}

.split-copy h2 {
  max-width: 520px;
}

.feature-list,
.plan-features,
.privacy-points {
  margin: 28px 0 30px;
  padding: 0;
  list-style: none;
}

.feature-list li,
.plan-features li {
  position: relative;
  margin: 12px 0;
  padding-left: 29px;
}

.feature-list li::before,
.plan-features li::before {
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--coral);
  content: "";
}

.text-link {
  color: var(--purple);
  font-weight: 800;
}

.text-link:hover {
  color: var(--purple-dark);
}

.pricing-grid {
  display: grid;
  max-width: 900px;
  margin-inline: auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.pricing-card {
  position: relative;
  padding: 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.pricing-card-pro {
  border-color: var(--ink);
  background: var(--ink);
  color: rgba(255, 255, 255, 0.8);
}

.pricing-card-pro h3,
.pricing-card-pro .plan-name,
.pricing-card-pro .price {
  color: var(--white);
}

.plan-badge {
  position: absolute;
  top: 22px;
  right: 22px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.11em;
}

.plan-name {
  margin-bottom: 16px;
  font-family: "Manrope", sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
}

.price {
  margin-bottom: 15px;
  font-family: "Manrope", sans-serif;
  font-size: 3.2rem;
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 1;
}

.price small {
  font-size: 0.94rem;
  font-weight: 600;
  letter-spacing: 0;
}

.plan-description {
  min-height: 58px;
  margin-bottom: 22px;
  font-size: 0.94rem;
}

.pricing-card-pro .plan-description {
  color: rgba(255, 255, 255, 0.72);
}

.plan-features {
  min-height: 178px;
}

.plan-features li {
  margin-block: 13px;
  font-size: 0.92rem;
}

.pricing-card-pro .plan-features li::before {
  background: #ff8b8d;
}

.testimonials-section {
  background: var(--surface);
}

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

.testimonial-card {
  padding: 30px;
  border: 1px dashed #d4cedd;
  border-radius: var(--radius-small);
  background: var(--white);
}

.placeholder-label {
  display: inline-block;
  margin-bottom: 24px;
  color: var(--purple);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.testimonial-card blockquote {
  min-height: 92px;
  margin-bottom: 24px;
  color: #403a4b;
  font-family: "Manrope", sans-serif;
  font-size: 1.07rem;
  font-weight: 600;
  line-height: 1.55;
}

.testimonial-card > p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: clamp(50px, 9vw, 118px);
}

.faq-layout .section-heading {
  position: sticky;
  top: 120px;
  margin-bottom: 0;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  position: relative;
  padding: 25px 42px 25px 0;
  cursor: pointer;
  font-family: "Manrope", sans-serif;
  font-size: 1.04rem;
  font-weight: 700;
  list-style: none;
}

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

.faq-item summary::after {
  position: absolute;
  top: 50%;
  right: 8px;
  color: var(--purple);
  content: "+";
  font-size: 1.5rem;
  font-weight: 400;
  transform: translateY(-50%);
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-answer {
  padding: 0 44px 24px 0;
  color: var(--muted);
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.final-cta {
  padding: 12px 0 90px;
}

.cta-panel {
  display: flex;
  min-height: 255px;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 55px 64px;
  border-radius: 28px;
  background: var(--ink);
  color: var(--white);
}

.cta-panel .eyebrow,
.cta-panel h2 {
  color: var(--white);
}

.cta-panel h2 {
  margin-bottom: 0;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--white);
}

.footer-main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 50px;
  padding: 54px 0 42px;
}

.footer-main > div {
  max-width: 390px;
}

.footer-main p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-brand img {
  width: 36px;
  height: 36px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 15px 28px;
  color: #4d4857;
  font-size: 0.9rem;
  font-weight: 600;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 22px 0 28px;
  border-top: 1px solid var(--line);
  color: #827d8c;
  font-size: 0.78rem;
}

/* Supporting pages */
.page-hero {
  padding: 82px 0 60px;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.page-hero .container {
  max-width: 900px;
}

.page-hero h1 {
  margin-bottom: 18px;
  font-size: clamp(2.6rem, 5vw, 4.4rem);
}

.page-hero p:last-child {
  max-width: 700px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.content-shell {
  display: grid;
  padding: 76px 0 100px;
  grid-template-columns: 220px minmax(0, 1fr);
  align-items: start;
  gap: 70px;
}

.side-nav {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 8px;
}

.side-nav a {
  padding: 7px 0;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
}

.side-nav a:hover {
  color: var(--purple);
}

.prose {
  min-width: 0;
  max-width: 780px;
}

.prose section {
  margin-bottom: 54px;
  scroll-margin-top: 110px;
}

.prose h2 {
  margin-bottom: 18px;
  font-size: 2rem;
}

.prose h3 {
  margin-top: 30px;
}

.prose p,
.prose li {
  color: #575160;
}

.prose a {
  color: var(--purple);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.prose ul,
.prose ol {
  padding-left: 24px;
}

.note {
  margin: 26px 0;
  padding: 20px 22px;
  border-left: 4px solid var(--purple);
  border-radius: 0 12px 12px 0;
  background: var(--lavender);
  color: #4c4260;
}

.support-grid,
.tutorial-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.support-card,
.tutorial-step,
.privacy-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  background: var(--white);
}

.support-card p:last-child,
.tutorial-step p:last-child {
  margin-bottom: 0;
}

.tutorial-step .step-number {
  margin-bottom: 24px;
}

.section-tinted {
  background: var(--surface);
}

.section-dark {
  background: var(--purple-dark);
  color: rgba(255, 255, 255, 0.82);
}

.section-dark h2,
.section-dark h3,
.section-dark .eyebrow {
  color: var(--white);
}

.privacy-point {
  display: flex;
  gap: 12px;
  margin: 12px 0;
}

.check {
  color: var(--purple);
  font-weight: 800;
}

@media (max-width: 980px) {
  .hero-grid,
  .split-section,
  .faq-layout {
    grid-template-columns: 1fr;
  }

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

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

  .faq-layout .section-heading {
    position: static;
  }

  .faq-layout {
    gap: 25px;
  }

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

  .testimonial-card blockquote {
    min-height: auto;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 30px), var(--container));
  }

  .nav-wrap {
    min-height: 70px;
  }

  .menu-button {
    display: flex;
  }

  .nav-cta {
    display: none;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    left: 0;
    display: none;
    padding: 18px 20px 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    border-bottom: 1px solid var(--line);
    background: var(--white);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    width: 100%;
    padding: 10px 0;
  }

  .hero {
    padding: 64px 0 72px;
  }

  .hero-grid {
    gap: 46px;
  }

  h1 {
    font-size: clamp(2.4rem, 10vw, 3.4rem);
  }

  .media-placeholder {
    min-height: 390px;
    padding: 50px 28px 34px;
  }

  .section {
    padding: 78px 0;
  }

  .steps-grid,
  .pricing-grid,
  .support-grid,
  .tutorial-layout {
    grid-template-columns: 1fr;
  }

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

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

  .print-media {
    min-height: 430px;
  }

  .plan-description,
  .plan-features {
    min-height: 0;
  }

  .cta-panel {
    min-height: 0;
    padding: 42px 28px;
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-main,
  .footer-bottom {
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .content-shell {
    padding: 52px 0 78px;
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .side-nav {
    position: static;
    padding-bottom: 24px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 480px) {
  .brand span {
    font-size: 1.05rem;
  }

  .brand img {
    width: 36px;
    height: 36px;
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .hero-facts {
    flex-direction: column;
    gap: 8px;
  }

  .sheet-preview {
    padding: 15px;
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-card {
    padding: 32px 24px;
  }

  .plan-badge {
    position: static;
    margin-bottom: 18px;
  }

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