:root {
  --rap-navy-950: #071a31;
  --rap-navy-900: #09244a;
  --rap-ink: #12233f;
  --rap-muted: #627087;
  --rap-blue: #1768e8;
  --rap-teal: #14b8a6;
  --rap-green: #20b26b;
  --rap-line: #dfe7ef;
  --rap-surface: #f6f8fb;
  --rap-white: #fff;
  --rap-container: 1240px;
  --rap-radius-lg: 32px;
  --rap-radius-md: 20px;
  --rap-shadow: 0 24px 80px rgba(9, 36, 74, .09);
}

html {
  scroll-behavior: smooth;
}

body.public-page,
body.marketing-home {
  margin: 0;
  color: var(--rap-ink);
  background: var(--rap-white);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body.public-page *,
body.marketing-home * {
  box-sizing: border-box;
}

body.public-page a,
body.marketing-home a {
  color: inherit;
}

.marketing-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 80px;
  color: #fff;
  background: var(--rap-navy-950) !important;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.marketing-nav-shell {
  width: min(100% - 40px, var(--rap-container));
  height: 80px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.marketing-brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  width: 184px;
  min-height: 44px;
}

.marketing-brand img {
  display: block;
  width: 100%;
  height: auto;
}

.marketing-desktop-nav {
  display: flex;
  align-items: stretch;
  justify-content: center;
  height: 100%;
  gap: 24px;
  margin-left: auto;
}

.marketing-nav-menu {
  position: static;
}

.marketing-nav-menu > summary,
.marketing-nav-link {
  height: 80px;
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, .88) !important;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  list-style: none;
  transition: color .18s ease;
}

.marketing-nav-menu > summary::-webkit-details-marker {
  display: none;
}

.marketing-nav-menu > summary > span {
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform .18s ease;
}

.marketing-nav-menu[open] > summary > span {
  transform: rotate(225deg) translate(-1px, -1px);
}

.marketing-nav-menu > summary:hover,
.marketing-nav-menu[open] > summary,
.marketing-nav-menu.is-active > summary,
.marketing-nav-link:hover,
.marketing-nav-link.is-active {
  color: #6ba7ff !important;
}

.marketing-nav-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 0 0 auto;
}

.marketing-login,
.marketing-demo {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 21px;
  border-radius: 999px;
  color: #fff !important;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.marketing-login:hover {
  background: rgba(255, 255, 255, .07);
}

.marketing-demo {
  background: var(--rap-blue);
  box-shadow: 0 8px 22px rgba(23, 104, 232, .28);
  transition: transform .18s ease, background .18s ease;
}

.marketing-demo:hover {
  background: #2878ef;
  transform: translateY(-1px);
}

.marketing-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px;
  border: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, .1);
}

.marketing-menu-toggle span {
  display: block;
  height: 2px;
  margin: 4px 0;
  border-radius: 2px;
  background: #fff;
  transition: transform .18s ease, opacity .18s ease;
}

.marketing-header.mobile-menu-open .marketing-menu-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.marketing-header.mobile-menu-open .marketing-menu-toggle span:nth-child(2) {
  opacity: 0;
}

.marketing-header.mobile-menu-open .marketing-menu-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.marketing-mega {
  position: absolute;
  top: 80px;
  left: 50%;
  width: min(calc(100% - 48px), var(--rap-container));
  padding: 32px;
  transform: translateX(-50%);
  display: grid;
  color: var(--rap-ink);
  background: #fff;
  border: 1px solid var(--rap-line);
  border-top: 0;
  border-radius: 0 0 24px 24px;
  box-shadow: 0 22px 60px rgba(9, 36, 74, .18);
}

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

.marketing-mega-column {
  min-width: 0;
  padding: 0 24px;
  border-right: 1px solid var(--rap-line);
}

.marketing-mega-column:first-child {
  padding-left: 0;
}

.marketing-mega-column:nth-last-of-type(1) {
  padding-right: 0;
  border-right: 0;
}

.marketing-mega-column a {
  display: block;
  margin: 0 0 16px;
  color: var(--rap-ink) !important;
  font-size: 13px;
  line-height: 1.35;
  text-decoration: none;
}

.marketing-mega-column a:hover strong {
  color: var(--rap-blue);
}

.marketing-mega-column a strong {
  display: block;
  transition: color .18s ease;
}

.marketing-mega-column a small,
.marketing-featured-link span {
  display: block;
  margin-top: 3px;
  color: var(--rap-muted);
  font-size: 11px;
  font-weight: 500;
}

.marketing-mega-title {
  min-height: 34px;
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  font-size: 13px;
  font-weight: 850;
}

.marketing-menu-icon {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  font-size: 10px;
  font-style: normal;
}

.marketing-menu-icon.blue {
  color: var(--rap-blue);
  background: rgba(23, 104, 232, .1);
}

.marketing-menu-icon.teal {
  color: var(--rap-teal);
  background: rgba(20, 184, 166, .1);
}

.marketing-mega-all {
  grid-column: 1 / -1;
  justify-self: end;
  margin-top: 6px;
  padding-top: 18px;
  color: var(--rap-blue) !important;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.marketing-mega-compact {
  grid-template-columns: 1fr 1fr 1.15fr;
}

.marketing-mega-label {
  margin: 0 0 20px;
  color: var(--rap-muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.marketing-featured-link {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: 24px;
  padding: 24px;
  color: var(--rap-ink) !important;
  background: var(--rap-surface);
  border: 1px solid var(--rap-line);
  border-radius: 18px;
  text-decoration: none;
}

.marketing-featured-link small,
.marketing-mega-resources small {
  color: var(--rap-teal);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.marketing-featured-link strong {
  margin: 6px 0;
  font-size: 19px;
}

.marketing-mega-resources {
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 760px;
  margin-left: 195px;
}

.marketing-mega-resources > a {
  display: flex;
  min-height: 150px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  color: var(--rap-ink) !important;
  background: var(--rap-surface);
  border: 1px solid var(--rap-line);
  border-radius: 18px;
  text-decoration: none;
}

.marketing-mega-resources strong {
  margin: 7px 0 4px;
  font-size: 17px;
}

.marketing-mega-resources span {
  color: var(--rap-muted);
  font-size: 12px;
}

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

.breadcrumbs {
  margin: 0 !important;
  background: var(--rap-surface) !important;
  border: 0 !important;
  border-bottom: 1px solid var(--rap-line) !important;
}

.breadcrumbs-inner {
  width: min(100% - 40px, var(--rap-container)) !important;
  max-width: none !important;
  min-height: 49px;
  margin: 0 auto !important;
  padding: 12px 0 !important;
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--rap-muted) !important;
  font-size: 12px !important;
  font-weight: 600;
}

.breadcrumbs a {
  color: var(--rap-muted) !important;
  text-decoration: none;
}

.breadcrumbs a:hover {
  color: var(--rap-blue) !important;
}

.breadcrumbs-current {
  color: var(--rap-ink);
}

.breadcrumbs-sep {
  opacity: .45;
}

body.public-page .page-hero {
  position: relative;
  padding: clamp(72px, 9vw, 112px) 20px;
  color: var(--rap-ink);
  background:
    radial-gradient(circle at 82% 18%, rgba(23, 104, 232, .10), transparent 28%),
    radial-gradient(circle at 12% 88%, rgba(20, 184, 166, .08), transparent 24%),
    #fff;
  overflow: hidden;
}

body.public-page .page-hero::after {
  content: "";
  position: absolute;
  right: max(-160px, calc((100vw - var(--rap-container)) / 2 - 250px));
  bottom: -270px;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(23, 104, 232, .13);
  border-radius: 50%;
  pointer-events: none;
}

body.public-page .page-hero-inner {
  position: relative;
  z-index: 1;
  width: min(100%, var(--rap-container));
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

body.public-page .page-hero .eyebrow,
body.public-page .section-title .eyebrow,
body.marketing-home .eyebrow {
  margin: 0 0 18px;
  color: var(--rap-blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

body.public-page .page-hero h1 {
  max-width: 990px;
  margin: 0 auto 24px;
  color: var(--rap-ink);
  font-size: clamp(2.75rem, 6vw, 4.45rem);
  font-weight: 850;
  letter-spacing: -.035em;
  line-height: 1.02;
  text-wrap: balance;
}

body.public-page .page-hero .lead {
  max-width: 760px;
  margin: 0 auto;
  color: var(--rap-muted);
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  line-height: 1.7;
}

body.public-page .hero-actions,
body.marketing-home .hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 34px;
}

body.public-page .btn,
body.marketing-home .btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 25px;
  border: 1px solid var(--rap-line);
  border-radius: 999px;
  color: var(--rap-ink) !important;
  background: #fff;
  box-shadow: none;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

body.public-page .btn:hover,
body.marketing-home .btn:hover {
  transform: translateY(-1px);
  border-color: #b9c9d8;
  background: var(--rap-surface);
}

body.public-page .btn.primary,
body.marketing-home .btn.primary {
  color: #fff !important;
  background: var(--rap-blue);
  border-color: var(--rap-blue);
  box-shadow: 0 14px 34px rgba(23, 104, 232, .22);
}

body.public-page .btn.primary:hover,
body.marketing-home .btn.primary:hover {
  background: var(--rap-navy-900);
  border-color: var(--rap-navy-900);
}

body.public-page .btn.btn-small {
  min-height: 40px;
  padding: 0 17px;
  font-size: 12px;
}

body.public-page .page {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

body.public-page .page-section,
body.public-page .text-block,
body.public-page .page > section {
  width: min(100% - 40px, var(--rap-container));
  max-width: none;
  margin: 0 auto;
  padding: clamp(62px, 8vw, 96px) 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

body.public-page .page-section + .page-section,
body.public-page .page > section + section {
  border-top: 1px solid var(--rap-line);
}

body.public-page .section-title {
  max-width: 800px;
  margin: 0 0 42px;
}

body.public-page .section-title h2,
body.public-page .page-section > .card > h2,
body.public-page .text-block h2 {
  margin: 0 0 18px;
  color: var(--rap-ink);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 850;
  letter-spacing: -.025em;
  line-height: 1.08;
  text-wrap: balance;
}

body.public-page .section-title p,
body.public-page .card p,
body.public-page .text-block p {
  color: var(--rap-muted);
}

body.public-page .page-grid,
body.public-page .grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

body.public-page .grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.public-page .card,
body.public-page .grid > article,
body.public-page .page-grid > article {
  margin: 0;
  padding: clamp(24px, 3vw, 34px);
  color: var(--rap-ink);
  background: #fff;
  border: 1px solid var(--rap-line);
  border-radius: var(--rap-radius-md);
  box-shadow: 0 16px 48px rgba(9, 36, 74, .055);
}

body.public-page .card h2,
body.public-page .grid h2,
body.public-page .page-grid h2 {
  margin: 0 0 15px;
  color: var(--rap-ink);
  font-size: clamp(1.2rem, 2.4vw, 1.55rem);
  font-weight: 820;
  line-height: 1.22;
}

body.public-page .grid article > strong {
  display: block;
  margin-bottom: 10px;
  color: var(--rap-ink);
  font-size: 17px;
}

body.public-page .card a:not(.btn),
body.public-page .grid a:not(.btn),
body.public-page .text-block a:not(.btn) {
  color: var(--rap-blue);
}

body.public-page .bullets,
body.public-page .check-list {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

body.public-page .bullets li,
body.public-page .check-list li {
  position: relative;
  margin: 13px 0;
  padding-left: 27px;
  color: var(--rap-muted);
}

body.public-page .bullets li::before,
body.public-page .check-list li::before {
  content: "✓";
  position: absolute;
  top: 1px;
  left: 0;
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  color: var(--rap-blue);
  background: rgba(23, 104, 232, .1);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 900;
}

.product-shot {
  width: min(100% - 40px, var(--rap-container));
  margin: 0 auto clamp(54px, 8vw, 92px);
  padding: clamp(18px, 3vw, 34px);
  background: var(--rap-surface);
  border: 1px solid var(--rap-line);
  border-radius: var(--rap-radius-lg);
}

.product-shot img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--rap-line);
  border-radius: var(--rap-radius-md);
  box-shadow: var(--rap-shadow);
}

.product-shot figcaption {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 4px 0;
  color: var(--rap-muted);
  font-size: 12px;
}

.product-shot figcaption strong {
  color: var(--rap-ink);
}

.product-shot-grid {
  width: min(100% - 40px, var(--rap-container));
  margin: 0 auto clamp(54px, 8vw, 92px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.product-shot-grid .product-shot {
  width: 100%;
  margin: 0;
}

.feature-band {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: clamp(72px, 9vw, 112px) max(20px, calc((100vw - var(--rap-container)) / 2)) !important;
  color: #fff;
  background: var(--rap-navy-950) !important;
  border: 0 !important;
}

.feature-band h2 {
  max-width: 760px;
  color: #fff !important;
}

.feature-band p,
.feature-band li {
  color: rgba(255, 255, 255, .64) !important;
}

.feature-band .card {
  background: rgba(255, 255, 255, .06) !important;
  border-color: rgba(255, 255, 255, .12) !important;
  box-shadow: none !important;
}

.feature-band .card h2,
.feature-band .card h3,
.feature-band .card strong {
  color: #fff !important;
}

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

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

.faq-list summary {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--rap-ink);
  font-weight: 800;
  cursor: pointer;
}

.faq-list summary::after {
  content: "+";
  color: var(--rap-blue);
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 760px;
  margin: 12px 0 0;
}

.marketing-footer {
  padding: 70px 20px 25px;
  color: rgba(255, 255, 255, .68);
  background: var(--rap-navy-950);
}

.marketing-footer-grid {
  width: min(100%, var(--rap-container));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 50px;
}

.marketing-footer-grid > div:not(.marketing-footer-brand) {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.marketing-footer-grid strong {
  margin-bottom: 5px;
  color: #fff;
  font-size: 13px;
}

.marketing-footer a {
  color: rgba(255, 255, 255, .62) !important;
  font-size: 12px;
  text-decoration: none;
}

.marketing-footer a:hover {
  color: #fff !important;
}

.marketing-footer-brand img {
  width: 190px;
  height: auto;
}

.marketing-footer-brand p {
  max-width: 300px;
  margin: 20px 0 10px;
  color: rgba(255, 255, 255, .65);
  font-size: 14px;
}

.marketing-footer-bottom {
  width: min(100%, var(--rap-container));
  margin: 48px auto 0;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  font-size: 11px;
}

body.marketing-home .site-header,
body.marketing-home .site-footer {
  display: none !important;
}

body.marketing-home main {
  overflow: hidden;
}

body.marketing-home .hero {
  min-height: 0;
  padding: clamp(72px, 8vw, 106px) 20px 90px;
  display: grid;
  justify-items: center;
  color: var(--rap-ink);
  background: #fff;
}

body.marketing-home .hero-bg {
  position: relative;
  inset: auto;
  z-index: 2;
  grid-row: 2;
  width: min(100%, 1160px);
  height: auto;
  margin-top: 74px;
  padding: clamp(16px, 2.6vw, 30px);
  object-fit: contain;
  opacity: 1;
  background: var(--rap-surface);
  border: 1px solid var(--rap-line);
  border-radius: var(--rap-radius-lg);
  box-shadow: none;
}

body.marketing-home .hero-overlay {
  display: none;
}

body.marketing-home .hero-content {
  position: relative;
  z-index: 3;
  grid-row: 1;
  max-width: 980px;
  margin: 0 auto;
  padding: 0;
  text-align: center;
}

body.marketing-home .hero-content .eyebrow {
  color: var(--rap-teal);
}

body.marketing-home .hero h1 {
  max-width: 950px;
  margin: 0 auto 26px;
  color: var(--rap-ink);
  font-size: clamp(3rem, 7vw, 5.35rem);
  font-weight: 850;
  letter-spacing: -.045em;
  line-height: .99;
  text-wrap: balance;
}

body.marketing-home .hero-copy {
  max-width: 730px;
  margin: 0 auto;
  color: var(--rap-muted);
  font-size: clamp(1.06rem, 2vw, 1.25rem);
  line-height: 1.7;
}

body.marketing-home .hero-stats {
  position: relative;
  inset: auto;
  z-index: 3;
  grid-row: 3;
  width: min(100%, 960px);
  margin: 32px auto 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  overflow: hidden;
  color: var(--rap-ink);
  background: #fff;
  border: 1px solid var(--rap-line);
  border-radius: var(--rap-radius-md);
  box-shadow: 0 16px 45px rgba(9, 36, 74, .08);
  backdrop-filter: none;
}

body.marketing-home .hero-stats > div {
  min-width: 0;
  padding: 22px 24px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  text-align: left;
  background: #fff;
  border-right: 1px solid var(--rap-line);
}

body.marketing-home .hero-stats > div:last-child {
  border-right: 0;
}

body.marketing-home .hero-stats strong {
  display: block;
  color: var(--rap-blue);
  font-size: clamp(1.9rem, 3vw, 2.55rem);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

body.marketing-home .hero-stats span {
  display: block;
  margin-top: 0;
  color: var(--rap-ink);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
}

body.marketing-home .logo-strip {
  padding: 30px 20px;
  background: var(--rap-surface);
  border-block: 1px solid var(--rap-line);
}

body.marketing-home .section {
  width: min(100% - 40px, var(--rap-container));
  max-width: none;
  margin: 0 auto;
  padding: clamp(72px, 9vw, 112px) 0;
}

body.marketing-home .section-heading {
  max-width: 830px;
}

body.marketing-home .section-heading.centered {
  margin-inline: auto;
}

body.marketing-home .section h2,
body.marketing-home .demo-band h2 {
  color: var(--rap-ink);
  font-size: clamp(2.2rem, 4.4vw, 3.35rem);
  font-weight: 850;
  letter-spacing: -.03em;
  line-height: 1.06;
  text-wrap: balance;
}

body.marketing-home .intro-grid article,
body.marketing-home .capability-card,
body.marketing-home .pricing-card,
body.marketing-home .blog-card {
  border-color: var(--rap-line);
  border-radius: var(--rap-radius-md);
  box-shadow: 0 16px 48px rgba(9, 36, 74, .055);
}

body.marketing-home .workflow {
  width: 100%;
  max-width: none;
  padding-inline: max(20px, calc((100vw - var(--rap-container)) / 2));
  background: var(--rap-surface);
}

body.marketing-home .workflow-layout {
  max-width: var(--rap-container);
  margin-inline: auto;
}

body.marketing-home .workflow-panel,
body.marketing-home .workflow-step,
body.marketing-home .mini-stat,
body.marketing-home .mini-list {
  border-color: var(--rap-line);
}

body.marketing-home .product-showcase figure,
body.marketing-home .utility-frame,
body.marketing-home .screenshot-gallery figure {
  border-color: var(--rap-line);
  border-radius: var(--rap-radius-md);
  box-shadow: var(--rap-shadow);
  overflow: hidden;
}

body.marketing-home .product-showcase img,
body.marketing-home .utility-frame img,
body.marketing-home .screenshot-gallery img {
  width: 100%;
  height: auto;
}

body.marketing-home .split-proof {
  width: 100%;
  max-width: none;
  padding-inline: max(20px, calc((100vw - var(--rap-container)) / 2));
  color: #fff;
  background: var(--rap-navy-950);
}

body.marketing-home .split-proof h2,
body.marketing-home .split-proof .eyebrow {
  color: #fff;
}

body.marketing-home .pricing-card.featured {
  background: var(--rap-navy-950);
}

body.marketing-home .demo-band {
  width: min(100% - 40px, var(--rap-container));
  margin: 0 auto clamp(70px, 9vw, 110px);
  padding: clamp(36px, 5vw, 60px);
  color: var(--rap-ink);
  background:
    radial-gradient(circle at 90% 10%, rgba(20, 184, 166, .18), transparent 34%),
    var(--rap-surface);
  border: 1px solid var(--rap-line);
  border-radius: var(--rap-radius-lg);
}

body.marketing-home .demo-band .eyebrow {
  color: var(--rap-teal);
}

body.marketing-home .consent-banner,
body.public-page #consentBanner {
  bottom: 20px !important;
  box-sizing: border-box !important;
  color: #fff !important;
  background: var(--rap-navy-950) !important;
  border: 1px solid rgba(255, 255, 255, .12) !important;
  border-radius: 18px !important;
  box-shadow: 0 22px 60px rgba(7, 26, 49, .34) !important;
}

body.marketing-home .consent-banner {
  left: 50% !important;
  right: auto !important;
  width: min(calc(100% - 40px), 1100px) !important;
  transform: translateX(-50%) !important;
}

body.public-page #consentBanner {
  left: 20px !important;
  right: 20px !important;
  width: auto !important;
  transform: none !important;
}

body.public-page .pricing-hero {
  color: var(--rap-ink);
  background:
    radial-gradient(circle at 80% 20%, rgba(23, 104, 232, .12), transparent 30%),
    #fff;
}

body.public-page .pricing-panel {
  border-color: var(--rap-line);
  border-radius: var(--rap-radius-md);
  box-shadow: var(--rap-shadow);
}

body.public-page .calc-field input {
  border-color: var(--rap-line);
}

body.public-page .calc-field input:focus {
  border-color: var(--rap-blue);
  box-shadow: 0 0 0 4px rgba(23, 104, 232, .1);
}

body.public-page .summary-card,
body.public-page .tier-card,
body.public-page .help-card {
  border-color: var(--rap-line);
  background: var(--rap-surface);
}

body.public-page .summary-value {
  color: var(--rap-ink);
  font-family: Inter, sans-serif;
}

body.public-page .pill {
  color: var(--rap-navy-900);
  background: rgba(23, 104, 232, .08);
}

body.public-page article.card h2 a {
  color: var(--rap-ink);
  text-decoration: none;
}

body.public-page article.card h2 a:hover {
  color: var(--rap-blue);
}

body.public-page .updates-card {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(180deg, rgba(246, 248, 251, .2), rgba(246, 248, 251, .92)),
    #fff;
}

body.public-page .updates-card > p:last-child {
  margin-top: auto !important;
  padding-top: 18px;
}

body.public-page .updates-featured {
  grid-column: 1 / -1;
  min-height: 390px;
  padding: clamp(30px, 5vw, 58px);
  color: var(--rap-ink);
  background-color: var(--rap-surface) !important;
  background-image:
    radial-gradient(circle at 86% 16%, rgba(23, 104, 232, .13), transparent 30%),
    radial-gradient(circle at 10% 90%, rgba(20, 184, 166, .10), transparent 24%) !important;
  border-color: var(--rap-line);
}

body.public-page .updates-featured h2 {
  max-width: 760px;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
}

body.public-page .updates-featured h2 a,
body.public-page .updates-featured div {
  color: var(--rap-ink) !important;
}

body.public-page .updates-featured p {
  color: var(--rap-muted) !important;
}

body.public-page .updates-featured .btn {
  color: #fff !important;
  background: var(--rap-blue);
  border-color: var(--rap-blue);
}

body.public-page .article-page {
  padding: 58px 0 90px;
}

body.public-page .article-page .page-section,
body.public-page .article-page > .product-shot {
  width: min(100% - 40px, 880px);
  margin-inline: auto;
}

body.public-page .article-page .page-section {
  padding: 30px 0;
  border: 0;
}

body.public-page .article-page .card {
  padding: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

body.public-page .article-page .card h2 {
  margin-bottom: 18px;
  font-size: clamp(1.7rem, 3vw, 2.25rem);
}

body.public-page .article-page .card p,
body.public-page .article-page .card li {
  font-size: 1.04rem;
  line-height: 1.78;
}

body.public-page .article-page > .product-shot {
  margin-top: 28px;
  margin-bottom: 28px;
}

@media (max-width: 1080px) {
  .marketing-desktop-nav,
  .marketing-nav-actions .marketing-login {
    display: none;
  }

  .marketing-menu-toggle {
    display: block;
  }

  .marketing-mobile-nav {
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    max-height: calc(100vh - 80px);
    padding: 18px 20px 30px;
    overflow-y: auto;
    color: #fff;
    background: var(--rap-navy-950);
    border-top: 1px solid rgba(255, 255, 255, .1);
    box-shadow: 0 22px 60px rgba(7, 26, 49, .35);
  }

  .marketing-header.mobile-menu-open .marketing-mobile-nav {
    display: block;
  }

  .marketing-mobile-nav > a,
  .marketing-mobile-nav summary {
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    color: #fff !important;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    font-size: 16px;
    font-weight: 800;
    text-decoration: none;
    list-style: none;
    cursor: pointer;
  }

  .marketing-mobile-nav summary::-webkit-details-marker {
    display: none;
  }

  .marketing-mobile-nav details > div {
    padding: 10px 0 14px 16px;
    border-left: 2px solid var(--rap-blue);
  }

  .marketing-mobile-nav details > div a {
    min-height: 42px;
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, .68) !important;
    font-size: 14px;
    text-decoration: none;
  }

  .marketing-mobile-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 22px;
  }

  .marketing-mobile-actions a {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 999px;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
  }

  .marketing-mobile-actions a:last-child {
    background: var(--rap-blue);
    border-color: var(--rap-blue);
  }
}

@media (max-width: 820px) {
  .marketing-nav-shell {
    width: min(100% - 28px, var(--rap-container));
  }

  .marketing-brand {
    width: 158px;
  }

  .marketing-nav-actions .marketing-demo {
    display: none;
  }

  body.public-page .page-hero {
    padding: 60px 20px 66px;
  }

  body.public-page .page-hero h1 {
    font-size: clamp(2.35rem, 12vw, 3.35rem);
  }

  body.public-page .page-grid,
  body.public-page .grid,
  .product-shot-grid {
    grid-template-columns: 1fr;
  }

  body.public-page .page-section,
  body.public-page .text-block,
  body.public-page .page > section {
    width: min(100% - 28px, var(--rap-container));
  }

  .product-shot,
  .product-shot-grid {
    width: min(100% - 28px, var(--rap-container));
  }

  .product-shot figcaption {
    flex-direction: column;
    gap: 3px;
  }

  .marketing-footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .marketing-footer-brand {
    grid-column: 1 / -1;
  }

  body.marketing-home .hero {
    padding-inline: 14px;
  }

  body.marketing-home .hero h1 {
    font-size: clamp(2.65rem, 13vw, 4rem);
  }

  body.marketing-home .hero-bg {
    margin-top: 50px;
    padding: 10px;
    border-radius: 20px;
  }

  body.marketing-home .hero-stats {
    grid-template-columns: 1fr;
  }

  body.marketing-home .hero-stats > div {
    border-right: 0;
    border-bottom: 1px solid var(--rap-line);
  }

  body.marketing-home .hero-stats > div:last-child {
    border-bottom: 0;
  }

  body.marketing-home .section,
  body.marketing-home .demo-band {
    width: min(100% - 28px, var(--rap-container));
  }
}

@media (max-width: 540px) {
  .marketing-header,
  .marketing-nav-shell {
    height: 72px;
  }

  .marketing-mobile-nav {
    top: 72px;
    max-height: calc(100vh - 72px);
  }

  .marketing-footer {
    padding-inline: 14px;
  }

  .marketing-footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .marketing-footer-brand {
    grid-column: auto;
  }

  .marketing-footer-bottom {
    flex-direction: column;
  }

  body.public-page .hero-actions,
  body.marketing-home .hero-actions {
    flex-direction: column;
  }

  body.public-page .btn,
  body.marketing-home .btn {
    width: 100%;
  }

  body.public-page .card,
  body.public-page .grid > article,
  body.public-page .page-grid > article {
    padding: 22px;
  }

  body.public-page .section-title h2,
  body.public-page .page-section > .card > h2,
  body.public-page .text-block h2 {
    font-size: 2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
