@layer reset, base, layout, components, responsive;

@layer reset {
  *, *::before, *::after { box-sizing: border-box; }
  body, h1, h2, h3, p, figure { margin: 0; }
  img, svg { display: block; }
  img { max-width: 100%; height: auto; }
  button, input { font: inherit; }
}

@layer base {
  :root {
    color-scheme: light;
    --paper: #f8f6f0;
    --white: #fffefa;
    --ink: #203c35;
    --muted: #53635c;
    --teal: #174f45;
    --mint: #e7eddf;
    --line: #d8dfd3;
    --gold: #c89848;
    --serif: Georgia, 'Times New Roman', serif;
  }
  html { scroll-padding-top: 28px; }
  body { background: var(--paper); color: var(--ink); font: 16px/1.65 -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; -webkit-font-smoothing: antialiased; }
  a { color: var(--teal); text-underline-offset: 4px; text-decoration-thickness: 1px; }
  a:hover { text-decoration-thickness: 2px; }
  :focus-visible { outline: 3px solid #9a5c17; outline-offset: 5px; border-radius: 3px; }
  #main:focus { outline: none; }
  h1, h2, h3 { font-family: var(--serif); font-weight: 400; line-height: 1.1; text-wrap: balance; overflow-wrap: anywhere; }
  h1 { font-size: clamp(3.1rem, 5.05vw, 4.75rem); letter-spacing: -.055em; }
  h2 { font-size: clamp(2.1rem, 3.5vw, 3.4rem); letter-spacing: -.04em; }
  h3 { font-size: 1.7rem; letter-spacing: -.025em; }
  em { font-weight: 400; color: var(--teal); }
  p { text-wrap: pretty; }
  ::selection { background: #c9dfc3; color: #173c30; }
  .icon { flex-shrink: 0; }
  .eyebrow { font-size: .7rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; line-height: 1.5; color: var(--teal); }
  .lead { font-size: 1.15rem; line-height: 1.7; color: var(--muted); max-width: 34rem; }
  .small { font-size: .86rem; }
}

@layer layout {
  .shell { width: min(1184px, calc(100% - 96px)); margin-inline: auto; }
  .site-header { display: flex; align-items: center; justify-content: space-between; padding-block: 25px; gap: 24px; border-bottom: 1px solid var(--line); }
  .hero { display: grid; grid-template-columns: 1.13fr 1fr; gap: 64px; align-items: center; padding-block: 86px 64px; }
  .hero > * { min-width: 0; }
  .hero h1 { margin-top: 22px; }
  .hero .lead { margin-top: 26px; max-width: 31rem; }
  .hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 22px; margin-top: 32px; }
  .section { padding-block: 90px; }
  .section-heading { max-width: 39rem; }
  .section-heading h2 { margin-top: 15px; }
  .section-heading > p:last-child { color: var(--muted); margin-top: 22px; max-width: 32rem; }
  .steps-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; margin-top: 40px; }
  .quiet-section { background: var(--mint); border-block: 1px solid var(--line); }
  .rhythm-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 100px; padding-block: 75px; align-items: center; }
  .rhythm-grid h2 { margin-top: 17px; }
  .rhythm-grid > div > p:not(.eyebrow) { margin-block: 22px; color: var(--muted); max-width: 27rem; }
  .tracks-section { display: grid; grid-template-columns: 1fr 1.1fr; column-gap: 100px; row-gap: 35px; }
  .page-intro { padding-block: 64px 50px; }
  .page-intro h1 { margin-block: 18px 22px; }
  .page-intro .lead { max-width: 37rem; }
  .support-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.8fr); gap: 72px; padding-bottom: 90px; align-items: start; }
  .privacy-layout { display: grid; grid-template-columns: 270px minmax(0, 690px); gap: 75px; padding-bottom: 90px; justify-content: space-between; }
  .not-found { padding-block: 90px 110px; }
  .not-found h1 { margin-block: 20px; }
}

@layer components {
  .preview-note { background: #e8e6dc; color: #43524a; text-align: center; padding: 7px 16px; font-size: .7rem; letter-spacing: .04em; }
  .preview-note span { padding-inline: 7px; }
  .skip-link { position: absolute; top: 0; left: 20px; transform: translateY(-150%); z-index: 5; background: var(--teal); color: white; padding: 12px 18px; }
  .skip-link:focus { transform: translateY(0); }
  .brand { display: inline-flex; align-items: center; gap: 11px; font-family: var(--serif); font-size: 1.6rem; font-weight: 700; line-height: 1.1; text-decoration: none; letter-spacing: -.05em; }
  .brand img { border-radius: 23%; flex: none; }
  .site-header nav { display: flex; align-items: center; gap: 28px; }
  .site-header nav a { text-decoration: none; font-size: .84rem; padding-block: 9px; color: var(--muted); }
  .site-header nav a:hover, .site-header nav a[aria-current] { color: var(--teal); box-shadow: 0 1px 0 var(--teal); }
  .button { display: inline-flex; align-items: center; justify-content: center; gap: 18px; background: var(--teal); color: var(--white); padding: 15px 23px; border: 1px solid var(--teal); border-radius: 7px; font-size: .86rem; font-weight: 600; text-decoration: none; line-height: 1.5; min-height: 52px; }
  .button:hover { background: #103e35; }
  .button .icon, .text-link .icon { width: 19px; height: 19px; }
  .button.light { background: var(--paper); color: var(--teal); border-color: var(--paper); }
  .button.light:hover { background: #e4ecd9; }
  .text-link { display: inline-flex; gap: 10px; align-items: center; font-size: .86rem; font-weight: 600; min-height: 40px; }
  .availability { color: var(--muted); font-size: .7rem; margin-top: 18px; }
  .availability span { padding-inline: 5px; }
  .plan-figure { position: relative; padding: 24px 0 0 18px; }
  .plan-figure::before { content: ''; position: absolute; z-index: -1; background: #dce7d3; border-radius: 50% 50% 12px 12px; inset: 0 28px 60px -10px; }
  .plan-paper { background: var(--white); border: 1px solid #d2dccb; border-radius: 12px; padding: 30px; box-shadow: 0 14px 35px -25px #223e3470; }
  .plan-top { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
  .plan-top .icon { color: var(--teal); }
  .plan-title { display: flex; flex-wrap: wrap; align-items: center; gap: 15px; justify-content: space-between; margin-top: 30px; }
  .plan-title h2 { font-size: 1.85rem; line-height: 1.12; letter-spacing: -.04em; flex: 1 1 10rem; min-width: 0; }
  .goal-chip { padding: 12px 10px; background: #f0eadb; border-radius: 7px; color: #645029; font-family: var(--serif); font-size: 1.8rem; line-height: 1.1; text-align: center; flex-shrink: 0; }
  .goal-chip span { display: block; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; font-size: .6rem; margin-top: 4px; }
  .plan-intro { margin-top: 13px; font-size: .75rem; color: var(--muted); }
  .plan-items { padding: 0; margin: 25px 0 0; list-style: none; }
  .plan-items li { display: flex; gap: 13px; align-items: center; padding: 18px 0; border-top: 1px solid var(--line); }
  .plan-icon { display: flex; align-items: center; justify-content: center; width: 39px; height: 43px; border-radius: 8px; background: var(--mint); color: var(--teal); flex: none; }
  .plan-items strong { font-size: .82rem; font-weight: 600; line-height: 1.5; display: block; }
  .plan-items div > span { display: block; font-size: .7rem; color: var(--muted); margin-top: 3px; }
  .step-dot { display: flex; align-items: center; justify-content: center; border: 1px solid #abbba5; border-radius: 50%; width: 22px; height: 22px; color: var(--teal); font-size: .6rem; margin-left: auto; flex: none; }
  .plan-bottom { background: #eaf0e3; color: var(--teal); border-radius: 5px; margin-top: 10px; padding: 12px; display: flex; align-items: center; justify-content: space-between; gap: 10px; font-size: .66rem; font-weight: 600; }
  .plan-bottom .icon { width: 16px; height: 16px; }
  figcaption { text-align: center; color: var(--muted); font-size: .62rem; margin-top: 17px; }
  .reassurance { border-block: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; gap: 24px; padding-block: 22px; }
  .reassurance span { display: flex; align-items: center; gap: 11px; color: var(--muted); font-size: .78rem; }
  .reassurance .icon { width: 20px; height: 20px; color: var(--teal); }
  .step-card { border: 1px solid var(--line); border-radius: 10px; padding: 28px; display: flex; flex-direction: column; background: var(--white); }
  .step-number { color: var(--teal); font-size: .67rem; font-weight: 700; text-transform: uppercase; letter-spacing: .11em; }
  .step-card h3 { margin-block: 34px 16px; }
  .step-card p { color: var(--muted); font-size: .87rem; }
  .step-card .card-note { margin-top: auto; padding-top: 28px; font-size: .72rem; color: var(--teal); }
  .rhythm-features article { display: flex; gap: 24px; padding-block: 26px; border-bottom: 1px solid #c5d0c0; }
  .rhythm-features article:first-child { padding-top: 0; }
  .rhythm-features article:last-child { border-bottom: none; padding-bottom: 0; }
  .rhythm-features .icon { margin-top: 2px; color: var(--teal); }
  .rhythm-features h3 { font-size: 1.45rem; }
  .rhythm-features p { margin-top: 10px; color: var(--muted); font-size: .87rem; }
  .tracks { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; padding: 0; list-style: none; margin: 0; }
  .tracks li { display: flex; align-items: center; gap: 10px; font-size: .82rem; border-bottom: 1px solid var(--line); padding: 17px 0; }
  .tracks li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: #889f76; flex-shrink: 0; }
  .scope-note { grid-column: 1 / -1; color: var(--muted); font-size: .75rem; max-width: 64rem; }
  .help-band { background: var(--teal); border-radius: 12px; color: var(--paper); display: flex; align-items: center; justify-content: space-between; gap: 50px; padding: 40px; margin-bottom: 80px; }
  .help-band .eyebrow { color: #c8dcc1; }
  .help-band h2 { margin-block: 14px; font-size: 2.25rem; }
  .help-band p:not(.eyebrow) { color: #dce6d7; font-size: .88rem; }
  .help-band .button { flex-shrink: 0; }
  .site-footer { padding-bottom: 25px; }
  .footer-top { display: flex; gap: 30px; align-items: center; justify-content: space-between; padding-block: 28px; border-top: 1px solid var(--line); }
  .footer-top .brand { font-size: 1.4rem; }
  .footer-top p { color: var(--muted); font-size: .75rem; margin-top: 13px; }
  .footer-top nav { display: flex; flex-wrap: wrap; gap: 22px; font-size: .8rem; }
  .footer-top nav a { padding-block: 10px; }
  .footer-bottom { display: flex; justify-content: space-between; gap: 35px; padding-block: 22px 0; border-top: 1px solid var(--line); color: var(--muted); font-size: .67rem; }
  .footer-bottom p:first-child { max-width: 43rem; }
  .footer-bottom p:last-child { flex-shrink: 0; }
  .contact-card { border: 1px solid var(--line); background: var(--mint); padding: 28px; border-radius: 10px; }
  .contact-icon { display: inline-flex; padding: 13px; color: var(--teal); background: var(--paper); border-radius: 10px; margin-bottom: 28px; }
  .contact-card h2 { font-size: 1.8rem; }
  .contact-card p { color: var(--muted); font-size: .87rem; margin-top: 17px; }
  .contact-email { font-size: clamp(.85rem, 1.3vw, 1rem); font-weight: 600; display: inline-block; margin-top: 20px; overflow-wrap: anywhere; }
  .contact-card p.small { font-size: .76rem; }
  .contact-card .text-link { margin-top: 17px; }
  .contact-card hr { margin-block: 21px; border: 0; border-top: 1px solid #bfceba; }
  .faq-section > h2 { font-size: 2rem; margin-block: 14px 28px; }
  .faq-list { border-top: 1px solid var(--line); }
  .faq-list details { border-bottom: 1px solid var(--line); scroll-margin-top: 25px; }
  .faq-list summary { display: flex; align-items: center; justify-content: space-between; gap: 24px; cursor: pointer; font-size: .96rem; font-weight: 600; padding: 22px 3px; line-height: 1.5; list-style: none; }
  .faq-list summary::-webkit-details-marker { display: none; }
  .faq-list summary::marker { content: ''; }
  .faq-list summary:hover { color: var(--teal); }
  .faq-plus { flex: none; width: 17px; height: 17px; position: relative; }
  .faq-plus::before, .faq-plus::after { content: ''; background: var(--teal); position: absolute; }
  .faq-plus::before { width: 13px; height: 1px; top: 8px; left: 2px; }
  .faq-plus::after { width: 1px; height: 13px; left: 8px; top: 2px; }
  details[open] .faq-plus::after { display: none; }
  details:target { background: #edf1e6; }
  details:target summary { padding-inline: 12px; }
  details:target .faq-answer { padding-inline: 12px; }
  .faq-answer { padding: 0 3px 25px; color: var(--muted); font-size: .89rem; }
  .faq-answer p + p { margin-top: 15px; }
  .faq-answer a, .policy-body a { overflow-wrap: anywhere; }
  .faq-answer strong, .policy-body strong { color: var(--ink); font-weight: 600; }
  .support-ending { margin-top: 30px; color: var(--muted); font-size: .88rem; }
  .policy-date { font-size: .78rem; color: var(--muted); margin-top: 25px; }
  .policy-contents { align-self: start; border-top: 1px solid var(--line); padding-top: 24px; }
  .policy-contents ol { padding: 0; list-style: none; margin: 18px 0 0; }
  .policy-contents li { padding-block: 7px; font-size: .82rem; }
  .policy-contents a { text-decoration: none; }
  .policy-contents a:hover { text-decoration: underline; }
  .privacy-summary { display: flex; gap: 15px; align-items: start; padding: 20px; background: var(--mint); border-radius: 8px; margin-top: 28px; }
  .privacy-summary p { font-size: .76rem; color: var(--teal); }
  .policy-body { min-width: 0; overflow-wrap: anywhere; }
  .policy-body section { padding-bottom: 36px; margin-bottom: 32px; border-bottom: 1px solid var(--line); scroll-margin-top: 28px; }
  .policy-body section:last-child { margin-bottom: 0; padding-bottom: 0; border: none; }
  .policy-body h2 { display: flex; gap: 16px; align-items: baseline; font-size: 1.75rem; line-height: 1.25; margin-bottom: 21px; }
  .section-index { font: 600 .68rem/1.2 -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; color: var(--muted); letter-spacing: .06em; flex-shrink: 0; }
  .policy-body p, .policy-body li { font-size: .94rem; color: var(--muted); }
  .policy-body p + p { margin-top: 16px; }
  .policy-body ul { padding-left: 24px; margin-block: 18px; }
  .policy-body li { margin-block: 8px; padding-left: 5px; }
}

@layer responsive {
  @media (min-width: 1000px) {
    .policy-contents { position: sticky; top: 30px; }
  }
  @media (max-width: 1100px) {
    .shell { width: calc(100% - 64px); }
    .hero { gap: 32px; }
    .hero-actions { gap: 12px; }
    .plan-paper { padding: 24px; }
    .plan-title h2 { font-size: 1.65rem; }
    .plan-items li { gap: 10px; }
    .rhythm-grid, .tracks-section { column-gap: 55px; }
    .support-layout { gap: 40px; }
    .privacy-layout { grid-template-columns: 225px minmax(0, 1fr); gap: 45px; }
    .contact-card { padding: 24px; }
    .step-card { padding: 23px; }
  }
  @media (max-width: 800px) {
    .hero { grid-template-columns: 1fr; padding-block: 55px 40px; gap: 40px; }
    h1 { font-size: 3.7rem; }
    .hero-copy { max-width: 580px; }
    .hero .lead { max-width: 36rem; }
    .plan-figure { max-width: 500px; width: 100%; justify-self: center; padding-left: 15px; }
    .plan-title h2 { font-size: 1.9rem; }
    .reassurance { flex-wrap: wrap; justify-content: center; column-gap: 26px; row-gap: 14px; }
    .section { padding-block: 65px; }
    .steps-grid { gap: 14px; }
    .step-card { padding: 20px; }
    .step-card h3 { font-size: 1.45rem; margin-top: 28px; }
    .step-card p { font-size: .83rem; }
    .rhythm-grid { grid-template-columns: 1fr; gap: 40px; padding-block: 60px; }
    .rhythm-grid > div > p:not(.eyebrow) { max-width: 33rem; }
    .rhythm-features { max-width: 39rem; }
    .tracks-section { grid-template-columns: 1fr; }
    .help-band { gap: 25px; padding: 30px; }
    .help-band h2 { font-size: 1.85rem; }
    .support-layout { grid-template-columns: 1fr; gap: 45px; }
    .contact-email { font-size: 1rem; }
    .contact-icon { margin-bottom: 20px; }
    .privacy-layout { grid-template-columns: 1fr; gap: 45px; }
    .policy-contents { display: grid; grid-template-columns: 1fr 180px; gap: 20px; }
    .privacy-summary { margin-top: 0; align-self: start; }
    .footer-bottom { flex-direction: column; gap: 12px; }
  }
  @media (max-width: 560px) {
    .shell { width: calc(100% - 40px); }
    .site-header { flex-direction: column; align-items: stretch; gap: 16px; padding-block: 20px 8px; }
    .brand { align-self: flex-start; }
    .site-header nav { justify-content: space-between; gap: 20px; }
    .site-header nav a { font-size: .84rem; padding: 8px 0; }
    h1 { font-size: clamp(2.7rem, 10.2vw, 3.5rem); }
    h2 { font-size: 2.35rem; }
    .hero { padding-top: 40px; gap: 32px; }
    .hero h1 { margin-top: 18px; }
    .hero .lead { margin-top: 22px; }
    .lead { font-size: 1rem; }
    .hero-actions { gap: 16px; }
    .button { font-size: .8rem; padding-inline: 18px; gap: 13px; }
    .availability { font-size: .66rem; max-width: 21rem; }
    .plan-paper { padding: 21px; }
    .plan-figure { padding-left: 6px; padding-top: 20px; }
    .plan-figure::before { left: 0; right: 14px; }
    .plan-title { gap: 10px; margin-top: 24px; }
    .plan-title h2 { font-size: 1.7rem; }
    .plan-items strong { font-size: .79rem; }
    .plan-items div > span { font-size: .66rem; }
    .goal-chip { font-size: 1.7rem; padding-inline: 8px; }
    .plan-icon { width: 33px; height: 39px; }
    .plan-icon .icon { width: 20px; height: 20px; }
    .step-dot { width: 19px; height: 19px; }
    .plan-bottom { font-size: .6rem; }
    figcaption { font-size: .6rem; }
    .reassurance { align-items: flex-start; flex-direction: column; padding-block: 20px; gap: 15px; }
    .section { padding-block: 55px; }
    .section-heading > p:last-child { font-size: .94rem; }
    .steps-grid { grid-template-columns: 1fr; margin-top: 30px; gap: 16px; }
    .step-card { padding: 25px; }
    .step-card h3 { font-size: 1.8rem; margin-top: 24px; }
    .step-card p { font-size: .9rem; }
    .step-card .card-note { padding-top: 22px; }
    .rhythm-grid { padding-block: 50px; }
    .rhythm-features article { gap: 18px; }
    .tracks { gap: 0 16px; }
    .tracks li { font-size: .78rem; padding-block: 17px; }
    .help-band { flex-direction: column; align-items: flex-start; margin-bottom: 45px; padding: 28px; }
    .help-band h2 { font-size: 2rem; }
    .footer-top { flex-direction: column; align-items: flex-start; gap: 20px; }
    .footer-top nav { gap: 24px; }
    .page-intro { padding-block: 40px 35px; }
    .page-intro .lead { max-width: 28rem; }
    .contact-card { padding: 25px; }
    .support-layout, .privacy-layout { padding-bottom: 55px; }
    .faq-section > h2 { font-size: 2rem; }
    .faq-list summary { font-size: .93rem; gap: 20px; padding-block: 21px; }
    .policy-contents { display: block; }
    .privacy-summary { margin-top: 24px; }
    .privacy-layout { gap: 35px; }
    .policy-body h2 { font-size: 1.65rem; }
    .policy-body p, .policy-body li { font-size: .9rem; }
    .not-found { padding-block: 55px 70px; }
  }
  @media (max-width: 350px) {
    .shell { width: calc(100% - 32px); }
    .plan-paper { padding: 17px; }
    .plan-title h2 { font-size: 1.48rem; }
    .plan-items li { gap: 8px; }
    .plan-items strong { font-size: .73rem; }
    .plan-items div > span { font-size: .62rem; }
    .step-dot { display: none; }
    .plan-top .eyebrow { font-size: .62rem; }
    .tracks { grid-template-columns: 1fr; }
  }
  @media (prefers-reduced-motion: no-preference) {
    html { scroll-behavior: smooth; }
    .button { transition: background .15s ease; }
  }
  @media print {
    .preview-note, .site-header, .site-footer, .policy-contents, .skip-link { display: none; }
    body { background: white; color: black; }
    .shell { width: 100%; }
    .privacy-layout, .support-layout { display: block; }
    .page-intro { padding-block: 10px 30px; }
    .policy-body h2 { break-after: avoid; }
    .policy-body section { break-inside: avoid; }
    .contact-card { margin-bottom: 30px; }
    .faq-list details::details-content { content-visibility: visible; }
  }
}

@layer components {
  .pricing-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; margin-top: 38px; }
  .price-card { padding: 28px; border: 1px solid var(--line); border-radius: 10px; background: var(--white); display: flex; flex-direction: column; }
  .price-card h3 { font-size: 2rem; margin: 22px 0 18px; }
  .price-card h3 span { display: block; font: 400 .9rem system-ui, sans-serif; color: var(--muted); margin-top: 8px; }
  .price-card p { font-size: .9rem; color: var(--muted); }
  .price-card .trial-note { color: var(--teal); font-weight: 600; margin-top: auto; padding-top: 24px; }
  .pricing-details { max-width: 820px; margin-top: 28px; font-size: .88rem; color: var(--muted); }
  .pricing-details p + p { margin-top: 14px; }
  .terms-body { max-width: 820px; padding-bottom: 70px; }
  .footer-top nav { flex-wrap: wrap; }
  .site-header nav { flex-wrap: wrap; }
}
@layer responsive {
  @media (max-width: 760px) { .pricing-grid { grid-template-columns: 1fr; } }
}
