:root {
  --yc-bg: #f6f6f6;
  --paper: #fff;
  --ink: #171717;
  --muted: #606060;
  --faint: #e4e4e4;
  --accent: #171717;
  --accent-soft: #4b4b4b;
}

* {
  box-sizing: border-box;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--yc-bg);
  color: var(--ink);
  font-family: "Outfit", "DM Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 300;
  letter-spacing: 0;
}

img,
canvas {
  display: block;
}

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

[hidden] {
  display: none !important;
}

button,
input,
select {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  height: 78px;
  padding: 0 42px;
  background: rgba(246, 246, 246, .92);
  border-bottom: 1px solid var(--faint);
  backdrop-filter: blur(18px);
}

.back-to-top {
  position: fixed;
  z-index: 19;
  right: 24px;
  bottom: 92px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(0, 0, 0, .22);
  background: rgba(255, 255, 255, .94);
  color: #171717;
  opacity: 0;
  pointer-events: none;
  text-decoration: none;
  transform: translateY(10px);
  transition: opacity .18s ease, transform .18s ease, background .18s ease, color .18s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  background: #171717;
  color: #fff;
}

.back-to-top span {
  font-size: 1rem;
  line-height: 1;
}

.brand,
.site-header nav,
.apply-link,
.header-actions,
.auth-button,
.user-chip,
.google-auth-button {
  display: flex;
  align-items: center;
}

.brand {
  gap: 11px;
  font-size: 1.05rem;
  font-weight: 600;
}

.yc-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  background: transparent;
}

.yc-mark img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  filter: grayscale(1);
}

.site-header nav {
  gap: 28px;
  color: #373737;
  font-size: .98rem;
  font-weight: 400;
}

.apply-link {
  justify-self: end;
  min-height: 38px;
  padding: 0 15px;
  color: #fff;
  background: var(--accent);
  font-weight: 600;
}

.header-actions {
  justify-self: end;
  gap: 10px;
  min-width: 0;
}

.auth-button,
.user-chip button,
.google-auth-button {
  min-height: 38px;
  border: 1px solid rgba(0, 0, 0, .22);
  border-radius: 0;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  font-weight: 600;
}

.auth-button {
  padding: 0 14px;
}

.user-chip {
  gap: 9px;
  min-width: 0;
  min-height: 38px;
  padding: 4px 4px 4px 6px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .18);
}

.user-chip img,
.user-avatar-fallback {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #efefef;
}

.user-chip img {
  object-fit: cover;
}

.user-avatar-fallback {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(0, 0, 0, .16);
  color: #171717;
  font-size: .76rem;
  font-weight: 800;
  line-height: 1;
}

.user-chip #headerUserName {
  max-width: 132px;
  overflow: hidden;
  color: #303030;
  font-size: .84rem;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.user-chip button {
  min-height: 28px;
  padding: 0 9px;
  font-size: .78rem;
}

.graph-hero {
  position: relative;
  height: 100svh;
  min-height: 820px;
  overflow: hidden;
  border-bottom: 1px solid var(--faint);
  background: #fff;
}

.quote-banner {
  position: absolute;
  z-index: 4;
  top: 78px;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 32px;
  padding: 6px 18px;
  background: #171717;
  color: #fff;
  font-size: .84rem;
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, .16);
}

.quote-banner span:nth-child(2) {
  color: rgba(255, 255, 255, .68);
}

.quote-banner span:last-child {
  color: rgba(255, 255, 255, .72);
  text-decoration: underline;
  text-underline-offset: 3px;
}

#memoryGraph {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  cursor: grab;
  touch-action: none;
}

#memoryGraph.is-dragging {
  cursor: grabbing;
}

.hero-copy {
  position: absolute;
  z-index: 2;
  top: 146px;
  left: clamp(24px, 3.8vw, 76px);
  width: min(590px, calc(100vw - 68px));
  pointer-events: none;
}

.kicker {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: .82rem;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
  text-shadow: 0 1px 0 #fff, 0 0 22px #fff;
}

.hero-copy h1,
.section h2,
.closing h2 {
  margin: 0;
  font-family: "Source Serif 4", Georgia, serif;
  font-weight: 400;
  letter-spacing: 0;
}

.hero-copy h1 {
  font-size: 4.55rem;
  line-height: .95;
  text-wrap: balance;
  text-shadow: 0 1px 0 #fff, 0 0 30px #fff, 0 0 70px #fff;
}

.hero-copy p:not(.kicker) {
  width: min(520px, 100%);
  margin: 22px 0 0;
  color: #333;
  font-size: 1.17rem;
  line-height: 1.58;
  text-shadow: 0 1px 0 #fff, 0 0 24px #fff;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 12px;
  margin-top: 28px;
  pointer-events: auto;
}

.hero-beta-stack {
  display: grid;
  gap: 8px;
  justify-items: center;
}

.hero-platforms {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 28px;
}

.hero-beta-note {
  max-width: 304px;
  margin: 0;
  color: #4f4f4f;
  font-size: .78rem;
  line-height: 1.38;
  text-align: center;
}

.platform-logo {
  display: block;
  width: 22px;
  height: 22px;
  fill: #171717;
  color: #171717;
}

.apple-logo {
  width: 21px;
}

.windows-logo {
  width: 21px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--accent);
  font-weight: 500;
}

.button.primary {
  color: #fff;
  background: var(--accent);
}

.button.secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, .86);
}

.hero-demo-shell {
  position: absolute;
  z-index: 5;
  right: 0;
  top: 126px;
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  align-items: start;
  width: min(500px, calc(100vw - 8px));
  transform: translateX(calc(100% - 30px));
  transition: transform .34s cubic-bezier(.22, .72, .18, 1);
}

.hero-demo-shell.is-open {
  transform: translateX(0);
}

.hero-demo-tab {
  display: grid;
  place-items: center;
  min-height: 46px;
  padding: 0;
  border: 1px solid rgba(0, 0, 0, .18);
  border-right: 0;
  border-radius: 0;
  background: rgba(255, 255, 255, .96);
  color: #171717;
  cursor: pointer;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .09);
  backdrop-filter: blur(14px);
}

.tab-chevron {
  display: block;
  width: 9px;
  height: 9px;
  border-color: currentColor;
  border-style: solid;
  border-width: 0 0 2px 2px;
  transform: rotate(45deg);
  transition: transform .2s ease;
}

.hero-demo-shell.is-open .hero-demo-tab {
  background: #171717;
  color: #fff;
}

.hero-demo-shell.is-open .tab-chevron {
  transform: rotate(-135deg);
}

.hero-demo-card {
  position: relative;
  display: grid;
  gap: 12px;
  width: 100%;
  padding: 16px;
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(0, 0, 0, .16);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .1);
  backdrop-filter: blur(14px);
}

.hero-demo-shell:not(.is-open) .hero-demo-card {
  pointer-events: none;
}

.demo-card-heading {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--faint);
}

.demo-card-heading span,
.review-packet span,
.artifact-stack span {
  color: #171717;
  font-size: .76rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.demo-card-heading strong {
  font-size: .92rem;
  font-weight: 600;
}

.review-packet {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}

.review-packet article,
.artifact-stack article {
  display: grid;
  gap: 7px;
  padding: 11px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .11);
}

.review-packet p,
.artifact-stack p {
  margin: 0;
  color: #3f3f3f;
  font-size: .84rem;
  line-height: 1.36;
}

.review-packet small {
  display: inline-flex;
  width: max-content;
  min-height: 24px;
  align-items: center;
  padding: 0 8px;
  background: #171717;
  color: #fff;
  font-size: .68rem;
  font-weight: 500;
}

.artifact-stack {
  display: grid;
  gap: 8px;
}

.artifact-stack article {
  grid-template-columns: 118px minmax(0, 1fr);
  align-items: start;
}

.graph-toolbar,
.graph-inspector {
  position: absolute;
  z-index: 4;
  background: rgba(255, 255, 255, .93);
  border: 1px solid rgba(0, 0, 0, .15);
  box-shadow: 0 18px 42px rgba(0, 0, 0, .08);
}

.graph-toolbar {
  right: max(28px, calc((100vw - 1180px) / 2));
  bottom: 14px;
  display: grid;
  grid-template-columns: 190px 150px repeat(3, 38px);
  gap: 8px;
  padding: 10px;
}

.graph-toolbar input,
.graph-toolbar select,
.graph-toolbar button,
.rating-row button {
  min-height: 38px;
  border: 1px solid rgba(0, 0, 0, .18);
  border-radius: 0;
  background: #fff;
  color: var(--ink);
}

.graph-toolbar input {
  min-width: 0;
  padding: 0 11px;
}

.graph-toolbar select {
  min-width: 0;
  padding: 0 9px;
}

.graph-toolbar button {
  font-size: 1.05rem;
  font-weight: 600;
}

.graph-toolbar button:hover,
.rating-row button:hover,
.rating-row button.is-selected {
  border-color: var(--accent);
  color: var(--ink);
}

.graph-inspector {
  left: clamp(24px, 3.8vw, 76px);
  top: 668px;
  bottom: auto;
  width: min(350px, calc(100vw - 56px));
  padding: 16px;
}

.inspector-label,
.graph-inspector span:last-child {
  display: block;
  color: #777;
  font-size: .78rem;
  font-weight: 500;
}

.inspector-label {
  display: none;
}

#graphStats {
  display: none;
}

.graph-inspector strong {
  display: block;
  margin-top: 4px;
  font-size: 1.08rem;
  font-weight: 600;
}

.graph-inspector p {
  margin: 8px 0 12px;
  color: #4c4c4c;
  font-size: .92rem;
  line-height: 1.45;
}

.section {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 96px 0;
  scroll-margin-top: 92px;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(0, 1fr);
  gap: 86px;
}

.section h2,
.closing h2 {
  font-size: 3.35rem;
  line-height: 1.02;
  text-wrap: balance;
}

.copy-stack {
  display: grid;
  gap: 18px;
}

.section p,
.copy-stack p,
.thesis-grid p,
.use-list p,
.feedback-copy p,
.feedback-demo p,
.closing p {
  margin: 0;
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.72;
}

.section-heading {
  display: grid;
  gap: 12px;
  width: min(760px, 100%);
  margin-bottom: 34px;
}

.traction-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(1180px, calc(100% - 48px));
  margin: 34px auto 0;
  border-left: 1px solid var(--faint);
  border-top: 1px solid var(--faint);
}

.traction-strip article {
  min-height: 152px;
  padding: 20px;
  background: rgba(255, 255, 255, .76);
  border-right: 1px solid var(--faint);
  border-bottom: 1px solid var(--faint);
}

.traction-strip span,
.workflow-story span,
.before-after span,
.packet-label,
.live-status-grid span,
.proof-grid article span {
  display: block;
  color: #171717;
  font-size: .82rem;
  font-weight: 500;
}

.traction-strip strong {
  display: block;
  margin: 16px 0 8px;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
}

.traction-strip p {
  margin: 0;
  color: #565656;
  font-size: .92rem;
  line-height: 1.48;
}

.workflow-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, .78fr) minmax(320px, .9fr);
  gap: 16px;
  align-items: stretch;
}

.workflow-story,
.before-after article,
.action-packet,
.live-status-grid article,
.proof-grid blockquote,
.proof-grid article {
  background: rgba(255, 255, 255, .7);
  border: 1px solid var(--faint);
}

.workflow-story,
.action-packet {
  padding: 24px;
}

.workflow-story > span {
  margin-bottom: 28px;
}

.workflow-story h3 {
  margin: 0 0 16px;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 2.15rem;
  font-weight: 400;
  line-height: 1.02;
}

.workflow-story p + p {
  margin-top: 14px;
}

.before-after {
  display: grid;
  gap: 16px;
}

.before-after article {
  display: grid;
  align-content: start;
  gap: 20px;
  min-height: 176px;
  padding: 22px;
}

.action-packet {
  display: grid;
  align-content: start;
  gap: 0;
}

.action-packet article {
  padding: 18px 0;
  background: transparent;
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, .12);
}

.action-packet strong,
.action-packet small {
  display: block;
}

.action-packet strong {
  margin-bottom: 6px;
  font-weight: 500;
}

.action-packet p {
  font-size: .92rem;
  line-height: 1.45;
}

.action-packet small {
  margin-top: 9px;
  color: #686868;
  font-size: .74rem;
  line-height: 1.35;
}

.packet-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(0, 0, 0, .12);
}

.packet-actions button {
  min-height: 36px;
  border: 1px solid #171717;
  border-radius: 0;
  background: #fff;
  color: #171717;
  cursor: default;
  font-weight: 400;
}

.packet-actions button:first-child {
  background: #171717;
  color: #fff;
}

.live-status-grid,
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.live-status-grid article,
.proof-grid blockquote,
.proof-grid article {
  min-height: 260px;
  padding: 24px;
}

.live-status-grid ul {
  display: grid;
  gap: 11px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.live-status-grid li {
  color: #4f4f4f;
  font-size: .96rem;
  line-height: 1.45;
}

.live-status-grid li::before {
  content: "•";
  margin-right: 8px;
  color: #171717;
}

.proof-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.proof-grid blockquote {
  margin: 0;
}

.proof-grid blockquote p {
  color: #242424;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 1.3rem;
  line-height: 1.28;
}

.proof-grid cite {
  display: block;
  margin-top: 18px;
  color: #686868;
  font-size: .82rem;
  font-style: normal;
  line-height: 1.35;
}

.proof-grid article p {
  margin-top: 18px;
}

.thesis-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--faint);
  border-left: 1px solid var(--faint);
}

.thesis-grid article,
.use-list article {
  background: rgba(255, 255, 255, .58);
  border-right: 1px solid var(--faint);
  border-bottom: 1px solid var(--faint);
}

.thesis-grid article {
  min-height: 258px;
  padding: 26px;
}

.thesis-grid span {
  display: block;
  margin-bottom: 38px;
  color: var(--ink);
  font-weight: 600;
}

.terms-grid,
.surface-grid,
.workspace-map-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--faint);
  border-left: 1px solid var(--faint);
}

.terms-grid article,
.surface-grid article,
.workspace-map-grid article {
  min-height: 188px;
  padding: 22px;
  background: rgba(255, 255, 255, .58);
  border-right: 1px solid var(--faint);
  border-bottom: 1px solid var(--faint);
}

.terms-grid span,
.surface-grid span,
.workspace-map-grid span {
  display: block;
  margin-bottom: 14px;
  color: #171717;
  font-size: .92rem;
  font-weight: 600;
}

.terms-grid p,
.surface-grid p,
.workspace-map-grid p {
  margin: 0;
  color: #4f4f4f;
  font-size: .96rem;
  line-height: 1.58;
}

[data-reveal] {
  opacity: 1;
  transform: none;
}

[data-reveal].is-visible {
  animation: revealIn .72s ease both;
}

.section h3 {
  margin: 0 0 12px;
  font-size: 1.16rem;
  font-weight: 600;
  letter-spacing: 0;
}

.why-now-section,
.terms-section,
.surfaces-section,
.workspace-map-section,
.beachhead-section,
.learning-loop-section,
.objections-section,
.snapshot-section,
.waitlist-section {
  border-top: 1px solid var(--faint);
}

.why-now-layout {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}

.why-now-visual,
.loop-visual {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(0, 0, 0, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, .045) 1px, transparent 1px),
    #fff;
  background-size: 22px 22px;
  border: 1px solid var(--faint);
}

.why-now-visual {
  display: grid;
  align-content: center;
  min-height: 390px;
  padding: 30px;
}

.context-flow {
  display: grid;
  gap: 0;
}

.context-flow-step {
  position: relative;
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 0 0 26px;
  background: transparent;
  border: 0;
}

.context-flow-step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 43px;
  top: 34px;
  bottom: 0;
  width: 1px;
  background: rgba(0, 0, 0, .18);
}

.context-flow-step span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: 88px;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  border: 1px solid #171717;
  background: #171717;
  color: #fff;
  font-size: .78rem;
  font-weight: 400;
  line-height: 1;
}

.context-flow-step h3,
.context-flow-step p {
  margin: 0;
}

.context-flow-step h3 {
  font-size: 1.03rem;
  font-weight: 600;
}

.context-flow-step p {
  margin-top: 7px;
  color: #4f4f4f;
  font-size: .93rem;
  line-height: 1.44;
}

.why-now-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--faint);
  border-left: 1px solid var(--faint);
}

.why-now-cards article,
.wedge-step,
.learning-copy-grid article,
.objection-grid article,
.competitor-grid article,
.snapshot-table > div {
  background: rgba(255, 255, 255, .58);
  border-right: 1px solid var(--faint);
  border-bottom: 1px solid var(--faint);
}

.why-now-cards article {
  min-height: 185px;
  padding: 22px;
}

.why-now-cards span,
.wedge-step span {
  display: block;
  margin-bottom: 28px;
  color: var(--ink);
  font-size: .82rem;
  font-weight: 700;
}

.wedge-diagram {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--faint);
  border-left: 1px solid var(--faint);
}

.wedge-diagram::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 52px;
  height: 2px;
  background: rgba(0, 0, 0, .24);
}

.wedge-step {
  position: relative;
  min-height: 250px;
  padding: 24px;
}

.wedge-step::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 44px;
  right: -9px;
  width: 17px;
  height: 17px;
  border-top: 2px solid #171717;
  border-right: 2px solid #171717;
  background: var(--yc-bg);
  transform: rotate(45deg);
}

.wedge-step:last-child::after {
  display: none;
}

.learning-loop-panel {
  display: grid;
  grid-template-columns: minmax(320px, .8fr) minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}

.loop-visual {
  min-height: 390px;
}

.loop-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 210px;
  height: 210px;
  border: 2px solid #171717;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: mapPulse 6s ease-in-out infinite;
}

.loop-state {
  position: absolute;
  width: 142px;
  min-height: 82px;
  padding: 14px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .32);
}

.loop-state span {
  display: block;
  margin-bottom: 8px;
  color: #171717;
  font-size: .82rem;
  font-weight: 700;
}

.loop-state p {
  color: #555;
  font-size: .82rem;
  line-height: 1.35;
}

.state-observe {
  left: 50%;
  top: 26px;
  transform: translateX(-50%);
}

.state-suggest {
  right: 26px;
  bottom: 64px;
}

.state-learn {
  left: 26px;
  bottom: 64px;
}

.loop-arrow {
  position: absolute;
  width: 28px;
  height: 28px;
  border-top: 2px solid #171717;
  border-right: 2px solid #171717;
  opacity: .7;
}

.arrow-one {
  right: 155px;
  top: 126px;
  transform: rotate(45deg);
}

.arrow-two {
  right: 188px;
  bottom: 120px;
  transform: rotate(135deg);
}

.arrow-three {
  left: 190px;
  bottom: 120px;
  transform: rotate(-135deg);
}

.learning-copy-grid {
  display: grid;
  gap: 10px;
}

.learning-copy-grid article {
  padding: 22px;
}

.objection-grid,
.competitor-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--faint);
  border-left: 1px solid var(--faint);
}

.competitor-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 18px;
}

.objection-grid article,
.competitor-grid article {
  min-height: 198px;
  padding: 24px;
}

.objection-grid span,
.competitor-grid span {
  display: block;
  margin-bottom: 16px;
  color: #171717;
  font-size: .92rem;
  font-weight: 600;
}

.objection-grid p,
.competitor-grid p {
  margin: 0;
  color: #4f4f4f;
  font-size: .98rem;
  line-height: 1.58;
}

.comparison-table {
  display: grid;
  border-top: 1px solid var(--faint);
  border-left: 1px solid var(--faint);
  background: rgba(255, 255, 255, .58);
}

.comparison-row {
  display: grid;
  grid-template-columns: minmax(170px, 1.2fr) repeat(4, minmax(116px, 1fr));
  min-width: 0;
}

.comparison-row > * {
  display: grid;
  align-items: center;
  min-height: 54px;
  padding: 12px 14px;
  border-right: 1px solid var(--faint);
  border-bottom: 1px solid var(--faint);
  color: #4f4f4f;
  font-size: .9rem;
  line-height: 1.32;
}

.comparison-row > span:first-child {
  color: #171717;
  font-weight: 700;
}

.comparison-head > * {
  background: #171717;
  color: #fff !important;
  font-weight: 700;
}

.comparison-row strong {
  color: #171717;
  font-weight: 800;
}

.future-surface-note {
  display: block;
  max-width: 560px;
  color: #696969;
  font-size: .9rem;
  line-height: 1.48;
}

.snapshot-table {
  border-top: 1px solid var(--faint);
  border-left: 1px solid var(--faint);
}

.snapshot-table > div {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  align-items: start;
  min-height: 72px;
}

.snapshot-table span {
  padding: 18px 20px;
  color: #171717;
  font-weight: 700;
  border-right: 1px solid var(--faint);
}

.snapshot-table p {
  padding: 18px 20px;
  color: #4f4f4f;
  font-size: 1rem;
  line-height: 1.55;
}

.waitlist-panel {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(340px, .72fr);
  gap: 34px;
  align-items: center;
  padding: 34px;
  background:
    linear-gradient(rgba(0, 0, 0, .042) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, .042) 1px, transparent 1px),
    #fff;
  background-size: 22px 22px;
  border: 1px solid var(--faint);
}

.waitlist-copy {
  display: grid;
  gap: 16px;
  align-content: center;
}

.waitlist-copy h2 {
  margin: 0;
}

.waitlist-copy p {
  width: min(600px, 100%);
  color: #3b3b3b;
  font-size: 1.08rem;
}

.mac-badge {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 14px 0 0;
  background: rgba(255, 255, 255, .86);
  border: 1px solid rgba(0, 0, 0, .22);
  color: #171717;
  font-weight: 700;
}

.mac-badge .platform-logo {
  width: 22px;
  height: 22px;
}

.platform-badge {
  gap: 8px;
  min-height: 42px;
  padding: 0 12px;
}

.mac-symbol {
  display: grid;
  place-items: center;
  width: 44px;
  height: 42px;
  border-right: 1px solid rgba(0, 0, 0, .22);
  font-size: 1.36rem;
  line-height: 1;
}

.waitlist-form {
  display: grid;
  gap: 12px;
  padding: 22px;
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(0, 0, 0, .16);
}

.waitlist-form label {
  color: #171717;
  font-size: .88rem;
  font-weight: 700;
}

.waitlist-input-row {
  display: grid;
  gap: 9px;
}

.waitlist-input-row button {
  min-height: 48px;
  width: 100%;
  border: 1px solid #171717;
  background: #171717;
  border-radius: 0;
  color: #fff;
  cursor: pointer;
  font-weight: 600;
}

.waitlist-trust {
  margin: 0;
  color: #4a4a4a;
  font-size: .88rem;
  line-height: 1.45;
}

.auth-panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  align-items: start;
}

.auth-actions,
.email-auth {
  display: grid;
  gap: 9px;
}

.email-auth-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}

.beta-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding-top: 4px;
}

.beta-wide {
  grid-column: 1 / -1;
}

.account-field {
  display: grid;
  gap: 6px;
}

.google-auth-button {
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 13px;
}

.google-auth-button span:last-child {
  white-space: nowrap;
}

.google-auth-button:disabled,
.waitlist-input-row button:disabled,
.email-auth-buttons button:disabled,
.auth-button:disabled,
.user-chip button:disabled {
  cursor: wait;
  opacity: .64;
}

.google-mark {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  color: #171717;
}

.email-auth label {
  color: #171717;
  font-size: .78rem;
  font-weight: 700;
}

.email-auth input,
.beta-fields input,
.beta-fields select,
.beta-fields textarea {
  min-width: 0;
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid rgba(0, 0, 0, .18);
  border-radius: 0;
  background: #fff;
  color: #171717;
}

.beta-fields textarea {
  min-height: 84px;
  padding: 10px 12px;
  line-height: 1.45;
  resize: vertical;
}

.email-auth input:focus,
.beta-fields input:focus,
.beta-fields select:focus,
.beta-fields textarea:focus {
  outline: 2px solid rgba(0, 0, 0, .18);
  outline-offset: 2px;
}

.email-auth-buttons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}

.email-auth-buttons button {
  min-height: 42px;
  border: 1px solid rgba(0, 0, 0, .22);
  border-radius: 0;
  background: #fff;
  color: #171717;
  cursor: pointer;
  font-weight: 600;
}

.waitlist-result {
  min-height: 26px;
  color: #565656;
  font-size: .92rem;
  line-height: 1.45;
}

.waitlist-form.is-submitted {
  border-color: #171717;
}

.waitlist-form.has-error .waitlist-result {
  color: #171717;
  font-weight: 700;
}

.studio-section {
  border-top: 1px solid var(--faint);
  width: min(1500px, calc(100% - 32px));
}

.studio-panel {
  display: grid;
  gap: 24px;
}

.studio-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, .36fr);
  gap: 18px;
  align-items: end;
}

.studio-heading h2,
.studio-heading p {
  margin: 0;
}

.studio-heading p {
  width: min(640px, 100%);
  color: #3b3b3b;
  font-size: 1.05rem;
}

.studio-heading .mac-badge {
  margin-bottom: 14px;
}

.studio-access-card {
  display: grid;
  gap: 6px;
  padding: 14px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .14);
}

.studio-access-card strong,
.studio-access-card span {
  display: block;
}

.studio-access-card strong {
  font-weight: 800;
}

.studio-access-card span {
  color: #565656;
  font-size: .9rem;
  line-height: 1.38;
}

.studio-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.mew-customizer,
.mind-map-builder {
  display: grid;
  gap: 16px;
  padding: 18px;
  background: rgba(255, 255, 255, .74);
  border: 1px solid rgba(0, 0, 0, .14);
}

.studio-card-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.studio-card-heading h3 {
  margin: 0;
}

.studio-card-heading p {
  margin: 5px 0 0;
  color: #565656;
  font-size: .9rem;
}

.mind-map-mode-note {
  margin: -4px 0 0;
  color: #4f4f4f;
  font-size: .88rem;
  line-height: 1.45;
}

.studio-card-heading button,
.mind-map-add button,
.mind-map-toolbar button,
.draft-actions button,
.draft-card-heading button {
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid #171717;
  border-radius: 0;
  background: #171717;
  color: #fff;
  cursor: pointer;
  font-weight: 400;
}

.studio-card-heading button:disabled,
.mind-map-add button:disabled,
.mind-map-toolbar button:disabled,
.draft-actions button:disabled {
  cursor: wait;
  opacity: .55;
}

.mind-map-actions,
.mind-map-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mind-map-actions button:first-child,
.mind-map-toolbar button {
  background: #fff;
  color: #171717;
}

.mew-preview-card {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 96px;
  padding: 12px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .12);
}

.mew-preview-face {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  background: color-mix(in srgb, var(--mew-color, #171717) 12%, #fff);
  border: 2px solid var(--mew-color, #171717);
}

.mew-preview-face img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.mew-preview-card strong,
.mew-preview-card span {
  display: block;
  min-width: 0;
}

.mew-preview-card strong {
  overflow: hidden;
  font-size: 1.36rem;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mew-preview-card span {
  margin-top: 4px;
  color: #565656;
  font-size: .92rem;
}

.studio-fields,
.mind-map-controls {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.studio-fields input,
.studio-fields select,
.mind-map-controls input,
.mind-map-controls select,
.mind-map-add input,
.mind-map-add select {
  min-width: 0;
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid rgba(0, 0, 0, .18);
  border-radius: 0;
  background: #fff;
  color: #171717;
  font: inherit;
}

.studio-fields input:focus,
.studio-fields select:focus,
.mind-map-controls input:focus,
.mind-map-controls select:focus,
.mind-map-add input:focus,
.mind-map-add select:focus {
  outline: 2px solid rgba(0, 0, 0, .18);
  outline-offset: 2px;
}

.color-swatches {
  display: grid;
  grid-template-columns: repeat(6, 34px);
  gap: 9px;
}

.color-swatch {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(0, 0, 0, .2);
  border-radius: 50%;
  background: var(--swatch);
  cursor: pointer;
}

.color-swatch.is-selected {
  outline: 3px solid rgba(0, 0, 0, .22);
  outline-offset: 3px;
}

.mind-map-add {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) 122px 150px 76px 142px;
  gap: 9px;
}

.mind-map-toolbar {
  align-items: center;
  justify-content: flex-start;
}

.mind-map-jumpbar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.mind-map-jumpbar button {
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(0, 0, 0, .2);
  background: #fff;
  color: #171717;
  cursor: pointer;
  font-size: .86rem;
  font-weight: 400;
}

.mind-map-jumpbar button.is-active {
  background: #171717;
  color: #fff;
  border-color: #171717;
}

.mind-map-toolbar span {
  margin-left: auto;
  color: #565656;
  font-size: .88rem;
  font-weight: 700;
}

.mind-map-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
}

.mind-map-canvas {
  position: relative;
  min-height: 1040px;
  overflow: hidden;
  background:
    linear-gradient(rgba(0, 0, 0, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, .045) 1px, transparent 1px),
    #fff;
  background-size: 22px 22px;
  border: 1px solid var(--faint);
  cursor: grab;
  touch-action: none;
}

.mind-map-canvas.is-panning {
  cursor: grabbing;
}

.mind-map-plane {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 9800px;
  height: 6200px;
  transform: translate(calc(-50% + var(--map-x, 0px)), calc(-50% + var(--map-y, 0px))) scale(var(--map-scale, 1));
  transform-origin: 50% 50%;
}

.mind-map-lines {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  stroke: rgba(0, 0, 0, .2);
  stroke-width: 1.2;
}

.mind-map-lines line.is-highlighted {
  stroke: #171717;
  stroke-width: 2.4;
}

.mind-map-lines line.edge-galaxy-bridge,
.mind-map-lines line.edge-galaxy-cluster {
  stroke: rgba(0, 0, 0, .34);
  stroke-dasharray: 18 14;
  stroke-width: 2.1;
}

.mind-map-lines line.edge-galaxy-bridge.is-highlighted,
.mind-map-lines line.edge-galaxy-cluster.is-highlighted {
  stroke: #171717;
  stroke-width: 3;
}

.mind-map-node-layer {
  position: absolute;
  inset: 0;
}

.mind-map-node {
  position: absolute;
  display: block;
  width: 148px;
  min-height: 56px;
  padding: 9px 10px 10px;
  border: 1px solid #171717;
  background: #fff;
  color: #171717;
  text-align: left;
  line-height: 1.15;
  transform: translate(-50%, -50%);
  cursor: pointer;
  user-select: none;
}

.mind-map-node.is-root {
  width: 182px;
  background: #171717;
  color: #fff;
  border-color: #171717;
}

.mind-map-node.is-galaxy {
  width: 212px;
  min-height: 74px;
  border-width: 2px;
  background: #171717;
  color: #fff;
  box-shadow: 0 18px 36px rgba(0, 0, 0, .14);
}

.mind-map-node.is-galaxy small,
.mind-map-node.is-galaxy span {
  color: rgba(255, 255, 255, .76);
}

.mind-map-node {
  left: var(--node-x, 0px);
  top: var(--node-y, 0px);
}

.mind-map-node.is-selected {
  box-shadow: 0 0 0 3px rgba(0, 0, 0, .16);
}

.mind-map-node.has-relations::after {
  content: "↗";
  position: absolute;
  right: 8px;
  bottom: 6px;
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  background: #171717;
  color: #fff;
  font-size: .72rem;
  line-height: 1;
}

.mind-map-node.is-filtered {
  display: none;
}

.mind-map-node.is-dimmed {
  opacity: .3;
}

.mind-map-node small,
.mind-map-node strong,
.mind-map-node span {
  display: block;
}

.mind-map-node small {
  margin-bottom: 7px;
  color: #686868;
  font-size: .68rem;
  font-weight: 500;
  text-transform: none;
}

.mind-map-node.is-root small {
  color: rgba(255, 255, 255, .7);
}

.mind-map-node strong {
  overflow-wrap: anywhere;
  font-size: .92rem;
  font-weight: 700;
}

.mind-map-node span {
  margin-top: 7px;
  color: #565656;
  font-size: .76rem;
  line-height: 1.25;
}

.mind-map-node.is-root span {
  color: rgba(255, 255, 255, .78);
}

.mind-map-node[data-type="email"] {
  border-color: #ef4444;
}

.mind-map-node[data-type="decision"] {
  border-color: #f59e0b;
}

.mind-map-node[data-type="person"] {
  border-color: #2563eb;
}

.mind-map-node[data-type="task"] {
  border-color: #16a34a;
}

.mind-map-node[data-type="file"] {
  border-color: #7c3aed;
}

.mind-map-node button {
  position: absolute;
  right: -9px;
  top: -9px;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border: 1px solid rgba(0, 0, 0, .2);
  border-radius: 50%;
  background: #fff;
  color: #171717;
  cursor: pointer;
  font-size: .72rem;
  font-weight: 400;
  line-height: 1;
}

.mind-map-node button[hidden] {
  display: none;
}

.mind-map-canvas.is-simple .mind-map-node {
  width: 13px;
  height: 13px;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #171717;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, .9);
}

.mind-map-canvas.is-simple .mind-map-node.is-root {
  width: 22px;
  height: 22px;
  background: #171717;
}

.mind-map-canvas.is-simple .mind-map-node.is-galaxy {
  width: 28px;
  height: 28px;
  min-height: 0;
  border: 2px solid #171717;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(0, 0, 0, .08);
}

.mind-map-canvas.is-simple .mind-map-node.is-selected {
  box-shadow: 0 0 0 6px rgba(0, 0, 0, .18);
}

.mind-map-canvas.is-simple .mind-map-node.is-dimmed {
  opacity: .18;
}

.mind-map-canvas.is-simple .mind-map-node small,
.mind-map-canvas.is-simple .mind-map-node strong,
.mind-map-canvas.is-simple .mind-map-node span,
.mind-map-canvas.is-simple .mind-map-node button,
.mind-map-canvas.is-simple .mind-map-node.has-relations::after {
  display: none;
}

.mind-map-minimap {
  position: absolute;
  left: 12px;
  bottom: 12px;
  width: 168px;
  height: 106px;
  background: rgba(255, 255, 255, .88);
  border: 1px solid rgba(0, 0, 0, .16);
  pointer-events: none;
}

.minimap-dot {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #171717;
  transform: translate(-50%, -50%);
}

.mind-map-detail {
  position: absolute;
  z-index: 6;
  right: 16px;
  top: 16px;
  display: grid;
  align-content: start;
  gap: 12px;
  width: min(330px, calc(100% - 32px));
  min-height: 0;
  max-height: calc(100% - 32px);
  overflow: auto;
  padding: 16px;
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(0, 0, 0, .14);
  box-shadow: 0 18px 44px rgba(0, 0, 0, .12);
  backdrop-filter: blur(12px);
}

.mind-map-detail > span {
  color: #686868;
  font-size: .72rem;
  font-weight: 500;
  text-transform: none;
}

.mind-map-detail h4,
.mind-map-detail p {
  margin: 0;
}

.mind-map-detail h4 {
  font-size: 1.16rem;
  font-weight: 700;
}

.mind-map-detail p {
  color: #3d3d3d;
  line-height: 1.45;
}

.mind-map-detail-meta,
.mind-map-detail-actions,
.draft-context {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mind-map-detail-relations {
  display: grid;
  gap: 8px;
}

.mind-map-detail-relations::before {
  content: "Connected context";
  color: #686868;
  font-size: .72rem;
  font-weight: 500;
}

.mind-map-relation {
  display: grid;
  gap: 4px;
  padding: 9px;
  border: 1px solid rgba(0, 0, 0, .12);
  background: #fff;
  color: #171717;
  text-align: left;
  cursor: default;
}

button.mind-map-relation {
  cursor: pointer;
}

.mind-map-relation span,
.mind-map-relation small,
.mind-map-relation strong {
  display: block;
}

.mind-map-relation span {
  color: #686868;
  font-size: .68rem;
  font-weight: 500;
}

.mind-map-relation strong {
  font-size: .84rem;
  font-weight: 600;
}

.mind-map-relation small {
  color: #565656;
  font-size: .73rem;
  line-height: 1.3;
}

.detail-chip,
.draft-context span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 9px;
  background: #f4f4f4;
  border: 1px solid rgba(0, 0, 0, .1);
  color: #303030;
  font-size: .76rem;
  font-weight: 700;
}

.mind-map-detail-actions button {
  min-height: 36px;
  padding: 0 10px;
  border: 1px solid #171717;
  border-radius: 0;
  background: #fff;
  color: #171717;
  cursor: pointer;
  font-size: .82rem;
  font-weight: 400;
}

.mind-map-detail-actions button.primary-action {
  background: #171717;
  color: #fff;
}

.studio-message {
  min-height: 22px;
  margin: 0;
  color: #565656;
  font-size: .92rem;
}

.studio-message.is-error {
  color: #b3261e;
}

.draft-drawer {
  position: fixed;
  z-index: 60;
  inset: 0;
  display: grid;
  justify-items: end;
  background: rgba(0, 0, 0, .32);
}

.draft-card {
  display: grid;
  gap: 16px;
  width: min(560px, 100vw);
  height: 100%;
  padding: 24px;
  overflow: auto;
  background: #fff;
  box-shadow: -18px 0 60px rgba(0, 0, 0, .18);
}

.draft-card-heading {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.draft-card-heading span {
  color: #686868;
  font-size: .72rem;
  font-weight: 500;
  text-transform: none;
}

.draft-card-heading h3 {
  margin: 4px 0 0;
  font-size: 1.55rem;
}

.draft-card-heading button {
  width: 34px;
  min-height: 34px;
  padding: 0;
}

.action-review-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.action-review-tabs button {
  min-height: 38px;
  border: 1px solid rgba(0, 0, 0, .2);
  border-radius: 0;
  background: #fff;
  color: #171717;
  cursor: pointer;
  font-weight: 400;
}

.action-review-tabs button.is-active {
  background: #171717;
  color: #fff;
}

.draft-source-list {
  display: grid;
  gap: 8px;
}

.draft-source-claim {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: start;
  padding: 10px;
  background: #f7f7f7;
  border: 1px solid rgba(0, 0, 0, .1);
}

.draft-source-claim p {
  margin: 0;
  color: #3d3d3d;
  font-size: .86rem;
  line-height: 1.42;
}

.source-confidence {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  padding: 0 8px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .14);
  color: #171717;
  font-size: .68rem;
  font-weight: 500;
  white-space: nowrap;
}

.source-confidence.low {
  border-color: #171717;
  background: #171717;
  color: #fff;
}

.draft-fields {
  display: grid;
  gap: 8px;
}

.draft-fields label {
  font-size: .78rem;
  font-weight: 500;
}

.draft-fields input,
.draft-fields textarea {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, .18);
  border-radius: 0;
  color: #171717;
  font: inherit;
}

.draft-fields input {
  min-height: 42px;
  padding: 0 12px;
}

.draft-fields textarea {
  min-height: 310px;
  padding: 12px;
  line-height: 1.5;
  resize: vertical;
}

.draft-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
}

.draft-actions button:first-child {
  background: #fff;
  color: #171717;
}

.use-section {
  border-top: 1px solid var(--faint);
}

.use-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--faint);
  border-left: 1px solid var(--faint);
}

.use-list article {
  position: relative;
  padding: 24px 26px;
  cursor: pointer;
  transition: background .28s ease, box-shadow .28s ease, transform .28s ease;
}

.use-list article.is-active {
  z-index: 1;
  background: #fff;
  box-shadow: inset 0 0 0 2px var(--ink);
  transform: translateY(-2px);
}

.persona-showcase {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(0, 1fr);
  gap: 38px;
  align-items: center;
  min-height: 360px;
  margin-top: 34px;
  padding: 38px;
  background: #fff;
  border: 1px solid var(--faint);
}

.persona-stage {
  position: relative;
  min-height: 284px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(rgba(0, 0, 0, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, .045) 1px, transparent 1px),
    #fff;
  background-size: 22px 22px;
  border: 1px solid var(--faint);
}

.mew-persona {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  margin: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px) scale(.92);
  transition: opacity 1.05s ease, transform 1.05s ease;
}

.mew-persona.is-active {
  opacity: 1;
  cursor: pointer;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.persona-figure {
  position: relative;
  width: 188px;
  height: 194px;
}

.persona-figure img {
  position: absolute;
  inset: 0;
  width: 188px;
  height: 194px;
  object-fit: contain;
  filter: grayscale(1) drop-shadow(0 18px 20px rgba(0, 0, 0, .18));
}

.persona-figure span {
  position: absolute;
  display: block;
  pointer-events: none;
}

.grad-cap {
  position: absolute;
  left: 25px;
  top: -25px;
  width: 138px;
  height: 96px;
  overflow: visible;
  pointer-events: none;
  transform: rotate(-4deg);
  transform-origin: 78px 60px;
}

.grad-cap-board,
.grad-cap-band,
.grad-cap-knot,
.grad-cap-tail {
  fill: #111;
}

.grad-cap-highlight {
  fill: none;
  stroke: #fff;
  stroke-width: 5;
  stroke-linecap: round;
}

.grad-cap-tassel {
  fill: none;
  stroke: #111;
  stroke-width: 5;
  stroke-linecap: round;
}

.book {
  right: 4px;
  bottom: 12px;
  width: 58px;
  height: 39px;
  border: 3px solid #111;
  background: #fff;
  transform: rotate(-8deg);
}

.book::before {
  content: "";
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #111;
}

.headset,
.gamer-headset {
  left: 21px;
  top: 20px;
  width: 146px;
  height: 100px;
  border: 5px solid #111;
  border-bottom: 0;
  border-radius: 88px 88px 0 0;
}

.gamer-headset {
  top: 20px;
}

.headset::before,
.gamer-headset::before,
.headset::after,
.gamer-headset::after {
  content: "";
  position: absolute;
  top: 74px;
  width: 17px;
  height: 38px;
  background: #111;
  border-radius: 8px;
}

.headset::before,
.gamer-headset::before {
  left: -5px;
}

.headset::after,
.gamer-headset::after {
  right: -5px;
}

.mic {
  left: 132px;
  top: 139px;
  width: 34px;
  height: 4px;
  background: #111;
  transform: rotate(10deg);
}

.mic::after {
  content: "";
  position: absolute;
  right: -8px;
  top: -5px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #111;
}

.glasses {
  left: 42px;
  top: 88px;
  width: 104px;
  height: 34px;
  background: linear-gradient(#111, #111) center 15px / 34px 3px no-repeat;
}

.glasses::before,
.glasses::after {
  content: "";
  position: absolute;
  top: 0;
  width: 36px;
  height: 30px;
  border: 3px solid #111;
  border-radius: 50%;
}

.glasses::before {
  left: 0;
}

.glasses::after {
  right: 0;
}

.suit {
  left: 40px;
  bottom: 4px;
  width: 108px;
  height: 54px;
  background: #111;
  clip-path: polygon(0 100%, 18% 6%, 50% 44%, 82% 6%, 100% 100%);
}

.tie {
  left: 85px;
  bottom: 8px;
  width: 18px;
  height: 42px;
  background: #fff;
  clip-path: polygon(50% 0, 100% 22%, 70% 100%, 30% 100%, 0 22%);
}

.work-shirt {
  left: 39px;
  bottom: 4px;
  width: 110px;
  height: 58px;
  background: #111;
  clip-path: polygon(0 100%, 12% 18%, 38% 0, 50% 30%, 62% 0, 88% 18%, 100% 100%);
}

.work-shirt::before,
.work-shirt::after {
  content: "";
  position: absolute;
  top: 6px;
  width: 34px;
  height: 30px;
  background: #fff;
}

.work-shirt::before {
  left: 25px;
  clip-path: polygon(0 0, 100% 0, 72% 100%);
}

.work-shirt::after {
  right: 25px;
  clip-path: polygon(0 0, 100% 0, 28% 100%);
}

.work-tie {
  left: 84px;
  bottom: 9px;
  width: 20px;
  height: 48px;
  background: #fff;
  clip-path: polygon(50% 0, 100% 20%, 70% 100%, 30% 100%, 0 20%);
}

.briefcase {
  right: 0;
  bottom: 5px;
  width: 58px;
  height: 40px;
  border: 4px solid #111;
  background: #fff;
}

.briefcase::before,
.briefcase::after {
  content: "";
  position: absolute;
  left: 19px;
  right: 19px;
}

.briefcase::before {
  top: -12px;
  height: 12px;
  border: 4px solid #111;
  border-bottom: 0;
}

.briefcase::after {
  top: 16px;
  height: 4px;
  background: #111;
}

.scarf {
  left: 43px;
  bottom: 47px;
  width: 102px;
  height: 19px;
  background: #111;
  border-radius: 16px;
  transform: rotate(-5deg);
}

.scarf::after {
  content: "";
  position: absolute;
  right: 9px;
  top: 12px;
  width: 22px;
  height: 54px;
  background: #111;
  transform: rotate(11deg);
}

.pin {
  right: 34px;
  top: 62px;
  width: 18px;
  height: 18px;
  background: #fff;
  border: 3px solid #111;
  border-radius: 50%;
}

.controller {
  left: 55px;
  bottom: 7px;
  width: 82px;
  height: 40px;
  border: 4px solid #111;
  border-radius: 28px 28px 22px 22px;
  background:
    linear-gradient(#111, #111) center 18px / 16px 4px no-repeat,
    #fff;
}

.controller::before,
.controller::after {
  content: "";
  position: absolute;
  background: #111;
  border-radius: 50%;
}

.controller::before {
  left: 14px;
  top: 13px;
  width: 11px;
  height: 11px;
}

.controller::after {
  right: 14px;
  top: 13px;
  width: 11px;
  height: 11px;
}

.persona-copy {
  display: grid;
  gap: 14px;
  align-content: center;
}

.persona-copy h3 {
  margin: 0;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 2.55rem;
  font-weight: 400;
  line-height: 1;
}

.persona-copy p {
  max-width: 560px;
  color: #393939;
  font-size: 1.12rem;
  line-height: 1.55;
}

.feedback-section {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(340px, .72fr);
  gap: 72px;
  align-items: center;
  border-top: 1px solid var(--faint);
}

.feedback-copy p:not(.kicker) {
  margin-top: 22px;
  width: min(620px, 100%);
}

.feedback-demo {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 16px;
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--faint);
}

.feedback-demo img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  filter: grayscale(1);
}

.feedback-demo span {
  display: block;
  margin: 4px 0 4px;
  font-weight: 600;
}

.suggestion,
.rating-row,
#feedbackResult {
  grid-column: 1 / -1;
}

.suggestion {
  padding-top: 18px;
  border-top: 1px solid var(--faint);
  color: var(--ink) !important;
  font-weight: 400;
}

.rating-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.rating-row button {
  padding: 0 8px;
}

#feedbackResult {
  min-height: 28px;
  color: var(--ink);
  font-size: .94rem;
}

.live-map-section {
  border-top: 1px solid var(--faint);
}

.live-map-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 18px;
  align-items: stretch;
}

.live-map {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background:
    linear-gradient(rgba(0, 0, 0, .048) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, .048) 1px, transparent 1px),
    #fff;
  background-size: 22px 22px;
  border: 1px solid var(--faint);
}

.live-map::before,
.live-map::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 50%;
  pointer-events: none;
}

.live-map::before {
  inset: 90px 190px;
  animation: mapPulse 6.4s ease-in-out infinite;
}

.live-map::after {
  inset: 154px 310px;
  animation: mapPulse 6.4s ease-in-out 1.8s infinite;
}

.live-map-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.map-line {
  fill: none;
  stroke: rgba(0, 0, 0, .42);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 12 9;
  animation: lineFlow 4.8s linear infinite;
}

.map-line-b,
.map-line-d,
.map-line-f {
  animation-delay: -1.6s;
}

.map-line-c,
.map-line-g,
.map-line-h {
  stroke: rgba(0, 0, 0, .24);
  animation-delay: -3s;
}

.context-node {
  position: absolute;
  z-index: 2;
  left: var(--x);
  top: var(--y);
  min-width: 54px;
  min-height: 32px;
  padding: 0 10px;
  border: 1px solid rgba(0, 0, 0, .55);
  background: rgba(255, 255, 255, .92);
  color: var(--ink);
  cursor: grab;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: 0;
  transform: translate(-50%, -50%);
  transition: background .22s ease, color .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.context-node:hover,
.context-node.is-active {
  background: #171717;
  border-color: #171717;
  color: #fff;
  box-shadow: 0 14px 30px rgba(0, 0, 0, .16);
}

.context-node.is-dragging {
  cursor: grabbing;
  transition: none;
}

.node-core {
  min-width: 92px;
  min-height: 46px;
  font-size: .96rem;
}

.map-cluster-label {
  position: absolute;
  z-index: 1;
  left: var(--x);
  top: var(--y);
  padding: 5px 8px;
  border: 1px solid rgba(0, 0, 0, .14);
  background: rgba(255, 255, 255, .76);
  color: #5f5f5f;
  font-size: .7rem;
  line-height: 1;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.map-signal,
.map-edit-card,
.map-cursor {
  position: absolute;
  z-index: 3;
  pointer-events: none;
}

.map-signal {
  padding: 6px 9px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .18);
  color: #4d4d4d;
  font-size: .72rem;
  font-weight: 500;
  opacity: 0;
  transform: translateY(12px);
  animation: signalRise 7.2s ease-in-out infinite;
}

.signal-one {
  left: 10%;
  top: 14%;
}

.signal-two {
  right: 11%;
  top: 16%;
  animation-delay: 2.2s;
}

.signal-three {
  left: 42%;
  bottom: 13%;
  animation-delay: 4.2s;
}

.signal-four {
  right: 23%;
  bottom: 28%;
  animation-delay: 5.4s;
}

.map-cursor {
  left: 18%;
  top: 68%;
  width: 16px;
  height: 22px;
  background: #171717;
  clip-path: polygon(0 0, 0 100%, 6px 74%, 11px 92%, 15px 90%, 10px 70%, 16px 70%);
  filter: drop-shadow(0 7px 10px rgba(0, 0, 0, .22));
  animation: cursorEdit 8s cubic-bezier(.55, .08, .22, 1) infinite;
}

.map-edit-card {
  right: auto;
  left: 18px;
  bottom: 6px;
  width: min(216px, calc(100% - 32px));
  padding: 10px 11px;
  background: #171717;
  color: #fff;
  font-size: .76rem;
  font-weight: 600;
  line-height: 1.25;
  box-shadow: 0 14px 28px rgba(0, 0, 0, .16);
  animation: editCard 8s ease-in-out infinite;
}

.map-timeline {
  display: grid;
  align-content: start;
  gap: 24px;
  padding: 16px 0 0 22px;
  border-left: 1px solid rgba(0, 0, 0, .2);
}

.privacy-points article {
  background: #fff;
  border: 1px solid var(--faint);
}

.map-timeline div {
  position: relative;
  display: block;
  min-height: 0;
  padding: 0 0 0 14px;
  background: transparent;
  border: 0;
}

.map-timeline div::before {
  content: "";
  position: absolute;
  left: -27px;
  top: 5px;
  width: 9px;
  height: 9px;
  border: 1px solid #171717;
  background: #fff;
}

.map-timeline span,
.privacy-points span {
  color: var(--ink);
  font-size: .82rem;
  font-weight: 700;
}

.map-timeline p {
  margin-top: 6px;
  color: #4f4f4f;
  font-size: .92rem;
  line-height: 1.35;
}

.privacy-section {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
  border-top: 1px solid var(--faint);
}

.privacy-copy p {
  margin-top: 22px;
  width: min(570px, 100%);
}

.privacy-visual {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}

.vault-graphic {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  background:
    linear-gradient(rgba(0, 0, 0, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, .045) 1px, transparent 1px),
    #fff;
  background-size: 22px 22px;
  border: 1px solid var(--faint);
}

.vault-ring,
.vault-lock,
.vault-node {
  position: absolute;
  display: block;
}

.vault-ring {
  left: 50%;
  top: 50%;
  width: 142px;
  height: 142px;
  border: 2px solid #171717;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.vault-ring::before,
.vault-ring::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(0, 0, 0, .24);
  border-radius: 50%;
}

.vault-ring::after {
  inset: 42px;
}

.vault-lock {
  left: 50%;
  top: 48%;
  width: 54px;
  height: 43px;
  background: #171717;
  transform: translate(-50%, -20%);
}

.vault-lock::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -31px;
  width: 30px;
  height: 34px;
  border: 6px solid #171717;
  border-bottom: 0;
  border-radius: 24px 24px 0 0;
  transform: translateX(-50%) translateY(-16px) rotate(-18deg);
  transform-origin: 50% 100%;
}

.vault-graphic.is-locked .vault-lock {
  animation: lockSettle .9s ease-out forwards;
}

.vault-graphic.is-locked .vault-lock::before {
  animation: shackleClose .9s cubic-bezier(.18, .78, .28, 1) forwards;
}

.vault-graphic.is-locked .vault-ring {
  animation: vaultSeal .9s ease-out forwards;
}

.vault-lock::after {
  content: "";
  position: absolute;
  left: 24px;
  top: 14px;
  width: 7px;
  height: 16px;
  background: #fff;
}

.vault-node {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #171717;
  animation: vaultOrbit 8s ease-in-out infinite;
}

.vault-node-one {
  left: 48px;
  top: 64px;
}

.vault-node-two {
  right: 42px;
  top: 118px;
  animation-delay: -2.4s;
}

.vault-node-three {
  left: 72px;
  bottom: 66px;
  animation-delay: -4.6s;
}

.privacy-points {
  display: grid;
  gap: 10px;
}

.privacy-points article {
  display: grid;
  gap: 14px;
  padding: 18px;
}

.privacy-points p {
  color: #4f4f4f;
  font-size: .94rem;
  line-height: 1.45;
}

@keyframes lineFlow {
  to {
    stroke-dashoffset: -84;
  }
}

@keyframes signalRise {
  0%, 15%, 100% {
    opacity: 0;
    transform: translateY(12px);
  }
  24%, 58% {
    opacity: 1;
    transform: translateY(0);
  }
  70% {
    opacity: 0;
    transform: translateY(-10px);
  }
}

@keyframes cursorEdit {
  0%, 100% {
    left: 18%;
    top: 68%;
  }
  20% {
    left: 47%;
    top: 50%;
  }
  42% {
    left: 73%;
    top: 29%;
  }
  62% {
    left: 61%;
    top: 81%;
  }
  80% {
    left: 38%;
    top: 75%;
  }
}

@keyframes editCard {
  0%, 16%, 100% {
    opacity: .35;
    transform: translateY(8px);
  }
  30%, 75% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes mapPulse {
  0%, 100% {
    opacity: .25;
    transform: scale(.96);
  }
  50% {
    opacity: .9;
    transform: scale(1.04);
  }
}

@keyframes shackleClose {
  0% {
    transform: translateX(-50%) translateY(-16px) rotate(-18deg);
  }
  68% {
    transform: translateX(-50%) translateY(3px) rotate(2deg);
  }
  100% {
    transform: translateX(-50%) translateY(0) rotate(0);
  }
}

@keyframes lockSettle {
  0% {
    transform: translate(-50%, -20%) scale(.98);
  }
  68% {
    transform: translate(-50%, -20%) scale(1.04);
  }
  100% {
    transform: translate(-50%, -20%) scale(1);
  }
}

@keyframes vaultSeal {
  0% {
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  }
  64% {
    box-shadow: 0 0 0 12px rgba(0, 0, 0, .05);
  }
  100% {
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  }
}

@keyframes vaultOrbit {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(10px, -12px);
  }
}

@keyframes revealIn {
  from {
    opacity: .62;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes timingSignal {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  }
  45% {
    transform: translate(-50%, -50%) scale(1.35);
    box-shadow: 0 0 0 12px rgba(0, 0, 0, .06);
  }
}

.closing {
  display: grid;
  justify-items: center;
  gap: 22px;
  padding: 108px 24px 118px;
  color: #fff;
  background: #171717;
  text-align: center;
}

.closing h2 {
  width: min(980px, 100%);
  margin: 0 auto;
}

.closing .kicker {
  margin: 0;
  color: #fff;
  text-shadow: none;
}

.closing-button {
  width: auto;
  min-width: 152px;
  border-color: #fff;
  background: #fff;
  color: #171717;
}

.site-footer {
  display: grid;
  place-items: center;
  padding: 18px 24px 26px;
  background: #171717;
  color: #fff;
}

.social-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}

.social-links a {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(255, 255, 255, .42);
  color: #fff;
  font-size: .58rem;
  font-weight: 600;
  line-height: 1;
  opacity: .72;
  transition: opacity .18s ease, border-color .18s ease, background .18s ease, color .18s ease;
}

.social-links a:hover {
  opacity: 1;
  border-color: #fff;
  background: #fff;
  color: #171717;
}

.social-icon {
  display: block;
  width: 13px;
  height: 13px;
  fill: currentColor;
}

.social-icon-wide {
  width: 15px;
}

.social-icon-stroke {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-icon-dot {
  fill: currentColor;
  stroke: none;
}

button,
.button,
.apply-link,
.auth-button,
.google-auth-button,
.user-chip button,
.graph-toolbar button,
.rating-row button,
.waitlist-input-row button,
.email-auth-buttons button,
.mind-map-toolbar button,
.mind-map-jumpbar button,
.mind-map-node button,
.mind-map-detail-actions button,
.draft-card-heading button,
.action-review-tabs button,
.draft-actions button,
.context-node {
  font-weight: 400;
}

@media (max-width: 940px) {
  .site-header {
    grid-template-columns: 1fr auto;
    gap: 18px;
    padding: 0 20px;
  }

  .site-header nav {
    display: none;
  }

  .graph-hero {
    min-height: 760px;
  }

  .hero-copy {
    top: 132px;
    left: 20px;
    width: calc(100vw - 40px);
  }

  .hero-copy h1 {
    font-size: 3.2rem;
  }

  .hero-copy p:not(.kicker) {
    font-size: 1.02rem;
  }

  .hero-demo-shell {
    top: 408px;
    width: min(500px, calc(100vw - 8px));
  }

  .graph-toolbar {
    left: 20px;
    right: 20px;
    bottom: 20px;
    grid-template-columns: 1fr 1fr repeat(3, 38px);
  }

  .graph-inspector {
    left: 20px;
    top: auto;
    bottom: 78px;
  }

  .section {
    width: calc(100% - 40px);
    padding: 76px 0;
  }

  .traction-strip {
    width: calc(100% - 40px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split-section,
  .workflow-grid,
  .feedback-section,
  .live-map-panel,
  .why-now-layout,
  .learning-loop-panel,
  .studio-grid,
  .studio-heading,
  .mind-map-shell,
  .waitlist-panel,
  .privacy-section,
  .privacy-visual {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .wedge-diagram {
    grid-template-columns: 1fr;
  }

  .wedge-diagram::before,
  .wedge-step::after {
    display: none;
  }

  .live-map {
    min-height: 520px;
  }

  .why-now-visual,
  .loop-visual {
    min-height: 330px;
  }

  .map-timeline {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .vault-graphic {
    min-height: 260px;
  }

  .section h2,
  .closing h2 {
    font-size: 2.45rem;
  }

  .thesis-grid,
  .live-status-grid,
  .proof-grid,
  .terms-grid,
  .surface-grid,
  .workspace-map-grid,
  .use-list,
  .objection-grid,
  .competitor-grid {
    grid-template-columns: 1fr;
  }

  .comparison-table {
    overflow-x: auto;
  }

  .comparison-row {
    min-width: 760px;
  }

  .persona-showcase {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 24px;
  }

  .persona-stage {
    min-height: 260px;
  }

  .persona-copy h3 {
    font-size: 2.2rem;
  }

  .waitlist-panel {
    padding: 24px;
  }
}

@media (max-width: 560px) {
  .site-header {
    height: 66px;
  }

  .quote-banner {
    top: 66px;
    justify-content: flex-start;
    min-height: 34px;
    padding: 7px 14px;
    font-size: .76rem;
  }

  .apply-link {
    min-height: 34px;
    padding: 0 10px;
    font-size: .82rem;
  }

  .brand span:last-child {
    display: none;
  }

  .header-actions {
    gap: 7px;
  }

  .auth-button {
    padding: 0 10px;
    font-size: .82rem;
  }

  .user-chip {
    padding-left: 4px;
  }

  .user-chip #headerUserName {
    display: none;
  }

  .user-chip button {
    font-size: .74rem;
  }

  .graph-hero {
    min-height: 1040px;
  }

  .hero-actions {
    display: grid;
  }

  .hero-beta-stack {
    width: 100%;
  }

  .hero-beta-note {
    max-width: 100%;
    padding: 0 4px;
  }

  .button {
    width: 100%;
  }

  .graph-toolbar {
    grid-template-columns: 1fr 1fr 36px 36px 36px;
    padding: 8px;
  }

  .graph-toolbar input,
  .graph-toolbar select {
    font-size: .82rem;
  }

  .graph-inspector {
    width: calc(100vw - 40px);
  }

  .hero-demo-shell {
    top: 474px;
    width: calc(100vw - 6px);
  }

  .hero-demo-card {
    padding: 12px;
  }

  .review-packet,
  .artifact-stack article,
  .beta-fields,
  .traction-strip,
  .packet-actions,
  .action-review-tabs,
  .draft-source-claim {
    grid-template-columns: 1fr;
  }

  .feedback-demo,
  .rating-row {
    grid-template-columns: 1fr;
  }

  .why-now-cards {
    grid-template-columns: 1fr;
  }

  .why-now-visual {
    min-height: 0;
    padding: 16px;
  }

  .context-flow-step {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .loop-visual {
    min-height: 330px;
  }

  .loop-ring {
    width: 168px;
    height: 168px;
  }

  .loop-state {
    width: 122px;
    padding: 11px;
  }

  .state-observe {
    top: 18px;
  }

  .state-suggest {
    right: 14px;
    bottom: 54px;
  }

  .state-learn {
    left: 14px;
    bottom: 54px;
  }

  .loop-arrow {
    display: none;
  }

  .snapshot-table > div {
    grid-template-columns: 1fr;
  }

  .snapshot-table span {
    border-right: 0;
    border-bottom: 1px solid var(--faint);
  }

  .waitlist-panel {
    padding: 18px;
  }

  .waitlist-input-row {
    grid-template-columns: 1fr;
  }

  .auth-panel {
    grid-template-columns: 1fr;
  }

  .email-auth-fields,
  .email-auth-buttons,
  .studio-fields,
  .mind-map-controls,
  .mind-map-add,
  .mind-map-jumpbar,
  .draft-actions {
    grid-template-columns: 1fr;
  }

  .studio-card-heading {
    align-items: stretch;
    flex-direction: column;
  }

  .mind-map-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .mind-map-mode-note {
    font-size: .84rem;
  }

  .mind-map-toolbar {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mind-map-toolbar span {
    grid-column: 1 / -1;
    text-align: center;
  }

  .mind-map-canvas {
    min-height: 680px;
  }

  .mind-map-detail {
    left: 12px;
    right: 12px;
    top: 12px;
    width: auto;
    max-height: 260px;
  }

  .mind-map-minimap {
    width: 136px;
    height: 86px;
  }

  .draft-card {
    width: 100vw;
  }

  .google-auth-button {
    width: 100%;
  }

  .mac-badge {
    max-width: 100%;
  }

  .live-map {
    min-height: 480px;
  }

  .live-map::before {
    inset: 78px 58px;
  }

  .live-map::after {
    inset: 120px 108px;
  }

  .context-node {
    min-width: 48px;
    min-height: 30px;
    padding: 0 8px;
    font-size: .72rem;
  }

  .map-signal {
    display: none;
  }

  .map-edit-card {
    left: 14px;
    right: 14px;
    bottom: 8px;
    width: calc(100% - 28px);
    font-size: .76rem;
  }

  .map-timeline {
    grid-template-columns: 1fr;
  }

  .privacy-points article {
    padding: 16px;
  }

  .persona-showcase {
    padding: 18px;
  }

  .persona-stage {
    min-height: 238px;
  }

  .persona-figure {
    transform: scale(.82);
  }

  .feedback-demo img {
    width: 64px;
    height: 64px;
  }

  .closing {
    align-items: stretch;
    text-align: left;
  }

  .closing .kicker {
    text-align: left;
  }
}
