:root {
  --ink: #141414;
  --paper: #f7f3ea;
  --white: #fffdf8;
  --coral: #ff6546;
  --blue: #4f6bff;
  --lime: #c7f36b;
  --line: rgba(20, 20, 20, 0.18);
  --muted: #5c5851;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Avenir Next", Avenir, "Segoe UI", Arial, sans-serif;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.site-header {
  width: min(1440px, calc(100% - 48px));
  height: 88px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.brand-mark { position: relative; width: 34px; height: 26px; }
.brand-mark span {
  position: absolute;
  width: 22px;
  height: 18px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--lime);
}
.brand-mark span:last-child { right: 0; bottom: 0; background: var(--coral); }
.desktop-nav { display: flex; gap: 38px; font-size: 14px; font-weight: 600; }
.desktop-nav a { position: relative; }
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  background: var(--coral);
  transition: right .2s ease;
}
.desktop-nav a:hover::after { right: 0; }
.nav-action {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 20px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 10px 12px 10px 18px;
  font-size: 14px;
  font-weight: 700;
}
.nav-action span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: var(--white);
  background: var(--ink);
}

.hero {
  width: min(1440px, calc(100% - 48px));
  min-height: calc(100vh - 88px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: .93fr 1.07fr;
  align-items: center;
  gap: 4vw;
  padding: 74px 0 88px;
  overflow: hidden;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 24px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.eyebrow span { width: 8px; height: 8px; border-radius: 50%; background: var(--coral); }
h1 {
  max-width: 670px;
  margin: 0;
  font-size: clamp(54px, 5.5vw, 88px);
  line-height: .98;
  letter-spacing: -0.066em;
  font-weight: 750;
}
h1 em {
  position: relative;
  display: inline-block;
  z-index: 0;
  font-family: Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.055em;
}
h1 em::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: -5px;
  right: -8px;
  bottom: 5px;
  height: 18px;
  background: var(--lime);
  transform: rotate(-1deg);
}
.hero-intro {
  max-width: 590px;
  margin: 30px 0 0;
  font-size: 19px;
  line-height: 1.62;
  color: #4a4842;
}
.hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 34px; }
.button { display: inline-flex; align-items: center; gap: 24px; font-size: 15px; font-weight: 750; }
.button-primary {
  padding: 17px 21px 17px 24px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  color: var(--white);
  background: var(--ink);
  box-shadow: 5px 5px 0 var(--coral);
  transition: transform .2s ease, box-shadow .2s ease;
}
.button-primary:hover { transform: translate(2px, 2px); box-shadow: 3px 3px 0 var(--coral); }
.button-text { border-bottom: 1px solid var(--ink); padding: 8px 0; }
.hero-proof {
  display: flex;
  gap: 34px;
  margin-top: 52px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.hero-proof div { display: grid; gap: 5px; }
.hero-proof strong { font-size: 23px; line-height: 1; letter-spacing: -.03em; }
.hero-proof span { color: #6b6861; font-size: 11px; text-transform: uppercase; letter-spacing: .06em; }

.product-stage {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
  isolation: isolate;
}
.product-stage::before {
  content: "";
  position: absolute;
  inset: 20px 3% 10px 6%;
  z-index: -3;
  border-radius: 48% 52% 46% 54% / 50% 46% 54% 50%;
  background: var(--blue);
  transform: rotate(-3deg);
}
.stage-orbit { position: absolute; z-index: -2; border: 1px solid rgba(255,255,255,.42); border-radius: 50%; }
.orbit-one { width: 87%; height: 73%; transform: rotate(18deg); }
.orbit-two { width: 77%; height: 90%; transform: rotate(-30deg); }
.inbox-window {
  width: min(610px, 86%);
  min-height: 430px;
  overflow: hidden;
  border: 1px solid var(--ink);
  border-radius: 16px;
  background: var(--white);
  box-shadow: 12px 14px 0 rgba(20,20,20,.22);
  transform: rotate(1.4deg);
}
.window-bar {
  height: 54px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 17px;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
}
.window-bar b { justify-self: end; border-radius: 999px; background: #ebe9ff; color: #313e9a; padding: 6px 9px; }
.window-dots { display: flex; gap: 5px; }
.window-dots i { width: 8px; height: 8px; border-radius: 50%; background: #d9d5cb; }
.window-dots i:first-child { background: var(--coral); }
.window-body { display: grid; grid-template-columns: 62px 1fr; min-height: 376px; }
.channel-rail { display: flex; flex-direction: column; align-items: center; gap: 18px; padding-top: 24px; border-right: 1px solid var(--line); }
.channel-rail span { display: grid; place-items: center; width: 30px; height: 30px; border-radius: 9px; font-size: 12px; font-weight: 800; }
.channel-rail .active { background: var(--ink); color: white; }
.message-list { padding: 28px 26px; }
.list-label { margin: 0 0 12px; color: #747067; font-size: 10px; letter-spacing: .13em; font-weight: 800; }
.message {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  gap: 12px;
  align-items: center;
  min-height: 82px;
  padding: 14px;
  border-bottom: 1px solid var(--line);
}
.active-message { border: 1px solid var(--ink); border-radius: 12px; background: #fff; box-shadow: 4px 4px 0 var(--lime); }
.avatar { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; font-size: 11px; font-weight: 800; }
.avatar-coral { background: #ffd0c6; }
.avatar-blue { background: #d8deff; }
.avatar-lime { background: #e6fac0; }
.message strong { font-size: 13px; }
.message p { margin: 5px 0 0; color: #5d5b55; font-size: 12px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.message time { color: #8a867e; font-size: 10px; }
.reply-card {
  position: absolute;
  right: -1%;
  bottom: 15px;
  width: min(390px, 57%);
  padding: 18px;
  border: 1px solid var(--ink);
  border-radius: 14px;
  background: var(--lime);
  box-shadow: 8px 8px 0 var(--ink);
  transform: rotate(-2deg);
}
.reply-card-top { display: flex; align-items: center; justify-content: space-between; font-size: 11px; }
.reply-card-top span { display: flex; align-items: center; gap: 7px; font-weight: 800; }
.reply-card-top i { width: 7px; height: 7px; border-radius: 50%; background: #278946; }
.reply-card-top b { padding: 5px 8px; border: 1px solid var(--ink); border-radius: 99px; }
.reply-card p { margin: 16px 0; font-family: Georgia, serif; font-size: 15px; line-height: 1.48; }
.reply-card-actions { display: flex; justify-content: flex-end; gap: 8px; }
.reply-card button { padding: 8px 10px; border: 1px solid var(--ink); border-radius: 8px; background: transparent; font-size: 10px; font-weight: 800; }
.reply-card .approve-button { background: var(--ink); color: white; }
.floating-note { position: absolute; padding: 10px 13px; border: 1px solid var(--ink); border-radius: 99px; background: var(--white); font-size: 11px; font-weight: 800; box-shadow: 3px 3px 0 var(--ink); }
.note-one { top: 44px; right: 7%; transform: rotate(6deg); }
.note-two { left: 1%; bottom: 86px; background: var(--coral); transform: rotate(-9deg); }

@media (max-width: 1050px) {
  .hero { grid-template-columns: 1fr; padding-top: 56px; }
  .hero-copy { max-width: 780px; }
  .product-stage { min-height: 590px; }
  .hero-proof { max-width: 640px; }
}
@media (max-width: 700px) {
  .site-header { width: min(100% - 32px, 1440px); height: 72px; grid-template-columns: 1fr auto; }
  .desktop-nav { display: none; }
  .nav-action { font-size: 0; padding: 7px; border: 0; }
  .nav-action span { font-size: 14px; }
  .hero { width: min(100% - 32px, 1440px); min-height: auto; padding: 48px 0 70px; gap: 30px; }
  h1 { font-size: clamp(48px, 15vw, 68px); }
  .hero-intro { font-size: 17px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 17px; }
  .hero-proof { gap: 15px; margin-top: 42px; }
  .hero-proof div { flex: 1; }
  .hero-proof strong { font-size: 20px; }
  .hero-proof span { font-size: 9px; line-height: 1.35; }
  .product-stage { min-height: 480px; margin: 0 -24px; }
  .product-stage::before { inset: 12px 1% 4px; }
  .inbox-window { width: 88%; min-height: 340px; }
  .window-body { min-height: 288px; grid-template-columns: 48px 1fr; }
  .channel-rail { gap: 11px; padding-top: 17px; }
  .channel-rail span { width: 27px; height: 27px; }
  .message-list { padding: 18px 13px; }
  .message { grid-template-columns: 34px 1fr auto; min-height: 64px; padding: 9px; }
  .avatar { width: 32px; height: 32px; font-size: 9px; }
  .message p { max-width: 180px; font-size: 10px; }
  .reply-card { right: 2%; bottom: 4px; width: 67%; padding: 14px; }
  .reply-card p { margin: 12px 0; font-size: 12px; }
  .note-one { top: 25px; }
  .note-two { left: 0; bottom: 62px; }
}

/* Shared sections and navigation */
.menu-toggle,
.mobile-nav { display: none; }

.compact-header { height: 78px; }

.section {
  width: min(1440px, calc(100% - 48px));
  margin: 0 auto;
  padding: 130px 0;
}

.section-heading { margin-bottom: 58px; }
.section-heading h2,
.closing-cta h2,
.subpage-hero h1,
.start-copy h1,
.legal-page h1,
.not-found-page h1 {
  margin: 0;
  font-size: clamp(44px, 5.2vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.06em;
}
.section-heading h2 em {
  font-family: Georgia, serif;
  font-weight: 400;
}
.section-heading > p,
.split-heading > div > p,
.workflow-heading > p {
  color: #68655e;
  font-size: 18px;
  line-height: 1.6;
}
.kicker {
  margin: 0 0 18px;
  color: var(--coral);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.split-heading {
  display: grid;
  grid-template-columns: .5fr 1.5fr;
  gap: 50px;
  align-items: start;
}
.split-heading > div { max-width: 920px; }
.split-heading > div > p { max-width: 670px; margin: 25px 0 0; }
.centered-heading { max-width: 900px; margin-left: auto; margin-right: auto; text-align: center; }
.centered-heading > p:last-child { max-width: 620px; margin: 24px auto 0; }

.button-outline {
  justify-content: space-between;
  padding: 16px 20px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: transparent;
  transition: background .2s ease, color .2s ease;
}
.button-outline:hover { background: var(--ink); color: var(--white); }

.marquee-strip {
  overflow: hidden;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: var(--lime);
}
.marquee-strip > div {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 17px 0;
  animation: marquee 28s linear infinite;
}
.marquee-strip span { font-family: Georgia, serif; font-size: 21px; font-style: italic; }
.marquee-strip i { font-size: 13px; font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-strip > div { animation: none; } }

/* Problem */
.problem-section {
  width: 100%;
  max-width: none;
  padding-left: max(24px, calc((100% - 1440px) / 2));
  padding-right: max(24px, calc((100% - 1440px) / 2));
  color: var(--white);
  background: var(--ink);
}
.problem-section .kicker { color: var(--lime); }
.problem-section .section-heading > div > p { color: #aaa79f; }
.problem-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(255,255,255,.25); }
.problem-card {
  min-height: 310px;
  padding: 28px 28px 38px;
  border-right: 1px solid rgba(255,255,255,.22);
  transition: background .25s ease, color .25s ease;
}
.problem-card:first-child { border-left: 1px solid rgba(255,255,255,.22); }
.problem-card:hover { background: var(--coral); color: var(--ink); }
.problem-card > span { display: block; margin-bottom: 86px; color: #817e77; font-size: 11px; letter-spacing: .12em; }
.problem-card:hover > span { color: var(--ink); }
.problem-card h3 { margin: 0 0 15px; font-size: 25px; letter-spacing: -.035em; }
.problem-card p { margin: 0; color: #aaa79f; font-size: 15px; line-height: 1.6; }
.problem-card:hover p { color: var(--ink); }

/* Features */
.feature-section { padding-bottom: 155px; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.feature-card {
  min-height: 295px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--ink);
  border-radius: 22px;
  background: var(--white);
  transition: transform .25s ease, box-shadow .25s ease;
}
.feature-card:hover { transform: translateY(-5px); box-shadow: 7px 7px 0 var(--ink); }
.feature-symbol {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  margin-bottom: auto;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: var(--paper);
  font-family: Georgia, serif;
  font-size: 20px;
}
.feature-card h3 { margin: 48px 0 12px; font-size: 23px; letter-spacing: -.035em; }
.feature-card p { margin: 0; color: #65625b; font-size: 15px; line-height: 1.58; }
.feature-2 { background: var(--lime); }
.feature-4 { background: #dce1ff; }
.feature-6 { background: #ffd8ce; }

@media (max-width: 1050px) {
  .problem-grid { grid-template-columns: repeat(2, 1fr); }
  .problem-card:nth-child(2) { border-right: 0; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 700px) {
  .site-header { position: relative; z-index: 50; }
  .site-header .nav-action { display: none; }
  .menu-toggle {
    justify-self: end;
    display: grid;
    place-items: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid var(--ink);
    border-radius: 50%;
    background: transparent;
  }
  .menu-toggle i { width: 17px; height: 1.5px; background: var(--ink); }
  .mobile-nav {
    position: absolute;
    top: 71px;
    left: -16px;
    right: -16px;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 18px 22px 28px;
    border-bottom: 1px solid var(--ink);
    background: var(--paper);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s;
  }
  .mobile-nav.is-open { opacity: 1; visibility: visible; transform: none; }
  .mobile-nav > a:not(.button) { padding: 15px 4px; border-bottom: 1px solid var(--line); font-size: 20px; font-weight: 700; }
  .mobile-nav .button { margin-top: 20px; width: fit-content; }
  .section { width: min(100% - 32px, 1440px); padding: 88px 0; }
  .section-heading { margin-bottom: 38px; }
  .section-heading h2,
  .closing-cta h2,
  .subpage-hero h1,
  .start-copy h1,
  .legal-page h1,
  .not-found-page h1 { font-size: clamp(40px, 12.5vw, 58px); }
  .split-heading { grid-template-columns: 1fr; gap: 8px; }
  .split-heading > div > p, .section-heading > p { font-size: 16px; }
  .problem-section { width: 100%; padding-left: 16px; padding-right: 16px; }
  .problem-grid { grid-template-columns: 1fr; }
  .problem-card,
  .problem-card:first-child { min-height: 245px; border-left: 1px solid rgba(255,255,255,.22); border-right: 1px solid rgba(255,255,255,.22); border-bottom: 1px solid rgba(255,255,255,.22); }
  .problem-card > span { margin-bottom: 50px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 260px; }
}

/* Workflow */
.workflow-section {
  width: 100%;
  max-width: none;
  padding-left: max(24px, calc((100% - 1440px) / 2));
  padding-right: max(24px, calc((100% - 1440px) / 2));
  background: #e8e5ff;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.workflow-heading {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 80px;
  align-items: end;
}
.workflow-heading > p { margin: 0; }
.workflow-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 55px; align-items: stretch; }
.steps-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--ink); }
.steps-list li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(20,20,20,.28);
}
.steps-list li > span { display: grid; place-items: center; width: 34px; height: 34px; border: 1px solid var(--ink); border-radius: 50%; font-size: 12px; font-weight: 800; }
.steps-list h3 { margin: 4px 0 6px; font-size: 18px; letter-spacing: -.025em; }
.steps-list p { margin: 0; color: #625f6f; font-size: 14px; line-height: 1.5; }
.workflow-demo {
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px;
  border: 1px solid var(--ink);
  border-radius: 24px;
  background: var(--white);
  box-shadow: 10px 10px 0 var(--ink);
}
.demo-question { width: 80%; padding: 18px; border: 1px solid var(--ink); border-radius: 15px; background: #f7f3ea; }
.demo-person { display: flex; align-items: center; gap: 11px; }
.demo-person > span { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 50%; background: #ffd0c6; font-size: 10px; font-weight: 800; }
.demo-person div { display: grid; gap: 2px; }
.demo-person strong { font-size: 12px; }
.demo-person small { color: #7a766e; font-size: 9px; }
.demo-question > p { margin: 17px 0 2px; font-family: Georgia, serif; font-size: 17px; line-height: 1.45; }
.demo-path { display: flex; flex-direction: column; gap: 5px; margin: 8px 0 8px 35%; }
.demo-path span { width: 5px; height: 5px; border-radius: 50%; background: var(--blue); }
.demo-answer { width: 86%; margin-left: auto; padding: 20px; border: 1px solid var(--ink); border-radius: 15px; background: var(--lime); }
.demo-label { margin: 0 0 13px !important; font-family: inherit !important; font-size: 9px !important; font-weight: 850; letter-spacing: .12em; }
.demo-label i { display: inline-block; width: 6px; height: 6px; margin-right: 5px; border-radius: 50%; background: #268d48; }
.demo-answer > p { margin: 0; font-family: Georgia, serif; font-size: 16px; line-height: 1.5; }
.demo-answer > div { display: flex; justify-content: flex-end; gap: 7px; margin-top: 18px; }
.demo-answer button { padding: 8px 11px; border: 1px solid var(--ink); border-radius: 7px; background: transparent; font-size: 10px; font-weight: 800; }
.demo-answer button:last-child { color: white; background: var(--ink); }

/* Moments */
.moments-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.moment-card { overflow: hidden; padding: 14px 28px 34px; border: 1px solid var(--ink); border-radius: 24px; }
.moment-visual { position: relative; height: 240px; margin: -14px -28px 28px; overflow: hidden; border-bottom: 1px solid var(--ink); background: #d6d3ca; }
.moment-visual > span { position: absolute; z-index: 3; right: 18px; top: 18px; display: grid; place-items: center; width: 34px; height: 34px; border: 1px solid var(--ink); border-radius: 50%; background: var(--white); font-size: 12px; font-weight: 800; }
.moment-visual i { position: absolute; display: block; border: 1px solid var(--ink); border-radius: 50%; }
.moment-visual i:nth-of-type(1) { width: 210px; height: 210px; left: 50%; top: 45%; transform: translate(-50%, -50%); background: var(--coral); }
.moment-visual i:nth-of-type(2) { width: 145px; height: 145px; left: 30%; top: 55%; background: var(--blue); }
.moment-visual i:nth-of-type(3) { width: 90px; height: 90px; left: 55%; top: 17%; background: var(--lime); }
.moment-card.blue .moment-visual i:nth-of-type(1) { width: 300px; height: 105px; top: 50%; border-radius: 90px; background: var(--blue); transform: translate(-50%, -50%) rotate(-24deg); }
.moment-card.blue .moment-visual i:nth-of-type(2) { width: 150px; height: 60px; left: 6%; top: 7%; border-radius: 90px; background: var(--lime); transform: rotate(22deg); }
.moment-card.blue .moment-visual i:nth-of-type(3) { width: 120px; height: 120px; left: 66%; top: 59%; background: var(--coral); }
.moment-card.lime .moment-visual i:nth-of-type(1) { width: 140px; height: 180px; left: 27%; top: 20%; border-radius: 80px 80px 12px 12px; background: var(--lime); transform: rotate(-12deg); }
.moment-card.lime .moment-visual i:nth-of-type(2) { width: 140px; height: 180px; left: 48%; top: 22%; border-radius: 12px 12px 80px 80px; background: var(--coral); transform: rotate(12deg); }
.moment-card.lime .moment-visual i:nth-of-type(3) { width: 70px; height: 70px; left: 42%; top: 35%; background: var(--blue); }
.moment-tag { margin: 0 0 18px !important; color: #6f6b64; font-size: 10px !important; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.moment-card h3 { margin: 0 0 17px; font-size: 27px; line-height: 1.12; letter-spacing: -.04em; }
.moment-card > p:last-child { margin: 0; color: #625f59; font-size: 15px; line-height: 1.55; }

/* Principle */
.principle-section { padding-top: 60px; }
.principle-card { position: relative; overflow: hidden; padding: 95px max(40px, 9vw); border-radius: 30px; color: var(--white); background: var(--blue); text-align: center; }
.principle-card::before,
.principle-card::after { content: ""; position: absolute; width: 280px; height: 280px; border: 1px solid rgba(255,255,255,.32); border-radius: 50%; }
.principle-card::before { left: -120px; top: -90px; }
.principle-card::after { right: -120px; bottom: -110px; }
.principle-mark { position: absolute; left: 7%; top: 33px; color: var(--lime); font-family: Georgia, serif; font-size: 150px; line-height: 1; }
.principle-card .kicker { color: var(--lime); }
.principle-card h2 { position: relative; max-width: 1000px; margin: 0 auto; font-family: Georgia, serif; font-size: clamp(38px, 4.2vw, 65px); line-height: 1.08; font-weight: 400; letter-spacing: -.045em; }
.principle-signoff { position: relative; display: flex; justify-content: center; align-items: center; gap: 13px; margin-top: 38px; }
.principle-signoff > div { display: grid; gap: 3px; text-align: left; }
.principle-signoff strong { font-size: 13px; }
.principle-signoff small { color: #d8dcff; font-size: 11px; }
.mini-mark { position: relative; width: 35px; height: 27px; }
.mini-mark i { position: absolute; width: 23px; height: 18px; border: 1px solid var(--ink); border-radius: 50%; background: var(--lime); }
.mini-mark i:last-child { right: 0; bottom: 0; background: var(--coral); }

@media (max-width: 1050px) {
  .workflow-grid { grid-template-columns: 1fr; }
  .steps-list { display: grid; grid-template-columns: repeat(2, 1fr); }
  .steps-list li:nth-child(odd) { padding-right: 24px; }
  .steps-list li:nth-child(even) { padding-left: 24px; border-left: 1px solid rgba(20,20,20,.28); }
  .moments-grid { grid-template-columns: 1fr; }
  .moment-card { display: grid; grid-template-columns: .75fr 1.25fr; gap: 24px; align-items: center; padding-bottom: 14px; }
  .moment-visual { grid-row: span 3; height: 260px; margin: 0 0 0 -14px; border-bottom: 0; border-right: 1px solid var(--ink); }
}

@media (max-width: 700px) {
  .workflow-section { width: 100%; padding-left: 16px; padding-right: 16px; }
  .workflow-heading { grid-template-columns: 1fr; gap: 20px; }
  .steps-list { display: block; }
  .steps-list li:nth-child(odd), .steps-list li:nth-child(even) { padding-left: 0; padding-right: 0; border-left: 0; }
  .workflow-demo { min-height: 430px; padding: 24px 18px; }
  .demo-question { width: 92%; }
  .demo-answer { width: 94%; }
  .moments-grid { gap: 14px; }
  .moment-card { display: block; padding: 14px 22px 28px; }
  .moment-visual { height: 220px; margin: -14px -22px 24px; border-right: 0; border-bottom: 1px solid var(--ink); }
  .principle-section { padding-top: 15px; }
  .principle-card { padding: 80px 22px 70px; border-radius: 22px; }
  .principle-mark { left: 3%; top: 17px; font-size: 100px; }
}

/* Pricing */
.pricing-section { padding-top: 120px; }
.pricing-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; }
.billing-toggle { display: flex; gap: 4px; padding: 4px; border: 1px solid var(--ink); border-radius: 999px; background: var(--white); }
.billing-toggle button { padding: 11px 14px; border: 0; border-radius: 999px; background: transparent; font-size: 12px; font-weight: 750; cursor: pointer; }
.billing-toggle button.active { color: white; background: var(--ink); }
.billing-toggle span { margin-left: 4px; color: var(--coral); font-size: 9px; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; align-items: stretch; }
.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 580px;
  padding: 32px;
  border: 1px solid var(--ink);
  border-radius: 24px;
  background: var(--white);
}
.featured-plan { color: white; background: var(--ink); box-shadow: 9px 9px 0 var(--coral); }
.plan-badge { position: absolute; right: 24px; top: 22px; padding: 7px 10px; border: 1px solid var(--ink); border-radius: 99px; color: var(--ink); background: var(--lime); font-size: 9px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.plan-name { margin: 0 0 25px; font-size: 16px; font-weight: 850; letter-spacing: .06em; text-transform: uppercase; }
.plan-price { display: flex; align-items: end; gap: 8px; margin: 0; }
.plan-price strong { font-size: 64px; line-height: .9; letter-spacing: -.07em; }
.plan-price span { margin-bottom: 6px; color: #77736c; font-size: 13px; }
.featured-plan .plan-price span { color: #aaa79f; }
.plan-note { margin: 12px 0 30px; color: #89857d; font-size: 11px; }
.plan-description { min-height: 52px; margin: 0; color: #5e5b55; font-size: 15px; line-height: 1.55; }
.featured-plan .plan-description { color: #bbb8b0; }
.price-card ul { display: grid; gap: 14px; margin: 30px 0 38px; padding: 27px 0 0; border-top: 1px solid var(--line); list-style: none; }
.featured-plan ul { border-color: rgba(255,255,255,.2); }
.price-card li { display: flex; gap: 10px; align-items: center; font-size: 13px; }
.price-card li span { display: grid; place-items: center; width: 20px; height: 20px; border-radius: 50%; color: var(--ink); background: var(--lime); font-size: 10px; font-weight: 900; }
.price-card > .button { margin-top: auto; }
.featured-plan .button-primary { color: var(--ink); background: var(--lime); box-shadow: 5px 5px 0 var(--coral); }
.pricing-footnote { margin: 28px 0 0; color: #75716a; font-size: 12px; text-align: center; }

/* FAQ */
.faq-section { display: grid; grid-template-columns: .72fr 1.28fr; gap: 80px; border-top: 1px solid var(--line); }
.faq-heading { margin: 0; }
.faq-heading h2 { font-size: clamp(40px, 4.4vw, 64px); }
.faq-list { border-top: 1px solid var(--ink); }
.faq-list details { border-bottom: 1px solid var(--ink); }
.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 25px 0;
  cursor: pointer;
  list-style: none;
  font-size: 18px;
  font-weight: 750;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { display: grid; place-items: center; flex: 0 0 auto; width: 28px; height: 28px; border: 1px solid var(--ink); border-radius: 50%; transition: transform .2s ease; }
.faq-list details[open] summary span { transform: rotate(45deg); background: var(--lime); }
.faq-list details p { max-width: 720px; margin: -4px 50px 26px 0; color: #615e57; font-size: 15px; line-height: 1.65; }

/* Closing CTA and footer */
.closing-cta {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 100px 24px;
  color: white;
  background: var(--coral);
  text-align: center;
}
.closing-cta .kicker { color: var(--ink); }
.closing-cta h2 { max-width: 920px; }
.closing-cta > p:not(.kicker) { max-width: 600px; margin: 25px 0 32px; font-size: 18px; line-height: 1.6; }
.light-button { color: var(--ink); background: var(--white); box-shadow: 5px 5px 0 var(--ink); }
.cta-decoration { position: absolute; width: 210px; height: 210px; }
.cta-left { left: -30px; top: 24px; }
.cta-right { right: -40px; bottom: 20px; }
.cta-decoration i { position: absolute; display: block; border: 1px solid var(--ink); border-radius: 50%; background: var(--lime); }
.cta-decoration i:first-child { width: 140px; height: 140px; }
.cta-decoration i:nth-child(2) { width: 105px; height: 105px; right: 0; top: 70px; background: var(--blue); }
.cta-decoration i:nth-child(3) { width: 70px; height: 70px; left: 56px; top: 118px; background: var(--white); }
.site-footer { padding: 72px max(24px, calc((100% - 1440px) / 2)) 25px; color: #efede7; background: var(--ink); }
.footer-main { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; padding-bottom: 76px; }
.footer-brand .brand { margin-bottom: 20px; }
.footer-brand .brand-mark span { border-color: white; }
.footer-brand p { max-width: 370px; margin: 0; color: #8f8c84; font-size: 15px; line-height: 1.55; }
.footer-links { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.footer-links > div { display: flex; flex-direction: column; gap: 14px; }
.footer-links strong { margin-bottom: 9px; color: #77746d; font-size: 10px; letter-spacing: .15em; text-transform: uppercase; }
.footer-links a { width: fit-content; font-size: 14px; }
.footer-links a:hover { color: var(--lime); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.15); color: #77746d; font-size: 11px; }

@media (max-width: 1050px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card { min-height: 0; }
  .plan-description { min-height: 0; }
  .faq-section { grid-template-columns: 1fr; gap: 38px; }
}

@media (max-width: 700px) {
  .pricing-heading { align-items: flex-start; flex-direction: column; }
  .billing-toggle { width: 100%; }
  .billing-toggle button { flex: 1; }
  .price-card { padding: 26px 22px; }
  .plan-price strong { font-size: 58px; }
  .faq-list summary { font-size: 16px; }
  .closing-cta { min-height: 600px; padding: 90px 20px; }
  .closing-cta > p:not(.kicker) { font-size: 16px; }
  .cta-decoration { opacity: .45; transform: scale(.7); }
  .footer-main { grid-template-columns: 1fr; gap: 50px; padding-bottom: 55px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
}

/* Contact, signup, legal, and 404 pages */
.subpage-hero,
.start-layout {
  width: min(1280px, calc(100% - 48px));
  min-height: calc(100vh - 78px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 9vw;
  align-items: center;
  padding: 80px 0 110px;
}
.subpage-hero h1,
.start-copy h1 { max-width: 650px; }
.subpage-hero > div > p:not(.kicker),
.start-copy > p:not(.kicker) { max-width: 580px; margin: 26px 0 0; color: #5f5c55; font-size: 18px; line-height: 1.62; }
.contact-details { display: grid; gap: 20px; margin-top: 50px; padding-top: 28px; border-top: 1px solid var(--line); }
.contact-details > div { display: grid; gap: 5px; }
.contact-details span { color: #8b877e; font-size: 9px; font-weight: 850; letter-spacing: .14em; }
.contact-details a,
.contact-details p { margin: 0; font-size: 14px; }
.contact-form,
.start-form {
  display: grid;
  gap: 20px;
  padding: 36px;
  border: 1px solid var(--ink);
  border-radius: 24px;
  background: var(--white);
  box-shadow: 10px 10px 0 var(--blue);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form label,
.start-form label { display: grid; gap: 8px; color: #504d47; font-size: 12px; font-weight: 750; }
.contact-form input,
.contact-form textarea,
.contact-form select,
.start-form input,
.start-form select {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid #aaa69c;
  border-radius: 10px;
  outline: none;
  color: var(--ink);
  background: white;
  font: inherit;
  font-size: 14px;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.contact-form textarea { resize: vertical; }
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus,
.start-form input:focus,
.start-form select:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(79,107,255,.15); }
.contact-form .button { width: fit-content; border: 1px solid var(--ink); cursor: pointer; }
.form-success {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 40px;
  border: 1px solid var(--ink);
  border-radius: 24px;
  background: var(--lime);
  box-shadow: 10px 10px 0 var(--ink);
}
.form-success > span { display: grid; place-items: center; width: 48px; height: 48px; border: 1px solid var(--ink); border-radius: 50%; background: var(--white); font-size: 21px; font-weight: 900; }
.form-success h2 { margin: 28px 0 14px; font-size: 39px; letter-spacing: -.05em; }
.form-success p { margin: 0 0 26px; line-height: 1.6; }
.form-success button { cursor: pointer; }

.start-page { min-height: 100vh; background: #e8e5ff; }
.start-layout { min-height: calc(100vh - 78px); }
.start-copy ul { display: grid; gap: 15px; margin: 38px 0 45px; padding: 0; list-style: none; }
.start-copy li { display: flex; align-items: center; gap: 11px; font-size: 14px; }
.start-copy li span { display: grid; place-items: center; width: 23px; height: 23px; border: 1px solid var(--ink); border-radius: 50%; background: var(--lime); font-size: 10px; font-weight: 900; }
.start-copy > a { border-bottom: 1px solid var(--ink); font-size: 13px; font-weight: 750; }
.start-form { box-shadow: 10px 10px 0 var(--coral); }
.selected-plan { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 6px; padding: 18px; border: 1px solid var(--ink); border-radius: 13px; background: var(--lime); }
.selected-plan span { color: #5d6351; font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.selected-plan strong { grid-row: span 2; font-size: 22px; }
.selected-plan small { font-size: 11px; }
.checkbox-label { display: flex !important; grid-template-columns: none !important; align-items: flex-start; gap: 10px !important; line-height: 1.5; }
.checkbox-label input { flex: 0 0 auto; width: 17px; height: 17px; margin-top: 2px; padding: 0; }
.checkbox-label a { text-decoration: underline; }
.full-button { width: 100%; justify-content: space-between; border: 1px solid var(--ink); cursor: pointer; }
.form-fineprint { margin: -6px 0 0; color: #88847c; font-size: 10px; text-align: center; }
.start-success { box-shadow: 10px 10px 0 var(--coral); }

.legal-page {
  width: min(900px, calc(100% - 48px));
  margin: 0 auto;
  padding: 105px 0 130px;
}
.legal-page header { margin-bottom: 60px; padding-bottom: 46px; border-bottom: 1px solid var(--ink); }
.legal-page header > p:last-child { margin: 20px 0 0; color: #7c786f; font-size: 12px; }
.legal-intro { margin-bottom: 55px; padding: 24px; border: 1px solid var(--ink); border-radius: 14px; background: #fff0eb; font-size: 14px; line-height: 1.6; }
.legal-page section { display: grid; grid-template-columns: .65fr 1.35fr; gap: 45px; padding: 30px 0; border-bottom: 1px solid var(--line); }
.legal-page h2 { margin: 0; font-size: 18px; letter-spacing: -.025em; }
.legal-page section p { margin: 0; color: #59564f; font-size: 15px; line-height: 1.75; }
.legal-page section a { text-decoration: underline; }

.not-found-page {
  min-height: 660px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 90px 24px;
  text-align: center;
}
.not-found-page > span { display: grid; place-items: center; width: 76px; height: 76px; margin-bottom: 28px; border: 1px solid var(--ink); border-radius: 50%; background: var(--coral); font-weight: 900; transform: rotate(-8deg); }
.not-found-page h1 { max-width: 760px; }
.not-found-page p { max-width: 530px; margin: 24px 0 32px; color: #67635c; font-size: 17px; line-height: 1.6; }

@media (max-width: 900px) {
  .subpage-hero,
  .start-layout { grid-template-columns: 1fr; gap: 50px; padding-top: 70px; }
  .contact-form,
  .start-form { max-width: 680px; }
}

@media (max-width: 700px) {
  .subpage-hero,
  .start-layout { width: min(100% - 32px, 1280px); padding: 65px 0 90px; }
  .subpage-hero > div > p:not(.kicker), .start-copy > p:not(.kicker) { font-size: 16px; }
  .field-row { grid-template-columns: 1fr; }
  .contact-form,
  .start-form { padding: 24px 18px; border-radius: 18px; box-shadow: 6px 6px 0 var(--blue); }
  .start-form { box-shadow: 6px 6px 0 var(--coral); }
  .legal-page { width: min(100% - 32px, 900px); padding: 72px 0 90px; }
  .legal-page header { margin-bottom: 40px; }
  .legal-page section { grid-template-columns: 1fr; gap: 14px; }
  .not-found-page { min-height: 560px; }
}

/* Software purchase and compliance information */
.purchase-info-section { background: #f6f2e9; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.purchase-info-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--ink); border-radius: 18px; overflow: hidden; background: var(--paper); }
.purchase-info-grid article { min-height: 250px; padding: 28px 24px; border-right: 1px solid var(--ink); }
.purchase-info-grid article:last-child { border-right: 0; }
.purchase-info-grid article > span { color: var(--blue); font-size: 12px; font-weight: 850; letter-spacing: .1em; }
.purchase-info-grid h3 { margin: 56px 0 12px; font-family: Georgia, serif; font-size: 22px; line-height: 1.15; }
.purchase-info-grid p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.65; }
.policy-links { display: flex; flex-wrap: wrap; gap: 14px 28px; margin: 28px 0 0; }
.policy-links a { color: inherit; font-size: 14px; font-weight: 800; text-decoration: underline; text-underline-offset: 4px; }
.footer-brand small { display: block; max-width: 420px; margin-top: 14px; color: #777269; font-size: 12px; line-height: 1.6; }
.contact-details > div { max-width: 100%; }
.contact-details a, .contact-details p { overflow-wrap: anywhere; }

@media (max-width: 900px) {
  .purchase-info-grid { grid-template-columns: repeat(2, 1fr); }
  .purchase-info-grid article:nth-child(2) { border-right: 0; }
  .purchase-info-grid article:nth-child(-n+2) { border-bottom: 1px solid var(--ink); }
}

@media (max-width: 620px) {
  .purchase-info-grid { grid-template-columns: 1fr; }
  .purchase-info-grid article,
  .purchase-info-grid article:nth-child(2) { min-height: auto; border-right: 0; border-bottom: 1px solid var(--ink); }
  .purchase-info-grid article:last-child { border-bottom: 0; }
  .purchase-info-grid h3 { margin-top: 30px; }
}
