:root {
  color-scheme: light;
  --ink: #241b25;
  --plum: #32163f;
  --plum-soft: #efe6f2;
  --paper: #fbf5e9;
  --surface: #fffdf8;
  --marigold: #f5a800;
  --marigold-soft: #ffe4a1;
  --rose: #a84051;
  --muted: #6f646d;
  --line: rgba(50, 22, 63, 0.14);
  --shadow: 0 24px 70px rgba(50, 22, 63, 0.11);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 88% 1%, rgba(245, 168, 0, 0.16), transparent 28rem),
    radial-gradient(circle at 5% 35%, rgba(217, 101, 111, 0.09), transparent 24rem),
    var(--paper);
  color: var(--ink);
  font: 17px/1.65 -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  text-rendering: optimizeLegibility;
}

a {
  color: var(--plum);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--rose);
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--plum);
  outline-offset: 4px;
  border-radius: 4px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--plum);
  color: #fff;
  transform: translateY(-150%);
  transition: transform 150ms ease;
}

.skip-link:focus {
  color: #fff;
  transform: translateY(0);
}

.shell {
  width: min(1100px, calc(100% - 48px));
  margin: 0 auto;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 780;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.brand:hover {
  color: var(--ink);
}

.mark {
  position: relative;
  display: inline-block;
  width: 36px;
  height: 36px;
  overflow: hidden;
  flex: 0 0 auto;
  border-radius: 11px;
  background: var(--plum);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.15);
}

.mark::before {
  content: "";
  position: absolute;
  width: 19px;
  height: 19px;
  top: 8px;
  left: 8px;
  border-radius: 50%;
  background: var(--marigold);
  box-shadow: 0 0 16px rgba(245, 168, 0, 0.66);
}

.mark::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  top: 5px;
  left: 3px;
  border-radius: 50%;
  background: var(--plum);
}

.mark span {
  position: absolute;
  z-index: 1;
  right: 7px;
  bottom: 7px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #fff8df;
}

.links,
.footer-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
}

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

.links a:hover,
.links a[aria-current="page"],
.footer-links a:hover {
  color: var(--plum);
}

.links a[aria-current="page"] {
  text-decoration: underline;
  text-decoration-color: var(--marigold);
  text-decoration-thickness: 3px;
  text-underline-offset: 0.45em;
}

main {
  padding-bottom: 96px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  align-items: center;
  gap: clamp(48px, 8vw, 100px);
  min-height: 680px;
  padding: 80px 0 88px;
}

.eyebrow {
  margin: 0 0 13px;
  color: var(--rose);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

h1 {
  margin: 0;
  font-size: clamp(50px, 7vw, 82px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

h1 em {
  color: var(--plum);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

.lede {
  max-width: 680px;
  margin: 27px 0 0;
  color: var(--muted);
  font-size: clamp(19px, 2.4vw, 23px);
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-weight: 750;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  transition: transform 150ms ease, box-shadow 150ms ease, background-color 150ms ease;
}

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

.button-primary {
  background: var(--plum);
  color: #fff;
  box-shadow: 0 10px 26px rgba(50, 22, 63, 0.18);
}

.button-primary:hover {
  background: #472052;
  color: #fff;
  box-shadow: 0 13px 32px rgba(50, 22, 63, 0.23);
}

.button-quiet {
  border-color: var(--line);
  background: rgba(255, 253, 248, 0.7);
  color: var(--plum);
}

.button-quiet:hover {
  border-color: rgba(50, 22, 63, 0.25);
  background: var(--surface);
  color: var(--plum);
}

.plan-preview {
  position: relative;
  padding: 28px;
  border: 1px solid rgba(50, 22, 63, 0.14);
  border-radius: 30px;
  background: rgba(255, 253, 248, 0.88);
  box-shadow: var(--shadow);
  transform: rotate(1.5deg);
}

.plan-preview::before,
.plan-preview::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 50%;
}

.plan-preview::before {
  width: 140px;
  height: 140px;
  top: -46px;
  right: -34px;
  border: 1px solid rgba(245, 168, 0, 0.46);
}

.plan-preview::after {
  width: 18px;
  height: 18px;
  top: -13px;
  right: 35px;
  background: var(--marigold);
  box-shadow: 0 0 24px rgba(245, 168, 0, 0.8);
}

.preview-topline,
.preview-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.preview-title {
  margin: 14px 0 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 29px;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.routine-row {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  align-items: start;
  padding: 15px 0;
  border-top: 1px solid var(--line);
}

.routine-row b,
.routine-row small {
  display: block;
}

.routine-row b {
  font-size: 15px;
  line-height: 1.3;
}

.routine-row small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.check {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  border: 2px solid var(--marigold);
  border-radius: 50%;
  background: var(--marigold-soft);
}

.preview-footer {
  justify-content: center;
  gap: 8px;
  margin: 15px -28px -28px;
  padding: 13px;
  border-radius: 0 0 30px 30px;
  background: var(--plum);
  color: #fff;
  letter-spacing: 0.08em;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 112px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-strip span {
  padding: 17px 12px;
  color: var(--plum);
  font-size: 13px;
  font-weight: 760;
  text-align: center;
}

.trust-strip span + span {
  border-left: 1px solid var(--line);
}

.section {
  padding: 0 0 112px;
}

.section h2,
.privacy-panel h2,
.support-banner h2,
.contact-panel h2 {
  max-width: 790px;
  margin: 0;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 42px;
}

.feature-card,
.price-card,
.faq-card {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 253, 248, 0.72);
}

.feature-card {
  min-height: 260px;
  padding: 25px;
}

.feature-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--plum-soft);
  color: var(--plum);
  font-size: 12px;
  font-weight: 800;
}

.feature-card h3 {
  margin: 45px 0 9px;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.feature-card p,
.price-card p,
.section-heading-row > p,
.privacy-copy p,
.support-banner p,
.contact-panel p {
  color: var(--muted);
}

.feature-card p {
  margin: 0;
}

.privacy-panel {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 64px;
  margin-bottom: 112px;
  padding: clamp(30px, 5vw, 56px);
  overflow: hidden;
  border-radius: 32px;
  background:
    radial-gradient(circle at 102% 0%, rgba(245, 168, 0, 0.38), transparent 16rem),
    var(--plum);
  color: #fff;
}

.privacy-panel .eyebrow {
  color: var(--marigold-soft);
}

.privacy-panel h2 {
  color: #fff;
}

.privacy-copy p {
  margin-top: 0;
  color: rgba(255, 255, 255, 0.78);
}

.text-link {
  display: inline-block;
  color: var(--plum);
  font-weight: 750;
  text-decoration: none;
}

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

.privacy-panel .text-link {
  color: #fff;
}

.privacy-panel .text-link:hover {
  color: var(--marigold-soft);
}

.privacy-panel a:focus-visible {
  outline-color: #fff;
}

.section-heading-row {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  align-items: end;
  gap: 46px;
}

.section-heading-row > p {
  max-width: 430px;
  margin: 0 0 5px;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.price-card {
  padding: 26px;
}

.price-card.featured-price {
  border-color: rgba(245, 168, 0, 0.55);
  background: linear-gradient(145deg, rgba(255, 228, 161, 0.36), rgba(255, 253, 248, 0.82));
}

.price-label {
  margin: 0 0 2px;
  color: var(--rose) !important;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.price {
  margin: 4px 0 10px;
}

.price span {
  color: var(--ink);
  font-size: 36px;
  font-weight: 790;
  letter-spacing: -0.04em;
}

.price-card > p:last-child {
  max-width: 480px;
  margin-bottom: 0;
}

.fine-print {
  margin: 16px 4px 0;
  color: var(--muted);
  font-size: 13px;
}

.support-banner,
.contact-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255, 253, 248, 0.76);
}

.support-banner h2,
.contact-panel h2 {
  max-width: 720px;
  font-size: clamp(30px, 4vw, 46px);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 36px 64px;
  padding: 40px 0 48px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.site-footer > div:first-child p {
  max-width: 460px;
  margin: 13px 0 0;
}

.footer-brand {
  color: var(--ink);
}

.copyright {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 12px;
}

.document-main {
  padding-top: 76px;
}

.document-hero {
  max-width: 800px;
  padding-bottom: 58px;
}

.document-hero h1 {
  font-size: clamp(48px, 7vw, 72px);
}

.document-hero .button {
  margin-top: 30px;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 72px;
}

.faq-card {
  padding: 25px;
}

.faq-card h2 {
  margin: 0 0 9px;
  font-size: 21px;
  line-height: 1.25;
  letter-spacing: -0.025em;
}

.faq-card p {
  margin: 0;
  color: var(--muted);
}

.faq-card .text-link {
  margin-top: 12px;
}

.contact-panel {
  align-items: start;
}

.contact-panel > div {
  flex: 1;
}

.contact-panel p {
  max-width: 520px;
  margin-top: 0;
}

.contact-panel .button {
  margin-top: 8px;
}

.legal-document {
  max-width: 780px;
}

.legal-hero {
  max-width: none;
  padding-bottom: 24px;
}

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

.callout {
  margin: 30px 0 0;
  padding: 20px 22px;
  border-left: 4px solid var(--marigold);
  border-radius: 0 16px 16px 0;
  background: rgba(245, 168, 0, 0.1);
  color: var(--ink);
}

.legal-document h2 {
  margin: 42px 0 8px;
  font-size: 25px;
  line-height: 1.25;
  letter-spacing: -0.03em;
}

.legal-document p,
.legal-document li {
  color: #564c54;
}

.legal-document li + li {
  margin-top: 7px;
}

.legal-document a {
  font-weight: 650;
}

.compact-footer {
  grid-template-columns: 1fr auto;
  align-items: center;
}

.compact-footer > p {
  margin: 0;
}

@media (max-width: 820px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 68px 0 90px;
  }

  .plan-preview {
    width: min(440px, 94%);
    margin: 0 auto;
  }

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

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

  .feature-card h3 {
    margin-top: 28px;
  }

  .privacy-panel,
  .section-heading-row {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 650px) {
  .shell {
    width: min(100% - 30px, 1100px);
  }

  .site-nav {
    min-height: 72px;
  }

  .links {
    gap: 12px;
  }

  .links a {
    font-size: 13px;
  }

  .hero {
    gap: 60px;
    padding-top: 52px;
  }

  .hero h1 {
    font-size: clamp(45px, 14vw, 63px);
  }

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

  .trust-strip {
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 88px;
  }

  .trust-strip span:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .trust-strip span:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .section {
    padding-bottom: 88px;
  }

  .privacy-panel {
    margin-bottom: 88px;
    border-radius: 24px;
  }

  .price-grid,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .support-banner,
  .contact-panel {
    align-items: stretch;
    flex-direction: column;
    padding: 28px;
  }

  .site-footer,
  .compact-footer {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .copyright {
    grid-column: auto;
  }

  .document-main {
    padding-top: 52px;
  }

  .document-hero {
    padding-bottom: 42px;
  }
}

@media (max-width: 410px) {
  .brand {
    font-size: 16px;
  }

  .mark {
    width: 32px;
    height: 32px;
  }

  .links {
    gap: 9px;
  }

  .links a {
    font-size: 12px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  body {
    background: #fff;
  }

  .site-nav,
  .site-footer,
  .skip-link {
    display: none;
  }

  .shell,
  .legal-document {
    width: 100%;
    max-width: none;
  }

  .document-main {
    padding: 0;
  }

  a {
    color: inherit;
  }
}
