:root {
  --paper: #f7f5ef;
  --ink: #242a28;
  --muted: #646a65;
  --red: #ad342b;
  --blue: #1d9bf0;
  --line: #dcded3;
  --green: #5a715a;
  --cream: #fffef8;
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, "Times New Roman", serif;
  --sans: "Avenir Next", "Segoe UI", -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-synthesis: none;
  scroll-behavior: smooth;
}

* { box-sizing: border-box; }
body { margin: 0; }
img { display: block; }
a { color: inherit; text-decoration: none; }
a:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 4px;
}
a:hover { color: var(--red); }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

button, summary, .try-chip, .jump, .download {
  touch-action: manipulation;
}

.wrap {
  width: min(1120px, calc(100% - 64px));
  margin-inline: auto;
}

.skip {
  position: absolute;
  top: -60px;
  left: 20px;
  background: var(--ink);
  color: #fff;
  padding: 12px;
  z-index: 5;
}
.skip:focus { top: 8px; }

/* —— Header —— */
header {
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 4;
  background: color-mix(in srgb, var(--paper) 92%, transparent);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.6px;
  min-width: 0;
}
.brand-name { white-space: nowrap; }
nav {
  display: flex;
  gap: 22px;
  font-size: 14px;
  flex-shrink: 0;
}

/* Same three-line menu Tomato uses — one destination list on a phone. */
.site-menu {
  display: none;
  margin: 0;
  position: relative;
  flex-shrink: 0;
}
.site-menu summary {
  list-style: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  appearance: none;
  -webkit-appearance: none;
  overflow: hidden;
}
.site-menu summary::-webkit-details-marker,
.site-menu summary::marker { display: none; content: none; }
.site-menu summary::after { content: none; display: none; }
.site-menu summary span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  transform-origin: center;
}
.site-menu[open] summary span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-menu[open] summary span:nth-child(2) { opacity: 0; }
.site-menu[open] summary span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.site-menu nav {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  width: min(22rem, calc(100vw - 32px));
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 8px;
  box-shadow: 0 12px 30px rgba(36, 42, 40, 0.12);
  z-index: 60;
  max-height: min(75dvh, 36rem);
  overflow-y: auto;
}
.site-menu nav a {
  padding: 12px 10px;
  min-height: 44px;
  display: flex;
  align-items: center;
  font-size: 14px;
}
.site-menu nav a:hover { background: #e9ecdf; color: var(--ink); }
.site-menu nav a[aria-current="page"] { font-weight: 700; }

/* —— Hero —— */
.hero {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 56px;
  align-items: center;
  padding-block: 72px 64px;
}
.eyebrow {
  font-size: 11px;
  letter-spacing: 1.6px;
  font-weight: 600;
  color: var(--muted);
  margin: 0 0 22px;
}
.dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  margin-right: 6px;
  vertical-align: 1px;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(44px, 5.4vw, 70px);
  line-height: 1.06;
  letter-spacing: -2.2px;
  margin-bottom: 22px;
}
.intro {
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 28px;
}
.inline-link {
  color: var(--ink);
  border-bottom: 1px solid color-mix(in srgb, var(--ink) 35%, transparent);
}
.inline-link:hover { color: var(--red); border-color: var(--red); }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  align-items: center;
}
.jump {
  display: inline-flex;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 8px;
  font-size: 14px;
  font-weight: 600;
}
.jump.quiet {
  border-bottom-color: transparent;
  color: var(--muted);
  font-weight: 500;
}
.jump.quiet:hover {
  color: var(--red);
  border-bottom-color: var(--red);
}

.hero-demo {
  width: 100%;
  max-width: 520px;
  margin: 0;
  padding: 8px;
  justify-self: end;
  background: var(--cream);
  border: 1px solid #d7d7cb;
  box-shadow: 7px 9px 0 #e8e9df;
  animation: rise 0.7s ease both;
}
.hero-demo-stage {
  position: relative;
}
.hero-demo-recording {
  display: block;
}
.mobile-hero-start { display: none; }
.hero-demo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 712 / 480;
  background: #f7f5ef;
}
.hero-demo figcaption {
  padding: 10px 4px 2px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}

.postcard {
  position: relative;
  transform: rotate(2.5deg);
  background: var(--cream);
  border: 1px solid #d7d7cb;
  padding: 26px;
  box-shadow: 7px 9px 0 #e8e9df;
  max-width: 380px;
  justify-self: end;
  width: 100%;
  animation: postcard-in 0.9s ease both;
}
.postcard::before {
  content: "";
  position: absolute;
  left: 36%;
  top: -11px;
  width: 95px;
  height: 25px;
  background: #d7dcc6;
  opacity: 0.85;
  transform: rotate(-5deg);
}
.postcard-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 22px;
  font-size: 14px;
}
.stamp {
  border: 1px dashed #acae9f;
  font-family: var(--serif);
  font-size: 13px;
  line-height: 1.1;
  padding: 9px 12px;
  color: var(--green);
  text-align: center;
}
.postcard-top .peer {
  display: inline-flex;
  align-items: center;
  gap: 2px;
}
.verified {
  display: inline-block;
  width: 1.05em;
  height: 1.05em;
  margin-left: 4px;
  vertical-align: -0.12em;
  flex-shrink: 0;
}
h3 .verified {
  width: 17px;
  height: 17px;
  vertical-align: -0.2em;
}
.bubble {
  font-size: 14px;
  line-height: 1.5;
  padding: 14px 16px;
  width: fit-content;
  max-width: 95%;
  margin-bottom: 14px;
  border-radius: 12px;
}
.outgoing {
  background: #e8ecdf;
  margin-left: auto;
  border-bottom-right-radius: 3px;
}
.incoming {
  background: #eee9df;
  border-bottom-left-radius: 3px;
}
.postcard-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--line);
  margin-top: 28px;
  padding-top: 14px;
  font-size: 9px;
  letter-spacing: 1.2px;
  color: var(--muted);
}

@keyframes postcard-in {
  from { opacity: 0; transform: rotate(2.5deg) translateY(14px); }
  to { opacity: 1; transform: rotate(2.5deg) translateY(0); }
}
@keyframes rise {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-copy {
  animation: rise 0.7s ease both;
}

/* —— Origin —— */
.origin {
  padding-block: 28px 72px;
  border-top: 1px solid var(--line);
  scroll-margin-top: 100px;
}
.origin-lead .eyebrow { margin-bottom: 16px; }
.origin-body {
  display: grid;
  grid-template-columns: minmax(200px, 340px) 1fr;
  gap: 36px 48px;
  align-items: start;
  margin-top: 28px;
}
.origin-demo {
  margin: 0;
  max-width: 340px;
}
.origin-demo video {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #111;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.origin-demo figcaption {
  margin-top: 8px;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.02em;
  line-height: 1.4;
}
.origin-copy {
  max-width: 540px;
  padding-top: 2px;
}
.origin-copy p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 16px;
}
.origin-copy strong { color: var(--ink); font-weight: 600; }
.origin-copy em { font-family: var(--serif); color: var(--ink); }
.origin-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  margin-top: 8px;
}

/* —— Downloads —— */
.downloads { scroll-margin-top: 100px; }
.journey-section { padding-block: 64px; }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 22px;
}
.section-head .eyebrow { margin-bottom: 12px; }
h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 3.2vw, 36px);
  font-weight: 400;
  letter-spacing: -1px;
  line-height: 1.2;
  margin-bottom: 0;
}
.section-head > p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  text-align: right;
}
.release-note {
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 22px;
  line-height: 1.6;
}
.row-label { margin: 0 0 12px; }

.for-you {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--ink);
  color: #fffdf5;
  border-radius: 10px;
  padding: 24px 28px;
  margin-bottom: 28px;
}
.for-you .eyebrow { color: #b9bfae; margin: 0 0 10px; }
.for-you h3 {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.4px;
  margin: 0 0 8px;
}
.for-you p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: #c9cec2;
}
.for-you .download {
  flex-shrink: 0;
  min-width: 200px;
  min-height: 48px;
  justify-content: center;
  align-items: center;
  background: #fffdf5;
  color: var(--ink);
  border-color: #fffdf5;
}
.for-you .download:hover {
  background: #e9ecdf;
  color: var(--ink);
}
.for-you .download.ready {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}

.platform-scroller {
  margin-inline: calc(50% - 50vw);
  padding-inline: max(32px, calc(50vw - 560px));
}
.platform-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.platform {
  padding: 26px 24px 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fbfaf6;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.platform-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  min-height: 36px;
}
.platform-label {
  font-size: 10px;
  letter-spacing: 1.2px;
  color: var(--muted);
}
.device-icon {
  font-size: 32px;
  font-weight: 400;
  line-height: 1;
}
.phone, .tablet {
  height: 28px;
  width: 18px;
  border: 2px solid var(--ink);
  border-radius: 4px;
  position: relative;
  margin-left: 3px;
}
.tablet { width: 24px; height: 30px; }
.phone::after, .tablet::after {
  content: "";
  position: absolute;
  bottom: 3px;
  left: 6px;
  width: 3px;
  height: 2px;
  background: var(--ink);
}
.tablet::after { left: 9px; }
h3 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
}
.platform > p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
  min-height: 44px;
  margin-bottom: 16px;
}
.requirements {
  font-size: 12px;
  color: var(--muted);
  margin-top: auto;
  margin-bottom: 14px;
  line-height: 1.5;
}
.download {
  border: 1px solid #bfc5b9;
  border-radius: 4px;
  padding: 12px 14px;
  min-height: 44px;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  transition: background 0.2s, color 0.2s;
}
.download:hover {
  background: #e9ecdf;
  color: var(--ink);
}
.download.ready {
  background: var(--ink);
  color: #fffdf5;
  border-color: var(--ink);
}
.download.ready:hover { background: var(--green); border-color: var(--green); }
.availability {
  font-size: 11px;
  color: var(--muted);
  margin-top: 10px;
  line-height: 1.5;
}
.tomato-card { background: #efe9df; }
.tomato-mark {
  color: var(--red);
  font-size: 34px;
  position: relative;
}
.tomato-mark::before {
  content: "✳";
  position: absolute;
  top: -4px;
  left: 8px;
  color: var(--green);
  font-size: 18px;
}
.platform .text-link {
  margin-top: 8px;
  font-size: 12px;
}

/* —— How —— */
.how {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  padding-block: 72px;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 100px;
}
.how .eyebrow { margin-bottom: 16px; }
.how-copy > p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
}
.route {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 12px;
  font-size: 12px;
  border-top: 1px solid var(--line);
  padding-top: 20px;
  margin-top: 24px;
}
.route b { font-weight: 400; color: #aaa; }
.red { color: var(--red); }
.route-long { font-size: 11px; }

/* —— Factual subpages —— */
.info-hero {
  padding-block: 64px 40px;
  max-width: 850px;
}
.info-hero h1 { max-width: 13ch; }
.info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding-bottom: 64px;
}
.info-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--cream);
  padding: 24px;
}
.info-card.wide { grid-column: 1 / -1; }
.info-card h2 { font-size: 25px; margin-bottom: 14px; }
.info-card h3 { font-size: 18px; }
.info-card p,
.info-card li {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}
.evidence-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin: 30px 0 20px;
}
.evidence-shot,
.evidence-card {
  margin: 0;
}
.evidence-shot img,
.evidence-card img {
  width: 100%;
  height: auto;
  max-height: 620px;
  object-fit: contain;
  object-position: top center;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #ece9e0;
}
.evidence-shot figcaption,
.evidence-card figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}
.evidence-card img { max-height: 520px; }
.info-card ul { padding-left: 20px; }
.status-label {
  display: inline-block;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px 9px;
  margin-bottom: 12px;
  color: var(--green);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* —— Setup —— */
.setup {
  padding-block: 64px;
  scroll-margin-top: 100px;
}
.instructions {
  margin-top: 28px;
  border-top: 1px solid var(--line);
}
details {
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 100px;
}
summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 0;
  font-size: 16px;
  display: flex;
  gap: 24px;
  align-items: center;
  min-height: 56px;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: "+";
  margin-left: auto;
  font-size: 22px;
  font-weight: 300;
}
details[open] summary::after { content: "−"; }
summary > span {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 1px;
}
details > div {
  max-width: 740px;
  padding: 0 0 24px 42px;
}
details p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--muted);
}
code {
  font-size: 13px;
  overflow-wrap: anywhere;
  background: #efece4;
  padding: 1px 5px;
  border-radius: 3px;
}
.text-link {
  font-size: 14px;
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* —— Footer —— */
footer {
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0 calc(36px + env(safe-area-inset-bottom));
  gap: 16px;
}
footer .brand { font-size: 17px; }
footer > p,
footer > a:last-child {
  font-size: 12px;
  color: var(--muted);
  margin: 0;
}
footer .disclaimer {
  max-width: 420px;
  text-align: center;
  line-height: 1.5;
  font-size: 12px;
}

/* —— Tablet —— */
@media (max-width: 900px) {
  .hero {
    gap: 36px;
    padding-block: 52px 48px;
  }
  .origin {
    gap: 24px;
    padding-bottom: 56px;
  }
  .origin-body {
    gap: 28px 36px;
    grid-template-columns: minmax(180px, 280px) 1fr;
  }
  .how { gap: 36px; }
  .platform-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* —— Mobile —— */
@media (max-width: 900px) {
  header .desk-nav { display: none; }
  .site-menu { display: block; }
  header {
    height: 64px;
    padding-top: env(safe-area-inset-top);
  }
}

@media (max-width: 640px) {
  .wrap {
    width: calc(100% - 32px);
  }
  header {
    height: 56px;
    padding-top: env(safe-area-inset-top);
  }
  .brand { font-size: 18px; gap: 8px; }
  .brand img { width: 28px; height: 28px; }
  .hello-form {
    flex-direction: column;
    max-width: none;
  }
  .hello-form input { font-size: 16px; min-height: 48px; }
  .hello-form button { width: 100%; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .jump.solid { justify-content: center; text-align: center; }

  .hero {
    grid-template-columns: 1fr;
    padding-block: 36px 40px;
    gap: 32px;
  }
  .hero-demo { order:-1;max-width:none; }
  .mobile-hero-start {
    display: flex;
    min-height: 46px;
    margin: 12px 6px 4px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--ink);
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0,0,0,.2);
  }
  .hero-copy .hero-actions .solid { display:none; }
  .hero .eyebrow {
    font-size: 10px;
    letter-spacing: 1.2px;
    margin-bottom: 16px;
  }
  .intro { font-size: 16px; margin-bottom: 22px; }
  .hero-actions { gap: 14px 20px; }
  .jump { min-height: 44px; align-items: center; }
  .postcard {
    justify-self: center;
    max-width: 320px;
    transform: rotate(1.5deg);
    padding: 22px;
    box-shadow: 5px 6px 0 #e8e9df;
  }
  .postcard::before { left: 32%; width: 78px; }

  .origin {
    padding-block: 8px 48px;
  }
  .origin-body {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 20px;
  }
  .origin-copy p { font-size: 15px; }
  .origin-demo { max-width: min(260px, 70vw); }
  .journey-section { padding-block: 48px; }
  .info-hero { padding-block: 40px 28px; }
  .info-grid { grid-template-columns: 1fr; padding-bottom: 44px; }
  .info-card.wide { grid-column: auto; }
  .evidence-pair { display:none; }

  .section-head {
    display: block;
  }
  .section-head > p {
    margin-top: 12px;
    text-align: left;
  }

  .for-you {
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
    gap: 16px;
  }
  .for-you h3 { font-size: 20px; }
  .for-you .download {
    width: 100%;
    min-width: 0;
  }

  /* Horizontal snap row — readable cards, peek next */
  .platform-scroller {
    margin-inline: -16px;
    padding-inline: 16px;
    overflow: visible;
  }
  .platform-grid {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 16px;
    border: 0;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
  }
  .platform {
    flex: 0 0 min(78vw, 280px);
    scroll-snap-align: start;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 20px 18px;
  }
  .platform > p {
    display: block;
    min-height: 0;
    font-size: 13px;
    margin-bottom: 14px;
  }
  .tomato-card { flex-basis: min(82vw, 300px); }
  .download { font-size: 13px; }

  .how {
    grid-template-columns: 1fr;
    padding-block: 48px;
    gap: 22px;
  }
  .setup { padding-block: 40px; }
  details > div { padding-left: 0; padding-right: 0; }
  summary { gap: 16px; font-size: 15px; }

  footer {
    flex-wrap: wrap;
    row-gap: 10px;
    padding-block: 20px calc(28px + env(safe-area-inset-bottom));
  }
  footer > p { order: 3; width: 100%; text-align: left; }
  footer .disclaimer { max-width: none; text-align: left; }
}

@media (max-width: 380px) {
  h1 { font-size: 40px; letter-spacing: -1.6px; }
  .platform { flex-basis: 85vw; }
}

@media (prefers-reduced-motion: reduce) {
  :root { scroll-behavior: auto; }
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}

/* —— Hero hello: solid chat button + send-to-Tomato mini form —— */
.jump.solid {
  background: var(--ink);
  color: #fffdf5;
  border: 1px solid var(--ink);
  border-radius: 6px;
  padding: 12px 20px;
}
.jump.solid:hover { background: #3c443c; color: #fffdf5; }
.hello-form {
  display: flex;
  gap: 10px;
  margin-top: 22px;
  max-width: 430px;
}
.hello-form input {
  flex: 1;
  min-width: 0;
  font: inherit;
  font-size: 15px;
  padding: 12px 14px;
  border: 1px solid #bfc5b9;
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
}
.hello-form button {
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 18px;
  min-height: 48px;
  border: 1px solid var(--ink);
  border-radius: 6px;
  background: #fffdf5;
  color: var(--ink);
  cursor: pointer;
  white-space: nowrap;
}
.hello-form button:disabled { opacity: 0.45; cursor: default; }
.hello-status {
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
  margin-top: 10px;
  max-width: 430px;
}
.hello-status strong { color: var(--ink); }

/* —— Hero faces: you + Tomato thumbnails —— */
.face {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.peer .face { margin-right: 2px; }
.face.big { width: 40px; height: 40px; }
.bubble-row { display: flex; gap: 8px; align-items: flex-end; margin-bottom: 14px; }
.bubble-row.out { justify-content: flex-end; }
.bubble-row .bubble { margin-bottom: 0; }

/* Shared story: browser play, hardware chat, and the local compute preview. */
.world { padding-block:64px;border-top:1px solid var(--line);scroll-margin-top:110px; }
.world-heading { display:grid;grid-template-columns:1fr 1fr;gap:40px;margin:24px 0 32px;align-items:start; }
.world h2 { font:normal clamp(2.4rem,5vw,4rem)/1.08 var(--serif);letter-spacing:-.035em;margin:0; }
.world p { line-height:1.75;color:var(--muted); }
.world h3 { font-size:1.35rem;line-height:1.3; }
.world-cards { display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:16px; }
.world-card { display:flex;flex-direction:column;border:1px solid var(--line);border-radius:16px;padding:26px;background:var(--cream);transition:border-color .2s; }
.world-card:hover { border-color:var(--green); }
.world-link { margin-top:auto;padding-top:16px;font-weight:600;color:var(--red); }
.world-note { font-size:.85rem;max-width:80ch; }
.compute-example { display:grid;grid-template-columns:repeat(3,minmax(0,1fr));border:1px solid var(--line);border-radius:16px;overflow:hidden;background:var(--cream); }
.compute-example>div { padding:28px;min-width:0; }
.compute-example>div+div { border-left:1px solid var(--line); }
.compute-example>div:last-child { background:#e7f0df; }
.compute-example pre { white-space:pre-wrap;font-size:.95rem;line-height:1.6; }
.compute-example small { color:var(--muted);line-height:1.5;display:block; }
.compute-example .compute-answer { color:var(--ink);font-size:3rem;margin:12px 0; }
.compute-answer span { display:block;font-size:1rem;font-family:monospace; }
@media(max-width:720px) { .world-heading,.world-cards,.compute-example { grid-template-columns:1fr;gap:18px; } .compute-example { gap:0; } .compute-example>div+div { border-left:0;border-top:1px solid var(--line); } .world { padding-block:40px; } }
