:root {
  --canvas: #f7f0f5;
  --paper: #fff;
  --ink: #222333;
  --muted: #636377;
  --blue: #607bff;
  --action: #3c50be;
  --lavender: #9da1be;
  --rule: #dcd5df;
  --green: #15b36b;
  --surface: #e9e7f0;
  --radius: 24px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--canvas);
  font-synthesis: none;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
}
a {
  color: var(--action);
  text-underline-offset: 4px;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
summary:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--action);
  outline-offset: 5px;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2,
h3 {
  font-weight: 650;
  letter-spacing: -0.055em;
  line-height: 1.04;
}
h1 {
  font-size: clamp(48px, 7.3vw, 100px);
  margin-bottom: 28px;
}
h2 {
  font-size: clamp(36px, 4.5vw, 64px);
  margin-bottom: 24px;
}
h3 {
  font-size: 27px;
}
p,
li {
  line-height: 1.65;
}
p {
  color: var(--muted);
}
button {
  color: inherit;
}
.wrap {
  max-width: 1200px;
  margin: auto;
  padding: 0 40px;
}
.skip {
  position: fixed;
  top: -100px;
  left: 20px;
  z-index: 100;
  background: white;
  padding: 15px;
}
.skip:focus {
  top: 12px;
}
.site-header {
  position: relative;
  z-index: 20;
}
.nav {
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--rule);
  gap: 20px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
  font-size: 25px;
  font-weight: 650;
  letter-spacing: -1px;
}
.brand img {
  border-radius: 10px;
  border: 1px solid #b7b2c8;
}
.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}
.nav-links > a:not(.button) {
  font-size: 14px;
  font-weight: 550;
  text-decoration: none;
  color: var(--ink);
  padding: 12px 0;
}
.nav-links a[aria-current] {
  text-decoration: underline;
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
  min-height: 50px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--action);
  padding: 13px 23px;
  color: white;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
  transition:
    background 0.2s,
    transform 0.2s;
}
.button:hover {
  background: #2f419e;
  transform: translateY(-2px);
}
.button.secondary {
  background: transparent;
  border-color: #b3adbf;
  color: var(--ink);
}
.button.secondary:hover {
  background: white;
}
.button.light {
  background: white;
  color: var(--ink);
}
.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-weight: 600;
  font-size: 15px;
}
.eyebrow,
.micro {
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
}
.eyebrow {
  display: block;
  margin-bottom: 24px;
}
.eyebrow.dot:before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
  margin-right: 10px;
}
.hero {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 54px;
  align-items: center;
  padding-top: 72px;
  padding-bottom: 88px;
}
.hero-copy {
  position: relative;
  z-index: 1;
}
.hero h1 em {
  font-style: normal;
  color: var(--action);
}
.hero .lead {
  max-width: 400px;
  font-size: 18px;
  line-height: 1.6;
}
.hero-actions {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
  margin: 32px 0 20px;
}
.small-note {
  font-size: 12px;
  line-height: 1.5;
}
.hero-visual {
  position: relative;
  padding: 0 20px 18px;
}
.hero-visual:before {
  content: "";
  position: absolute;
  inset: 14% -4% 4%;
  background: #e3e4fb;
  border-radius: 50% 45% 46% 42%;
  transform: rotate(-8deg);
}
.hero-visual .product {
  transform: rotate(2deg);
  position: relative;
}
.visual-caption {
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.015em;
  color: var(--muted);
  margin: 25px 0 0;
}
.product {
  background: var(--paper);
  border: 1px solid #d2cddb;
  box-shadow:
    0 24px 70px #39345c17,
    0 3px 8px #39345c05;
  border-radius: 25px;
  overflow: hidden;
  padding: 22px;
  max-width: 465px;
  width: 100%;
  margin: auto;
}
.product-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
}
.product-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 650;
  font-size: 16px;
}
.product-brand img {
  border-radius: 7px;
  border: 1px solid var(--rule);
}
.product-view {
  font-size: 11px;
  border: 1px solid var(--rule);
  padding: 6px 13px;
  border-radius: 20px;
}
.day-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.day-heading .micro {
  font-size: 9px;
  letter-spacing: 0.09em;
}
.day-heading h3 {
  font-size: 32px;
  margin: 6px 0 20px;
}
.date-number {
  font-size: 50px;
  font-weight: 300;
  letter-spacing: -3px;
  color: #807b94;
}
.week-row {
  display: flex;
  justify-content: space-between;
  margin: 0 0 17px;
  font-size: 9px;
  color: var(--muted);
}
.week-row > span {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 5px;
  border-radius: 12px;
  padding: 6px 10px;
}
.week-row b {
  font-size: 12px;
}
.week-row .selected {
  background: var(--action);
  color: white;
}
.progress-bar {
  background: var(--surface);
  border-radius: 13px;
  padding: 12px 14px;
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.count {
  font-size: 18px;
  font-weight: 650;
  font-variant-numeric: tabular-nums;
}
.task-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.tile {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  border: 2px solid var(--tone);
  border-radius: 6px;
  background: white;
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
}
.blue {
  --tone: #5065cc;
  --pastel: #e1e7ff;
  --deep: #4855a1;
  --text: #283570;
}
.sage {
  --tone: #387e66;
  --pastel: #dbefe2;
  --deep: #316650;
  --text: #254b3b;
}
.lavender {
  --tone: #80609d;
  --pastel: #eee1f5;
  --deep: #664583;
  --text: #5a3975;
}
.rose {
  --tone: #a2556f;
  --pastel: #f6e0e8;
  --deep: #81445b;
  --text: #72364e;
}
.tile.done,
.event.done {
  background: var(--pastel);
  border-color: #328156;
}
.tile.postponed {
  background: var(--deep);
  border-color: #e9b15e;
  color: white;
}
.timeline {
  display: grid;
  grid-template-columns: 39px 1fr;
  gap: 6px;
  height: 290px;
  margin-bottom: 12px;
}
.hours {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-size: 9px;
  color: #6b6679;
  padding-bottom: 0;
}
.event-lane {
  position: relative;
  margin-right: 1px;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0,
    transparent 95px,
    #eeeaf1 95px,
    #eeeaf1 96px
  );
}
.event {
  position: absolute;
  top: calc(var(--start) / 180 * 100%);
  height: calc(var(--duration) / 180 * 100% - 4px);
  width: 100%;
  border: 2px solid var(--tone);
  border-radius: 9px;
  background: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 8px 6px 10px;
  color: var(--text);
  transition:
    background 0.3s,
    border-color 0.3s,
    opacity 0.3s,
    transform 0.3s;
}
.event-info {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.event b {
  font-size: 12px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.event-info > span {
  font-size: 9px;
}
.event-check {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 0;
  padding: 0;
  font-size: 18px;
  color: var(--text);
}
button.event-check > span,
.illustration-check:after {
  border: 1.5px solid currentColor;
  border-radius: 5px;
  width: 23px;
  height: 23px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.illustration-check {
  position: relative;
}
.illustration-check:after {
  content: "";
  position: absolute;
}
.event.done .event-check {
  color: #246640;
}
.event.moved {
  opacity: 0.2;
  transform: translateX(14px);
}
.event.focusing {
  background: linear-gradient(105deg, #fff, var(--pastel), #fff);
  background-size: 200% 100%;
}
.focus-strip,
.move-strip {
  display: flex;
  gap: 13px;
  align-items: center;
  margin-top: 16px;
  background: #f0e9f5;
  border-radius: 14px;
  padding: 12px;
}
.focus-strip[hidden],
.move-strip[hidden] {
  display: none;
}
.focus-strip b,
.move-strip b {
  display: block;
  font-size: 12px;
  letter-spacing: -0.02em;
}
.focus-strip div > span,
.move-strip div > span {
  display: block;
  font-size: 10px;
  margin-top: 4px;
  color: var(--muted);
}
.focus-ring {
  width: 53px;
  height: 53px;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    #664583 0%,
    #dbc8ea var(--sweep, 100%),
    #e4ddea 0
  );
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.focus-ring span {
  border-radius: 50%;
  background: white;
  width: 43px;
  height: 43px;
  display: grid !important;
  place-items: center;
  margin: 0 !important;
  font-size: 10px !important;
  color: var(--ink) !important;
  font-variant-numeric: tabular-nums;
}
.trust-line {
  padding: 26px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted);
  font-size: 13px;
}
.trust-line b {
  color: var(--ink);
  font-weight: 550;
}
.section-head {
  max-width: 700px;
  padding: 108px 0 25px;
}
.story-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.story-steps {
  min-width: 0;
}
.story-step {
  min-height: 65vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 52px 0;
  scroll-margin-top: 40px;
}
.step-number {
  color: var(--action);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 22px;
}
.story-step h3 {
  font-size: 40px;
  max-width: 390px;
}
.story-step p {
  font-size: 17px;
  max-width: 370px;
}
.story-stage {
  position: sticky;
  top: 45px;
  margin-top: 50px;
  padding-bottom: 45px;
}
.story-stage .product {
  box-shadow: 0 20px 65px #39345c10;
}
.story-stage .visual-caption {
  min-height: 34px;
}
.inline-scene {
  display: none;
}
.site-footer {
  padding: 50px 0 30px;
  border-top: 1px solid var(--rule);
}
.footer-main {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  max-width: 500px;
  justify-content: flex-end;
}
.footer-links a {
  font-size: 13px;
  color: var(--muted);
  min-height: 32px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 40px;
  font-size: 11px;
  color: var(--muted);
}
.preview-label {
  font-size: 11px;
  background: #eae5ef;
  padding: 9px 20px;
  text-align: center;
  color: #565167;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
@media (max-width: 1000px) {
  .hero {
    gap: 20px;
  }
  .hero-visual {
    padding: 0;
  }
  .hero h1 {
    font-size: 70px;
  }
  .wrap {
    padding: 0 28px;
  }
  .story-layout {
    gap: 35px;
  }
  .product {
    padding: 18px;
  }
  .hero .lead {
    font-size: 16px;
  }
  .nav-links {
    gap: 20px;
  }
}
@media (max-width: 760px) {
  .wrap {
    padding: 0 22px;
  }
  .nav {
    min-height: 82px;
    gap: 8px;
  }
  .brand {
    font-size: 22px;
  }
  .brand img {
    width: 32px;
    height: 32px;
  }
  .nav-links {
    gap: 14px;
  }
  .nav-links > a:not(.button) {
    font-size: 12px;
  }
  .nav-links .support-nav {
    display: none;
  }
  .nav-links .button {
    min-height: 44px;
    padding: 11px 14px;
    font-size: 12px;
  }
  .hero {
    grid-template-columns: 1fr;
    padding-top: 48px;
    padding-bottom: 45px;
    gap: 42px;
  }
  .hero h1 {
    font-size: clamp(51px, 11vw, 78px);
    max-width: 600px;
  }
  .hero .lead {
    font-size: 17px;
    max-width: 440px;
  }
  .hero-visual {
    padding: 0 8px;
  }
  .hero-visual .product {
    transform: rotate(1deg);
  }
  .trust-line {
    flex-direction: column;
    gap: 12px;
    padding: 24px 0;
  }
  .section-head {
    padding-top: 72px;
  }
  .story-layout {
    display: block;
  }
  .story-stage {
    display: none;
  }
  .story-step {
    min-height: 0;
    padding: 35px 0 45px;
  }
  .story-step h3 {
    font-size: 35px;
  }
  .story-step p {
    font-size: 16px;
    max-width: 100%;
  }
  .inline-scene {
    display: block;
    margin: 18px 0 0;
  }
  .inline-scene .product {
    box-shadow: none;
  }
  .story-step .product .product-top,
  .story-step .product .week-row {
    display: none;
  }
  .story-step .product .day-heading h3 {
    font-size: 24px;
    margin-bottom: 15px;
  }
  .story-step .product .date-number {
    font-size: 36px;
  }
  .story-step .product .timeline {
    height: 270px;
  }
  .footer-main,
  .footer-bottom {
    flex-direction: column;
    gap: 24px;
  }
  .footer-links {
    justify-content: flex-start;
  }
  .footer-bottom {
    margin-top: 30px;
    gap: 8px;
  }
  .preview-label {
    font-size: 10px;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
  .hero-visual .product {
    transform: none;
  }
  .story-stage {
    display: none;
  }
  .story-layout {
    display: block;
  }
  .story-step {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 50px;
    min-height: 0;
    padding: 45px 0;
  }
  .story-step .step-number {
    grid-column: 1;
  }
  .story-step h3,
  .story-step p {
    grid-column: 1;
  }
  .inline-scene {
    display: block;
    grid-column: 2;
    grid-row: 1/5;
  }
  .inline-scene .product {
    box-shadow: none;
  }
  @media (max-width: 760px) {
    .story-step {
      display: block;
    }
  }
}
.hero {
  padding-top: 52px;
}
.hero h1 {
  font-size: clamp(48px, 6.8vw, 88px);
}
.hero .lead {
  font-size: 17px;
}
.hero-actions {
  margin-top: 26px;
}
.feature-band {
  background: #ebe7f2;
  padding: 84px 0;
  margin: 50px 0 0;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 45px;
  margin-top: 60px;
}
.feature-grid h3 {
  font-size: 29px;
  line-height: 1.1;
}
.feature-grid p {
  font-size: 15px;
}
.feature-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid #b8aec8;
  border-radius: 13px;
  font-size: 26px;
  color: var(--action);
  margin-bottom: 26px;
  background: #f7f0f5;
}
.privacy-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 75px;
  padding-top: 110px;
  padding-bottom: 100px;
  border-bottom: 1px solid var(--rule);
}
.large-copy {
  font-size: 22px;
  line-height: 1.5;
  color: var(--ink);
}
.faq-section {
  padding-top: 90px;
  padding-bottom: 70px;
}
.faq-list {
  margin: 36px 0 20px;
  border-top: 1px solid var(--rule);
}
details {
  border-bottom: 1px solid var(--rule);
}
summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  list-style: none;
  cursor: pointer;
  padding: 25px 0;
  font-size: 18px;
  font-weight: 550;
  line-height: 1.5;
}
summary::-webkit-details-marker {
  display: none;
}
summary > span {
  font-weight: 400;
  font-size: 24px;
}
details[open] summary > span {
  transform: rotate(45deg);
}
details p {
  max-width: 850px;
  margin: 0 35px 26px 0;
  font-size: 16px;
}
.closing {
  padding-bottom: 85px;
}
.closing-inner {
  border-radius: 32px;
  background: var(--action);
  color: white;
  text-align: center;
  padding: 64px 25px;
}
.closing-inner > img {
  border-radius: 17px;
  margin-bottom: 30px;
}
.closing .eyebrow {
  color: #e2e6ff;
}
.closing h2 {
  font-size: clamp(34px, 4.4vw, 59px);
}
.closing p {
  color: #e2e6ff;
  margin-bottom: 30px;
}
.page-heading {
  padding-top: 70px;
  padding-bottom: 45px;
}
.page-heading h1 {
  font-size: clamp(44px, 6.5vw, 82px);
  max-width: 950px;
}
.page-heading .lead {
  font-size: 19px;
  max-width: 650px;
}
.notice {
  padding: 20px 24px;
  border-left: 3px solid var(--action);
  background: #eae6f1;
  font-size: 14px;
  line-height: 1.6;
  color: #535165;
  margin-bottom: 30px;
}
.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.plan-card {
  padding: 30px 26px;
  border: 1px solid #d2ccdc;
  background: white;
  border-radius: 23px;
  display: flex;
  flex-direction: column;
}
.plan-card.featured {
  background: #e5e8ff;
  border: 2px solid var(--action);
  padding: 29px 25px;
}
.plan-card .eyebrow {
  font-size: 10px;
  margin-bottom: 25px;
  color: var(--action);
}
.plan-card h2 {
  font-size: 33px;
}
.plan-card > p {
  font-size: 14px;
  line-height: 1.6;
  min-height: 66px;
}
.plan-card .price-note {
  min-height: 0;
  font-size: 12px;
  margin: 10px 0 20px;
}
.price {
  margin-top: 10px;
  display: flex;
  gap: 7px;
  align-items: baseline;
}
.price strong {
  font-size: 39px;
  letter-spacing: -1.5px;
  font-weight: 600;
}
.price span {
  font-size: 14px;
  color: var(--muted);
}
.unavailable-price {
  font-size: 22px;
  letter-spacing: -0.7px;
  font-weight: 600;
}
.feature-list {
  list-style: none;
  padding: 0;
  margin: 28px 0;
  display: grid;
  gap: 15px;
}
.feature-list li {
  display: flex;
  gap: 9px;
  font-size: 13px;
  line-height: 1.5;
}
.feature-list li > span {
  color: #26734c;
  font-weight: 700;
}
.plan-card .small-note {
  font-size: 11px;
  margin: 0;
  margin-top: auto;
  min-height: 0;
}
.billing-note {
  font-size: 12px;
  max-width: 900px;
  margin: 25px 0 0;
}
.comparison {
  margin: 90px 0 0;
}
.comparison h2 {
  font-size: 46px;
}
.table-scroll {
  overflow-x: auto;
}
table {
  border-collapse: collapse;
  width: 100%;
  min-width: 620px;
  font-size: 14px;
}
caption {
  text-align: left;
  margin-bottom: 20px;
  color: var(--muted);
}
th,
td {
  padding: 20px 14px;
  border-bottom: 1px solid var(--rule);
  text-align: left;
  line-height: 1.5;
}
thead {
  background: #ebe6f0;
}
th {
  font-weight: 550;
}
td {
  color: var(--muted);
}
td:last-child {
  color: var(--action);
}
.returning {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
  padding-top: 35px;
  padding-bottom: 55px;
  font-size: 14px;
}
.returning p {
  margin: 0;
}
.returning a {
  min-height: 44px;
  display: flex;
  align-items: center;
}
.start-grid,
.help-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  padding-bottom: 70px;
  align-items: start;
}
.handoff-card,
.help-card {
  background: white;
  border: 1px solid #d7d0df;
  border-radius: 25px;
  padding: 36px;
}
.handoff-card > img {
  margin-bottom: 32px;
  border-radius: 20px;
  border: 1px solid var(--rule);
}
.handoff-card h2 {
  font-size: 38px;
}
.handoff-card p {
  font-size: 15px;
}
.handoff-card .text-link {
  margin: 15px 0;
}
.selected-plan {
  margin-top: 25px;
  padding-top: 25px;
  border-top: 1px solid var(--rule);
}
.selected-plan > b {
  display: block;
  margin: 12px 0;
}
.selected-plan .price {
  font-size: 20px;
}
.selected-plan a {
  font-size: 13px;
}
.steps-panel {
  padding-top: 15px;
}
.steps-panel h2 {
  font-size: 42px;
}
.numbered {
  list-style: none;
  counter-reset: steps;
  padding: 0;
  display: grid;
  gap: 25px;
  margin: 34px 0;
}
.numbered li {
  position: relative;
  padding-left: 46px;
  counter-increment: steps;
}
.numbered li:before {
  content: counter(steps);
  position: absolute;
  left: 0;
  top: -2px;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid #bcb5ca;
  color: var(--action);
  font-size: 12px;
}
.numbered b {
  font-size: 16px;
  font-weight: 600;
}
.numbered p {
  font-size: 14px;
  line-height: 1.65;
  margin: 7px 0 0;
}
.help-card h2 {
  font-size: 32px;
}
.help-card h3 {
  margin-top: 35px;
  font-size: 24px;
}
.help-card li,
.help-card p {
  font-size: 15px;
}
.help-card .small-note {
  font-size: 12px;
}
.prose h2 {
  font-size: 34px;
  line-height: 1.15;
}
.prose h3 {
  font-size: 24px;
  letter-spacing: -0.04em;
  margin-top: 30px;
}
.prose p {
  font-size: 16px;
}
.legal {
  max-width: 880px;
  padding-bottom: 90px;
}
.legal h2 {
  margin-top: 45px;
}
.recovery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  padding-bottom: 80px;
}
.recovery-grid .help-card {
  display: flex;
  flex-direction: column;
}
.recovery-grid a {
  margin-top: auto;
}
.support-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 65px;
}
.support-top a {
  padding: 22px;
  background: #ebe6f0;
  display: flex;
  justify-content: space-between;
  border-radius: 13px;
  text-decoration: none;
  font-size: 15px;
  color: var(--ink);
}
form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
form label {
  font-size: 13px;
  font-weight: 600;
  margin-top: 12px;
}
input,
select,
textarea {
  border: 1px solid #9e97ad;
  border-radius: 9px;
  background: #fff;
  padding: 13px;
  width: 100%;
  min-height: 46px;
  color: var(--ink);
  font-size: 15px;
}
textarea {
  resize: vertical;
}
form .button {
  margin-top: 15px;
}
button:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}
form p {
  margin-top: 6px;
  margin-bottom: 0;
}
.faq-page {
  max-width: 920px;
  padding-bottom: 85px;
}
.error-actions {
  display: flex;
  gap: 30px;
  align-items: center;
  padding-bottom: 100px;
}
/* Static first: every explanatory panel remains coherent without JavaScript. */
html:not(.motion-ready) .story-stage {
  display: none;
}
html:not(.motion-ready) .story-layout {
  display: block;
}
html:not(.motion-ready) .story-step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 50px;
  min-height: 0;
  padding: 45px 0;
}
html:not(.motion-ready) .story-step h3,
html:not(.motion-ready) .story-step p,
html:not(.motion-ready) .step-number {
  grid-column: 1;
}
html:not(.motion-ready) .inline-scene {
  display: block;
  grid-column: 2;
  grid-row: 1/5;
}
@media (max-width: 1000px) {
  .plan-card {
    padding: 25px 20px;
  }
  .plan-card.featured {
    padding: 24px 19px;
  }
  .plan-card h2 {
    font-size: 28px;
  }
  .start-grid,
  .help-grid {
    gap: 35px;
  }
  .feature-grid {
    gap: 25px;
  }
}
@media (max-width: 760px) {
  .hero h1 {
    font-size: clamp(51px, 11vw, 78px);
  }
  .hero {
    padding-top: 43px;
  }
  .feature-band {
    padding: 60px 0;
    margin-top: 25px;
  }
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 38px;
    margin-top: 40px;
  }
  .feature-grid article {
    border-top: 1px solid #cdc5d9;
    padding-top: 30px;
  }
  .feature-icon {
    margin-bottom: 20px;
  }
  .privacy-band {
    grid-template-columns: 1fr;
    gap: 10px;
    padding-top: 65px;
    padding-bottom: 50px;
  }
  .large-copy {
    font-size: 20px;
  }
  .faq-section {
    padding-top: 58px;
    padding-bottom: 48px;
  }
  summary {
    font-size: 16px;
    padding: 22px 0;
  }
  details p {
    font-size: 15px;
  }
  .closing {
    padding-bottom: 50px;
  }
  .closing-inner {
    padding: 45px 22px;
  }
  .page-heading {
    padding-top: 48px;
    padding-bottom: 25px;
  }
  .page-heading .lead {
    font-size: 17px;
  }
  .page-heading h1 {
    font-size: clamp(43px, 10.5vw, 67px);
  }
  .plan-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .plan-card,
  .plan-card.featured {
    padding: 30px;
  }
  .plan-card h2 {
    font-size: 34px;
  }
  .plan-card > p {
    min-height: 0;
  }
  .plan-card .button {
    margin-top: 5px;
  }
  .comparison {
    margin-top: 65px;
  }
  .start-grid,
  .help-grid,
  .recovery-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 45px;
  }
  .handoff-card,
  .help-card {
    padding: 27px;
  }
  .handoff-card h2 {
    font-size: 34px;
  }
  .steps-panel h2 {
    font-size: 35px;
  }
  .support-top {
    grid-template-columns: 1fr;
    margin-bottom: 40px;
  }
  .support-top a {
    font-size: 14px;
  }
  .legal h2 {
    font-size: 29px;
  }
  .returning {
    gap: 8px 20px;
  }
  .returning > p {
    width: 100%;
  }
  html:not(.motion-ready) .story-step {
    display: block;
  }
  .error-actions {
    flex-wrap: wrap;
  }
}
@media (max-width: 370px) {
  .nav-links {
    gap: 10px;
  }
  .nav-links > a:first-child {
    display: none;
  }
  .wrap {
    padding-left: 18px;
    padding-right: 18px;
  }
  .product {
    padding: 14px;
  }
  .week-row > span {
    padding: 6px 7px;
  }
  .event b {
    font-size: 11px;
  }
  .event-check {
    width: 44px;
  }
  .hero-visual {
    padding: 0;
  }
  .plan-card,
  .plan-card.featured {
    padding: 25px;
  }
}
.event.moved {
  opacity: 0;
  transform: translateX(20px);
  pointer-events: none;
}
@media (min-width: 761px) and (max-height: 800px) {
  .story-stage {
    top: 20px;
  }
  .story-stage .product-top {
    margin-bottom: 13px;
  }
  .story-stage .week-row {
    display: none;
  }
  .story-stage .timeline {
    height: 250px;
  }
  .story-stage .product {
    padding: 18px;
  }
  .story-stage .visual-caption {
    margin-top: 15px;
  }
}
.hero-visual .visual-caption {
  position: relative;
  z-index: 1;
}
.handoff-card > .text-link {
  display: flex;
  width: fit-content;
}
.numbered li:before {
  content: counter(steps) / "";
}
@media (max-width: 480px) {
  .nav-links > a:first-child {
    display: none;
  }
  .nav-links .button {
    white-space: nowrap;
  }
  .nav-links {
    gap: 18px;
  }
  .hero-actions {
    gap: 18px;
  }
}
@media (max-width: 760px) {
  .hero-visual:before {
    inset: 12% 0 4%;
    transform: none;
  }
}
.demo-instruction {
  display: none;
}
.motion-ready .demo-instruction {
  display: inline;
}
@media (max-width: 370px) {
  .nav-links {
    gap: 12px;
  }
  .nav-links .button {
    padding: 10px 12px;
    gap: 10px;
    font-size: 11px;
  }
  .brand {
    font-size: 20px;
    gap: 7px;
  }
  .brand img {
    width: 29px;
    height: 29px;
  }
}

/* Browser beta recruitment */
/* Keep signup controls independent of the generic support-form layout. */
.beta-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(36px, 6vw, 80px);
  padding-block: 72px 90px;
}
.beta-intro h1 { font-size: clamp(44px, 4.7vw, 68px); line-height: 1.05; letter-spacing: -3px; margin: 24px 0; }
.beta-intro .lead { max-width: 450px; margin-bottom: 28px; }
.beta-intro > .small-note { margin-top: 12px; }
.beta-availability { max-width: 450px; margin-top: 48px; }
.beta-availability h2 { font-size: 24px; letter-spacing: -.6px; line-height: 1.2; }
.beta-availability p { color: var(--muted); font-size: 15px; line-height: 1.7; }
.beta-form {
  position: relative;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
  background: #eeebf3;
  border: 1px solid #ded7e7;
  border-radius: 22px;
  padding: 32px;
}
.beta-form-heading h2 { margin: 12px 0 2px; font-size: 30px; line-height: 1.15; letter-spacing: -1px; }
.beta-form label { margin: 0; font-size: 14px; }
.beta-form .beta-field { display: grid; gap: 8px; }
.beta-form .field-optional { color: var(--muted); font-weight: 400; }
.beta-form input:not([type=checkbox]), .beta-form select {
  min-height: 48px;
  border: 1px solid #c7bdd3;
  border-radius: 9px;
  padding: 12px;
  background: #fff;
  font: inherit;
  font-size: 16px;
  width: 100%;
  min-width: 0;
}
.beta-form .beta-choice { display: flex; align-items: flex-start; gap: 12px; min-height: 44px; font-weight: 400; line-height: 1.5; cursor: pointer; }
.beta-form .beta-choice input {
  width: 20px;
  height: 20px;
  min-height: 20px;
  flex: 0 0 20px;
  padding: 0;
  margin: 1px 0 0;
  accent-color: #4856bd;
}
.beta-store-choices { border: 0; border-top: 1px solid #d8d0e1; padding: 20px 0 0; margin: 0; min-width: 0; }
.beta-store-choices legend { float: left; width: 100%; padding: 0; font-size: 14px; font-weight: 600; }
.beta-store-choices legend span { font-weight: 400; color: var(--muted); }
.beta-store-choices > .small-note { clear: both; padding-top: 6px; margin: 0 0 14px; }
.beta-store-choices .beta-choice { align-items: center; }
.beta-store-choices .beta-choice input { margin-top: 0; }
.beta-choice .choice-detail { margin-left: 6px; color: var(--muted); font-size: 13px; }
.beta-form .honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.beta-form > .button { width: 100%; margin: 0; }
.beta-form-note { text-align: center; }
.beta-form-note .small-note { margin: 0; }
.beta-form .beta-legal-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 20px; margin: 4px 0 0; font-size: 13px; }
.beta-legal-links a { display: inline-flex; align-items: center; min-height: 44px; }
#beta-status { font-size: 13px; line-height: 1.6; margin: 0; }
#beta-status:empty { display: none; }
.beta-form input:focus-visible, .beta-form select:focus-visible { outline: 3px solid #607bff; outline-offset: 3px; }
.beta-policy { max-width: 850px; padding-bottom: 90px; }
.beta-policy p { color: #686071; line-height: 1.8; }
.beta-policy h2 { font-size: 36px; }
@media (max-width: 900px) {
  .beta-layout { grid-template-columns: minmax(0, 1fr); gap: 36px; padding-block: 44px 60px; max-width: 680px; }
  .beta-intro h1 { font-size: clamp(42px, 8vw, 64px); letter-spacing: -2px; }
  .beta-availability { margin-top: 28px; }
}
@media (max-width: 480px) {
  .beta-form { padding: 24px 20px; }
  .beta-form-heading h2 { font-size: 28px; }
  .beta-choice .choice-detail { display: block; margin-left: 0; }
}


/* One calendar travels from the hero into the story, within one sticky boundary. */
.product-journey .hero { padding-inline: 0; }
.product-journey .story-layout { display: block; }
.product-journey .hero-visual .visual-caption { min-height: 34px; }
@media (min-width: 761px) and (prefers-reduced-motion: no-preference) {
  html.motion-ready .product-journey {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    column-gap: 54px;
    align-items: start;
    padding-top: 52px;
    padding-bottom: 60px;
  }
  html.motion-ready .product-journey .hero { display: contents; }
  html.motion-ready .product-journey .hero-copy {
    grid-column: 1;
    grid-row: 1;
    min-height: max(620px, calc(100svh - 210px));
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-bottom: 60px;
  }
  html.motion-ready .product-journey .hero-visual {
    grid-column: 2;
    grid-row: 1 / 4;
    position: sticky;
    top: max(24px, calc((100svh - var(--story-visual-height, 680px)) / 2));
    align-self: start;
    justify-self: center;
    width: 100%;
    max-width: 510px;
    padding: 0 clamp(18px, 2vw, 28px) 18px;
  }
  html.motion-ready .product-journey .hero-visual .product { transform: none; }
  html.motion-ready .product-journey .story-intro { grid-column: 1; grid-row: 2; }
  html.motion-ready .product-journey .section-head { padding: 65px 0 35px; }
  html.motion-ready .product-journey .section-head h2 { font-size: clamp(36px, 3.7vw, 54px); }
  html.motion-ready .product-journey .story-layout { grid-column: 1; grid-row: 3; }
  html.motion-ready .product-journey .story-step { min-height: 0; }
  html.motion-ready .product-journey .event-check:disabled { opacity: 1; cursor: default; }
}
@media (min-width: 761px) and (max-width: 1000px) {
  html.motion-ready .product-journey { column-gap: 25px; }
}
@media (min-width: 761px) and (max-height: 800px) and (prefers-reduced-motion: no-preference) {
  html.motion-ready .product-journey .product-top { margin-bottom: 13px; }
  html.motion-ready .product-journey .hero-visual .week-row { display: none; }
  html.motion-ready .product-journey .hero-visual .timeline { height: 240px; }
  html.motion-ready .product-journey .hero-visual .product { padding: 18px; }
  html.motion-ready .product-journey .hero-visual .visual-caption { margin-top: 15px; }
}
.product-journey .hero-visual:before {
  inset: 14% 0 4%;
  transform: rotate(-4deg);
}

/* Legal notices share the site's typography, with readable section navigation. */
.legal-nav{display:flex;flex-wrap:wrap;gap:12px 24px;padding-bottom:26px;border-bottom:1px solid var(--rule);margin-bottom:28px;font-size:14px}.legal-nav a{text-underline-offset:4px}.legal-operator{padding:20px 24px;border:1px solid var(--rule);border-radius:16px;background:#efebf3}.legal-operator p{margin:8px 0;font-size:15px;overflow-wrap:anywhere}.legal-pending{color:var(--muted);font-style:italic}.legal-data-grid{display:grid;gap:8px}.legal-data-grid section{border-bottom:1px solid var(--rule);padding:5px 0 16px}.legal-data-grid h3{margin-bottom:10px}.legal li{margin:12px 0;line-height:1.7;color:var(--muted)}.legal code{font-size:.9em;overflow-wrap:anywhere}.legal a{overflow-wrap:anywhere}.legal .notice{margin-bottom:34px}


/* Closely spaced story cards activate as their centers meet the calendar. */
.product-journey .story-steps{display:grid;gap:22px}
.product-journey .story-step{position:relative;min-height:0;padding:28px 30px;border:1px solid #dcd5e6;border-radius:20px;background:#f2eef6;scroll-margin-top:24px}
.product-journey .story-step>.step-number{align-self:flex-start;display:inline-flex;align-items:center;min-height:28px;padding:3px 9px;margin-bottom:20px;border:1px solid #dad5e8;border-radius:8px;background:#eae5f2;font-size:11px;letter-spacing:.04em}
.product-journey .story-step>h3{font-size:clamp(26px,2.7vw,36px);line-height:1.13;margin:0 0 16px;max-width:420px}
.product-journey .story-step>p{font-size:16px;line-height:1.7;margin:0;max-width:420px}
@media(min-width:761px) and (prefers-reduced-motion:no-preference){
  html.motion-ready .product-journey .story-layout{padding-bottom:max(0px,calc(50svh - 190px))}
  html.motion-ready .product-journey .story-step{transition:transform 280ms ease,border-color 280ms ease,background-color 280ms ease,box-shadow 280ms ease}
  html.motion-ready .product-journey .story-step.is-active{transform:translateX(6px);border-color:#8e96d5;background:#fcfafd;box-shadow:0 12px 32px #48478512}
  html.motion-ready .product-journey .story-step.is-active>.step-number{background:#4453be;color:#fff;border-color:#4453be}
  html.motion-ready .product-journey .story-step::after{content:'';position:absolute;left:100%;top:50%;width:22px;height:2px;background:#8e96d5;transform:scaleX(0);transform-origin:left;transition:transform 280ms ease}
  html.motion-ready .product-journey .story-step.is-active::after{transform:scaleX(1)}
}
@media(min-width:761px) and (max-width:1000px) and (prefers-reduced-motion:no-preference){
  html.motion-ready .product-journey .story-step::after{width:12px}
}
@media(max-width:760px){
  .product-journey .story-step{padding:24px 20px}
  .product-journey .story-step>h3{font-size:29px}
  .product-journey .story-step>p{font-size:15px}
  .product-journey .inline-scene{margin-top:24px}
}

/* Each card and its matching summary tile share one scroll state. */
.story-mark{--tile-fill:#d8ede2;--tile-stroke:#24835a;display:block;width:60px}
.story-mark[data-story-mark="1"]{--tile-fill:#dee4fa;--tile-stroke:#5365c5}
.story-mark[data-story-mark="2"],.story-mark.mark-undo{--tile-fill:#eee3f5;--tile-stroke:#8863a7}
.story-mark.mark-moved{--tile-fill:#faecd4;--tile-stroke:#a57626}
.story-mark svg{display:block;width:100%;height:auto;overflow:visible}
.story-mark .mark-fill{fill:var(--tile-fill)}
.story-mark .mark-outline{stroke:var(--tile-stroke);stroke-width:2}
.story-mark.mark-moved .mark-outline{stroke-dasharray:5 4}
.story-mark .mark-symbol{stroke:var(--tile-stroke);stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:1;stroke-dashoffset:0}
.product-journey .story-step>.story-mark{position:absolute;right:26px;top:23px;width:38px}
.story-finish{display:flex;align-items:center;justify-content:center;height:190px}
.finish-grid{display:grid;grid-template-columns:repeat(5,minmax(0,1fr));gap:14px;width:min(100%,390px)}
.finish-tile{min-width:0;text-align:center}
.finish-tile .story-mark{width:100%;max-width:64px;margin:auto}
.finish-label{display:block;font-size:11px;line-height:1.4;color:var(--muted);margin-top:9px}
.finish-number{display:block;font-size:10px;letter-spacing:.06em;margin-bottom:3px}
.finish-tile.is-active .finish-label{color:#4453be}
@media(prefers-reduced-motion:no-preference){
  html.motion-ready .story-mark .mark-symbol{stroke-dashoffset:1;transition:stroke-dashoffset 350ms ease}
  html.motion-ready .story-mark .mark-fill{opacity:0;transition:opacity 250ms ease}
  html.motion-ready .story-mark.is-reached .mark-symbol{stroke-dashoffset:0}
  html.motion-ready .story-mark.is-reached .mark-fill{opacity:1}
}
@media(max-width:760px){
  .product-journey .story-step>.story-mark{right:20px;top:20px;width:36px}
  .product-journey .story-step.is-active{border-color:#8e96d5;background:#fcfafd}
  .product-journey .story-step.is-active>.step-number{background:#4453be;color:#fff;border-color:#4453be}
  .story-finish{height:170px}
  .finish-grid{gap:8px}
}

/* Completion icons use centered vector geometry instead of font glyphs. */
.donecal-check-icon,.donecal-checkbox-icon{display:block;flex-shrink:0;max-width:100%;max-height:100%}
.feature-list li > span{display:inline-flex;align-items:center;justify-content:center}
.feature-icon .donecal-check-icon{width:26px;height:26px}
