@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;450;500;550;600;650;700&display=swap");

:root {
  font-family:
    "DM Sans",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: #172526;
  background: #fff;
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  scroll-behavior: smooth;
  --header-height: 78px;
  --header-inset: 16px;
  --panel-radius: 26px;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  padding-bottom: 100px;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button {
  font: inherit;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
a,
summary {
  touch-action: manipulation;
}
button {
  cursor: pointer;
}
button:focus-visible,
a:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid #236d87;
  outline-offset: 5px;
}
::selection {
  background: #b7e3df;
}
h1,
h2,
h3,
p {
  margin: 0;
}
img {
  display: block;
}
section[id],
#main {
  scroll-margin-top: calc(var(--header-height) + var(--header-inset) + 18px);
}
.skip-link {
  position: fixed;
  left: 24px;
  top: -80px;
  z-index: 20;
  padding: 12px 20px;
  background: white;
  border-radius: 8px;
}
.skip-link:focus {
  top: 24px;
}
.hero {
  position: relative;
  isolation: isolate;
  margin: calc(-1 * var(--header-height)) var(--header-inset) 0;
  padding-top: var(--header-height);
  border-radius: var(--panel-radius);
  background: #b9eaf1;
  overflow: hidden;
  border: 1px solid #a8dce4;
  box-shadow: 0 12px 25px #1a41400c;
}
.sky {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  background: linear-gradient(160deg, #a4dfeb 0%, #c8f0f3 48%, #d8f0eb 100%);
}
.cloud {
  position: absolute;
  width: 750px;
  height: 310px;
  filter: blur(23px);
  opacity: 0.8;
  background:
    radial-gradient(ellipse at 30% 60%, #fff 0 24%, transparent 45%),
    radial-gradient(ellipse at 50% 48%, #fff 0 28%, transparent 49%),
    radial-gradient(ellipse at 70% 70%, #fff 0 24%, transparent 47%);
  transform: rotate(-12deg);
}
.cloud-one {
  top: 100px;
  left: -320px;
}
.cloud-two {
  top: 20px;
  right: -270px;
  width: 950px;
  height: 420px;
  opacity: 0.75;
  transform: rotate(-18deg);
}
.cloud-three {
  left: 22%;
  top: 460px;
  opacity: 0.4;
  width: 1000px;
}
.header {
  position: sticky;
  top: var(--header-inset);
  z-index: 10;
  margin: var(--header-inset) var(--header-inset) 0;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
  gap: 24px;
  border: 1px solid transparent;
  border-radius: var(--panel-radius);
  isolation: isolate;
}
.header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  border: 1px solid #ffffff80;
  border-radius: inherit;
  background: #edf9f9ed;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 8px 28px #17252614;
  opacity: 0;
  transition: opacity 260ms ease;
}
.header.is-stuck::before {
  opacity: 1;
}
.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -1px;
}
.header nav {
  display: flex;
  gap: 34px;
  font-size: 14px;
}
.header nav a:hover,
footer a:hover {
  opacity: 0.65;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 19px;
  border: 1px solid #172526;
  background: #172526;
  color: #fff;
  border-radius: 100px;
  padding: 13px 22px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  transition:
    background 0.2s,
    transform 0.2s;
}
.button:hover {
  background: #304445;
  transform: translateY(-2px);
}
.button-small {
  font-size: 13px;
  padding: 10px 16px;
  gap: 16px;
}
.hero-copy {
  text-align: center;
  padding: 53px 24px 0;
}
.eyebrow {
  font-size: 13px;
  font-weight: 450;
}
.beta-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid #35606730;
  padding: 5px 10px;
  border-radius: 30px;
  background: #d2f4f53d;
}
.status-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #3e7b64;
  box-shadow: 0 0 0 3px #3e7b6412;
}
.hero h1 {
  font-size: clamp(42px, 4.7vw, 68px);
  line-height: 1.06;
  font-weight: 450;
  letter-spacing: -3.5px;
  margin: 24px auto 20px;
  max-width: 1000px;
}
.hero-copy > p {
  color: #375b60;
  font-size: 17px;
  line-height: 1.6;
}
.hero-downloads {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 26px;
}
.hero-downloads .button {
  gap: 10px;
}
.hero-downloads svg {
  flex-shrink: 0;
}
.hero-note {
  display: block;
  font-size: 12px;
  color: #47696c;
  margin-top: 12px;
}
.product-stage {
  margin: 48px auto 0;
  width: calc(100% - 120px);
  max-width: 1120px;
  container-type: inline-size;
}
.product-video {
  display: block;
  width: 100%;
  height: auto;
  background: #edf2f1;
  border: 1px solid #ffffffc9;
  border-radius: 1.7cqi;
  overflow: hidden;
  box-shadow: 0 18px 70px #235c6126, 0 2px 9px #1b4b5412;
}

.avatar {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #eae7dc;
  color: #7c755d;
  font-size: 12px;
  flex-shrink: 0;
}
.preview-caption {
  text-align: center;
  color: #537a7a;
  font-size: 12px;
  margin: 17px 0 21px;
}
.page-body {
  max-width: 1120px;
  margin: auto;
  border-left: 1px solid #eff0ec;
  border-right: 1px solid #eff0ec;
}
.section-border {
  border-bottom: 1px solid #e9ece7;
}
.introduction {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  padding: 82px 58px;
}
.section-label {
  color: #48766e;
  font-size: 13px;
  font-weight: 500;
}
.introduction .section-label {
  padding-top: 4px;
}
.introduction h2 {
  font-size: 23px;
  line-height: 1.4;
  letter-spacing: -0.6px;
  font-weight: 500;
}
.introduction div > p {
  font-size: 22px;
  line-height: 1.5;
  color: #90958e;
  letter-spacing: -0.6px;
  margin-top: 3px;
}
.introduction div > p.intro-closer {
  color: #5d645b;
}
.introduction.is-past-midpoint h2 {
  color: #5d645b;
}
.introduction.is-past-midpoint div > p.intro-closer {
  color: #172526;
}
.delegation-section {
  padding: 76px 38px 60px;
}

.delegation-demo {
  margin-top: 36px;
}
.delegation-picker {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 5px;
  width: fit-content;
  margin: 0 auto -24px;
  padding: 5px;
  border: 1px solid #d9e1d3;
  border-radius: 100px;
  background: #fff;
  box-shadow: 0 6px 18px #263d2110;
  z-index: 2;
}
.delegation-picker legend,
.delegation-picker input {
  position: absolute;
  width: 1px;
  height: 1px;
  clip-path: inset(50%);
  overflow: hidden;
  white-space: nowrap;
}
.delegation-picker label {
  min-width: 110px;
  padding: 10px 18px;
  border-radius: 100px;
  text-align: center;
  font-size: 13px;
  color: #64735d;
  cursor: pointer;
  transition: background .25s, color .25s;
}
.delegation-picker input:checked + label {
  background: #263e32;
  color: #edf6e7;
}
.delegation-picker input:focus-visible + label {
  outline: 3px solid #236d87;
  outline-offset: 3px;
}
.delegation-picker label span { margin-left: 8px; }
.delegation-scene {
  position: relative;
  overflow: hidden;
  padding: 44px 34px 22px;
  border: 1px solid #dce4d6;
  border-radius: 22px;
  background:
    radial-gradient(ellipse at 50% 20%, #e0ebcd90, transparent 55%),
    radial-gradient(#a0b18c30 .8px, transparent .8px),
    #f8faf5;
  background-size: auto, 18px 18px, auto;
}
.agent-orbit {
  max-width: 100%;
  position: relative;
  width: 230px;
  height: 150px;
  margin: auto;
  display: grid;
  place-items: center;
}
.orbit-ring {
  max-width: 100%;
  position: absolute;
  border: 1px solid #a7bd8c45;
  border-radius: 50%;
  transform: rotate(-22deg);
}
.ring-outer { width: 230px; height: 120px; }
.ring-inner { width: 170px; height: 100px; transform: rotate(25deg); }
.agent-core {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  border: 1px solid #fff;
  border-radius: 24px;
  background: linear-gradient(145deg, #fff, #e6efd9);
  box-shadow: 0 0 0 8px #ffffff50, 0 12px 32px #56743a20;
  transform: rotate(-8deg);
}
.agent-core img { opacity: .8; }
.orbit-spark { position: absolute; color: #739556; }
.spark-one { left: 19px; top: 68px; font-size: 20px; }
.spark-two { right: 22px; top: 30px; font-size: 25px; }
.delegation-statement { text-align: center; margin: 0 0 32px; }
.delegation-statement h3 {
  font-size: 29px;
  font-weight: 450;
  line-height: 1.2;
  letter-spacing: -1px;
}
.delegation-statement p { margin-top: 12px; font-size: 13px; color: #64735d; }
.work-streams { display: grid; grid-template-columns: minmax(0, 1fr) 36px minmax(0, 1fr); align-items: start; }
.work-stream { padding: 18px; background: #ffffffc9; border: 1px solid #e0e7d9; border-radius: 14px; }
.agent-stream { box-shadow: 0 8px 30px #52693e08; }
.stream-heading { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; color: #506346; font-size: 13px; }
.work-item { display: flex; gap: 10px; align-items: center; padding: 15px 0; border-top: 1px solid #edf0e8; animation: work-arrive .35s ease both; }
.work-icon { display: grid; place-items: center; flex: 0 0 28px; height: 28px; border-radius: 8px; background: #eff4e8; color: #63834f; font-size: 14px; }
.work-item strong { display: block; font-size: 13px; font-weight: 500; }
.work-item small { display: block; font-size: 12px; color: #78836f; margin-top: 3px; }
.work-state { margin-left: auto; font-size: 11px; color: #617b4f; white-space: nowrap; }
.your-stream .work-icon { background: #f5efe1; color: #9a8050; }
.your-stream .work-state { color: #9a8050; }
.stream-bridge { padding-top: 88px; text-align: center; color: #98aa89; }
.stream-idle { color: #89947e; font-size: 12px; padding: 18px 0 8px; }
.demo-caption { text-align: center; font-size: 12px; color: #7d8b72; margin-top: 25px; }
.demo-caption .status-dot { width: 4px; height: 4px; margin-right: 6px; }
.delegation-demo .level-low,
.delegation-demo .level-balanced,
.delegation-demo .your-routine,
.delegation-demo .your-followup { display: none; }
.delegation-demo:has(#delegate-low:checked) .level-max,
.delegation-demo:has(#delegate-balanced:checked) .level-max,
.delegation-demo:has(#delegate-low:checked) .agent-routine,
.delegation-demo:has(#delegate-low:checked) .agent-followup,
.delegation-demo:has(#delegate-balanced:checked) .agent-followup { display: none; }
.delegation-demo:has(#delegate-low:checked) .level-low,
.delegation-demo:has(#delegate-balanced:checked) .level-balanced { display: block; }
.delegation-demo:has(#delegate-low:checked) .your-routine,
.delegation-demo:has(#delegate-low:checked) .your-followup,
.delegation-demo:has(#delegate-balanced:checked) .your-followup { display: flex; }
.delegation-note { margin: 24px auto 0; text-align: center; color: #63725e; font-size: 13px; max-width: 650px; }
@keyframes work-arrive {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .work-item { animation: none; }
  .delegation-picker label { transition: none; }
}
@media (max-width: 900px) {
  .delegation-section { padding: 48px 12px 36px; }
  .delegation-picker label { min-width: 0; padding: 10px 17px; font-size: 13px; }
  .delegation-scene { padding: 36px 14px 20px; }
  .delegation-statement h3 { font-size: 25px; }
  .delegation-statement p { font-size: 13px; }
  .work-streams { grid-template-columns: 1fr; gap: 12px; }
  .stream-bridge { display: none; }
  .work-stream { padding: 14px; }
  .work-state { display: none; }
}
.feature-section {
  padding: 82px 38px 60px;
}
.section-heading {
  text-align: center;
}
.section-heading > h2,
.relationship-copy h2,
.faq-section h2 {
  font-size: 43px;
  line-height: 1.12;
  letter-spacing: -1.8px;
  font-weight: 450;
  margin: 20px 0;
}
.section-heading > h2 {
  font-size: clamp(43px, 5.4vw, 64px);
  line-height: 1.08;
  letter-spacing: -2.4px;
  margin: 22px 0;
}
.section-heading > h2 > span {
  color: #698651;
}
.section-heading > p:last-child:not(.section-label) {
  font-size: 15px;
  line-height: 1.7;
  color: #8b948b;
}
.feature-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 18px;
  margin-top: 43px;
}
.feature-card {
  border-radius: 14px;
  overflow: hidden;
  background: #f2f4ee;
  min-height: 458px;
  position: relative;
}
.feature-copy {
  padding: 30px;
}
.feature-number {
  font-size: 12px;
  color: #839078;
}
.feature-copy h3 {
  font-size: 23px;
  letter-spacing: -0.7px;
  font-weight: 450;
  margin: 12px 0 9px;
}
.feature-copy p {
  font-size: 13px;
  line-height: 1.65;
  color: #858f7d;
  max-width: 330px;
}
.compose-illustration {
  padding: 0 30px;
}
.prompt-bubble {
  position: relative;
  font-size: 13px;
  padding: 15px 43px 15px 17px;
  background: #fff;
  border: 1px solid #e4e8dc;
  border-radius: 10px;
  box-shadow: 0 4px 10px #42503306;
}
.prompt-bubble > span {
  position: absolute;
  right: 13px;
  bottom: 17px;
  background: #dfe8d2;
  border-radius: 4px;
  padding: 0 6px;
}
.context-chips {
  display: flex;
  gap: 7px;
  margin: 10px 0 17px;
}
.context-chips > span {
  font-size: 10px;
  color: #7f8b72;
  border: 1px solid #dfe5d5;
  border-radius: 5px;
  padding: 3px 7px;
}
.mini-draft {
  background: #fff;
  border-radius: 10px 10px 0 0;
  padding: 20px;
  border: 1px solid #e2e7da;
  border-bottom: 0;
  box-shadow: 0 10px 30px #4c663712;
  color: #939989;
}
.mini-draft > span:first-child {
  display: block;
  font-size: 11px;
}
.mini-draft strong {
  font-weight: 500;
  color: #647453;
  margin-left: 9px;
}
.mini-draft-label {
  float: right;
  font-size: 10px;
  color: #9aa38e;
}
.mini-draft p {
  font-size: 12px;
  line-height: 1.7;
  margin: 16px 0 12px;
  color: #76816c;
}
.skeleton-line {
  height: 4px;
  background: #eff1e9;
  width: 90%;
  margin-bottom: 8px;
  border-radius: 5px;
}
.skeleton-line.short {
  width: 70%;
}
.mini-signoff {
  display: block;
  font-size: 12px;
  line-height: 1.7;
  margin-top: 13px;
}
.followup-card {
  background: #eef3f4;
}
.followup-card .feature-number,
.followup-card .feature-copy p {
  color: #7e9498;
}
.timeline {
  padding: 15px 30px 35px 50px;
  position: relative;
}
.timeline > div:not(.timeline-result) {
  position: relative;
  padding: 0 0 32px 20px;
  border-left: 1px solid #cedddc;
}
.timeline-dot {
  position: absolute;
  left: -4px;
  top: 2px;
  height: 7px;
  width: 7px;
  border-radius: 50%;
  background: #9bbab9;
  box-shadow: 0 0 0 5px #eef3f4;
}
.timeline small {
  font-size: 11px;
  color: #8aa0a0;
}
.timeline p {
  font-size: 13px;
  color: #607b7b;
  margin-top: 5px;
}
.timeline-result {
  display: flex;
  gap: 12px;
  align-items: center;
  background: #fff;
  border: 1px solid #dce7e6;
  border-radius: 9px;
  padding: 16px;
  margin-left: -20px;
  box-shadow: 0 4px 15px #365d6008;
}
.timeline-result strong {
  font-size: 12px;
  font-weight: 500;
  color: #537471;
}
.timeline-result p {
  font-size: 12px;
  color: #98a7a2;
}
.sparkle {
  font-size: 25px;
  color: #79a197;
}
.ready-dot {
  margin-left: auto;
  background: #9cb39a;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}
.relationship-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  padding: 70px 60px 95px;
  gap: 50px;
}
.relationship-copy > p:not(.section-label) {
  font-size: 15px;
  line-height: 1.75;
  max-width: 330px;
  color: #8b948b;
}
.relationship-copy > p.roadmap-note {
  font-size: 12px;
  margin-top: 19px;
  color: #8a9782;
}
.person-illustration {
  position: relative;
  background: radial-gradient(ellipse, #e9efe1, transparent 70%);
  padding: 30px 35px;
}
.person-card {
  transform: rotate(-3deg);
  background: #fff;
  border: 1px solid #e8ebe3;
  border-radius: 12px;
  box-shadow: 0 12px 40px #425b2b0b;
  padding: 23px;
  text-align: center;
}
.large-avatar {
  object-fit: cover;
  margin: auto;
  width: 49px;
  height: 49px;
  font-size: 16px;
  background: #ece8dc;
}
.person-card h3 {
  font-size: 17px;
  font-weight: 500;
  margin-top: 12px;
}
.person-card > p {
  font-size: 12px;
  color: #8e9588;
  margin-top: 3px;
}
.person-tags {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin: 12px 0 22px;
}
.person-tags span {
  font-size: 10px;
  padding: 3px 7px;
  background: #eef2e7;
  border-radius: 4px;
  color: #7f8c6d;
}
.person-note {
  text-align: left;
  background: #f8f9f5;
  border: 1px solid #edf0e7;
  padding: 12px;
  border-radius: 6px;
}
.person-note > span {
  font-size: 11px;
  color: #7d8b70;
}
.person-note p {
  font-size: 12px;
  line-height: 1.75;
  margin-top: 6px;
  color: #929b89;
}
.person-thread {
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: left;
  margin-top: 18px;
  color: #87957a;
}
.person-thread strong {
  font-size: 11px;
  font-weight: 500;
  display: block;
}
.person-thread small {
  font-size: 10px;
  color: #a0a794;
}
.person-thread > span:last-child {
  margin-left: auto;
}
.orbit-note {
  position: absolute;
  background: #fff;
  border: 1px solid #e8ece3;
  padding: 8px 12px;
  border-radius: 7px;
  font-size: 12px;
  color: #8b967e;
  box-shadow: 0 3px 12px #48583205;
  white-space: nowrap;
}
.note-one {
  top: 4px;
  right: -5px;
  transform: rotate(5deg);
}
.note-two {
  bottom: 9px;
  left: 0;
  transform: rotate(-5deg);
}
.control-section {
  padding: 70px 60px 85px;
}
.control-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 48px;
}
.control-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid #e4e9e0;
  border-radius: 9px;
  background: #f8faf6;
  font-size: 20px;
  color: #79936c;
}
.model-logos,
.platform-logos {
  display: flex;
  gap: 8px;
}
.control-grid h3 {
  font-size: 16px;
  font-weight: 500;
  margin: 19px 0 10px;
  letter-spacing: -0.3px;
}
.control-grid p {
  font-size: 13px;
  line-height: 1.8;
  color: #899381;
}
.faq-section {
  display: grid;
  grid-template-columns: 1fr 1.65fr;
  padding: 80px 60px;
  gap: 60px;
}
.faqs details {
  border-bottom: 1px solid #e8ece4;
}
.faqs summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0;
  list-style: none;
  cursor: pointer;
  font-size: 13px;
}
.faqs summary::-webkit-details-marker {
  display: none;
}
.faqs summary > span {
  font-size: 19px;
  color: #8c9985;
  transition: transform 0.2s;
}
.faqs details[open] summary > span {
  transform: rotate(45deg);
}
.faqs details p {
  font-size: 13px;
  color: #839079;
  line-height: 1.8;
  padding: 0 25px 22px 0;
}
.closing {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #b9eaf1;
  margin: 0 16px;
  border-radius: 24px;
  text-align: center;
  padding: 74px 24px 80px;
}
.closing-plane {
  margin: 0 auto 20px;
  width: 64px;
  opacity: 0.75;
  transform: rotate(-8deg);
}
.closing h2 {
  font-size: 51px;
  font-weight: 450;
  line-height: 1.1;
  letter-spacing: -2px;
  margin: 18px 0;
}
.closing > p:not(.section-label) {
  font-size: 15px;
  color: #536f77;
}
.closing .section-label { color: #436d79; }
.waitlist-form {
  width: min(100%, 460px);
  margin: 26px auto 0;
  text-align: left;
}
.waitlist-row {
  display: flex;
  gap: 8px;
}
.waitlist-row input {
  flex: 1;
  min-width: 0;
  font: inherit;
  font-size: 16px;
  color: #172526;
  background: #fff;
  border: 1px solid #8fbfc7;
  border-radius: 100px;
  padding: 12px 18px;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.waitlist-row input::placeholder {
  color: #7d979b;
}
.waitlist-row input:focus-visible {
  outline: 3px solid #236d87;
  outline-offset: 2px;
  border-color: #236d87;
}
.waitlist-submit {
  position: relative;
  white-space: nowrap;
  padding-inline: 24px;
}
.waitlist-submit:disabled {
  cursor: not-allowed;
  opacity: 0.55;
  transform: none;
}
.waitlist-submit[aria-busy="true"] {
  opacity: 0.75;
}
.waitlist-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  display: none;
  width: 16px;
  height: 16px;
  margin: -8px 0 0 -8px;
  border: 2px solid #ffffff59;
  border-top-color: #fff;
  border-radius: 50%;
  animation: waitlist-spin 0.7s linear infinite;
}
.waitlist-submit[aria-busy="true"] .waitlist-spinner {
  display: block;
}
.waitlist-submit[aria-busy="true"] .waitlist-submit-label {
  visibility: hidden;
}
@keyframes waitlist-spin {
  to {
    transform: rotate(360deg);
  }
}
.waitlist-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}
.waitlist-privacy {
  font-size: 12px;
  line-height: 1.6;
  color: #47696c;
  margin: 12px auto 0;
  max-width: 440px;
  text-align: center;
}
.waitlist-status {
  margin: 10px 0 0;
  font-size: 13px;
  text-align: center;
  color: #436d79;
}
.waitlist-status:empty {
  display: none;
}
.waitlist-status[data-state="error"] {
  color: #8c3b2e;
}
.waitlist-status[data-state="success"] {
  color: #2f6b4f;
}
footer {
  max-width: 1240px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 32px 30px;
  color: #8b9386;
  font-size: 12px;
}
footer .wordmark {
  font-size: 19px;
  color: #263927;
}
footer > a:last-child {
  font-size: 12px;
}

.relationship-copy > p.memory-benefit {
  color: #52684b;
  font-size: 13px;
  margin-top: 22px;
}
.night-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 55px;
  margin: 32px 25px 0;
  padding: 65px 45px;
  border-radius: 16px;
  background: #20382f;
  color: #f0f4e7;
}
.night-section:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse at 100% 0%, #779c6345, transparent 65%),
    radial-gradient(ellipse at 10% 100%, #95bfa112, transparent 55%);
}
.night-copy .section-label {
  color: #a9c19b;
}
.night-copy h2 {
  font-size: 39px;
  letter-spacing: -1.4px;
  line-height: 1.15;
  font-weight: 450;
  margin: 20px 0;
}
.night-copy > p:not(.section-label) {
  font-size: 13px;
  line-height: 1.8;
  color: #b0bead;
  max-width: 330px;
}
.night-footnote {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 11px;
  color: #98b48e;
  margin-top: 28px;
}
.night-footnote .status-dot,
.brief-bottom .status-dot {
  background: #b4cd98;
  box-shadow: 0 0 0 3px #b4cd9812;
}
.morning-brief {
  border: 1px solid #afc99d30;
  border-radius: 12px;
  background: linear-gradient(135deg, #ffffff0d, #ffffff04);
  padding: 24px;
  box-shadow: 0 20px 40px #00160e1f;
  transform: rotate(2deg);
}
.brief-topline {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 11px;
  color: #abc59b;
}
.brief-topline > span:last-child {
  color: #718970;
}
.morning-brief h3 {
  font-size: 23px;
  font-weight: 450;
  line-height: 1.3;
  letter-spacing: -0.6px;
  margin: 24px 0;
}
.brief-task {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin-top: 21px;
}
.task-check,
.task-review {
  display: grid;
  place-items: center;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  font-size: 12px;
  color: #bed3ab;
  background: #9db38c1a;
  flex-shrink: 0;
}
.task-review {
  color: #e6cd96;
  background: #e6cd9610;
}
.brief-task strong {
  font-size: 12px;
  font-weight: 450;
  color: #d1ddc7;
}
.brief-task p {
  font-size: 12px;
  color: #91a789;
  margin-top: 4px;
}
.brief-bottom {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 25px;
  padding-top: 16px;
  border-top: 1px solid #afc99d20;
  color: #a8bb9e;
  font-size: 11px;
}
@media (max-width: 900px) {
  .desktop-break {
    display: none;
  }
  .night-section {
    grid-template-columns: 1fr;
    margin: 0 12px;
    padding: 33px 23px;
    gap: 30px;
  }
  .night-copy h2 {
    font-size: 31px;
  }
  .night-copy > p:not(.section-label) {
    font-size: 13px;
  }
  .night-footnote {
    font-size: 10px;
    line-height: 1.7;
  }
  .morning-brief {
    padding: 19px;
  }
  .brief-task strong {
    font-size: 12px;
  }
  .brief-topline {
    font-size: 10px;
  }
  .brief-bottom {
    font-size: 10px;
  }
  .night-copy .section-label {
    font-size: 12px;
  }
}
@media (min-width: 1600px) {
  .header,
  .hero {
    max-width: 1568px;
    margin-inline: auto;
  }
  .closing {
    max-width: 1568px;
    margin-inline: auto;
  }
}
@media (max-width: 1000px) {
  .header {
    padding: 0 22px;
  }
  .header nav {
    gap: 20px;
  }
  .hero-copy {
    padding-top: 40px;
  }
  .hero h1 {
    font-size: 55px;
    letter-spacing: -2.5px;
  }
  .product-stage {
    width: calc(100% - 64px);
  }


  .introduction {
    padding: 65px 40px;
    gap: 35px;
  }
  .introduction h2,
  .introduction div > p {
    font-size: 20px;
  }
  .relationship-section {
    padding: 60px 38px;
    gap: 25px;
  }
  .person-illustration {
    padding-inline: 20px;
  }
  .control-section {
    padding: 60px 38px;
  }
  .control-grid {
    gap: 25px;
  }
  .faq-section {
    padding: 65px 38px;
    gap: 35px;
  }
}
@media (max-width: 900px) {
  :root {
    --header-height: 66px;
    --header-inset: 8px;
    --panel-radius: 18px;
  }
  .header {
    padding: 0 17px;
  }
  .wordmark {
    font-size: 21px;
  }
  .wordmark img {
    width: 25px;
    height: 25px;
  }
  .header nav {
    display: none;
  }
  .button-small {
    min-height: 44px;
    font-size: 12px;
    padding: 9px 12px;
    gap: 7px;
  }
  .hero-copy {
    padding: 41px 18px 0;
  }
  .eyebrow {
    font-size: 12px;
  }
  .hero h1 {
    font-size: 42px;
    letter-spacing: -1.8px;
    line-height: 1.1;
    margin-top: 22px;
  }
  .hero-copy > p {
    font-size: 15px;
  }
  .hero-downloads {
    display: none;
  }
  .hero-note {
    font-size: 12px;
  }
  .cloud-one {
    top: 120px;
    left: -510px;
  }
  .cloud-two {
    top: 15px;
    right: -650px;
  }
  .product-stage {
    width: calc(100% - 28px);
    margin-top: 34px;
  }
















  .decision-actions {
    gap: 8px;
    align-items: center;
  }
  .decision-actions > span {
    font-size: 10px;
    max-width: 145px;
  }




  .preview-caption {
    font-size: 11px;
    margin-block: 14px;
  }
  .page-body {
    margin-inline: 12px;
  }
  .introduction {
    display: block;
    padding: 44px 20px;
  }
  .introduction .section-label {
    margin-bottom: 18px;
  }
  .introduction h2,
  .introduction div > p {
    font-size: 19px;
    letter-spacing: -0.4px;
  }
  .section-heading > h2,
  .relationship-copy h2,
  .faq-section h2 {
    font-size: 34px;
    letter-spacing: -1.3px;
  }
  .section-heading > h2 {
    font-size: clamp(30px, 6vw, 40px);
    letter-spacing: -1.3px;
  }
  .feature-section {
    padding: 48px 12px 32px;
  }
  .section-heading > p:last-child:not(.section-label) {
    font-size: 13px;
  }
  .feature-grid {
    grid-template-columns: 1fr;
    margin-top: 30px;
    gap: 14px;
  }
  .feature-copy {
    padding: 25px;
  }
  .feature-copy h3 {
    font-size: 22px;
  }
  .feature-copy p {
    font-size: 13px;
  }
  .feature-card {
    min-height: 0;
  }
  .compose-illustration {
    padding-inline: 25px;
  }
  .followup-card {
    min-height: 370px;
  }
  .timeline {
    padding: 10px 25px 30px 40px;
  }
  .relationship-section {
    grid-template-columns: 1fr;
    padding: 40px 20px 55px;
    gap: 25px;
  }
  .relationship-copy > p:not(.section-label) {
    font-size: 13px;
    max-width: 100%;
  }
  .person-illustration {
    max-width: 340px;
    width: 100%;
    margin: auto;
    padding: 20px;
  }
  .note-one {
    right: -5px;
  }
  .note-two {
    bottom: 0;
  }
  .control-section {
    padding: 45px 20px;
  }
  .control-grid {
    grid-template-columns: 1fr;
    gap: 27px;
    margin-top: 33px;
  }
  .control-grid article {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
  }
  .control-grid article > .control-icon,
  .model-logos,
  .platform-logos {
    margin-bottom: 4px;
  }
  .control-grid h3 {
    margin: 0 0 7px;
  }
  .control-grid p {
    font-size: 13px;
  }
  .faq-section {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 43px 20px;
  }
  .faq-section h2 br {
    display: none;
  }
  .faq-section h2 {
    font-size: 31px;
  }
  .faqs summary {
    font-size: 13px;
    gap: 14px;
    padding: 17px 0;
  }
  .faqs details p {
    font-size: 13px;
  }
  .closing {
    margin-inline: 8px;
    padding: 49px 20px 54px;
    border-radius: 18px;
  }
  .closing h2 {
    font-size: 41px;
  }
  .closing > p:not(.section-label) {
    font-size: 13px;
  }
  .waitlist-row {
    flex-direction: column;
  }
  .waitlist-submit {
    width: 100%;
  }
  .closing-plane,
  .closing-plane img {
    width: 48px;
    height: 48px;
  }
  footer {
    padding: 26px 24px;
    flex-wrap: wrap;
    gap: 16px;
  }
  footer > span {
    order: 3;
    width: 100%;
    font-size: 12px;
  }
  footer > a:last-child {
    font-size: 12px;
  }
  footer .wordmark {
    font-size: 18px;
  }
}
@media (prefers-reduced-motion: reduce) {
  :root {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition: none !important;
  }
  .waitlist-spinner {
    animation: none;
  }
}

.toolkit-section { padding: 88px 38px 72px; }
.toolkit-section .section-heading > p:last-child { color: #65705f; }
.toolkit { display: grid; grid-template-columns: 255px minmax(0, 1fr); margin-top: 44px; border: 1px solid #dfe5d8; border-radius: 24px; overflow: hidden; background: #fafbf7; }
.toolkit-picker { min-width: 0; margin: 0; padding: 30px 16px; border: 0; }
.toolkit-picker legend { float: left; width: 100%; padding: 0 14px 22px; font-size: 11px; color: #6b7862; letter-spacing: .06em; text-transform: uppercase; }
.toolkit-choice { position: relative; display: flex; align-items: center; gap: 12px; padding: 15px 13px; margin-bottom: 5px; border: 1px solid transparent; border-radius: 10px; cursor: pointer; color: #65705f; font-size: 13px; transition: background .2s, color .2s; }
.toolkit-choice input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.toolkit-choice:hover { background: #edf1e7; color: #30462d; }
.toolkit-choice:has(input:checked) { background: #e6eddc; border-color: #d6e1c8; color: #314d28; }
.toolkit-choice:has(input:focus-visible) { outline: 3px solid #236d87; outline-offset: 2px; }
.toolkit-icon { flex-shrink: 0; width: 23px; text-align: center; font-size: 23px; line-height: 1; }
.toolkit-stage { display: grid; align-items: start; position: relative; min-width: 0; padding: 28px 38px 38px; background: radial-gradient(ellipse at 85% 70%, #faffee 0%, transparent 65%), #edf2e6; border-left: 1px solid #dfe5d8; }
.tool-panel { grid-area: 1 / 1; min-width: 0; visibility: hidden; opacity: 0; pointer-events: none; transition: opacity .35s ease, visibility 0s .5s; }
.tool-panel .tool-outcome { transform: translateY(10px); transition: transform .5s cubic-bezier(.22, 1, .36, 1); }
.tool-panel .tool-visual { translate: 0 18px; scale: .98; transition: translate .65s cubic-bezier(.22, 1, .36, 1), scale .65s cubic-bezier(.22, 1, .36, 1); }
.toolkit-icon svg { display: block; width: 100%; }
.tool-contact-icon svg { display: block; width: 15px; height: 15px; }
.toolkit-playback { display: flex; justify-content: flex-end; min-height: 32px; margin-top: 10px; }
.toolkit-pause { border: 0; border-radius: 5px; padding: 5px 8px; background: transparent; color: #65705f; font-size: 11px; }
.toolkit-pause:hover { background: #edf1e7; }
.toolkit:has(input[value="followup"]:checked) #tool-followup,
.toolkit:has(input[value="decisions"]:checked) #tool-decisions,
.toolkit:has(input[value="calendar"]:checked) #tool-calendar,
.toolkit:has(input[value="screening"]:checked) #tool-screening,
.toolkit:has(input[value="unsubscribe"]:checked) #tool-unsubscribe,
.toolkit:has(input[value="memory"]:checked) #tool-memory,
.toolkit:has(input[value="drafts"]:checked) #tool-drafts { visibility: visible; opacity: 1; pointer-events: auto; transition-delay: .1s, 0s; }
.tool-outcome { margin-top: 30px; }
.tool-outcome h3 { font-size: clamp(26px, 3vw, 36px); font-weight: 450; line-height: 1.15; letter-spacing: -1.2px; color: #30432c; }
.tool-outcome h3 span { color: #728666; }
.tool-outcome > p { max-width: 410px; margin-top: 13px; font-size: 13px; line-height: 1.7; color: #63725b; min-height: 45px; }
.tool-visual { display: flex; flex-direction: column; justify-content: center; min-height: 222px; margin: 25px auto 12px; padding: 23px; border: 1px solid #dce5d2; border-radius: 14px; background: #fffffff0; box-shadow: 0 14px 30px -16px #4b633b45; transform: rotate(-1deg); }
.tool-thread { display: flex; align-items: center; gap: 11px; }
.tool-avatar { display: grid; place-items: center; flex-shrink: 0; width: 42px; height: 42px; border-radius: 50%; background: #e9ecdf; object-fit: cover; color: #6a7957; font-size: 13px; }
.tool-thread strong, .tool-mail-row strong { display: block; color: #3e4d35; font-size: 13px; font-weight: 500; }
.tool-thread div > span, .tool-mail-row div > span { display: block; color: #77816f; font-size: 11px; margin-top: 3px; }
.tool-time { margin-left: auto; color: #818977; font-size: 10px; }
.tool-trail { display: grid; gap: 11px; border-left: 1px solid #dce5d2; margin: 18px 0 0 20px; padding-left: 20px; font-size: 12px; color: #7b8572; }
.tool-trail strong { color: #547044; font-weight: 500; }
.tool-trail strong span { margin-left: 7px; }
.tool-receipt { display: flex; align-items: center; gap: 8px; border-top: 1px solid #e9eddf; padding-top: 13px; margin-top: 18px; color: #617950; font-size: 11px; }
.tool-decisions { gap: 16px; }
.tool-decision + .tool-decision { border-top: 1px solid #e9eddf; padding-top: 16px; }
.tool-decision-source { display: block; font-size: 10px; color: #78836f; margin-bottom: 7px; }
.tool-decision > strong { display: block; font-size: 13px; font-weight: 500; color: #3e4d35; }
.tool-decision > p { margin-top: 5px; font-size: 11px; line-height: 1.6; color: #6c7961; }
.tool-decision-options { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 10px; font-size: 10px; color: #637357; }
.tool-decision-options span { padding: 5px 9px; border-radius: 5px; background: #f3f5ee; }
.tool-decision-options span:first-child { background: #e6eddc; color: #415e32; }
.tool-calendar-date { display: flex; flex-wrap: wrap; align-items: baseline; gap: 12px; color: #718165; font-size: 12px; }
.tool-calendar-date strong { color: #49613a; font-size: 36px; font-weight: 450; line-height: 1; }
.tool-event { display: grid; gap: 5px; border-left: 3px solid #91a878; border-radius: 4px; padding: 12px 16px; background: #eef3e6; margin-top: 18px; color: #697c5a; font-size: 11px; }
.tool-event strong { font-size: 15px; font-weight: 500; color: #435936; }
.tool-mail-row { display: flex; align-items: center; gap: 12px; padding: 12px 0; }
.tool-mail-muted { color: #8b9281; }
.tool-mail-muted strong { color: #79816f; font-weight: 400; }
.tool-mail-kept { margin-top: 8px; padding: 12px; background: #f0f4e9; border: 1px solid #e1e8d7; border-radius: 9px; }
.tool-mail-kept > span:last-child { margin-left: auto; color: #709456; }
.tool-cleanup { display: grid; justify-items: center; gap: 5px; padding: 7px; color: #748268; font-size: 12px; }
.tool-cleanup-icon { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 50%; background: #e8f0dd; color: #6e8d50; font-size: 24px; margin-bottom: 5px; }
.tool-cleanup strong { font-size: 27px; letter-spacing: -.8px; font-weight: 450; color: #465d38; }
.tool-memory { background: #f5f6ec; border-radius: 8px; padding: 15px; margin-top: 18px; }
.tool-memory > span { font-size: 10px; color: #788166; }
.tool-memory p { font-size: 13px; line-height: 1.65; color: #58664a; margin-top: 6px; }
.tool-draft-to { display: flex; flex-wrap: wrap; gap: 8px; justify-content: space-between; color: #75826a; font-size: 11px; }
.tool-draft-to strong { font-weight: 500; color: #4f6342; margin-left: 5px; }
.tool-draft-to > span:last-child { background: #edf2e5; padding: 2px 7px; border-radius: 4px; }
.tool-draft-body { display: grid; gap: 10px; margin-top: 16px; font-size: 12px; line-height: 1.65; color: #617055; }
:is(.toolkit:has(input[value="followup"]:checked) #tool-followup,
.toolkit:has(input[value="decisions"]:checked) #tool-decisions,
.toolkit:has(input[value="calendar"]:checked) #tool-calendar,
.toolkit:has(input[value="screening"]:checked) #tool-screening,
.toolkit:has(input[value="unsubscribe"]:checked) #tool-unsubscribe,
.toolkit:has(input[value="memory"]:checked) #tool-memory,
.toolkit:has(input[value="drafts"]:checked) #tool-drafts) .tool-outcome { transform: translateY(0); }
:is(.toolkit:has(input[value="followup"]:checked) #tool-followup,
.toolkit:has(input[value="decisions"]:checked) #tool-decisions,
.toolkit:has(input[value="calendar"]:checked) #tool-calendar,
.toolkit:has(input[value="screening"]:checked) #tool-screening,
.toolkit:has(input[value="unsubscribe"]:checked) #tool-unsubscribe,
.toolkit:has(input[value="memory"]:checked) #tool-memory,
.toolkit:has(input[value="drafts"]:checked) #tool-drafts) .tool-visual { translate: 0 0; scale: 1; }
@media (min-width: 901px) { .toolkit-stage { min-height: 478px; } }
@media (max-width: 900px) {
  .toolkit-section { padding: 56px 12px 40px; }
  .toolkit-section .section-label { font-size: 11px; }
  .toolkit-section .section-heading > h2 { font-size: clamp(31px, 7.5vw, 40px); letter-spacing: -1.3px; }
  .toolkit { grid-template-columns: 1fr; margin-top: 28px; border-radius: 18px; }
  .toolkit-picker { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 4px; padding: 15px 10px; }
  .toolkit-picker legend { padding: 5px 8px 12px; }
  .toolkit-choice { min-width: 0; min-height: 44px; margin: 0; padding: 11px 6px; gap: 6px; font-size: 11px; }
  .toolkit-icon { font-size: 19px; width: 19px; }
  .toolkit-pause { min-height: 44px; }
  .toolkit-stage { border-left: 0; border-top: 1px solid #dfe5d8; padding: 22px 20px; min-height: 455px; }
  .toolkit-signature { font-size: 10px; gap: 7px; }
  .tool-outcome { margin-top: 24px; }
  .tool-outcome h3 { font-size: 27px; letter-spacing: -.9px; }
  .tool-outcome > p { font-size: 12px; }
  .tool-visual { padding: 17px; margin-top: 22px; transform: none; }
  .tool-time { display: none; }
}
@media (prefers-reduced-motion: reduce) { .tool-panel .tool-outcome { transform: none; } .tool-panel .tool-visual { translate: none; scale: none; } }

.crm-section { grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.15fr); gap: 38px; padding-inline: 45px; }
.relationship-copy > p.crm-detail { margin-top: 18px; }
.crm-integrations { display: flex; flex-wrap: wrap; align-items: center; gap: 25px; margin-top: 18px; }
.crm-integrations img { object-fit: contain; flex-shrink: 0; }
.crm-illustration { padding: 22px 0; min-width: 0; }
.crm-person-card { transform: rotate(-1deg); padding: 24px; text-align: left; box-shadow: 0 16px 55px #425b2b10; }
.crm-profile-header { display: flex; align-items: center; gap: 13px; }
.crm-profile-header .avatar { margin: 0; width: 56px; height: 56px; flex-shrink: 0; }
.crm-profile-header h3 { margin: 0; font-size: 19px; }
.crm-profile-header p { font-size: 12px; color: #75806f; margin-top: 3px; }
.crm-contact-label { margin-left: auto; background: #eef2e7; color: #60764f; border-radius: 5px; padding: 4px 8px; font-size: 12px; }
.crm-profile-tabs { display: flex; flex-wrap: wrap; gap: 8px 22px; border-bottom: 1px solid #edf0e7; margin-top: 23px; font-size: 12px; color: #89917f; }
.crm-profile-tabs span { padding-bottom: 10px; }
.crm-profile-tabs span:first-child { color: #405d3b; border-bottom: 2px solid #779565; }
.relationship-activity { padding-block: 16px; container-type: inline-size; }
.activity-heading { display: flex; justify-content: space-between; gap: 8px; align-items: center; }
.activity-heading strong { font-size: 12px; font-weight: 500; color: #526247; }
.activity-heading > span { font-size: 11px; color: #818975; }
.activity-months { display: flex; justify-content: space-between; margin: 12px 0 6px; font-size: 10px; color: #88917e; }
.activity-grid { --activity-gap: 2px; --activity-cell: calc((100cqi - 51 * var(--activity-gap)) / 52); display: grid; grid-template-rows: repeat(7, var(--activity-cell)); grid-template-columns: repeat(52, var(--activity-cell)); grid-auto-flow: column; gap: var(--activity-gap); }
.activity-grid i { border-radius: 2px; }
.activity-empty { background: #e9ede1; }
.activity-positive { background: #70b889; }
.activity-neutral { background: #ebc765; }
.activity-negative { background: #df8479; }
.activity-legend { display: flex; justify-content: space-between; gap: 6px; margin-top: 9px; color: #858e7c; font-size: 10px; }
.activity-legend > span:last-child { display: flex; align-items: center; gap: 3px; }
.activity-legend i { width: 7px; height: 7px; border-radius: 1px; }
.crm-story { padding: 14px; }
.crm-story > span { color: #637a51; font-size: 12px; }
.crm-story p { color: #69755e; font-size: 12px; }
.crm-memory-facts { display: flex; flex-wrap: wrap; gap: 12px 28px; border-top: 1px solid #e7ecdf; padding-top: 12px; margin-top: 12px; font-size: 11px; color: #849075; }
.crm-memory-facts strong { display: block; font-size: 12px; color: #58684b; margin-top: 4px; font-weight: 500; }
.crm-source { display: flex; gap: 10px; align-items: center; margin-top: 14px; }
.crm-source-icon { display: grid; place-items: center; width: 25px; height: 25px; border: 1px solid #e8ecdf; border-radius: 6px; color: #7c9067; flex-shrink: 0; }
.crm-source strong { display: block; font-size: 12px; font-weight: 500; color: #657457; }
.crm-source small { display: block; font-size: 11px; color: #929a87; margin-top: 3px; }
.crm-caption { text-align: center; font-size: 12px; color: #7b906c; margin-top: 19px; }
.crm-caption span { margin-right: 5px; }
@media (max-width: 1000px) { .crm-section { padding-inline: 25px; gap: 25px; } .crm-person-card { padding: 18px; } }
@media (max-width: 900px) {
  .crm-section { grid-template-columns: 1fr; padding: 45px 20px; }
  .crm-illustration { max-width: 450px; padding: 12px 0; }
  .crm-person-card { transform: none; padding: 16px; }
  .crm-profile-header { flex-wrap: wrap; gap: 9px; }
  .crm-contact-label { margin-left: 0; }
  .crm-profile-tabs { gap: 8px 16px; }
  .activity-heading { flex-wrap: wrap; }
  .crm-profile-header h3 { font-size: 17px; }
  .crm-profile-header p { font-size: 12px; }
  .crm-profile-header .avatar { width: 43px; height: 43px; }
  .activity-grid { --activity-gap: 1.5px; }
  .activity-months { font-size: 10px; }
  .activity-legend { flex-wrap: wrap; row-gap: 6px; }
  .activity-heading > span { font-size: 10px; }
}
@media (max-width: 430px) {
  .activity-months span:nth-child(even) { display: none; }
  .delegation-picker { width: 100%; min-width: 0; }
  .delegation-picker label { flex: 1; padding-inline: 8px; }
  .toolkit-stage { padding-inline: 14px; }
  .tool-visual { padding: 14px; }
  .morning-brief { transform: none; }
  .activity-grid { --activity-gap: 1px; }
}

.comparison-section { padding: 75px 32px 45px; }
.comparison-scroll { margin-top: 40px; overflow-x: auto; border-radius: 18px; }
.comparison-table { width: 100%; min-width: 660px; table-layout: fixed; border-spacing: 0; font-size: 14px; text-align: left; }
.comparison-table th, .comparison-table td { padding: 22px 20px; border-bottom: 1px solid #e5e9e3; vertical-align: middle; }
.comparison-table thead th { padding-top: 26px; padding-bottom: 26px; font-size: 19px; font-weight: 500; vertical-align: bottom; }
.comparison-table thead th:first-child { font-size: 13px; color: #68766c; }
.comparison-table thead img { margin-bottom: 14px; }
.comparison-model-icons { display: flex; align-items: center; gap: 10px; }
.comparison-table thead span { display: block; margin-top: 4px; color: #62705e; font-size: 13px; font-weight: 400; }
.comparison-table tbody th { font-weight: 500; }
.comparison-table td { color: #647067; line-height: 1.7; }
.comparison-table tr > :last-child { background: #edf4e4; color: #2e4936; }
.comparison-table thead tr > :last-child { border-radius: 16px 16px 0 0; }
.comparison-table tbody tr:last-child > :last-child { border-radius: 0 0 16px 16px; }
.comparison-table tbody tr:last-child > * { border-bottom: 0; }
.comparison-check { color: #48763b; margin-right: 4px; }
.comparison-protection > * { background: #f6f8f3; }
.comparison-table .comparison-protection > :last-child { background: #deedce; }
.comparison-note { margin-top: 18px; color: #65736c; font-size: 12px; text-align: right; line-height: 1.8; }
.comparison-note a { text-decoration: underline; text-underline-offset: 3px; }
@media (max-width: 900px) {
  .comparison-section { padding: 50px 16px 32px; }
  .comparison-scroll { margin-top: 28px; }
  .comparison-table th, .comparison-table td { padding: 18px 14px; }
  .comparison-table thead th { font-size: 17px; }
  .comparison-note { text-align: left; }
}
