:root {
  --landing-bg: #111113;
  --landing-bg-soft: #1a1b1d;
  --landing-text: #ffffff;
  --landing-muted: rgba(255, 255, 255, 0.72);
  --landing-faint: rgba(255, 255, 255, 0.2);
  --landing-accent: #ff5d63;
  --landing-accent-hover: #ff7176;
  --landing-blue: #4052c1;
  --landing-blue-bright: #9dafff;
  --landing-heading-font: Poppins, Inter, ui-sans-serif, system-ui, sans-serif;
  --landing-body-font: "Open Sans", Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--landing-bg);
  scroll-behavior: smooth;
}

body.landing-body {
  margin: 0;
  min-width: 320px;
  background: var(--landing-bg);
  color: var(--landing-text);
  font-family: var(--landing-body-font);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body.no-outline {
  margin: 0;
  min-width: 320px;
  background: var(--landing-bg);
  color: var(--landing-text);
  font-family: var(--landing-body-font);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body.landing-body a {
  color: inherit;
  text-decoration: none;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 16px;
  z-index: 1000;
  padding: 10px 16px;
  border-radius: 999px;
  background: #fff;
  color: #111113;
  font-size: 14px;
  font-weight: 700;
  transform: translateY(-220%);
}

.skip-link:focus {
  transform: none;
  outline: 2px solid var(--landing-accent);
  outline-offset: 3px;
}

body.landing-body img,
body.landing-body svg {
  display: block;
}

body.landing-body img {
  max-width: 100%;
  height: auto;
  image-rendering: auto;
}

button,
input,
select,
textarea {
  font: inherit;
}

.landing-main {
  min-height: 100vh;
  overflow: hidden;
  background: var(--landing-bg);
  color: var(--landing-text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.landing-heading {
  font-family: var(--landing-heading-font);
  font-synthesis-weight: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.landing-hero {
  position: relative;
  min-height: 980px;
  overflow: hidden;
  background-color: var(--landing-bg);
  background-image: linear-gradient(180deg, rgba(17, 17, 19, 0.02) 0%, rgba(17, 17, 19, 0.04) 62%, rgba(17, 17, 19, 0.28) 100%), url("/images/hero-banner.jpg");
  background-position: center top;
  background-size: cover;
  background-attachment: fixed;
}

.landing-header {
  position: relative;
  z-index: 20;
  display: flex;
  width: 100%;
  height: 100px;
  align-items: flex-start;
  justify-content: space-between;
  overflow: visible;
  padding: 12px 24px 0;
}

.landing-logo-home {
  display: block;
  flex: 0 0 auto;
  width: 240px;
  margin-left: 0;
}

.landing-logo-home img,
.footer-logo img {
  width: 100%;
  height: auto;
}

.landing-header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 12px;
}

.primary-nav {
  position: absolute;
  top: 92px;
  right: 20px;
  left: 20px;
  z-index: 40;
  display: none;
  max-height: calc(100vh - 112px);
  overflow-y: auto;
  align-items: stretch;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background: rgba(17, 17, 19, 0.98);
  padding: 18px;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
}

.primary-nav[data-mobile-open="true"] {
  display: grid;
}

.mobile-nav-toggle {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 5px;
  background: rgba(17, 17, 19, 0.72);
  padding: 9px 12px;
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
}

.mobile-nav-toggle-icon,
.mobile-nav-toggle-icon::before,
.mobile-nav-toggle-icon::after {
  display: block;
  width: 17px;
  height: 2px;
  background: currentColor;
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.mobile-nav-toggle-icon {
  position: relative;
}

.mobile-nav-toggle-icon::before {
  position: absolute;
  top: -5px;
}

.mobile-nav-toggle-icon::after {
  position: absolute;
  top: 5px;
}

.mobile-nav-toggle[aria-expanded="true"] .mobile-nav-toggle-icon {
  background: transparent;
}

.mobile-nav-toggle[aria-expanded="true"] .mobile-nav-toggle-icon::before {
  top: 0;
  transform: rotate(45deg);
}

.mobile-nav-toggle[aria-expanded="true"] .mobile-nav-toggle-icon::after {
  top: 0;
  transform: rotate(-45deg);
}

.nav-item {
  position: relative;
}

.primary-nav > .nav-link,
.primary-nav > .nav-item > .nav-link {
  display: block;
  width: 100%;
  padding: 10px 4px;
  text-align: left;
}

.nav-submenu-trigger {
  border: 0;
  background: transparent;
  padding: 0;
  color: inherit;
  cursor: pointer;
  font: inherit;
}

.nav-submenu {
  position: static;
  z-index: 30;
  display: none;
  min-width: 204px;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
  padding: 0 0 4px 10px;
}

.nav-submenu::before {
  position: absolute;
  right: 0;
  bottom: 100%;
  left: 0;
  height: 14px;
  content: "";
}

.nav-item:hover .nav-submenu,
.nav-item:focus-within .nav-submenu,
.nav-item[data-submenu-open="true"] .nav-submenu {
  display: grid;
}

.nav-submenu-link {
  display: block;
  padding: 10px 18px;
  color: #fff;
  font-size: 16px;
  line-height: 1.3;
  white-space: nowrap;
  transition: color 180ms ease, background 180ms ease;
}

.nav-submenu-link:hover,
.nav-submenu-link:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  color: var(--landing-accent);
}

.nav-link,
.footer-link,
.launch-link,
.footer-social {
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.nav-link:hover,
.nav-link:focus-visible,
.footer-link:hover,
.footer-link:focus-visible,
.launch-link:hover,
.launch-link:focus-visible {
  color: var(--landing-accent);
}

.launch-link {
  position: relative;
  display: inline-flex;
  white-space: nowrap;
  padding: 0;
  color: #fff;
  font-size: 18px;
  font-weight: 400;
}

.launch-text {
  position: relative;
}

.launch-underline {
  position: absolute;
  bottom: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 2px;
  background: var(--landing-accent);
  opacity: 0;
  transition: opacity 180ms ease;
}

.launch-link:hover .launch-underline {
  opacity: 1;
}

.button-outline,
.button-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, opacity 180ms ease;
}

.button-outline {
  min-width: 150px;
  border: 1px solid #fff;
  background: #141416;
  padding: 12px 20px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
}

body.landing-body a.button-outline {
  color: #fff;
}

.button-outline:hover,
.button-outline:focus-visible {
  border-color: var(--landing-accent);
  color: var(--landing-accent);
}

body.landing-body .product-feature-light a.button-outline,
body.landing-body .product-section-light a.button-outline {
  border-color: #101014;
  background: transparent;
  color: #101014;
}

body.landing-body .product-feature-light a.button-outline:hover,
body.landing-body .product-feature-light a.button-outline:focus-visible,
body.landing-body .product-section-light a.button-outline:hover,
body.landing-body .product-section-light a.button-outline:focus-visible {
  border-color: var(--landing-accent);
  color: var(--landing-accent);
}

.header-demo-link {
  display: none;
  min-width: 0;
  padding: 10px 12px;
  font-size: 14px;
}

.button-primary {
  border: 0;
  background: var(--landing-accent);
  color: #111113;
  font-weight: 900;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--landing-accent-hover);
}

.hero-content {
  position: relative;
  z-index: 10;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 256px 0 0;
}

.hero-eyebrow,
.hero-subcopy {
  color: #fff;
  font-size: clamp(1.35rem, 2.64vw, 2.375rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.hero-title {
  max-width: 1080px;
  margin: 24px 0 0;
  color: #fff;
  font-size: clamp(3.6rem, 5.85vw, 5.25rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.055em;
}

.hero-subcopy {
  margin: 28px 0 0;
}

.hero-demo-link {
  min-width: 226px;
  margin-top: 36px;
  padding: 20px 40px;
  font-size: 18px;
}

.product-section {
  background: var(--landing-bg);
  padding: 112px 20px 0;
}

.product-intro {
  max-width: 1060px;
  margin: 0 auto;
  color: #fff;
  font-size: clamp(3rem, 5.35vw, 5.25rem);
  font-weight: 300;
  line-height: 1.16;
  letter-spacing: -0.055em;
  text-align: center;
}

.carousel-card {
  width: 100%;
  max-width: 980px;
  margin: 96px auto 0;
  overflow: hidden;
  background: #291f46;
  padding: 64px 24px 96px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
}

.carousel-title {
  max-width: 960px;
  margin: 0 auto;
  color: #fff;
  text-align: center;
  font-size: clamp(2.7rem, 5.3vw, 4.7rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.carousel-copy {
  max-width: 900px;
  margin: 44px auto 0;
  color: #fff;
  text-align: center;
  font-size: clamp(1.05rem, 1.9vw, 1.75rem);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -0.025em;
}

.product-shot {
  width: 100%;
  height: auto;
  margin: 80px auto 0;
  background: #fff;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  transform: scale(var(--landing-scroll-scale, 1));
  transform-origin: center center;
  transition: transform 200ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 200ms ease;
  will-change: transform;
  contain: layout style paint;
}

.product-shot.product-shot-1 {
  max-width: 844px;
}

.product-shot.product-shot-2 {
  max-width: 754px;
}

.product-shot.product-shot-3 {
  max-width: 817px;
}

.product-shot.product-shot-4 {
  max-width: 817px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 64px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}

.carousel-dot:hover {
  background: rgba(255, 255, 255, 0.75);
  transform: scale(1.15);
}

.carousel-dot[aria-current="true"] {
  background: #fff;
}

.wave-section {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  padding: 160px 20px;
  background-color: var(--landing-bg);
  background-image: linear-gradient(180deg, rgba(17, 17, 19, 0.08), rgba(17, 17, 19, 0.2)), url("/images/blue-wave.avif");
  background-position: center;
  background-size: cover;
  text-align: center;
}

.wave-title {
  max-width: 920px;
  margin: 0 auto;
  color: #fff;
  font-size: clamp(2.25rem, 4.1vw, 4rem);
  font-style: italic;
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: -0.04em;
}

.home-lifecycle-section {
  background: #f2f2f2;
  padding: 112px 20px 128px;
  text-align: center;
}

.home-lifecycle-kicker {
  margin: 0;
  color: #575b68;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.home-lifecycle-title {
  max-width: 896px;
  margin: 24px auto 0;
  color: var(--landing-accent);
  font-size: clamp(2.8rem, 5.5vw, 5.2rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.055em;
}

.security-section {
  background: var(--landing-bg);
  padding: 112px 20px;
}

.section-container {
  max-width: 1280px;
  margin: 0 auto;
}

.security-intro {
  text-align: center;
}

.security-title {
  margin: 0;
  color: #fff;
  font-size: clamp(3rem, 5.2vw, 5.25rem);
  font-weight: 300;
  line-height: 1.18;
  letter-spacing: -0.055em;
}

.security-copy {
  max-width: 760px;
  margin: 48px auto 0;
  color: #fff;
  font-size: clamp(1rem, 1.55vw, 1.45rem);
  font-weight: 600;
  line-height: 1.1;
}

.security-grid {
  display: grid;
  gap: 24px;
  margin-top: 96px;
}

.security-card {
  min-height: 348px;
  border-radius: 24px;
  background: #fff;
  padding: 32px;
  color: #111113;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
}

.landing-icon {
  width: 64px;
  height: 64px;
  color: var(--landing-accent);
}

.security-card-title {
  margin: 28px 0 0;
  font-size: clamp(1.25rem, 1.6vw, 1.6rem);
  font-weight: 900;
  letter-spacing: -0.02em;
}

.security-card-copy {
  margin: 24px 0 0;
  color: #111113;
  font-size: clamp(1.05rem, 1.55vw, 1.45rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.about-section {
  position: relative;
  overflow: hidden;
  background-image: url("/images/savings-panel-bright.jpg");
  background-position: center right;
  background-size: cover;
  padding: 112px 20px;
}

.about-title {
  max-width: 900px;
  margin: 0;
  color: #fff;
  font-size: clamp(3rem, 5.5vw, 5.25rem);
  font-weight: 300;
  line-height: 1.18;
  letter-spacing: -0.055em;
}

.about-copy-grid {
  display: grid;
  max-width: 1050px;
  gap: 64px;
  margin-top: 96px;
  color: #fff;
  font-size: clamp(1.05rem, 1.8vw, 1.75rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.about-copy-grid p {
  margin: 0;
}

.savings-section {
  background: var(--landing-bg);
  padding: 0 20px;
}

.savings-grid {
  display: grid;
  max-width: 1300px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.savings-panel {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  padding: 40px;
  background-color: var(--landing-bg);
}

.savings-panel::before {
  position: absolute;
  inset: 0;
  background-image: url("/images/savings-panel.jpg");
  background-position: center bottom;
  background-size: cover;
  content: "";
  filter: brightness(1.42) contrast(1.08);
  transform: scale(1.02);
}

.savings-panel::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 17, 19, 0.02), rgba(17, 17, 19, 0.18));
  content: "";
}

.savings-panel-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 480px;
  flex-direction: column;
  justify-content: center;
}

.savings-title {
  max-width: 430px;
  margin: 0;
  color: #fff;
  font-size: clamp(3.2rem, 5.5vw, 5.25rem);
  font-weight: 300;
  line-height: 1.18;
  letter-spacing: -0.055em;
}

.savings-kicker {
  margin: 36px 0 0;
  color: #fff;
  font-size: clamp(1rem, 1.8vw, 1.75rem);
  font-weight: 500;
  letter-spacing: -0.03em;
}

.savings-cards {
  display: grid;
  gap: 32px;
  padding: 32px;
}

.savings-card {
  min-height: 300px;
  border-radius: 8px;
  background: var(--landing-bg-soft);
  padding: 28px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
}

.savings-card-title {
  margin: 32px 0 0;
  color: var(--landing-blue-bright);
  font-size: clamp(1.22rem, 1.55vw, 1.55rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.savings-card-copy {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(0.98rem, 1.26vw, 1.18rem);
  font-weight: 500;
  line-height: 1.28;
  letter-spacing: -0.025em;
}

.savings-card-footer {
  margin: 32px 0 0;
  color: #fff;
  font-size: clamp(0.95rem, 1.18vw, 1.1rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.savings-card-rule {
  width: 75%;
  height: 4px;
  margin-top: 28px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
}

.home-foundation-section {
  background:
    radial-gradient(circle at 15% 0%, rgba(14, 148, 253, 0.16), transparent 30%),
    var(--landing-bg);
  padding: 120px 20px;
}

.home-foundation-intro {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.home-foundation-kicker {
  margin: 0;
  color: var(--landing-accent);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.home-foundation-intro h2 {
  margin: 20px 0 0;
  color: #fff;
  font-size: clamp(2.8rem, 5.2vw, 5.4rem);
  font-weight: 300;
  line-height: 1.04;
  letter-spacing: -0.065em;
}

.home-foundation-grid {
  display: grid;
  gap: 20px;
  margin-top: 64px;
}

.home-foundation-card {
  min-height: 270px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03));
  padding: 30px;
}

.home-foundation-card > span {
  color: var(--landing-accent);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.home-foundation-card h3 {
  margin: 30px 0 0;
  color: #fff;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  line-height: 1.15;
}

.home-foundation-card p {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.05rem;
  line-height: 1.5;
}

/* Legacy metric styles remain available for archived landing markup. */
.metric-value {
  margin: 0;
  color: var(--landing-accent);
  font-size: clamp(3.1rem, 5.8vw, 5.7rem);
  font-weight: 500;
  line-height: 1;
}

.metric-label {
  max-width: 11rem;
  margin: 16px auto 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
}

.metric-rule {
  width: 112px;
  height: 4px;
  margin: 36px auto 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
}

.cta-section {
  position: relative;
  background: var(--landing-bg);
  padding: 96px 20px;
}

.cta-grid {
  display: grid;
  max-width: 1300px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-art {
  position: relative;
  isolation: isolate;
  display: flex;
  min-height: 430px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 32px;
  background-color: var(--landing-bg);
  text-align: center;
}

.cta-art::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("/images/procurement-orb.jpg");
  background-position: center;
  background-size: cover;
  content: "";
  filter: brightness(1.32) contrast(1.08);
  transform: scale(1.02);
}

.cta-art::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(17, 17, 19, 0.18), rgba(17, 17, 19, 0.5));
  content: "";
}

.cta-red-dots {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  width: clamp(300px, 39vw, 500px);
  aspect-ratio: 1;
  opacity: 0.94;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transform-origin: center;
  mix-blend-mode: screen;
  contain: layout paint;
}

.cta-red-dots::before {
  position: absolute;
  inset: 7%;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(255, 37, 30, 0.12), rgba(255, 37, 30, 0.03) 48%, transparent 72%);
  content: "";
  filter: blur(18px);
}

.cta-red-dots-canvas {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  filter: brightness(1.18) saturate(1.18) drop-shadow(0 0 8px rgba(255, 32, 24, 0.72));
}

.cta-art-title {
  position: relative;
  z-index: 4;
  max-width: 480px;
  margin: 0;
  color: rgba(255, 255, 255, 0.45);
  font-size: clamp(2rem, 3vw, 2.7rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.04em;
}

.cta-copy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-content: center;
  gap: 32px;
  padding: 36px;
}

.cta-copy p {
  margin: 0;
  color: #fff;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: -0.03em;
}

.cta-copy p + p {
  margin-top: 0;
}

.cta-demo-link {
  grid-column: 1 / -1;
  justify-self: center;
  width: fit-content;
  min-width: 196px;
  margin-top: 40px;
  padding: 20px 32px;
  font-size: 16px;
}

.landing-footer {
  background: var(--landing-bg);
  padding: 32px 20px 96px;
}

.footer-grid {
  display: grid;
  max-width: 1300px;
  gap: 48px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 56px;
}

.footer-brand {
  display: grid;
  align-content: start;
  gap: 18px;
}

.footer-logo {
  width: 176px;
  width: fit-content;
}

.footer-logo img {
  width: 176px;
}

.footer-company-info {
  max-width: 280px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.55;
}

.footer-links {
  display: grid;
  gap: 32px;
  color: #fff;
  font-size: clamp(1rem, 1.45vw, 1.35rem);
}

.newsletter-form {
  max-width: 384px;
}

.newsletter-title,
.connect-title {
  margin: 0;
  color: #fff;
  font-size: clamp(1.1rem, 1.6vw, 1.45rem);
  font-weight: 500;
}

.form-label {
  display: block;
  margin-top: 32px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}

.text-input,
.text-area,
.select-input {
  width: 100%;
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.text-input {
  margin-top: 8px;
  padding: 8px 12px;
  font-size: 14px;
}

.text-area {
  min-height: 148px;
  margin-top: 8px;
  padding: 12px;
  resize: vertical;
}

.select-input {
  margin-top: 8px;
  padding: 10px 12px;
  background: #111113;
}

.text-input:focus,
.text-area:focus,
.select-input:focus {
  border-color: var(--landing-accent);
  box-shadow: 0 0 0 3px rgba(255, 93, 99, 0.18);
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  line-height: 1.4;
}

.checkbox-label input {
  width: 16px;
  height: 16px;
  margin-top: 4px;
  accent-color: var(--landing-accent);
}

.footer-submit {
  min-width: 154px;
  margin-top: 28px;
  padding: 12px 32px;
  border: 1px solid #fff;
  border-radius: 5px;
  background: transparent;
  color: #fff;
  cursor: pointer;
  transition: color 180ms ease, border-color 180ms ease;
}

.footer-submit:hover,
.footer-submit:focus-visible {
  border-color: var(--landing-accent);
  color: var(--landing-accent);
}

.footer-social {
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: background 180ms ease, border-color 180ms ease;
}

.footer-social:hover,
.footer-social:focus-visible {
  background: var(--landing-accent);
  border-color: var(--landing-accent);
}

.footer-social img {
  width: 16px;
  height: 16px;
  filter: invert(1) brightness(1.2);
}

.copyright {
  margin: 48px 0 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  line-height: 1.7;
}

.footer-legal {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.footer-legal a:hover,
.footer-legal a:focus-visible,
.legal-body a:hover,
.legal-body a:focus-visible,
.simple-fact a:hover,
.simple-fact a:focus-visible {
  color: #fff;
}

.legal-body a,
.simple-fact a,
.footer-legal a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.message-box[hidden] {
  display: none;
}

.message-box {
  border-radius: 16px;
  padding: 12px 16px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}

.message-error {
  border: 1px solid rgba(255, 93, 99, 0.4);
  background: rgba(255, 93, 99, 0.12);
}

.message-status {
  border: 1px solid rgba(157, 175, 255, 0.45);
  background: rgba(64, 82, 193, 0.22);
}

.simple-page-main {
  min-height: 100vh;
  background: radial-gradient(circle at 72% 18%, rgba(64, 82, 193, 0.36), transparent 32rem), radial-gradient(circle at 10% 22%, rgba(255, 93, 99, 0.22), transparent 28rem), var(--landing-bg);
  color: #fff;
}

.simple-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 20px;
}

.simple-logo {
  display: block;
  width: 190px;
}

.simple-logo img {
  width: 100%;
  height: auto;
}

.simple-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  font-weight: 700;
}

.simple-nav a:hover,
.simple-nav a:focus-visible {
  color: var(--landing-accent);
}

.simple-hero {
  display: grid;
  max-width: 1180px;
  gap: 40px;
  margin: 0 auto;
  padding: 96px 20px 120px;
}

.about-hero {
  max-width: 1280px;
}

.about-hero > * {
  min-width: 0;
}

.simple-kicker {
  margin: 0;
  color: var(--landing-accent);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.simple-title {
  margin: 18px 0 0;
  color: #fff;
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: -0.07em;
}

.simple-copy {
  max-width: 620px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 600;
  line-height: 1.5;
}

.simple-card {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.07);
  padding: 28px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(14px);
}

.simple-card h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.simple-form {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.simple-form-grid {
  display: grid;
  gap: 16px;
}

.simple-field label {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  font-weight: 800;
}

.simple-field input,
.simple-field textarea,
.simple-field select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.24);
  color: #fff;
  outline: none;
  padding: 13px 14px;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.simple-field textarea {
  min-height: 136px;
  resize: vertical;
}

.simple-field select {
  background-color: #141416;
}

.simple-field input:focus,
.simple-field textarea:focus,
.simple-field select:focus {
  border-color: var(--landing-accent);
  box-shadow: 0 0 0 3px rgba(255, 93, 99, 0.18);
}

.simple-submit {
  width: fit-content;
  min-width: 190px;
  border: 0;
  border-radius: 5px;
  background: var(--landing-accent);
  color: #111113;
  cursor: pointer;
  padding: 15px 24px;
  font-weight: 900;
  transition: background 180ms ease, transform 180ms ease;
}

.simple-submit:hover,
.simple-submit:focus-visible {
  background: var(--landing-accent-hover);
  transform: translateY(-1px);
}

.simple-status {
  border: 1px solid rgba(157, 175, 255, 0.45);
  border-radius: 16px;
  background: rgba(64, 82, 193, 0.22);
  padding: 12px 14px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.simple-status[hidden] {
  display: none;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.simple-facts {
  display: grid;
  gap: 16px;
  margin: 28px 0 0;
}

.simple-fact {
  border-left: 4px solid var(--landing-accent);
  padding-left: 16px;
}

.simple-fact strong {
  display: block;
  color: #fff;
  font-size: 18px;
}

.simple-fact span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.5;
}

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

.legal-hero {
  max-width: 800px;
}

.legal-hero .simple-title {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
}

.legal-meta {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  font-weight: 600;
}

.legal-body {
  margin-top: 12px;
}

.not-found-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.simple-content-grid,
.blog-grid {
  display: grid;
  gap: 22px;
}

.simple-content-card,
.blog-card {
  min-width: 0;
  overflow: visible;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.06);
}

.simple-content-card {
  padding: clamp(24px, 4vw, 42px);
}

.simple-card-label {
  margin: 0 0 12px;
  color: var(--landing-accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.simple-content-card h2,
.blog-card h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.5rem, 2.3vw, 2.35rem);
  line-height: 1.1;
  letter-spacing: -0.045em;
  overflow-wrap: anywhere;
}

.blog-card h2 a {
  color: inherit;
}

.blog-card h2 a:hover,
.blog-card h2 a:focus-visible {
  color: var(--landing-accent);
}

.simple-content-card p:not(.simple-card-label),
.blog-card p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1rem;
  line-height: 1.7;
}

.simple-content-link {
  display: inline-block;
  margin-top: 22px;
  color: var(--landing-accent);
  font-weight: 800;
}

.simple-content-link:hover,
.simple-content-link:focus-visible {
  color: var(--landing-accent-hover);
}

.blog-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 8.5;
  object-fit: cover;
}

.blog-card-body {
  padding: clamp(22px, 3vw, 34px);
}

.blog-meta {
  display: inline-block;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.9rem;
  font-weight: 700;
}

.article-page {
  max-width: 980px;
  margin: 0 auto;
  padding: 96px 20px 120px;
}

.article-header {
  max-width: 860px;
}

.article-byline {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.95rem;
  font-weight: 700;
}

.article-hero-image {
  width: 100%;
  margin-top: 54px;
  border-radius: 28px;
}

.article-body {
  display: grid;
  max-width: 760px;
  gap: 42px;
  margin: 64px auto 0;
}

.article-body section {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 28px;
}

.article-body h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.55rem, 3vw, 2.4rem);
  line-height: 1.12;
  letter-spacing: -0.045em;
}

.article-body p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.05rem;
  line-height: 1.75;
}

.simple-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 32px 20px 48px;
  color: rgba(255, 255, 255, 0.68);
  text-align: center;
}

.simple-footer a {
  color: #fff;
  font-weight: 800;
}

.product-page-main {
  position: relative;
  min-height: 100vh;
  overflow: clip;
  background: #111113;
  color: #fff;
}

.product-page .site-header {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
}

.product-page-hero {
  display: grid;
  min-height: 0;
  align-items: center;
  gap: 42px;
  background-color: #111113;
  background-image: linear-gradient(90deg, rgba(17, 17, 19, 0.94), rgba(17, 17, 19, 0.54) 52%, rgba(17, 17, 19, 0.18)), url("/images/hero-banner.jpg");
  background-position: center top;
  background-size: cover;
  padding: 176px 20px 96px;
}

.product-hero-content {
  max-width: 760px;
}

.product-page-kicker,
.product-page-eyebrow,
.product-step {
  display: inline-block;
  color: var(--landing-accent);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.product-page-title {
  max-width: 900px;
  margin: 18px 0 0;
  color: #fff;
  font-size: clamp(3.4rem, 7.1vw, 7.5rem);
  font-weight: 300;
  line-height: 0.96;
  letter-spacing: -0.075em;
}

.product-page-copy {
  max-width: 660px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  font-weight: 600;
  line-height: 1.45;
}

.product-page-demo {
  min-width: 184px;
  margin-top: 36px;
  padding: 17px 30px;
  font-size: 17px;
}

.home-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 36px;
}

.home-hero-actions .product-page-demo {
  margin-top: 0;
}

.product-page .product-feature-section {
  min-height: 0;
}

.product-page .product-image-frame img,
.product-page .product-visual-grid img {
  height: auto;
  object-fit: contain;
  min-height: 0;
}

.home-copilot-media {
  width: min(480px, 100%);
  max-width: 480px;
  justify-self: center;
  align-self: center;
}

.home-systems-section {
  padding-top: 88px;
  padding-bottom: 88px;
}

.home-systems-section .product-section-intro .overview-section-copy {
  color: rgba(16, 16, 20, 0.68);
}

.home-systems-grid {
  align-items: stretch;
}

.home-systems-card {
  min-width: 0;
  border: 1px solid rgba(16, 16, 20, 0.1);
  border-radius: 24px;
  background: #fff;
  padding: clamp(24px, 4vw, 42px);
  box-shadow: 0 18px 48px rgba(16, 16, 20, 0.06);
  text-align: center;
}

.home-systems-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto;
  border-radius: 16px;
  background: rgba(64, 82, 193, 0.09);
  padding: 13px;
  color: var(--landing-blue);
}

.home-systems-label {
  display: block;
  margin-top: 28px;
  color: var(--landing-blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.home-systems-card h3 {
  margin: 16px 0 0;
  color: #101014;
  font-size: clamp(1.6rem, 2.4vw, 2.35rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.home-systems-card p {
  margin: 18px 0 0;
  color: rgba(16, 16, 20, 0.68);
  font-size: 1rem;
  line-height: 1.65;
}

.pricing-page-hero {
  background-image:
    linear-gradient(90deg, rgba(17, 17, 19, 0.96), rgba(17, 17, 19, 0.68)),
    url("/images/hero-banner.jpg");
}

.pricing-summary {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 30px;
  background: rgba(17, 17, 19, 0.82);
  padding: clamp(26px, 4vw, 44px);
}

.pricing-summary ul,
.pricing-option-card ul {
  margin: 24px 0 0;
  padding-left: 22px;
}

.pricing-summary li,
.pricing-option-card li {
  font-size: 1rem;
  line-height: 1.65;
}

.pricing-summary li {
  color: rgba(255, 255, 255, 0.76);
}

.pricing-summary li + li,
.pricing-option-card li + li {
  margin-top: 8px;
}

.pricing-options {
  background: #f4f6fb;
  padding: 104px 20px 120px;
  color: #101014;
}

.pricing-options .product-section-intro h2 {
  color: #101014;
}

.pricing-options .overview-section-copy {
  color: rgba(16, 16, 20, 0.68);
}

.pricing-option-grid {
  display: grid;
  max-width: 1180px;
  gap: 22px;
  margin: 56px auto 0;
}

.pricing-option-card {
  min-width: 0;
  border: 1px solid rgba(16, 16, 20, 0.1);
  border-radius: 30px;
  background: #fff;
  padding: clamp(26px, 4vw, 42px);
}

.pricing-option-card-featured {
  border-color: rgba(64, 82, 193, 0.34);
  background: #eef1fa;
}

.pricing-option-label {
  margin: 0;
  color: var(--landing-blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.pricing-option-card h3 {
  margin: 18px 0 0;
  color: #101014;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.pricing-option-card > p:not(.pricing-option-label) {
  margin: 20px 0 0;
  color: rgba(16, 16, 20, 0.68);
  font-size: 1rem;
  line-height: 1.65;
}

.pricing-option-card li {
  color: rgba(16, 16, 20, 0.76);
}

.pricing-option-card .product-page-demo {
  margin-top: 30px;
}

.product-hero-media {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 34px;
  background: #fff;
  box-shadow: 0 30px 110px rgba(0, 0, 0, 0.44);
}

.product-hero-media img,
.product-image-frame img,
.product-visual-grid img,
.product-phone-stack img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.home-copilot-media img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.product-ai-section,
.product-faq-section {
  background: #111113;
  padding: 96px 20px;
}

.product-section-intro {
  max-width: 1040px;
  margin: 0 auto;
  text-align: center;
}

.product-section .product-section-intro .overview-section-copy {
  max-width: none;
}

.product-section-intro h2 {
  margin: 18px 0 0;
  color: #fff;
  font-size: clamp(2.4rem, 5vw, 5.6rem);
  font-weight: 300;
  line-height: 1.04;
  letter-spacing: -0.065em;
}

.product-ai-grid,
.product-faq-grid {
  display: grid;
  max-width: 1180px;
  gap: 22px;
  margin: 56px auto 0;
}

.product-ai-card,
.product-faq-card {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 30px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.045));
  padding: clamp(24px, 4vw, 42px);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.24);
}

.product-ai-card .landing-icon {
  width: 58px;
  height: 58px;
  margin-top: 28px;
  color: var(--landing-accent);
}

.product-featured-pill {
  display: inline-flex;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  padding: 7px 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.product-ai-card h3,
.product-faq-card h3 {
  margin: 24px 0 0;
  color: #fff;
  font-size: clamp(1.6rem, 2.4vw, 2.35rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.product-ai-card p,
.product-faq-card p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
  line-height: 1.65;
}

.product-section-light {
  background: #f4f6fb;
  color: #101014;
}

.product-section-light .product-section-intro h2,
.product-section-light .product-ai-card h3,
.product-section-light .product-faq-card h3 {
  color: #101014;
}

.product-section-light .product-ai-card,
.product-section-light .product-faq-card {
  border-color: rgba(16, 16, 20, 0.1);
  background: #fff;
  box-shadow: 0 24px 80px rgba(16, 16, 20, 0.08);
}

.product-section-light .product-ai-card p,
.product-section-light .product-faq-card p {
  color: rgba(16, 16, 20, 0.68);
}

.product-feature-section {
  display: grid;
  max-width: 1320px;
  align-items: center;
  gap: 44px;
  margin: 0 auto;
  padding: 96px 20px;
}

.product-feature-light {
  background: #f4f6fb;
  box-shadow: 0 0 0 100vmax #f4f6fb;
  clip-path: inset(0 -100vmax);
  color: #101014;
}

.product-feature-dark {
  background: #171827;
  box-shadow: 0 0 0 100vmax #171827;
  clip-path: inset(0 -100vmax);
  color: #fff;
}

.product-feature-copy h2 {
  margin: 16px 0 0;
  font-size: clamp(2.6rem, 5vw, 5.4rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.07em;
}

.product-feature-copy p {
  max-width: 600px;
  margin: 24px 0 0;
  color: currentColor;
  font-size: clamp(1.1rem, 2vw, 1.75rem);
  line-height: 1.35;
  opacity: 0.78;
}

.product-workspace-card,
.product-rfq-card,
.product-image-frame,
.product-visual-grid,
.product-phone-stack {
  border-radius: 34px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.26);
}

.product-workspace-card {
  overflow: hidden;
  background: #fff;
  color: #121217;
  padding: clamp(22px, 4vw, 42px);
}

.product-doc-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.product-doc-row figure {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 18px;
  background: #f6f7fb;
  padding: 14px 18px;
  color: #202028;
  font-weight: 800;
}

.product-doc-row img {
  width: 42px;
  height: 70px;
  object-fit: contain;
}

.product-table-mock {
  margin-top: 26px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 24px;
  background: #fff;
}

.product-table-toolbar,
.product-table-head,
.product-table-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  align-items: center;
  padding: 16px 18px;
}

.product-table-toolbar {
  display: flex;
  justify-content: space-between;
  background: #141416;
  color: #fff;
  font-weight: 900;
}

.product-table-toolbar span {
  color: var(--landing-accent);
  font-size: 13px;
}

.product-table-head {
  background: #eef1fa;
  color: #555b68;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-table-row {
  border-top: 1px solid #eef1fa;
  color: #1d2130;
  font-weight: 700;
}

.product-rfq-card {
  display: grid;
  gap: 20px;
  background: linear-gradient(145deg, #222647, #101222);
  padding: clamp(22px, 4vw, 42px);
}

.rfq-panel {
  border-radius: 28px;
  background: #fff;
  padding: 26px;
  color: #121217;
}

.rfq-panel h3 {
  margin: 0 0 22px;
  font-size: clamp(1.25rem, 2.2vw, 2rem);
}

.rfq-field {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid #e5e7f0;
  padding: 15px 0;
}

.rfq-field span {
  color: #5b6374;
}

.rfq-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.rfq-checks span {
  border-radius: 999px;
  background: rgba(64, 82, 193, 0.24);
  padding: 12px 18px;
  color: #fff;
  font-weight: 900;
}

.product-image-frame {
  overflow: hidden;
  background: #fff;
}

.product-feature-wide .product-image-frame img {
  height: auto;
  object-fit: contain;
}

.product-visual-grid {
  display: grid;
  gap: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  padding: 18px;
}

.product-visual-grid img {
  min-height: 220px;
  border-radius: 24px;
}

.product-phone-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: end;
  gap: 18px;
  background: #111113;
  padding: 22px;
}

.product-phone-stack img {
  min-height: 260px;
  border-radius: 26px;
}

.product-phone-stack img:nth-child(2) {
  transform: translateY(-24px);
}

.product-faq-section {
  padding-bottom: 128px;
}

.overview-capabilities {
  background:
    radial-gradient(circle at 14% 12%, rgba(14, 148, 253, 0.18), transparent 28%),
    #111113;
  padding: 112px 20px 128px;
}

.overview-section-copy {
  max-width: 760px;
  margin: 24px auto 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
  line-height: 1.6;
}

.overview-capability-grid {
  display: grid;
  max-width: 1180px;
  gap: 22px;
  margin: 56px auto 0;
}

.overview-capability-card {
  min-width: 0;
  min-height: 0;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 26px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035));
  padding: clamp(24px, 4vw, 42px);
  box-shadow: 0 22px 68px rgba(0, 0, 0, 0.2);
}

.overview-capability-number {
  color: var(--landing-accent);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.overview-capability-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.overview-addon-pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border: 1px solid rgba(14, 148, 253, 0.42);
  border-radius: 999px;
  background: rgba(14, 148, 253, 0.13);
  padding: 6px 11px;
  color: #78c4ff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.overview-capability-card h3,
.overview-copilot-card h3 {
  margin: 24px 0 0;
  color: #fff;
  font-size: clamp(1.6rem, 2.4vw, 2.35rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.overview-capability-card p,
.overview-copilot-card p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.98rem;
  line-height: 1.6;
}

.overview-story-section {
  min-height: 0;
}

.overview-inline-pill {
  margin: 0 0 0 12px;
  vertical-align: middle;
}

.product-feature-light .overview-inline-pill {
  border-color: rgba(14, 148, 253, 0.34);
  background: rgba(14, 148, 253, 0.09);
  color: #0879d0;
}

.overview-image-pair {
  display: grid;
  gap: 18px;
}

.overview-image-pair figure {
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(16, 16, 20, 0.08);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 26px 78px rgba(0, 0, 0, 0.2);
}

.overview-image-pair img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.overview-image-pair figcaption {
  padding: 13px 18px 15px;
  color: #555d6d;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.overview-copilot-section {
  background:
    radial-gradient(circle at 80% 20%, rgba(100, 73, 255, 0.2), transparent 34%),
    #111113;
  padding: 120px 20px;
}

.overview-copilot-intro {
  max-width: 1040px;
  margin: 0 auto;
  text-align: center;
}

.overview-copilot-intro h2,
.overview-cta h2 {
  margin: 18px 0 0;
  color: #fff;
  font-size: clamp(2.4rem, 5vw, 5.6rem);
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: -0.07em;
}

.overview-copilot-intro > p:last-child {
  max-width: 760px;
  margin: 26px auto 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(1.05rem, 1.8vw, 1.4rem);
  line-height: 1.55;
}

.overview-copilot-grid {
  display: grid;
  max-width: 1180px;
  gap: 22px;
  margin: 56px auto 0;
}

.overview-copilot-card {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 28px 4px 12px;
}

.overview-copilot-card > span {
  color: #9c8cff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.overview-copilot-card h3 {
  margin-top: 24px;
}

.overview-cta {
  background:
    linear-gradient(135deg, rgba(14, 148, 253, 0.28), rgba(100, 73, 255, 0.2)),
    #111113;
  padding: 128px 20px 144px;
  text-align: center;
}

.overview-cta > div {
  max-width: 980px;
  margin: 0 auto;
}

.overview-cta p:not(.product-page-eyebrow) {
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
}

.overview-cta .product-section-intro h2 {
  font-size: clamp(2.4rem, 5vw, 5.6rem);
}

/*
 * Long landing pages keep reveal nodes visible. IntersectionObserver can leave
 * homepage and overview sections translated in wide Chrome viewports.
 */
.overview-page .landing-reveal[data-landing-reveal] {
  opacity: 1;
  transform: none;
}

@media (min-width: 768px) {
  .product-page-hero {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
    padding-right: 32px;
    padding-left: 32px;
  }

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

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

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

  .product-feature-section {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    padding: 96px 32px;
  }

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

  .product-feature-wide .product-feature-copy {
    max-width: 760px;
  }

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

  .overview-copilot-section {
    padding-right: 32px;
    padding-left: 32px;
  }

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

  .product-feature-reverse .product-feature-copy {
    order: 2;
  }
}

@media (min-width: 1024px) {
  .product-page-hero {
    min-height: 0;
    padding-top: 176px;
    padding-right: 32px;
    padding-left: 32px;
  }

  .product-ai-section,
  .product-faq-section {
    padding-right: 32px;
    padding-left: 32px;
  }

  .overview-capabilities {
    padding-right: 32px;
    padding-left: 32px;
  }

  .product-feature-section {
    min-height: 0;
  }

  .product-feature-wide {
    min-height: 0;
  }

  .product-feature-copy {
    padding-right: 24px;
  }
}

@media (min-width: 1200px) {
  .overview-capability-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 639px) {
  .product-page-hero {
    min-height: 0;
    padding-top: 154px;
  }

  .product-hero-media {
    border-radius: 24px;
  }

  .product-table-head,
  .product-table-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-table-head span:nth-child(n+3),
  .product-table-row span:nth-child(n+3) {
    display: none;
  }

  .product-phone-stack {
    grid-template-columns: 1fr;
  }

  .product-phone-stack img:nth-child(2) {
    transform: none;
  }

  .overview-capability-card {
    min-height: 0;
  }

  .overview-inline-pill {
    display: flex;
    margin: 12px 0 0;
  }
}

.delay-60 { --landing-delay: 60ms; }
.delay-90 { --landing-delay: 90ms; }
.delay-120 { --landing-delay: 120ms; }
.delay-180 { --landing-delay: 180ms; }
.delay-240 { --landing-delay: 240ms; }
.delay-270 { --landing-delay: 270ms; }
.delay-300 { --landing-delay: 300ms; }
.delay-360 { --landing-delay: 360ms; }
.delay-480 { --landing-delay: 480ms; }

@media (prefers-reduced-motion: no-preference) {
  .landing-reveal {
    opacity: 0;
    transform: translateY(44px);
    transition: opacity 900ms ease, transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--landing-delay, 0ms);
  }

  .landing-reveal[data-landing-direction="left"] {
    transform: translateX(-54px);
  }

  .landing-reveal[data-landing-direction="right"] {
    transform: translateX(54px);
  }

  .landing-reveal[data-landing-direction="scale"] {
    transform: scale(0.96);
  }

  .landing-reveal[data-landing-visible="true"] {
    opacity: 1;
    transform: none;
  }

  .landing-slide-fade {
    animation: landingSlideInFade 700ms cubic-bezier(0.16, 1, 0.3, 1) both;
  }

  .landing-modal-panel {
    animation: landingModalIn 220ms ease both;
  }

  .product-shot {
    will-change: transform;
  }

  .cta-red-dots {
    will-change: transform, opacity;
  }
}

@keyframes landingSlideInFade {
  from {
    opacity: 0;
    transform: translateX(-24px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes landingFadeIn {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes landingModalIn {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (min-width: 640px) {
  .landing-header {
    padding-right: 32px;
    padding-left: 32px;
  }

  .landing-logo-home {
    width: 288px;
  }

  .landing-header-actions {
    gap: 20px;
  }

  .launch-link {
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 5px;
    padding: 8px 12px;
    font-size: 14px;
    font-weight: 600;
  }

  .launch-link:hover,
  .launch-link:focus-visible {
    border-color: var(--landing-accent);
  }

  .hero-content {
    padding-right: 32px;
    padding-left: 32px;
  }

  .product-section,
  .security-section,
  .about-section,
  .savings-section,
  .overview-capabilities,
  .overview-copilot-section,
  .cta-section,
  .landing-footer,
  .wave-section,
  .trusted-section {
    padding-right: 32px;
    padding-left: 32px;
  }

  .carousel-card {
    padding-right: 56px;
    padding-left: 56px;
  }

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

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

  .landing-modal-panel {
    padding: 36px;
  }

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

  .simple-field-full {
    grid-column: 1 / -1;
  }
}

@media (min-width: 768px) {
  .security-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

  .simple-content-grid,
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (min-width: 1024px) {
  .landing-hero {
    min-height: 1145px;
  }

  .landing-header {
    padding-right: 40px;
    padding-left: 48px;
  }

  .landing-logo-home {
    width: 280px;
    margin-left: 0;
  }

  .landing-header-actions {
    gap: 32px;
    margin-right: 0;
  }

  .primary-nav {
    position: static;
    display: flex;
    max-height: none;
    overflow: visible;
    align-items: center;
    border: 0;
    border-radius: 0;
    background: transparent;
    padding: 0;
    gap: 32px;
    font-size: 18px;
  }

  .footer-grid {
    grid-template-columns: 1.1fr 0.65fr 1fr 0.75fr;
  }

  .simple-hero:not(.simple-hero-stacked) {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: start;
  }

  .about-hero {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.18fr);
    gap: 28px 56px;
  }

  .about-hero .simple-content-grid {
    grid-template-columns: 1fr;
    padding-left: 28px;
  }

  .simple-content-grid-four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .header-demo-link {
    display: inline-flex;
  }

  .mobile-nav-toggle {
    display: none;
  }

  .primary-nav > .nav-link,
  .primary-nav > .nav-item > .nav-link {
    display: inline;
    width: auto;
    padding: 0;
    text-align: left;
  }

  .nav-submenu {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    display: grid;
    min-width: 204px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 4px;
    background: rgba(17, 17, 19, 0.96);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.36);
    opacity: 0;
    padding: 10px 0;
    pointer-events: none;
    transform: translate(-50%, 8px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
    visibility: hidden;
  }

  .nav-item:hover .nav-submenu,
  .nav-item:focus-within .nav-submenu,
  .nav-item[data-submenu-open="true"] .nav-submenu {
    display: grid;
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
    visibility: visible;
  }

  .launch-link {
    border: 0;
    padding: 0;
    font-size: 18px;
    font-weight: 400;
  }

  .launch-underline {
    display: block;
  }

  .hero-content {
    padding-top: 350px;
  }

  .product-section {
    padding-top: 220px;
  }

  .carousel-card {
    margin-top: 96px;
  }

  .security-section,
  .about-section {
    padding-top: 128px;
    padding-bottom: 128px;
  }

  .about-section {
    min-height: 940px;
  }

  .security-card {
    padding: 40px;
  }

  .savings-grid {
    min-height: 1390px;
    grid-template-columns: minmax(500px, 42%) minmax(0, 1fr);
  }

  .savings-panel {
    min-height: 100%;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    padding: 64px;
  }

  .savings-panel-content {
    justify-content: flex-start;
    padding-top: 150px;
  }

  .savings-cards {
    padding: 86px 70px;
  }

  .savings-card {
    min-height: 325px;
    padding: 32px;
  }

  .savings-card-wrap.offset-card {
    transform: translateY(112px);
  }

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

  .cta-grid {
    min-height: 565px;
    grid-template-columns: 3fr 2fr;
  }

  .cta-art {
    min-height: 100%;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
  }

  .cta-copy {
    padding: 64px;
  }
}

@media (max-width: 1023px) {
  .landing-header {
    height: 72px;
    align-items: center;
    padding: 8px 12px;
  }

  .landing-logo-home {
    width: min(168px, 46vw);
    margin-left: -22px;
  }

  .landing-header-actions {
    gap: 0;
    padding-top: 0;
  }
}

@media (max-width: 767px) {
  .simple-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .simple-nav {
    justify-content: flex-start;
  }
}

@media (max-width: 639px) {
  .landing-hero {
    min-height: 840px;
  }

  .hero-content {
    padding-top: 190px;
  }

  .landing-logo-home {
    width: min(156px, 48vw);
    margin-left: -26px;
  }

  .carousel-card {
    margin-top: 64px;
  }

  .savings-cards,
  .cta-copy {
    padding-right: 24px;
    padding-left: 24px;
  }

  .cta-red-dots {
    width: min(72vw, 360px);
    opacity: 0.74;
  }
}
