:root {
  --paper: #f7f6fb;
  --surface: #ffffff;
  --surface-soft: #eeedf7;
  --ink: #20242e;
  --ink-soft: #616777;
  --line: rgba(32, 36, 46, 0.12);
  --lavender: #d9ccff;
  --cyan: #a6dce6;
  --coral: #f39a8b;
  --honey: #f2d587;
  --deep: #303448;
  --shadow: 0 28px 90px rgba(46, 45, 71, 0.14);
  --content: 1180px;
  --radius-lg: 40px;
  --radius-md: 26px;
  --radius-sm: 16px;
  --display: ui-rounded, "SF Pro Rounded", "PingFang SC", "Microsoft YaHei", sans-serif;
  --body: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC",
    "Microsoft YaHei", sans-serif;
}

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

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

body {
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: -2;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 8% 3%, rgba(166, 220, 230, 0.3), transparent 24%),
    radial-gradient(circle at 89% 8%, rgba(217, 204, 255, 0.34), transparent 23%),
    var(--paper);
}

a {
  color: inherit;
  text-decoration: none;
}

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

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

:focus-visible {
  outline: 3px solid rgba(77, 113, 211, 0.48);
  outline-offset: 4px;
}

.sr-only {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: #fff;
  background: var(--ink);
  border-radius: 10px;
  transform: translateY(-150%);
}

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

.section-shell {
  width: min(calc(100% - 48px), var(--content));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid transparent;
  transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(247, 246, 251, 0.88);
  border-color: var(--line);
  box-shadow: 0 10px 36px rgba(32, 36, 46, 0.06);
  backdrop-filter: blur(20px);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 48px), var(--content));
  min-height: 78px;
  margin-inline: auto;
}

.wordmark {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--display);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.wordmark-dot {
  width: 14px;
  height: 14px;
  background: var(--ink);
  border: 4px solid var(--lavender);
  border-radius: 50%;
  box-shadow: 10px -6px 0 -4px var(--cyan), -8px 7px 0 -4px var(--coral);
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: #474c5a;
  font-size: 14px;
  font-weight: 650;
}

.primary-nav a {
  position: relative;
}

.primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.primary-nav a:hover::after,
.primary-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 12px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin-block: 5px;
  background: var(--ink);
  transition: transform 180ms ease;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(390px, 0.95fr);
  gap: clamp(48px, 7vw, 100px);
  align-items: center;
  min-height: calc(100vh - 78px);
  padding-block: 70px 90px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 13px;
  color: #4d5261;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.status-pulse {
  width: 8px;
  height: 8px;
  background: #4b8a75;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(75, 138, 117, 0.13);
}

.eyebrow {
  margin: 24px 0 14px;
  color: #6c7080;
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.hero h1,
.section-heading h2,
.about-title h2,
.contact-inner h2,
.world-copy h2,
.legal-hero h1 {
  margin: 0;
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.065em;
  line-height: 1.08;
}

.hero h1 {
  max-width: 650px;
  font-size: clamp(52px, 6.2vw, 86px);
}

.hero-tagline {
  max-width: 650px;
  margin: 12px 0 0;
  color: #565f99;
  font-family: var(--display);
  font-size: clamp(40px, 4.8vw, 68px);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 1.12;
}

.hero-lead {
  max-width: 620px;
  margin: 30px 0 0;
  color: var(--ink-soft);
  font-size: clamp(17px, 1.45vw, 20px);
  line-height: 1.9;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 12px 23px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 750;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #fff;
  background: var(--ink);
  box-shadow: 0 14px 36px rgba(32, 36, 46, 0.2);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.7);
  border-color: var(--line);
}

.company-proof {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 13px;
  align-items: center;
  max-width: 430px;
  padding: 15px 18px;
  margin-top: 44px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--line);
  border-radius: 20px;
  transition: background-color 180ms ease, transform 180ms ease;
}

.company-proof:hover {
  background: #fff;
  transform: translateY(-2px);
}

.proof-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: #fff;
  background: var(--deep);
  border-radius: 13px;
  font-weight: 800;
}

.company-proof small,
.company-proof strong {
  display: block;
}

.company-proof small {
  color: #737786;
  font-size: 11px;
  letter-spacing: 0.08em;
}

.company-proof strong {
  font-size: 14px;
}

.proof-arrow {
  color: #747887;
}

.particle-stage {
  position: relative;
  display: grid;
  min-height: 650px;
  overflow: hidden;
  place-items: center;
  isolation: isolate;
}

.particle-stage::before {
  position: absolute;
  z-index: -2;
  width: 520px;
  height: 520px;
  content: "";
  background: rgba(217, 204, 255, 0.4);
  border-radius: 46% 54% 55% 45% / 42% 46% 54% 58%;
  filter: blur(2px);
  transform: rotate(-8deg);
}

.particle-stage::after {
  position: absolute;
  z-index: -1;
  width: 430px;
  height: 430px;
  content: "";
  background: rgba(166, 220, 230, 0.36);
  border-radius: 50%;
  filter: blur(30px);
  transform: translate(72px, 25px);
}

.particle-field {
  position: absolute;
  inset: 0;
}

.particle {
  position: absolute;
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  box-shadow: inset -5px -7px 14px rgba(107, 103, 150, 0.14), 0 12px 25px rgba(88, 86, 130, 0.12);
  animation: particle-float 7s ease-in-out infinite;
}

.p1 { top: 5%; left: 13%; width: 19px; height: 19px; }
.p2 { top: 17%; right: 6%; background-color: rgba(243, 154, 139, 0.55); animation-delay: -1s; }
.p3 { top: 44%; left: 2%; width: 39px; height: 39px; background-color: rgba(166, 220, 230, 0.72); animation-delay: -3s; }
.p4 { right: 0; bottom: 28%; width: 17px; height: 17px; animation-delay: -5s; }
.p5 { bottom: 8%; left: 13%; background-color: rgba(242, 213, 135, 0.72); animation-delay: -4s; }
.p6 { right: 15%; bottom: 2%; width: 46px; height: 46px; background-color: rgba(217, 204, 255, 0.64); animation-delay: -2s; }
.p7 { top: 31%; right: 13%; width: 12px; height: 12px; }
.p8 { top: 27%; left: 18%; width: 10px; height: 10px; background-color: var(--coral); animation-delay: -6s; }

.phone-frame {
  position: relative;
  width: min(360px, 82vw);
  padding: 10px;
  background: #151821;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 48px;
  box-shadow: var(--shadow), inset 0 0 0 2px rgba(255, 255, 255, 0.12);
  transform: rotate(2.5deg);
}

.phone-speaker {
  position: absolute;
  z-index: 2;
  top: 21px;
  left: 50%;
  width: 90px;
  height: 22px;
  background: #151821;
  border-radius: 999px;
  transform: translateX(-50%);
}

.phone-screen {
  overflow: hidden;
  min-height: 635px;
  padding: 22px 18px 18px;
  background:
    radial-gradient(circle at 88% 20%, rgba(166, 220, 230, 0.5), transparent 25%),
    radial-gradient(circle at 18% 66%, rgba(243, 154, 139, 0.23), transparent 25%),
    #fcfbff;
  border-radius: 39px;
}

.app-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #565b6c;
  font-size: 9px;
  font-weight: 800;
}

.app-label {
  padding-top: 26px;
  color: #333747;
  font-size: 10px;
  letter-spacing: 0.03em;
}

.app-greeting {
  position: relative;
  padding: 28px 5px 10px;
}

.app-greeting p {
  margin: 0 0 5px;
  color: #686d7d;
  font-size: 13px;
}

.app-greeting h2 {
  max-width: 260px;
  margin: 0;
  font-family: var(--display);
  font-size: 30px;
  letter-spacing: -0.045em;
  line-height: 1.25;
}

.tiny-particle {
  position: absolute;
  top: 30px;
  right: 5px;
  width: 28px;
  height: 28px;
  background: var(--lavender);
  border: 8px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  box-shadow: 15px 11px 0 -10px var(--cyan), -8px 20px 0 -10px var(--coral);
}

.prompt-chips {
  display: flex;
  gap: 7px;
  margin: 18px 4px 29px;
}

.prompt-chips span {
  padding: 8px 10px;
  color: #5a5f70;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(32, 36, 46, 0.08);
  border-radius: 999px;
  font-size: 9px;
  font-weight: 700;
}

.chat-sample {
  min-height: 282px;
  padding: 18px 3px;
  border-top: 1px solid rgba(32, 36, 46, 0.08);
}

.bubble {
  width: fit-content;
  max-width: 83%;
  padding: 12px 14px;
  margin: 0 0 12px;
  border-radius: 17px;
  font-size: 12px;
  line-height: 1.55;
}

.bubble-user {
  margin-left: auto;
  background: var(--deep);
  color: #fff;
  border-bottom-right-radius: 5px;
}

.bubble-ai {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(32, 36, 46, 0.08);
  border-bottom-left-radius: 5px;
}

.app-composer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 10px 10px 10px 13px;
  color: #858998;
  background: #fff;
  border: 1px solid rgba(32, 36, 46, 0.08);
  border-radius: 999px;
  font-size: 11px;
  box-shadow: 0 10px 30px rgba(57, 59, 82, 0.09);
}

.composer-mic {
  font-size: 20px;
  transform: rotate(90deg);
}

.composer-send {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  color: #fff;
  background: var(--coral);
  border-radius: 50%;
  font-size: 17px;
  font-weight: 800;
}

.app-tabs {
  display: flex;
  justify-content: space-around;
  padding: 18px 5px 4px;
  color: #9b9eaa;
  font-size: 10px;
  font-weight: 750;
}

.app-tabs .active {
  position: relative;
  color: var(--ink);
}

.app-tabs .active::after {
  position: absolute;
  bottom: -8px;
  left: 50%;
  width: 13px;
  height: 3px;
  content: "";
  background: var(--coral);
  border-radius: 999px;
  transform: translateX(-50%);
}

.preview-note {
  position: absolute;
  right: 0;
  bottom: 5px;
  padding: 8px 12px;
  margin: 0;
  color: #646979;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  backdrop-filter: blur(12px);
}

.audit-strip {
  background: var(--deep);
  color: #fff;
}

.audit-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.6fr 0.9fr 1.2fr;
  gap: 0;
}

.audit-grid > div {
  min-width: 0;
  padding: 25px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.13);
}

.audit-grid > div:first-child {
  padding-left: 0;
}

.audit-grid > div:last-child {
  padding-right: 0;
  border-right: 0;
}

.audit-grid span,
.audit-grid strong,
.audit-grid a {
  display: block;
}

.audit-grid span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 10px;
  letter-spacing: 0.08em;
}

.audit-grid strong,
.audit-grid a {
  overflow: hidden;
  margin-top: 4px;
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.content-section,
.about-section {
  padding-block: 150px;
}

.section-heading {
  max-width: 670px;
}

.section-heading .eyebrow,
.about-title .eyebrow,
.world-copy .eyebrow,
.contact-inner .eyebrow,
.legal-hero .eyebrow {
  margin-top: 0;
}

.section-heading h2,
.about-title h2,
.contact-inner h2,
.world-copy h2 {
  font-size: clamp(42px, 5.2vw, 70px);
}

.section-heading > p:last-child,
.world-copy > p:last-child {
  max-width: 600px;
  margin: 28px 0 0;
  color: var(--ink-soft);
  font-size: 18px;
}

.value-cycle {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 18px;
  align-items: center;
  margin-top: 85px;
}

.value-card {
  min-height: 290px;
  padding: 32px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.value-card:nth-of-type(2) {
  transform: translateY(28px);
}

.value-word {
  display: grid;
  width: 66px;
  height: 66px;
  place-items: center;
  background: var(--lavender);
  border-radius: 50%;
  font-family: var(--display);
  font-weight: 800;
}

.value-card:nth-of-type(2) .value-word { background: var(--cyan); }
.value-card:nth-of-type(3) .value-word { background: var(--honey); }

.value-card h3 {
  margin: 34px 0 10px;
  font-family: var(--display);
  font-size: 24px;
  letter-spacing: -0.04em;
}

.value-card p {
  margin: 0;
  color: var(--ink-soft);
}

.cycle-link {
  color: #9397a4;
  font-size: 23px;
}

.experience-section {
  padding-block: 150px;
  background: #e9e8f1;
}

.section-heading-wide {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  column-gap: 90px;
  max-width: none;
}

.section-heading-wide .eyebrow {
  grid-column: 1 / -1;
}

.section-heading-wide > p:last-child {
  align-self: end;
  margin-bottom: 7px;
}

.experience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 80px;
}

.experience-card {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 25px;
  min-height: 420px;
  padding: 34px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid rgba(32, 36, 46, 0.08);
  border-radius: var(--radius-lg);
}

.experience-create {
  grid-column: 1 / -1;
  grid-template-columns: 0.75fr 1.25fr;
  min-height: 390px;
}

.experience-copy {
  align-self: start;
}

.experience-copy > span {
  color: #777b8a;
  font-size: 12px;
  font-weight: 750;
}

.experience-copy h3 {
  margin: 18px 0 15px;
  font-family: var(--display);
  font-size: clamp(28px, 2.6vw, 38px);
  letter-spacing: -0.045em;
  line-height: 1.2;
}

.experience-copy p {
  margin: 0;
  color: var(--ink-soft);
}

.mini-ui {
  align-self: end;
  min-width: 0;
  border: 1px solid rgba(32, 36, 46, 0.08);
  border-radius: 24px;
}

.chat-ui {
  min-height: 312px;
  padding: 18px;
  background: linear-gradient(155deg, #f3f0ff, #f8fbfc 63%, #fbeae6);
  transform: rotate(1deg) translate(12px, 14px);
}

.mini-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  color: #777b8a;
  font-size: 9px;
  font-weight: 700;
}

.mini-header i {
  width: 20px;
  height: 20px;
  background: var(--lavender);
  border-radius: 50%;
  box-shadow: 7px 2px 0 -4px var(--cyan);
}

.mini-bubble {
  width: fit-content;
  max-width: 88%;
  padding: 11px 13px;
  margin: 0 0 11px;
  border-radius: 15px;
  font-size: 10px;
  line-height: 1.5;
}

.mini-bubble.left {
  background: #fff;
  border-bottom-left-radius: 4px;
}

.mini-bubble.right {
  margin-left: auto;
  color: #fff;
  background: var(--deep);
  border-bottom-right-radius: 4px;
}

.mini-input {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 9px 9px 13px;
  margin-top: 34px;
  color: #8a8e9b;
  background: #fff;
  border-radius: 999px;
  font-size: 9px;
}

.mini-input strong {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  color: #fff;
  background: var(--coral);
  border-radius: 50%;
}

.record-ui {
  padding: 19px;
  background: #fffaf4;
  transform: rotate(-1.5deg) translate(12px, 14px);
}

.record-date {
  padding: 5px 3px 20px;
  border-bottom: 1px solid var(--line);
}

.record-date small,
.record-date strong {
  display: block;
}

.record-date small {
  color: #8b8e99;
  font-size: 9px;
}

.record-date strong {
  font-family: var(--display);
  font-size: 23px;
}

.record-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 17px 3px;
  border-bottom: 1px solid var(--line);
  font-size: 10px;
}

.record-row i {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.record-row b {
  color: #737785;
  font-weight: 650;
}

.mood-dot { background: var(--lavender); }
.meal-dot { background: var(--honey); }
.motion-dot { background: var(--cyan); }

.create-ui {
  position: relative;
  min-height: 315px;
  background:
    linear-gradient(rgba(71, 75, 93, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(71, 75, 93, 0.06) 1px, transparent 1px),
    #f8f1df;
  background-size: 26px 26px;
  transform: rotate(0.5deg) translateY(28px);
}

.paper-card {
  position: absolute;
  padding: 25px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(68, 60, 45, 0.12);
}

.paper-one {
  top: 42px;
  left: 43px;
  width: 66%;
  transform: rotate(-3deg);
}

.paper-one small {
  color: #8b7e6a;
  font-size: 9px;
  letter-spacing: 0.12em;
}

.paper-one p {
  margin: 15px 0 0;
  font-family: var(--display);
  font-size: 17px;
  line-height: 1.8;
}

.paper-two {
  right: 32px;
  bottom: 33px;
  display: grid;
  width: 100px;
  height: 116px;
  place-items: center;
  background: var(--coral);
  color: #fff;
  transform: rotate(6deg);
}

.paper-two span {
  font-size: 32px;
  font-weight: 800;
}

.paper-two small {
  margin-top: -25px;
  font-size: 9px;
  letter-spacing: 0.15em;
}

.paper-tape {
  position: absolute;
  top: 26px;
  left: 32%;
  width: 80px;
  height: 22px;
  background: rgba(166, 220, 230, 0.65);
  transform: rotate(5deg);
}

.world-section {
  padding-block: 130px 30px;
}

.world-panel {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 70px;
  align-items: center;
  min-height: 560px;
  padding: clamp(40px, 7vw, 90px);
  overflow: hidden;
  background: var(--deep);
  border-radius: var(--radius-lg);
  color: #fff;
}

.world-copy > p:last-child {
  color: rgba(255, 255, 255, 0.66);
}

.world-copy .eyebrow {
  color: rgba(255, 255, 255, 0.5);
}

.world-orbit {
  position: relative;
  width: min(360px, 70vw);
  aspect-ratio: 1;
  justify-self: center;
}

.orbit {
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
}

.orbit-two {
  inset: 27%;
  border-color: rgba(255, 255, 255, 0.36);
}

.orbit-core {
  position: absolute;
  inset: 39%;
  display: grid;
  place-items: center;
  color: var(--deep);
  background: #fff;
  border-radius: 50%;
  font-family: var(--display);
  font-size: 45px;
  font-weight: 900;
  box-shadow: 0 0 80px rgba(217, 204, 255, 0.55);
}

.orb {
  position: absolute;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  box-shadow: inset -4px -5px 8px rgba(31, 34, 48, 0.22), 0 0 26px currentColor;
  animation: orbit-pulse 5s ease-in-out infinite;
}

.orb-a { top: 10%; left: 47%; color: var(--lavender); background: var(--lavender); }
.orb-b { right: 7%; bottom: 35%; color: var(--cyan); background: var(--cyan); animation-delay: -1.5s; }
.orb-c { bottom: 4%; left: 35%; color: var(--coral); background: var(--coral); animation-delay: -3s; }
.orb-d { top: 38%; left: 4%; color: var(--honey); background: var(--honey); animation-delay: -4s; }

.about-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 100px;
}

.about-copy h3 {
  margin: 7px 0 18px;
  font-family: var(--display);
  font-size: 28px;
  letter-spacing: -0.04em;
}

.about-copy > p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 18px;
}

.company-facts {
  margin: 48px 0 0;
  border-top: 1px solid var(--line);
}

.company-facts > div {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 20px;
  padding-block: 17px;
  border-bottom: 1px solid var(--line);
}

.company-facts dt {
  color: #797d8b;
  font-size: 13px;
}

.company-facts dd {
  margin: 0;
  font-weight: 700;
}

.company-facts a,
.legal-article a,
.support-card a {
  text-decoration: underline;
  text-decoration-color: rgba(32, 36, 46, 0.25);
  text-underline-offset: 4px;
}

.boundary-section {
  padding-bottom: 120px;
}

.boundary-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: start;
  padding: 34px;
  background: rgba(242, 213, 135, 0.35);
  border: 1px solid rgba(120, 98, 39, 0.16);
  border-radius: var(--radius-md);
}

.boundary-card > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #fff;
  background: var(--ink);
  border-radius: 50%;
  font-family: serif;
  font-size: 23px;
  font-style: italic;
  font-weight: 800;
}

.boundary-card h2 {
  margin: 0 0 8px;
  font-family: var(--display);
  font-size: 22px;
}

.boundary-card p {
  margin: 0;
  color: #625b4b;
}

.contact-section {
  padding-block: 100px;
  color: #fff;
  background: #565f99;
}

.contact-inner {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 60px;
}

.contact-inner .eyebrow {
  color: rgba(255, 255, 255, 0.55);
}

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  flex: 0 0 220px;
}

.button-light {
  width: 100%;
  color: var(--ink);
  background: #fff;
}

.text-link {
  padding-left: 8px;
  font-weight: 700;
}

.text-link span {
  margin-left: 8px;
}

.site-footer {
  padding-block: 55px;
  color: #d8d9df;
  background: #1d2029;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 1fr;
  gap: 60px;
  align-items: start;
}

.wordmark-footer {
  color: #fff;
}

.footer-grid p {
  margin: 14px 0 0;
  color: #8f929d;
  font-size: 13px;
}

.footer-grid nav {
  display: grid;
  gap: 10px;
  font-size: 14px;
}

.footer-grid nav a:hover {
  color: #fff;
}

.footer-meta {
  text-align: right;
}

.footer-meta p {
  margin-top: 0;
}

.filing-note {
  font-size: 12px !important;
}

/* Legal and support pages */
.subpage-body::before {
  background:
    radial-gradient(circle at 84% 2%, rgba(217, 204, 255, 0.35), transparent 24%),
    var(--paper);
}

.legal-hero {
  padding-block: 95px 65px;
  border-bottom: 1px solid var(--line);
}

.legal-hero h1 {
  max-width: 800px;
  font-size: clamp(48px, 6vw, 76px);
}

.legal-hero > p:last-child {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: 18px;
}

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-top: 30px;
  color: #737786;
  font-size: 13px;
}

.legal-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 760px);
  gap: 75px;
  align-items: start;
  padding-block: 70px 130px;
}

.legal-article {
  min-width: 0;
}

.legal-toc {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 9px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 20px;
}

.legal-toc strong {
  margin-bottom: 5px;
  font-size: 12px;
  letter-spacing: 0.08em;
}

.legal-toc a {
  color: #666b7a;
  font-size: 13px;
}

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

.legal-article section {
  padding-bottom: 34px;
  margin-bottom: 34px;
  border-bottom: 1px solid var(--line);
}

.legal-article section:last-child {
  border-bottom: 0;
}

.legal-article h2 {
  margin: 0 0 18px;
  font-family: var(--display);
  font-size: 28px;
  letter-spacing: -0.04em;
}

.legal-article h3 {
  margin: 25px 0 10px;
  font-size: 17px;
}

.legal-article p,
.legal-article li {
  color: #515766;
}

.legal-article ul,
.legal-article ol {
  padding-left: 22px;
}

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

.legal-table-wrap {
  overflow-x: auto;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin-block: 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.legal-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  font-size: 14px;
}

.legal-table th,
.legal-table td {
  padding: 14px 16px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}

.legal-table th {
  color: #4f5563;
  background: #ecebf3;
}

.legal-table tr:last-child td {
  border-bottom: 0;
}

.legal-note {
  padding: 18px 20px;
  color: #56513f !important;
  background: rgba(242, 213, 135, 0.3);
  border-radius: 14px;
}

.support-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding-block: 70px 130px;
}

.support-card {
  padding: 30px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.support-card-wide {
  grid-column: 1 / -1;
}

.support-card h2,
.support-card h3 {
  margin: 0 0 12px;
  font-family: var(--display);
  letter-spacing: -0.035em;
}

.support-card h2 { font-size: 34px; }
.support-card h3 { font-size: 22px; }

.support-card p {
  margin: 0;
  color: var(--ink-soft);
}

.support-card p + p {
  margin-top: 10px;
}

.support-email {
  display: inline-block;
  margin-top: 22px;
  font-family: ui-monospace, Consolas, monospace;
  font-size: clamp(17px, 2.3vw, 25px);
  font-weight: 800;
}

.faq-list {
  display: grid;
  gap: 0;
  margin-top: 25px;
  border-top: 1px solid var(--line);
}

.faq-item {
  padding-block: 22px;
  border-bottom: 1px solid var(--line);
}

.faq-item h3 {
  font-size: 17px;
}

.not-found {
  display: grid;
  min-height: 72vh;
  place-items: center;
  text-align: center;
}

.not-found h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(64px, 12vw, 130px);
  letter-spacing: -0.08em;
}

.not-found p {
  margin: 10px 0 28px;
  color: var(--ink-soft);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

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

@keyframes particle-float {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(4px, -14px, 0); }
}

@keyframes orbit-pulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.2); opacity: 1; }
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 58px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-lead,
  .company-proof {
    margin-inline: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .particle-stage {
    min-height: 660px;
  }

  .audit-grid {
    grid-template-columns: 1fr 1fr;
  }

  .audit-grid > div,
  .audit-grid > div:first-child,
  .audit-grid > div:last-child {
    padding: 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.13);
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  }

  .value-cycle {
    grid-template-columns: 1fr;
  }

  .value-card:nth-of-type(2) {
    transform: none;
  }

  .cycle-link {
    display: none;
  }

  .experience-grid {
    grid-template-columns: 1fr;
  }

  .experience-create {
    grid-column: auto;
  }

  .world-panel,
  .about-section {
    grid-template-columns: 1fr;
  }

  .world-panel {
    gap: 40px;
  }

  .about-section {
    gap: 55px;
  }

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

  .legal-toc {
    position: static;
  }
}

@media (max-width: 760px) {
  .section-shell,
  .nav-shell {
    width: min(calc(100% - 32px), var(--content));
  }

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

  .nav-toggle {
    display: block;
  }

  .primary-nav {
    position: absolute;
    top: 68px;
    right: 16px;
    left: 16px;
    display: none;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow);
  }

  .primary-nav.is-open {
    display: grid;
  }

  .primary-nav a {
    padding: 12px 13px;
  }

  .primary-nav a::after {
    display: none;
  }

  .hero {
    min-height: 0;
    padding-block: 50px 70px;
  }

  .hero h1 {
    font-size: clamp(48px, 14vw, 64px);
  }

  .hero-tagline {
    font-size: 42px;
  }

  .hero-lead {
    font-size: 16px;
    line-height: 1.8;
  }

  .company-proof {
    text-align: left;
  }

  .particle-stage {
    min-height: 610px;
  }

  .particle-stage::before {
    width: 100%;
    height: 80%;
  }

  .particle-stage::after {
    width: 100%;
    height: 72%;
    transform: translate(28px, 18px);
  }

  .phone-frame {
    width: min(330px, 88vw);
  }

  .phone-screen {
    min-height: 570px;
  }

  .chat-sample {
    min-height: 220px;
  }

  .preview-note {
    right: auto;
    bottom: -5px;
  }

  .audit-grid {
    grid-template-columns: 1fr;
  }

  .audit-grid > div,
  .audit-grid > div:first-child,
  .audit-grid > div:last-child {
    padding-inline: 0;
    border-right: 0;
  }

  .content-section,
  .experience-section,
  .about-section {
    padding-block: 100px;
  }

  .section-heading h2,
  .about-title h2,
  .contact-inner h2,
  .world-copy h2 {
    font-size: clamp(39px, 12vw, 54px);
  }

  .section-heading > p:last-child,
  .world-copy > p:last-child,
  .about-copy > p {
    font-size: 16px;
  }

  .value-cycle,
  .experience-grid {
    margin-top: 55px;
  }

  .value-card {
    min-height: 0;
    padding: 28px;
  }

  .section-heading-wide {
    display: block;
  }

  .experience-card,
  .experience-create {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 27px;
    border-radius: 28px;
  }

  .mini-ui {
    margin-top: 25px;
  }

  .world-section {
    padding-top: 80px;
  }

  .world-panel {
    padding: 34px 25px 45px;
    border-radius: 28px;
  }

  .company-facts > div {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .boundary-card {
    grid-template-columns: 1fr;
  }

  .contact-inner {
    align-items: stretch;
    flex-direction: column;
  }

  .contact-actions {
    flex-basis: auto;
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .footer-meta {
    text-align: left;
  }

  .legal-hero {
    padding-block: 65px 50px;
  }

  .legal-layout {
    gap: 35px;
    padding-block: 45px 90px;
  }

  .support-grid {
    grid-template-columns: 1fr;
    padding-block: 45px 90px;
  }

  .support-card-wide {
    grid-column: auto;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
