@font-face {
  font-family: Inter;
  src: url("/assets/inter-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}
:root {
  --charcoal: #0b1016;
  --blue: #0b63ff;
  --cyan: #76e8ff;
  --white: #fff;
  --soft: #f7f9fc;
  --muted: #687283;
  --line: #e1e5eb;
  --dark-line: #252b34;
  --font: Inter, Arial, sans-serif;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}
body {
  margin: 0;
  background: var(--charcoal);
  font-family: var(--font);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
}
body,
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button,
a {
  touch-action: manipulation;
}
button {
  font: inherit;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  cursor: pointer;
}
img,
svg {
  display: block;
}
button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}
button:focus-visible,
a:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 5px;
}
::selection {
  background: #0b63ff;
  color: #fff;
}
h1,
h2,
h3,
p {
  margin: 0;
}
button {
  color: inherit;
}
svg.icon {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.icon-library {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
.container {
  width: min(1280px, calc(100% - 112px));
  margin-inline: auto;
}
.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;
}
[hidden] {
  display: none !important;
}
.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 100;
  background: #fff;
  color: #0b1016;
  padding: 12px 20px;
  border-radius: 8px;
  transform: translateY(-180%);
}
.skip-link:focus {
  transform: translateY(0);
}
.site-header {
  height: 106px;
  position: relative;
  z-index: 10;
}
.nav-wrap {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  border-bottom: 1px solid var(--dark-line);
}
.brand {
  display: block;
  flex-shrink: 0;
}
.brand img {
  width: 126px;
  height: auto;
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: 70px;
}
.desktop-nav a {
  font-size: 13px;
  color: #bcc2ca;
  transition: color 0.2s;
}
.desktop-nav a:hover {
  color: #fff;
}
.button {
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 29px;
  padding: 18px 24px;
  border-radius: 8px;
  min-height: 57px;
  font-size: 14px;
  font-weight: 550;
  white-space: nowrap;
  transition:
    background 0.2s,
    transform 0.2s,
    box-shadow 0.2s;
}
.button:hover {
  transform: translateY(-2px);
}
.button .icon {
  width: 19px;
  height: 19px;
}
.button-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 3px 0 #ffffff08 inset;
}
.button-primary:hover {
  background: #2675ff;
  box-shadow: 0 8px 26px #0b63ff30;
}
.button-outline {
  border: 1px solid #414750;
  background: #ffffff02;
}
.button-outline:hover {
  background: #ffffff09;
  border-color: #687283;
}
.button-small {
  padding: 12px 18px;
  min-height: 43px;
  font-size: 12px;
  gap: 20px;
  border-radius: 6px;
}
.eyebrow {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 10px;
  font-weight: 550;
  letter-spacing: 1.7px;
  line-height: 1.5;
  text-transform: uppercase;
}
.status-dot {
  display: inline-block;
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 4px #0b63ff14;
}
.hero {
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 680px;
  padding-top: 43px;
  padding-bottom: 57px;
  gap: 0;
}
.hero-copy {
  position: relative;
  z-index: 2;
  padding-bottom: 7px;
}
.hero-eyebrow {
  color: #a9b8cc;
  margin-bottom: 26px;
  letter-spacing: 1.5px;
}
.hero h1 {
  font-size: clamp(70px, 7.6vw, 112px);
  font-weight: 550;
  letter-spacing: -7px;
  line-height: 1.04;
}
.hero h1 > span {
  color: #a3abb8;
}
.hero-description {
  font-size: 22px;
  font-weight: 450;
  line-height: 1.48;
  letter-spacing: -0.5px;
  margin-top: 28px;
  color: #edf0f5;
}
.hero-detail {
  font-size: 14px;
  line-height: 1.8;
  color: #929ca9;
  max-width: 380px;
  margin-top: 15px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 28px;
}
.text-link {
  font-size: 11px;
  color: #b3bdcb;
  line-height: 1.5;
  max-width: 137px;
  display: flex;
  gap: 13px;
  align-items: center;
  transition: color 0.2s;
}
.text-link span {
  font-size: 22px;
}
.text-link:hover {
  color: #fff;
}
.invite-note {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #818d9c;
  font-size: 10px;
  margin-top: 21px;
}
.invite-note .icon {
  width: 15px;
  height: 15px;
}
.hero-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--dark-line);
  padding-top: 26px;
  padding-bottom: 29px;
  color: #8f9aa8;
  font-size: 11px;
}
.hero-bottom > span {
  color: #b9c0cb;
}
.hero-bottom > div {
  display: flex;
  gap: 32px;
}
.hero-bottom > div > span {
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-bottom .icon {
  width: 15px;
  height: 15px;
  color: #7f93ab;
}
.hero-world {
  height: 550px;
  width: 100%;
  position: relative;
  isolation: isolate;
  margin-top: 10px;
}
.world-grid {
  position: absolute;
  inset: -10px -40px;
  background-image: radial-gradient(#35435070 0.65px, transparent 0.65px);
  background-size: 21px 21px;
  mask-image: radial-gradient(ellipse at 50% 50%, #000 10%, transparent 68%);
  z-index: -2;
}
.hero-world::before {
  content: "";
  position: absolute;
  inset: 30px -30px;
  background: radial-gradient(ellipse, #0b63ff09, transparent 65%);
  z-index: -1;
}
.orbit {
  position: absolute;
  left: 51%;
  top: 47%;
  border: 1px solid #2c3b4e80;
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(-22deg);
  z-index: -1;
}
.orbit-one {
  width: 260px;
  height: 260px;
}
.orbit-two {
  width: 410px;
  height: 410px;
  border-color: #2834416b;
}
.orbit-three {
  width: 555px;
  height: 555px;
  border-color: #26303a50;
}
.orbit-point {
  position: absolute;
  width: 6px;
  height: 6px;
  background: #93b1d2;
  border-radius: 50%;
  box-shadow: 0 0 8px #76e8ff20;
}
.point-one {
  left: 19%;
  top: 24%;
}
.point-two {
  left: 76%;
  top: 71%;
  background: var(--blue);
}
.world-caption {
  position: absolute;
  left: 13%;
  right: 6%;
  top: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 8px;
  letter-spacing: 2.2px;
  color: #74849a;
}
.tiny-cross {
  font-size: 15px;
  font-weight: 300;
  color: #556678;
}
.floating-card {
  position: absolute;
  z-index: 2;
  background: linear-gradient(135deg, #1b2430, #131c27);
  border: 1px solid #ffffff12;
  border-radius: 12px;
  padding: 19px;
  box-shadow: 0 16px 40px #00000030;
  transition: transform 0.4s;
}
.floating-card strong {
  display: block;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: -0.25px;
  color: #f3f5f7;
}
.card-detail {
  font-size: 9px;
  line-height: 1.7;
  color: #8e9eb1;
  display: block;
  margin-top: 4px;
}
.card-kicker {
  font-size: 7px;
  color: #73869d;
  letter-spacing: 1.4px;
  display: block;
  margin-bottom: 6px;
}
.task-icon {
  display: grid;
  place-items: center;
  width: 37px;
  height: 37px;
  border-radius: 9px;
  flex-shrink: 0;
}
.task-icon .icon {
  width: 19px;
  height: 19px;
}
.blue-icon {
  background: #0b63ff1c;
  color: #71a5ff;
}
.mint-icon {
  background: #87cfb617;
  color: #a7d1c1;
}
.peach-icon {
  background: #b68b621c;
  color: #d9b399;
}
.laundry-card {
  left: 0;
  top: 86px;
  display: flex;
  align-items: center;
  gap: 12px;
  width: 321px;
  transform: rotate(-4deg);
  animation: float-laundry 8s ease-in-out infinite;
}
.done-check {
  display: grid;
  place-items: center;
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #172f2d;
  color: #8fceae;
  margin-left: auto;
}
.done-check .icon {
  width: 11px;
  height: 11px;
  stroke-width: 2;
}
.dinner-card {
  right: -8px;
  top: 186px;
  width: 244px;
  transform: rotate(6deg);
  animation: float-dinner 9s ease-in-out infinite;
}
.mini-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}
.mini-status {
  font-size: 7px;
  color: #adc5b8;
  background: #84b49a12;
  padding: 5px 8px;
  border: 1px solid #8ebca514;
  border-radius: 20px;
}
.dinner-card .card-detail {
  font-size: 8px;
}
.reservation-line {
  border-top: 1px solid #ffffff0b;
  margin-top: 14px;
  padding-top: 11px;
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 8px;
  color: #8694a4;
}
.reservation-line > .icon {
  width: 13px;
  height: 13px;
  margin-left: auto;
}
.reservation-art {
  display: flex;
  align-items: center;
  height: 20px;
  gap: 2px;
}
.reservation-art span {
  height: 12px;
  width: 3px;
  border: 1px solid #bc937d;
  border-radius: 50%;
}
.reservation-art span:nth-child(2) {
  width: 15px;
  height: 15px;
}
.rex-core {
  position: absolute;
  left: 18%;
  top: 235px;
  width: 220px;
  z-index: 1;
}
.rex-core > img {
  width: 177px;
  height: 60px;
}
.core-orb {
  position: absolute;
  top: 36px;
  left: 154px;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  border: 1px solid var(--cyan);
  background: radial-gradient(circle at 30% 30%, #071d4b, #020a19);
  box-shadow:
    0 0 0 1.5px #0b63ff,
    0 0 12px 4px #0b63ff70,
    0 0 52px 15px #0b63ff20;
}
.core-label {
  display: block;
  color: #6d819d;
  font-size: 7px;
  letter-spacing: 3px;
  margin-left: 6px;
  margin-top: 13px;
}
.inbox-card {
  left: 9%;
  bottom: 104px;
  display: flex;
  gap: 12px;
  align-items: center;
  transform: rotate(-3deg);
  width: 294px;
  padding: 18px;
  animation: float-inbox 7s ease-in-out infinite;
}
.inbox-card strong {
  font-size: 12px;
}
.inbox-card .card-detail {
  font-size: 8px;
}
.message-card {
  position: absolute;
  bottom: 32px;
  right: 2%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 14px;
  border: 1px solid #2a3646;
  background: #111b28;
  border-radius: 10px;
  width: 337px;
  font-size: 10px;
  color: #becbdd;
  transform: rotate(2deg);
  box-shadow: 0 10px 30px #0002;
}
.message-avatar {
  font-size: 7px;
  color: #a5b5cb;
  border: 1px solid #384252;
  display: grid;
  place-items: center;
  height: 26px;
  width: 26px;
  border-radius: 50%;
  flex-shrink: 0;
}
.message-send {
  background: var(--blue);
  display: grid;
  place-items: center;
  width: 23px;
  height: 23px;
  border-radius: 6px;
  margin-left: auto;
  flex-shrink: 0;
  color: white;
}
.message-send .icon {
  width: 14px;
  height: 14px;
  transform: rotate(-90deg);
}
.world-footnote {
  position: absolute;
  bottom: 0;
  left: 14%;
  right: 3%;
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 7px;
  color: #607188;
}
.world-footnote .status-dot {
  width: 4px;
  height: 4px;
  box-shadow: none;
}
.example-label {
  margin-left: auto;
  color: #748092;
  font-size: 7px;
}
.hero-world:hover .floating-card {
  animation-play-state: paused;
}
.light-section {
  background: var(--soft);
  color: var(--charcoal);
}
.possibilities {
  padding: 107px 0 66px;
}
.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 47px;
}
.section-number {
  color: #9aa2af;
  margin-right: 8px;
}
h2 {
  font-size: clamp(35px, 3.75vw, 54px);
  letter-spacing: -2.4px;
  line-height: 1.13;
  font-weight: 550;
}
.section-heading h2,
.how-copy h2,
.privacy-copy h2 {
  margin-top: 23px;
}
.section-heading-right {
  padding-bottom: 2px;
}
.section-heading-right > p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 22px;
}
.task-filter {
  display: flex;
  padding: 4px;
  border: 1px solid #dce2e9;
  border-radius: 8px;
  gap: 3px;
  background: #edf0f4;
}
.filter-button {
  padding: 9px 14px;
  border: 0;
  background: transparent;
  color: #657081;
  font-size: 11px;
  border-radius: 5px;
  transition:
    background 0.2s,
    color 0.2s,
    box-shadow 0.2s;
}
.filter-button.active {
  background: #fff;
  color: var(--charcoal);
  box-shadow: 0 1px 4px #18243b12;
}
.filter-button:hover:not(.active) {
  color: var(--charcoal);
  background: #ffffff70;
}
.task-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 19px;
}
.task-grid.filtered {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.task-card {
  background: #fff;
  border: 1px solid #e6e9ef;
  border-radius: 14px;
  padding: 25px 25px 29px;
  min-width: 0;
  overflow: hidden;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.task-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px #18264008;
}
.task-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.task-card-top > .icon {
  width: 15px;
  height: 15px;
  color: #9ba4b0;
}
.category-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 7px;
  font-weight: 600;
  letter-spacing: 1.1px;
  color: #747f8c;
}
.category-label > span {
  width: 4px;
  height: 4px;
  background: #7c8da0;
  border-radius: 50%;
}
.task-art {
  position: relative;
  height: 233px;
  display: grid;
  place-items: center;
  margin: 13px 0 16px;
}
.task-card h3 {
  font-size: 19px;
  font-weight: 550;
  letter-spacing: -0.65px;
}
.task-card > p {
  font-size: 11px;
  color: #77818f;
  line-height: 1.85;
  margin-top: 10px;
}
.laundry-ticket {
  height: 186px;
  width: 152px;
  transform: rotate(-9deg);
  border-radius: 6px;
  background: #f4f6fa;
  border: 1px solid #e2e6ef;
  box-shadow: 6px 11px 18px #132e5910;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 19px 13px 11px;
  position: relative;
}
.laundry-ticket::before,
.laundry-ticket::after {
  content: "";
  position: absolute;
  top: 133px;
  width: 13px;
  height: 13px;
  background: #fff;
  border-radius: 50%;
  border: 1px solid #e2e6ef;
}
.laundry-ticket::before {
  left: -7px;
  border-left: 0;
}
.laundry-ticket::after {
  right: -7px;
  border-right: 0;
}
.ticket-title {
  font-size: 6px;
  letter-spacing: 1.6px;
  color: #77869c;
}
.shirt-illustration.icon {
  width: 65px;
  height: 65px;
  margin: 18px 0 12px;
  color: #698cc5;
  fill: #e2ebfb;
  stroke-width: 0.7;
}
.ticket-time {
  font-size: 8px;
  color: #5a6d88;
}
.ticket-dash {
  width: 100%;
  border-top: 1px dashed #d0d7e4;
  margin: 13px 0 9px;
}
.ticket-barcode {
  width: 82px;
  height: 19px;
  background: repeating-linear-gradient(
    90deg,
    #7b8ca5 0 1px,
    transparent 1px 3px,
    #7b8ca5 3px 5px,
    transparent 5px 7px,
    #7b8ca5 7px 8px,
    transparent 8px 11px
  );
  opacity: 0.7;
}
.art-badge {
  position: absolute;
  bottom: 24px;
  right: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  box-shadow: 0 5px 20px #142b4c0e;
  border: 1px solid #e8edf3;
  border-radius: 7px;
  padding: 10px 12px;
  font-size: 8px;
  color: #5f7184;
  transform: rotate(4deg);
}
.art-badge .icon {
  width: 12px;
  height: 12px;
  color: #438c71;
}
.calendar-sheet {
  width: 230px;
  background: #fff;
  border: 1px solid #e5e9f0;
  box-shadow: 0 9px 26px #1533520b;
  transform: rotate(4deg);
  border-radius: 9px;
  padding: 16px 15px;
}
.calendar-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 9px;
  font-weight: 550;
  margin-bottom: 16px;
  color: #53627a;
}
.calendar-heading .icon {
  width: 13px;
  height: 13px;
  color: #9aabbe;
}
.calendar-row {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 6px;
  color: #9aa4b2;
  margin-top: 9px;
}
.calendar-row > span {
  width: 23px;
}
.calendar-event {
  display: flex;
  flex-direction: column;
  background: #eaf1ff;
  color: #4976b6;
  border-left: 2px solid #729ced;
  border-radius: 4px;
  padding: 10px 9px;
  gap: 5px;
  flex: 1;
  font-size: 8px;
}
.calendar-event span {
  font-size: 6px;
  color: #7893bf;
}
.muted-event {
  background: #f2f3f6;
  border-color: #c4cbd5;
  color: #8491a4;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding-block: 7px;
}
.muted-event .icon {
  width: 9px;
  height: 9px;
}
.calendar-line {
  height: 1px;
  background: #e9edf2;
  flex: 1;
}
.art-calendar .art-badge {
  bottom: 19px;
  right: 14px;
  transform: rotate(-3deg);
}
.art-dinner {
  background: radial-gradient(ellipse at 50% 45%, #fcf6ef, transparent 65%);
}
.dinner-plate {
  width: 143px;
  height: 143px;
  position: absolute;
  top: 16px;
  left: calc(50% - 79px);
  border-radius: 50%;
  background: #f5f2ed;
  box-shadow:
    0 6px 13px #6043200b,
    inset 0 0 0 1px #e9e2d8;
  display: grid;
  place-items: center;
  transform: rotate(-12deg);
}
.plate-inner {
  width: 114px;
  height: 114px;
  border-radius: 50%;
  border: 1px solid #e7dfd3;
  box-shadow: inset 0 2px 3px #9882660c;
  display: grid;
  place-items: center;
}
.plate-inner .icon {
  width: 42px;
  height: 42px;
  color: #a58b6d;
  stroke-width: 1.1;
}
.dinner-reservation {
  background: #fff;
  border: 1px solid #e8e2d9;
  border-radius: 8px;
  width: 189px;
  padding: 15px 18px;
  transform: rotate(-5deg);
  position: absolute;
  bottom: 17px;
  right: 8px;
  box-shadow: 0 7px 22px #5037170c;
}
.dinner-reservation > span:first-child {
  font-size: 6px;
  letter-spacing: 1.5px;
  color: #9a8c7c;
}
.dinner-reservation strong {
  display: block;
  font-size: 13px;
  font-weight: 550;
  margin: 6px 0 9px;
  color: #695a4d;
}
.dinner-booked {
  font-size: 7px;
  color: #8a9487;
  display: flex;
  align-items: center;
  gap: 5px;
}
.dinner-booked > span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #93a388;
}
.little-star {
  position: absolute;
  color: #b59c7c;
}
.star-one {
  right: 14px;
  top: 26px;
  font-size: 22px;
}
.star-two {
  left: 13px;
  bottom: 45px;
  font-size: 15px;
}
.mail-sheet {
  width: 250px;
  padding: 23px;
  background: #f7f9fc;
  border: 1px solid #e3e8ef;
  border-radius: 9px;
  transform: rotate(-5deg);
  box-shadow: 0 10px 22px #14305a0c;
}
.mail-sheet > .icon {
  color: #85a3bd;
  margin-bottom: 13px;
}
.mail-sheet > span {
  font-size: 8px;
  color: #6e8093;
}
.mail-line {
  margin-top: 12px;
  background: #dce5ee;
  height: 4px;
  width: 95%;
  border-radius: 3px;
}
.mail-line.short-line {
  width: 67%;
  margin-top: 7px;
}
.mail-sheet > strong {
  font-size: 10px;
  display: block;
  margin-top: 19px;
  font-weight: 500;
  color: #6d849e;
}
.section-footnote {
  font-size: 10px;
  text-align: center;
  margin-top: 30px;
  color: #8b94a2;
}
.how-section {
  padding: 49px 0 111px;
}
.how-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 95px;
  border-top: 1px solid var(--line);
  padding-top: 85px;
  align-items: center;
}
.how-copy .section-description {
  margin-top: 20px;
  color: var(--muted);
  line-height: 1.75;
  font-size: 13px;
}
.steps {
  list-style: none;
  margin: 32px 0 0;
  padding: 0;
}
.steps li {
  display: flex;
  gap: 17px;
  padding: 20px 0;
  border-bottom: 1px solid #e4e8ee;
}
.steps li:last-child {
  border-bottom: 0;
}
.step-number {
  font-size: 10px;
  color: #7990ac;
  padding-top: 4px;
}
.steps h3 {
  font-size: 14px;
  font-weight: 550;
  letter-spacing: -0.3px;
}
.steps p {
  font-size: 11px;
  color: #87909c;
  margin-top: 7px;
}
.demo-wrap {
  min-width: 0;
  padding: 20px 23px 21px;
  background: #eef1f6;
  border: 1px solid #e7ebf1;
  border-radius: 16px;
  position: relative;
}
.demo-topline {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 7px;
  letter-spacing: 1px;
  color: #8a96a6;
  margin-bottom: 18px;
}
.demo-example {
  font-size: 7px;
  letter-spacing: 0;
  color: #98a2b0;
}
.conversation {
  background: #fff;
  border: 1px solid #e1e6ed;
  border-radius: 12px;
  box-shadow: 0 8px 16px #27365204;
  overflow: hidden;
}
.conversation-header {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 18px 21px;
  border-bottom: 1px solid #eef0f5;
}
.conversation-header > img {
  width: 37px;
  height: 37px;
  border-radius: 10px;
}
.conversation-header > div {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.conversation-header strong {
  font-size: 12px;
  font-weight: 600;
}
.conversation-header > div > span {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 8px;
  color: #8391a0;
}
.conversation-header .status-dot {
  height: 4px;
  width: 4px;
  box-shadow: none;
}
.conversation-header > .icon {
  margin-left: auto;
  width: 17px;
  height: 17px;
  color: #a4b0c0;
}
.conversation-body {
  padding: 24px 20px 22px;
  min-height: 342px;
}
.conversation-date {
  font-size: 6px;
  letter-spacing: 1.2px;
  color: #a8b1bf;
  display: block;
  text-align: center;
  margin-bottom: 24px;
}
.chat-user {
  font-size: 11px;
  line-height: 1.7;
  background: #edf3ff;
  border-radius: 10px 10px 2px 10px;
  padding: 13px 16px;
  margin: 0 0 24px 52px;
  color: #3e5b88;
  max-width: 282px;
  margin-left: auto;
}
.chat-rex {
  display: flex;
  align-items: flex-start;
  gap: 9px;
}
.chat-rex > img {
  margin-top: 2px;
  width: 23px;
  height: 23px;
  border-radius: 6px;
}
.chat-rex > div {
  flex: 1;
}
.chat-rex p {
  font-size: 11px;
  line-height: 1.85;
  color: #7e8999;
  max-width: 286px;
}
.chat-progress {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 7px;
  color: #98a4b4;
  margin: 16px 0 13px;
}
.chat-progress > span:first-child {
  width: 6px;
  height: 6px;
  border: 1px solid #a4b4ca;
  border-radius: 50%;
}
.chat-result {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f8fafb;
  border: 1px solid #e7edf1;
  border-radius: 8px;
  padding: 13px 12px;
}
.result-check {
  display: grid;
  place-items: center;
  background: #e8f1ee;
  color: #59957b;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  flex-shrink: 0;
}
.result-check .icon {
  width: 13px;
  height: 13px;
}
.chat-result strong {
  display: block;
  font-size: 10px;
  font-weight: 550;
  color: #4c5c70;
}
.chat-result > div > span {
  font-size: 8px;
  color: #99a4b2;
  display: block;
  margin-top: 4px;
}
.conversation-end {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-top: 25px;
  font-size: 7px;
  color: #9aa5b4;
}
.conversation-end > .icon {
  height: 11px;
  width: 11px;
}
.scenario-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 19px;
}
.scenario-tabs button {
  display: flex;
  gap: 7px;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 9px 12px;
  color: #8692a4;
  font-size: 9px;
  transition:
    background 0.2s,
    color 0.2s;
}
.scenario-tabs button[aria-selected="true"] {
  background: #fff;
  color: #426797;
  border-color: #e3e7ef;
  box-shadow: 0 2px 3px #00000003;
}
.scenario-tabs button:hover {
  color: #0b63ff;
}
.scenario-tabs .icon {
  width: 13px;
  height: 13px;
}
.conversation-body.changing {
  animation: conversation-in 0.3s ease-out;
}
.privacy-section {
  padding: 90px 0;
  background: #10161e;
  border-top: 1px solid #1e2733;
  border-bottom: 1px solid #1e2733;
}
.privacy-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 90px;
  align-items: center;
}
.privacy-copy .eyebrow {
  color: #a1abba;
}
.privacy-copy h2 {
  font-size: 42px;
  letter-spacing: -1.7px;
}
.privacy-copy h2 > span {
  color: #8693a4;
}
.privacy-copy > p:last-child {
  font-size: 12px;
  line-height: 1.9;
  color: #8390a2;
  margin-top: 20px;
}
.privacy-points {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.privacy-points > div {
  display: flex;
  gap: 17px;
  align-items: center;
}
.privacy-icon {
  height: 42px;
  width: 42px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  border: 1px solid #2a3545;
  background: #141e2b;
  color: #94b9eb;
  flex-shrink: 0;
}
.privacy-icon .icon {
  height: 19px;
  width: 19px;
}
.privacy-points h3 {
  font-size: 13px;
  font-weight: 500;
  color: #d9e0ea;
}
.privacy-points p {
  font-size: 10px;
  color: #8390a2;
  line-height: 1.6;
  margin-top: 7px;
}
.waitlist-section {
  overflow: hidden;
  position: relative;
  padding: 94px 0 96px;
  background: var(--charcoal);
}
.waitlist-section::before {
  content: "";
  position: absolute;
  width: 760px;
  height: 760px;
  border: 1px solid #24354a45;
  border-radius: 50%;
  left: 50%;
  top: 36px;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 0;
}
.waitlist-section::after {
  content: "";
  position: absolute;
  width: 950px;
  height: 950px;
  border: 1px solid #24354a25;
  border-radius: 50%;
  left: 50%;
  top: -58px;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 0;
}
.waitlist-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}
.waitlist-symbol {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 19px;
  margin-bottom: 27px;
  color: #394758;
  font-family: monospace;
  font-size: 48px;
  font-weight: 100;
}
.waitlist-symbol img {
  width: 56px;
  height: 56px;
  border-radius: 13px;
  box-shadow: 0 0 70px #0b63ff18;
}
.waitlist-inner .eyebrow {
  justify-content: center;
  color: #8f9db0;
  font-size: 8px;
}
.waitlist-inner h2 {
  font-size: 53px;
  line-height: 1.15;
  letter-spacing: -2.8px;
  margin-top: 23px;
}
.waitlist-inner h2 > span {
  color: #8d9aae;
}
.waitlist-inner > p:not(.eyebrow) {
  color: #8f9aac;
  font-size: 12px;
  line-height: 1.9;
  margin-top: 23px;
}
.waitlist-inner > .button {
  margin-top: 27px;
  min-width: 215px;
}
.waitlist-note {
  display: block;
  margin-top: 17px;
  font-size: 8px;
  color: #768496;
}
.waitlist-note > span {
  margin-inline: 7px;
}
.faq-section {
  padding: 69px 0 77px;
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
}
.faq-grid .eyebrow {
  font-size: 8px;
  color: #8a94a2;
}
.faq-grid h2 {
  font-size: 35px;
  margin-top: 19px;
  letter-spacing: -1.3px;
}
.faq-list details {
  border-bottom: 1px solid #dce2eb;
}
.faq-list details:first-child {
  border-top: 1px solid #dce2eb;
}
.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
  font-size: 12px;
  color: #485567;
  cursor: pointer;
  list-style: none;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary .icon {
  width: 16px;
  height: 16px;
  color: #8796aa;
  transition: transform 0.2s;
}
.faq-list details[open] summary .icon {
  transform: rotate(45deg);
}
.faq-list details p {
  font-size: 11px;
  color: #7b8797;
  line-height: 1.85;
  padding: 0 26px 22px 0;
  max-width: 500px;
}
.site-footer {
  padding-top: 46px;
}
.footer-top {
  display: flex;
  align-items: center;
  gap: 34px;
  padding-bottom: 34px;
  border-bottom: 1px solid #222c37;
}
.footer-top > p {
  font-size: 11px;
  color: #8995a4;
}
.footer-back {
  font-size: 10px;
  color: #b1bac6;
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer-back > span {
  font-size: 16px;
  color: #7c8ca1;
}
.footer-bottom {
  padding-block: 23px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 8px;
  color: #778395;
}
.footer-bottom > a {
  display: flex;
  align-items: center;
  gap: 7px;
}
.footer-bottom .icon {
  height: 11px;
  width: 11px;
}
.footer-bottom > span:nth-child(2) {
  color: #929ba9;
}
@keyframes float-laundry {
  0%,
  100% {
    transform: translateY(0) rotate(-4deg);
  }
  50% {
    transform: translateY(-8px) rotate(-3deg);
  }
}
@keyframes float-dinner {
  0%,
  100% {
    transform: translateY(0) rotate(6deg);
  }
  50% {
    transform: translateY(7px) rotate(5deg);
  }
}
@keyframes float-inbox {
  0%,
  100% {
    transform: translateY(0) rotate(-3deg);
  }
  50% {
    transform: translateY(6px) rotate(-2deg);
  }
}
@keyframes conversation-in {
  from {
    opacity: 0.5;
    transform: translateY(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Keep supporting text legible while preserving the quiet brand palette. */
.light-section .section-number,
.category-label,
.task-card > p,
.section-footnote,
.step-number,
.steps p,
.demo-topline,
.demo-example,
.conversation-header > div > span,
.conversation-date,
.chat-rex p,
.chat-progress,
.chat-result > div > span,
.conversation-end,
.scenario-tabs button,
.faq-grid .eyebrow,
.faq-list details p,
.ticket-title,
.calendar-row,
.dinner-reservation > span:first-child,
.dinner-booked {
  color: #5e6b80;
}
.mail-sheet > span,
.mail-sheet > strong {
  color: #5e6b80;
}
.filter-button {
  color: #5d697b;
}
.calendar-event,
.calendar-event span {
  color: #456899;
}
.muted-event {
  color: #5e6b80;
}
.task-card > p {
  font-size: 13px;
}
.how-copy .section-description {
  font-size: 14px;
}
.steps p {
  font-size: 12px;
}
.privacy-points p {
  font-size: 12px;
}
.faq-list summary {
  font-size: 14px;
}
.faq-list details p {
  font-size: 13px;
}
.waitlist-inner > p:not(.eyebrow) {
  font-size: 14px;
}

@media (min-width: 1500px) {
  .hero-grid {
    min-height: 750px;
  }
  .hero-world {
    transform: scale(1.06);
    transform-origin: center;
  }
  .hero h1 {
    font-size: 118px;
  }
  .hero-description {
    font-size: 24px;
  }
  .hero-detail {
    font-size: 15px;
    max-width: 400px;
  }
}
@media (max-width: 1150px) {
  .container {
    width: calc(100% - 72px);
  }
  .desktop-nav {
    gap: 22px;
    margin-left: 15px;
  }
  .desktop-nav a {
    font-size: 11px;
  }
  .hero h1 {
    font-size: 87px;
    letter-spacing: -5.5px;
  }
  .hero-world {
    transform: scale(0.87);
    transform-origin: center right;
    width: 114%;
    margin-left: -14%;
  }
  .hero-grid {
    min-height: 648px;
    grid-template-columns: 1.03fr 1fr;
  }
  .hero-description {
    font-size: 20px;
  }
  .hero-detail {
    font-size: 12px;
    max-width: 330px;
  }
  .hero-actions {
    gap: 17px;
  }
  .hero-actions .button {
    font-size: 12px;
    gap: 20px;
    padding-inline: 20px;
  }
  .text-link {
    font-size: 10px;
    max-width: 124px;
  }
  .how-grid {
    gap: 55px;
  }
  .task-card {
    padding-inline: 20px;
  }
  .task-card h3 {
    font-size: 17px;
  }
  .task-card > p {
    font-size: 12px;
  }
  .category-label {
    font-size: 6px;
  }
  .privacy-grid {
    gap: 50px;
  }
  .privacy-copy h2 {
    font-size: 37px;
  }
  .demo-wrap {
    padding-inline: 16px;
  }
  .demo-topline {
    font-size: 6px;
  }
  .demo-example {
    font-size: 6px;
  }
  .task-art {
    height: 216px;
  }
  .calendar-sheet {
    width: 205px;
  }
}
@media (max-width: 900px) {
  .rex-core {
    left: 5%;
  }
  .container {
    width: calc(100% - 48px);
  }
  .site-header {
    height: 88px;
  }
  .desktop-nav {
    gap: 20px;
  }
  .desktop-nav a {
    font-size: 10px;
  }
  .desktop-nav a:last-child {
    display: none;
  }
  .brand img {
    width: 115px;
  }
  .hero h1 {
    font-size: 76px;
    letter-spacing: -5px;
  }
  .hero-grid {
    min-height: 621px;
    padding-top: 30px;
    padding-bottom: 36px;
  }
  .hero-eyebrow {
    font-size: 8px;
  }
  .hero-world {
    transform: scale(0.73);
    width: 137%;
    margin-left: -37%;
  }
  .hero-description {
    font-size: 18px;
  }
  .hero-detail {
    font-size: 11px;
    max-width: 290px;
  }
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 15px;
  }
  .text-link {
    max-width: none;
    font-size: 10px;
    gap: 10px;
  }
  .text-link span {
    font-size: 15px;
  }
  .invite-note {
    font-size: 8px;
    margin-top: 17px;
  }
  .hero-bottom {
    font-size: 9px;
  }
  .hero-bottom > div {
    gap: 20px;
  }
  .hero-bottom > div > span {
    gap: 5px;
  }
  .hero-bottom .icon {
    width: 13px;
    height: 13px;
  }
  .possibilities {
    padding-top: 75px;
  }
  .section-heading h2 {
    font-size: 43px;
  }
  .section-heading-right > p {
    font-size: 12px;
  }
  .task-grid {
    gap: 12px;
  }
  .task-card {
    padding: 20px 15px 24px;
  }
  .task-card h3 {
    font-size: 15px;
    letter-spacing: -0.4px;
  }
  .task-card > p {
    font-size: 12px;
  }
  .task-card > p br {
    display: none;
  }
  .task-card-top > .icon {
    width: 12px;
    height: 12px;
  }
  .category-label {
    font-size: 5.5px;
    letter-spacing: 0.7px;
  }
  .task-art {
    height: 210px;
    transform: scale(0.86);
    width: 116%;
    margin-left: -8%;
  }
  .art-badge {
    right: 0;
  }
  .how-grid {
    gap: 30px;
  }
  .how-copy h2 {
    font-size: 37px;
    letter-spacing: -1.9px;
  }
  .how-copy .section-description {
    font-size: 12px;
  }
  .steps p {
    font-size: 12px;
    line-height: 1.6;
  }
  .steps h3 {
    font-size: 12px;
  }
  .demo-topline {
    justify-content: center;
  }
  .demo-example {
    display: none;
  }
  .demo-wrap {
    padding: 18px 13px;
  }
  .conversation-body {
    padding-inline: 14px;
    min-height: 354px;
  }
  .conversation-header {
    padding: 15px;
  }
  .chat-user {
    font-size: 10px;
    margin-left: 25px;
  }
  .chat-rex p {
    font-size: 10px;
  }
  .chat-progress {
    font-size: 6px;
    line-height: 1.5;
  }
  .chat-result {
    padding: 11px 8px;
    gap: 7px;
  }
  .chat-result strong {
    font-size: 8px;
  }
  .chat-result > div > span {
    font-size: 7px;
  }
  .conversation-end {
    font-size: 6px;
    gap: 4px;
  }
  .scenario-tabs {
    gap: 1px;
  }
  .scenario-tabs button {
    font-size: 8px;
    padding-inline: 9px;
  }
  .privacy-grid {
    gap: 35px;
  }
  .privacy-copy h2 {
    font-size: 32px;
  }
  .privacy-points {
    gap: 24px;
  }
  .privacy-points h3 {
    font-size: 11px;
  }
  .privacy-points p {
    font-size: 12px;
  }
  .privacy-points > div {
    gap: 13px;
  }
  .privacy-copy > p:last-child {
    font-size: 11px;
  }
  .privacy-icon {
    height: 36px;
    width: 36px;
  }
  .waitlist-inner h2 {
    font-size: 47px;
  }
  .faq-grid {
    gap: 35px;
    grid-template-columns: 1fr 1.35fr;
  }
}
@media (max-width: 680px) {
  html {
    scroll-padding-top: 22px;
  }
  .container {
    width: calc(100% - 40px);
  }
  .site-header {
    height: 83px;
  }
  .nav-wrap {
    gap: 20px;
  }
  .brand img {
    width: 112px;
  }
  .desktop-nav {
    display: none;
  }
  .button-small {
    font-size: 10px;
    gap: 12px;
    min-height: 38px;
    padding: 10px 13px;
  }
  .button-small .icon {
    height: 14px;
    width: 14px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 0;
    padding-top: 50px;
    padding-bottom: 0;
  }
  .hero-copy {
    padding: 0 0 10px;
    text-align: center;
  }
  .hero-eyebrow {
    justify-content: center;
    font-size: 8px;
    letter-spacing: 1.3px;
    margin-bottom: 22px;
  }
  .hero h1 {
    font-size: 84px;
    letter-spacing: -5.6px;
    line-height: 1.04;
  }
  .hero-description {
    font-size: 20px;
    margin-top: 23px;
    line-height: 1.5;
  }
  .hero-detail {
    max-width: 310px;
    margin: 15px auto 0;
    font-size: 12px;
  }
  .hero-actions {
    margin-top: 23px;
    align-items: center;
    gap: 16px;
  }
  .hero-actions .button {
    min-height: 52px;
    font-size: 12px;
    gap: 34px;
    padding-inline: 23px;
  }
  .text-link {
    font-size: 9px;
  }
  .invite-note {
    justify-content: center;
    font-size: 8px;
    margin-top: 21px;
  }
  .invite-note .icon {
    width: 13px;
    height: 13px;
  }
  .hero-world {
    margin: 13px auto -12px;
    height: 422px;
    width: 100%;
    transform: none;
    max-width: 450px;
  }
  .world-caption {
    top: 22px;
    left: 6%;
    right: 6%;
    font-size: 6px;
    letter-spacing: 1.5px;
  }
  .orbit-one {
    width: 190px;
    height: 190px;
  }
  .orbit-two {
    width: 300px;
    height: 300px;
  }
  .orbit-three {
    width: 405px;
    height: 405px;
  }
  .orbit {
    top: 51%;
    left: 50%;
  }
  .laundry-card {
    top: 67px;
    left: 0;
    width: 248px;
    gap: 8px;
    padding: 14px;
    border-radius: 9px;
  }
  .task-icon {
    height: 29px;
    width: 29px;
    border-radius: 7px;
  }
  .task-icon .icon {
    height: 16px;
    width: 16px;
  }
  .floating-card strong {
    font-size: 10px;
  }
  .card-detail {
    font-size: 7px;
  }
  .card-kicker {
    font-size: 5px;
    letter-spacing: 1px;
    margin-bottom: 5px;
  }
  .done-check {
    width: 14px;
    height: 14px;
  }
  .dinner-card {
    width: 191px;
    right: -1px;
    top: 161px;
    padding: 14px;
    border-radius: 9px;
  }
  .mini-card-header {
    margin-bottom: 12px;
  }
  .mini-status {
    font-size: 6px;
    padding: 4px 6px;
  }
  .dinner-card .card-detail {
    font-size: 6px;
  }
  .reservation-line {
    font-size: 6px;
    margin-top: 10px;
    padding-top: 8px;
  }
  .reservation-art {
    transform: scale(0.8);
    transform-origin: left center;
    margin-right: -6px;
  }
  .rex-core {
    top: 188px;
    left: 3%;
    width: 150px;
  }
  .rex-core > img {
    width: 132px;
    height: auto;
  }
  .core-orb {
    width: 14px;
    height: 14px;
    left: 115px;
    top: 27px;
  }
  .core-label {
    font-size: 5px;
    margin-top: 10px;
    letter-spacing: 2px;
  }
  .inbox-card {
    width: 234px;
    bottom: 77px;
    left: 2%;
    padding: 13px;
    gap: 8px;
    border-radius: 9px;
  }
  .inbox-card strong {
    font-size: 10px;
  }
  .inbox-card .card-detail {
    font-size: 6px;
  }
  .message-card {
    right: 1%;
    bottom: 15px;
    width: 282px;
    font-size: 8px;
    padding: 10px 12px;
    gap: 7px;
    border-radius: 8px;
  }
  .message-avatar {
    width: 22px;
    height: 22px;
    font-size: 6px;
  }
  .message-send {
    width: 20px;
    height: 20px;
  }
  .world-footnote {
    bottom: -8px;
    left: 6%;
    right: 4%;
    font-size: 6px;
  }
  .example-label {
    font-size: 5px;
  }
  .point-one {
    top: 37%;
    left: 11%;
  }
  .point-two {
    left: 87%;
    top: 77%;
  }
  .hero-bottom {
    margin-top: 47px;
    justify-content: center;
    flex-direction: column;
    gap: 17px;
    padding-top: 23px;
    padding-bottom: 25px;
    font-size: 8px;
  }
  .hero-bottom > span {
    font-size: 9px;
  }
  .hero-bottom > div {
    gap: 17px;
  }
  .hero-bottom .icon {
    width: 12px;
    height: 12px;
  }
  .hero-bottom > div > span {
    gap: 5px;
  }
  .possibilities {
    padding: 64px 0 46px;
  }
  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 23px;
    margin-bottom: 29px;
  }
  .eyebrow {
    font-size: 8px;
    letter-spacing: 1.4px;
  }
  .section-number {
    margin-right: 4px;
  }
  .section-heading h2 {
    font-size: 41px;
    letter-spacing: -2px;
    margin-top: 18px;
  }
  .section-heading-right {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 21px;
  }
  .section-heading-right > p {
    font-size: 12px;
    margin: 0;
  }
  .section-heading-right > p br {
    display: none;
  }
  .task-filter {
    align-self: flex-start;
  }
  .filter-button {
    font-size: 10px;
    padding: 9px 14px;
  }
  .task-grid,
  .task-grid.filtered {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .task-card {
    padding: 23px 23px 26px;
  }
  .category-label {
    font-size: 7px;
    letter-spacing: 1.1px;
  }
  .task-card-top > .icon {
    width: 15px;
    height: 15px;
  }
  .task-art {
    height: 217px;
    transform: none;
    width: 100%;
    margin: 10px 0 15px;
  }
  .task-card h3 {
    font-size: 21px;
    letter-spacing: -0.75px;
  }
  .task-card > p {
    font-size: 12px;
    line-height: 1.8;
    margin-top: 10px;
  }
  .task-card > p br {
    display: initial;
  }
  .laundry-ticket {
    height: 180px;
    transform: rotate(-9deg) translateX(-10px);
  }
  .art-badge {
    right: 16px;
    bottom: 15px;
    font-size: 9px;
  }
  .calendar-sheet {
    width: 244px;
    padding: 19px;
  }
  .calendar-heading {
    font-size: 10px;
  }
  .calendar-event {
    font-size: 9px;
  }
  .calendar-row {
    font-size: 7px;
  }
  .art-calendar .art-badge {
    right: 2px;
    bottom: 4px;
  }
  .dinner-reservation {
    right: 13px;
    bottom: 13px;
    width: 204px;
    padding: 17px 20px;
  }
  .dinner-reservation strong {
    font-size: 14px;
  }
  .dinner-plate {
    left: calc(50% - 90px);
    top: 7px;
    width: 148px;
    height: 148px;
  }
  .star-one {
    right: 29px;
  }
  .star-two {
    left: 22px;
    bottom: 41px;
  }
  .section-footnote {
    font-size: 9px;
    max-width: 260px;
    line-height: 1.7;
    margin: 24px auto 0;
  }
  .how-section {
    padding: 9px 0 65px;
  }
  .how-grid {
    grid-template-columns: 1fr;
    gap: 31px;
    padding-top: 55px;
  }
  .how-copy h2 {
    font-size: 39px;
    letter-spacing: -2px;
    margin-top: 18px;
  }
  .how-copy .section-description {
    font-size: 12px;
    margin-top: 18px;
  }
  .steps {
    margin-top: 20px;
  }
  .steps li {
    padding: 17px 0;
  }
  .steps h3 {
    font-size: 13px;
  }
  .steps p {
    font-size: 12px;
  }
  .demo-wrap {
    padding: 17px 14px 16px;
  }
  .demo-topline {
    font-size: 6px;
    justify-content: space-between;
    margin-bottom: 15px;
  }
  .demo-example {
    display: inline;
    font-size: 6px;
  }
  .conversation-header {
    padding: 17px;
  }
  .conversation-body {
    padding: 23px 15px;
    min-height: 336px;
  }
  .chat-user {
    font-size: 10px;
    max-width: 238px;
  }
  .chat-rex p {
    font-size: 10px;
    max-width: 260px;
  }
  .chat-result strong {
    font-size: 9px;
  }
  .chat-result > div > span {
    font-size: 8px;
  }
  .chat-result {
    padding: 13px 10px;
  }
  .chat-progress {
    font-size: 7px;
  }
  .conversation-end {
    font-size: 6px;
  }
  .scenario-tabs {
    gap: 5px;
    margin-top: 16px;
  }
  .scenario-tabs button {
    font-size: 9px;
    padding: 10px 12px;
  }
  .privacy-section {
    padding: 58px 0 59px;
  }
  .privacy-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .privacy-copy h2 {
    font-size: 35px;
    letter-spacing: -1.7px;
    margin-top: 18px;
  }
  .privacy-copy > p:last-child {
    font-size: 12px;
    margin-top: 18px;
  }
  .privacy-points {
    gap: 24px;
  }
  .privacy-points > div {
    gap: 14px;
  }
  .privacy-points h3 {
    font-size: 12px;
  }
  .privacy-points p {
    font-size: 12px;
  }
  .privacy-icon {
    width: 38px;
    height: 38px;
  }
  .waitlist-section {
    padding: 64px 0 66px;
  }
  .waitlist-symbol {
    margin-bottom: 23px;
  }
  .waitlist-inner .eyebrow {
    font-size: 6px;
    letter-spacing: 1.3px;
  }
  .waitlist-inner h2 {
    font-size: 36px;
    letter-spacing: -1.8px;
    margin-top: 19px;
    line-height: 1.17;
  }
  .waitlist-inner > p:not(.eyebrow) {
    font-size: 11px;
    max-width: 304px;
    margin: 20px auto 0;
  }
  .waitlist-inner > p:not(.eyebrow) br {
    display: none;
  }
  .waitlist-inner > .button {
    min-height: 54px;
    font-size: 12px;
    margin-top: 24px;
  }
  .waitlist-note {
    font-size: 7px;
    margin-top: 17px;
  }
  .waitlist-note > span {
    margin-inline: 4px;
  }
  .waitlist-section::before {
    width: 530px;
    height: 530px;
    top: 46px;
  }
  .waitlist-section::after {
    width: 680px;
    height: 680px;
    top: -27px;
  }
  .faq-section {
    padding: 49px 0 52px;
  }
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .faq-grid h2 {
    font-size: 33px;
    margin-top: 15px;
  }
  .faq-list summary {
    font-size: 13px;
    padding: 20px 0;
  }
  .faq-list details p {
    font-size: 12px;
  }
  .site-footer {
    padding-top: 31px;
  }
  .footer-top {
    gap: 20px;
    flex-wrap: wrap;
    padding-bottom: 26px;
  }
  .footer-top .brand img {
    width: 106px;
  }
  .footer-top > p {
    font-size: 9px;
  }
  .footer-back {
    font-size: 8px;
    gap: 9px;
  }
  .footer-bottom {
    font-size: 7px;
    gap: 12px;
    padding-block: 20px;
  }
  .footer-bottom > span:nth-child(2) {
    display: none;
  }
}
@media (max-width: 360px) {
  .container {
    width: calc(100% - 32px);
  }
  .hero h1 {
    font-size: 75px;
  }
  .hero-world {
    width: 108%;
    margin-left: -4%;
    transform: scale(0.92);
    margin-top: -1px;
    margin-bottom: -27px;
  }
  .hero-bottom > div {
    gap: 11px;
    font-size: 7px;
  }
  .task-card {
    padding-inline: 19px;
  }
  .privacy-copy h2 {
    font-size: 31px;
  }
  .waitlist-inner h2 {
    font-size: 32px;
  }
  .footer-top {
    gap: 16px;
  }
  .footer-back {
    gap: 6px;
  }
  .demo-example {
    display: none;
  }
  .demo-topline {
    justify-content: center;
  }
}
.waitlist-open {
  overflow: hidden;
}
.waitlist-dialog {
  width: min(590px, calc(100% - 32px));
  max-height: calc(100dvh - 40px);
  margin: auto;
  padding: 0;
  border: 1px solid #e1e5eb;
  border-radius: 20px;
  background: #fff;
  color: var(--charcoal);
  box-shadow: 0 32px 120px #0006;
  overscroll-behavior: contain;
}
.waitlist-dialog::backdrop {
  background: #070d16b8;
  backdrop-filter: blur(7px);
}
.signup-shell {
  padding: 25px 34px 0;
}
.signup-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 5px 0 18px;
}
.signup-topbar > img {
  width: 100px;
  height: auto;
}
.signup-close {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  background: #f3f5f8;
  border: 1px solid #e9ecf1;
  border-radius: 50%;
  color: #647186;
  transition: background 0.2s;
}
.signup-close:hover {
  background: #e8edf5;
  color: #0b1016;
}
.signup-close .icon {
  width: 18px;
  height: 18px;
}
.signup-eyebrow {
  margin-top: 11px;
  color: #5d6a7e;
  font-size: 8px;
  letter-spacing: 1.4px;
}
.waitlist-dialog h2 {
  margin-top: 15px;
  font-size: 36px;
  letter-spacing: -1.7px;
  line-height: 1.15;
}
.waitlist-dialog h2 > span {
  color: #687283;
}
.signup-description {
  margin-top: 12px;
  max-width: 410px;
  color: #647186;
  font-size: 13px;
  line-height: 1.7;
}
#waitlist-form {
  margin-top: 24px;
}
.signup-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 16px;
}
.signup-field {
  min-width: 0;
}
.signup-field-wide {
  grid-column: 1 / -1;
}
.signup-field label {
  display: flex;
  align-items: baseline;
  gap: 4px;
  color: #354256;
  font-size: 12px;
  font-weight: 550;
  margin-bottom: 8px;
}
.signup-field label > span {
  color: #687283;
  font-size: 11px;
}
.signup-field label > .field-optional {
  font-size: 10px;
  font-weight: 400;
  margin-left: auto;
}
.signup-field input,
.signup-field textarea {
  width: 100%;
  min-height: 45px;
  padding: 12px 13px;
  border: 1px solid #dce2ea;
  border-radius: 8px;
  background: #f8fafc;
  color: #0b1016;
  font: 13px/1.5 var(--font);
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.signup-field textarea {
  display: block;
  min-height: 88px;
  resize: vertical;
}
.signup-field input::placeholder,
.signup-field textarea::placeholder {
  color: #738093;
  opacity: 1;
}
.signup-field input:hover,
.signup-field textarea:hover {
  border-color: #aebed4;
}
.signup-field input:focus,
.signup-field textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: #fff;
  box-shadow: 0 0 0 3px #0b63ff14;
}
.signup-field input:user-invalid {
  border-color: #b74242;
}
.signup-honeypot {
  display: none;
}
.signup-submit {
  width: 100%;
  margin-top: 21px;
  min-height: 50px;
  padding: 14px 20px;
  justify-content: space-between;
}
.signup-submit:disabled {
  cursor: wait;
  background: #376cbf;
  transform: none;
  box-shadow: none;
}
.signup-submit:disabled .icon {
  opacity: 0.45;
}
.signup-note {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin: 13px 0 22px;
  font-size: 10px;
  line-height: 1.6;
  color: #647186;
}
.signup-note .icon {
  width: 12px;
  height: 12px;
}
.signup-error {
  border: 1px solid #eacaca;
  border-radius: 8px;
  background: #fff5f5;
  color: #973c3c;
  margin-top: 16px;
  padding: 12px 14px;
  font-size: 12px;
  line-height: 1.65;
}
.signup-bottomline {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  border-top: 1px solid #e9edf2;
  padding: 16px 0;
  color: #66758a;
  font-size: 9px;
}
.signup-success {
  text-align: center;
  padding: 20px 3px 34px;
}
.signup-success-icon {
  display: grid;
  place-items: center;
  margin: 5px auto 23px;
  width: 64px;
  height: 64px;
  border: 1px solid #cddfff;
  border-radius: 50%;
  color: var(--blue);
  background: #edf4ff;
  box-shadow: 0 0 0 9px #f7faff;
}
.signup-success-icon .icon {
  width: 29px;
  height: 29px;
}
.signup-success .eyebrow {
  justify-content: center;
  color: #647186;
  font-size: 8px;
}
.signup-success > h2 {
  margin-top: 17px;
}
.signup-success > p:not(.eyebrow) {
  max-width: 340px;
  margin: 16px auto 26px;
  color: #647186;
  font-size: 13px;
  line-height: 1.8;
}
.signup-success .button {
  font-size: 13px;
  min-height: 49px;
  padding-block: 14px;
}
.no-script-note {
  padding: 18px 24px;
  text-align: center;
  color: #bac8da;
  font-size: 13px;
}
@media (max-width: 480px) {
  .waitlist-dialog {
    width: calc(100% - 24px);
    max-height: calc(100dvh - 24px);
    border-radius: 15px;
  }
  .signup-shell {
    padding: 18px 22px 0;
  }
  .signup-topbar {
    padding-bottom: 17px;
  }
  .signup-topbar > img {
    width: 91px;
  }
  .waitlist-dialog h2 {
    font-size: 32px;
    letter-spacing: -1.4px;
  }
  .signup-description {
    font-size: 12px;
  }
  .signup-fields {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .signup-field input,
  .signup-field textarea {
    font-size: 16px;
    padding: 11px 12px;
  }
  .signup-field input::placeholder,
  .signup-field textarea::placeholder {
    font-size: 13px;
  }
  .signup-note {
    font-size: 9px;
  }
  .signup-bottomline {
    font-size: 8px;
  }
  .signup-success {
    padding-inline: 0;
  }
  .signup-success > h2 {
    font-size: 29px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  .button:hover,
  .task-card:hover {
    transform: none;
  }
}
