:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --text: #101010;
  --muted: #8c8c8c;
  --line: #e7e7e1;
  --green: #0aaa2a;
  --green-dark: #079322;
  --dot: #cfcfc9;
  --max-width: 1320px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

#products,
#technology,
#backers,
#press {
  scroll-margin-top: 110px;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", Arial, Helvetica, sans-serif;
}

img {
  display: block;
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.page {
  width: min(100% - 56px, var(--max-width));
  margin: 0 auto;
  padding: 18px 0 44px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: var(--bg);
  padding: 18px 0 28px;
}

.header-inner {
  width: min(100% - 56px, var(--max-width));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.main-content {
  width: min(100% - 120px, 1220px);
  margin: 0 auto;
  padding-top: 160px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 150px;
  min-width: 150px;
}

.brand img {
  height: auto;
  object-fit: contain;
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  background: #111111;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.main-nav a {
  color: #000000;
}

.main-nav a:not(.buy-button) {
  font-size: 20px;
  font-weight: 500;
}

.main-nav a.buy-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid #dcdcdc;
  border-radius: 5px;
  background: #028515;
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
}

.hero {
  padding: 8px 0 48px;
}

.hero-copy h1 {
  max-width: 900px;
  margin: 0;
  font-size: 64px;
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hero-copy h1 .hero-line-desktop {
  color: inherit;
}

.hero-copy h1 .hero-line-mobile {
  display: none;
  color: inherit;
}

.hero-copy h1 .hero-highlight {
  color: #04ac1c;
}

.hero-copy h1 .hero-period {
  display: inline-block;
  width: 0.18em;
  height: 0.18em;
  margin-left: 0.06em;
  border-radius: 50%;
  color: #000000;
  background: #000000;
  vertical-align: baseline;
  transform: translateY(-0.02em);
}

.hero-copy p {
  margin: 20px 0 0;
  color: #000000bf;
  font-size: 24px;
}

.product-section {
  display: grid;
  grid-template-columns: minmax(520px, 1fr) 500px;
  column-gap: 80px;
  align-items: start;
  padding: 20px 0 54px;
}

.product-section > * {
  min-width: 0;
}

.product-section.reverse {
  grid-template-columns: 500px minmax(520px, 1fr);
}

.product-copy-stack {
  max-width: 520px;
}

.product-section.reverse .product-copy-stack {
  margin-top: 44px;
}

.product-features {
  margin-top: 44px;
}

.product-section.reverse .carousel-block {
  margin-top: 128px;
}

.product-copy h2 {
  margin: 0 0 20px;
  font-size: 48px;
  line-height: 1;
}

.product-copy > p,
.feature-block p {
  margin: 0;
  color: var(--muted);
  font-size: 24px;
  line-height: 1.55;
}

.feature-block {
  margin-top: 0;
}

.feature-block h3 {
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 1.3;
}

.feature-block + .feature-block {
  margin-top: 44px;
}

.carousel-block {
  display: grid;
  justify-items: center;
  gap: 10px;
  margin-top: 72px;
}

.carousel-frame {
  width: min(100%, 500px);
  aspect-ratio: 1 / 1;
  height: auto;
  background: var(--surface);
  overflow: hidden;
}

.carousel-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.carousel-dots {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 46px;
  height: 8px;
}

.carousel-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--dot);
}

.carousel-dot-indicator {
  position: absolute;
  top: 0;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--green);
  transition: transform 260ms ease;
}

.carousel-arrow {
  border: 0;
  background: transparent;
  color: #9d9d9d;
  width: 24px;
  height: 24px;
  min-width: 24px;
  padding: 0;
  line-height: 1;
  cursor: pointer;
  transition:
    color 180ms ease,
    opacity 180ms ease;
}

.carousel-arrow svg {
  display: block;
  width: 100%;
  height: 100%;
}

.carousel-arrow:hover {
  color: #4d4d4d;
}

.carousel-arrow.is-hidden {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.technology-section {
  padding: 86px 0 24px;
}

.technology-full-width {
  width: calc(100% + 96px);
  margin-left: -48px;
  margin-right: -48px;
}

.technology-section h2 {
  margin: 0 0 38px;
  font-size: 48px;
  line-height: 1;
  text-align: center;
}

.technology-layout {
  display: grid;
  grid-template-columns: minmax(280px, 260px) minmax(0, 1fr);
  gap: 56px;
  align-items: start;
}

.technology-copy {
  padding-top: 34px;
}

.technology-copy h3 {
  margin: 0 0 14px;
  font-size: 24px;
  line-height: 1.25;
}

.technology-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 24px;
  line-height: 1.55;
}

.technology-video-embed {
  width: 900px;
  height: 500px;
  max-width: 100%;
}

.technology-video-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.backers-section {
  padding: 92px 0 24px;
}

.backers-section h2 {
  margin: 0 0 42px;
  font-size: 48px;
  line-height: 1;
  text-align: center;
}

.backers-rows-grid {
  display: grid;
  gap: 0;
}

.backers-grid {
  display: grid;
  grid-template-columns: repeat(4, max-content);
  align-items: center;
  justify-content: center;
  gap: 18px 42px;
}

.backers-grid-three {
  grid-template-columns: repeat(3, max-content);
}

.backers-grid-two {
  grid-template-columns: repeat(2, max-content);
}

.backers-logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 182px;
}

.backers-logo {
  width: auto;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.backers-logo-gsv {
  max-height: 132px;
}

.backers-logo-futureclimate {
  max-height: 168px;
}

.backers-logo-masschallenge {
  max-height: 148px;
}

.backers-logo-capitalfactory {
  max-height: 148px;
}

.backers-logo-gaingels {
  max-height: 88px;
}

.backers-logo-climate {
  max-height: 126px;
}

.backers-logo-goahead {
  max-height: 108px;
}

.backers-logo-greentown {
  max-height: 108px;
}

.backers-logo-diagle {
  max-height: 108px;
}

.backers-logo-ascend {
  max-height: 108px;
}

.backers-logo-4ward {
  max-height: 84px;
}

.backers-logo-rga {
  max-height: 84px;
}

.backers-logo-snocap {
  width: min(100%, 260px);
  max-height: none;
}

.press-section {
  padding: 96px 0 40px;
}

.press-section h2 {
  margin: 0 0 42px;
  font-size: 48px;
  line-height: 1;
  text-align: center;
}

.press-rows {
  display: grid;
  gap: 34px;
}

.press-row {
  display: grid;
}

.press-row-two-up {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 96px;
  align-items: start;
}

.press-row-awards-bottom .press-card {
  align-items: start;
}

.press-row-centered {
  justify-items: center;
}

.press-card {
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr);
  align-items: center;
  gap: 28px;
}

.press-card-wide {
  grid-template-columns: 230px minmax(0, 1fr);
}

.press-card-reverse {
  grid-template-columns: minmax(0, 1fr) 230px;
}

.press-card-center {
  grid-template-columns: 1fr 180px;
  align-items: end;
}

.press-card-sxsw {
  grid-template-columns: 240px 210px;
  align-items: center;
  gap: 10px;
}

.press-card-compact {
  width: 100%;
  grid-template-columns: 240px minmax(220px, 1fr);
  align-items: center;
  gap: 28px;
}

.press-card-compact .press-copy {
  max-width: 240px;
}

.press-card-compact .press-title {
  font-size: 24px;
  line-height: 1.35;
}

.press-card-compact .press-date {
  margin-top: 10px;
  font-size: 24px;
  line-height: 1.2;
}

.press-logo-verge {
  max-width: 190px;
}

.press-logo {
  width: 100%;
  max-width: 230px;
  height: auto;
  object-fit: contain;
}

.press-logo-startup {
  max-width: 190px;
}

.press-logo-adma {
  max-width: 225px;
}

.press-logo.press-logo-rice {
  max-width: 190px;
}

.press-logo-sxsw {
  max-width: 220px;
}

.press-card-rice {
  grid-template-columns: 240px 210px;
  align-items: center;
}

.press-copy {
  min-width: 0;
}

.press-title,
.press-date {
  margin: 0;
}

.press-title {
  font-size: 24px;
  line-height: 1.45;
  color: #111111;
}

.press-title a,
.press-date a {
  color: inherit;
  text-decoration: none;
  font: inherit;
  line-height: inherit;
}

.press-date {
  margin-top: 8px;
  font-size: 24px;
  line-height: 1.35;
  color: var(--muted);
}

.site-footer {
  padding: 92px 0 8px;
  width: calc(100% + 96px);
  margin-left: -48px;
  margin-right: -48px;
}

.footer-divider {
  width: 100%;
  height: 1px;
  background: #e8e8e3;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  gap: 24px;
  padding-top: 18px;
}

.footer-copy p {
  margin: 0;
  font-size: 24px;
  line-height: 1.45;
  color: #000000;
}

.footer-center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.footer-social {
  display: inline-block;
}

.footer-social img {
  display: block;
  width: auto;
  height: auto;
  max-height: 18px;
}

.footer-contact {
  font-size: 16px;
  font-size: 16px;
  font-weight: 500;
  color: #000000;
}

.footer-top {
  position: fixed;
  right: 24px;
  bottom: 42px;
  z-index: 120;
  display: inline-block;
}

.footer-top img {
  display: block;
  width: auto;
  height: auto;
  max-height: 40px;
}

@media (max-width: 1200px) {
  #products,
  #technology,
  #backers,
  #press {
    scroll-margin-top: 120px;
  }

  .header-inner {
    width: min(100% - 40px, var(--max-width));
  }

  .main-content {
    width: min(100% - 56px, 1040px);
    padding-top: 138px;
  }

  .main-nav {
    gap: 24px;
  }

  .main-nav a:not(.buy-button) {
    font-size: 18px;
  }

  .main-nav a.buy-button {
    min-height: 44px;
    padding: 0 18px;
    font-size: 17px;
  }

  .hero-copy h1 {
    max-width: 860px;
    font-size: clamp(44px, 5.4vw, 60px);
  }

  .hero-copy p {
    font-size: 20px;
  }

  .product-section {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 38vw);
    grid-template-areas:
      "intro intro"
      "features carousel";
    column-gap: 32px;
    row-gap: 36px;
  }

  .product-section.reverse {
    grid-template-columns: minmax(320px, 38vw) minmax(0, 1fr);
    grid-template-areas:
      "intro intro"
      "carousel features";
    row-gap: 36px;
  }

  .product-copy-stack {
    display: contents;
  }

  .product-intro {
    grid-area: intro;
  }

  .product-features {
    margin-top: 0;
    grid-area: features;
  }

  .carousel-block {
    grid-area: carousel;
  }

  .carousel-block {
    width: 100%;
    max-width: 420px;
  }

  .product-section .carousel-block {
    justify-self: end;
    margin-top: 32px;
    padding-right: 18px;
  }

  .product-section.reverse .carousel-block {
    justify-self: start;
    margin-top: 48px;
    padding-right: 0;
    padding-left: 18px;
  }

  .product-section.reverse .product-copy-stack {
    margin-top: 0;
  }

  .product-copy h2,
  .technology-section h2,
  .backers-section h2,
  .press-section h2 {
    font-size: 42px;
  }

  .product-copy > p,
  .feature-block p,
  .feature-block h3,
  .technology-copy p,
  .technology-copy h3,
  .press-title,
  .press-date {
    font-size: 20px;
  }

  .backers-rows-grid {
    gap: 10px;
  }

  .backers-grid,
  .backers-grid-three,
  .backers-grid-two {
    width: min(100%, 1040px);
    margin: 0 auto;
    justify-content: stretch;
    justify-items: center;
    gap: 16px 24px;
  }

  .backers-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .backers-grid-three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .backers-grid-two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .backers-logo-card {
    min-width: 0;
    min-height: 148px;
    padding-inline: 10px;
  }

  .backers-logo-gsv,
  .backers-logo-futureclimate,
  .backers-logo-masschallenge,
  .backers-logo-capitalfactory,
  .backers-logo-gaingels,
  .backers-logo-climate,
  .backers-logo-goahead,
  .backers-logo-greentown,
  .backers-logo-diagle,
  .backers-logo-ascend,
  .backers-logo-4ward,
  .backers-logo-rga,
  .backers-logo-snocap {
    max-width: 100%;
  }

  .carousel-frame {
    width: min(100%, 420px);
    height: auto;
  }

  .technology-full-width {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .technology-layout {
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 32px;
  }

  .technology-video-embed {
    width: 100%;
    height: auto;
  }

  .technology-video-embed iframe {
    aspect-ratio: 16 / 9;
    height: auto;
  }

  .site-footer {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-left: 24px;
    padding-right: 24px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 8px;
  }

  .footer-copy p:first-child {
    white-space: nowrap;
  }

  .footer-center {
    justify-content: flex-start;
  }
}

@media (min-width: 861px) and (max-width: 1024px) {
  .main-content {
    width: min(100% - 40px, 100%);
  }

  .press-rows {
    gap: 26px;
  }

  .press-card-wide {
    grid-template-columns: 160px minmax(0, 1fr);
    gap: 20px;
  }

  .press-card-reverse {
    grid-template-columns: minmax(0, 1fr) 160px;
    gap: 20px;
  }

  .press-row-two-up {
    gap: 36px;
  }

  .press-card-compact {
    width: 100%;
    grid-template-columns: minmax(0, 1fr) 140px;
    gap: 16px;
  }

  .press-card-compact .press-copy {
    max-width: none;
  }

  .press-card-compact .press-title,
  .press-card-compact .press-date,
  .press-card-sxsw .press-title,
  .press-card-sxsw .press-date {
    font-size: 20px;
  }

  .press-card-rice {
    grid-template-columns: minmax(0, 1fr) 150px;
  }

  .press-card-sxsw {
    grid-template-columns: 1fr 180px;
    gap: 16px;
  }

  .press-logo-verge {
    max-width: 120px;
  }

  .press-logo-startup {
    max-width: 130px;
  }

  .press-logo-adma {
    max-width: 150px;
  }

  .press-logo.press-logo-rice {
    max-width: 140px;
  }

  .press-logo-sxsw {
    max-width: 170px;
  }
}

@media (max-width: 860px) {
  #products,
  #technology,
  #backers,
  #press {
    scroll-margin-top: 100px;
  }

  .site-header {
    padding: 14px 0 20px;
  }

  .header-inner {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 14px;
  }

  .technology-layout {
    grid-template-columns: 1fr;
  }

  .nav-toggle {
    display: inline-block;
    justify-self: end;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 18px;
    border: 1px solid #e6e6e0;
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 14px 28px rgba(17, 17, 17, 0.08);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-content {
    width: min(100% - 40px, var(--max-width));
    padding-top: 126px;
  }

  .hero-copy h1 {
    max-width: 100%;
    font-size: clamp(38px, 5.6vw, 46px);
    line-height: 1.08;
  }

  .hero-copy p {
    font-size: 20px;
  }

  .product-copy {
    max-width: none;
  }

  .product-section {
    grid-template-columns: minmax(0, 1fr) minmax(220px, 38vw);
    grid-template-areas:
      "intro intro"
      "features carousel";
    column-gap: 20px;
    row-gap: 32px;
    padding-bottom: 44px;
  }

  .product-section.reverse {
    grid-template-columns: minmax(220px, 38vw) minmax(0, 1fr);
    grid-template-areas:
      "intro intro"
      "carousel features";
    row-gap: 32px;
  }

  .product-copy h2 {
    font-size: 40px;
  }

  .product-section.reverse .product-copy-stack {
    margin-top: 0;
  }

  .product-copy > p,
  .feature-block p {
    font-size: 18px;
    line-height: 1.45;
  }

  .product-features {
    margin-top: 32px;
  }

  .product-section .product-features,
  .product-section.reverse .product-features {
    margin-top: 0;
  }

  .feature-block {
    margin-top: 0;
  }

  .feature-block h3 {
    margin-bottom: 8px;
    font-size: 20px;
  }

  .feature-block + .feature-block {
    margin-top: 32px;
  }

  .carousel-block {
    max-width: 320px;
    margin-top: 40px;
    padding-left: 0;
    padding-right: 0;
  }

  .product-section .carousel-block {
    justify-self: end;
    margin-top: 28px;
  }

  .product-section.reverse .carousel-block {
    justify-self: start;
    margin-top: 40px;
    padding-left: 0;
    padding-right: 0;
  }

  .carousel-frame {
    width: min(100%, 320px);
    height: auto;
  }

  .technology-copy {
    padding-top: 0;
  }

  .press-rows {
    gap: 24px;
  }

  .press-row,
  .press-row-two-up,
  .press-row-centered {
    display: contents;
  }

  .press-row-two-up {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .press-row-centered {
    justify-items: start;
  }

  .backers-rows-grid {
    gap: 14px;
  }

  .backers-grid,
  .backers-grid-three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: stretch;
    justify-items: center;
    gap: 10px 20px;
  }

  .backers-grid-two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: stretch;
    justify-items: center;
    gap: 10px 20px;
  }

  .backers-grid-three .backers-logo-card:last-child {
    grid-column: 1 / -1;
    justify-self: center;
  }

  .backers-logo-card {
    min-height: 88px;
  }

  .backers-logo-gsv,
  .backers-logo-futureclimate,
  .backers-logo-masschallenge,
  .backers-logo-capitalfactory,
  .backers-logo-gaingels,
  .backers-logo-climate,
  .backers-logo-goahead,
  .backers-logo-greentown,
  .backers-logo-diagle,
  .backers-logo-ascend,
  .backers-logo-4ward,
  .backers-logo-rga,
  .backers-logo-snocap {
    max-height: 86px;
  }

  .backers-logo-snocap {
    width: min(100%, 240px);
    max-height: none;
  }

  .press-card,
  .press-card-wide,
  .press-card-compact,
  .press-card-center,
  .press-card-rice,
  .press-card-sxsw,
  .press-card-reverse {
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 16px;
    align-items: center;
    justify-items: start;
    text-align: left;
    min-height: 96px;
    margin: 0;
    padding: 0;
  }

  .press-card > :not(.press-copy) {
    order: 1;
    width: 100%;
    justify-self: start;
    align-self: center;
  }

  .press-card > a:not(.press-copy) {
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }

  .press-card > a:not(.press-copy) img {
    width: 100%;
  }

  .press-card > img {
    align-self: center;
  }

  .press-card .press-copy {
    order: 2;
    max-width: none;
    align-self: center;
  }

  .press-card-compact .press-title,
  .press-card-rice .press-title,
  .press-card-sxsw .press-title {
    font-size: 20px;
    line-height: 1.35;
  }

  .press-card-compact .press-date,
  .press-card-rice .press-date,
  .press-card-sxsw .press-date {
    font-size: 20px;
    line-height: 1.2;
    margin-top: 10px;
  }

  .press-logo {
    max-width: 120px;
    justify-self: start;
  }

  .press-card-rice .press-logo.press-logo-rice {
    transform: none;
  }

  .footer-content {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 14px;
    padding-left: 0;
  }

  .footer-center {
    justify-content: flex-start;
  }

  .footer-top {
    right: 14px;
    bottom: 26px;
  }

  .site-footer {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 680px) {
  .product-section,
  .product-section.reverse {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .product-copy-stack {
    display: contents;
  }

  .product-features {
    margin-top: 0;
  }

  .product-intro {
    grid-area: intro;
  }

  .carousel-block {
    grid-area: carousel;
  }

  .product-features {
    grid-area: features;
  }

  .product-section,
  .product-section.reverse {
    grid-template-areas:
      "intro"
      "carousel"
      "features";
  }

  .carousel-block,
  .product-section.reverse .carousel-block {
    margin-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .product-section .carousel-block,
  .product-section.reverse .carousel-block {
    justify-self: center;
  }

  .carousel-frame {
    width: min(100%, 500px);
    height: auto;
  }

  .carousel-frame img {
    aspect-ratio: 1 / 1;
    height: auto;
  }
}

@media (max-width: 560px) {
  #products,
  #technology,
  #backers,
  #press {
    scroll-margin-top: 88px;
  }

  .page {
    width: min(100% - 28px, var(--max-width));
    padding-top: 16px;
  }

  .header-inner {
    width: min(100% - 28px, var(--max-width));
  }

  .main-content {
    width: 100%;
    padding-top: 112px;
  }

  .brand {
    width: 130px;
    min-width: 130px;
  }

  .main-nav a:not(.buy-button) {
    font-size: 16px;
  }

  .main-nav a.buy-button {
    min-height: 38px;
    padding: 0 14px;
    font-size: 16px;
  }

  .hero {
    padding-bottom: 34px;
  }

  .hero-copy h1 {
    font-size: 38px;
  }

  .hero-copy h1 .hero-line-desktop {
    display: none;
  }

  .hero-copy h1 .hero-line-mobile {
    display: inline;
  }

  .hero-copy p,
  .product-copy > p,
  .feature-block p,
  .technology-copy p,
  .press-title,
  .press-date {
    font-size: 18px;
  }

  .product-copy h2 {
    font-size: 34px;
  }

  .feature-block h3,
  .technology-copy h3 {
    font-size: 20px;
  }

  .product-section {
    gap: 28px;
    padding-bottom: 40px;
  }

  .technology-section {
    padding-top: 56px;
  }

  .technology-full-width {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .technology-section h2 {
    margin-bottom: 28px;
    font-size: 40px;
  }

  .technology-copy p,
  .technology-copy h3 {
    font-size: 24px;
  }

  .backers-section {
    padding-top: 60px;
  }

  .backers-section h2 {
    margin-bottom: 28px;
    font-size: 40px;
  }

  .backers-rows-grid {
    gap: 8px;
  }

  .backers-grid,
  .backers-grid-three,
  .backers-grid-two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px 14px;
    justify-items: center;
  }

  .backers-grid-three .backers-logo-card:last-child {
    grid-column: 1 / -1;
  }

  .backers-logo-card {
    min-height: 76px;
  }

  .backers-logo-gsv,
  .backers-logo-futureclimate,
  .backers-logo-masschallenge,
  .backers-logo-capitalfactory,
  .backers-logo-gaingels,
  .backers-logo-climate,
  .backers-logo-goahead,
  .backers-logo-greentown,
  .backers-logo-diagle,
  .backers-logo-ascend,
  .backers-logo-4ward,
  .backers-logo-rga,
  .backers-logo-snocap {
    max-height: 64px;
  }

  .backers-logo-snocap {
    width: min(100%, 200px);
    max-height: none;
  }

  .press-section {
    padding-top: 64px;
  }

  .press-section h2 {
    margin-bottom: 28px;
    font-size: 40px;
  }

  .press-title,
  .press-date {
    font-size: 18px;
  }

  .press-card,
  .press-card-wide,
  .press-card-compact,
  .press-card-center,
  .press-card-rice,
  .press-card-sxsw {
    grid-template-columns: 104px minmax(0, 1fr);
    gap: 14px;
    min-height: 82px;
  }

  .press-card-reverse {
    grid-template-columns: 104px minmax(0, 1fr);
    gap: 14px;
    min-height: 82px;
  }

  .press-logo {
    max-width: 104px;
  }

  .press-card-rice .press-logo.press-logo-rice {
    transform: none;
  }

  .press-card-compact .press-title,
  .press-card-rice .press-title,
  .press-card-sxsw .press-title {
    font-size: 18px;
  }

  .press-card-compact .press-date,
  .press-card-rice .press-date,
  .press-card-sxsw .press-date {
    font-size: 18px;
  }

  .site-footer {
    padding-top: 64px;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-left: 14px;
    padding-right: 14px;
  }

  .footer-content {
    padding-left: 0;
  }

  .footer-copy p {
    font-size: 18px;
  }

  .footer-contact {
    font-size: 15px;
  }

  .footer-top img {
    max-height: 34px;
  }

  .technology-video-embed {
    width: 100%;
    height: auto;
  }

  .technology-video-embed iframe {
    aspect-ratio: 16 / 9;
    height: auto;
  }
}
