@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600&family=Playfair+Display:ital,wght@0,500;0,600&display=swap");

:root {
  color-scheme: light;
  --paper: #fbf8f7;
  --paper-band: #f7f1f5;
  --ink: #1d1c24;
  --muted: #5f5c64;
  --berry: #7c0038;
  --berry-dark: #5d002b;
  --lavender: #8270c7;
  --line: #d9d1d5;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "DM Sans", system-ui, sans-serif;
  --shell: min(1390px, calc(100% - 112px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font: 400 16px/1.5 var(--sans); }
a { color: inherit; text-underline-offset: 5px; }
svg { display: block; }
.page-shell { width: var(--shell); margin-inline: auto; }
.skip-link { position: fixed; top: 12px; left: 12px; z-index: 50; padding: 10px 16px; background: var(--ink); color: white; transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }
.wordmark { font: 600 3.05rem/1 var(--serif); letter-spacing: -.055em; text-decoration: none; }

.site-header { min-height: 88px; display: flex; align-items: center; justify-content: space-between; }
.site-header nav, .site-footer nav { display: flex; align-items: center; gap: 52px; }
.site-header nav > a:not(.button), .site-footer nav a { font-size: 1rem; text-decoration: none; }
.site-header nav > a:not(.button):hover, .site-footer nav a:hover { color: var(--berry); }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 58px; padding: 0 31px; border-radius: 7px; background: var(--berry); color: #fff; font: 600 1rem/1 var(--sans); text-decoration: none; box-shadow: 0 8px 24px rgba(124,0,56,.1); transition: transform .2s ease, background .2s ease, box-shadow .2s ease; }
.button:hover { background: var(--berry-dark); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(124,0,56,.18); }
.button:focus-visible, a:focus-visible { outline: 3px solid rgba(130,112,199,.45); outline-offset: 4px; }
.button-small { min-height: 50px; padding-inline: 30px; }
.text-link { color: var(--berry); font-weight: 500; text-decoration-thickness: 1px; }
.text-link:hover { color: var(--berry-dark); }

.hero { min-height: 520px; display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: center; padding-block: 28px 48px; }
.hero-copy { align-self: center; max-width: 650px; }
h1, h2, h3, h4, p { margin-top: 0; }
.hero h1 { margin-bottom: 27px; font: 500 clamp(4rem,6vw,4.3rem)/.98 var(--serif); letter-spacing: -.048em; }
.hero-copy > p { max-width: 580px; margin-bottom: 32px; color: var(--muted); font-size: 1.22rem; line-height: 1.58; }
.hero-actions { display: flex; align-items: center; gap: 54px; }

.conversation-demo { position: relative; height: 450px; }
.conversation-demo > div { position: absolute; background: rgba(251,248,247,.94); }
.thread-lines { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.thread, .house { fill: none; stroke-width: 2.1; stroke-linecap: round; stroke-linejoin: round; }
.thread-you { stroke: var(--berry); }
.thread-them { stroke: var(--lavender); }
.question-bubble { top: 28px; left: 50%; width: 300px; padding: 22px; border: 2px solid var(--ink); border-radius: 24px; font-size: 1.25rem; text-align: center; transform: translateX(-50%); }
.answer-bubble { top: 177px; width: 230px; height: 94px; padding: 25px 31px; border: 2px solid; border-radius: 25px; }
.answer-bubble i, .shared-bubble i { display: block; height: 2px; margin-bottom: 12px; background: currentColor; opacity: .42; }
.answer-bubble i:nth-of-type(1) { width: 70%; }
.answer-bubble i:nth-of-type(2) { width: 54%; }
.answer-bubble i:nth-of-type(3) { width: 30%; }
.answer-bubble small, .shared-bubble small { position: absolute; top: calc(100% + 10px); left: 50%; color: currentColor; font: 500 1.05rem/1 var(--serif); font-style: italic; white-space: nowrap; transform: translateX(-50%); }
.answer-you { left: 7%; color: var(--berry); }
.answer-them { right: 4%; color: var(--lavender); }
.face { position: absolute; top: 29px; display: grid; place-items: center; width: 41px; height: 41px; border-radius: 50%; color: white; font-size: .7rem; letter-spacing: 4px; }
.answer-you .face { left: -22px; background: var(--berry); }
.answer-them .face { right: -22px; background: var(--lavender); }
.shared-bubble { top: 360px; left: 50%; width: 345px; height: 78px; padding: 24px 55px; border: 2px solid var(--ink); border-radius: 24px; color: var(--ink); transform: translateX(-50%); }
.shared-bubble i { margin-bottom: 11px; }
.shared-bubble i:nth-of-type(2) { width: 65%; }
.spark { position: absolute; top: 22px; left: 25px; font-size: 1.25rem; }

.flows { padding-block: 55px 92px; border-top: 1px solid var(--line); }
.flows > h2 { margin-bottom: 48px; font: 500 clamp(2.4rem,3vw,3.4rem)/1.1 var(--serif); letter-spacing: -.035em; }
.flow-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 72px; }
.flow-item { display: grid; grid-template-columns: 38px 1fr; gap: 15px; align-content: start; }
.flow-number { display: grid; place-items: center; width: 35px; height: 35px; border-radius: 50%; background: var(--berry); color: white; font-weight: 600; }
.flow-copy h3 { margin: 2px 0 8px; font: 600 1.15rem/1.3 var(--sans); }
.flow-copy p { min-height: 78px; margin-bottom: 18px; color: var(--muted); line-height: 1.55; }
.flow-visual { grid-column: 1 / -1; min-height: 145px; display: flex; align-items: center; justify-content: center; gap: 14px; }
.flow-visual svg { overflow: visible; fill: none; stroke: var(--berry); stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.lavender-stroke { stroke: var(--lavender) !important; }
.mini-bubble { position: relative; width: 91px; height: 64px; padding: 20px; border: 1.5px solid; border-radius: 15px; }
.mini-bubble span, .mini-shared i, .thought-note i { display: block; width: 45px; height: 1.5px; margin-bottom: 9px; background: currentColor; opacity: .45; }
.mini-bubble span:nth-child(2) { width: 32px; }
.mini-bubble b { position: absolute; top: -10px; width: 26px; height: 26px; display: grid; place-items: center; border-radius: 50%; background: currentColor; color: white; font-size: 0; }
.mini-bubble b::before { content: "••"; font-size: 6px; letter-spacing: 3px; }
.mini-bubble:first-child b { left: -9px; }
.mini-bubble:nth-of-type(2) b { right: -9px; }
.berry { color: var(--berry); }
.lavender { color: var(--lavender); }
.private-flow > svg { width: 90px; }
.mini-shared { position: absolute; margin-top: 105px; width: 132px; height: 52px; padding: 17px 24px; border: 1.5px solid var(--ink); border-radius: 14px; background: var(--paper); }
.mini-shared strong { position: absolute; top: 15px; left: 8px; }
.mini-shared i { width: 72px; color: var(--ink); }
.mini-shared i:nth-child(2) { width: 45px; }
.moment-flow, .thought-flow { gap: 17px; }
.moment-icon { width: 83px; text-align: center; }
.moment-icon > svg, .moment-icon > b { width: 70px; height: 70px; display: grid; place-items: center; margin: 0 auto 8px; border: 1.5px solid var(--berry); border-radius: 15px; color: var(--berry); font: 500 2.1rem/1 var(--serif); }
.moment-icon > svg { padding: 13px; }
.moment-icon small, .thought-note small, .thought-question small { font-size: .75rem; }
.flow-arrow { color: var(--berry); font-size: 1.4rem; }
.thought-note, .thought-question { position: relative; width: 85px; height: 88px; display: grid; place-items: center; border: 1.5px solid; border-radius: 15px; color: var(--berry); }
.thought-note b { position: absolute; top: 6px; left: 10px; }
.thought-note i { width: 49px; margin: 1px 0; }
.thought-note small, .thought-question small { position: absolute; top: calc(100% + 6px); color: var(--ink); white-space: nowrap; }
.thought-flow > svg { width: 120px; }
.thought-question { color: var(--ink); font: 500 2rem/1 var(--serif); }
.mobile-only { display: none; }

.ownership { padding-block: 92px 88px; border-top: 1px solid var(--line); background: #faf6f7; }
.ownership-inner { display: grid; grid-template-columns: .85fr 1.15fr; column-gap: 100px; }
.ownership-copy h2 { margin-bottom: 42px; font: 500 2.4rem/1.1 var(--serif); }
.ownership-copy h3 { margin-bottom: 30px; font: 500 clamp(3.5rem,5vw,5.5rem)/1.03 var(--serif); letter-spacing: -.045em; }
.ownership-copy > p { max-width: 475px; color: var(--muted); font-size: 1.2rem; line-height: 1.6; }
.home-illustration { height: 475px; }
.home-illustration svg { width: 100%; height: 100%; overflow: visible; }
.home-bubble { fill: var(--paper); stroke-width: 1.8; }
.home-bubble path { fill: none; stroke-width: 1.4; opacity: .45; }
.home-bubble-you { stroke: var(--berry); }
.home-bubble-you circle { fill: var(--berry); }
.home-bubble-them { stroke: var(--lavender); }
.home-bubble-them circle { fill: var(--lavender); }
.house { stroke: var(--ink); }
.ownership-points { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 40px; }
.ownership-points article { min-height: 190px; padding: 10px 55px 0; border-left: 1px solid var(--line); }
.ownership-points article:first-child { padding-left: 18px; border-left: 0; }
.ownership-points article > span { display: block; min-height: 45px; color: var(--berry); font-size: 2.1rem; }
.ownership-points article:nth-child(2) > span, .ownership-points article:nth-child(3) > span { color: var(--lavender); }
.thread-mark::before { content: ""; display: block; width: 72px; height: 22px; border-top: 2px solid currentColor; border-radius: 50%; transform: rotate(-8deg); }
.leaf { position: relative; }
.leaf::before, .leaf::after { content: ""; position: absolute; top: 4px; left: 8px; width: 23px; height: 34px; border: 2px solid currentColor; border-radius: 100% 0 100% 0; transform: rotate(-21deg); }
.leaf::after { top: 19px; left: 31px; width: 28px; height: 2px; border: 0; border-top: 2px solid currentColor; border-radius: 0; transform: rotate(-36deg); }
.ownership-points h4 { margin: 6px 0 10px; font: 500 2rem/1.2 var(--serif); }
.ownership-points p { max-width: 320px; color: var(--muted); font-size: 1.05rem; }

.final-cta { border-top: 1px solid var(--line); background: var(--paper-band); }
.final-cta-inner { min-height: 320px; display: grid; grid-template-columns: 1fr .7fr; align-items: center; gap: 80px; }
.final-cta h2 { margin-bottom: 18px; font: 500 clamp(3.2rem,4.6vw,5rem)/1.04 var(--serif); letter-spacing: -.04em; }
.final-cta p { margin-bottom: 0; color: var(--muted); font-size: 1.16rem; }
.final-actions { display: grid; justify-items: center; gap: 24px; }
.final-actions .button { width: min(100%, 320px); }
.site-footer { min-height: 130px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; border-top: 1px solid var(--line); }
.site-footer .wordmark { font-size: 3.5rem; }
.site-footer p { justify-self: end; margin: 0; }
.site-footer p span { margin-left: 15px; color: var(--lavender); font-size: 1.5rem; }

.reveal { animation: reveal .75s cubic-bezier(.2,.7,.2,1) both; }
.reveal-late { animation-delay: .14s; }
@keyframes reveal { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } .reveal { animation: none; } .button { transition: none; } }

@media (max-width: 1100px) {
  :root { --shell: min(100% - 56px, 980px); }
  .site-header nav { gap: 25px; }
  .hero { grid-template-columns: 1fr; min-height: auto; gap: 10px; padding-top: 75px; }
  .hero-copy { max-width: 750px; }
  .conversation-demo { width: min(100%, 720px); margin-inline: auto; }
  .flow-list { gap: 32px; }
  .ownership-inner { column-gap: 40px; }
}

@media (max-width: 760px) {
  :root { --shell: min(100% - 34px, 620px); }
  .wordmark { font-size: 2.45rem; }
  .site-header { min-height: 74px; }
  .site-header nav > a:not(.button) { display: none; }
  .button-small { min-height: 44px; padding-inline: 18px; font-size: .88rem; }
  .hero { padding-block: 52px 38px; }
  .hero h1 { font-size: clamp(3.45rem,15vw,5.2rem); line-height: 1; }
  .hero-copy > p { font-size: 1.07rem; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 22px; }
  .button { min-height: 54px; }
  .conversation-demo { height: 420px; margin-top: 20px; }
  .question-bubble { top: 20px; width: 240px; font-size: 1rem; }
  .answer-bubble { top: 152px; width: 43%; height: 85px; padding: 22px; }
  .answer-you { left: 3%; }
  .answer-them { right: 3%; }
  .shared-bubble { top: 326px; width: 76%; }
  .flows { padding-block: 58px 70px; }
  .flows > h2 { margin-bottom: 28px; }
  .flow-list { grid-template-columns: 1fr; gap: 36px; }
  .flow-item { padding-bottom: 36px; border-bottom: 1px solid var(--line); }
  .flow-item:last-child { border: 0; }
  .flow-copy p { min-height: 0; }
  .flow-visual { min-height: 135px; transform: scale(.93); }
  .mobile-only { display: block; }
  .ownership { padding-block: 65px 55px; }
  .ownership-inner { grid-template-columns: 1fr; }
  .ownership-copy h2 { margin-bottom: 35px; }
  .ownership-copy h3 { font-size: clamp(3.25rem,14vw,4.6rem); }
  .home-illustration { height: 360px; margin-top: 15px; }
  .ownership-points { grid-template-columns: 1fr; margin-top: 5px; }
  .ownership-points article, .ownership-points article:first-child { min-height: 0; padding: 30px 0; border-left: 0; border-top: 1px solid var(--line); }
  .ownership-points article > span { min-height: 48px; }
  .final-cta-inner { grid-template-columns: 1fr; min-height: 450px; gap: 25px; padding-block: 65px; }
  .final-actions { justify-items: start; }
  .final-actions .button { width: auto; }
  .site-footer { min-height: 200px; grid-template-columns: 1fr auto; align-content: center; gap: 28px; }
  .site-footer nav { display: none; }
  .site-footer p { font-size: .9rem; }
}

@media (max-width: 430px) {
  .conversation-demo { height: 390px; }
  .thread-lines { transform: scale(.95); }
  .answer-bubble { width: 44%; padding-inline: 18px; }
  .answer-bubble small { font-size: .9rem; }
  .shared-bubble { top: 305px; }
  .private-flow, .thought-flow { gap: 8px; }
  .thought-flow > svg { width: 90px; }
  .moment-flow { gap: 8px; }
  .moment-icon { width: 68px; }
  .moment-icon > svg, .moment-icon > b { width: 60px; height: 60px; }
  .home-illustration { height: 300px; }
}
