@font-face {
  font-family: "Newsreader";
  src: url("/assets/fonts/newsreader-regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Newsreader";
  src: url("/assets/fonts/newsreader-medium.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Newsreader";
  src: url("/assets/fonts/newsreader-italic.ttf") format("truetype");
  font-style: italic;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/inter-regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/inter-medium.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/inter-semibold.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

:root {
  --canvas: #f5f6f1;
  --paper: #fafaf5;
  --paper-2: #f1f2ea;
  --paper-raised: #ffffff;
  --ink: #1a1a1a;
  --ink-soft: #5a5852;
  --muted: #6f6d68;
  --hairline: #e2e4da;
  --hairline-strong: #d4d7ca;
  --moss: #6c7454;
  --moss-dark: #494f38;
  --moss-soft: #a2a98f;
  --sage: #eef0e5;
  --clay: #c08d57;
  --clay-dark: #93683f;
  --clay-soft: #efe0cc;
  --sand: #f7f0e8;
  --blush: #f8ecee;
  --sky: #e9f0f2;
  --lavender: #f0ecf5;
  --shadow: 0 24px 80px rgba(52, 55, 42, 0.12);
  --shadow-soft: 0 12px 40px rgba(52, 55, 42, 0.09);
  --serif: "Newsreader", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shell: min(1180px, calc(100vw - 48px));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.55;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: radial-gradient(rgba(73, 79, 56, 0.045) 0.65px, transparent 0.65px);
  background-size: 8px 8px;
  content: "";
  pointer-events: none;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input,
textarea,
select {
  color: inherit;
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  border-radius: 6px;
  outline: 3px solid rgba(84, 92, 66, 0.45);
  outline-offset: 4px;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-family: var(--sans);
  font-size: 14px;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  background: rgba(245, 246, 241, 0.82);
  backdrop-filter: blur(18px);
  transition: border-color 180ms ease, background-color 180ms ease;
}

.site-header.is-scrolled {
  border-bottom-color: rgba(73, 79, 56, 0.1);
  background: rgba(250, 250, 245, 0.93);
}

.nav-shell {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
}

.brand img {
  width: 36px;
  height: 36px;
  border-radius: 11px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-family: var(--sans);
  font-size: 13px;
}

.site-nav > a:not(.button) {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 160ms ease;
}

.site-nav > a:not(.button):hover {
  color: var(--ink);
}

.menu-button {
  display: none;
  min-width: 64px;
  min-height: 44px;
  border: 1px solid var(--hairline-strong);
  border-radius: 999px;
  background: var(--paper);
  font-family: var(--sans);
  font-size: 13px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid var(--moss);
  border-radius: 999px;
  background: var(--moss);
  box-shadow: 0 8px 24px rgba(73, 79, 56, 0.16);
  color: #fff;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  transition: background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.button:hover {
  border-color: var(--moss-dark);
  background: var(--moss-dark);
  box-shadow: 0 12px 28px rgba(73, 79, 56, 0.22);
  transform: translateY(-2px);
}

.button:active {
  transform: translateY(0);
}

.button-small {
  min-height: 44px;
  padding-inline: 18px;
  font-size: 13px;
}

.button-clay {
  border-color: var(--clay-dark);
  background: var(--clay-dark);
}

.button-clay:hover {
  border-color: #795331;
  background: #795331;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--moss-dark);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
}

.hero {
  display: grid;
  min-height: 780px;
  grid-template-columns: minmax(0, 0.93fr) minmax(500px, 1.07fr);
  align-items: center;
  gap: 54px;
  padding-block: 68px 90px;
}

.hero-copy {
  position: relative;
  z-index: 5;
  padding-bottom: 48px;
}

.hero h1 {
  max-width: 610px;
  margin: 0;
  font-size: clamp(62px, 6.5vw, 98px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.92;
}

.hero-lede {
  max-width: 580px;
  margin: 32px 0 0;
  color: var(--ink-soft);
  font-size: clamp(19px, 1.7vw, 24px);
  line-height: 1.44;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 36px;
}

.text-link {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}

.link-line {
  position: relative;
  width: 28px;
  height: 1px;
  background: currentColor;
  transition: width 160ms ease;
}

.link-line::after {
  position: absolute;
  top: -3px;
  right: 0;
  width: 7px;
  height: 7px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  content: "";
  transform: rotate(45deg);
}

.text-link:hover .link-line {
  width: 36px;
}

.availability {
  margin: 22px 0 0;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 12px;
}

.hero-product {
  position: relative;
  display: grid;
  min-height: 650px;
  place-items: center;
  isolation: isolate;
}

.hero-product::before {
  position: absolute;
  z-index: -3;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle at 42% 38%, #fffdf6 0, #edf0e5 48%, rgba(238, 240, 229, 0) 72%);
  content: "";
}

.orbit {
  position: absolute;
  z-index: -2;
  border: 1px solid rgba(73, 79, 56, 0.1);
  border-radius: 50%;
}

.orbit-one {
  width: 520px;
  height: 520px;
  animation: drift-orbit 12s ease-in-out infinite alternate;
}

.orbit-two {
  width: 650px;
  height: 420px;
  transform: rotate(-18deg);
  animation: drift-orbit-wide 15s ease-in-out infinite alternate;
}

.phone {
  position: relative;
  z-index: 2;
  width: 330px;
  min-height: 664px;
  overflow: hidden;
  border: 7px solid #22231f;
  border-radius: 44px;
  background: var(--paper);
  box-shadow: 0 34px 90px rgba(26, 26, 22, 0.22), inset 0 0 0 1px rgba(255, 255, 255, 0.5);
  transform: rotate(2deg);
}

.phone-top {
  display: flex;
  height: 34px;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 600;
}

.phone-sensors {
  position: relative;
  width: 38px;
  height: 10px;
  border-radius: 999px;
  background: #22231f;
}

.phone-toolbar {
  display: flex;
  min-height: 46px;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px 4px;
}

.phone-brand {
  font-size: 17px;
  font-weight: 500;
}

.phone-people,
.people-stack {
  display: flex;
  align-items: center;
}

.phone-people i,
.people-stack i,
.space-card-footer i {
  display: grid;
  width: 25px;
  height: 25px;
  margin-left: -5px;
  place-items: center;
  border: 2px solid var(--paper);
  border-radius: 50%;
  background: #f4c0d1;
  color: #72243e;
  font-family: var(--sans);
  font-size: 8px;
  font-style: normal;
  font-weight: 600;
}

.phone-people i:nth-child(2),
.people-stack i:nth-child(2),
.space-card-footer i:nth-child(2) {
  background: #f5c4b3;
  color: #712b13;
}

.trip-cover {
  position: relative;
  height: 186px;
  margin: 4px 14px 0;
  overflow: hidden;
  border-radius: 16px;
  background: linear-gradient(180deg, #cbd7d5 0%, #e3d7c2 54%, #aeb29b 100%);
  box-shadow: 0 3px 12px rgba(46, 36, 24, 0.12);
}

.sun {
  position: absolute;
  top: 23px;
  right: 35px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 247, 233, 0.9);
  box-shadow: 0 0 34px rgba(255, 247, 233, 0.76);
}

.hill {
  position: absolute;
  left: -10%;
  bottom: -52%;
  width: 120%;
  height: 94%;
  border-radius: 50% 50% 0 0;
  background: #76816c;
  transform: rotate(-6deg);
}

.hill-back {
  left: 30%;
  bottom: -40%;
  background: #9ca68f;
  transform: rotate(8deg);
}

.hill-front {
  background: #667052;
}

.trip-copy {
  position: absolute;
  right: 16px;
  bottom: 15px;
  left: 16px;
  display: flex;
  flex-direction: column;
  color: #fffdf5;
  text-shadow: 0 1px 12px rgba(23, 25, 18, 0.4);
}

.trip-copy small {
  font-family: var(--sans);
  font-size: 7px;
  font-weight: 600;
  letter-spacing: 0.09em;
}

.trip-copy strong {
  font-size: 22px;
  font-weight: 500;
  line-height: 1.1;
}

.day-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  padding: 20px 20px 9px;
}

.day-head h2 {
  margin: 0;
  font-size: 25px;
  font-weight: 500;
  line-height: 1;
}

.day-head p {
  margin: 5px 0 0;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 8px;
}

.date-chip {
  padding: 6px 10px;
  border: 1px solid var(--hairline);
  border-radius: 999px;
  color: var(--ink-soft);
  font-family: var(--sans);
  font-size: 8px;
}

.timeline {
  padding-inline: 20px;
}

.time-row {
  display: grid;
  min-height: 63px;
  grid-template-columns: 38px 1fr auto;
  align-items: center;
  gap: 10px;
  border-top: 1px solid var(--hairline);
}

.time-row time,
.time-row span {
  color: var(--muted);
  font-family: var(--sans);
  font-size: 8px;
}

.time-row div {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.time-row strong {
  overflow: hidden;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.check {
  display: inline-block;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  border: 1px solid #aaada3;
  border-radius: 50%;
  background: #fff;
}

.phone-nav {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  height: 59px;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  border-top: 1px solid var(--hairline);
  background: rgba(250, 250, 245, 0.96);
  color: var(--muted);
  font-family: var(--sans);
  font-size: 7px;
  text-align: center;
}

.phone-nav .active {
  color: var(--moss-dark);
  font-weight: 600;
}

.add-mark {
  position: relative;
  width: 33px;
  height: 33px;
  margin: auto;
  border-radius: 50%;
  background: var(--moss);
}

.add-mark::before,
.add-mark::after {
  position: absolute;
  top: 16px;
  left: 10px;
  width: 13px;
  height: 1px;
  background: #fff;
  content: "";
}

.add-mark::after {
  transform: rotate(90deg);
}

.float-card {
  position: absolute;
  z-index: 4;
  display: flex;
  border: 1px solid rgba(73, 79, 56, 0.12);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
}

.float-space {
  top: 98px;
  left: -8px;
  width: 210px;
  min-height: 128px;
  flex-direction: column;
  padding: 18px;
  border-radius: 18px;
  transform: rotate(-5deg);
  animation: float-space 6s ease-in-out infinite;
}

.float-label {
  margin-bottom: 8px;
  color: var(--moss-dark);
  font-family: var(--sans);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.float-space strong {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.1;
}

.float-space > span:not(.float-label) {
  margin-top: 5px;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 9px;
}

.float-space .people-stack {
  margin-top: 13px;
  padding-left: 5px;
}

.float-receipt {
  right: -28px;
  bottom: 88px;
  width: 246px;
  align-items: center;
  gap: 12px;
  padding: 15px;
  border-radius: 16px;
  transform: rotate(4deg);
  animation: float-receipt 7s ease-in-out infinite;
}

.agent-dot {
  display: inline-block;
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  border-radius: 46% 54% 64% 36% / 44% 36% 64% 56%;
  background: var(--clay);
  box-shadow: inset 5px -4px 0 rgba(255, 255, 255, 0.22);
  transform: rotate(17deg);
}

.float-receipt div {
  display: flex;
  flex-direction: column;
}

.float-receipt strong {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
}

.float-receipt span:not(.agent-dot) {
  margin-top: 3px;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 8px;
}

.hero-rise {
  animation: hero-rise 720ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-rise-two {
  animation-delay: 80ms;
}

.hero-rise-three {
  animation-delay: 160ms;
}

.hero-rise-four {
  animation-delay: 240ms;
}

.life-scatter {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(480px, 1.08fr);
  align-items: center;
  gap: 78px;
  padding-block: 118px 138px;
  border-top: 1px solid var(--hairline);
}

.scatter-copy h2 {
  max-width: 650px;
  margin: 0;
  font-size: clamp(44px, 4.8vw, 66px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1;
}

.scatter-copy > p:last-child {
  max-width: 540px;
  margin: 26px 0 0;
  color: var(--ink-soft);
  font-size: 19px;
}

.scatter-scene {
  position: relative;
  min-height: 510px;
  isolation: isolate;
}

.scatter-scene::before {
  position: absolute;
  inset: 1% 0;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(162, 169, 143, 0.24), rgba(162, 169, 143, 0) 70%);
  content: "";
}

.scatter-piece,
.gather-card {
  position: absolute;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(73, 79, 56, 0.12);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
  opacity: 0;
  transition: opacity 520ms ease, transform 680ms cubic-bezier(0.22, 1, 0.36, 1);
}

.scatter-piece {
  width: 230px;
  min-height: 104px;
  justify-content: center;
  padding: 18px 20px;
  border-radius: 17px;
}

.scatter-piece span,
.gather-card > span {
  margin-bottom: 7px;
  color: var(--moss-dark);
  font-family: var(--sans);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.scatter-piece strong {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.16;
}

.piece-message {
  top: 24px;
  left: 0;
  background: var(--blush);
  transform: translate(-38px, -24px) rotate(-8deg);
  transition-delay: 80ms;
}

.piece-date {
  top: 48px;
  right: 0;
  background: var(--sky);
  transform: translate(42px, -18px) rotate(8deg);
  transition-delay: 150ms;
}

.piece-note {
  bottom: 22px;
  left: 8%;
  background: var(--sand);
  transform: translate(-28px, 34px) rotate(-7deg);
  transition-delay: 220ms;
}

.gather-card {
  top: 156px;
  left: 50%;
  z-index: 2;
  width: 340px;
  min-height: 210px;
  padding: 28px;
  border-radius: 22px;
  background: var(--paper-raised);
  box-shadow: var(--shadow);
  transform: translate(-50%, 22px) rotate(1deg) scale(0.96);
  transition-delay: 120ms;
}

.gather-card > strong {
  margin-top: 18px;
  font-size: 34px;
  font-weight: 400;
  line-height: 1;
}

.gather-card > small {
  margin-top: 10px;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 10px;
}

.gather-card .people-stack {
  margin-top: auto;
  padding-left: 5px;
}

.life-scatter.is-visible .scatter-piece,
.life-scatter.is-visible .gather-card {
  opacity: 1;
}

.life-scatter.is-visible .piece-message {
  transform: translate(0, 0) rotate(-3deg);
}

.life-scatter.is-visible .piece-date {
  transform: translate(0, 0) rotate(3deg);
}

.life-scatter.is-visible .piece-note {
  transform: translate(0, 0) rotate(-3deg);
}

.life-scatter.is-visible .gather-card {
  transform: translate(-50%, 0) rotate(1deg) scale(1);
}

.section {
  padding-block: 132px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(200px, 0.4fr) minmax(0, 1fr);
  align-items: start;
  gap: 46px;
  margin-bottom: 68px;
}

.section-heading .eyebrow {
  padding-top: 13px;
}

.section-heading h2,
.showcase-copy > h2,
.spaces-copy h2,
.premium-copy h2,
.closing h1,
.closing h2,
.legal-hero h1 {
  margin: 0;
  font-size: clamp(48px, 5.5vw, 76px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
}

.section-heading.compact {
  margin-bottom: 56px;
}

.section-features {
  background: var(--paper);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--hairline);
}

.feature-card {
  min-height: 320px;
  padding: 30px 34px 24px 0;
  border-right: 1px solid var(--hairline);
}

.feature-card + .feature-card {
  padding-left: 34px;
}

.feature-card:last-child {
  border-right: 0;
}

.feature-number {
  color: var(--moss);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.feature-card h3 {
  max-width: 280px;
  margin: 58px 0 18px;
  font-size: 31px;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.feature-card p {
  max-width: 310px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 17px;
}

.showcase-section {
  background: #20211c;
  color: #eceae0;
}

.showcase-shell {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 88px;
}

.showcase-copy .eyebrow {
  color: #c9d1ad;
}

.showcase-copy > h2 {
  max-width: 520px;
  font-size: clamp(48px, 5vw, 72px);
}

.showcase-tabs {
  display: flex;
  gap: 8px;
  margin-top: 42px;
}

.showcase-tabs button {
  min-width: 100px;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid #3f4238;
  border-radius: 999px;
  background: transparent;
  color: #b6b4aa;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 12px;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.showcase-tabs button[aria-selected="true"] {
  border-color: #aeb894;
  background: #2f3428;
  color: #eceae0;
}

.showcase-notes {
  min-height: 208px;
  margin-top: 32px;
}

.showcase-notes article {
  animation: note-enter 300ms ease both;
}

.showcase-notes h3 {
  margin: 0 0 12px;
  font-size: 26px;
  font-weight: 400;
}

.showcase-notes p {
  max-width: 490px;
  margin: 0;
  color: #b6b4aa;
  font-size: 17px;
}

.showcase-stage {
  position: relative;
  min-height: 650px;
}

.showcase-stage::before {
  position: absolute;
  top: 12%;
  right: -10%;
  bottom: 8%;
  left: 12%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(174, 184, 148, 0.16), rgba(174, 184, 148, 0) 70%);
  content: "";
}

.app-window {
  position: relative;
  width: min(100%, 590px);
  min-height: 620px;
  margin-left: auto;
  overflow: hidden;
  border: 1px solid #3f4238;
  border-radius: 30px;
  background: #1a1b17;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.32);
  color: #eceae0;
  transform-origin: center;
}

.app-window.is-active {
  animation: panel-enter 480ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.app-window-top {
  display: flex;
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  padding: 0 26px;
  border-bottom: 1px solid #2f312b;
  color: #9b9990;
  font-family: var(--sans);
  font-size: 10px;
}

.mini-brand {
  color: #eceae0;
  font-family: var(--serif);
  font-size: 17px;
}

.app-window-content {
  padding: 30px;
}

.app-label {
  margin: 0;
  color: #9b9990;
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.calendar-line {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  gap: 10px;
  margin: 20px 0 28px;
  color: #9b9990;
  font-family: var(--sans);
  font-size: 10px;
  text-align: center;
}

.calendar-line strong {
  display: grid;
  min-height: 48px;
  place-items: center;
  border-radius: 14px;
  background: #2f3428;
  color: #c9d1ad;
  font-weight: 500;
}

.calendar-line span:first-of-type {
  display: none;
}

.shared-item {
  display: flex;
  min-height: 78px;
  align-items: center;
  gap: 14px;
  border-top: 1px solid #2f312b;
}

.shared-item time {
  width: 44px;
  color: #9b9990;
  font-family: var(--sans);
  font-size: 10px;
}

.shared-item div {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
}

.shared-item strong {
  font-size: 16px;
  font-weight: 400;
}

.shared-item small {
  color: #9b9990;
  font-family: var(--sans);
  font-size: 9px;
}

.shared-item .check,
.draft-row .check {
  border-color: #56594f;
  background: transparent;
}

.avatar {
  display: grid;
  width: 24px;
  height: 24px;
  margin-left: -10px;
  place-items: center;
  border: 2px solid #1a1b17;
  border-radius: 50%;
  background: #f4c0d1;
  color: #72243e;
  font-family: var(--sans);
  font-size: 8px;
  font-style: normal;
  font-weight: 600;
}

.avatar-s {
  background: #f5c4b3;
  color: #712b13;
}

.soft-callout {
  display: flex;
  margin-top: 24px;
  flex-direction: column;
  padding: 18px 20px;
  border: 1px solid #48342c;
  border-radius: 16px;
  background: #2e211c;
}

.soft-callout span,
.soft-callout small {
  color: #bd8e83;
  font-family: var(--sans);
  font-size: 9px;
}

.soft-callout strong {
  margin: 4px 0;
  font-size: 17px;
  font-weight: 400;
}

.document-lede,
.document-note {
  margin: 0 0 28px;
  color: #d0cec4;
  font-size: 17px;
  line-height: 1.5;
}

.document-note {
  margin: 26px 0;
  font-style: italic;
}

.doc-section {
  padding: 18px 0 0;
  border-top: 1px solid #3f4238;
}

.doc-section + .doc-section {
  margin-top: 26px;
}

.doc-section > div {
  display: flex;
  min-height: 54px;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid #2f312b;
}

.doc-section time {
  width: 64px;
  color: #9b9990;
  font-family: var(--sans);
  font-size: 9px;
}

.doc-section strong {
  flex: 1;
  font-size: 15px;
  font-weight: 400;
}

.doc-section button {
  display: inline-flex;
  min-width: 64px;
  min-height: 44px;
  padding: 0;
  align-items: center;
  border: 0;
  background: transparent;
  color: #aeb894;
  font-family: var(--sans);
  font-size: 10px;
  text-align: left;
}

.doc-section .add-label::before {
  position: relative;
  width: 11px;
  height: 11px;
  margin-right: 6px;
  border-radius: 50%;
  background: linear-gradient(var(--moss-soft), var(--moss-soft)) center / 7px 1px no-repeat,
    linear-gradient(var(--moss-soft), var(--moss-soft)) center / 1px 7px no-repeat;
  content: "";
}

.budget-line div {
  justify-content: space-between;
}

.budget-line time {
  width: auto;
  color: #d0cec4;
  text-align: right;
}

.agent-window {
  background: #20211c;
}

.agent-panel {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.user-message {
  max-width: 72%;
  margin-left: auto;
  padding: 12px 16px;
  border-radius: 16px 16px 5px 16px;
  background: #2f3428;
  color: #eceae0;
  font-size: 14px;
}

.agent-message {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.agent-message p {
  max-width: 78%;
  margin: 0;
  padding: 13px 16px;
  border-radius: 5px 16px 16px;
  background: #2a2b26;
  color: #d0cec4;
  font-size: 14px;
}

.agent-draft {
  width: calc(100% - 30px);
  margin-left: 30px;
  padding: 22px;
  border: 1px solid #4a4135;
  border-radius: 18px;
  background: #28241f;
}

.agent-draft h3 {
  margin: 8px 0 18px;
  font-size: 27px;
  font-weight: 400;
}

.agent-draft > div:not(.draft-actions) {
  display: flex;
  min-height: 50px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid #3d3932;
}

.agent-draft span,
.agent-draft small {
  font-family: var(--sans);
  font-size: 10px;
}

.agent-draft small {
  color: #9b9990;
}

.agent-draft > p {
  margin: 14px 0 4px;
  color: #b69b7e;
  font-family: var(--sans);
  font-size: 9px;
}

.draft-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 20px;
}

.draft-actions button,
.premium-scene button {
  min-height: 44px;
  padding: 0 17px;
  border: 1px solid #4a4d44;
  border-radius: 999px;
  background: transparent;
  color: #d0cec4;
  font-family: var(--sans);
  font-size: 10px;
}

.draft-actions .apply {
  border-color: #aeb894;
  background: #aeb894;
  color: #20211c;
}

.spaces-section {
  overflow: hidden;
  background: var(--paper);
}

.spaces-shell {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  align-items: center;
  gap: 100px;
}

.spaces-copy h2 {
  max-width: 520px;
}

.spaces-copy > p:not(.eyebrow) {
  max-width: 490px;
  margin: 28px 0 0;
  color: var(--ink-soft);
  font-size: 19px;
}

.structure-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.structure-list li {
  padding: 9px 13px;
  border: 1px solid var(--hairline-strong);
  border-radius: 999px;
  color: var(--moss-dark);
  background: var(--canvas);
  font-family: var(--sans);
  font-size: 10px;
}

.space-stack {
  position: relative;
  min-height: 600px;
  perspective: 1000px;
}

.space-stack::before {
  position: absolute;
  inset: 5% 0 5% 12%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(162, 169, 143, 0.22), rgba(162, 169, 143, 0) 70%);
  content: "";
}

.space-card {
  position: absolute;
  display: flex;
  width: 420px;
  min-height: 230px;
  flex-direction: column;
  padding: 30px;
  border: 1px solid rgba(73, 79, 56, 0.12);
  border-radius: 22px;
  box-shadow: var(--shadow);
  transform-origin: 20% 50%;
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.space-card:hover {
  transform: translateY(-10px) rotate(0deg);
}

.space-card > span {
  color: inherit;
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.space-card h3 {
  margin: 28px 0 8px;
  font-size: 33px;
  font-weight: 400;
  line-height: 1;
}

.space-card > p {
  margin: 0;
  color: currentColor;
  font-family: var(--sans);
  font-size: 10px;
  opacity: 0.72;
}

.space-card-footer {
  display: flex;
  margin-top: auto;
  align-items: center;
}

.space-card-footer i {
  border-color: transparent;
}

.space-card-footer small {
  margin-left: 10px;
  font-family: var(--sans);
  font-size: 9px;
  opacity: 0.72;
}

.card-trip {
  top: 8px;
  left: 2%;
  z-index: 3;
  background: #e8f1ec;
  color: #46685a;
  transform: rotate(-3deg);
}

.card-home {
  top: 180px;
  right: 0;
  z-index: 2;
  background: var(--sand);
  color: #7a5a3a;
  transform: rotate(5deg);
}

.card-watch {
  bottom: 8px;
  left: 5%;
  z-index: 1;
  background: var(--lavender);
  color: #5f5478;
  transform: rotate(-7deg);
}

.premium-section {
  position: relative;
  overflow: hidden;
  background: var(--clay-soft);
}

.premium-section::before,
.premium-section::after {
  position: absolute;
  border-radius: 50%;
  content: "";
  filter: blur(2px);
  pointer-events: none;
}

.premium-section::before {
  top: -280px;
  right: -190px;
  width: 620px;
  height: 620px;
  background: radial-gradient(circle, rgba(255, 247, 233, 0.84), rgba(255, 247, 233, 0) 70%);
}

.premium-section::after {
  bottom: -330px;
  left: -220px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(192, 141, 87, 0.24), rgba(192, 141, 87, 0) 68%);
}

.premium-shell {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 86px;
}

.premium-mark {
  display: block;
  width: 34px;
  height: 34px;
  margin-bottom: 26px;
  border-radius: 46% 54% 64% 36% / 44% 36% 64% 56%;
  background: var(--clay);
  box-shadow: inset 8px -6px 0 rgba(255, 255, 255, 0.22);
  transform: rotate(17deg);
}

.premium-copy h2 {
  max-width: 620px;
}

.premium-copy > p:not(.eyebrow):not(.premium-price) {
  max-width: 550px;
  margin: 28px 0 0;
  color: #5f4937;
  font-size: 19px;
}

.premium-price {
  max-width: 520px;
  margin: 24px 0 30px;
  color: #6d543e;
  font-family: var(--sans);
  font-size: 11px;
}

.premium-scene {
  position: relative;
  min-height: 620px;
}

.prompt-card {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  max-width: 330px;
  padding: 18px 22px;
  border: 1px solid rgba(147, 104, 63, 0.17);
  border-radius: 20px 20px 5px;
  background: rgba(255, 250, 242, 0.9);
  box-shadow: var(--shadow-soft);
  color: #6d543e;
  font-size: 18px;
  font-style: italic;
  animation: prompt-float 6s ease-in-out infinite;
}

.draft-card {
  position: absolute;
  top: 88px;
  right: 0;
  width: min(100%, 470px);
  min-height: 460px;
  padding: 28px;
  border: 1px solid rgba(73, 79, 56, 0.12);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.93);
  box-shadow: 0 34px 90px rgba(98, 67, 38, 0.16);
  backdrop-filter: blur(12px);
  transform: rotate(2deg);
}

.draft-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 26px;
}

.draft-card-head div {
  display: flex;
  flex-direction: column;
}

.draft-card-head strong {
  font-size: 23px;
  font-weight: 500;
  line-height: 1;
}

.draft-card-head small {
  margin-top: 4px;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 9px;
}

.draft-row {
  display: grid;
  min-height: 62px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--hairline);
}

.draft-row p {
  margin: 0;
  font-size: 15px;
}

.draft-row time {
  color: var(--muted);
  font-family: var(--sans);
  font-size: 9px;
}

.draft-budget {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 12px;
  padding: 0 17px;
  border-radius: 14px;
  background: var(--sand);
  color: #7a5a3a;
  font-family: var(--sans);
  font-size: 10px;
}

.draft-budget strong {
  font-weight: 600;
}

.premium-scene button {
  display: block;
  margin: 22px 0 0 auto;
  border-color: var(--moss);
  background: var(--moss);
  color: #fff;
}

.motion-note {
  position: absolute;
  right: -28px;
  bottom: 30px;
  z-index: 3;
  display: flex;
  min-height: 50px;
  align-items: center;
  gap: 9px;
  padding: 0 16px;
  border: 1px solid rgba(73, 79, 56, 0.12);
  border-radius: 999px;
  background: rgba(250, 250, 245, 0.94);
  box-shadow: var(--shadow-soft);
  color: var(--moss-dark);
  font-family: var(--sans);
  font-size: 9px;
  animation: receipt-pulse 5s ease-in-out infinite;
}

.motion-note span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--moss);
}

.principles-section {
  background: var(--paper);
}

.principle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.principle-grid article {
  min-height: 290px;
  padding: 30px;
  border: 1px solid var(--hairline);
  border-radius: 20px;
  background: var(--canvas);
}

.principle-mark {
  position: relative;
  display: block;
  width: 48px;
  height: 48px;
  margin-bottom: 54px;
  border-radius: 50%;
  background: var(--sage);
}

.principle-mark::before,
.principle-mark::after {
  position: absolute;
  content: "";
}

.note-mark::before {
  top: 14px;
  left: 13px;
  width: 22px;
  height: 17px;
  border-top: 1px solid var(--moss-dark);
  border-bottom: 1px solid var(--moss-dark);
}

.note-mark::after {
  top: 23px;
  left: 13px;
  width: 15px;
  height: 1px;
  background: var(--moss-dark);
}

.free-mark::before {
  inset: 12px;
  border: 1px solid var(--moss-dark);
  border-radius: 4px;
}

.free-mark::after {
  top: 19px;
  left: 19px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--moss-soft);
}

.calm-mark::before,
.calm-mark::after {
  width: 18px;
  height: 18px;
  border: 1px solid var(--moss-dark);
  border-radius: 50%;
}

.calm-mark::before {
  top: 15px;
  left: 9px;
}

.calm-mark::after {
  top: 15px;
  right: 9px;
  background: rgba(238, 240, 229, 0.72);
}

.principle-grid h3 {
  margin: 0 0 12px;
  font-size: 26px;
  font-weight: 400;
  line-height: 1.08;
}

.principle-grid p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 16px;
}

.faq-section {
  background: var(--canvas);
}

.faq-shell {
  display: grid;
  grid-template-columns: 0.68fr 1.32fr;
  align-items: start;
  gap: 88px;
}

.faq-shell .section-heading {
  display: block;
  margin: 0;
}

.faq-shell .section-heading .eyebrow {
  padding: 0;
}

.faq-shell .section-heading h2 {
  font-size: clamp(46px, 5vw, 68px);
}

.faq-list {
  border-top: 1px solid var(--hairline-strong);
}

.faq-list details {
  border-bottom: 1px solid var(--hairline-strong);
}

.faq-list summary {
  position: relative;
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding-right: 52px;
  cursor: pointer;
  font-size: 21px;
  line-height: 1.2;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::before,
.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 15px;
  width: 18px;
  height: 1px;
  background: var(--moss-dark);
  content: "";
  transition: transform 180ms ease;
}

.faq-list summary::after {
  transform: rotate(90deg);
}

.faq-list details[open] summary::after {
  transform: rotate(0deg);
}

.faq-list details p {
  max-width: 680px;
  margin: -3px 52px 26px 0;
  color: var(--ink-soft);
  font-size: 17px;
}

.closing {
  display: flex;
  padding-block: 150px;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.closing img {
  width: 76px;
  height: 76px;
  margin-bottom: 30px;
  border-radius: 23px;
  box-shadow: 0 14px 38px rgba(73, 79, 56, 0.13);
}

.closing h2 {
  max-width: 800px;
}

.closing > p:not(.eyebrow) {
  max-width: 570px;
  margin: 24px 0 30px;
  color: var(--ink-soft);
  font-size: 19px;
}

.site-footer {
  padding-block: 58px 32px;
  border-top: 1px solid var(--hairline);
  background: var(--paper);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 30px;
}

.footer-brand {
  justify-self: start;
}

.footer-top > p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 16px;
  text-align: center;
}

.footer-top nav {
  display: flex;
  justify-self: end;
  gap: 24px;
  font-family: var(--sans);
  font-size: 12px;
}

.footer-top nav a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--ink-soft);
  text-decoration: none;
}

.footer-top nav a:hover {
  color: var(--ink);
}

.footer-bottom {
  display: flex;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid var(--hairline);
  justify-content: space-between;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 9px;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 440ms cubic-bezier(0.22, 1, 0.36, 1), transform 440ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Legal pages */
.legal-page {
  background: var(--paper);
}

.legal-header {
  position: relative;
  background: var(--paper);
}

.legal-hero {
  padding-block: 104px 76px;
  border-bottom: 1px solid var(--hairline);
}

.legal-hero h1 {
  max-width: 760px;
}

.legal-hero p:not(.eyebrow) {
  margin: 24px 0 0;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 12px;
}

.legal-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 760px);
  justify-content: space-between;
  gap: 90px;
  padding-block: 76px 128px;
}

.legal-aside {
  position: sticky;
  top: 110px;
  align-self: start;
}

.legal-aside p {
  margin: 0 0 16px;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.legal-aside nav {
  display: flex;
  flex-direction: column;
}

.legal-aside a {
  display: flex;
  min-height: 40px;
  align-items: center;
  color: var(--ink-soft);
  font-family: var(--sans);
  font-size: 12px;
  text-decoration: none;
}

.legal-aside a:hover {
  color: var(--ink);
}

.legal-content > p:first-child {
  margin-top: 0;
  color: var(--ink-soft);
  font-size: 21px;
  line-height: 1.5;
}

.legal-content section {
  padding-top: 34px;
  scroll-margin-top: 98px;
}

.legal-content h2 {
  margin: 0 0 14px;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.1;
}

.legal-content p,
.legal-content li {
  color: var(--ink-soft);
  font-size: 17px;
}

.legal-content p {
  margin: 0 0 16px;
}

.legal-content ul {
  margin: 12px 0 18px;
  padding-left: 22px;
}

.legal-content li + li {
  margin-top: 9px;
}

.legal-content a {
  color: var(--moss-dark);
  text-underline-offset: 3px;
}

.legal-note {
  margin-top: 48px;
  padding: 20px 22px;
  border: 1px solid var(--hairline-strong);
  border-radius: 14px;
  background: var(--canvas);
  color: var(--ink-soft);
  font-family: var(--sans);
  font-size: 11px;
}

/* Partner invitation */
.invite-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 18% 16%, rgba(239, 224, 204, 0.72), transparent 28%),
    radial-gradient(circle at 82% 74%, rgba(238, 240, 229, 0.9), transparent 32%),
    var(--canvas);
}

.invite-header,
.invite-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.invite-header {
  min-height: 88px;
}

.invite-home-link,
.invite-footer,
.invite-footer a {
  color: var(--ink-soft);
  font-family: var(--sans);
  font-size: 12px;
}

.invite-home-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  text-decoration: none;
}

.invite-main {
  display: grid;
  min-height: calc(100vh - 176px);
  grid-template-columns: minmax(0, 620px) minmax(220px, 330px);
  align-items: center;
  justify-content: center;
  gap: 48px;
  padding-block: 54px 80px;
}

.invite-card {
  padding: clamp(36px, 6vw, 70px);
  border: 1px solid rgba(73, 79, 56, 0.12);
  border-radius: 30px;
  background: rgba(250, 250, 245, 0.94);
  box-shadow: var(--shadow);
}

.invite-people {
  display: flex;
  margin-bottom: 34px;
  padding-left: 8px;
}

.invite-people span {
  display: grid;
  width: 50px;
  height: 50px;
  margin-left: -8px;
  place-items: center;
  border: 3px solid var(--paper);
  border-radius: 50%;
  background: #f4c0d1;
  color: #72243e;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
}

.invite-people span + span {
  background: #f5c4b3;
  color: #712b13;
}

.invite-card h1 {
  max-width: 520px;
  margin: 0;
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

.invite-lede {
  max-width: 470px;
  margin: 24px 0 30px;
  color: var(--ink-soft);
  font-size: 20px;
}

.invite-code {
  display: flex;
  margin-bottom: 22px;
  padding: 16px 18px;
  border: 1px solid var(--hairline);
  border-radius: 14px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: var(--paper-2);
  font-family: var(--sans);
  font-size: 11px;
}

.invite-code strong {
  color: var(--moss-dark);
  font-size: 14px;
  letter-spacing: 0.08em;
}

.invite-open {
  width: 100%;
}

.invite-error {
  margin: 0;
  padding: 16px 18px;
  border: 1px solid #dfcdbb;
  border-radius: 14px;
  background: var(--sand);
  color: var(--clay-dark);
  font-family: var(--sans);
  font-size: 13px;
}

.invite-help {
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid var(--hairline);
}

.invite-help h2 {
  margin: 0 0 6px;
  font-size: 22px;
  font-weight: 400;
}

.invite-help p {
  margin: 0 0 12px;
  color: var(--ink-soft);
  font-family: var(--sans);
  font-size: 13px;
}

.invite-help a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--moss-dark);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  text-underline-offset: 4px;
}

.invite-note {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 22px;
  border: 1px solid rgba(73, 79, 56, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow-soft);
  transform: rotate(2deg);
}

.invite-note p {
  margin: 0;
  color: var(--ink-soft);
  font-family: var(--sans);
  font-size: 13px;
}

.invite-note strong {
  display: block;
  margin-bottom: 3px;
  color: var(--ink);
}

.invite-footer {
  min-height: 88px;
  border-top: 1px solid var(--hairline);
}

.invite-footer nav {
  display: flex;
  gap: 24px;
}

.invite-footer a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  text-decoration: none;
}

@keyframes hero-rise {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes float-space {
  0%, 100% { transform: translateY(0) rotate(-5deg); }
  50% { transform: translateY(-10px) rotate(-3deg); }
}

@keyframes float-receipt {
  0%, 100% { transform: translateY(0) rotate(4deg); }
  50% { transform: translateY(9px) rotate(2deg); }
}

@keyframes drift-orbit {
  from { transform: rotate(-4deg) scale(0.98); }
  to { transform: rotate(4deg) scale(1.03); }
}

@keyframes drift-orbit-wide {
  from { transform: rotate(-21deg) scale(0.98); }
  to { transform: rotate(-14deg) scale(1.03); }
}

@keyframes panel-enter {
  from { opacity: 0; transform: translateY(12px) scale(0.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes note-enter {
  from { opacity: 0; transform: translateY(7px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes prompt-float {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-8px) rotate(0deg); }
}

@keyframes receipt-pulse {
  0%, 100% { transform: translateY(0); box-shadow: var(--shadow-soft); }
  50% { transform: translateY(-6px); box-shadow: 0 17px 45px rgba(73, 79, 56, 0.15); }
}

@media (max-width: 1050px) {
  .hero {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 20px;
  }

  .hero h1 {
    font-size: clamp(58px, 7.8vw, 82px);
  }

  .float-space {
    left: 0;
  }

  .float-receipt {
    right: 0;
  }

  .showcase-shell,
  .spaces-shell,
  .premium-shell {
    gap: 54px;
  }

  .space-card {
    width: 370px;
  }
}

@media (max-width: 900px) {
  :root {
    --shell: min(100% - 40px, 700px);
  }

  .menu-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    position: absolute;
    top: 68px;
    right: 20px;
    left: 20px;
    display: none;
    padding: 18px;
    border: 1px solid var(--hairline);
    border-radius: 18px;
    align-items: stretch;
    flex-direction: column;
    gap: 4px;
    background: rgba(250, 250, 245, 0.98);
    box-shadow: var(--shadow-soft);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav > a:not(.button) {
    padding-inline: 12px;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 26px;
    padding-block: 90px 70px;
  }

  .hero-copy {
    max-width: 660px;
    padding-bottom: 0;
  }

  .hero h1 {
    max-width: 680px;
    font-size: clamp(64px, 13vw, 92px);
  }

  .hero-product {
    min-height: 720px;
  }

  .life-scatter {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .scatter-copy {
    max-width: 680px;
  }

  .scatter-scene {
    width: min(100%, 620px);
    margin-inline: auto;
  }

  .float-space {
    left: 5%;
  }

  .float-receipt {
    right: 3%;
  }

  .section-heading {
    display: block;
  }

  .section-heading .eyebrow {
    padding-top: 0;
  }

  .feature-grid,
  .principle-grid {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .feature-card + .feature-card {
    min-height: 230px;
    padding: 28px 0;
    border-right: 0;
    border-bottom: 1px solid var(--hairline);
  }

  .feature-card:last-child {
    border-bottom: 0;
  }

  .feature-card h3 {
    margin-top: 34px;
  }

  .showcase-shell,
  .spaces-shell,
  .premium-shell,
  .faq-shell {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .showcase-notes {
    min-height: 150px;
  }

  .app-window {
    margin-inline: auto;
  }

  .spaces-copy {
    max-width: 650px;
  }

  .space-stack {
    width: min(100%, 600px);
    margin-inline: auto;
  }

  .premium-copy {
    max-width: 650px;
  }

  .premium-scene {
    width: min(100%, 600px);
    margin-inline: auto;
  }

  .principle-grid {
    gap: 14px;
  }

  .principle-grid article {
    min-height: 240px;
  }

  .principle-mark {
    margin-bottom: 40px;
  }

  .faq-shell .section-heading {
    max-width: 530px;
  }

  .footer-top {
    grid-template-columns: 1fr auto;
  }

  .footer-top > p {
    display: none;
  }

  .legal-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .legal-aside {
    position: static;
  }

  .legal-aside nav {
    flex-flow: row wrap;
    gap: 0 20px;
  }

  .invite-main {
    max-width: 660px;
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .invite-note {
    max-width: 420px;
    transform: rotate(-1deg);
  }
}

@media (max-width: 600px) {
  :root {
    --shell: calc(100% - 32px);
  }

  body {
    font-size: 17px;
  }

  .nav-shell {
    min-height: 68px;
  }

  .hero {
    padding-top: 66px;
  }

  .hero h1 {
    font-size: clamp(58px, 19vw, 78px);
  }

  .hero-lede {
    font-size: 19px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .text-link {
    padding-inline: 8px;
  }

  .hero-product {
    min-height: 660px;
    transform: scale(0.9);
    transform-origin: center top;
  }

  .hero-product::before {
    width: 490px;
    height: 490px;
  }

  .orbit-one {
    width: 470px;
    height: 470px;
  }

  .orbit-two {
    width: 560px;
    height: 360px;
  }

  .phone {
    width: 304px;
    min-height: 630px;
  }

  .float-space {
    top: 70px;
    left: -12px;
    width: 180px;
  }

  .float-receipt {
    right: -24px;
    bottom: 74px;
    width: 222px;
  }

  .life-scatter {
    gap: 30px;
    padding-block: 82px 92px;
  }

  .scatter-copy h2 {
    font-size: 45px;
  }

  .scatter-copy > p:last-child {
    font-size: 18px;
  }

  .scatter-scene {
    min-height: 470px;
  }

  .scatter-piece {
    width: 188px;
    min-height: 92px;
    padding: 15px 16px;
  }

  .scatter-piece strong {
    font-size: 15px;
  }

  .piece-message {
    top: 14px;
    left: -4px;
  }

  .piece-date {
    top: 78px;
    right: -4px;
  }

  .piece-note {
    bottom: 8px;
    left: 0;
  }

  .gather-card {
    top: 164px;
    width: min(82vw, 310px);
    min-height: 198px;
    padding: 24px;
  }

  .gather-card > strong {
    font-size: 30px;
  }

  .section {
    padding-block: 92px;
  }

  .section-heading,
  .section-heading.compact {
    margin-bottom: 44px;
  }

  .section-heading h2,
  .showcase-copy > h2,
  .spaces-copy h2,
  .premium-copy h2,
  .closing h1,
  .closing h2,
  .legal-hero h1 {
    font-size: 48px;
  }

  .showcase-tabs {
    width: 100%;
  }

  .showcase-tabs button {
    min-width: 0;
    flex: 1;
  }

  .showcase-stage {
    min-height: 580px;
  }

  .app-window {
    min-height: 560px;
    border-radius: 23px;
  }

  .app-window-content {
    padding: 22px;
  }

  .shared-item {
    min-height: 68px;
  }

  .agent-draft {
    width: calc(100% - 12px);
    margin-left: 12px;
    padding: 17px;
  }

  .space-stack {
    min-height: 560px;
  }

  .space-card {
    width: min(88vw, 350px);
    min-height: 210px;
    padding: 25px;
  }

  .card-home {
    top: 170px;
  }

  .premium-scene {
    min-height: 590px;
  }

  .prompt-card {
    max-width: 280px;
    font-size: 16px;
  }

  .draft-card {
    top: 105px;
    width: calc(100% - 12px);
    padding: 22px;
  }

  .motion-note {
    right: -6px;
  }

  .principle-grid article {
    padding: 26px;
  }

  .faq-list summary {
    min-height: 88px;
    font-size: 19px;
  }

  .closing {
    padding-block: 100px;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-top nav {
    justify-self: start;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .legal-hero {
    padding-block: 72px 52px;
  }

  .legal-layout {
    padding-block: 52px 92px;
  }

  .legal-content > p:first-child {
    font-size: 19px;
  }

  .invite-header {
    min-height: 72px;
  }

  .invite-main {
    min-height: auto;
    padding-block: 38px 70px;
  }

  .invite-card {
    padding: 34px 24px;
    border-radius: 24px;
  }

  .invite-card h1 {
    font-size: 48px;
  }

  .invite-lede {
    font-size: 18px;
  }

  .invite-footer {
    min-height: 104px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

  .reveal {
    transform: none;
  }
}
