/* Company pages (Location AI, Projects, White papers, About, Contact).
   Loaded after styles.css and reuses its tokens, header, footer, and section rhythm. */
.desktop-nav a[aria-current="page"],
.mobile-nav a[aria-current="page"] {
  color: #144d10;
  font-weight: 650;
}
.footer-bottom nav {
  flex-wrap: wrap;
}
.hero-topline a:hover {
  color: #144d10;
}

/* Page hero: the homepage title row, optionally followed by a banner-sized scene. */
.page-hero {
  padding-bottom: 76px;
  border-bottom: 1px solid #23451e20;
}
.page-hero h1 {
  font-size: clamp(3rem, 5.4vw, 5.9rem);
}
.page-hero .hero-title-row {
  margin-bottom: 0;
}
.page-hero .hero-intro {
  max-width: 360px;
}
.page-hero.has-visual {
  padding-bottom: 12px;
  border-bottom: 0;
}
.page-hero.has-visual .hero-title-row {
  margin-bottom: 44px;
}
/* When the hero panel is the page's main content, leave room before the closing call to action. */
.page-hero.hero-standalone {
  padding-bottom: 104px;
}
.page-hero .detection-scene {
  aspect-ratio: 21 / 9;
  background: #e9eee2;
}
.page-hero .detection-scene > img {
  object-fit: cover;
}
.page-hero .scene-tag,
.page-hero .scene-disclaimer {
  pointer-events: none;
}

/* Location AI: an illustrative floor plan drawn in SVG. */
.plan-scene > svg {
  display: block;
  width: 100%;
  height: 100%;
}
.plan-scene text {
  font-family: inherit;
}
.plan-pulse {
  transform-box: fill-box;
  transform-origin: center;
  animation: plan-pulse 2.4s ease-out infinite;
}
@keyframes plan-pulse {
  from {
    transform: scale(0.6);
    opacity: 0.9;
  }
  to {
    transform: scale(1.8);
    opacity: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .plan-pulse {
    animation: none;
    opacity: 0;
  }
}
/* Playable floor plan: rooms are the only click targets inside the drawing. */
.plan-scene svg * {
  pointer-events: none;
}
.plan-scene .plan-hit {
  pointer-events: all;
  cursor: pointer;
  fill: #c3fa92;
  fill-opacity: 0;
  transition: fill-opacity 0.2s;
}
.plan-scene .plan-hit:hover {
  fill-opacity: 0.22;
}
.plan-scene .plan-hit.is-target {
  fill-opacity: 0.14;
}
.plan-readout {
  position: absolute;
  top: 25px;
  right: 28px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 190px;
  padding: 12px 15px;
  border: 1px solid #1c3c1922;
  border-radius: 6px;
  background: #f7faefeb;
  pointer-events: none;
}
.plan-readout span {
  font-size: 0.6875rem;
  font-weight: 650;
  letter-spacing: 0.1em;
  color: #3d7830;
}
.plan-readout strong {
  font-size: 1.05rem;
  font-weight: 650;
  letter-spacing: -0.02em;
  color: #17291a;
}
.plan-readout em {
  font-style: normal;
  font-size: 0.75rem;
  font-variant-numeric: tabular-nums;
  color: #5f7056;
}
.plan-nav .is-restricted span {
  color: #b42318;
}
/* Restricted zone: an entry turns the tag, label, and readout red and raises an alert. */
.plan-scene.is-alert .plan-zone {
  animation: plan-zone-alert 0.9s ease-in-out infinite alternate;
}
@keyframes plan-zone-alert {
  from {
    stroke-width: 2;
    stroke-opacity: 1;
  }
  to {
    stroke-width: 5;
    stroke-opacity: 0.45;
  }
}
.plan-scene.is-alert .plan-tag-ring {
  fill: #fda29b;
  stroke: #b42318;
}
.plan-scene.is-alert .plan-pulse {
  stroke: #b42318;
  animation-duration: 1.2s;
}
.plan-scene.is-alert .plan-tag-dot,
.plan-scene.is-alert .plan-tag-label {
  fill: #b42318;
}
.plan-scene.is-alert .plan-readout {
  border-color: #b4231866;
  background: #fff4f2f2;
}
.plan-scene.is-alert .plan-readout span {
  color: #b42318;
}
.plan-alert {
  position: absolute;
  right: 28px;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: calc(100% - 56px);
  padding: 11px 16px;
  border-radius: 6px;
  background: #b42318;
  color: #fff;
  font-size: 0.8125rem;
  line-height: 1.4;
  box-shadow: 0 8px 24px #7a15101f;
  pointer-events: none;
  animation: plan-alert-in 0.3s ease-out;
}
.plan-alert[hidden] {
  display: none;
}
.plan-alert strong {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}
.plan-alert strong:before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin: 0 8px 1px 0;
  border-radius: 50%;
  background: #fff;
  animation: plan-alert-dot 0.9s ease-in-out infinite alternate;
}
@keyframes plan-alert-in {
  from {
    transform: translateY(8px);
    opacity: 0;
  }
}
@keyframes plan-alert-dot {
  to {
    opacity: 0.3;
  }
}
@media (prefers-reduced-motion: reduce) {
  .plan-scene.is-alert .plan-zone,
  .plan-alert,
  .plan-alert strong:before {
    animation: none;
  }
  .plan-scene.is-alert .plan-zone {
    stroke-width: 4;
  }
}
.plan-nav[hidden] {
  display: none;
}
.plan-nav {
  flex-wrap: wrap;
}
.plan-nav button[aria-pressed="true"] {
  background: #fff;
  color: #29571f;
  box-shadow: 0 2px 8px #18370c0b;
}

/* Large tiles: the hero's main content on About (numbers) and Contact (channels). */
.hero-tiles {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.hero-tiles.is-contact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.hero-tile {
  display: flex;
  flex-direction: column;
  min-height: 250px;
  padding: 30px;
  border: 1px solid #24451d17;
  border-radius: 10px;
  background: #f3f6ee;
  transition:
    border-color 0.25s,
    box-shadow 0.25s,
    transform 0.25s;
}
a.hero-tile:hover {
  border-color: #91ad80;
  box-shadow: 0 10px 30px #17371112;
  transform: translateY(-2px);
}
.hero-tile > span:first-child {
  font-size: 0.75rem;
  font-weight: 650;
  letter-spacing: 0.13em;
  color: #5d7057;
}
.hero-tile strong {
  display: block;
  font-variant-numeric: tabular-nums;
  margin-top: auto;
  padding-top: 28px;
  font-size: clamp(3.5rem, 6vw, 5.75rem);
  font-weight: 550;
  line-height: 1;
  letter-spacing: -0.06em;
  color: #245e20;
}
.hero-tile p {
  margin-top: 14px;
  font-size: 1rem;
  line-height: 1.5;
  color: #5f7056;
}
.is-contact .hero-tile strong {
  /* Contact values sit under the label; the action stays at the bottom. */
  margin-top: 0;
  padding-top: 24px;
  font-variant-numeric: normal;
  font-size: clamp(1.6rem, 2.4vw, 2.35rem);
  line-height: 1.2;
  letter-spacing: -0.04em;
  overflow-wrap: anywhere;
}
.is-contact .hero-tile-action {
  margin-top: auto;
}
.is-contact .hero-tile p {
  margin-bottom: 24px;
}
.hero-tile-action {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid #24451d20;
  font-size: 0.9375rem;
  font-weight: 650;
  color: #2d5d20;
}
.hero-tile-action span {
  font-size: 1.25rem;
}
/* The one tile we most want visitors to act on. */
.hero-tile.is-accent {
  background: #144d10;
  border-color: #144d10;
  color: #fff;
}
.hero-tile.is-accent > span:first-child {
  color: #c3fa92;
}
.hero-tile.is-accent strong {
  color: #fff;
}
.hero-tile.is-accent p {
  color: #d5e5cc;
}
.hero-tile.is-accent .hero-tile-action {
  border-color: #ffffff30;
  color: #fff;
}
a.hero-tile.is-accent:hover {
  background: #1d6118;
  border-color: #1d6118;
}
.about-tiles .is-accent strong {
  font-size: clamp(1.9rem, 2.6vw, 2.6rem);
  line-height: 1.15;
  letter-spacing: -0.045em;
}

/* Projects: the six industry illustrations as a jump strip. */
.usecase-mosaic {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}
.usecase-mosaic a {
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid #24451d17;
  border-radius: 9px;
  background: #fff;
  transition:
    border-color 0.25s,
    box-shadow 0.25s;
}
.usecase-mosaic img {
  width: 100%;
  height: auto;
  aspect-ratio: 6 / 5;
  object-fit: cover;
  transition: transform 0.4s;
}
.usecase-mosaic span {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  font-size: 0.6875rem;
  font-weight: 650;
  letter-spacing: 0.06em;
  color: #385031;
  background: #f7faefeb;
  border-radius: 4px;
  padding: 7px 9px;
}
.usecase-mosaic a:hover {
  border-color: #91ad80;
  box-shadow: 0 8px 28px #17371110;
}
.usecase-mosaic a:hover img {
  transform: scale(1.04);
}

/* White papers: two cover cards in place of a list. */
.paper-covers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.paper-cover {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #24451d17;
  border-radius: 10px;
  background: #f3f6ee;
  transition:
    border-color 0.25s,
    box-shadow 0.25s;
}
.paper-cover:hover {
  border-color: #91ad80;
  box-shadow: 0 8px 28px #17371110;
}
.paper-covers .detection-scene {
  aspect-ratio: 16 / 9;
  background: #fff;
}
.paper-covers .detection-scene > img {
  object-fit: contain;
}
.paper-cover-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 28px 30px 30px;
}
.paper-cover-body h2 {
  font-size: clamp(1.5rem, 2.2vw, 2.1rem);
  letter-spacing: -0.045em;
  line-height: 1.2;
  color: #17291a;
}
.paper-cover-body h2 span {
  display: block;
  color: #748071;
}
.paper-cover-body p {
  margin: 16px 0 24px;
  font-size: 0.9375rem;
  color: #69795f;
}
.paper-cover-body .source-link {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid #24451d20;
  justify-content: space-between;
}

.section-white {
  background: #fff;
}
.section-muted {
  background: #e9eee2;
}
.section-lede {
  max-width: 640px;
  margin-top: 26px;
  color: #5f7056;
  font-size: 1.0625rem;
}

/* Two-column feature: copy beside an image. */
.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 64px;
}
.feature-split > figure {
  margin: 0;
}
.feature-split h3 {
  font-size: clamp(1.75rem, 2.55vw, 2.7rem);
  font-weight: 550;
  line-height: 1.18;
  letter-spacing: -0.05em;
}
.feature-split h3 + p {
  margin-top: 20px;
  color: #596952;
}
.feature-split .text-link {
  max-width: 320px;
}
.orbit-image {
  width: min(100%, 520px);
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  margin-inline: auto;
}
.photo-frame {
  width: 100%;
  height: auto;
  border-radius: 10px;
}
.feature-split figcaption {
  font-size: 0.75rem;
  color: #7b8772;
  margin-top: 12px;
}

/* Product video below a feature. */
.location-film {
  margin-top: 96px;
  padding-top: 64px;
  border-top: 1px solid #23451e20;
}
.location-film h3 {
  font-size: clamp(1.75rem, 2.55vw, 2.7rem);
  font-weight: 550;
  line-height: 1.18;
  letter-spacing: -0.05em;
}
.location-film h3 span {
  color: var(--muted);
}
.location-film .demo-film {
  max-width: 880px;
  margin: 40px auto 0;
}
/* The Bit-Tracker film is 4:3, so the frame matches it instead of letterboxing. */
.location-film .youtube-player {
  aspect-ratio: 4 / 3;
}

/* Cards: three across, stacking on smaller screens. */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 56px;
}
.info-card {
  background: #f3f6ee;
  border: 1px solid #24451d17;
  border-radius: 8px;
  padding: 30px;
  display: flex;
  flex-direction: column;
}
.section-muted .info-card {
  background: #f6f8f2;
}
.info-card > span,
.usecase-body > span {
  font-size: 0.75rem;
  font-weight: 650;
  letter-spacing: 0.13em;
  color: #6e8068;
}
.info-card h3 {
  font-size: 1.3rem;
  line-height: 1.4;
  letter-spacing: -0.03em;
  font-weight: 600;
  margin: 18px 0 12px;
  color: #263c20;
}
.info-card p {
  font-size: 0.9375rem;
  color: #69795f;
}
.info-card .source-link {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid #24451d20;
  justify-content: space-between;
}
.info-card p + .source-link {
  margin-top: 24px;
}

/* Numbered points in two columns, echoing the homepage technology list. */
.point-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 64px;
  margin-top: 48px;
}
.point-grid article {
  display: flex;
  gap: 23px;
  padding: 27px 0;
  border-top: 1px solid #15251920;
}
.point-grid article > span {
  font-size: 0.75rem;
  color: #6e8068;
  padding-top: 5px;
}
.point-grid h3 {
  font-size: 1.2rem;
  line-height: 1.4;
  font-weight: 650;
  letter-spacing: -0.035em;
  color: #293f21;
}
.point-grid p {
  font-size: 0.9375rem;
  color: #606d61;
  margin-top: 10px;
}

/* Comparison and data tables. */
.table-scroll {
  overflow-x: auto;
  margin-top: 48px;
  border: 1px solid #24451d20;
  border-radius: 10px;
  background: #fff;
}
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
  text-align: left;
}
.data-table th,
.data-table td {
  padding: 17px 22px;
  border-bottom: 1px solid #24451d17;
  vertical-align: top;
  line-height: 1.55;
}
.data-table tr:last-child > * {
  border-bottom: 0;
}
.data-table thead th {
  font-size: 0.75rem;
  font-weight: 650;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: #5d7057;
  background: #f3f6ee;
}
.data-table tbody th {
  font-weight: 650;
  color: #284a20;
}
.data-table td {
  color: #5f7056;
}
.compare-table {
  min-width: 640px;
}
/* The criterion column stays in view while the comparison scrolls sideways. */
.compare-table th:first-child {
  position: sticky;
  left: 0;
  z-index: 1;
  background: #fff;
  box-shadow: 1px 0 0 #24451d17;
}
.compare-table thead th:first-child {
  background: #f3f6ee;
}
.table-hint {
  display: none;
}
.compare-table .is-ours {
  background: #e8efdf;
  color: #144d10;
  font-weight: 650;
}
.compare-table thead .is-ours {
  background: #144d10;
  color: #fff;
}

/* Use-case cards with an illustration on top. */
.usecase-card {
  padding: 0;
  overflow: hidden;
  background: #fff;
}
.usecase-art {
  aspect-ratio: 6 / 5;
  background: #f4f1ea;
  border-bottom: 1px solid #24451d17;
}
.usecase-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.usecase-body {
  padding: 26px 28px 30px;
}

/* Publications list. */
.pub-group {
  margin-top: 64px;
}
.pub-group > h3 {
  font-size: 0.75rem;
  font-weight: 650;
  letter-spacing: 0.13em;
  color: #245e20;
  padding-bottom: 16px;
  border-bottom: 1px solid #23451e30;
}
.pub-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.pub-list li {
  border-bottom: 1px solid #23451e20;
}
.pub-list a {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 32px;
  padding: 22px 0;
}
.pub-list strong {
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.45;
  color: #17291a;
}
.pub-list a > span:last-child {
  grid-row: span 2;
  align-self: center;
  font-size: 0.875rem;
  font-weight: 650;
  color: #2d5d20;
}
.pub-list em {
  font-style: normal;
  font-size: 0.875rem;
  color: #748071;
}
.pub-list a:hover strong {
  color: #144d10;
  text-decoration: underline;
  text-underline-offset: 5px;
}

/* Long-form white paper. */
.paper-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 720px);
  gap: 80px;
  justify-content: center;
}
.paper-toc {
  position: sticky;
  top: 120px;
  align-self: start;
  font-size: 0.875rem;
}
.paper-toc p {
  font-size: 0.75rem;
  font-weight: 650;
  letter-spacing: 0.13em;
  color: #245e20;
  margin-bottom: 14px;
}
.paper-toc ol {
  list-style: none;
  margin: 0;
  padding: 0;
  border-left: 1px solid #23451e25;
}
.paper-toc a {
  display: block;
  padding: 8px 0 8px 16px;
  color: #5f7056;
  line-height: 1.45;
}
.paper-toc a:hover {
  color: #144d10;
}
.paper {
  font-size: 1.0625rem;
  color: #3c4d38;
}
.paper h2 {
  font-size: clamp(1.75rem, 2.4vw, 2.3rem);
  letter-spacing: -0.045em;
  line-height: 1.2;
  margin: 72px 0 22px;
  color: #17291a;
  scroll-margin-top: 110px;
}
.paper > h2:first-child {
  margin-top: 0;
}
.paper h3 {
  font-size: 1.25rem;
  font-weight: 650;
  letter-spacing: -0.03em;
  margin: 40px 0 12px;
  color: #263c20;
}
.paper p + p,
.paper ul + p,
.paper ol + p {
  margin-top: 18px;
}
.paper ul,
.paper ol {
  margin: 18px 0 0;
  padding-left: 22px;
  line-height: 1.75;
}
.paper li + li {
  margin-top: 10px;
}
.paper li strong {
  color: #263c20;
}
.paper-abstract {
  background: #f3f6ee;
  border: 1px solid #24451d17;
  border-left: 3px solid #245e20;
  border-radius: 8px;
  padding: 28px 30px;
}
.paper-abstract > span {
  display: block;
  font-size: 0.75rem;
  font-weight: 650;
  letter-spacing: 0.13em;
  color: #245e20;
  margin-bottom: 10px;
}
.paper .equation {
  margin: 24px 0;
  padding: 20px 24px;
  background: #fff;
  border: 1px solid #24451d17;
  border-radius: 8px;
  text-align: center;
  font-family: "Cambria Math", "STIX Two Math", Georgia, serif;
  font-size: 1.25rem;
  overflow-x: auto;
}
.paper var {
  font-family: "Cambria Math", "STIX Two Math", Georgia, serif;
}
.paper .table-scroll {
  margin-top: 26px;
}
.paper-end {
  margin-top: 72px;
  padding-top: 28px;
  border-top: 1px solid #23451e25;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

@media (min-width: 1650px) {
  .page-hero {
    padding-left: max(4.6%, calc((100vw - 1600px) / 2));
    padding-right: max(4.6%, calc((100vw - 1600px) / 2));
  }
}
@media (max-width: 1050px) {
  .hero-tiles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .hero-tiles.is-contact {
    grid-template-columns: 1fr;
  }
  .is-contact .hero-tile {
    min-height: 0;
  }
  .usecase-mosaic {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .card-grid {
    grid-template-columns: 1fr 1fr;
  }
  .paper-layout {
    grid-template-columns: minmax(0, 720px);
  }
  .paper-toc {
    position: static;
  }
}
@media (max-width: 900px) {
  .paper-covers {
    grid-template-columns: 1fr;
  }
  .feature-split,
  .point-grid {
    grid-template-columns: 1fr;
  }
  .feature-split {
    gap: 40px;
  }
}
@media (max-width: 720px) {
  .page-hero {
    padding-bottom: 56px;
  }
  .page-hero h1 {
    font-size: clamp(2.5rem, 10vw, 4.5rem);
    overflow-wrap: break-word;
  }
  .page-hero.has-visual .hero-title-row {
    margin-bottom: 32px;
  }
  /* A 21:9 banner is too shallow on phones; show the fuller picture instead. */
  .page-hero .detection-scene {
    aspect-ratio: 4 / 3;
  }
  /* Covers keep 16:9 so the MudCar detection box stays aligned. */
  .paper-covers .detection-scene {
    aspect-ratio: 16 / 9;
  }
  .page-hero.hero-standalone {
    padding-bottom: 72px;
  }
  .usecase-mosaic {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .paper-cover-body {
    padding: 22px;
  }
  .plan-readout {
    top: 12px;
    right: 12px;
    min-width: 0;
    padding: 8px 10px;
  }
  .plan-readout span {
    font-size: 0.5625rem;
  }
  .plan-readout strong {
    font-size: 0.875rem;
  }
  .plan-readout em {
    font-size: 0.6875rem;
  }
  /* Five room buttons wrap onto two rows instead of running off the screen. */
  .plan-nav {
    flex: 1 1 100%;
    flex-shrink: 1;
    border-radius: 18px;
  }
  .plan-nav button {
    flex: 1 1 auto;
  }
  .plan-scene .scene-tag {
    display: none;
  }
  /* A square plan shows fewer rooms at once, but large enough to read and tap. */
  .page-hero .plan-scene {
    aspect-ratio: 1 / 1;
  }
  .plan-scene svg text {
    font-size: 19px;
  }
  .table-hint {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    margin: 32px 0 -36px;
    font-size: 0.8125rem;
    font-weight: 650;
    color: #2d5d20;
  }
  .compare-table {
    min-width: 560px;
  }
  /* White-paper tables become one card per row, each value labelled. */
  .paper .data-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }
  .paper .data-table,
  .paper .data-table tbody,
  .paper .data-table tr,
  .paper .data-table th,
  .paper .data-table td {
    display: block;
  }
  .paper .data-table tr {
    padding: 18px 18px 12px;
    border-bottom: 1px solid #24451d17;
  }
  .paper .data-table tr:last-child {
    border-bottom: 0;
  }
  .paper .data-table tbody th {
    padding: 0 0 8px;
    border: 0;
    font-size: 1.0625rem;
  }
  .paper .data-table td {
    padding: 6px 0;
    border: 0;
  }
  .paper .data-table td:before {
    content: attr(data-label);
    display: block;
    margin-bottom: 2px;
    font-size: 0.6875rem;
    font-weight: 650;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #5d7057;
  }
  /* About numbers read as rows: the figure beside its label. */
  .page-hero .hero-tiles.about-tiles {
    grid-template-columns: 1fr;
  }
  .about-tiles .hero-tile:not(.is-accent) {
    display: grid;
    grid-template-columns: 92px 1fr;
    column-gap: 18px;
    align-items: center;
    padding: 18px 20px;
  }
  .about-tiles .hero-tile:not(.is-accent) > span:first-child {
    grid-column: 2;
  }
  .about-tiles .hero-tile:not(.is-accent) strong {
    grid-column: 1;
    grid-row: 1 / span 2;
    margin: 0;
    padding: 0;
    font-size: 2.75rem;
  }
  .about-tiles .hero-tile:not(.is-accent) p {
    grid-column: 2;
    margin-top: 4px;
    font-size: 0.9375rem;
  }
  .plan-alert {
    left: 12px;
    right: 12px;
    bottom: 12px;
    max-width: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    padding: 8px 11px;
    font-size: 0.75rem;
  }
  /* The alert covers the disclaimer's corner on phones. */
  .plan-scene.is-alert .scene-disclaimer {
    visibility: hidden;
  }
  .hero-tiles,
  .hero-tiles.is-contact {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .hero-tiles:not(.is-contact) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .hero-tiles:not(.is-contact) .is-accent {
    grid-column: 1 / -1;
  }
  .hero-tile {
    min-height: 0;
    padding: 24px;
  }
  .hero-tile strong {
    font-size: clamp(2.75rem, 12vw, 3.5rem);
  }
  .card-grid {
    grid-template-columns: 1fr;
  }
  .info-card {
    padding: 26px;
  }
  .usecase-card {
    padding: 0;
  }
  .pub-list a {
    grid-template-columns: 1fr;
  }
  .pub-list a > span:last-child {
    grid-row: auto;
  }
  .paper {
    font-size: 1rem;
  }
  .paper-abstract {
    padding: 22px;
  }
  .data-table th,
  .data-table td {
    padding: 14px 16px;
  }
}
