:root {
  --bg: #171c20;
  --surface: #20262b;
  --ink: #edf0f1;
  --muted: #b5bcc1;
  --accent: #61c973;
  --green-ink: #77d68a;
  --rule: #3a434a;
  --paper: #20262b;
  --dark: #142219;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
h1,
h2,
h3,
p,
figure {
  margin: 0;
}
h1,
h2,
h3 {
  line-height: 1.12;
  font-weight: 500;
}
h1,
h2 {
  letter-spacing: -2px;
}
h2 {
  font-size: clamp(34px, 3.7vw, 50px);
}
p {
  color: var(--muted);
}
.wrap {
  width: min(1240px, calc(100% - 96px));
  margin-inline: auto;
}
.section {
  padding: 88px 0;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 22px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--green-ink);
}
.status-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}
a:focus-visible,
button:focus-visible,
video:focus-visible {
  outline: 3px solid #28773b;
  outline-offset: 5px;
}
.skip-link {
  position: fixed;
  top: -100px;
  left: 16px;
  padding: 12px;
  background: var(--accent);
  color: var(--dark);
  z-index: 100;
}
.skip-link:focus {
  top: 12px;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #171c20f5;
  border-bottom: 1px solid var(--rule);
  backdrop-filter: blur(14px);
}
.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 88px;
  gap: 30px;
}
.logo img {
  width: 176px;
  height: auto;
}
.nav-links {
  display: flex;
  gap: 26px;
  align-items: center;
  font-size: 13px;
  font-weight: 500;
}
.nav-links a:hover,
.text-link:hover {
  color: var(--green-ink);
}
.nav-contact {
  background: var(--accent);
  color: var(--dark);
  padding: 10px 18px;
  border-radius: 3px;
}
.nav-contact span {
  margin-left: 24px;
}
.menu-toggle {
  display: none;
}

/* The split landscape and product introduction echo the app sign-in designs. */
.hero {
  background: transparent;
}
.hero-layout {
  display: grid;
  grid-template-columns: 55% 45%;
  min-height: 650px;
  max-width: 1920px;
  margin-inline: auto;
}
.hero-landscape {
  position: relative;
  min-height: 650px;
  overflow: hidden;

  background: transparent;
}
.mine-landscape {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-landscape::after {
  content: "";
  position: absolute;
  inset: 0;

  background:
    linear-gradient(90deg, transparent 70%, #171c20 100%),
    linear-gradient(180deg, transparent 28%, #171c2066 62%, #171c20 100%);
}
.hero-statement {
  position: absolute;
  z-index: 1;
  bottom: 48px;
  left: max(48px, calc((100vw - 1240px) / 2));
  right: 28px;
}
.hero-statement h1 {
  color: #f5f6f5;
  font-size: clamp(48px, 5vw, 74px);
  font-weight: 350;
  line-height: 1.04;
  letter-spacing: -2.6px;
}
.hero-statement .landscape-label {
  color: #e4e7e7;
  font-size: 10px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin-bottom: 25px;
}
.brand-rule {
  display: block;
  width: 76px;
  height: 3px;
  margin: 26px 0 21px;
  background: var(--accent);
}
.hero-statement > p:last-child {
  color: #d4dadd;
  font-size: 16px;
}
.hero-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  padding: 54px clamp(36px, 5.6vw, 82px);

  background: transparent;
}
.hero-intro .eyebrow {
  color: #adb5bb;
  font-weight: 400;
  font-size: 11px;
  margin-bottom: 24px;
}
.hero-intro h2 {
  color: #f0f2f2;
  font-size: clamp(36px, 3.25vw, 48px);
  font-weight: 400;
  letter-spacing: -1.5px;
}
.hero-lede {
  font-size: 18px;
  color: #c1c7cb;
  line-height: 1.6;
  margin-top: 24px;
  max-width: 470px;
}
.hero-detail {
  font-size: 14px;
  color: #a7b1b9;
  line-height: 1.75;
  margin-top: 18px;
  max-width: 460px;
}
.button {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  padding: 14px 21px;
  border-radius: 3px;
  background: var(--accent);
  color: #102b17;
  font-size: 13px;
  font-weight: 600;
  transition:
    background 0.15s,
    transform 0.15s;
}
.button:hover {
  background: #7bd98b;
  transform: translateY(-2px);
}
.hero-cta {
  margin: 30px 0 20px;
  width: 100%;
  max-width: 440px;
}
.text-link {
  color: #d4dade;
  font-size: 13px;
}
.text-link span {
  margin-left: 15px;
  color: var(--accent);
}
.hero-note {
  color: #98a5ae;
  font-size: 11px;
  margin-top: 32px;
}
.hero-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding-block: 24px;
  color: #aab4bc;
  font-size: 10px;
  letter-spacing: 1.1px;

  border-top: 0;
}
.hero-bottom > div {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  font-size: 12px;
  letter-spacing: 0;
}
.hero-bottom > div > span {
  color: #63727b;
}
.hero-bottom a:hover {
  color: var(--accent);
}
.platform {
  background: transparent;
}
.section-heading {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
}
.section-heading > .eyebrow {
  align-self: start;
  padding-top: 8px;
}
.section-heading > div > p {
  max-width: 660px;
  margin-top: 22px;
  font-size: 16px;
}
.product-overview {
  display: grid;
  grid-template-columns: 1fr 1fr;

  gap: 64px;
  margin-top: 36px;
}
.overview-card {
  display: flex;
  flex-direction: column;

  transition:
    border-color 0.15s,
    box-shadow 0.15s;

  background: transparent;
  border: 0;
  border-top: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 28px 24px 22px 0;
}
.overview-card:hover {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}
.card-index {
  display: flex;
  justify-content: space-between;
  color: #aab4bc;
  font-size: 11px;
  margin-bottom: 20px;
}
.card-index span {
  color: var(--green-ink);
  font-size: 20px;
}
.overview-card h3 {
  font-size: 34px;
  letter-spacing: -1px;
}
.overview-card h3 small {
  vertical-align: middle;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0;
  border-radius: 4px;
  padding: 4px 8px;
  background: #29382e;
  color: var(--green-ink);
}
.overview-card > p {
  margin-top: 8px;
  color: var(--green-ink);
  font-size: 13px;
  font-weight: 500;
}
.card-description {
  font-size: 14px;
  color: var(--muted);
  max-width: 350px;
  margin: 18px 0 25px;
}
.card-link {
  display: flex;
  justify-content: space-between;
  gap: 20px;

  padding-top: 17px;
  margin-top: auto;
  font-size: 12px;
  font-weight: 500;

  border-top: 1px solid #ffffff12;
}
.convergence {
  display: flex;
  align-items: center;
  gap: 30px;
  padding-top: 26px;
}
.convergence p {
  max-width: 750px;
  font-size: 13px;
}
.convergence strong {
  color: var(--ink);
}
.convergence > a {
  margin-left: auto;
  color: var(--green-ink);
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
}
.oip > .wrap {
  display: grid;
  grid-template-columns: 0.8fr 1.3fr;
  gap: 45px 60px;
  align-items: center;
}
.product-heading > p {
  margin-top: 24px;
  max-width: 360px;
  font-size: 15px;
}
.demo-frame {
  overflow: hidden;

  background: #1b2227;

  border: 1px solid #ffffff12;
  border-radius: 12px;
  box-shadow: 0 20px 65px #0002;
}
.demo-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: #20262b;
  font-size: 10px;
  color: #b5bec3;
}
.demo-bar .status-dot {
  margin-right: 5px;
}
.demo-frame video {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  background: #263026;
}
.demo-frame figcaption {
  padding: 12px 16px;
  font-size: 11px;
  color: var(--muted);
}
.capabilities {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
.capabilities article {
  padding-top: 22px;

  border-top: 1px solid #ffffff12;
}
.feature-number {
  color: var(--green-ink);
  font-size: 11px;
}
.capabilities h3 {
  font-size: 19px;
  margin: 14px 0 12px;
}
.capabilities p {
  font-size: 14px;
}
.foundations {
  background: transparent;
  border-block: 0;
}
.foundations-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 90px;
  align-items: center;
}
.foundations h2 span {
  color: var(--green-ink);
}
.foundations-copy > p:not(.eyebrow) {
  max-width: 440px;
  margin-top: 23px;
  font-size: 15px;
}
.button-dark {
  margin-top: 30px;
}
.foundation-modules {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
}
.module-title {
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 10px;
  letter-spacing: 1px;
  color: #aab4bc;
}
.foundation-modules article {
  display: flex;
  gap: 22px;
  padding: 21px 0;

  border-top: 1px solid #ffffff12;
}
.foundation-modules article > span {
  color: var(--green-ink);
  font-size: 11px;
  padding-top: 3px;
}
.foundation-modules h3 {
  font-size: 18px;
  margin-bottom: 8px;
}
.foundation-modules p {
  font-size: 13px;
}
.module-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 17px;

  font-size: 10px;
  color: #aab4bc;

  border-top: 1px solid #ffffff12;
}
.operator-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}
.operator h2 {
  margin-bottom: 22px;
}
.operator p:not(.eyebrow) {
  max-width: 460px;
  font-size: 15px;
}
.operator p.product-label {
  color: var(--ink);
  margin-bottom: 15px;
  font-weight: 500;
}
.inline-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  padding: 0;
  margin: 24px 0 30px;
  list-style: none;
  color: var(--green-ink);
  font-size: 11px;
}
.inline-features li::before {
  content: "\2713";
  margin-right: 6px;
}
.phone-stage {
  position: relative;
  height: 435px;
  width: 100%;
  max-width: 480px;
  margin-inline: auto;

  background: radial-gradient(ellipse at center, #52616a40, transparent 70%);
  border-radius: 0;
}
.phone-stage img {
  position: absolute;
  width: 195px;
  border: 1px solid #535e65;
  border-radius: 12px;
  box-shadow: 0 16px 30px #263b2520;
}
.phone-back {
  left: 30px;
  top: 34px;
}
.phone-front {
  right: 25px;
  top: 74px;
}
.team {
  background: transparent;
  border-top: 0;
}
.team-roles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 32px;
  padding-top: 26px;

  border-top: 1px solid #ffffff12;
}
.team-roles h3 {
  font-size: 16px;
  margin-bottom: 12px;
}
.team-roles p {
  font-size: 13px;
}
.contact {
  padding: 64px 0;

  background: radial-gradient(ellipse at 45% 60%, #35434b55, transparent 72%);
}
.contact-inner {
  background: transparent;
  border: 0;
  border-color: transparent;
  border-radius: 0;
  padding: 48px 0;
}
.contact h2 {
  font-size: clamp(38px, 4vw, 55px);
}
.contact-bottom {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-top: 26px;
}
.contact-bottom p {
  font-size: 14px;
}
.contact-bottom a {
  color: var(--green-ink);
  padding-bottom: 7px;
  border-bottom: 1px solid #64816c;
  font-size: clamp(16px, 2vw, 24px);
  font-weight: 500;
}
.contact-bottom a span {
  margin-left: 22px;
}
footer {
  padding: 28px 0 24px;

  background: transparent;
}
.footer-top,
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer-top {
  padding-bottom: 28px;
}
.footer-top .logo img {
  width: 148px;
}
.footer-top > span,
.footer-top > a:last-child {
  color: var(--muted);
  font-size: 12px;
}
.footer-bottom {
  border-top: 1px solid var(--rule);
  padding-top: 20px;
  color: #aab4bc;
  font-size: 10px;
}
::selection {
  background: #c9eec6;
  color: #1b3420;
}
@media (max-width: 1100px) {
  .wrap {
    width: calc(100% - 64px);
  }
  .nav-links {
    gap: 18px;
    font-size: 12px;
  }
  .logo img {
    width: 153px;
  }
  .hero-bottom > div {
    gap: 12px;
    font-size: 11px;
  }
  .foundations-grid,
  .operator-grid {
    gap: 50px;
  }
  .oip > .wrap {
    gap: 40px;
  }
  .phone-stage img {
    width: 43%;
  }
  .phone-back {
    left: 20px;
  }
  .phone-front {
    right: 20px;
  }
  .phone-stage {
    height: 380px;
  }
  .contact-bottom {
    flex-direction: column;
    align-items: start;
    gap: 24px;
  }
}
@media (max-width: 800px) {
  .wrap {
    width: calc(100% - 40px);
  }
  .section {
    padding-block: 60px;
  }
  .nav-inner {
    min-height: 74px;
    flex-wrap: wrap;
    gap: 0;
  }
  .menu-toggle:not([hidden]) {
    display: flex;
    gap: 25px;
    justify-content: space-between;
    background: #1b2227;
    border: 1px solid var(--rule);
    border-radius: 4px;
    color: var(--ink);
    padding: 6px 12px;
    font-size: 12px;
  }
  .nav-links {
    flex-wrap: wrap;
    width: 100%;
    padding: 16px 0;
    gap: 16px;
  }
  .js .nav-links {
    display: none;
  }
  .js .nav-links.is-open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
  .js .nav-links a {
    padding: 10px;
  }
  .hero {
    padding-top: 42px;
  }
  .hero-lede {
    max-width: 580px;
    font-size: 16px;
  }
  .hero-bottom {
    margin-top: 30px;
    flex-wrap: wrap;
    gap: 14px;
  }
  .hero-bottom > div {
    flex-wrap: wrap;
    gap: 10px;
  }
  .section-heading {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .product-overview {
    gap: 16px;
    margin-top: 30px;
  }
  .overview-card {
    padding: 24px;
  }
  .overview-card h3 {
    font-size: 29px;
  }
  .convergence {
    flex-wrap: wrap;
    gap: 14px;
  }
  .convergence > a {
    margin-left: 0;
  }
  .oip > .wrap {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .product-heading > p {
    max-width: 580px;
  }
  .capabilities {
    gap: 24px;
  }
  .capabilities h3 {
    font-size: 17px;
  }
  .foundations-grid,
  .operator-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .foundations-copy > p:not(.eyebrow),
  .operator p:not(.eyebrow) {
    max-width: 580px;
  }
  .phone-stage {
    height: 420px;
    max-width: 440px;
  }
  .phone-stage img {
    width: 44%;
  }
  .phone-back {
    left: 20px;
  }
  .phone-front {
    right: 20px;
  }
  .contact-inner {
    padding: 32px;
  }
  .footer-top,
  .footer-bottom {
    flex-wrap: wrap;
  }
  .footer-top > span {
    display: none;
  }
}
@media (max-width: 480px) {
  .eyebrow {
    font-size: 10px;
    letter-spacing: 1.2px;
  }
  .hero-bottom > div {
    column-gap: 8px;
    font-size: 10px;
  }
  .hero-bottom > div > span {
    display: none;
  }
  .hero-bottom > div > a {
    width: 100%;
  }
  h2 {
    font-size: 35px;
    letter-spacing: -1.4px;
  }
  .product-overview {
    grid-template-columns: 1fr;
  }
  .capabilities {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .capabilities h3 {
    font-size: 19px;
  }
  .foundation-modules {
    padding: 4px 20px 20px;
  }
  .foundation-modules article {
    gap: 15px;
  }
  .module-title {
    font-size: 9px;
  }
  .module-bottom {
    font-size: 9px;
  }
  .team-roles {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .phone-stage {
    height: 350px;
  }
  .phone-stage img {
    width: 44%;
  }
  .phone-back {
    left: 14px;
    top: 25px;
  }
  .phone-front {
    right: 14px;
    top: 55px;
  }
  .contact {
    padding-block: 40px;
  }
  .contact-inner {
    padding: 26px 20px;
  }
  .contact h2 {
    font-size: 36px;
  }
  .contact-bottom a {
    font-size: 16px;
  }
  .contact-bottom a span {
    margin-left: 8px;
  }
  .footer-bottom {
    gap: 12px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}

/* Quiet surfaces, fine borders and restrained brand accents. */
h2 {
  font-weight: 400;
  letter-spacing: -1.5px;
}
.eyebrow {
  color: #aeb8bf;
  font-weight: 400;
}
.nav-links {
  color: #cdd4d8;
  font-weight: 400;
}
.nav-contact {
  background: transparent;
  color: #d7e0db;
  border: 1px solid #53765c;
}
.nav-contact:hover {
  border-color: var(--accent);
}
.overview-card {
  background: transparent;
  border: 0;
  border-top: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 28px 24px 22px 0;
}
.overview-card h3 {
  font-weight: 400;
}
.card-link {
  font-weight: 400;
  color: #d4dade;

  border-top: 1px solid #ffffff12;
}
.card-link span {
  color: var(--accent);
}
.foundation-modules {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
}
.foundations h2 span {
  color: var(--ink);
}
.phone-stage {
  background: radial-gradient(ellipse at center, #52616a40, transparent 70%);
  border-radius: 0;
}
.phone-stage img {
  box-shadow: 0 14px 35px #0003;
}
.contact-inner {
  background: transparent;
  border: 0;
  border-color: transparent;
  border-radius: 0;
  padding: 48px 0;
}
.contact-bottom a {
  color: #83d993;
}
footer {
  background: transparent;
}
.footer-top > span,
.footer-top > a:last-child {
  color: #aeb8bf;
}
@media (min-width: 1921px) {
  .hero-statement {
    left: 100px;
  }
}
@media (max-width: 1100px) {
  .hero-layout {
    grid-template-columns: 52% 48%;
    min-height: 620px;
  }
  .hero-landscape {
    min-height: 620px;
  }
  .hero-statement {
    left: 32px;
    bottom: 40px;
  }
  .hero-statement h1 {
    font-size: 54px;
  }
  .hero-intro {
    padding: 42px 32px;
  }
  .hero-intro h2 {
    font-size: 38px;
  }
  .hero-lede {
    font-size: 16px;
  }
  .hero-bottom > div {
    gap: 12px;
    font-size: 11px;
  }
}
@media (max-width: 800px) {
  .hero {
    padding-top: 0;
  }
  .hero-layout {
    grid-template-columns: 1fr;
  }
  .hero-landscape {
    min-height: 460px;
  }
  .hero-statement {
    left: 28px;
    right: 24px;
    bottom: 32px;
  }
  .hero-statement h1 {
    font-size: clamp(49px, 8vw, 65px);
  }
  .hero-intro {
    padding: 42px 28px;
  }
  .hero-intro h2 {
    font-size: 42px;
  }
  .hero-lede,
  .hero-detail {
    max-width: 600px;
  }
  .hero-cta {
    max-width: 440px;
  }
  .hero-bottom {
    margin-top: 0;
    border-top: 1px solid var(--rule);
  }
}
@media (max-width: 480px) {
  .hero-landscape {
    min-height: 430px;
  }
  .hero-statement {
    left: 20px;
    right: 15px;
    bottom: 28px;
  }
  .hero-statement h1 {
    font-size: clamp(42px, 11.8vw, 54px);
    letter-spacing: -1.7px;
  }
  .hero-statement .landscape-label {
    font-size: 9px;
    margin-bottom: 20px;
  }
  .brand-rule {
    margin: 20px 0 17px;
  }
  .hero-statement > p:last-child {
    font-size: 14px;
  }
  .hero-intro {
    padding: 36px 20px;
  }
  .hero-intro h2 {
    font-size: 36px;
  }
  .hero-lede {
    font-size: 16px;
  }
  .hero-bottom > div > a {
    width: auto;
  }
  .hero-bottom > div {
    gap: 10px 15px;
  }
}

/* One continuous canvas, with soft pools of slate light instead of colour bands. */
main {
  background:
    radial-gradient(ellipse 65% 13% at 85% 24%, #34414b45, transparent),
    radial-gradient(ellipse 75% 16% at 12% 53%, #35424a40, transparent),
    radial-gradient(ellipse 65% 12% at 78% 77%, #34414b38, transparent);
}
.section {
  padding-block: 86px;
}
.site-header {
  border-bottom-color: #ffffff0b;
}
.overview-card {
  position: relative;
}
.overview-card::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 64px;
  height: 1px;
  background: #61c97388;
  transition: width 0.2s ease;
}
.overview-card:hover::after {
  width: 112px;
}
.overview-card:hover .card-link {
  color: var(--accent);
}
.convergence {
  padding-top: 10px;
}
.hero-bottom {
  padding-top: 12px;
  padding-bottom: 28px;
}
.hero-intro {
  padding-left: clamp(30px, 4vw, 58px);
}
.contact-inner {
  width: min(1240px, calc(100% - 96px));
}
.footer-bottom {
  border-top-color: #ffffff12;
}
@media (max-width: 1100px) {
  .contact-inner {
    width: calc(100% - 64px);
  }
}
@media (max-width: 800px) {
  .section {
    padding-block: 60px;
  }
  .hero-landscape::after {
    background: linear-gradient(
      180deg,
      transparent 20%,
      #171c2055 55%,
      #171c20 100%
    );
  }
  .hero-intro {
    padding: 22px 28px 42px;
  }
  .product-overview {
    gap: 28px;
  }
  .overview-card {
    padding-right: 0;
  }
  .contact-inner {
    width: calc(100% - 40px);
    padding: 28px 0;
  }
}
@media (max-width: 480px) {
  .hero-intro {
    padding: 22px 20px 36px;
  }
  .hero-bottom {
    border-top: 0;
  }
  .product-overview {
    gap: 32px;
  }
  .overview-card {
    padding: 24px 0 8px;
  }
  .contact-inner {
    padding: 24px 0;
  }
  .foundation-modules {
    padding: 0;
  }
}

/* Keep labels, headings and supporting copy together on a consistent grid. */
.wrap {
  width: min(1120px, calc(100% - 96px));
}
.section {
  padding-block: 56px;
}
.section h2 {
  font-size: clamp(32px, 3.1vw, 44px);
  line-height: 1.15;
  max-width: 580px;
  letter-spacing: -1.25px;
}
.section .eyebrow {
  margin-bottom: 12px;
  letter-spacing: 1px;
}
.section-heading {
  display: block;
}
.section-heading > .eyebrow {
  padding-top: 0;
}
.section-heading > div > p {
  margin-top: 16px;
  max-width: 700px;
  line-height: 1.65;
}
.product-overview {
  gap: 40px;
  margin-top: 28px;
}
.overview-card {
  padding: 20px 0 14px;
}
.card-index {
  margin-bottom: 12px;
}
.overview-card h3 {
  font-size: 29px;
}
.card-description {
  max-width: 440px;
  margin: 12px 0 18px;
  line-height: 1.6;
}
.card-link {
  padding-top: 12px;
}
.convergence {
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 8px 24px;
  padding-top: 8px;
}
.convergence p {
  max-width: 700px;
}
.convergence > a {
  margin-left: 0;
}
.oip > .wrap {
  grid-template-columns: 1fr 1.15fr;
  gap: 28px 40px;
  align-items: start;
}
.product-heading {
  padding-top: 4px;
}
.product-heading > p {
  max-width: 420px;
  margin-top: 16px;
  line-height: 1.65;
}
.capabilities {
  gap: 32px;
}
.capabilities article {
  padding-top: 16px;
}
.capabilities h3 {
  margin: 10px 0 8px;
}
.capabilities p {
  line-height: 1.6;
}
.foundations-grid {
  grid-template-columns: 1fr 1.15fr;
  gap: 40px;
  align-items: start;
}
.foundations-copy > p:not(.eyebrow) {
  margin-top: 16px;
  line-height: 1.65;
}
.button-dark {
  margin-top: 22px;
}
.module-title {
  padding: 0 0 14px;
}
.foundation-modules article {
  padding: 16px 0;
  gap: 16px;
}
.foundation-modules h3 {
  margin-bottom: 6px;
}
.module-bottom {
  padding-top: 12px;
}
.operator-grid {
  grid-template-columns: 1fr 1.15fr;
  gap: 40px;
}
.operator h2 {
  margin-bottom: 16px;
}
.operator p.product-label {
  margin-bottom: 12px;
}
.inline-features {
  margin: 18px 0 22px;
}
.team-roles {
  max-width: 820px;
  margin-top: 24px;
  padding-top: 20px;
  gap: 32px;
}
.team-roles h3 {
  margin-bottom: 8px;
}
.contact {
  padding-block: 40px;
}
.contact-inner {
  width: min(1120px, calc(100% - 96px));
  padding-block: 16px;
}
.contact-bottom {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  margin-top: 16px;
}
.contact-bottom a {
  font-size: 22px;
}
.hero-bottom {
  gap: 18px;
}
.hero-bottom > div {
  gap: 14px;
  font-size: 11px;
}
.hero-intro .eyebrow {
  margin-bottom: 16px;
}
.hero-lede {
  margin-top: 18px;
}
.hero-detail {
  margin-top: 14px;
}
.hero-cta {
  margin-top: 24px;
  margin-bottom: 16px;
}
.hero-note {
  margin-top: 22px;
}
@media (max-width: 1100px) {
  .wrap,
  .contact-inner {
    width: calc(100% - 64px);
  }
  .hero-bottom {
    flex-wrap: wrap;
    gap: 12px;
  }
}
@media (max-width: 800px) {
  .wrap,
  .contact-inner {
    width: calc(100% - 40px);
  }
  .section {
    padding-block: 40px;
  }
  .oip > .wrap,
  .foundations-grid,
  .operator-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .product-heading > p,
  .foundations-copy > p:not(.eyebrow),
  .operator p:not(.eyebrow) {
    max-width: 620px;
  }
  .section h2 {
    max-width: 560px;
  }
  .product-overview {
    gap: 28px;
  }
  .contact {
    padding-block: 32px;
  }
  .contact-inner {
    padding-block: 8px;
  }
}
@media (max-width: 480px) {
  .section {
    padding-block: 32px;
  }
  .section h2 {
    font-size: 32px;
    line-height: 1.18;
    letter-spacing: -1px;
  }
  .section .eyebrow {
    font-size: 10px;
    letter-spacing: 0.7px;
  }
  .product-overview {
    gap: 22px;
    margin-top: 24px;
  }
  .overview-card {
    padding-block: 18px 8px;
  }
  .capabilities {
    gap: 20px;
  }
  .team-roles {
    gap: 20px;
  }
  .contact-bottom a {
    font-size: 18px;
  }
}

.section h2 {
  text-wrap: balance;
}
.section p {
  text-wrap: pretty;
}

/* Photographs add site context; the reporting film belongs with Foundations. */
.operation-photo {
  margin: 0;
}
.operation-photo img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 10px;
}
.operation-photo figcaption {
  color: var(--muted);
  font-size: 11px;
  margin-top: 10px;
}
.foundations-grid > .demo-frame {
  width: 100%;
  max-width: 640px;
  justify-self: center;
}
.foundations-grid > .foundation-modules {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 32px;
}
.foundation-modules > .module-title,
.foundation-modules > .module-bottom {
  grid-column: 1 / -1;
}
@media (max-width: 800px) {
  .foundations-grid > .demo-frame {
    justify-self: start;
  }
}
@media (max-width: 480px) {
  .foundations-grid > .foundation-modules {
    grid-template-columns: 1fr;
  }
}

/* Give the square source video a larger presentation without stretching it. */
.foundations-grid { grid-template-columns: minmax(0, .85fr) minmax(0, 1.25fr); }
.demo-frame video { height: auto; aspect-ratio: auto; object-fit: contain; }
@media (max-width: 800px) {
  .foundations-grid { grid-template-columns: minmax(0, 1fr); }
}
