@font-face {
  font-family: "IBM Plex Sans";
  src: url("/static/fonts/IBMPlexSans-Text.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Sans";
  src: url("/static/fonts/IBMPlexSans-SemiBold.otf") format("opentype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Mono";
  src: url("/static/fonts/IBMPlexMono-Text.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  --bg0: #ffffff;
  --bg1: #f3f5f6;
  --bg2: #d7dbdd;
  --surface: #ffffff;
  --surface2: #f7f9fa;
  --stroke: rgba(6, 23, 28, 0.12);
  --stroke2: rgba(6, 23, 28, 0.18);
  --text: #06171c;
  --muted: rgba(6, 23, 28, 0.72);
  --muted2: rgba(6, 23, 28, 0.56);
  --primary: #1d3a8f;
  --primary2: #2f57c0;
  --secondary: #0EA5E9;
  --radius: 16px;
  --radius-lg: 22px;
  --shadow: 0 8px 24px rgba(6, 23, 28, 0.10);
  --shadow2: 0 16px 42px rgba(6, 23, 28, 0.14);
  --font-sans: "IBM Plex Sans", "Segoe UI", Helvetica, system-ui, -apple-system, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  --font-mono: "IBM Plex Mono", "SFMono-Regular", Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

* {
  box-sizing: border-box
}

html,
body {
  height: 100%
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--bg0);
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
}

body::before {
  /* lock the gradient to the viewport so it stays continuous on long pages */
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(1200px 800px at 80% -10%, rgba(47, 87, 192, 0.12), transparent 60%),
    radial-gradient(800px 600px at -10% 20%, rgba(29, 58, 143, 0.14), transparent 60%),
    var(--bg0);
  background-repeat: no-repeat;
}

a {
  color: var(--primary2);
  text-decoration: none
}

a:hover {
  text-decoration: underline
}

ul.list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  display: grid;
  gap: 6px;
}

input[type="range"] {
  accent-color: var(--primary);
}

.wrapper {
  margin: 0 auto;
  padding: 32px 64px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 32px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px
}

.brand img {
  height: 40px
}

.brand .name {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: .5px
}

.brand .subtitle {
  position: relative;
  font-size: 10px;
  font-weight: 500;
  top: -8px
}

.brand.is-clickable {
  cursor: pointer
}

.nav .cta {
  display: flex;
  gap: 12px;
  align-items: center;
}

.btn {
  appearance: none;
  border: 1px solid var(--stroke2);
  border-radius: 999px;
  padding: 10px 16px;
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
  transition: all .18s ease;
  text-align: center;
}

.btn:hover {
  background: var(--surface2)
}

.btn.primary {
  border: 0;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary2));
}

.btn.pill {
  padding: 6px 12px
}

.hero {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 28px;
  align-items: start;
  padding: 40px 0 32px;
}

.hero-wrapper {
  --hero-wrapper-base: #f4f6fb;
  --hero-wrapper-bg: radial-gradient(circle at 20% 20%, rgba(47, 87, 192, 0.16), transparent 55%),
    radial-gradient(circle at 80% 10%, rgba(29, 58, 143, 0.12), transparent 50%);
  --hero-overlay: linear-gradient(120deg, rgba(255, 255, 255, 0.82) 0%, rgba(255, 255, 255, 0.55) 42%, rgba(255, 255, 255, 0) 75%);
  --hero-text-shadow: 0 12px 28px rgba(15, 23, 42, 0.18);
  --hero-text: var(--text);
  --hero-muted: var(--muted);
  --hero-muted-2: var(--muted2);
  --hero-badge-bg: var(--surface2);
  --hero-badge-border: var(--stroke);
  --hero-badge-text: var(--muted);
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 0;
}

.hero-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  background-color: var(--hero-wrapper-base);
  background-image: var(--hero-wrapper-bg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: -1;
}

.hero-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--hero-overlay);
  pointer-events: none;
  z-index: 0;
}

.hero-wrapper>* {
  position: relative;
  z-index: 1;
}

.hero-wrapper .nav,
.hero-wrapper .hero {
  width: 100%;
  margin: 0 auto;
}

.hero-wrapper .nav {
  color: var(--hero-text);
  padding-left: 32px;
  padding-right: 32px;
}

.hero-wrapper .nav * {
  color: var(--hero-text);
}

.hero-wrapper .hero {
  flex: 1;
  grid-template-columns: 1fr;
  padding-top: clamp(24px, 6vh, 72px);
  padding-bottom: clamp(24px, 8vh, 96px);
  align-items: center;
  align-content: center;
  padding-left: 64px;
  padding-right: 64px;
}

.hero-wrapper .footer {
  width: 100%;
  padding: 16px 32px
}

.hero-wrapper .hero-copy {
  color: var(--hero-text);
}

.hero-wrapper .hero-copy h1 {
  font-size: clamp(42px, 6vw, 72px);
  text-shadow: var(--hero-text-shadow);
}

.hero-wrapper .hero-copy .lead {
  max-width: 680px;
  color: var(--hero-muted);
  text-shadow: var(--hero-text-shadow);
}

.hero-wrapper .hero-copy .small {
  max-width: 680px;
  color: var(--hero-muted-2);
  text-shadow: var(--hero-text-shadow);
}

.hero-wrapper .hero-copy .badge {
  background: var(--hero-badge-bg);
  border-color: var(--hero-badge-border);
  color: var(--hero-badge-text);
}

.hero-wrapper--light {
  --hero-wrapper-bg: url("/static/hero/home-hero-light.webp");
  --hero-overlay: linear-gradient(120deg, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0.62) 45%, rgba(255, 255, 255, 0) 75%);
  --hero-text-shadow: 0 8px 24px rgba(15, 23, 42, 0.16);
  --hero-text: var(--text);
  --hero-muted: var(--muted);
  --hero-muted-2: var(--muted2);
  --hero-badge-bg: var(--surface2);
  --hero-badge-border: var(--stroke);
  --hero-badge-text: var(--muted);
}

.hero-wrapper--dark {
  --hero-wrapper-base: #0b1020;
  --hero-overlay: linear-gradient(120deg, rgba(5, 9, 22, 0.82) 0%, rgba(5, 9, 22, 0.5) 45%, rgba(5, 9, 22, 0) 75%);
  --hero-text-shadow: 0 12px 30px rgba(5, 9, 22, 0.6);
  --hero-wrapper-bg: radial-gradient(circle at 20% 20%, rgba(30, 64, 175, 0.35), transparent 55%),
    radial-gradient(circle at 80% 10%, rgba(15, 23, 42, 0.6), transparent 50%);
  --hero-wrapper-bg: url("/static/hero/home-hero-dark.webp");
  --hero-text: #f8fafc;
  --hero-muted: rgba(248, 250, 252, 0.78);
  --hero-muted-2: rgba(248, 250, 252, 0.62);
  --hero-badge-bg: rgba(15, 23, 42, 0.5);
  --hero-badge-border: rgba(248, 250, 252, 0.2);
  --hero-badge-text: #f8fafc;
}

.hero-wrapper--light .hero-copy h1 {
  text-shadow: 0 8px 24px rgba(222, 233, 236, 0.12);
}

.hero-wrapper--dark .hero-copy h1 {
  text-shadow: var(--shadow2);
}

@media (max-width:960px) {
  .hero {
    grid-template-columns: 1fr
  }

  .wrapper {
    padding: 0 16px;
  }

  .hero-wrapper .hero {
    padding-top: clamp(16px, 6vh, 56px);
    padding-bottom: clamp(32px, 10vh, 96px);
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-wrapper .nav {
    padding: 8px 16px
  }

  .hero-wrapper .footer {
    width: 100%;
    padding: 8px 16px
  }
}

.k-card {
  background: linear-gradient(135deg, var(--surface), var(--surface2));
  border: 1px solid var(--stroke);
  border-radius: 18px;
  padding: 22px;
  backdrop-filter: blur(6px);
  box-shadow: var(--shadow);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface2);
  border: 1px solid var(--stroke);
  color: var(--muted);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
}

h1 {
  margin: 12px 0 8px;
  font-size: 40px;
  line-height: 1.15
}

.lead {
  color: var(--muted);
  font-size: 18px
}

.hero-cta {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  margin-bottom: 8px;
}

.input {
  display: flex;
  gap: 8px;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--stroke2);
  border-radius: 999px;
  padding: 6px 8px;
}

.input input {
  outline: none;
  border: 0;
  background: transparent;
  color: var(--text);
  padding: 8px 6px;
  min-width: 200px;
}

.small {
  font-size: 13px;
  color: var(--muted2)
}

.figure {
  display: grid;
  gap: 14px;
}

.figure .icon-tile {
  display: grid;
  place-items: center;
  padding: 24px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(29, 58, 143, 0.08), rgba(47, 87, 192, 0.10));
  border: 1px solid var(--stroke);
}

.figure .icon-tile img {
  height: 150px;
  max-width: 100%;
}

.figure .cover-art {
  /* show the full image with its native aspect while staying responsive */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover, contain;
  aspect-ratio: 1024 / 572;
  /* matches cover.jpg dimensions */
  width: 100%;
  max-height: 60vh;
  border-radius: 20px;
  border: 1px solid var(--stroke);
}

.responsive-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin-top: 12px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
}

@media (max-width:960px) {
  .grid {
    grid-template-columns: 1fr
  }
}

.tile h3 {
  margin: 0 0 6px
}

.tile p {
  margin: 0;
  color: var(--muted)
}

.footer {
  margin-top: auto;
  padding: 22px 0;
  border-top: 1px solid var(--stroke);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.footer .left {
  display: flex;
  align-items: center;
  gap: 12px
}

.footer .right {
  display: flex;
  align-items: center;
  gap: 12px
}

.footer img {
  height: 20px
}


.section {
  margin: 42px 0
}

.section h2 {
  margin: 0 0 8px;
  font-size: 28px
}

.section .sub {
  color: var(--muted2);
  margin-bottom: 16px
}

.video {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  /* 16:9 */
  background: linear-gradient(135deg, rgba(29, 58, 143, 0.08), rgba(47, 87, 192, 0.10));
  border: 1px solid var(--stroke);
  border-radius: 16px;
  overflow: hidden;
}

.video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video .responsive-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  object-fit: cover;
}

.press-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 18px
}

@media (max-width:960px) {
  .press-grid {
    grid-template-columns: 1fr
  }
}

.card-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px
}

.preview {
  display: grid;
  gap: 12px;
  align-content: start;
}

.preview .tile {
  background: linear-gradient(135deg, var(--surface), var(--surface2));
  border: 1px solid var(--stroke);
  border-radius: 16px;
  padding: 16px;
  text-align: center;
}

.preview img {
  max-width: 100%;
  height: auto
}

/* --- Products grid --- */
#products .subnav {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 12px 0 18px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: var(--surface);
  color: var(--text);
  text-decoration: none;
  transition: all .15s ease;
}

.chip:hover {
  border-color: var(--stroke2);
  background: var(--surface2)
}

.chip.active {
  border: 0;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary2));
}

#products .sub {
  color: var(--muted2);
  margin-bottom: 16px
}

.products-group {
  display: none
}

.products-group.active {
  display: block
}

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

@media (max-width:960px) {
  .product-grid {
    grid-template-columns: 1fr
  }
}

.product {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--surface), var(--surface2));
  border: 1px solid var(--stroke);
  border-radius: 16px;
  padding: 18px;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}

.product:hover {
  transform: translateY(-2px);
  border-color: var(--stroke2);
  box-shadow: var(--shadow2);
}

.product h3 {
  margin: 2px 0 6px;
  font-size: 18px
}

.product p {
  margin: 0 0 10px;
  color: var(--muted)
}

.product .actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: var(--surface2);
  color: var(--muted);
}

.tag.gradient {
  border: 0;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary2));
}

.tag.success {
  border-color: rgba(106, 191, 163, 0.45);
  color: #1e5a4a;
  background: rgba(106, 191, 163, 0.18)
}

.tag.module {
  border-color: rgba(47, 87, 192, 0.35);
  color: #1d3a8f;
  background: rgba(47, 87, 192, 0.14)
}

.tag.extension {
  border-color: rgba(29, 58, 143, 0.35);
  color: #1d3a8f;
  background: rgba(29, 58, 143, 0.12)
}

.tag.soon {
  border-color: rgba(247, 167, 18, 0.45);
  color: #9b5e00;
  background: rgba(247, 167, 18, 0.16)
}

.product .meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 8px
}

.product .pill {
  padding: 8px 12px
}

/* --- New sections --- */
.persona-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

@media (max-width:1080px) {
  .persona-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media (max-width:640px) {
  .persona-grid {
    grid-template-columns: 1fr
  }
}

.persona h3 {
  margin: 8px 0 6px
}

.persona p {
  margin: 0 0 6px;
  color: var(--muted)
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 14px;
}

@media (max-width:900px) {
  .metrics {
    grid-template-columns: 1fr
  }
}

.metric {
  display: grid;
  gap: 4px;
  text-align: left
}

.metric-value {
  font-size: 22px;
  font-weight: 700
}

.metric-label {
  color: var(--muted)
}

.testimonial .quote {
  font-size: 18px;
  margin: 0 0 4px
}

.testimonial .quote-by {
  color: var(--muted2);
  font-size: 14px
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

@media (max-width:960px) {
  .pricing-grid {
    grid-template-columns: 1fr
  }
}

.pricing h3 {
  margin: 6px 0
}

.pricing p {
  margin: 0 0 10px;
  color: var(--muted)
}

.pricing ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted)
}

.pricing li {
  margin: 4px 0
}

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

@media (max-width:1024px) {
  .workflow {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media (max-width:640px) {
  .workflow {
    grid-template-columns: 1fr
  }
}

.step {
  background: linear-gradient(135deg, var(--surface), var(--surface2));
  border: 1px solid var(--stroke);
  border-radius: 16px;
  padding: 14px;
  display: grid;
  gap: 6px
}

.step-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary2));
  display: grid;
  place-items: center;
  font-weight: 700;
}

.step p {
  margin: 0;
  color: var(--muted)
}

.integrations {
  display: grid;
  gap: 10px;
  align-items: center
}

.logo-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.logo-row img {
  height: 34px;
  opacity: 0.9
}

.integration-notes {
  display: flex;
  gap: 12px;
  flex-wrap: wrap
}

.usecase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

@media (max-width:960px) {
  .usecase-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media (max-width:640px) {
  .usecase-grid {
    grid-template-columns: 1fr
  }
}

.usecase h3 {
  margin: 6px 0
}

.usecase p {
  margin: 0 0 8px;
  color: var(--muted)
}

.roadmap {
  display: grid;
  gap: 10px
}

.roadmap-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 12px;
  background: var(--surface2);
  border: 1px solid var(--stroke);
  border-radius: 12px;
}

.roadmap-item p {
  margin: 0;
  color: var(--muted)
}

.faq details {
  border: 1px solid var(--stroke);
  border-radius: 12px;
  padding: 10px 12px;
  background: var(--surface2);
}

.faq details+details {
  margin-top: 10px
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
  outline: none
}

.faq p {
  margin: 6px 0 0;
  color: var(--muted)
}

.contact-cta {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 16px;
  align-items: center;
}

@media (max-width:900px) {
  .contact-cta {
    grid-template-columns: 1fr
  }
}

.contact-visual img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid var(--stroke)
}

.cta-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 10px 0
}

.video-notes {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.video-notes span {
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--surface2);
  border: 1px solid var(--stroke);
}

.inline-link {
  color: var(--primary);
  text-decoration: underline
}

.inline-link:hover {
  text-decoration: none
}

/* --- Early access / internal landing pages --- */
body.page-early-access,
body.page-internal {
  padding-top: 40px;
}

body.page-early-access .hero,
body.page-internal .hero {
  padding: 84px 16px 56px
}

body.page-early-access .hero h1,
body.page-internal .hero h1 {
  font-size: clamp(40px, 6vw, 72px);
  letter-spacing: -0.02em
}

body.page-early-access .lead,
body.page-internal .lead {
  max-width: 720px
}

body.page-early-access .hero .badge,
body.page-internal .hero .badge {
  background: #E0E7FF;
  color: #1E3A8A
}

body.page-early-access .hero-cta,
body.page-internal .hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px
}

body.page-early-access .hero-cta .btn,
body.page-internal .hero-cta .btn {
  min-width: 160px;
  text-align: center;
}

body.page-early-access .product-grid,
body.page-internal .product-grid {
  gap: 20px
}

body.page-early-access .product,
body.page-internal .product {
  background: linear-gradient(180deg, #FFFFFF 0%, #F3F7FF 100%)
}

body.page-early-access .products-group,
body.page-internal .products-group {
  margin-top: 28px
}

body.page-early-access .subnav,
body.page-internal .subnav {
  display: flex;
  gap: 10px;
  flex-wrap: wrap
}

body.page-early-access .chip,
body.page-internal .chip {
  border: 1px solid #D5DEEA
}

body.page-early-access .chip.active,
body.page-internal .chip.active {
  background: #1E3A8A;
  color: #fff;
  border-color: #1E3A8A
}

body.page-early-access .section-header,
body.page-internal .section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px
}

body.page-early-access .section-header .sub,
body.page-internal .section-header .sub {
  max-width: 620px
}

body.page-early-access .compact-grid,
body.page-internal .compact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px
}

.cta-band {
  margin: 48px 0 12px;
  padding: 28px;
  border-radius: 20px;
  background: linear-gradient(135deg, #0F172A 0%, #1E3A8A 60%, #0EA5E9 100%);
  color: #fff;
}

.cta-band p {
  color: #F3F7FF;
}

.cta-band .btn {
  background: #fff;
  color: #0F172A
}

body.page-early-access .feature-grid,
body.page-internal .feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px
}

body.page-early-access .feature-card,
body.page-internal .feature-card {
  background: linear-gradient(180deg, #FFFFFF 0%, #F3F7FF 100%)
}

.pulse {
  display: inline-flex;
  align-items: center;
  gap: 8px
}

.pulse::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--secondary);
  box-shadow: 0 0 12px rgba(41, 196, 224, 0.6);
}

body.page-early-access .metrics,
body.page-internal .metrics {
  grid-template-columns: repeat(3, minmax(0, 1fr))
}

.internal-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  font-size: 12px;
  text-align: center;
  padding: 8px 12px;
}

.internal-banner {
  background: linear-gradient(90deg, #1d7f2d 0%, #1cb91c 100%);
  border-bottom: 2px solid #a8fca5;
  box-shadow: 0 6px 18px rgba(29, 127, 34, 0.2);
}

body.page-internal .internal-banner {
  background: linear-gradient(90deg, #7F1D1D 0%, #B91C1C 100%);
  border-bottom: 2px solid #FCA5A5;
  box-shadow: 0 6px 18px rgba(127, 29, 29, 0.2);
}

body.page-early-access .footer img+img,
body.page-internal .footer img+img {
  margin-left: 12px
}

@media (max-width:960px) {
  body.page-early-access {
    padding-top: 44px
  }

  body.page-internal {
    padding-top: 44px
  }

  .internal-banner {
    font-size: 11px;
    letter-spacing: 0.12em
  }

  body.page-early-access .compact-grid,
  body.page-internal .compact-grid {
    grid-template-columns: 1fr
  }

  body.page-early-access .section-header,
  body.page-internal .section-header {
    flex-direction: column;
    align-items: flex-start
  }

  body.page-early-access .feature-grid,
  body.page-internal .feature-grid {
    grid-template-columns: 1fr
  }

  body.page-early-access .metrics,
  body.page-internal .metrics {
    grid-template-columns: 1fr
  }
}

@media (max-width:560px) {
  body.page-early-access {
    padding-top: 48px
  }

  body.page-internal {
    padding-top: 48px
  }
}