/* Productivities homepage — an editorial field guide to connected work. */

.home-redesign {
  --home-sans: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --home-serif: "Newsreader", Georgia, serif;
  --home-ink: var(--text);
  --home-paper: var(--bg);
  --home-rule: color-mix(in srgb, var(--text) 18%, transparent);
  --home-faint-rule: color-mix(in srgb, var(--text) 8%, transparent);
  --home-red: var(--logo-pro-accent);
  font-family: var(--home-sans);
  background-color: var(--home-paper);
}

.home-redesign h1,
.home-redesign h2,
.home-redesign h3,
.home-redesign p { margin-top: 0; }

.home-redesign h1,
.home-redesign h2,
.home-redesign h3 {
  font-family: var(--home-serif);
  font-weight: 500;
}

.home-redesign h1 {
  font-size: clamp(2.9rem, 5.1vw, 5.7rem);
  line-height: .94;
  letter-spacing: -.045em;
}

.home-redesign h2 {
  font-size: clamp(2.75rem, 4.8vw, 5.4rem);
  line-height: .94;
  letter-spacing: -.045em;
}

.home-redesign h3 {
  font-size: clamp(1.65rem, 2.6vw, 3rem);
  line-height: 1.05;
  letter-spacing: -.025em;
}

.home-redesign em {
  color: var(--accent);
  font-weight: 400;
}
.home-shell {
  width: min(100% - 48px, 1440px);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 2000;
  transform: translateY(-160%);
  padding: 10px 14px;
  background: var(--text);
  color: var(--bg);
}

.skip-link:focus { transform: translateY(0); }
.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;
}

.home-redesign .home-nav {
  height: 72px;
  border-bottom: 1px solid var(--home-rule);
  background: color-mix(in srgb, var(--bg) 94%, transparent);
}

.home-redesign .home-nav .nav-inner {
  max-width: 1440px;
  height: 72px;
}

.home-redesign .home-nav .nav-links { gap: 2px; }
.home-redesign .home-nav .nav-links a {
  border-radius: var(--radius-sm);
  font: 400 .9375rem/1.55 var(--home-sans);
  letter-spacing: 0;
  padding: 12px 10px;
}
.home-redesign .home-nav .nav-links a.is-active,
.home-redesign .home-nav .nav-links a[aria-current="page"],
.home-redesign .home-nav .nav-links a[aria-current="location"] {
  border-radius: var(--radius-sm);
  background: var(--btn-primary-bg);
  color: var(--btn-primary-text);
}
.home-redesign .home-nav .nav-links a.is-active:hover,
.home-redesign .home-nav .nav-links a[aria-current="page"]:hover,
.home-redesign .home-nav .nav-links a[aria-current="location"]:hover {
  background: var(--btn-primary-hover-bg);
  color: var(--btn-primary-text);
}

.home-redesign .nav-logo {
  font-family: var(--home-serif);
  font-size: 1.75rem;
  letter-spacing: -.02em;
}

.home-redesign .home-nav .nav-actions .btn-sm {
  padding: 10px 16px;
  font-size: 1rem;
  font-weight: 400;
}

.home-redesign .theme-toggle { border-radius: 50%; }
.home-redesign .btn {
  border-radius: var(--radius-sm);
  font-family: var(--home-sans);
  letter-spacing: .01em;
}

.kicker,
.chapter,
.folio,
.section-index,
.loop-number,
.choice > span {
  font-family: var(--home-sans);
  font-size: .69rem;
  font-weight: 650;
  line-height: 1.3;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.text-link {
  display: inline-block;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  font-family: var(--home-sans);
  font-size: .84rem;
  font-weight: 650;
  letter-spacing: .02em;
}

.text-link:hover { color: var(--accent); }

/* Hero */
.home-hero {
  padding: 72px 0 68px;
  overflow: hidden;
}

.hero-sheet {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(520px, 1.08fr);
  column-gap: clamp(40px, 6vw, 110px);
  min-height: 650px;
  padding: 52px 0 0;
}

.folio-top {
  position: absolute;
  top: 0;
  right: 0;
}

.hero-field {
  position: absolute;
  z-index: 0;
  top: 96px;
  right: 0;
  width: min(55%, 820px);
  height: clamp(560px, 72vh, 700px);
  overflow: hidden;
  color: var(--text);
  pointer-events: none;
  opacity: .94;
}
.hero-knowledge-graph {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-knowledge-links line {
  stroke: currentColor;
  stroke-width: .9;
  stroke-linecap: round;
  opacity: .08;
  transition: opacity 220ms ease;
}
.hero-knowledge-links .primary-link {
  opacity: .13;
}
.hero-knowledge-links .accent-link {
  stroke: var(--accent);
  opacity: .28;
}
.hero-knowledge-links .context-link {
  stroke-dasharray: 1.5 5;
  opacity: .09;
}
[data-color-mode="light"] .hero-knowledge-links line {
  opacity: .14;
}
[data-color-mode="light"] .hero-knowledge-links .primary-link {
  opacity: .23;
}
[data-color-mode="light"] .hero-knowledge-links .accent-link {
  opacity: .4;
}
[data-color-mode="light"] .hero-knowledge-links .context-link {
  opacity: .28;
}
[data-color-mode="light"] .hero-knowledge-node .node-type {
  fill: color-mix(in srgb, var(--text) 62%, var(--bg));
}
[data-color-mode="light"] .hero-knowledge-node .node-title {
  fill: color-mix(in srgb, var(--text) 72%, var(--bg));
}
.hero-knowledge-node .node-shape {
  fill: var(--bg);
  stroke: currentColor;
  stroke-width: 1.1;
  opacity: .7;
}
.hero-knowledge-node .node-inner {
  fill: none;
  stroke: currentColor;
  stroke-width: .8;
  opacity: .5;
}
.hero-knowledge-node .node-type,
.hero-knowledge-node .node-title {
  text-anchor: middle;
  paint-order: stroke;
  stroke: var(--bg);
  stroke-linejoin: round;
  pointer-events: none;
}
.hero-knowledge-node .node-type {
  fill: var(--text-faint);
  stroke-width: 3px;
  font: 700 7px/1 var(--home-sans);
  letter-spacing: .13em;
  text-transform: uppercase;
}
.hero-knowledge-node .node-title {
  fill: var(--text-muted);
  stroke-width: 4px;
  font: 500 10.5px/1 var(--home-sans);
}
.hero-knowledge-node.node-current .node-shape {
  fill: var(--accent);
  stroke: var(--accent);
  opacity: 1;
}
.hero-knowledge-node.node-current .node-type,
.hero-knowledge-node.node-current .node-title {
  fill: var(--accent);
  font-weight: 700;
}
.hero-knowledge-node.type-task .node-shape {
  fill: #da7756;
  stroke: #c27c7a;
  opacity: .9;
}
.hero-knowledge-node.type-table .node-shape {
  fill: #7bb89a;
  stroke: #6aa58e;
  opacity: .9;
}
.hero-knowledge-node.type-canvas .node-shape {
  fill: color-mix(in srgb, #a387b5 35%, var(--bg));
  stroke: #a387b5;
}
.hero-knowledge-node.type-canvas .node-inner { stroke: #a387b5; }
.hero-knowledge-node.type-highlight .node-shape {
  fill: var(--accent);
  stroke: var(--accent);
  opacity: .85;
}
.hero-knowledge-node.type-pdf .node-shape { stroke: #c87958; }
.hero-knowledge-node.type-form .node-shape { stroke: #7bb89a; }
.hero-knowledge-node.type-note .node-shape { stroke: var(--accent); }
.hero-knowledge-node.type-ai .node-shape {
  fill: color-mix(in srgb, var(--accent) 20%, var(--bg));
  stroke: var(--accent);
}
.hero-knowledge-node.type-people .node-shape {
  fill: color-mix(in srgb, #6d8794 28%, var(--bg));
  stroke: #6d8794;
}
.hero-knowledge-node.type-people .node-inner {
  fill: #6d8794;
  stroke: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  align-self: start;
  padding-top: 46px;
}

.hero-copy h1 { margin: 24px 0 38px; }
.hero-copy h1 em { font-style: normal; }
.hero-lede {
  width: min(100%, 620px);
  margin-left: 0;
  font-family: var(--home-serif);
  font-size: clamp(1.15rem, 1.45vw, 1.5rem);
  line-height: 1.45;
  color: var(--text-muted);
}

.hero-copy .hero-actions {
  margin: 32px 0 0;
  align-items: center;
  gap: 24px;
}

.product-frame,
.workflow-figure,
.hably-figure {
  background: var(--bg-card);
  border: 1px solid var(--home-rule);
  box-shadow: 10px 16px 0 color-mix(in srgb, var(--text) 7%, transparent);
}

.product-frame {
  padding: 8px;
  overflow: hidden;
}
.product-frame img { width: 100%; }
.product-frame.editorial-frame {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}
.editorial-frame img {
  display: block;
}
[data-color-mode="light"] .editorial-frame img { mix-blend-mode: normal; }
[data-color-mode="light"] .connected-illustration img { mix-blend-mode: normal; }
[data-color-mode="dark"] .editorial-frame img,
[data-color-mode="dark"] .connected-illustration img { mix-blend-mode: lighten; }
.workflow-figure figcaption,
.hably-figure figcaption {
  margin: 0;
  padding: 13px 4px 0;
  font: italic .9rem/1.45 var(--home-serif);
  color: var(--text-muted);
}

/* Fragmentation */
.fragmentation {
  margin-top: 28px;
  padding: 96px 0 140px;
  background: var(--bg-elevated);
  border-top: 1px solid var(--home-faint-rule);
}
.editorial-grid {
  display: grid;
  grid-template-columns: 70px 1.05fr .7fr;
  gap: 40px 56px;
}
.section-index {
  writing-mode: vertical-rl;
  font-size: .8rem;
  border-left: 1px solid var(--home-rule);
  padding-left: 12px;
}
.section-intro h2 { margin: 24px 0 0; }
.fragment-story { padding-top: 62px; max-width: 510px; }
.fragment-story p { font-size: 1rem; line-height: 1.8; }
.fragment-story .opening-line {
  margin-bottom: 22px;
  font-family: var(--home-sans);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
  color: var(--text-muted);
}
.connected-illustration {
  grid-column: 2 / -1;
  aspect-ratio: 1672 / 825;
  overflow: hidden;
  margin-inline: 0;
  margin-top: -12px;
  margin-bottom: 0;
}
.connected-illustration img {
  display: block;
  width: 100%;
}
/* Work loop */
.work-loop {
  padding: 140px 0 120px;
  background: var(--text);
  color: var(--bg);
}
.work-loop h2,
.work-loop h3 { color: var(--bg); }
.work-loop .kicker,
.work-loop p { color: color-mix(in srgb, var(--bg) 68%, transparent); }
.loop-heading {
  padding-bottom: 70px;
}
.loop-heading h2 { margin: 24px 0 0; }
.loop-list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  list-style: none;
  padding: 0;
  margin: 0;
  border-left: 1px solid color-mix(in srgb, var(--bg) 22%, transparent);
  border-top: 1px solid color-mix(in srgb, var(--bg) 22%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--bg) 22%, transparent);
}
.loop-list li {
  min-height: 330px;
  padding: 24px 22px 28px;
  border-right: 1px solid color-mix(in srgb, var(--bg) 22%, transparent);
}
.loop-list li:nth-child(even) { padding-top: 88px; }
.loop-number { display: block; margin-bottom: 50px; color: var(--accent); }
.loop-list h3 { font-size: clamp(1.5rem, 2vw, 2.1rem); margin-bottom: 20px; }
.loop-list p { font-size: .86rem; line-height: 1.65; }

/* Pinboard capture story */
.pinboard-capture {
  padding: 110px 0;
  overflow: hidden;
  background: color-mix(in srgb, var(--bg-elevated) 78%, var(--bg));
}
.pinboard-layout {
  display: grid;
  grid-template-columns: .68fr 1.32fr;
  gap: 80px clamp(56px, 8vw, 130px);
  align-items: start;
}
.pinboard-copy { padding-top: 0; }
.pinboard-copy h2 {
  margin: 24px 0 38px;
  font-size: clamp(3.2rem, 4.6vw, 5.2rem);
  line-height: .92;
}
.pinboard-copy h2 > span,
.pinboard-copy h2 > em { display: block; }
.pinboard-copy h2 > em {
  margin-top: .12em;
  font-size: 1em;
  font-style: normal;
  line-height: .98;
}
.pinboard-copy > p { max-width: 560px; line-height: 1.8; }
.capture-materials {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 36px 0 34px;
  padding: 0;
  border-top: 1px solid var(--home-rule);
  border-right: 1px solid var(--home-rule);
  border-bottom: 1px solid var(--home-rule);
  border-left: 1px solid var(--home-rule);
}
.capture-materials li {
  flex: 1 1 33.333%;
  padding: 12px 8px;
  border-right: 1px solid var(--home-rule);
  font: 650 .65rem/1.2 var(--home-sans);
  letter-spacing: .09em;
  text-align: center;
  text-transform: uppercase;
  color: var(--text-muted);
}
.capture-materials li:nth-child(3n) { border-right: 0; }
.capture-materials li:nth-child(-n+6) { border-bottom: 1px solid var(--home-rule); }
.pinboard-figure {
  align-self: center;
  margin: 0;
  padding: 9px;
  border: 1px solid var(--home-rule);
  background: var(--bg-card);
  box-shadow: 12px 18px 0 color-mix(in srgb, var(--text) 7%, transparent);
}
.pinboard-figure img { border: 1px solid var(--home-faint-rule); }
.pinboard-figure figcaption {
  padding: 13px 4px 2px;
  font: italic .9rem/1.45 var(--home-serif);
  color: var(--text-muted);
}
.capture-illustration-band {
  padding: 60px 0 120px;
  overflow: hidden;
  background: var(--bg);
  border-bottom: 1px solid var(--home-rule);
}
.capture-illustration {
  width: min(88%, 1180px);
  margin: 0 auto;
}
.capture-illustration figcaption {
  margin: 0;
  padding: 13px 4px 0;
  text-align: center;
  font: italic .9rem/1.45 var(--home-serif);
  color: var(--text-muted);
}

/* Workflow chapters */
.workflow-proof { padding: 170px 0; overflow: hidden; }
.proof-title { margin-left: 8%; margin-bottom: 160px; }
.proof-title h2 { margin: 24px 0 0; }
.workflow {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: clamp(48px, 8vw, 130px);
  align-items: center;
  margin-bottom: 190px;
}
.workflow:last-child { margin-bottom: 0; }
.workflow:nth-of-type(odd) { grid-template-columns: 1.3fr .7fr; }
.workflow:nth-of-type(odd) .workflow-copy { order: 2; }
.workflow-copy { max-width: 460px; }
.workflow-copy .chapter { display: block; margin-bottom: 28px; color: var(--accent); }
.workflow-copy h3 { margin-bottom: 24px; }
.workflow-copy p { line-height: 1.8; margin-bottom: 28px; }
.workflow-figure { margin: 0; padding: 9px; }
.workflow-figure img { border: 1px solid var(--home-faint-rule); }
.tilt-left { transform: rotate(-1.2deg); }
.tilt-right { transform: rotate(1.05deg); }

/* Hably */
.hably-section { padding: 170px 0; background: #101319; color: #e2e6ec; }
.hably-section h2 { color: #e2e6ec; }
.hably-section p { color: #96a0ae; }
.hably-layout { display: grid; grid-template-columns: 1fr .78fr; gap: clamp(60px, 10vw, 160px); align-items: center; }
.hably-copy h2 { margin: 24px 0 34px; }
.hably-copy > p:not(.kicker) { max-width: 650px; font-size: 1.05rem; line-height: 1.8; }
.control-list { margin: 46px 0 0; }
.control-list div { display: grid; grid-template-columns: 46px 1fr; padding: 18px 0; border-top: 1px solid #384050; }
.control-list div:last-child { border-bottom: 1px solid #384050; }
.control-list dt { font-size: .7rem; color: var(--accent); }
.control-list dd { margin: 0; color: #c7cdd6; }
.hably-figure { margin: 0; padding: 10px; background: #181c22; border-color: #384050; transform: rotate(1.2deg); }
.hably-figure figcaption { color: #96a0ae; }

/* Ownership */
.ownership { padding: 170px 0; }
.ownership-layout { display: grid; grid-template-columns: 70px .8fr 1fr; gap: 50px; }
.ownership-copy h2 { margin: 24px 0 34px; }
.ownership-copy > p:not(.kicker) { max-width: 600px; line-height: 1.8; }
.data-choices { padding-left: 5vw; }
.choice {
  position: relative;
  padding: 28px 0 28px 60px;
  border-top: 1px solid var(--home-rule);
}
.choice:last-child { border-bottom: 1px solid var(--home-rule); }
.choice::before { content: ""; position: absolute; left: 0; top: 32px; width: 18px; height: 18px; border: 1px solid var(--text-faint); border-radius: 50%; }
.primary-choice::before { border: 6px solid var(--accent); }
.choice > span { display: block; margin-bottom: 12px; }
.choice-status {
  display: inline-flex;
  margin-left: 10px;
  padding: 3px 7px 2px;
  border: 1px solid color-mix(in srgb, var(--accent) 55%, transparent);
  border-radius: 999px;
  color: var(--accent);
  font: 650 .55rem/1 var(--home-sans);
  letter-spacing: .1em;
  vertical-align: 1px;
}
.choice strong { display: block; margin-bottom: 8px; font: 500 1.55rem/1.2 var(--home-serif); }
.choice p { margin: 0; max-width: 520px; font-size: .9rem; }

/* Waitlist and footer */
.home-waitlist { padding: 130px 0; background: var(--accent); }
.waitlist-layout { display: grid; grid-template-columns: 1fr .7fr; gap: 100px; align-items: end; }
.waitlist-layout > :first-child { align-self: start; }
.home-waitlist .kicker,
.home-waitlist h2,
.home-waitlist p { color: #fff; }
.home-waitlist h2 { margin-top: 24px; }
.waitlist-copy > p:first-child { font: 400 1.25rem/1.55 var(--home-serif); }
.home-waitlist .waitlist-form { display: grid; grid-template-columns: 1fr auto; gap: 8px; margin-top: 28px; }
.home-waitlist .waitlist-form[hidden] { display: none; }
.home-waitlist .waitlist-form input {
  min-width: 0;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 2px;
  background: rgba(255,255,255,.1);
  color: #fff;
}
.home-waitlist .waitlist-form input::placeholder { color: rgba(255,255,255,.7); }
.home-waitlist .waitlist-form input:focus { border-color: #fff; box-shadow: 0 0 0 3px rgba(255,255,255,.18); }
.home-waitlist .btn-primary { background: #fff; border-color: #fff; color: #472d20; }
.home-waitlist .btn-primary:hover { background: #f2e8dc; border-color: #f2e8dc; }
.home-waitlist .btn-primary:disabled { cursor: wait; opacity: .72; }
.home-waitlist .waitlist-message {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  margin-top: 28px;
  padding: 18px 20px;
  border: 1px solid rgba(255,255,255,.52);
  border-radius: 2px;
  background: rgba(255,255,255,.13);
  color: #fff;
}
.home-waitlist .waitlist-message[hidden] { display: none; }
.home-waitlist .waitlist-message-icon {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: #472d20;
  font: 700 1rem/1 var(--home-sans);
}
.home-waitlist .waitlist-message strong,
.home-waitlist .waitlist-message-detail { display: block; }
.home-waitlist .waitlist-message strong {
  margin: 1px 0 4px;
  color: #fff;
  font: 600 1.1rem/1.25 var(--home-sans);
}
.home-waitlist .waitlist-message span span {
  display: block;
  color: rgba(255,255,255,.82);
  font-size: .9rem;
  line-height: 1.5;
}
.home-waitlist .waitlist-message.error {
  border-color: rgba(255,224,214,.75);
  background: rgba(92,25,14,.24);
}
.home-waitlist .waitlist-message.error .waitlist-message-icon {
  background: #fff0eb;
  color: #8c2f1d;
}
.home-waitlist .waitlist-note { color: rgba(255,255,255,.75); }

/* Existing lightbox, tightened for the new product figures. */
.home-redesign .lightbox { backdrop-filter: blur(7px); }
.home-redesign .lightbox-img { border-radius: 2px; }

@media (max-width: 1120px) {
  .hero-sheet { grid-template-columns: 1fr; min-height: auto; }
  .hero-copy { grid-row: 1; }
  .hero-field {
    position: relative;
    grid-column: 1;
    grid-row: 2;
    top: auto;
    right: auto;
    width: 100%;
    margin: 74px 0 64px;
  }
  .loop-list { grid-template-columns: repeat(3, 1fr); }
  .loop-list li:nth-child(even) { padding-top: 24px; }
  .loop-list li:nth-child(n+4) { border-top: 1px solid color-mix(in srgb, var(--bg) 22%, transparent); }
  .ownership-layout { grid-template-columns: 50px 1fr; }
  .data-choices { grid-column: 2; padding: 30px 0 0; }
  .pinboard-layout { grid-template-columns: 1fr; }
  .pinboard-copy { max-width: 760px; }
}

@media (max-width: 900px) {
  .home-redesign .home-nav .nav-links a { font-size: .9375rem; }
  .editorial-grid { grid-template-columns: 40px 1fr; }
  .fragment-story { grid-column: 2; padding-top: 0; }
  .connected-illustration { grid-column: 2; }
  .workflow,
  .workflow:nth-of-type(odd) { grid-template-columns: 1fr; gap: 48px; }
  .workflow:nth-of-type(odd) .workflow-copy { order: 0; }
  .workflow-copy { margin-left: 8%; }
  .hably-layout,
  .waitlist-layout { grid-template-columns: 1fr; }
  .hably-figure { width: min(80%, 580px); margin-inline: auto; }
}

@media (max-width: 720px) {
  .home-shell { width: min(100% - 32px, 1440px); }
  .home-redesign h1 { font-size: clamp(2.75rem, 12.5vw, 4.25rem); }
  .home-redesign h2 { font-size: clamp(2.6rem, 12vw, 4.1rem); }
  .home-redesign .home-nav .nav-inner { height: 64px; }
  .home-redesign .home-nav { height: 64px; }
  .home-redesign .home-nav .nav-links { border-radius: 0; top: 64px; }
  .home-redesign .nav-actions > .btn { display: none; }
  .home-hero { padding: 42px 0 82px; }
  .hero-sheet { padding-top: 34px; }
  .folio-top { display: none; }
  .hero-copy { padding-top: 10px; }
  .hero-copy h1 br:first-of-type { display: none; }
  .hero-lede,
  .hero-copy .hero-actions { margin-left: 0; }
  .hero-copy .hero-actions { align-items: flex-start; flex-direction: column; }
  .hero-field {
    display: block;
    width: 108%;
    height: min(88vw, 430px);
    margin: 52px 0 0 -4%;
    overflow: visible;
  }
  .hero-knowledge-links line { stroke-width: 1.2; }
  .hero-knowledge-node .node-type {
    font-size: 11px;
    letter-spacing: .09em;
  }
  .hero-knowledge-node .node-title { font-size: 16px; }
  .fragmentation,
  .work-loop,
  .pinboard-capture,
  .hably-section,
  .ownership,
  .home-waitlist { padding: 100px 0; }
  .fragmentation { margin-top: 18px; }
  .editorial-grid,
  .ownership-layout { display: block; }
  .section-index { display: none; }
  .section-intro { margin-bottom: 48px; }
  .fragment-story { max-width: none; }
  .connected-illustration { margin-top: 24px; }
  .loop-list { grid-template-columns: 1fr 1fr; }
  .loop-list li { min-height: 290px; border-bottom: 1px solid color-mix(in srgb, var(--bg) 22%, transparent); }
  .loop-number { margin-bottom: 35px; }
  .pinboard-layout { gap: 58px; }
  .pinboard-figure { width: 110%; margin-left: -5%; }
  .capture-illustration { width: 112%; margin-left: -6%; }
  .capture-illustration-band { padding: 40px 0 80px; }
  .proof-title { margin: 0 0 100px; }
  .workflow { margin-bottom: 120px; }
  .workflow-copy { margin-left: 0; }
  .workflow-figure { width: 105%; margin-left: -2.5%; }
  .hably-layout { gap: 60px; }
  .hably-figure { width: 94%; }
  .data-choices { padding-top: 60px; }
  .choice { padding-left: 44px; }
  .home-waitlist .waitlist-form { grid-template-columns: 1fr; }
}

@media (max-width: 460px) {
  .loop-list { grid-template-columns: 1fr; }
  .loop-list li { min-height: auto; }
  .scattered-words { height: 190px; }
}

@media (max-width: 560px) {
  .scattered-words { height: 250px; }
  .scattered-words span { min-width: 108px; font-size: 1rem; }
  .scattered-words span:nth-child(1) { top: 0; left: 0; }
  .scattered-words span:nth-child(2) { top: 2px; right: 0; }
  .scattered-words span:nth-child(3) { top: 85px; left: 10%; }
  .scattered-words span:nth-child(4) { top: 87px; right: 3%; }
  .scattered-words span:nth-child(5) { bottom: 0; left: 0; }
  .scattered-words span:nth-child(6) { right: 4%; bottom: 2px; }
}

@media (prefers-reduced-motion: reduce) {
  .home-redesign *,
  .home-redesign *::before,
  .home-redesign *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .home-redesign .fade-in { opacity: 1; transform: none; }
}

/* Branded error page */
.not-found {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 80px 0;
}
.not-found-layout { position: relative; }
.not-found-layout::before {
  content: "";
  position: absolute;
  top: -10vh;
  right: 8%;
  width: 1px;
  height: 76vh;
  background: var(--accent);
  transform: rotate(12deg);
}
.not-found h1 { margin: 30px 0 50px; }
.not-found-layout > div { max-width: 460px; margin-left: 44%; }
.not-found-layout > div p { font: 400 1.25rem/1.55 var(--home-serif); }
@media (max-width: 720px) {
  .not-found-layout > div { margin-left: 0; }
  .not-found-layout::before { right: 4%; }
}
