/* Tailwind v4 preflight equivalent. landing.css was authored on top of it. */
*,
::before,
::after,
::backdrop {
	box-sizing: border-box;
	border: 0 solid;
	margin: 0;
	padding: 0;
}

html {
	line-height: 1.5;
	-webkit-text-size-adjust: 100%;
	tab-size: 4;
}

body {
	line-height: inherit;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-size: inherit;
	font-weight: inherit;
}

ol,
ul,
menu {
	list-style: none;
}

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
	display: block;
	vertical-align: middle;
}

img,
video {
	max-width: 100%;
	height: auto;
}

b,
strong {
	font-weight: bolder;
}

small {
	font-size: 80%;
}

button,
input,
optgroup,
select,
textarea {
	background: transparent;
	border-radius: 0;
	color: inherit;
	font: inherit;
	letter-spacing: inherit;
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	-webkit-appearance: button;
	appearance: button;
}

::placeholder {
	color: color-mix(in oklab, currentColor 50%, transparent);
	opacity: 1;
}

[hidden] {
	display: none !important;
}

/* ---- end preflight ---- */

/* Landing page styles. Ported from the ChatGPT/Next source. The Tailwind preflight equivalent it was authored on top of is prepended above. */

:root {
  --ink: #243d55;
  --ink-soft: #667786;
  --green: #5b9bd5;
  --green-dark: #315f87;
  --green-deep: #243d55;
  --mint: #caeefb;
  --mint-light: #eaf2fa;
  --coral: #c95a5d;
  --coral-light: #f8eaea;
  --yellow: #e6c8a3;
  --yellow-light: #f3e6d7;
  --blue: #5b9bd5;
  --blue-light: #eaf2fa;
  --cream: #faf6f0;
  --paper: #ffffff;
  --line: rgba(36, 61, 85, 0.13);
  --shadow: 0 26px 80px rgba(36, 61, 85, 0.14);
  --font-body: Aptos, "Segoe UI Variable Text", "Segoe UI", Arial, sans-serif;
  --font-display: "Aptos Display", Aptos, "Segoe UI Variable Display", "Segoe UI", Arial, sans-serif;
  --scroll-progress: 0%;
}

* {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  overflow-x: clip;
  overscroll-behavior-x: none;
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
  width: 100%;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  margin: 0;
  max-width: 100%;
  overflow-x: clip;
  overscroll-behavior-x: none;
  width: 100%;
}

button,
input {
  font: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
}

button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}

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

button {
  color: inherit;
}

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

::selection {
  background: var(--mint);
  color: var(--green-deep);
}

.shell {
  margin: 0 auto;
  max-width: 1240px;
  padding-left: 28px;
  padding-right: 28px;
  width: 100%;
}

.skip-link {
  background: var(--paper);
  border-radius: 10px;
  box-shadow: var(--shadow);
  left: 16px;
  padding: 12px 16px;
  position: fixed;
  top: -80px;
  transition: top 160ms ease;
  z-index: 1000;
}

.skip-link:focus {
  top: 16px;
}

.scroll-progress {
  background: linear-gradient(90deg, var(--coral), var(--yellow), var(--mint));
  height: 3px;
  left: 0;
  position: fixed;
  top: 0;
  width: var(--scroll-progress);
  z-index: 200;
}

/* Height and background match the application header exactly. The 1px
   border-bottom this used to carry made the bar 61px against the app's 60px,
   which was the last measurable difference between the two headers. */
.site-header {
  background: #222222;
  height: 60px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
}

.header-inner {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: space-between;
}

.site-header .brand {
  color: #ffffff;
  font-size: 20px;
  font-weight: 600;
  gap: 8px;
  letter-spacing: 0;
}

.site-header .brand-mark {
  background: transparent;
  border-radius: 8px;
  height: 32px;
  width: 32px;
}

.site-header .brand-mark img {
  height: 32px;
  width: 32px;
}

.brand {
  align-items: center;
  display: inline-flex;
  flex-shrink: 0;
  font-size: 19px;
  font-weight: 760;
  gap: 10px;
  letter-spacing: -0.035em;
}

.brand-mark {
  align-items: center;
  background: var(--green-deep);
  border-radius: 11px;
  display: inline-flex;
  height: 40px;
  justify-content: center;
  overflow: hidden;
  width: 40px;
}

.brand-mark img {
  height: 34px;
  width: 34px;
}

.desktop-nav {
  align-items: center;
  display: flex;
  gap: 34px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
}

.desktop-nav a,
.login-link {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 650;
  position: relative;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible,
.login-link:hover,
.login-link:focus-visible {
  color: #ffffff;
}

.desktop-nav a::after {
  background: var(--green);
  bottom: -9px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 240ms ease;
  width: 100%;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  align-items: center;
  display: flex;
  gap: 20px;
}

.button {
  align-items: center;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  font-size: 15px;
  font-weight: 740;
  gap: 12px;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  position: relative;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease;
}

.button svg {
  transition: transform 220ms ease;
}

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

.button:hover svg,
.button:focus-visible svg {
  transform: translateX(4px);
}

.button--small {
  font-size: 13px;
  min-height: 42px;
  padding: 0 19px;
}

.button--dark {
  background: var(--green-deep);
  box-shadow: 0 10px 30px rgba(7, 47, 41, 0.18);
  color: white;
}

.site-header .button--dark {
  background: #ffffff;
  box-shadow: none;
  color: #222222;
}

.button--primary {
  background: var(--coral);
  box-shadow: 0 16px 38px rgba(224, 106, 92, 0.25);
  color: #1f2f3d;
}

.button--primary:hover,
.button--primary:focus-visible {
  background: #d66e70;
  box-shadow: 0 20px 46px rgba(224, 106, 92, 0.34);
}

.button--white {
  background: white;
  color: var(--green-deep);
}

.button--full {
  width: 100%;
  /* The submit sits below 15px inputs, so it carries a touch more weight than
     the shared .button base to stay the clear primary action in the card. */
  font-size: 16px;
  min-height: 56px;
}

.menu-button {
  align-items: center;
  background: transparent;
  border: 0;
  cursor: pointer;
  display: none;
  height: 44px;
  justify-content: center;
  padding: 0;
  width: 44px;
  color: #ffffff;
}

/* The shared pp_icon() stroke of 1.75 is too light for the header burger, which
   sat noticeably thinner than the Font Awesome fa-bars used on every other
   logged-out page. CSS beats the presentation attribute on the <g>, so this
   covers both the server-rendered icon and the one swapped in by landing.js. */
.menu-button svg,
.menu-button svg g {
  stroke-width: 2.5;
}

.mobile-nav {
  background: #222222;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #ffffff;
  display: none;
  padding: 12px 28px 24px;
}

.hero {
  background:
    radial-gradient(circle at 76% 14%, rgba(202, 238, 251, 0.72), transparent 28%),
    radial-gradient(circle at 35% 40%, rgba(230, 200, 163, 0.34), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #faf6f0 100%);
  min-height: 100svh;
  overflow: hidden;
  padding: 132px 0 38px;
  position: relative;
}

.hero::before {
  background-image: radial-gradient(rgba(36, 61, 85, 0.12) 0.8px, transparent 0.8px);
  background-size: 18px 18px;
  content: "";
  inset: 0;
  mask-image: linear-gradient(to bottom, transparent 8%, black 30%, transparent 85%);
  opacity: 0.24;
  pointer-events: none;
  position: absolute;
}

.hero-orb {
  border: 1px solid rgba(13, 112, 91, 0.16);
  border-radius: 50%;
  pointer-events: none;
  position: absolute;
}

.hero-orb--one {
  height: 560px;
  right: -180px;
  top: 36px;
  width: 560px;
}

.hero-orb--two {
  height: 290px;
  left: -180px;
  top: 380px;
  width: 290px;
}

.hero-grid {
  align-items: center;
  display: grid;
  gap: 44px;
  grid-template-columns: minmax(0, 0.9fr) minmax(540px, 1.1fr);
  position: relative;
  z-index: 2;
}

.hero-copy {
  max-width: 590px;
  padding-bottom: 10px;
}

.eyebrow,
.section-kicker {
  align-items: center;
  color: var(--green-dark);
  display: inline-flex;
  font-size: 13px;
  font-weight: 820;
  gap: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.eyebrow {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(13, 112, 91, 0.15);
  border-radius: 99px;
  box-shadow: 0 8px 28px rgba(16, 44, 39, 0.06);
  padding: 9px 13px;
}

.status-dot {
  background: var(--green);
  border: 3px solid var(--mint);
  border-radius: 50%;
  height: 10px;
  width: 10px;
}

.hero h1 {
  font-size: clamp(56px, 5.15vw, 78px);
  font-weight: 700;
  letter-spacing: -0.018em;
  line-height: 1.08;
  margin: 25px 0 28px;
  max-width: 680px;
}

.hero h1 span {
  color: var(--green);
  display: block;
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 700;
  letter-spacing: inherit;
}

.hero-lede {
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.65;
  margin: 0;
  max-width: 570px;
}

.hero-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  margin-top: 34px;
}

.text-link {
  align-items: center;
  display: inline-flex;
  font-size: 14px;
  font-weight: 750;
  gap: 10px;
}

.text-link span {
  transition: transform 200ms ease;
}

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

.hero-trust {
  align-items: center;
  display: flex;
  gap: 14px;
  margin-top: 38px;
}

.trust-faces {
  display: flex;
  padding-left: 7px;
}

.trust-faces span {
  align-items: center;
  background: var(--green-deep);
  border: 3px solid var(--paper);
  border-radius: 50%;
  color: white;
  display: flex;
  font-size: 8px;
  font-weight: 800;
  height: 35px;
  justify-content: center;
  margin-left: -7px;
  width: 35px;
}

.trust-faces span:nth-child(2) {
  background: var(--coral);
  color: var(--ink);
}

.trust-faces span:nth-child(3) {
  background: var(--yellow);
  color: var(--ink);
}

.hero-trust p {
  color: var(--ink-soft);
  display: flex;
  flex-direction: column;
  font-size: 11px;
  gap: 3px;
  margin: 0;
}

.hero-trust strong {
  color: var(--ink);
  font-size: 13px;
}

.hero-visual {
  min-height: 560px;
  position: relative;
}

.hero-image {
  aspect-ratio: 1376 / 768;
  border-radius: 26px;
  box-shadow:
    0 48px 100px rgba(36, 61, 85, 0.2),
    0 12px 30px rgba(36, 61, 85, 0.1);
  height: auto;
  left: -6%;
  max-width: none;
  object-fit: cover;
  position: absolute;
  top: 24px;
  width: 112%;
}

.float-card {
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.93);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 22px 50px rgba(11, 62, 53, 0.18);
  position: absolute;
  z-index: 4;
}

.float-card--alert {
  align-items: center;
  border-radius: 17px;
  display: flex;
  gap: 12px;
  left: -10%;
  padding: 13px 16px;
  top: 15%;
  transform: translateZ(55px) rotate(-2deg);
}

.float-icon {
  align-items: center;
  border-radius: 12px;
  display: flex;
  flex: 0 0 auto;
  height: 40px;
  justify-content: center;
  width: 40px;
}

.float-icon--coral {
  background: var(--coral-light);
  color: #a04439;
}

.float-icon--green {
  background: var(--mint-light);
  color: var(--green);
}

.float-card--alert > div,
.voice-content {
  display: flex;
  flex-direction: column;
}

.float-card--alert strong {
  font-size: 12px;
  margin: 2px 0;
}

.float-card--alert div > span:last-child {
  color: var(--ink-soft);
  font-size: 9px;
}

.float-label {
  color: var(--green);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pulse-ring {
  background: var(--coral);
  border: 4px solid var(--coral-light);
  border-radius: 50%;
  height: 13px;
  margin-left: 3px;
  position: relative;
  width: 13px;
}

.pulse-ring::after {
  animation: pulse 2s infinite;
  border: 1px solid var(--coral);
  border-radius: 50%;
  content: "";
  inset: -7px;
  position: absolute;
}

.float-card--voice {
  align-items: center;
  border-radius: 20px;
  bottom: auto;
  display: flex;
  gap: 13px;
  padding: 15px 17px;
  right: -8%;
  top: 72%;
  transform: translateZ(70px) rotate(1deg);
	width: max-content;
}

.float-card--puck {
  align-items: center;
  border-radius: 18px;
  display: flex;
  gap: 12px;
  left: -4%;
  overflow: hidden;
  padding: 8px 15px 8px 8px;
  top: 72%;
  transform: rotate(-2deg);
}

.float-card--puck img {
  border-radius: 12px;
  height: 72px;
  object-fit: cover;
  width: 72px;
}

.float-card--puck > span {
  display: grid;
  gap: 3px;
}

.float-card--puck small {
  color: var(--blue);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.float-card--puck strong {
  color: var(--ink);
  font-size: 12px;
  white-space: nowrap;
}

.voice-content {
  gap: 7px;
  width: 100%;
}

.waveform {
  align-items: center;
  display: flex;
  gap: 3px;
  height: 32px;
	width: 100%;
}

.waveform span {
  animation: wave 1.6s ease-in-out infinite alternate;
  background: var(--green);
  border-radius: 5px;
  display: inline-block;
  max-height: 27px;
  min-height: 5px;
  opacity: 0.76;
  width: 3px;
}

.flow-tags {
  display: flex;
  gap: 5px;
}

.flow-tags span {
  background: var(--mint-light);
  border-radius: 99px;
  color: var(--ink-soft);
  font-size: 7px;
  font-weight: 750;
  padding: 4px 7px;
}

.float-card--tools {
  align-items: center;
  background: var(--green-deep);
  border-radius: 15px;
  bottom: 16%;
  color: white;
  display: flex;
  flex-direction: column;
  left: -1%;
  padding: 12px 16px;
  transform: translateZ(65px) rotate(-3deg);
}

.float-card--tools strong {
  color: var(--mint);
  font-family: var(--font-display);
  font-size: 25px;
  line-height: 1;
}

.float-card--tools span {
  font-size: 8px;
  margin-top: 3px;
}

.hero-foundation {
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 28px;
  padding-top: 25px;
  position: relative;
  z-index: 2;
}

.hero-foundation > div {
  align-items: center;
  display: flex;
  gap: 12px;
  padding: 0 25px;
}

.hero-foundation > div:first-child {
  padding-left: 0;
}

.hero-foundation > div + div {
  border-left: 1px solid var(--line);
}

.hero-foundation svg {
  color: var(--green);
  flex: 0 0 auto;
}

.hero-foundation span {
  color: var(--ink-soft);
  display: flex;
  flex-direction: column;
  font-size: 10px;
  gap: 4px;
}

.hero-foundation strong {
  color: var(--ink);
  font-size: 12px;
}

.reveal {
  animation: reveal-up 800ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.reveal--one {
  animation-delay: 100ms;
}

.reveal--two {
  animation-delay: 180ms;
}

.reveal--three {
  animation-delay: 260ms;
}

.reveal--four {
  animation-delay: 340ms;
}

.reveal--five {
  animation-delay: 420ms;
}

.reveal--visual {
  animation-delay: 240ms;
}

.reveal--six {
  animation-delay: 520ms;
}

.marquee {
  background: var(--green-deep);
  color: white;
  overflow: hidden;
  padding: 18px 0;
}

.marquee-track {
  animation: marquee 38s linear infinite;
  display: flex;
  flex-shrink: 0;
  gap: 36px;
  width: max-content;
}

.marquee-track > span {
  align-items: center;
  display: flex;
  font-size: 12px;
  font-weight: 760;
  gap: 36px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.marquee-spark {
  color: var(--coral);
}

.section {
  padding: 130px 0;
}

.connected-section {
  background: var(--paper);
  padding-top: 150px;
}

.section-heading {
  align-items: end;
  display: grid;
  gap: 70px;
  grid-template-columns: 1.25fr 0.75fr;
  margin-bottom: 60px;
}

.section-heading--wide {
  grid-template-columns: 1.4fr 0.6fr;
}

.section-heading h2,
.mis-copy h2,
.pricing-heading h2,
.quote-intro h2,
.faq-intro h2,
.contact-copy h2 {
  font-size: clamp(41px, 4.2vw, 62px);
  font-weight: 700;
  letter-spacing: -0.018em;
  line-height: 1.1;
  margin: 15px 0 0;
}

.section-heading p,
.pricing-heading p,
.quote-intro p,
.faq-intro p {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
}

.story-tabs {
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 34px;
}

.story-tabs button {
  align-items: center;
  background: transparent;
  border: 0;
  color: var(--ink-soft);
  cursor: pointer;
  display: flex;
  font-size: 13px;
  font-weight: 730;
  gap: 11px;
  padding: 18px 8px;
  position: relative;
  text-align: left;
}

.story-tabs button::after {
  background: var(--green);
  bottom: -1px;
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 240ms ease;
  width: 100%;
}

.story-tabs button.is-active {
  color: var(--ink);
}

.story-tabs button.is-active::after {
  transform: scaleX(1);
}

.story-tabs button > span {
  color: var(--green);
  font-family: var(--font-display);
  font-size: 12px;
  font-style: normal;
}

.story-stage {
  animation: story-in 420ms cubic-bezier(0.22, 1, 0.36, 1) both;
  background:
    radial-gradient(circle at 84% 15%, rgba(255, 255, 255, 0.88), transparent 30%),
    var(--mint-light);
  border: 1px solid rgba(13, 112, 91, 0.08);
  border-radius: 34px;
  display: grid;
  gap: 75px;
  grid-template-columns: 0.8fr 1.2fr;
  min-height: 570px;
  overflow: hidden;
  padding: 70px;
  position: relative;
}

.story-stage::after {
  background-image: radial-gradient(rgba(16, 44, 39, 0.13) 0.8px, transparent 0.8px);
  background-size: 16px 16px;
  content: "";
  height: 180px;
  opacity: 0.25;
  position: absolute;
  right: -10px;
  top: -10px;
  width: 220px;
}

.story-stage--coral {
  background-color: var(--coral-light);
}

.story-stage--yellow {
  background-color: var(--yellow-light);
}

.story-stage--blue {
  background-color: var(--blue-light);
}

.story-copy {
  align-self: center;
  position: relative;
  z-index: 2;
}

.story-kicker {
  align-items: center;
  color: var(--green);
  display: flex;
  font-size: 12px;
  font-weight: 800;
  gap: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.story-copy h3 {
  font-size: clamp(35px, 3.1vw, 48px);
  letter-spacing: -0.052em;
  line-height: 1.06;
  margin: 20px 0;
}

.story-copy p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.72;
  margin: 0;
}

.story-stat {
  align-items: flex-start;
  border-top: 1px solid rgba(16, 44, 39, 0.15);
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 35px;
  padding-top: 24px;
}

.story-stat strong {
  font-family: var(--font-display);
  font-size: 29px;
  font-style: normal;
}

.story-stat span {
  color: var(--ink-soft);
  font-size: 11px;
  max-width: none;
}

.data-map {
  align-self: center;
  min-height: 410px;
  position: relative;
  z-index: 2;
}

.profile-card {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(16, 44, 39, 0.11);
  border-radius: 21px;
  box-shadow: 0 30px 80px rgba(11, 62, 53, 0.13);
  left: auto;
  max-width: 350px;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 64%;
  z-index: 3;
}

.profile-head {
  align-items: center;
  display: flex;
  padding: 17px;
}

.profile-avatar {
  align-items: center;
  background: var(--green-deep);
  border-radius: 11px;
  color: white;
  display: flex;
  font-size: 11px;
  font-weight: 800;
  height: 40px;
  justify-content: center;
  margin-right: 10px;
  width: 40px;
}

.profile-head > span:nth-child(2) {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.profile-head strong {
  font-size: 11px;
}

.profile-head small {
  color: var(--ink-soft);
  font-size: 8px;
}

.profile-live {
  align-items: center;
  background: var(--mint-light);
  border-radius: 99px;
  color: var(--green);
  display: flex;
  font-size: 8px;
  font-weight: 800;
  gap: 5px;
  margin-left: auto;
  padding: 6px 8px;
  text-transform: uppercase;
}

.profile-live span {
  background: var(--green);
  border-radius: 50%;
  height: 5px;
  width: 5px;
}

.profile-timeline {
  background: #f4f6f8;
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 16px 18px;
}

.profile-timeline span {
  align-items: center;
  color: var(--ink-soft);
  display: flex;
  font-size: 8px;
  gap: 7px;
  text-transform: uppercase;
}

.profile-timeline i {
  background: var(--coral);
  border-radius: 50%;
  height: 7px;
  width: 7px;
}

.profile-timeline strong {
  font-size: 11px;
}

.profile-insight {
  align-items: center;
  display: flex;
  gap: 10px;
  padding: 15px 18px;
}

.profile-insight > svg {
  color: var(--green);
}

.profile-insight > span {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.profile-insight small {
  color: var(--green);
  font-size: 8px;
  font-weight: 800;
  text-transform: uppercase;
}

.profile-insight span {
  font-size: 9px;
}

.source-node {
  align-items: center;
  backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(16, 44, 39, 0.12);
  border-radius: 13px;
  box-shadow: 0 12px 35px rgba(11, 62, 53, 0.1);
  display: flex;
  font-size: 10px;
  font-weight: 750;
  gap: 8px;
  padding: 10px 12px;
  position: absolute;
  width: 150px;
  z-index: 2;
}

.source-node > span {
  align-items: center;
  background: white;
  border-radius: 8px;
  color: var(--green);
  display: flex;
  height: 29px;
  justify-content: center;
  width: 29px;
}

.source-node > i {
  display: none;
}

.node-1 {
  left: 0;
  top: 70px;
}

.node-2 {
  left: 0;
  right: auto;
  top: 180px;
}

.node-3 {
  bottom: auto;
  left: 0;
  right: auto;
  top: 290px;
}

.map-lines {
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.map-line {
  border: 0;
  border-top: 1px dashed rgba(13, 112, 91, 0.5);
  height: 0;
  left: 0;
  position: absolute;
  top: 0;
  transform-origin: 0 50%;
  width: 0;
  z-index: 1;
}

.mis-section {
  background:
    radial-gradient(circle at 80% 35%, rgba(255, 255, 255, 0.58), transparent 30%),
    var(--mint);
  color: var(--ink);
  overflow: hidden;
  padding: 120px 0;
  position: relative;
}

.mis-section::before {
  background-image: radial-gradient(rgba(36, 61, 85, 0.13) 0.8px, transparent 0.8px);
  background-size: 18px 18px;
  content: "";
  inset: 0;
  mask-image: linear-gradient(90deg, transparent, black 60%, transparent);
  opacity: 0.32;
  position: absolute;
}

.mis-grid {
  align-items: center;
  display: grid;
  gap: 110px;
  grid-template-columns: 0.86fr 1.14fr;
  position: relative;
  z-index: 2;
}

.section-kicker--light {
  color: var(--mint);
}

.mis-copy h2 {
  max-width: 550px;
}

.mis-copy p {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.75;
  margin: 25px 0 33px;
  max-width: 550px;
}

.mis-orbit {
  height: 520px;
  position: relative;
}

.orbit-ring {
  border: 1px solid rgba(36, 61, 85, 0.2);
  border-radius: 50%;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

.orbit-ring--outer {
  height: 500px;
  width: 500px;
}

.orbit-ring--inner {
  border-style: dashed;
  height: 350px;
  width: 350px;
}

.orbit-core {
  align-items: center;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(36, 61, 85, 0.12);
  border-radius: 30px;
  box-shadow: 0 30px 80px rgba(36, 61, 85, 0.16);
  display: flex;
  flex-direction: column;
  left: 50%;
  padding: 32px 40px;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

.orbit-core img {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  height: 60px;
  margin-bottom: 16px;
  padding: 3px;
  width: 60px;
}

.orbit-core strong {
  font-size: 18px;
}

.orbit-core span {
  color: var(--blue);
  font-size: 9px;
  margin-top: 6px;
  text-transform: uppercase;
}

.orbit-item {
  align-items: center;
  background: white;
  border-radius: 999px;
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.19);
  color: var(--green-deep);
  display: flex;
  font-size: 12px;
  font-weight: 800;
  height: 67px;
  justify-content: center;
  position: absolute;
  width: 105px;
}

.orbit-item--one {
  left: 4%;
  top: 18%;
}

.orbit-item--two {
  right: 4%;
  top: 22%;
}

.orbit-item--three {
  bottom: 11%;
  right: 12%;
}

.orbit-item--four {
  bottom: 10%;
  left: 8%;
}

.orbit-dot {
  animation: orbit 12s linear infinite;
  background: var(--coral);
	border: 5px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
	box-shadow: 0 0 0 1px rgba(36, 61, 85, 0.16), 0 5px 14px rgba(36, 61, 85, 0.24);
  height: 20px;
  left: calc(50% - 10px);
  position: absolute;
  top: calc(50% - 10px);
  width: 20px;
}

.orbit-dot--two {
  animation-delay: -6s;
  animation-direction: reverse;
	background: var(--green-dark);
}

.platform-section {
  background: var(--cream);
}

.product-grid {
  display: grid;
  gap: 26px;
  grid-template-columns: repeat(2, 1fr);
}

.product-card {
  background: white;
  border: 1px solid rgba(16, 44, 39, 0.09);
  border-radius: 28px;
  overflow: hidden;
  transition:
    transform 300ms ease,
    box-shadow 300ms ease;
}

.product-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-8px);
}

.product-image {
  height: 310px;
  overflow: hidden;
  position: relative;
}

.product-image::after {
  background: linear-gradient(to top, rgba(36, 61, 85, 0.58), transparent 50%);
  content: "";
  inset: 0;
  position: absolute;
}

.product-image img {
  height: 100%;
  object-fit: cover;
  transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
  width: 100%;
}

.product-card:hover .product-image img {
  transform: scale(1.055);
}

.product-number {
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--font-display);
  font-size: 18px;
  font-style: normal;
  left: 22px;
  position: absolute;
  top: 20px;
  z-index: 2;
}

.product-image-tag {
  align-items: center;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.87);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 99px;
  bottom: 18px;
  color: var(--green-deep);
  display: flex;
  font-size: 10px;
  font-weight: 800;
  gap: 7px;
  left: 20px;
  padding: 8px 11px;
  position: absolute;
  text-transform: uppercase;
  z-index: 2;
}

.product-content {
  padding: 38px 38px 40px;
}

.product-label {
  color: var(--green);
  font-size: 10px;
  font-weight: 820;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-content h3 {
  font-size: 31px;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin: 11px 0 16px;
}

.product-content > p {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

.product-content ul {
  display: grid;
  gap: 11px;
  list-style: none;
  margin: 26px 0 0;
  padding: 0;
}

.product-content li {
  align-items: center;
  display: flex;
  font-size: 12px;
  font-weight: 670;
  gap: 9px;
}

.product-content li > span {
  align-items: center;
  background: var(--mint-light);
  border-radius: 50%;
  color: var(--green);
  display: flex;
  height: 24px;
  justify-content: center;
  width: 24px;
}

.product-card--coral .product-content li > span {
  background: var(--coral-light);
  color: #a74447;
}

.product-card--yellow .product-content li > span {
  background: var(--yellow-light);
  color: #8b6a40;
}

.product-card--blue .product-content li > span {
  background: var(--blue-light);
  color: #315f87;
}

.puck-band {
  background: var(--yellow-light);
  margin: 80px calc(50% - 50vw) 0;
  padding: 72px max(28px, calc((100vw - 1240px) / 2 + 28px));
}

.puck-band .puck-feature {
  margin: 0 auto;
  max-width: 1184px;
}

.puck-feature {
  background: var(--paper);
  border: 1px solid rgba(36, 61, 85, 0.1);
  border-radius: 34px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  margin-top: 80px;
  overflow: hidden;
}

.puck-copy {
  align-self: center;
  padding: 62px 58px;
}

.puck-copy h3 {
  font-size: clamp(40px, 4vw, 56px);
  letter-spacing: -0.045em;
  line-height: 1.02;
  margin: 13px 0 24px;
}

.puck-copy > p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

.puck-copy .puck-lede {
  color: var(--ink);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 17px;
}

.puck-strapline {
  align-items: center;
  background: var(--green-deep);
  border-radius: 13px;
  color: white;
  display: flex;
  font-size: 12px;
  font-weight: 800;
  gap: 10px;
  justify-content: center;
  letter-spacing: 0.04em;
  margin: 30px 0 22px;
  padding: 14px 18px;
  text-transform: uppercase;
}

.puck-strapline svg {
  color: var(--mint);
  flex: 0 0 auto;
}

.puck-copy .puck-note {
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.55;
  padding-top: 20px;
}

.puck-visual {
  min-height: 570px;
  overflow: hidden;
  position: relative;
}

.puck-visual::before {
  background: var(--coral);
  content: "";
  inset: 0 auto 0 0;
  position: absolute;
  width: 14px;
  z-index: 2;
}

.puck-visual img {
  height: 100%;
  object-fit: cover;
  transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
  width: 100%;
}

.puck-feature:hover .puck-visual img {
  transform: scale(1.025);
}

.puck-status {
  align-items: center;
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: 99px;
  bottom: 24px;
  box-shadow: 0 12px 32px rgba(36, 61, 85, 0.18);
  display: flex;
  font-size: 11px;
  font-weight: 750;
  gap: 8px;
  padding: 10px 14px;
  position: absolute;
  right: 24px;
}

.puck-status span {
  animation: pulse 1.8s ease-out infinite;
  background: var(--coral);
  border-radius: 50%;
  height: 8px;
  width: 8px;
}

.feature-universe {
  background: var(--green-deep);
  border-radius: 34px;
  color: white;
  margin-top: 80px;
  overflow: hidden;
  padding: 65px;
  position: relative;
}

.feature-universe::after {
  background: radial-gradient(circle, rgba(168, 234, 215, 0.22), transparent 68%);
  content: "";
  height: 540px;
  pointer-events: none;
  position: absolute;
  right: -150px;
  top: -240px;
  width: 540px;
}

.feature-universe__heading {
  max-width: 650px;
  position: relative;
  z-index: 2;
}

.feature-universe__heading .section-kicker {
  /* This section is on --blue-light, not a dark backdrop, so the mint used
     elsewhere measured 1.08:1 against it and was effectively invisible. */
  color: var(--green-dark);
}

.feature-universe__heading h3 {
  font-size: clamp(38px, 4vw, 55px);
  font-weight: 700;
  letter-spacing: -0.018em;
  line-height: 1.08;
  margin: 14px 0 45px;
}

.feature-groups {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  z-index: 2;
}

.feature-groups article {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 20px;
  padding: 22px;
  transition: background 240ms ease;
}

.feature-groups article:hover {
  background: rgba(255, 255, 255, 0.11);
}

.feature-icon {
  align-items: center;
  background: var(--mint);
  border-radius: 11px;
  color: var(--green-deep);
  display: flex;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.feature-groups article:nth-child(2) .feature-icon {
  background: var(--coral);
}

.feature-groups article:nth-child(3) .feature-icon {
  background: var(--yellow);
}

.feature-groups article:nth-child(4) .feature-icon {
  background: var(--blue);
}

.feature-groups h4 {
  font-size: 15px;
  margin: 17px 0;
}

.feature-groups ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.feature-groups li {
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.65);
  display: flex;
  font-size: 10px;
  justify-content: space-between;
  padding: 10px 0;
}

.feature-groups li svg {
  opacity: 0.45;
}

.feature-tail {
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  gap: 22px;
  margin-top: 35px;
  padding-top: 25px;
  position: relative;
  z-index: 2;
}

.feature-tail > span {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 99px;
  color: var(--mint);
  font-size: 9px;
  font-weight: 800;
  padding: 7px 10px;
  text-transform: uppercase;
}

.feature-tail p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
  margin: 0;
}

.quote-section {
  background: var(--paper);
  padding: 130px 0;
}

.quote-intro {
  max-width: 680px;
}

.quote-intro p {
  margin-top: 22px;
  max-width: 510px;
}

.quote-grid {
  align-items: stretch;
  display: grid;
  gap: 22px;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  margin-top: 60px;
}

.quote-grid figure {
  background: var(--cream);
  border: 1px solid rgba(16, 44, 39, 0.08);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  margin: 0;
  min-height: 350px;
  padding: 32px;
  transition: transform 260ms ease;
}

.quote-grid figure:hover {
  transform: translateY(-6px) rotate(-0.4deg);
}

.quote-grid .quote-card--featured {
  background: var(--coral-light);
}

.quote-mark {
  color: var(--coral);
  font-family: var(--font-display);
  font-size: 55px;
  height: 42px;
  line-height: 1;
}

.quote-grid blockquote {
  font-family: var(--font-display);
  font-size: 19px;
  letter-spacing: -0.02em;
  line-height: 1.5;
  margin: 24px 0 30px;
}

.quote-card--featured blockquote {
  font-size: 24px;
}

.quote-grid figcaption {
  align-items: center;
  display: flex;
  gap: 12px;
  margin-top: auto;
}

.quote-avatar {
  align-items: center;
  background: var(--green-deep);
  border-radius: 50%;
  color: white;
  display: flex;
  font-size: 9px;
  font-weight: 800;
  height: 40px;
  justify-content: center;
  width: 40px;
}

.quote-grid figcaption > span:last-child {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.quote-grid figcaption strong {
  font-size: 11px;
}

.quote-grid figcaption small {
  color: var(--ink-soft);
  font-size: 9px;
}

.pricing-section {
  background:
    radial-gradient(circle at 15% 30%, rgba(255, 255, 255, 0.58), transparent 22%),
    var(--yellow-light);
}

.pricing-heading {
  margin: 0 auto 60px;
  max-width: 740px;
  text-align: center;
}

.pricing-heading p {
  margin-top: 23px;
}

.pricing-grid {
  align-items: center;
  display: grid;
  gap: 45px;
  grid-template-columns: 1fr 0.82fr;
  margin: 0 auto;
  max-width: 1050px;
}

.cost-stack {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(16, 44, 39, 0.09);
  border-radius: 25px;
  padding: 10px 28px 0;
}

.cost-stack__head,
.cost-row {
  align-items: center;
  display: grid;
  grid-template-columns: 45px 1fr auto;
}

.cost-stack__head {
  color: var(--ink-soft);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 17px 0 13px 45px;
  text-transform: uppercase;
}

.cost-stack__head span:first-child {
  grid-column: 1 / 3;
}

.cost-row {
  border-top: 1px solid var(--line);
  min-height: 66px;
}

.cost-index {
  color: var(--green);
  font-family: var(--font-display);
  font-size: 12px;
  font-style: normal;
}

.cost-row strong {
  font-size: 12px;
}

.cost-row > span:last-child {
  color: var(--ink-soft);
  font-size: 11px;
}

.cost-stack__total {
  align-items: center;
  background: var(--green-deep);
  border-radius: 17px 17px 0 0;
  color: white;
  display: flex;
  justify-content: space-between;
  margin: 12px -12px 0;
  padding: 20px;
}

.cost-stack__total span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 10px;
}

.cost-stack__total strong {
  font-size: 12px;
}

.price-card {
  background: var(--green-deep);
  border-radius: 30px;
  box-shadow: 0 34px 90px rgba(7, 47, 41, 0.25);
  color: white;
  overflow: hidden;
  padding: 40px;
  position: relative;
}

.price-glow {
  background: radial-gradient(circle, rgba(168, 234, 215, 0.28), transparent 68%);
  height: 360px;
  position: absolute;
  right: -130px;
  top: -180px;
  width: 360px;
}

.price-card__top {
  align-items: center;
  display: flex;
  justify-content: space-between;
  position: relative;
}

.price-badge {
  background: rgba(168, 234, 215, 0.12);
  border: 1px solid rgba(168, 234, 215, 0.25);
  border-radius: 99px;
  color: var(--mint);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 8px 10px;
  text-transform: uppercase;
}

.price-card__top img {
  height: 38px;
  width: 38px;
}

.price-card h3 {
  font-size: 33px;
  letter-spacing: -0.04em;
  line-height: 1.07;
  margin: 28px 0 15px;
  max-width: 330px;
  position: relative;
}

.price-card > p {
  color: rgba(255, 255, 255, 0.63);
  font-size: 12px;
  line-height: 1.7;
  margin: 0;
  position: relative;
}

.price-value {
  align-items: baseline;
  display: flex;
  gap: 8px;
  margin: 25px 0;
}

.price-value span {
  color: var(--mint);
  font-family: var(--font-display);
  font-size: 52px;
  font-style: normal;
}

.price-value small {
  color: rgba(255, 255, 255, 0.5);
}

.price-card ul {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 0 0 26px;
  padding: 22px 0;
}

.price-card li {
  align-items: center;
  display: flex;
  font-size: 11px;
  gap: 10px;
}

.price-card li svg {
  color: var(--mint);
}

.resources-section {
  background: var(--paper);
}

.article-grid {
  display: grid;
  gap: 25px;
  grid-template-columns: repeat(2, 1fr);
}

.article-card {
  background: var(--cream);
  border: 1px solid rgba(16, 44, 39, 0.08);
  border-radius: 26px;
  overflow: hidden;
  transition:
    transform 280ms ease,
    box-shadow 280ms ease;
}

.article-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-7px);
}

.article-card > div:last-child {
  padding: 28px 30px 32px;
}

.article-image {
  align-items: center;
  display: flex;
  height: 270px;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.article-image--support {
  background:
    radial-gradient(circle at 60% 35%, rgba(255, 255, 255, 0.8), transparent 28%),
    var(--yellow);
}

.article-image--support::after {
  border: 1px solid rgba(16, 44, 39, 0.15);
  border-radius: 50%;
  content: "";
  height: 280px;
  position: absolute;
  width: 280px;
}

.article-image--support > span {
  background: var(--green-deep);
  border-radius: 18px;
  color: white;
  font-family: var(--font-display);
  font-size: 24px;
  font-style: normal;
  padding: 25px 30px;
  position: relative;
  transform: rotate(-4deg);
  z-index: 2;
}

.article-signal {
  bottom: 43px;
  display: flex;
  gap: 8px;
  position: absolute;
  right: 70px;
  z-index: 3;
}

.article-signal i {
  animation: signal 1.5s ease-in-out infinite alternate;
  background: var(--coral);
  border-radius: 50%;
  display: block;
  height: 12px;
  width: 12px;
}

.article-signal i:nth-child(2) {
  animation-delay: 200ms;
}

.article-signal i:nth-child(3) {
  animation-delay: 400ms;
}

.article-image--voice {
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.14), transparent 30%),
    var(--green-deep);
  color: var(--mint);
  gap: 38px;
}

.article-image--voice > svg {
  border: 1px solid rgba(168, 234, 215, 0.35);
  border-radius: 50%;
  height: 90px;
  padding: 26px;
  width: 90px;
}

.article-wave {
  align-items: center;
  display: flex;
  gap: 7px;
  height: 80px;
}

.article-wave i {
  animation: wave 1.7s ease-in-out infinite alternate;
  background: var(--coral);
  border-radius: 6px;
  display: block;
  width: 6px;
}

.article-meta {
  color: var(--green);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-card h3 {
  font-size: 26px;
  letter-spacing: -0.035em;
  line-height: 1.15;
  margin: 12px 0 23px;
}

.article-link {
  align-items: center;
  display: inline-flex;
  font-size: 11px;
  font-weight: 800;
  gap: 8px;
}

.article-link svg {
  transition: transform 180ms ease;
}

.article-card:hover .article-link svg {
  transform: translateX(5px);
}

.faq-section {
  background: var(--cream);
  padding: 130px 0;
}

.faq-grid {
  align-items: start;
  display: grid;
  gap: 110px;
  grid-template-columns: 0.75fr 1.25fr;
}

.faq-intro {
  position: sticky;
  top: 130px;
}

.faq-intro p {
  margin: 23px 0 28px;
}

.faq-intro > a {
  align-items: center;
  color: var(--green);
  display: inline-flex;
  font-size: 12px;
  font-weight: 800;
  gap: 8px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  align-items: center;
  cursor: pointer;
  display: flex;
  font-size: 17px;
  font-weight: 720;
  justify-content: space-between;
  list-style: none;
  padding: 25px 0;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-plus {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex;
  flex: 0 0 auto;
  height: 35px;
  justify-content: center;
  transition:
    background 220ms ease,
    color 220ms ease,
    transform 220ms ease;
  width: 35px;
}

.faq-list details[open] .faq-plus {
  background: var(--green-deep);
  color: white;
  transform: rotate(45deg);
}

.faq-list details > p {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.75;
  margin: -4px 60px 28px 0;
}

.contact-section {
  background: var(--green-deep);
  color: white;
  /* Clip the decorative orbs without creating a scroll container, which would
     prevent .contact-copy from sticking to the page viewport. */
  overflow: clip;
  padding: 130px 0;
  position: relative;
}

.contact-section::after {
  background-image: radial-gradient(rgba(255, 255, 255, 0.14) 0.8px, transparent 0.8px);
  background-size: 18px 18px;
  content: "";
  inset: 0;
  opacity: 0.22;
  pointer-events: none;
  position: absolute;
}

.contact-orb {
  border: 1px solid rgba(168, 234, 215, 0.13);
  border-radius: 50%;
  position: absolute;
}

.contact-orb--one {
  height: 600px;
  left: -320px;
  top: -250px;
  width: 600px;
}

.contact-orb--two {
  bottom: -360px;
  height: 730px;
  right: -200px;
  width: 730px;
}

.contact-grid {
  align-items: start;
  display: grid;
  gap: 110px;
  grid-template-columns: 1fr 0.8fr;
  position: relative;
  z-index: 2;
}

/* Keeps the heading and checkpoints in view while the taller form scrolls past,
   matching .faq-intro. Sticky needs align-items:start above, otherwise the
   column stretches to full height and has no room to travel. */
.contact-copy {
  position: sticky;
  top: 130px;
}

@media (max-width: 900px) {
  /* Single column below this breakpoint, where sticky would pin the heading
     over the form instead of beside it. */
  .contact-copy {
    position: static;
  }
}

.contact-copy h2 {
  font-size: clamp(48px, 5vw, 69px);
  max-width: 680px;
}

.contact-copy > p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 16px;
  line-height: 1.75;
  margin: 27px 0 32px;
  max-width: 600px;
}

.contact-points {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.contact-points span {
  align-items: center;
  color: rgba(255, 255, 255, 0.82);
  display: flex;
  font-size: 14px;
  gap: 8px;
}

.contact-points svg {
  color: var(--mint);
}

.demo-form {
  background: var(--paper);
  border-radius: 28px;
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.25);
  color: var(--ink);
  display: grid;
  gap: 17px;
  padding: 34px;
}

.form-heading {
  align-items: start;
  display: flex;
  justify-content: space-between;
  margin-bottom: 5px;
}

.form-heading > div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.form-heading > div > span {
  font-size: 22px;
  font-weight: 760;
  letter-spacing: -0.03em;
}

.form-heading p {
  color: var(--ink-soft);
  font-size: 14px;
  margin: 0;
}

.form-time {
  align-items: center;
  background: var(--mint-light);
  border-radius: 99px;
  color: var(--green);
  display: flex;
  font-size: 11px;
  font-weight: 750;
  gap: 5px;
  padding: 7px 11px;
}

.demo-form label {
  display: grid;
  gap: 7px;
}

.demo-form label > span {
  font-size: 13px;
  font-weight: 750;
}

.demo-form label small {
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 500;
}

.demo-form input,
.demo-form textarea {
  background: #f4f6f8;
  border: 1px solid transparent;
  border-radius: 12px;
  color: var(--ink);
  font-size: 15px;
  height: 52px;
  outline: none;
  padding: 0 16px;
  transition:
    border 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.demo-form input:focus,
.demo-form textarea:focus {
  background: white;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(91, 155, 213, 0.18);
}

.demo-form input::placeholder,
.demo-form textarea::placeholder {
  color: #8797a6;
}

/* A textarea cannot use the inputs' fixed height and centred single line, so it
   takes vertical padding and a resize handle instead. Everything else (fill,
   radius, focus ring) is shared above so the two cannot drift apart. */
.demo-form textarea {
  height: auto;
  min-height: 104px;
  padding: 14px 16px;
  font-family: inherit;
  line-height: 1.5;
  resize: vertical;
}

.form-note {
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.5;
  margin: 2px 7px 0;
  text-align: center;
}

/* Failure state, set by landing.js when the contact endpoint rejects or the
   request fails. Without this a rate-limit or network error read as the same
   muted grey as the reassurance text and was easy to miss. */
.form-note--error {
  color: #c0392b;
  font-weight: 600;
}

.site-footer {
  background: #1c3348;
  color: white;
  padding: 75px 0 30px;
}

.footer-top {
  display: grid;
  gap: 100px;
  grid-template-columns: 1.2fr 0.8fr;
}

.brand--footer .brand-mark {
  background: rgba(255, 255, 255, 0.1);
  height: 46px;
  width: 46px;
}

.brand--footer .brand-mark img {
  height: 40px;
  width: 40px;
}

.footer-brand-copy {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 4px;
  letter-spacing: normal;
}

.footer-brand-copy strong {
  color: white;
  font-size: 19px;
  line-height: 1.1;
}

.footer-brand-copy small {
  color: rgba(255, 255, 255, 0.53);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
  white-space: nowrap;
}

.footer-links {
  display: grid;
  gap: 55px;
  grid-template-columns: 0.7fr 1.3fr;
}

.footer-links > div {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.footer-links strong {
  font-size: 13px;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.52);
  font-size: 14px;
  transition: color 180ms ease;
}

.footer-links a:hover {
  color: var(--mint);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.38);
  display: flex;
  font-size: 13px;
  justify-content: space-between;
  margin-top: 60px;
  padding-top: 24px;
}

@keyframes reveal-up {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    opacity: 0.8;
    transform: scale(0.6);
  }
  70%,
  100% {
    opacity: 0;
    transform: scale(1.35);
  }
}

@keyframes wave {
  from {
    transform: scaleY(0.55);
  }
  to {
    transform: scaleY(1);
  }
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

@keyframes story-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes orbit {
  from {
    transform: rotate(0deg) translateX(250px) rotate(0deg);
  }
  to {
    transform: rotate(360deg) translateX(250px) rotate(-360deg);
  }
}

@keyframes signal {
  from {
    opacity: 0.35;
    transform: scale(0.7);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Brochure-aligned platform story */
.problem-section {
	background: #f7f9fb;
}

.problem-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 12px;
	margin-top: 38px;
}

.problem-card {
	display: flex;
	align-items: center;
	gap: 12px;
	min-height: 82px;
	padding: 18px;
	border: 1px solid rgba(36, 61, 85, 0.12);
	border-radius: 16px;
	background: #fff;
	color: var(--ink);
	font-weight: 700;
}

.problem-card svg { color: var(--blue); flex: 0 0 auto; }

.loop-section { background: var(--blue-light); padding-top: 40px; }

.loop-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 12px;
	margin-top: 38px;
}

.loop-step {
	position: relative;
	padding: 24px 20px;
	border-radius: 20px;
	background: var(--ink);
	color: #fff;
}

.loop-step h3 { margin: 0 0 8px; color: #fff; font-size: 1.2rem; }
.loop-step p { margin: 0; color: rgba(255,255,255,.72); font-size: .91rem; line-height: 1.6; }
.loop-step:not(:last-child)::after { content: ""; position: absolute; z-index: 2; right: -12px; top: 50%; width: 12px; height: 2px; background: var(--coral); }

.audience-section { background: var(--yellow-light); }
.audience-grid {
	display: grid;
	gap: 18px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin-top: 42px;
}

.audience-card {
	background: #ffffff;
	border: 1px solid rgba(36, 61, 85, .12);
	border-radius: 22px;
	box-shadow: 0 18px 45px rgba(36, 61, 85, .08);
	display: block;
	padding: 32px;
}

.audience-card::before {
	display: none;
}

.audience-card h3 {
	font-size: 1.55rem;
	font-weight: 650;
	letter-spacing: -.02em;
	margin: 0 0 22px;
}
.audience-card ul, .workflow-card ul, .ai-column ul, .mis-detail-list { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.audience-card ul { grid-template-columns: 1fr; gap: 12px; }
.audience-card li { padding-left: 18px; }
.audience-card li::before { display: block; background: var(--blue); }
.audience-card li, .workflow-card li, .ai-column li, .mis-detail-list li { position: relative; color: var(--ink-soft); line-height: 1.55; }
.workflow-card li, .ai-column li, .mis-detail-list li { padding-left: 18px; }
.audience-card li::before, .workflow-card li::before, .ai-column li::before, .mis-detail-list li::before { content: ""; position: absolute; left: 0; top: .66em; width: 6px; height: 6px; border-radius: 50%; background: var(--coral); }

.app-downloads {
	align-items: center;
	background: rgba(255, 255, 255, .76);
	border: 1px solid rgba(36, 61, 85, .12);
	border-radius: 20px;
	display: flex;
	gap: 24px;
	justify-content: space-between;
	margin-top: 18px;
	padding: 18px 22px;
}

.app-downloads__copy {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.app-downloads__copy span {
	color: var(--green-dark);
	font-size: 13px;
	font-weight: 800;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.app-downloads__copy strong {
	font-size: 17px;
	line-height: 1.35;
}

.app-downloads__badges {
	align-items: center;
	display: flex;
	flex-shrink: 1;
	gap: 12px;
}

.app-downloads__badge {
	display: block;
	min-width: 0;
}

.app-downloads__badge img {
	display: block;
	height: auto;
	max-width: 100%;
}

.app-downloads__badge--apple {
	width: 120px;
}

.app-downloads__badge--google {
	width: 155px;
}

.app-downloads__badge:focus-visible {
	border-radius: 6px;
	outline: 3px solid rgba(91, 155, 213, .45);
	outline-offset: 4px;
}

.replacement-section { background: #fff; }
.replacement-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; align-items: center; }
.replacement-copy h2 { max-width: 540px; margin: 16px 0; font-size: clamp(2rem, 4vw, 3.6rem); line-height: 1.02; }
.replacement-copy p { margin: 0 0 24px; color: var(--ink-soft); line-height: 1.7; }
.replacement-table { overflow: hidden; border: 1px solid rgba(36,61,85,.12); border-radius: 22px; background: #f8fafc; }
.replacement-row { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 15px 20px; border-bottom: 1px solid rgba(36,61,85,.1); }
.replacement-row:last-child { border-bottom: 0; }
.replacement-row span { color: var(--ink); font-weight: 700; }
.replacement-row strong { display: flex; align-items: center; gap: 7px; color: #37759f; font-size: .84rem; }

.workflow-section { background: var(--blue-light); }
.workflow-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin: 42px 0 70px; }
.workflow-card { position: relative; overflow: hidden; padding: 30px; border: 1px solid rgba(36,61,85,.1); border-radius: 24px; background: #fff; }
.workflow-card h3 { max-width: 440px; margin: 0 0 12px; font-size: 1.55rem; }
.workflow-card > p { color: var(--ink-soft); line-height: 1.65; }
.workflow-card ul { margin-top: 22px; }
.report-flow { display: flex; align-items: center; gap: 8px; margin: 24px 0; padding: 14px; border-radius: 14px; background: var(--blue-light); font-size: .76rem; }
.report-flow i { flex: 1; height: 1px; background: rgba(36,61,85,.25); }
.report-flow strong { color: var(--ink); }
.meeting-steps { display: grid; grid-template-columns: repeat(6, 1fr); gap: 5px; margin: 24px 0; }
.meeting-steps span { padding: 9px 4px; border-radius: 8px; background: #eef4f8; color: var(--ink); font-size: .8rem; font-weight: 800; text-align: center; }
.translation-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-top: 26px; }
.translation-grid span { padding: 14px 6px; border-radius: 12px; background: var(--blue-light); color: var(--ink); font-weight: 800; text-align: center; }
.knowledge-demo { display: flex; align-items: center; gap: 12px; margin-top: 26px; padding: 16px; border-radius: 14px; background: var(--ink); color: #fff; }
.knowledge-demo span { display: grid; gap: 3px; }
.knowledge-demo small { color: rgba(255,255,255,.6); }

.benefits-block { margin-top: 70px; }
.benefit-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 26px; }
.benefit-grid article { padding: 24px; border-radius: 18px; background: var(--ink); color: #fff; }
.benefit-grid h4 { margin: 0 0 10px; color: #fff; font-size: 1.08rem; }
.benefit-grid p { margin: 0; color: rgba(255,255,255,.7); font-size: .9rem; line-height: 1.6; }

.trust-section { background: var(--ink); color: #fff; }
.trust-section h2, .trust-section h3 { color: #fff; }
.trust-section .section-heading > p { color: rgba(255,255,255,.7); }
.ai-boundaries { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 42px; }
.ai-column { padding: 26px; border: 1px solid rgba(255,255,255,.14); border-radius: 20px; background: rgba(255,255,255,.06); }
.ai-column > span { display: inline-flex; padding: 7px 11px; border-radius: 999px; background: rgba(255,255,255,.1); color: #fff; font-size: .78rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.ai-column ul { margin-top: 20px; }
.ai-column li { color: rgba(255,255,255,.76); }
.ai-column--can li::before { background: #8ed0ff; }
.ai-column--staff li::before { background: #fff; }
.ai-column--never li::before { background: var(--coral); }
.protection-heading { margin-top: 64px; }
.protection-heading h3 { max-width: 680px; margin: 14px 0 0; font-size: clamp(1.8rem, 3vw, 2.7rem); }
.protection-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 28px; }
.protection-grid article { padding: 22px; border-radius: 16px; background: #fff; color: var(--ink); }
.protection-grid p { margin: 8px 0 0; color: var(--ink-soft); font-size: .88rem; line-height: 1.55; }
.dpo-strip { display: flex; align-items: center; gap: 10px; margin-top: 16px; padding: 16px 20px; border: 1px solid rgba(255,255,255,.16); border-radius: 14px; color: rgba(255,255,255,.8); }

.mis-detail-list { margin: 24px 0 28px; }
.mis-detail-list li { color: rgba(255,255,255,.78); }
.mis-detail-list li::before { background: #fff; }

.mis-section .section-kicker--light { color: var(--blue); }
.mis-section .mis-detail-list li { color: var(--ink-soft); }
.mis-section .mis-detail-list li::before { background: var(--blue); }
.mis-section .button--white { background: var(--ink); color: #fff; }

.comparison-section { background: var(--paper); }
.comparison-table { overflow: hidden; margin-top: 36px; border: 1px solid rgba(36,61,85,.12); border-radius: 22px; background: #fff; }
.comparison-head, .comparison-row { display: grid; grid-template-columns: 1fr 1fr; }
.comparison-head { background: var(--ink); color: #fff; font-size: .875rem; letter-spacing: .08em; text-transform: uppercase; }
.comparison-head span, .comparison-head strong, .comparison-row span, .comparison-row strong { padding: 16px 20px; }
.comparison-row { border-bottom: 1px solid rgba(36,61,85,.1); }
.comparison-row:last-child { border-bottom: 0; }
.comparison-row span { color: var(--ink-soft); }
.comparison-row strong { display: flex; align-items: center; gap: 8px; border-left: 1px solid rgba(36,61,85,.1); color: var(--ink); }
.comparison-row strong svg { flex: 0 0 auto; color: var(--blue); }

.pricing-tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 42px; }
.tier-card { display: flex; flex-direction: column; padding: 30px; border: 1px solid rgba(36,61,85,.12); border-radius: 22px; background: #fff; text-align: center; }
.tier-card > span { min-height: 44px; color: var(--ink); font-weight: 800; }
.tier-card > strong { margin-top: 14px; color: var(--ink); font-size: clamp(2.8rem, 5vw, 4.3rem); line-height: 1; }
.tier-card small { margin-top: 6px; color: var(--ink-soft); }
.tier-card p { margin: 22px -30px -30px; padding: 16px; border-radius: 0 0 21px 21px; background: var(--blue-light); color: var(--ink); font-weight: 800; }
.tier-card--featured { border-color: var(--blue); box-shadow: 0 22px 60px rgba(91,155,213,.18); }
.pricing-includes { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 20px; margin-top: 30px; color: var(--ink); font-weight: 700; }
.pricing-includes span { display: flex; align-items: center; gap: 7px; }
.pricing-includes svg { color: var(--blue); }
.pricing-note { margin: 18px 0 0; color: var(--ink-soft); text-align: center; }

@media (max-width: 1100px) {
	.problem-grid, .benefit-grid, .protection-grid { grid-template-columns: repeat(2, 1fr); }
	.loop-grid { grid-template-columns: repeat(3, 1fr); }
	.loop-step::after { display: none; }
  .desktop-nav {
    gap: 22px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(470px, 1.08fr);
  }

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

  .story-stage {
    gap: 35px;
    padding: 55px 45px;
  }

  .mis-grid,
  .contact-grid {
    gap: 65px;
  }

  .feature-universe {
    padding: 50px 35px;
  }

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

@media (max-width: 900px) {
  .desktop-nav,
  .login-link {
    display: none;
  }

  .menu-button {
    display: flex;
  }

  .mobile-nav.is-open {
    display: grid;
  }

  .mobile-nav a {
    border-bottom: 1px solid var(--line);
    font-size: 14px;
    font-weight: 700;
    padding: 13px 0;
  }

  .hero {
    padding-top: 130px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 680px;
  }

  .hero-visual {
    margin: 0 auto;
    max-width: 720px;
  }

  .hero-foundation {
    margin-top: 45px;
  }

  .section-heading,
  .section-heading--wide {
    align-items: start;
    gap: 24px;
    grid-template-columns: 1fr;
  }

  .section-heading p {
    max-width: 630px;
  }

  .story-stage {
    grid-template-columns: 1fr;
  }

  .story-copy {
    max-width: 600px;
  }

  .mis-grid,
  .pricing-grid,
  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .mis-copy {
    max-width: 650px;
  }

  .mis-orbit {
    margin: -20px auto 0;
    max-width: 620px;
    width: 100%;
  }

  .puck-feature {
    grid-template-columns: 1fr;
  }

  .puck-copy {
    max-width: 700px;
  }

  .puck-visual {
    min-height: 500px;
  }

  .puck-visual::before {
    height: 14px;
    inset: 0 0 auto;
    width: auto;
  }

  .quote-grid {
    grid-template-columns: 1fr 1fr;
  }

  .quote-card--featured {
    grid-column: 1 / -1;
  }

  .faq-grid {
    gap: 55px;
  }

  .faq-intro {
    position: static;
  }

  .contact-copy {
    max-width: 720px;
  }

	.audience-grid,
	.ai-boundaries,
	.pricing-tiers {
		grid-template-columns: 1fr;
	}

	.replacement-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.workflow-grid {
		grid-template-columns: 1fr;
	}

	.audience-card {
		padding: 28px;
	}

	.audience-card ul {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 700px) {
	html,
	body {
		touch-action: pan-y;
	}

	.puck-band {
		margin-top: 58px;
		padding: 48px 20px;
	}

	.problem-grid,
	.loop-grid,
	.benefit-grid,
	.protection-grid {
		grid-template-columns: 1fr;
	}

	/* Mobile only: stack the fragmentation cards into one flush panel. The grid
	   owns the outer border and rounding; each card pulls up 1px so touching
	   borders collapse to a single line rather than doubling to 2px. Desktop
	   keeps its separate cards on a 12px gap. */
	.problem-grid {
		gap: 0;
		border: 1px solid rgba(36, 61, 85, 0.12);
		border-radius: 16px;
		overflow: hidden;
		background: #fff;
	}

	.problem-card {
		border-radius: 0;
		margin-top: -1px;
	}

	.loop-section {
		padding-top: 20px;
	}

	.replacement-row {
		align-items: flex-start;
		flex-direction: column;
		gap: 7px;
	}

	.workflow-card {
		padding: 24px;
	}

	.audience-card {
		padding: 24px;
	}

	.app-downloads {
		align-items: flex-start;
		flex-direction: column;
		gap: 12px;
		padding: 18px;
	}

	.app-downloads__badges {
		gap: 8px;
		max-width: 287px;
		width: 100%;
	}

	.meeting-steps {
		grid-template-columns: repeat(3, 1fr);
	}

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

	.comparison-head,
	.comparison-row {
		grid-template-columns: 1fr;
	}

	.comparison-head span {
		display: none;
	}

	.comparison-row strong {
		border-left: 0;
		border-top: 1px solid rgba(36,61,85,.1);
	}

  .shell {
    padding-left: 20px;
    padding-right: 20px;
  }

  .header-inner {
    height: 100%;
  }

  .header-actions {
    gap: 8px;
  }

  .header-actions .button {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 104px 0 32px;
  }

  .hero h1 {
    font-size: clamp(45px, 13vw, 62px);
    margin-top: 20px;
  }

  .hero-lede {
    font-size: 16px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-actions .text-link {
    justify-content: center;
  }

  .hero-trust {
    margin-top: 28px;
  }

  .hero-visual {
    min-height: 430px;
  }

  .hero-image {
    left: -4%;
    top: 28px;
    width: 108%;
  }

  .float-card--alert {
    left: -2%;
    padding: 9px 10px;
    top: 15%;
  }

	.float-card--puck {
		left: -2%;
		top: 72%;
	}

	.float-card--puck img {
		height: 56px;
		width: 56px;
	}

	.float-card--puck small {
		display: none;
	}

  .float-card--alert strong {
    font-size: 9px;
  }

  .float-card--alert div > span:last-child,
  .pulse-ring {
    display: none;
  }

  .float-icon {
    height: 32px;
    width: 32px;
  }

	.float-card--voice {
		bottom: auto;
		right: -2%;
		top: 72%;
		width: max-content;
	}

	.float-card--voice .float-icon {
		height: 40px;
		width: 40px;
	}

  .float-card--tools {
    bottom: 20%;
    left: 0;
  }

  .hero-foundation {
    gap: 15px;
    grid-template-columns: 1fr;
  }

  .hero-foundation > div {
    padding: 0;
  }

  .hero-foundation > div + div {
    border-left: 0;
  }

  .section {
    padding: 90px 0;
  }

  .connected-section {
    padding-top: 110px;
  }

  .section-heading {
    margin-bottom: 40px;
  }

  .section-heading h2,
  .mis-copy h2,
  .pricing-heading h2,
  .quote-intro h2,
  .faq-intro h2,
  .contact-copy h2 {
    font-size: 40px;
  }

  .story-tabs {
    display: grid;
    gap: 0 8px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 0 0 25px;
    overflow: visible;
    padding: 0;
  }

  .story-tabs button {
    min-width: 0;
    padding: 14px 8px;
  }

  .story-stage {
    border-radius: 24px;
    gap: 32px;
    min-height: 0;
    padding: 35px 24px 30px;
  }

  .story-copy h3 {
    font-size: 34px;
  }

  .data-map {
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-height: 0;
  }

  .profile-card {
    left: auto;
    max-width: none;
    order: 2;
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    width: 100%;
  }

  .source-nodes {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    order: 1;
  }

  .source-node {
    font-size: 9px;
    gap: 7px;
    justify-content: flex-start;
    min-width: 0;
    padding: 8px;
    position: relative;
    width: auto;
  }

  .source-node > span {
    flex: 0 0 auto;
    height: 27px;
    width: 27px;
  }

  .source-node > i {
    display: none;
  }

  .node-1,
  .node-2,
  .node-3 {
    bottom: auto;
    left: auto;
    right: auto;
    top: auto;
  }

  .node-3 {
    grid-column: 1 / -1;
    justify-self: center;
    width: calc(50% - 5px);
  }

  .mis-section {
    padding: 90px 0 70px;
  }

  .mis-orbit {
    height: 350px;
    margin: 18px auto 0;
    max-width: 350px;
    transform: none;
  }

  .orbit-ring--outer {
    height: 330px;
    width: 330px;
  }

  .orbit-ring--inner {
    height: 220px;
    width: 220px;
  }

  .orbit-core {
    border-radius: 24px;
    padding: 22px 24px;
  }

  .orbit-core img {
    height: 46px;
    margin-bottom: 10px;
    width: 46px;
  }

  .orbit-core strong {
    font-size: 15px;
  }

  .orbit-core span {
    font-size: 7px;
    margin-top: 4px;
  }

  .orbit-item {
    box-shadow: 0 10px 28px rgba(36, 61, 85, 0.16);
    font-size: 10px;
    height: 46px;
    width: 76px;
  }

	.orbit-item--one,
	.orbit-item--two {
		top: 15%;
	}

	.orbit-item--one {
		left: 0;
	}

	.orbit-item--two {
		right: 0;
	}

	.orbit-item--three,
	.orbit-item--four {
		bottom: 15%;
	}

	.orbit-item--three {
		right: 0;
	}

	.orbit-item--four {
		left: 0;
	}

  @keyframes orbit {
    from {
      transform: rotate(0deg) translateX(165px) rotate(0deg);
    }
    to {
      transform: rotate(360deg) translateX(165px) rotate(-360deg);
    }
  }

  .product-grid,
  .article-grid {
    grid-template-columns: 1fr;
  }

  .product-image {
    height: 250px;
  }

  .product-content {
    padding: 30px 24px 32px;
  }

  .puck-feature {
    border-radius: 24px;
    margin-top: 65px;
  }

  .puck-copy {
    padding: 38px 24px 34px;
  }

  .puck-copy h3 {
    font-size: 40px;
  }

  .puck-copy .puck-lede {
    font-size: 18px;
  }

  .puck-visual {
    min-height: 360px;
  }

  .puck-status {
    bottom: 16px;
    right: 16px;
  }

  .feature-universe {
    border-radius: 24px;
    margin-top: 70px;
    padding: 38px 22px;
  }

  .feature-universe__heading h3 {
    font-size: 37px;
  }

  .feature-groups {
    grid-template-columns: 1fr;
  }

  .feature-tail {
    align-items: start;
    flex-direction: column;
  }

  .quote-section,
  .faq-section,
  .contact-section {
    padding: 90px 0;
  }

  .quote-grid {
    grid-template-columns: 1fr;
  }

  .quote-card--featured {
    grid-column: auto;
  }

  .quote-grid .quote-card--featured blockquote {
    font-size: 21px;
  }

  .pricing-grid {
    gap: 25px;
  }

  .cost-stack {
    padding: 8px 16px 0;
  }

  .cost-stack__head,
  .cost-row {
    grid-template-columns: 34px 1fr auto;
  }

  .cost-row strong {
    max-width: 145px;
  }

  .price-card {
    padding: 30px 24px;
  }

  .article-image {
    height: 220px;
  }

  .faq-list summary {
    font-size: 15px;
    gap: 15px;
  }

  .contact-grid {
    gap: 55px;
  }

  .contact-points {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .demo-form {
    border-radius: 22px;
    padding: 25px 20px;
		position: relative;
	}

	.form-time {
		position: absolute;
		right: 16px;
		top: 18px;
		transform: none;
		z-index: 1;
  }

  .footer-top {
    gap: 55px;
    grid-template-columns: 1fr;
  }

  .footer-links {
    gap: 35px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 430px) {
  .hero-visual {
    min-height: 335px;
  }

  .hero-foundation {
    margin-top: 18px;
  }

  .float-card--alert {
    left: auto;
    right: -4%;
    top: calc(60.28vw - 6px);
    transform: rotate(1deg);
  }

  .float-card--puck {
    left: -4%;
    right: auto;
    top: calc(60.28vw - 6px);
    transform: rotate(-1deg);
  }

  .float-card--voice {
    gap: 10px;
    left: -2%;
    padding: 12px 13px;
    right: auto;
    top: -7%;
    transform: rotate(-1deg);
    max-width: calc(100% - 20px);
    width: max-content;
  }

  .float-card--voice .float-icon {
    height: 36px;
    width: 36px;
  }

  .float-card--voice .voice-content {
    gap: 5px;
    width: max-content;
  }

  .float-card--voice .waveform {
    gap: 2px;
    height: 30px;
  }

  .float-card--voice .waveform span {
    width: 2px;
  }

  .float-card--voice .flow-tags {
    width: max-content;
  }

  .flow-tags span {
    padding-left: 6px;
    padding-right: 6px;
  }

  .feature-universe__heading h3 {
    font-size: 36px;
  }
}

@media (max-width: 375px) {
	.float-card--puck {
		transform: scale(.9) rotate(-1deg);
		transform-origin: left top;
	}

	.float-card--alert {
		transform: scale(.9) rotate(1deg);
		transform-origin: right top;
	}
}

@media (max-width: 340px) {
	.float-card--puck {
		transform: scale(.8) rotate(-1deg);
	}

	.float-card--alert {
		transform: scale(.8) rotate(1deg);
	}
}

@media (min-width: 701px) and (max-width: 900px) {
	.hero-visual {
		min-height: 620px;
	}

	.float-card--alert {
		left: 8px;
		top: 74px;
	}

	.float-card--puck {
		left: 8px;
		top: calc(14px + min(58vw, 450px));
	}

	.float-card--voice {
		right: 8px;
		top: calc(14px + min(58vw, 450px));
	}
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
