:root {
  --paper: #fcfcfa;
  --white: #fff;
  --ink: #1d1d1f;
  --muted: #69696e;
  --line: rgba(29, 29, 31, .1);
  --yellow: #ffd86f;
  --blue: #85cff2;
  --red: #ff8e78;
  --mint: #86dfc1;
  --lilac: #cab0ee;
  --display: "Fraunces", Georgia, serif;
  --body: "Sora", sans-serif;
  --mono: "DM Mono", monospace;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --wide: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

button,
input {
  font: inherit;
}

a {
  color: inherit;
}

.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;
}

.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px max(22px, calc((100vw - var(--wide)) / 2));
  background: rgba(252, 252, 250, .86);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: border-color .25s ease;
}

.nav.is-scrolled {
  border-color: var(--line);
}

.wordmark {
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -.02em;
  text-decoration: none;
}

.wordmark i {
  color: var(--red);
  font-weight: 500;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav__links > a {
  color: var(--muted);
  font-size: .82rem;
  font-weight: 500;
  text-decoration: none;
}

.nav__links .nav__cta {
  padding: 9px 16px;
  color: var(--white);
  background: var(--ink);
  border-radius: 999px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s ease;
}

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

.button--dark {
  color: var(--white);
  background: var(--ink);
}

.button--dark:hover {
  box-shadow: 0 12px 28px -12px rgba(29, 29, 31, .45);
}

.section-kicker,
.kicker {
  margin: 0 0 18px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .85s var(--ease), transform .85s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Hero */

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(560px, 1.18fr);
  align-items: center;
  gap: 52px;
  width: min(calc(100% - 44px), var(--wide));
  margin: 0 auto;
  padding: 132px 0 100px;
}

.hero__copy {
  position: relative;
  z-index: 2;
}

.hero h1 {
  margin: 0 0 28px;
  max-width: 10ch;
  font-family: var(--display);
  font-size: clamp(4rem, 6.4vw, 6.5rem);
  font-weight: 520;
  line-height: .94;
  letter-spacing: -.055em;
}

.hero h1 em {
  color: var(--red);
  font-weight: 480;
}

.hero__text {
  max-width: 34rem;
  margin: 0 0 32px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.text-link {
  color: var(--ink);
  font-size: .9rem;
  font-weight: 600;
  text-decoration: none;
}

.text-link span {
  display: inline-block;
  margin-left: 4px;
  color: var(--red);
  transition: transform .25s var(--ease);
}

.text-link:hover span {
  transform: translateY(3px);
}

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

.spark {
  position: absolute;
  z-index: 4;
  color: var(--yellow);
  font-size: 2.25rem;
  animation: twinkle 3s ease-in-out infinite;
}

.spark--one {
  top: 2%;
  right: 9%;
}

.spark--two {
  bottom: 17%;
  left: 1%;
  color: var(--lilac);
  font-size: 1.5rem;
  animation-delay: 1.1s;
}

.laptop {
  position: relative;
  width: min(100%, 680px);
  padding: 15px 15px 0;
  background: #29292c;
  border-radius: 22px 22px 10px 10px;
  box-shadow: 0 36px 80px -34px rgba(29, 29, 31, .38);
}

.laptop__camera {
  position: absolute;
  top: 6px;
  left: 50%;
  width: 4px;
  height: 4px;
  background: #777;
  border-radius: 50%;
}

.os {
  height: 430px;
  overflow: hidden;
  background: #f4f3ef;
  border-radius: 9px 9px 3px 3px;
}

.osbar {
  height: 32px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 22px;
  padding: 0 13px;
  color: #f7f7f5;
  background: #28282b;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: .08em;
}

.osbar__brand {
  color: var(--yellow);
}

.osbar__status i,
.app-demo__clock i {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 5px;
  background: var(--mint);
  border-radius: 50%;
}

.os__body {
  position: relative;
  height: calc(100% - 32px);
  display: grid;
  grid-template-columns: 48px 1fr;
}

.dock {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 14px 7px;
  background: rgba(255, 255, 255, .76);
  border-right: 1px solid var(--line);
}

.dock__item {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 500;
}

.dock__item--home { background: var(--yellow); }
.dock__item--mail { background: var(--blue); }
.dock__item--cal { background: var(--red); }
.dock__item--people { background: var(--mint); font-size: 5px; }
.dock__item--notes { background: var(--lilac); font-size: 12px; }

.desktop {
  padding: 24px;
}

.desktop__hello p {
  margin: 0 0 3px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: .11em;
}

.desktop__hello h2 {
  margin: 0;
  font-family: var(--display);
  font-size: 26px;
  font-weight: 550;
  letter-spacing: -.03em;
}

.desk-widgets {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 22px;
}

.mini-widget {
  min-height: 112px;
  padding: 14px;
  border-radius: 14px;
}

.mini-widget--mail {
  background: #eaf7fd;
}

.mini-widget--calendar {
  background: #fff4cf;
}

.mini-widget__label {
  display: block;
  margin-bottom: 22px;
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: .09em;
}

.mini-widget strong {
  display: block;
  font-family: var(--display);
  font-size: 14px;
}

.mini-widget small {
  color: var(--muted);
  font-size: 8px;
}

.incoming {
  position: absolute;
  right: 18px;
  bottom: 20px;
  left: 66px;
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 13px;
  color: var(--white);
  background: #2b2b2e;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 15px;
  box-shadow: 0 22px 40px -22px rgba(29, 29, 31, .8);
}

.incoming__avatar {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--blue);
  border-radius: 50%;
  font-family: var(--display);
  font-size: 20px;
}

.incoming span,
.incoming b {
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: .06em;
}

.incoming strong {
  display: block;
  margin-top: 2px;
  font-family: var(--display);
  font-size: 14px;
}

.incoming b {
  grid-column: 2 / 4;
  color: var(--yellow);
}

.incoming__wave,
.operator__wave {
  height: 22px;
  display: flex;
  align-items: center;
  gap: 3px;
}

.incoming__wave i,
.operator__wave i {
  width: 3px;
  height: 30%;
  background: var(--yellow);
  border-radius: 3px;
  animation: bars 1.1s ease-in-out infinite alternate;
}

.incoming__wave i:nth-child(2),
.operator__wave i:nth-child(2) { height: 75%; animation-delay: .15s; }
.incoming__wave i:nth-child(3),
.operator__wave i:nth-child(3) { height: 100%; animation-delay: .3s; }
.incoming__wave i:nth-child(4),
.operator__wave i:nth-child(4) { height: 55%; animation-delay: .45s; }
.incoming__wave i:nth-child(5),
.operator__wave i:nth-child(5) { height: 85%; animation-delay: .6s; }
.operator__wave i:nth-child(6) { height: 45%; animation-delay: .75s; }
.operator__wave i:nth-child(7) { height: 70%; animation-delay: .9s; }

.laptop__base {
  position: absolute;
  right: -28px;
  bottom: -17px;
  left: -28px;
  height: 19px;
  background: linear-gradient(#ddd, #aaa);
  border-radius: 3px 3px 14px 14px;
}

.desk-phone {
  position: absolute;
  z-index: 5;
  right: -25px;
  bottom: -24px;
  width: 315px;
  margin: 0;
  filter: drop-shadow(0 26px 24px rgba(29, 29, 31, .18));
}

.desk-phone img {
  display: block;
  width: 100%;
  animation: phone-ring 4.8s ease-in-out infinite;
  transform-origin: center 70%;
}

.phone-shake {
  transform-origin: 165px 180px;
  animation: phone-ring 4.8s ease-in-out infinite;
}

.phone-handset {
  transform-origin: 170px 73px;
  animation: handset-ring 4.8s ease-in-out infinite;
}

.desk-phone__ring {
  position: absolute;
  inset: 0;
  border: 2px solid var(--red);
  border-radius: 50%;
  opacity: 0;
  animation: ring-halo 4.8s ease-out infinite;
}

.hero__footnote {
  position: absolute;
  bottom: 35px;
  left: 50%;
  margin: 0;
  color: var(--muted);
  font-family: var(--display);
  font-size: 1.05rem;
  font-style: italic;
  transform: translateX(-50%);
}

.hero__footnote strong {
  color: var(--ink);
}

/* Manifesto */

.manifesto,
.reading-section,
.waitlist-section {
  padding: clamp(100px, 14vw, 190px) 24px;
  text-align: center;
}

.manifesto h2,
.reading-section h2,
.waitlist-section h2,
.section-heading h2,
.values-intro h2 {
  margin: 0 auto;
  font-family: var(--display);
  font-size: clamp(2.8rem, 6.5vw, 5.6rem);
  font-weight: 510;
  line-height: 1;
  letter-spacing: -.045em;
}

.manifesto h2 em,
.reading-section h2 em,
.section-heading h2 em,
.values-intro h2 em {
  color: var(--red);
  font-weight: 470;
}

.manifesto__copy,
.reading-section > p:last-of-type,
.waitlist-section > p,
.section-heading > p:last-child,
.values-intro > p:last-child {
  max-width: 620px;
  margin: 30px auto 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
}

.living-strip {
  width: min(100%, 980px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin: 64px auto 0;
  padding: 20px 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 24px 60px -36px rgba(29, 29, 31, .25);
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .06em;
}

.living-strip i {
  width: 7px;
  height: 7px;
  background: var(--red);
  border-radius: 50%;
}

.living-strip i:nth-of-type(2) { background: var(--blue); }
.living-strip i:nth-of-type(3) { background: var(--mint); }

/* The physical phone */

.phone-actions {
  width: min(calc(100% - 44px), var(--wide));
  margin: 0 auto;
  padding: 30px 0 clamp(100px, 12vw, 160px);
}

.phone-actions__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.phone-action {
  position: relative;
  overflow: hidden;
  min-height: 590px;
  padding: 22px 28px 32px;
  border-radius: 34px;
}

.phone-action--answer { background: #eaf7fd; }
.phone-action--keypad { background: #fff6d9; }
.phone-action--hold { background: #fff0ec; }

.phone-action img {
  display: block;
  width: min(100%, 340px);
  height: 350px;
  margin: -8px auto 8px;
  object-fit: contain;
  transition: transform .45s cubic-bezier(.2,.8,.2,1);
}

.phone-action:hover img {
  transform: translateY(-7px) rotate(-1deg);
}

.phone-action > span {
  display: block;
  margin-bottom: 13px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .09em;
}

.phone-action h3 {
  margin: 0 0 12px;
  font-family: var(--display);
  font-size: clamp(1.55rem, 2vw, 2.05rem);
  font-weight: 650;
  letter-spacing: -.035em;
}

.phone-action p {
  margin: 0;
  color: var(--muted);
  font-size: .93rem;
  line-height: 1.65;
}

/* App demo */

.desk-section,
.work-magic,
.tasks-section,
.story-section,
.values-section,
.alive-section,
.bridge-section,
.product-section {
  width: min(calc(100% - 44px), var(--wide));
  margin: 0 auto;
  padding: clamp(100px, 12vw, 160px) 0;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 60px;
}

.section-heading h2 {
  margin-left: 0;
  text-align: left;
}

.section-heading > p:last-child {
  margin-left: 0;
}

.app-demo {
  overflow: hidden;
  background: #f1f0ec;
  border: 10px solid #29292c;
  border-radius: 25px;
  box-shadow: 0 42px 90px -42px rgba(29, 29, 31, .35);
}

.app-demo__bar {
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  color: var(--white);
  background: #29292c;
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .08em;
}

.app-demo__clock {
  color: #d9d9d5;
}

.app-demo__shell {
  min-height: 590px;
  display: grid;
  grid-template-columns: 130px 1fr;
}

.app-tabs {
  padding: 20px 12px;
  background: rgba(255, 255, 255, .68);
  border-right: 1px solid var(--line);
}

.app-tab {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: 32px 1fr;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  padding: 9px;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-radius: 12px;
  font-size: .72rem;
  text-align: left;
  cursor: pointer;
}

.app-tab b {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--yellow);
  border-radius: 9px;
  font-family: var(--mono);
  font-size: .65rem;
}

.app-tab:nth-child(2) b { background: var(--blue); }
.app-tab:nth-child(3) b { background: var(--red); }
.app-tab:nth-child(4) b { background: var(--mint); font-size: .42rem; }
.app-tab:nth-child(5) b { background: var(--lilac); font-size: 1rem; }

.app-tab.is-active {
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 8px 20px -16px rgba(29, 29, 31, .4);
}

.app-tab em {
  position: absolute;
  right: 7px;
  width: 16px;
  height: 16px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--red);
  border-radius: 50%;
  font-size: .55rem;
  font-style: normal;
}

.app-panels {
  position: relative;
  padding: 52px;
}

.app-panel {
  display: none;
  animation: panel-in .45s var(--ease) both;
}

.app-panel.is-active {
  display: block;
}

.panel-heading > span {
  color: var(--muted);
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .1em;
}

.panel-heading h3 {
  margin: 8px 0 3px;
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 550;
  line-height: 1;
  letter-spacing: -.04em;
}

.panel-heading p {
  margin: 0;
  color: var(--muted);
}

.today-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 42px;
}

.task-card {
  min-height: 275px;
  display: flex;
  flex-direction: column;
  padding: 22px;
  border-radius: 20px;
}

.task-card--yellow { background: #fff2bd; }
.task-card--blue { background: #dff3fc; }
.task-card--mint { background: #dff8f0; }

.task-card > span,
.task-card > b {
  font-family: var(--mono);
  font-size: .62rem;
  letter-spacing: .07em;
}

.task-card h4 {
  margin: 38px 0 10px;
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 550;
  line-height: 1.05;
}

.task-card p {
  margin: 0;
  color: var(--muted);
  font-size: .85rem;
}

.task-card b {
  margin-top: auto;
}

.mail-list {
  margin-top: 36px;
}

.mail-list article {
  display: grid;
  grid-template-columns: 12px 150px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 20px 8px;
  border-top: 1px solid var(--line);
}

.mail-list article:last-child {
  border-bottom: 1px solid var(--line);
}

.mail-list span,
.mail-list strong {
  font-size: .78rem;
}

.mail-list small {
  display: block;
  color: var(--muted);
  font-size: .65rem;
}

.mail-dot {
  width: 8px;
  height: 8px;
  background: var(--muted);
  border-radius: 50%;
}

.mail-dot--red { background: var(--red); }
.mail-dot--blue { background: var(--blue); }

.calendar {
  position: relative;
  min-height: 340px;
  margin-top: 36px;
  background: repeating-linear-gradient(to right, transparent 0, transparent calc(12.5% - 1px), var(--line) calc(12.5% - 1px), var(--line) 12.5%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.calendar__times {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  padding-top: 8px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: .65rem;
  text-align: center;
}

.calendar__event {
  position: absolute;
  top: 76px;
  width: 22%;
  min-height: 105px;
  display: flex;
  flex-direction: column;
  padding: 15px;
  border-radius: 14px;
}

.calendar__event--work {
  left: 19%;
  background: #fff2bd;
}

.calendar__event--life {
  right: 3%;
  top: 190px;
  background: #dff8f0;
}

.calendar__event small,
.calendar__event span {
  font-family: var(--mono);
  font-size: .6rem;
}

.calendar__event strong {
  margin: 6px 0 auto;
  font-family: var(--display);
}

.directory {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 36px;
}

.directory article {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 250px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  text-align: center;
}

.directory article > span {
  align-self: flex-start;
  font-family: var(--mono);
  font-size: .65rem;
}

.mystery-face {
  width: 88px;
  height: 88px;
  display: grid;
  place-items: center;
  margin: 28px 0 18px;
  color: var(--muted);
  background: #efeeea;
  border-radius: 50%;
  font-family: var(--display);
  font-size: 2rem;
}

.directory article:nth-child(1) .mystery-face { background: #fff2bd; }
.directory article:nth-child(2) .mystery-face { background: #dff3fc; }
.directory .is-locked { opacity: .52; }

.directory strong {
  font-family: var(--display);
}

.directory small {
  margin-top: 5px;
  color: var(--muted);
  font-size: .65rem;
}

.note-paper {
  position: relative;
  width: min(100%, 560px);
  min-height: 340px;
  margin-top: 34px;
  padding: 38px 48px;
  background: repeating-linear-gradient(var(--white) 0, var(--white) 35px, rgba(133, 207, 242, .22) 36px);
  border: 1px solid var(--line);
  border-radius: 4px;
  box-shadow: 0 22px 55px -34px rgba(29, 29, 31, .3);
  transform: rotate(-1deg);
}

.note-paper p {
  margin: 0 0 14px;
  font-family: var(--mono);
}

.note-paper__secret {
  width: fit-content;
  margin-top: 42px !important;
  padding: 4px 8px;
  background: var(--yellow);
}

/* The work becomes a living story */

.tasks-section {
  padding-bottom: clamp(60px, 7vw, 90px);
}

.work-magic {
  position: relative;
  padding-top: clamp(60px, 7vw, 90px);
  padding-bottom: clamp(60px, 7vw, 90px);
}

.story-section {
  padding-top: clamp(60px, 7vw, 90px);
}

.spring-story {
  overflow: hidden;
  color: var(--white);
  background: #29292d;
  border-radius: 34px;
  box-shadow: 0 42px 90px -50px rgba(29, 29, 31, .65);
}

.spring-story__bar {
  min-height: 54px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  padding: 13px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  font-family: var(--mono);
  font-size: .61rem;
  letter-spacing: .08em;
}

.spring-story__bar b {
  color: var(--yellow);
  font-weight: 500;
}

.spring-story__bar i {
  justify-self: end;
  color: var(--mint);
  font-style: normal;
}

.spring-story__body {
  display: grid;
  grid-template-columns: .9fr 54px .9fr 1.2fr;
  align-items: center;
  gap: 22px;
  min-height: 430px;
  padding: 42px;
  background:
    radial-gradient(circle at 28% 45%, rgba(255, 216, 111, .1), transparent 28%),
    radial-gradient(circle at 78% 25%, rgba(133, 207, 242, .09), transparent 27%);
}

.spring-story__seed > span,
.spring-story__mess > span {
  display: block;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, .5);
  font-family: var(--mono);
  font-size: .58rem;
  letter-spacing: .09em;
}

.order-ticket {
  position: relative;
  min-height: 245px;
  padding: 25px;
  color: var(--ink);
  background: #fff9e9;
  border-radius: 5px;
  box-shadow: 0 20px 35px -25px #000;
  transform: rotate(-2deg);
}

.order-ticket::before,
.order-ticket::after {
  position: absolute;
  top: -7px;
  width: 56px;
  height: 18px;
  content: "";
  background: rgba(202, 176, 238, .58);
}

.order-ticket::before { left: 15px; transform: rotate(-7deg); }
.order-ticket::after { right: 15px; transform: rotate(7deg); }

.order-ticket small,
.order-ticket b {
  display: block;
  font-family: var(--mono);
  font-size: .57rem;
  letter-spacing: .06em;
}

.order-ticket strong {
  display: block;
  margin-top: 20px;
  font-family: var(--display);
  font-size: 4.5rem;
  line-height: .9;
}

.order-ticket p {
  margin: 4px 0 24px;
  font-family: var(--display);
  font-size: 1.2rem;
}

.order-ticket b {
  width: fit-content;
  padding: 5px 8px;
  color: #23644f;
  background: rgba(134, 223, 193, .5);
}

.spring-story__turn {
  text-align: center;
}

.spring-story__turn span {
  display: block;
  color: var(--red);
  font-family: var(--mono);
  font-size: .58rem;
  letter-spacing: .08em;
  transform: rotate(-8deg);
}

.spring-story__turn b {
  font-family: var(--display);
  font-size: 2.5rem;
  font-weight: 450;
}

.spring-crate {
  position: relative;
  min-height: 230px;
  padding: 35px 18px 20px;
  overflow: hidden;
  color: var(--ink);
  background: #d9a46f;
  border: 4px solid #1d1d1f;
  border-radius: 8px;
  box-shadow: inset 0 0 0 7px rgba(255, 255, 255, .14);
  transform: rotate(1.5deg);
}

.spring-crate::before,
.spring-crate::after {
  position: absolute;
  right: -12px;
  left: -12px;
  height: 13px;
  content: "";
  background: #a66e42;
  border: 3px solid var(--ink);
  transform: rotate(-9deg);
}

.spring-crate::before { top: 35px; }
.spring-crate::after { bottom: 35px; transform: rotate(8deg); }

.spring-crate strong,
.spring-crate small {
  position: relative;
  z-index: 2;
  display: block;
  text-align: center;
}

.spring-crate strong {
  margin-top: 40px;
  font-family: var(--display);
  font-size: 4.8rem;
  line-height: .9;
}

.spring-crate small {
  font-family: var(--mono);
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .08em;
}

.spring-coil {
  position: absolute;
  z-index: 3;
  width: 48px;
  height: 26px;
  border: 5px solid #dedede;
  border-right-color: #777;
  border-left-color: #777;
  border-radius: 50%;
  box-shadow: inset 0 0 0 3px #555;
}

.spring-coil--1 { top: 4px; left: 17px; transform: rotate(-20deg); }
.spring-coil--2 { top: 13px; right: 12px; transform: rotate(18deg); }
.spring-coil--3 { bottom: 7px; left: 35px; transform: rotate(12deg); }
.spring-coil--4 { right: 28px; bottom: 4px; transform: rotate(-12deg); }

.spring-story__mess > em {
  display: block;
  margin-top: 14px;
  color: var(--yellow);
  font-family: var(--display);
  font-size: .92rem;
  text-align: center;
}

.spring-story__calls {
  display: grid;
  gap: 12px;
}

.story-call {
  padding: 17px 18px;
  color: var(--ink);
  background: var(--white);
  border-radius: 15px;
  box-shadow: 0 12px 26px -20px #000;
}

.story-call--beep { margin-right: 18px; background: #e8f8f3; transform: rotate(-1deg); }
.story-call--boss { margin-left: 14px; background: #fff0ec; transform: rotate(1deg); }
.story-call--mail { margin-right: 26px; background: #fff7d8; transform: rotate(-.5deg); }

.story-call span {
  color: var(--muted);
  font-family: var(--mono);
  font-size: .56rem;
  letter-spacing: .07em;
}

.story-call p {
  margin: 7px 0 0;
  font-family: var(--display);
  font-size: 1rem;
  line-height: 1.45;
}

.spring-story__choice {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  align-items: center;
  gap: 40px;
  padding: 25px 42px 28px;
  color: var(--ink);
  background: var(--yellow);
}

.spring-story__choice span {
  display: block;
  font-family: var(--mono);
  font-size: .58rem;
  letter-spacing: .08em;
}

.spring-story__choice strong {
  display: block;
  margin-top: 3px;
  font-family: var(--display);
  font-size: 1.45rem;
}

.spring-story__choice p {
  margin: 0;
  font-size: .82rem;
  line-height: 1.65;
}

/* Job sampler */

.task-machine {
  overflow: hidden;
  background: #f1f0ec;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 36px 80px -48px rgba(29, 29, 31, .35);
}

.task-machine__tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.task-kind {
  min-height: 64px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-right: 1px solid var(--line);
  font-size: .72rem;
  text-align: left;
  cursor: pointer;
}

.task-kind:last-child {
  border-right: 0;
}

.task-kind span {
  color: var(--muted);
  font-family: var(--mono);
  font-size: .62rem;
}

.task-kind.is-active {
  color: var(--ink);
  background: #fff8d9;
  box-shadow: inset 0 -3px var(--yellow);
}

.task-screen {
  min-height: 570px;
  padding: 34px;
}

.task-scene {
  display: none;
  animation: panel-in .45s var(--ease) both;
}

.task-scene.is-active {
  display: block;
}

.task-screen__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 24px;
}

.task-screen__head span,
.task-screen__head > b,
.stockroom > span,
.order-slip > span,
.job-call > span,
.call-card > span,
.email-job aside > span,
.fax-form > span {
  font-family: var(--mono);
  font-size: .62rem;
  letter-spacing: .08em;
}

.task-screen__head h3 {
  margin: 5px 0 0;
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 550;
  line-height: 1;
}

.task-screen__head > b {
  padding: 6px 10px;
  color: #347a65;
  background: #dff8f0;
  border-radius: 999px;
}

.inventory-job {
  display: grid;
  grid-template-columns: .9fr 1.15fr .95fr;
  gap: 14px;
}

.job-call,
.stockroom,
.order-slip,
.call-card,
.email-job aside,
.compose,
.fax-form,
.fax-send {
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 17px;
}

.job-call {
  display: flex;
  flex-direction: column;
  color: var(--white);
  background: #28282b;
}

.job-call > span {
  color: var(--yellow);
}

.job-call p {
  margin: 58px 0 24px;
  font-family: var(--display);
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.35;
}

.job-call small {
  margin-top: auto;
  color: rgba(255, 255, 255, .48);
  font-size: .67rem;
}

.stockroom {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stockroom > span,
.order-slip > span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
}

.stockroom button {
  display: grid;
  grid-template-columns: 46px 1fr;
  grid-template-rows: 1fr 1fr;
  align-items: center;
  gap: 0 12px;
  padding: 10px;
  background: #f7f6f3;
  border: 1px solid transparent;
  border-radius: 11px;
  text-align: left;
  cursor: pointer;
}

.stockroom button:first-of-type {
  background: #fff6d1;
  border-color: var(--yellow);
}

.stockroom button strong {
  align-self: end;
  font-family: var(--display);
  font-size: .9rem;
}

.stockroom button small {
  align-self: start;
  color: var(--muted);
  font-family: var(--mono);
  font-size: .55rem;
}

.part {
  grid-row: 1 / 3;
  width: 40px;
  height: 40px;
  display: block;
  background: repeating-linear-gradient(90deg, transparent 0 4px, #777 4px 7px);
  border: 2px solid #777;
  border-radius: 8px;
  transform: rotate(-10deg) scale(.65);
}

.part--big {
  transform: rotate(-10deg) scale(.85);
}

.part--washer {
  background: #aaa;
  border: 10px solid #777;
  border-radius: 50%;
  transform: scale(.68);
}

.order-slip {
  background: #e8f6fc;
}

.order-slip > div:not(.tiny-keypad) {
  padding: 12px 0;
  border-top: 1px solid var(--line);
}

.order-slip small,
.order-slip strong {
  display: block;
}

.order-slip small {
  color: var(--muted);
  font-family: var(--mono);
  font-size: .55rem;
}

.order-slip strong {
  font-family: var(--display);
}

.order-slip__qty {
  font-size: 1.8rem;
}

.order-slip p {
  margin: 12px 0;
  color: var(--muted);
  font-size: .7rem;
}

.tiny-keypad {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
}

.tiny-keypad i {
  height: 23px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .75);
  border: 1px solid var(--line);
  border-radius: 5px;
  font-family: var(--mono);
  font-size: .55rem;
  font-style: normal;
}

.tiny-keypad i:last-child {
  color: var(--white);
  background: var(--red);
}

.switchboard-job {
  display: grid;
  grid-template-columns: 1fr 170px 1fr;
  gap: 18px;
  align-items: center;
}

.call-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
}

.call-card--active {
  color: var(--white);
  background: #29292c;
}

.call-card--active > span {
  color: var(--mint);
}

.call-card--waiting {
  background: #fff3ef;
  border-color: rgba(255, 142, 120, .48);
}

.call-card strong {
  margin-top: 76px;
  font-family: var(--display);
  font-size: 1.5rem;
}

.call-card p {
  margin: 10px 0;
  color: var(--muted);
  font-family: var(--display);
  font-style: italic;
}

.call-card--active p {
  color: rgba(255, 255, 255, .65);
}

.call-card small {
  margin-top: auto;
  color: var(--muted);
  font-size: .68rem;
}

.call-wave {
  height: 34px;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: auto;
}

.call-wave i {
  width: 4px;
  height: 30%;
  background: var(--mint);
  border-radius: 3px;
  animation: bars 1s ease-in-out infinite alternate;
}

.call-wave i:nth-child(2) { height: 80%; animation-delay: .15s; }
.call-wave i:nth-child(3) { height: 55%; animation-delay: .3s; }
.call-wave i:nth-child(4) { height: 100%; animation-delay: .45s; }
.call-wave i:nth-child(5) { height: 45%; animation-delay: .6s; }

.switchboard-controls {
  display: grid;
  gap: 10px;
  text-align: center;
}

.switchboard-controls button {
  min-height: 44px;
  padding: 8px;
  background: var(--yellow);
  border: 0;
  border-radius: 10px;
  font-family: var(--mono);
  font-size: .6rem;
  font-weight: 500;
}

.switchboard-controls__answer {
  background: var(--mint) !important;
}

.switchboard-controls span {
  color: var(--muted);
  font-family: var(--mono);
  font-size: .55rem;
}

.email-job,
.fax-job {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 16px;
}

.email-job aside {
  min-height: 350px;
  background: #fff6d1;
}

.email-job aside p {
  margin: 70px 0 18px;
  font-family: var(--display);
  font-size: 1.2rem;
  line-height: 1.35;
}

.email-job aside small {
  color: var(--muted);
}

.compose {
  padding: 0;
  overflow: hidden;
}

.compose label {
  display: flex;
  gap: 22px;
  padding: 12px 18px;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  font-family: var(--mono);
  font-size: .62rem;
}

.compose label strong {
  color: var(--ink);
}

.compose__body {
  min-height: 220px;
  padding: 24px;
  font-family: var(--mono);
  font-size: .8rem;
  line-height: 1.65;
}

.compose__body mark {
  padding: 2px 4px;
  background: var(--yellow);
}

.compose button,
.fax-send button {
  display: block;
  margin: 0 18px 18px auto;
  padding: 10px 17px;
  color: var(--white);
  background: var(--ink);
  border: 0;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: .65rem;
}

.fax-form {
  min-height: 380px;
}

.fax-form label {
  display: block;
  margin-top: 15px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: .58rem;
}

.fax-form input {
  width: 100%;
  margin-top: 5px;
  padding: 9px 10px;
  color: var(--ink);
  background: #f6f5f2;
  border: 1px solid var(--line);
  border-radius: 7px;
  font-family: var(--mono);
  font-size: .7rem;
}

.fax-send {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #e8f6fc;
}

.fax-paper {
  width: 160px;
  height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 14px 26px -18px rgba(29, 29, 31, .4);
  font-family: var(--mono);
  font-size: .62rem;
  transform: rotate(-2deg);
}

.fax-paper strong {
  color: #347a65;
}

.fax-send button {
  margin: 22px 0 12px;
}

.fax-send p {
  max-width: 290px;
  margin: 0;
  color: var(--muted);
  font-family: var(--display);
  font-size: .9rem;
  font-style: italic;
  text-align: center;
}

.task-machine__foot {
  display: flex;
  justify-content: center;
  gap: 12px 26px;
  flex-wrap: wrap;
  padding: 16px 22px;
  color: var(--muted);
  background: var(--white);
  border-top: 1px solid var(--line);
  font-family: var(--mono);
  font-size: .6rem;
}

/* Child-scale job screens: one prompt, one action */

.simple-task {
  display: grid;
  gap: 20px;
}

.simple-call {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 22px;
  color: var(--white);
  background: #29292c;
  border-radius: 18px;
}

.simple-call__badge {
  flex: 0 0 auto;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--yellow);
  border-radius: 50%;
  font-size: 1.45rem;
}

.simple-call small {
  color: var(--mint);
  font-family: var(--mono);
  font-size: .62rem;
  letter-spacing: .08em;
}

.simple-call p {
  margin: 4px 0 0;
  font-family: var(--display);
  font-size: 1.4rem;
  font-style: italic;
}

.simple-call p strong {
  color: var(--yellow);
}

.big-choices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.big-choice {
  position: relative;
  min-height: 190px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px;
  color: var(--ink);
  background: var(--white);
  border: 3px solid transparent;
  border-radius: 20px;
  cursor: pointer;
  transition: transform .2s var(--ease), border-color .2s ease;
}

.big-choice:hover {
  transform: translateY(-3px);
}

.big-choice.is-chosen {
  background: #fff8d9;
  border-color: var(--yellow);
}

.big-choice .part {
  width: 62px;
  height: 62px;
}

.big-choice strong {
  font-family: var(--display);
  font-size: 1.25rem;
  line-height: 1.05;
}

.big-choice > span {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: #328c6d;
  border-radius: 50%;
}

.simple-next,
.one-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 20px;
  background: #dff8f0;
  border-radius: 15px;
}

.simple-next > span {
  color: #347a65;
  font-family: var(--mono);
  font-size: .66rem;
  font-weight: 500;
  letter-spacing: .08em;
}

.simple-next p,
.one-action p {
  margin: 0;
  font-size: .9rem;
}

.simple-next p strong {
  display: inline-grid;
  place-items: center;
  width: 29px;
  height: 29px;
  margin: 0 2px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.two-lines {
  display: grid;
  grid-template-columns: 1fr 72px 1fr;
  align-items: center;
  gap: 18px;
}

.two-lines article {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 26px;
  color: var(--white);
  background: #29292c;
  border-radius: 20px;
}

.two-lines article.is-ringing {
  color: var(--ink);
  background: #fff0eb;
  border: 3px solid var(--red);
  animation: soft-ring 1.8s ease-in-out infinite;
}

.two-lines article > span,
.two-lines article small {
  font-family: var(--mono);
  font-size: .62rem;
  letter-spacing: .07em;
}

.two-lines article > span {
  opacity: .58;
}

.two-lines article strong {
  margin: 16px 0;
  font-family: var(--display);
  font-size: 1.7rem;
}

.two-lines article small {
  color: var(--mint);
}

.two-lines .is-ringing small {
  color: #b54d39;
}

.two-lines__ring {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--yellow);
  border-radius: 50%;
  font-size: 1.7rem;
}

.one-action {
  background: var(--white);
  border: 1px solid var(--line);
}

.one-action button {
  min-width: 220px;
  min-height: 56px;
  padding: 12px 20px;
  color: var(--white);
  background: var(--ink);
  border: 0;
  border-radius: 14px;
  font-family: var(--mono);
  font-size: .7rem;
  font-weight: 500;
}

.one-action small {
  color: var(--muted);
  font-family: var(--display);
  font-style: italic;
}

.simple-compose {
  min-height: 300px;
  padding: 28px 34px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.simple-compose > span {
  display: block;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-family: var(--mono);
  font-size: .64rem;
  letter-spacing: .08em;
}

.simple-compose label {
  display: block;
  margin-top: 24px;
  font-family: var(--mono);
  font-size: .85rem;
  line-height: 1.7;
}

.simple-compose__line {
  margin: 26px 0;
  font-family: var(--mono);
  font-size: 1rem;
}

.simple-compose__line mark {
  padding: 4px 7px;
  background: var(--yellow);
  border-radius: 4px;
}

.one-blank {
  min-height: 290px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  text-align: center;
}

.one-blank > span,
.one-blank label {
  font-family: var(--mono);
  font-size: .62rem;
  letter-spacing: .08em;
}

.one-blank label {
  margin: 38px 0 8px;
  color: var(--muted);
}

.one-blank strong {
  width: min(100%, 260px);
  padding: 12px;
  background: #fff8d9;
  border: 3px solid var(--yellow);
  border-radius: 12px;
  font-family: var(--display);
  font-size: 2.8rem;
}

.one-blank small {
  margin-top: 16px;
  color: var(--muted);
}

@keyframes soft-ring {
  0%, 100% { transform: rotate(0); }
  15% { transform: rotate(-.6deg); }
  30% { transform: rotate(.6deg); }
  45% { transform: rotate(0); }
}

/* Stories and values */

.story-section {
  overflow: hidden;
}

.story-path {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 16px;
}

.story-path article {
  min-width: 0;
}

.story-path__day {
  color: var(--muted);
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .1em;
}

.story-path__icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  margin: 16px 0 22px;
  background: var(--yellow);
  border-radius: 18px;
  font-family: var(--display);
  font-size: 1.65rem;
}

.story-path__icon--desk { background: var(--blue); }
.story-path__icon--choice { background: var(--red); }
.story-path__icon--party { background: var(--mint); }

.story-path h3 {
  margin: 0 0 10px;
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 550;
  line-height: 1.1;
}

.story-path p {
  margin: 0;
  color: var(--muted);
  font-size: .86rem;
}

.story-path__join {
  padding-top: 61px;
  color: var(--muted);
}

.story-section__close {
  margin: 70px 0 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-family: var(--display);
  font-size: 1.35rem;
  font-style: italic;
}

.story-section__close strong {
  color: var(--red);
  font-weight: 500;
}

/* Seasons */

.seasons-section {
  padding: clamp(110px, 14vw, 190px) max(22px, calc((100vw - var(--wide)) / 2));
  background: #f3f1ed;
}

.seasons-section__heading {
  max-width: 820px;
}

.seasons-section__heading h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  font-weight: 510;
  line-height: 1;
  letter-spacing: -.045em;
}

.seasons-section__heading h2 em {
  color: var(--red);
  font-weight: 470;
}

.seasons-section__heading > p:last-child {
  max-width: 650px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.season-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 80px;
}

.season-line::before {
  content: "";
  position: absolute;
  top: 43px;
  right: 0;
  left: 0;
  height: 1px;
  background: rgba(29, 29, 31, .18);
}

.season {
  position: relative;
  padding-right: 32px;
}

.season__number,
.season small {
  display: block;
  color: var(--muted);
  font-family: var(--mono);
  font-size: .62rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.season > i {
  position: relative;
  z-index: 1;
  width: 15px;
  height: 15px;
  display: block;
  margin: 29px 0 30px;
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: 50%;
}

.season.is-now > i {
  background: var(--red);
  border-color: var(--red);
  box-shadow: 0 0 0 7px rgba(255, 142, 120, .2);
}

.season:nth-child(2) > i { border-color: #3d9bc6; }
.season:nth-child(3) > i { border-color: #3f9d7d; }
.season--future > i { border-color: var(--lilac); border-style: dashed; }

.season h3 {
  margin: 8px 0 10px;
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 550;
  line-height: 1.05;
}

.season p {
  margin: 0;
  color: var(--muted);
  font-size: .82rem;
}

.season-keepsake {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 28px;
  align-items: center;
  margin-top: 75px;
  padding: 26px 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 24px 60px -40px rgba(29, 29, 31, .3);
}

.season-keepsake > span {
  font-family: var(--mono);
  font-size: .62rem;
  letter-spacing: .1em;
}

.season-keepsake p {
  margin: 0;
  font-family: var(--display);
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.35;
}

.season-keepsake strong {
  color: var(--red);
  font-weight: 550;
}

.away-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-top: 18px;
  padding: clamp(28px, 4vw, 46px);
  background: #e7f6fc;
  border-radius: 24px;
}

.away-card__copy > span,
.away-card__call span,
.away-card__stamp span,
.away-card__stamp small {
  font-family: var(--mono);
  font-size: .6rem;
  letter-spacing: .09em;
}

.away-card__copy > span {
  color: #277ca3;
}

.away-card__copy h3 {
  margin: 12px 0;
  font-family: var(--display);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 520;
  line-height: 1;
  letter-spacing: -.035em;
}

.away-card__copy p {
  margin: 0 0 18px;
  color: var(--muted);
}

.away-card__copy small {
  display: block;
  padding-top: 16px;
  color: var(--muted);
  border-top: 1px solid rgba(29, 29, 31, .1);
  font-size: .68rem;
  line-height: 1.55;
}

.away-card__status {
  display: grid;
  gap: 12px;
}

.away-card__call,
.away-card__stamp {
  padding: 18px;
  background: rgba(255, 255, 255, .8);
  border: 1px solid rgba(29, 29, 31, .08);
  border-radius: 14px;
}

.away-card__call span {
  color: var(--muted);
}

.away-card__call p {
  margin: 10px 0 0;
  font-family: var(--display);
  font-size: 1rem;
  font-style: italic;
  line-height: 1.35;
}

.away-card__stamp {
  position: relative;
  overflow: hidden;
  background: #fff7d8;
  border-color: rgba(255, 216, 111, .8);
}

.away-card__stamp::after {
  content: "APPROVED";
  position: absolute;
  right: -13px;
  bottom: 5px;
  padding: 3px 11px;
  color: rgba(212, 91, 66, .62);
  border: 2px solid rgba(212, 91, 66, .42);
  font-family: var(--mono);
  font-size: .55rem;
  letter-spacing: .08em;
  transform: rotate(-8deg);
}

.away-card__stamp span,
.away-card__stamp strong,
.away-card__stamp small {
  display: block;
}

.away-card__stamp strong {
  margin: 9px 0 14px;
  font-family: var(--display);
  font-size: 1.15rem;
}

.away-card__stamp small {
  max-width: calc(100% - 74px);
  color: var(--muted);
}

.values-section {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 90px;
}

.values-intro {
  position: sticky;
  top: 130px;
  align-self: start;
}

.values-intro h2 {
  font-size: clamp(2.8rem, 4.5vw, 4.4rem);
}

.value-lines article {
  display: grid;
  grid-template-columns: 50px 1fr;
  padding: 34px 0;
  border-top: 1px solid var(--line);
}

.value-lines article:last-child {
  border-bottom: 1px solid var(--line);
}

.value-lines span {
  color: var(--muted);
  font-family: var(--mono);
  font-size: .7rem;
}

.value-lines h3 {
  margin: 0 0 10px;
  font-family: var(--display);
  font-size: 1.8rem;
  font-weight: 550;
}

.value-lines p {
  grid-column: 2;
  margin: 0;
  color: var(--muted);
}

/* AI behavior */

.alive-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.alive-copy h2,
.bridge-card h2,
.product-section__copy h2 {
  margin: 0 0 24px;
  font-family: var(--display);
  font-size: clamp(2.5rem, 4.7vw, 4.4rem);
  font-weight: 520;
  line-height: 1;
  letter-spacing: -.04em;
}

.alive-copy > p:not(.section-kicker) {
  color: var(--muted);
  font-size: 1.05rem;
}

.alive-copy__last {
  margin-top: 28px;
  font-family: var(--display);
  font-size: 1.2rem !important;
  font-style: italic;
}

.alive-copy__last strong {
  color: var(--ink);
  font-weight: 550;
}

.call-log {
  padding: 12px 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 32px 70px -42px rgba(29, 29, 31, .35);
}

.call-log__top {
  display: flex;
  justify-content: space-between;
  padding: 14px 0 20px;
  font-family: var(--mono);
  font-size: .65rem;
  letter-spacing: .08em;
}

.call-log__top b {
  color: #35866c;
}

.call-log article {
  display: grid;
  grid-template-columns: 48px 10px 1fr;
  align-items: center;
  gap: 12px;
  padding: 19px 0;
  border-top: 1px solid var(--line);
}

.call-log time {
  color: var(--muted);
  font-family: var(--mono);
  font-size: .7rem;
}

.call-dot {
  width: 8px;
  height: 8px;
  background: var(--muted);
  border-radius: 50%;
}

.call-dot--yellow { background: var(--yellow); }
.call-dot--blue { background: var(--blue); }
.call-dot--red { background: var(--red); }

.call-log strong,
.call-log span {
  display: block;
  font-size: .85rem;
}

.call-log span {
  color: var(--muted);
  font-size: .72rem;
}

.live-context {
  padding: 14px 24px 24px;
  background: #252528;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 22px;
  box-shadow: 0 34px 74px -40px rgba(29, 29, 31, .7);
}

.live-context__top {
  display: flex;
  justify-content: space-between;
  padding: 10px 0 18px;
  color: rgba(255, 255, 255, .62);
  font-family: var(--mono);
  font-size: .62rem;
  letter-spacing: .08em;
}

.live-context__top b {
  color: var(--mint);
  font-weight: 500;
}

.live-context__top b i {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 5px;
  background: var(--mint);
  border-radius: 50%;
  animation: live-pulse 1.6s ease-in-out infinite;
}

.live-context dl {
  margin: 0;
}

.live-context dl > div {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, .09);
}

.live-context dt,
.live-context dd {
  margin: 0;
}

.live-context dt {
  color: rgba(255, 255, 255, .42);
  font-family: var(--mono);
  font-size: .6rem;
  letter-spacing: .08em;
}

.live-context dd {
  color: rgba(255, 255, 255, .8);
  font-size: .78rem;
}

.live-context__reply {
  margin: 18px 0 14px;
  padding: 17px;
  background: var(--yellow);
  border-radius: 14px;
}

.live-context__reply span {
  font-family: var(--mono);
  font-size: .58rem;
  letter-spacing: .07em;
}

.live-context__reply p {
  margin: 8px 0 0;
  font-family: var(--display);
  font-size: 1.12rem;
  font-style: italic;
  line-height: 1.3;
}

.live-context > small {
  display: block;
  color: rgba(255, 255, 255, .42);
  font-size: .62rem;
  line-height: 1.45;
}

@keyframes live-pulse {
  0%, 100% { opacity: .35; transform: scale(.8); }
  50% { opacity: 1; transform: scale(1.15); }
}

/* Real-life and parent bridge */

.bridge-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
}

.bridge-card {
  display: flex;
  flex-direction: column;
  padding: clamp(30px, 4vw, 54px);
  border-radius: 30px;
}

.bridge-card--life {
  background: #e6f7fd;
}

.bridge-card--parent {
  background: #f2ebfb;
}

.bridge-card h2 {
  font-size: clamp(2.3rem, 3.8vw, 3.6rem);
}

.bridge-card > p:not(.section-kicker) {
  margin: 0;
  color: var(--muted);
}

.operator,
.parent-panel {
  margin-top: 42px;
  padding: 22px;
  background: rgba(255, 255, 255, .76);
  border: 1px solid rgba(29, 29, 31, .08);
  border-radius: 20px;
}

.operator {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px 18px;
  align-items: center;
}

.operator__button {
  grid-column: 1 / 3;
  color: var(--muted);
  font-family: var(--mono);
  font-size: .62rem;
  letter-spacing: .08em;
}

.operator__wave i {
  background: #318fb8;
}

.operator strong {
  font-family: var(--display);
  font-size: 1.05rem;
  font-style: italic;
}

.operator small {
  grid-column: 1 / 3;
  color: #347a65;
  font-family: var(--mono);
  font-size: .6rem;
}

.parent-panel__row {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: .76rem;
}

.parent-panel__row span,
.parent-panel__row b,
.parent-panel__alert span,
.parent-panel__alert small {
  font-family: var(--mono);
  font-size: .6rem;
  letter-spacing: .05em;
}

.parent-panel__row b {
  padding: 4px 8px;
  color: #347a65;
  background: #dff8f0;
  border-radius: 999px;
}

.nudge-flow {
  padding: 18px 0 4px;
}

.nudge-flow__admin,
.nudge-flow__world,
.whisper-box {
  padding: 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.nudge-flow__admin span,
.nudge-flow__world span,
.whisper-box span {
  display: block;
  color: var(--muted);
  font-family: var(--mono);
  font-size: .58rem;
  letter-spacing: .08em;
}

.nudge-flow__admin strong,
.nudge-flow__admin small,
.nudge-flow__admin b {
  display: block;
}

.nudge-flow__admin strong {
  margin-top: 7px;
  font-family: var(--display);
  font-size: 1rem;
}

.nudge-flow__admin small {
  margin: 2px 0 12px;
  color: var(--muted);
  font-size: .66rem;
}

.nudge-flow__admin b {
  width: fit-content;
  padding: 5px 9px;
  color: var(--white);
  background: var(--ink);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: .55rem;
  letter-spacing: .05em;
}

.nudge-flow__arrow {
  height: 28px;
  display: grid;
  place-items: center;
  color: var(--muted);
  font-family: var(--mono);
}

.nudge-flow__world {
  background: #fff8d9;
  border-color: rgba(255, 216, 111, .8);
}

.nudge-flow__world p {
  margin: 8px 0 0;
  font-family: var(--display);
  font-size: .9rem;
  font-style: italic;
  line-height: 1.35;
}

.whisper-box {
  margin-top: 14px;
  background: #f7f2fc;
  border-style: dashed;
}

.whisper-box p {
  margin: 7px 0 4px;
  font-family: var(--display);
  font-size: .88rem;
  font-style: italic;
}

.whisper-box small {
  display: block;
  color: var(--muted);
  font-size: .62rem;
}

.parent-panel__alert {
  margin-top: 20px;
  padding: 16px;
  background: #fff3ef;
  border-left: 4px solid var(--red);
  border-radius: 10px;
}

.parent-panel__alert span,
.parent-panel__alert strong,
.parent-panel__alert small {
  display: block;
}

.parent-panel__alert strong {
  margin: 8px 0 12px;
  font-family: var(--display);
  line-height: 1.2;
}

.parent-panel__alert small {
  color: var(--muted);
}

/* Real-world missions */

.missions-section {
  width: min(calc(100% - 44px), var(--wide));
  margin: 0 auto;
  padding: clamp(100px, 12vw, 160px) 0;
}

.missions-section__intro {
  max-width: 860px;
  margin-bottom: 60px;
}

.missions-section__intro h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  font-weight: 510;
  line-height: 1;
  letter-spacing: -.045em;
}

.missions-section__intro h2 em {
  color: var(--red);
  font-weight: 470;
}

.missions-section__intro > p:last-child {
  max-width: 620px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.mission-tickets {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.mission-ticket {
  position: relative;
  min-height: 390px;
  display: flex;
  flex-direction: column;
  padding: 26px;
  overflow: hidden;
  border-radius: 24px;
}

.mission-ticket::after {
  content: "";
  position: absolute;
  right: -28px;
  bottom: -28px;
  width: 110px;
  height: 110px;
  background: rgba(255, 255, 255, .4);
  border-radius: 50%;
}

.mission-ticket--yellow { background: #fff1b9; }
.mission-ticket--blue { background: #dff3fc; }
.mission-ticket--mint { background: #dff8f0; }

.mission-ticket > span,
.mission-ticket > b {
  font-family: var(--mono);
  font-size: .62rem;
  letter-spacing: .08em;
}

.mission-ticket__mark {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin: 48px 0 24px;
  background: rgba(255, 255, 255, .75);
  border: 1px solid rgba(29, 29, 31, .08);
  border-radius: 17px;
  font-family: var(--display);
  font-size: 1.6rem;
}

.mission-ticket h3 {
  margin: 0 0 10px;
  font-family: var(--display);
  font-size: 1.7rem;
  font-weight: 550;
  line-height: 1;
}

.mission-ticket p {
  margin: 0;
  color: var(--muted);
  font-size: .9rem;
}

.mission-ticket > b {
  z-index: 1;
  margin-top: auto;
}

/* Reading, product, waitlist */

.reading-section {
  color: var(--white);
  background: var(--ink);
}

.reading-section .section-kicker {
  color: rgba(255, 255, 255, .55);
}

.reading-section h2 em {
  color: var(--yellow);
}

.reading-section > p:last-of-type {
  color: rgba(255, 255, 255, .62);
}

.product-section {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 90px;
  align-items: center;
}

.product-section__copy > p:not(.section-kicker) {
  color: var(--muted);
}

.product-section__copy ul {
  margin: 32px 0 24px;
  padding: 0;
  list-style: none;
}

.product-section__copy li {
  display: grid;
  grid-template-columns: 38px 1fr;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.product-section__copy li:last-child {
  border-bottom: 1px solid var(--line);
}

.product-section__copy li span {
  color: var(--muted);
  font-family: var(--mono);
  font-size: .68rem;
}

.product-section__copy small {
  color: var(--muted);
  font-size: .73rem;
}

.membership-model {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 26px 0 16px;
}

.membership-model > div {
  min-height: 138px;
  display: flex;
  flex-direction: column;
  padding: 17px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 15px;
}

.membership-model > div:first-child {
  background: #fff8db;
}

.membership-model > div:last-child {
  background: #e9f7fc;
}

.membership-model span {
  margin-bottom: 18px;
  font-family: var(--mono);
  font-size: .6rem;
  letter-spacing: .08em;
}

.membership-model strong {
  font-family: var(--display);
  font-size: 1rem;
  line-height: 1.1;
}

.membership-model small {
  margin-top: auto;
  font-size: .62rem;
  line-height: 1.4;
}

.product-section__quote {
  min-height: 440px;
  display: grid;
  place-items: center;
  padding: 45px;
  background: var(--yellow);
  border-radius: 50% 47% 52% 48% / 48% 55% 45% 52%;
}

.product-section__quote p {
  max-width: 12ch;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3.7rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.04;
  text-align: center;
}

.waitlist-section h2 {
  font-size: clamp(3rem, 6vw, 5.4rem);
}

.waitlist {
  margin-top: 36px;
}

.waitlist form {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.waitlist input {
  width: min(100%, 350px);
  min-height: 48px;
  padding: 0 20px;
  background: var(--white);
  border: 1px solid rgba(29, 29, 31, .18);
  border-radius: 999px;
}

.waitlist input:focus {
  outline: 2px solid var(--ink);
  outline-offset: 2px;
}

.waitlist > span {
  display: block;
  margin-top: 13px;
  color: var(--muted);
  font-size: .72rem;
}

.waitlist__thanks {
  display: none;
  width: fit-content;
  margin: 0 auto;
  padding: 14px 22px;
  background: var(--mint);
  border-radius: 999px;
  font-family: var(--display);
  font-weight: 550;
}

.waitlist.is-done form,
.waitlist.is-done > span {
  display: none;
}

.waitlist.is-done .waitlist__thanks {
  display: block;
}

.footer {
  width: min(calc(100% - 44px), var(--wide));
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  margin: 0 auto;
  padding: 32px 0 50px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .78rem;
}

.footer p {
  margin: 0;
  font-family: var(--display);
  font-style: italic;
}

.footer span {
  justify-self: end;
}

/* Animation */

@keyframes bars {
  from { transform: scaleY(.45); }
  to { transform: scaleY(1); }
}

@keyframes twinkle {
  0%, 100% { opacity: .35; transform: rotate(0deg) scale(.8); }
  50% { opacity: 1; transform: rotate(18deg) scale(1.12); }
}

@keyframes phone-ring {
  0%, 60%, 100% { transform: rotate(0); }
  62% { transform: rotate(-1.4deg); }
  65% { transform: rotate(1.4deg); }
  68% { transform: rotate(-1deg); }
  71% { transform: rotate(.7deg); }
  74% { transform: rotate(0); }
}

@keyframes handset-ring {
  0%, 60%, 100% { transform: translateY(0); }
  63% { transform: translateY(-5px); }
  68% { transform: translateY(0); }
  71% { transform: translateY(-3px); }
  74% { transform: translateY(0); }
}

@keyframes ring-halo {
  0%, 58% { opacity: 0; transform: scale(.55); }
  66% { opacity: .45; }
  95%, 100% { opacity: 0; transform: scale(1.15); }
}

@keyframes panel-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: none; }
}

/* Responsive */

@media (max-width: 1020px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .spring-story__body {
    grid-template-columns: 1fr 54px 1fr;
  }

  .spring-story__calls {
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 10px;
  }

  .story-call--beep,
  .story-call--boss,
  .story-call--mail {
    margin: 0;
  }

  .hero h1,
  .hero__text {
    margin-right: auto;
    margin-left: auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero-product {
    width: min(100%, 760px);
    margin: 20px auto 0;
  }

  .hero__footnote {
    position: static;
    grid-column: 1;
    transform: none;
  }

  .values-section,
  .alive-section,
  .bridge-section,
  .product-section {
    grid-template-columns: 1fr;
  }

  .values-intro {
    position: static;
  }

  .bridge-card {
    min-height: 620px;
  }
}

@media (max-width: 820px) {
  .nav__links > a:not(.nav__cta) {
    display: none;
  }

  .phone-actions__grid {
    grid-template-columns: 1fr;
  }

  .phone-action {
    display: grid;
    grid-template-columns: minmax(220px, 340px) 1fr;
    align-items: center;
    min-height: 0;
    padding: 18px 32px 28px 10px;
  }

  .phone-action img {
    grid-row: 1 / 4;
    height: 310px;
    margin: 0;
  }

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

  .desk-phone {
    right: -8px;
    width: 255px;
  }

  .app-demo__shell {
    grid-template-columns: 76px 1fr;
  }

  .app-tab {
    grid-template-columns: 1fr;
    place-items: center;
  }

  .app-tab span {
    display: none;
  }

  .app-tab em {
    top: 3px;
    right: 3px;
  }

  .app-panels {
    padding: 34px 28px;
  }

  .today-grid,
  .directory {
    grid-template-columns: 1fr;
  }

  .task-card {
    min-height: 210px;
  }

  .story-path {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .story-path article {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 0 16px;
  }

  .story-path__day {
    grid-column: 2;
  }

  .story-path__icon {
    grid-row: 1 / 4;
    margin: 0;
  }

  .story-path h3,
  .story-path p {
    grid-column: 2;
  }

  .story-path__join {
    display: none;
  }

  .task-machine__tabs {
    grid-template-columns: repeat(2, 1fr);
  }

  .inventory-job {
    grid-template-columns: 1fr 1fr;
  }

  .job-call {
    grid-column: 1 / 3;
    min-height: 220px;
  }

  .job-call p {
    margin-top: 30px;
  }

  .switchboard-job {
    grid-template-columns: 1fr;
  }

  .call-card {
    min-height: 230px;
  }

  .call-card strong {
    margin-top: 38px;
  }

  .switchboard-controls {
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
  }

  .season-line {
    grid-template-columns: repeat(2, 1fr);
    gap: 42px 0;
  }

  .season-line::before {
    display: none;
  }

  .season {
    padding-right: 28px;
  }

  .season > i {
    margin: 18px 0;
  }
}

@media (max-width: 620px) {
  .nav {
    padding-right: 14px;
    padding-left: 14px;
  }

  .spring-story__bar {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .spring-story__bar > span,
  .spring-story__bar > i {
    display: none;
  }

  .spring-story__body {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 28px 20px;
  }

  .spring-story__turn b {
    display: block;
    transform: rotate(90deg);
  }

  .spring-story__calls {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .spring-story__choice {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 26px 24px;
  }

  .phone-actions {
    width: min(calc(100% - 32px), var(--wide));
  }

  .phone-action {
    display: block;
    padding: 18px 24px 30px;
  }

  .phone-action img {
    width: min(100%, 320px);
    height: 300px;
    margin: 0 auto 4px;
  }

  .nav__cta {
    font-size: .72rem !important;
  }

  .hero,
  .desk-section,
  .story-section,
  .values-section,
  .alive-section,
  .bridge-section,
  .missions-section,
  .product-section,
  .footer {
    width: min(calc(100% - 28px), var(--wide));
  }

  .hero {
    gap: 10px;
    padding-top: 110px;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 16vw, 5rem);
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero-product {
    min-height: 390px;
    align-items: start;
    margin-top: 50px;
  }

  .laptop {
    padding: 8px 8px 0;
    border-radius: 13px;
  }

  .os {
    height: 300px;
  }

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

  .osbar__status {
    display: none;
  }

  .desktop {
    padding: 14px;
  }

  .desktop__hello h2 {
    font-size: 17px;
  }

  .mini-widget {
    min-height: 80px;
    padding: 9px;
  }

  .mini-widget__label {
    margin-bottom: 8px;
    font-size: 5px;
  }

  .mini-widget strong {
    font-size: 9px;
  }

  .incoming {
    right: 8px;
    bottom: 10px;
    left: 50px;
    grid-template-columns: 30px 1fr;
    gap: 7px;
    padding: 8px;
  }

  .incoming__avatar {
    width: 30px;
    height: 30px;
  }

  .incoming__wave {
    display: none;
  }

  .incoming b {
    grid-column: 2;
  }

  .desk-phone {
    bottom: -48px;
    width: 185px;
  }

  .living-strip {
    border-radius: 20px;
  }

  .app-demo {
    border-width: 6px;
    border-radius: 16px;
  }

  .app-demo__shell {
    min-height: 560px;
    grid-template-columns: 1fr;
  }

  .app-tabs {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    padding: 8px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .app-tab {
    margin: 0;
  }

  .app-panels {
    padding: 28px 18px;
  }

  .mail-list article {
    grid-template-columns: 10px 1fr auto;
  }

  .mail-list article > span {
    display: none;
  }

  .calendar__event {
    width: 35%;
  }

  .directory {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }

  .directory article {
    min-height: 170px;
    padding: 8px;
  }

  .mystery-face {
    width: 50px;
    height: 50px;
    margin: 18px 0 10px;
  }

  .directory strong {
    font-size: .7rem;
  }

  .note-paper {
    padding: 28px 22px;
  }

  .task-screen {
    padding: 24px 16px;
  }

  .task-kind {
    min-height: 58px;
    padding: 10px;
    font-size: .62rem;
  }

  .inventory-job,
  .email-job,
  .fax-job {
    grid-template-columns: 1fr;
  }

  .job-call {
    grid-column: auto;
  }

  .task-screen__head {
    align-items: flex-start;
  }

  .task-screen__head h3 {
    font-size: 1.5rem;
  }

  .task-screen__head > b {
    font-size: .5rem;
  }

  .simple-call {
    align-items: flex-start;
    padding: 15px;
  }

  .simple-call__badge {
    width: 44px;
    height: 44px;
  }

  .simple-call p {
    font-size: 1.05rem;
  }

  .big-choices {
    grid-template-columns: 1fr;
  }

  .big-choice {
    min-height: 105px;
    flex-direction: row;
    justify-content: flex-start;
    padding: 14px 22px;
  }

  .big-choice .part {
    flex: 0 0 auto;
    width: 54px;
    height: 54px;
  }

  .big-choice br {
    display: none;
  }

  .simple-next,
  .one-action {
    flex-direction: column;
    align-items: stretch;
  }

  .two-lines {
    grid-template-columns: 1fr;
  }

  .two-lines article {
    min-height: 150px;
  }

  .two-lines__ring {
    width: 52px;
    height: 52px;
    justify-self: center;
  }

  .one-action button {
    width: 100%;
    min-width: 0;
  }

  .simple-compose {
    padding: 22px 18px;
  }

  .bridge-card {
    padding: 30px 22px;
  }

  .parent-panel__row {
    grid-template-columns: 82px 1fr;
  }

  .parent-panel__row b {
    display: none;
  }

  .mission-tickets {
    grid-template-columns: 1fr;
  }

  .mission-ticket {
    min-height: 320px;
  }

  .season-line {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .season {
    padding: 0 0 0 32px;
  }

  .season > i {
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
  }

  .season-keepsake {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .away-card {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .membership-model {
    grid-template-columns: 1fr;
  }

  .waitlist form {
    flex-direction: column;
    align-items: center;
  }

  .waitlist input,
  .waitlist .button {
    width: 100%;
  }

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

  .footer p {
    display: none;
  }
}

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

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

  .spark,
  .phone-shake,
  .phone-handset,
  .desk-phone__ring,
  .incoming__wave i,
  .operator__wave i {
    animation: none;
  }
}
