:root {
  --mk2-navy-950: #071723;
  --mk2-navy-900: #0b2132;
  --mk2-navy-800: #12344b;
  --mk2-blue-600: #2c7eb0;
  --mk2-cyan-400: #6ed3f3;
  --mk2-ice-100: #dff4fb;
  --mk2-ivory: #f7f7f2;
  --mk2-paper: #ffffff;
  --mk2-ink: #102534;
  --mk2-muted: #536875;
  --mk2-line: rgba(16, 37, 52, 0.15);
  --mk2-max: 1240px;
}

.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;
}

html {
  scroll-behavior: smooth;
}

body.marketing-body {
  background: var(--mk2-ivory);
  color: var(--mk2-ink);
  font-family: "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.marketing-body .public-shell {
  min-height: 100vh;
  padding: 0;
  background: var(--mk2-ivory);
}

.mk2-page {
  overflow: clip;
}

.mk2-container {
  width: min(calc(100% - 48px), var(--mk2-max));
  margin-inline: auto;
}

.mk2-kicker {
  margin: 0;
  color: var(--mk2-cyan-400);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.mk2-kicker-dark {
  color: var(--mk2-blue-600);
}

.mk2-hero {
  position: relative;
  min-height: 100svh;
  color: #fff;
  background:
    radial-gradient(circle at 86% 16%, rgba(65, 171, 218, 0.25), transparent 30%),
    radial-gradient(circle at 16% 82%, rgba(44, 126, 176, 0.18), transparent 34%),
    linear-gradient(145deg, var(--mk2-navy-950) 0%, var(--mk2-navy-900) 58%, #0b2a40 100%);
}

.mk2-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 180px;
  pointer-events: none;
  background: linear-gradient(to bottom, transparent, rgba(4, 18, 29, 0.54));
}

.mk2-hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.28;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(150, 208, 232, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(150, 208, 232, 0.08) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, #000 0%, rgba(0, 0, 0, 0.65) 60%, transparent 100%);
}

.mk2-header {
  position: fixed;
  z-index: 50;
  top: 18px;
  left: 50%;
  width: min(calc(100% - 36px), var(--mk2-max));
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 10px 12px 10px 18px;
  border: 1px solid transparent;
  border-radius: 18px;
  transform: translateX(-50%);
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, top 180ms ease;
}

.mk2-header.is-scrolled {
  top: 10px;
  border-color: rgba(202, 228, 239, 0.24);
  background: rgba(7, 23, 35, 0.88);
  box-shadow: 0 18px 50px rgba(1, 10, 16, 0.28);
  backdrop-filter: blur(18px);
}

.mk2-brand {
  display: inline-flex;
  align-items: center;
  width: 188px;
  flex: 0 0 auto;
}

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

.mk2-navigation {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(16px, 2vw, 30px);
}

.mk2-navigation a {
  color: rgba(238, 247, 251, 0.82);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: color 160ms ease;
}

.mk2-navigation a:hover,
.mk2-navigation a:focus-visible {
  color: #fff;
}

.mk2-navigation .mk2-nav-cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 18px;
  border-radius: 999px;
  color: var(--mk2-navy-950);
  background: var(--mk2-ice-100);
}

.mk2-navigation .mk2-nav-cta:hover,
.mk2-navigation .mk2-nav-cta:focus-visible {
  color: var(--mk2-navy-950);
  background: #fff;
}

.mk2-menu-button {
  display: none;
}

.mk2-hero-inner {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 48px), var(--mk2-max));
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1.18fr);
  align-items: center;
  gap: clamp(48px, 6vw, 96px);
  margin-inline: auto;
  padding: 122px 0 82px;
}

.mk2-hero-copy {
  max-width: 610px;
  opacity: 0;
  transform: translateY(24px);
  animation: mk2-hero-copy-in 800ms 120ms cubic-bezier(0.2, 0.75, 0.2, 1) forwards;
}

.mk2-hero h1 {
  margin: 20px 0 0;
  color: #f6fbfd;
  font-size: clamp(2.35rem, 4.8vw, 4.9rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.mk2-hero h1 span {
  display: block;
  margin-bottom: 22px;
  color: var(--mk2-cyan-400);
  font-size: 0.3em;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.mk2-hero-lead {
  max-width: 54ch;
  margin: 26px 0 0;
  color: rgba(221, 237, 244, 0.78);
  font-size: clamp(1rem, 1.4vw, 1.16rem);
  line-height: 1.7;
}

.mk2-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.mk2-button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 0;
  border-radius: 999px;
  padding: 0 22px;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.mk2-button:hover {
  transform: translateY(-2px);
}

.mk2-button:focus-visible,
.mk2-navigation a:focus-visible,
.mk2-menu-button:focus-visible,
.mk2-text-link:focus-visible,
.mk2-footer a:focus-visible,
.demo-page a:focus-visible,
.demo-form input:focus-visible,
.demo-form select:focus-visible,
.demo-form textarea:focus-visible {
  outline: 3px solid var(--mk2-cyan-400);
  outline-offset: 3px;
}

.mk2-button-primary {
  color: #fff;
  background: var(--mk2-blue-600);
  box-shadow: 0 14px 34px rgba(11, 55, 80, 0.24);
}

.mk2-button-primary:hover {
  background: #236f9d;
  box-shadow: 0 18px 38px rgba(4, 24, 36, 0.28);
}

.mk2-button-text {
  padding-inline: 12px;
  color: rgba(235, 246, 250, 0.88);
  background: transparent;
}

.mk2-hero-audience {
  margin: 20px 0 0;
  color: rgba(195, 218, 228, 0.65);
  font-size: 12px;
  line-height: 1.6;
}

.mk2-hero-product {
  min-width: 0;
  margin: 26px 0 0;
  opacity: 0;
  transform: translate3d(40px, 22px, 0) rotate(1.4deg);
  animation: mk2-hero-product-in 950ms 300ms cubic-bezier(0.2, 0.75, 0.2, 1) forwards;
}

.mk2-product-window {
  overflow: hidden;
  border: 1px solid rgba(207, 232, 242, 0.26);
  border-radius: 20px;
  background: #f7fbfd;
  box-shadow: 0 40px 100px rgba(0, 8, 14, 0.42), 0 0 0 8px rgba(145, 209, 234, 0.035);
}

.mk2-window-bar {
  height: 44px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 16px;
  border-bottom: 1px solid rgba(9, 38, 57, 0.12);
  background: #f1f6f8;
}

.mk2-window-bar > span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #b7c7cf;
}

.mk2-window-bar small {
  margin-left: 10px;
  color: #617784;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mk2-product-window img {
  display: block;
  width: 100%;
  height: clamp(440px, 40vw, 560px);
  object-fit: cover;
  object-position: top;
}

.mk2-hero-product figcaption {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 16px;
  color: rgba(211, 230, 238, 0.62);
  font-size: 12px;
}

.mk2-hero-product figcaption strong {
  color: var(--mk2-ice-100);
  font-weight: 600;
}

.mk2-scroll-cue {
  position: absolute;
  z-index: 3;
  right: max(24px, calc((100vw - var(--mk2-max)) / 2));
  bottom: 26px;
  color: rgba(217, 236, 244, 0.68);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

@keyframes mk2-hero-copy-in {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes mk2-hero-product-in {
  to { opacity: 1; transform: translate3d(0, 0, 0) rotate(0); }
}

.mk2-proof {
  padding: 30px 0;
  border-bottom: 1px solid var(--mk2-line);
  background: #fff;
}

.mk2-proof .mk2-container {
  display: grid;
  grid-template-columns: 230px 1fr;
  align-items: center;
  gap: 34px;
}

.mk2-proof p {
  margin: 0;
  color: var(--mk2-muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.11em;
  line-height: 1.5;
  text-transform: uppercase;
}

.mk2-proof-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  overflow: hidden;
}

.mk2-proof-list span {
  flex: 0 0 auto;
  color: #49616f;
  font-size: 13px;
  font-weight: 700;
}

.mk2-shift,
.mk2-workflows,
.mk2-integrations {
  padding: clamp(84px, 10vw, 150px) 0;
}

.mk2-shift-grid,
.mk2-integrations-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(54px, 9vw, 140px);
  align-items: start;
}

.mk2-section-intro h2,
.mk2-ai h2,
.mk2-final h2 {
  margin: 18px 0 0;
  color: var(--mk2-ink);
  font-size: clamp(2.2rem, 4.3vw, 4.7rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 1;
}

.mk2-section-intro > p:not(.mk2-kicker),
.mk2-integrations .mk2-section-intro > p:not(.mk2-kicker) {
  max-width: 60ch;
  margin: 24px 0 0;
  color: var(--mk2-muted);
  font-size: 16px;
  line-height: 1.75;
}

.mk2-shift-copy > p {
  max-width: 50ch;
  margin: 0 0 48px;
  color: var(--mk2-muted);
  font-size: 18px;
  line-height: 1.7;
}

.mk2-shift-line {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 26px;
  padding: 24px 0;
  border-top: 1px solid var(--mk2-line);
}

.mk2-shift-line:last-child {
  border-bottom: 1px solid var(--mk2-line);
}

.mk2-shift-line span {
  color: #788b95;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.mk2-shift-line strong {
  color: #405664;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.45;
}

.mk2-shift-line.is-after strong,
.mk2-shift-line.is-after span {
  color: var(--mk2-blue-600);
}

.mk2-story {
  padding: clamp(90px, 11vw, 160px) 0;
  background: #fff;
}

.mk2-story-heading {
  max-width: 820px;
}

.mk2-story-layout {
  display: grid;
  grid-template-columns: minmax(330px, 0.68fr) minmax(520px, 1.32fr);
  gap: clamp(54px, 8vw, 120px);
  margin-top: 74px;
}

.mk2-story-step {
  min-height: 68vh;
  display: grid;
  align-content: center;
  padding: 44px 0;
  border-top: 1px solid var(--mk2-line);
  opacity: 0.4;
  transition: opacity 260ms ease;
}

.mk2-story-step:last-child {
  border-bottom: 1px solid var(--mk2-line);
}

.mk2-story-step.is-active {
  opacity: 1;
}

.mk2-story-step > span {
  color: var(--mk2-blue-600);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.mk2-story-step h3 {
  margin: 22px 0 0;
  color: var(--mk2-ink);
  font-size: clamp(1.8rem, 3vw, 3.2rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.mk2-story-step p {
  margin: 20px 0 0;
  color: var(--mk2-muted);
  font-size: 16px;
  line-height: 1.7;
}

.mk2-story-step ul {
  display: grid;
  gap: 10px;
  margin: 25px 0 0;
  padding: 0;
  list-style: none;
}

.mk2-story-step li {
  position: relative;
  padding-left: 18px;
  color: #38505e;
  font-size: 14px;
}

.mk2-story-step li::before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mk2-blue-600);
}

.mk2-story-stage {
  position: sticky;
  top: 106px;
  height: min(720px, calc(100vh - 138px));
  align-self: start;
  overflow: hidden;
  border-radius: 24px;
  background: var(--mk2-navy-900);
  box-shadow: 0 30px 80px rgba(15, 39, 53, 0.18);
}

.mk2-story-image {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-rows: 1fr auto;
  margin: 0;
  opacity: 0;
  transform: scale(1.035);
  pointer-events: none;
  transition: opacity 420ms ease, transform 520ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.mk2-story-image.is-active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.mk2-story-image img {
  width: 100%;
  height: 100%;
  min-height: 0;
  display: block;
  object-fit: cover;
  object-position: top;
}

.mk2-story-image figcaption {
  padding: 20px 24px;
  color: rgba(225, 240, 246, 0.74);
  background: var(--mk2-navy-900);
  font-size: 13px;
}

.mk2-ai {
  position: relative;
  overflow: hidden;
  padding: clamp(100px, 11vw, 170px) 0;
  color: #fff;
  background: var(--mk2-navy-950);
}

.mk2-ai-orbit {
  position: absolute;
  width: 700px;
  height: 700px;
  right: -220px;
  top: -280px;
  border: 1px solid rgba(110, 211, 243, 0.14);
  border-radius: 50%;
  box-shadow: 0 0 0 90px rgba(67, 165, 208, 0.025), 0 0 0 180px rgba(67, 165, 208, 0.02);
}

.mk2-ai-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(500px, 1.15fr);
  gap: clamp(58px, 9vw, 140px);
  align-items: center;
}

.mk2-ai h2 {
  color: #f2f9fc;
}

.mk2-ai-copy > p:not(.mk2-kicker) {
  margin: 28px 0 0;
  color: rgba(215, 232, 239, 0.7);
  font-size: 17px;
  line-height: 1.75;
}

.mk2-prompt-list {
  display: grid;
  gap: 0;
  margin-top: 36px;
  border-top: 1px solid rgba(198, 226, 237, 0.16);
}

.mk2-prompt-list span {
  padding: 17px 0;
  border-bottom: 1px solid rgba(198, 226, 237, 0.16);
  color: rgba(226, 241, 247, 0.82);
  font-size: 14px;
}

.mk2-ai-transcript {
  padding: clamp(24px, 4vw, 48px);
  border: 1px solid rgba(176, 219, 236, 0.18);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(19, 52, 75, 0.86), rgba(9, 31, 46, 0.94));
  box-shadow: 0 32px 90px rgba(0, 8, 14, 0.35);
}

.mk2-ai-label {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(188, 222, 235, 0.68);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mk2-ai-label span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mk2-cyan-400);
  box-shadow: 0 0 16px rgba(110, 211, 243, 0.78);
}

.mk2-ai-question {
  max-width: 82%;
  margin: 34px 0 0 auto;
  padding: 15px 18px;
  border-radius: 16px 16px 3px 16px;
  color: #e8f4f8;
  background: rgba(74, 142, 174, 0.25);
  font-size: 14px;
  line-height: 1.55;
}

.mk2-ai-answer {
  margin-top: 22px;
  padding: 22px 0 0;
  border-top: 1px solid rgba(190, 225, 238, 0.15);
  color: rgba(224, 239, 245, 0.82);
}

.mk2-ai-answer p {
  margin: 0;
  color: #fff;
}

.mk2-ai-answer ol {
  display: grid;
  gap: 12px;
  margin: 20px 0;
  padding-left: 22px;
  line-height: 1.55;
}

.mk2-ai-answer small {
  color: rgba(168, 204, 219, 0.58);
  font-size: 11px;
}

.mk2-workflows .mk2-section-intro {
  max-width: 850px;
}

.mk2-workflow-lines {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
  margin-top: 72px;
}

.mk2-workflow-lines article {
  padding-top: 24px;
  border-top: 1px solid var(--mk2-line);
}

.mk2-workflow-lines article > span {
  color: var(--mk2-blue-600);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.mk2-workflow-lines h3 {
  margin: 24px 0 0;
  color: var(--mk2-ink);
  font-size: clamp(1.5rem, 2.4vw, 2.35rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.mk2-workflow-lines p {
  margin: 18px 0 0;
  color: var(--mk2-muted);
  line-height: 1.7;
}

.mk2-integrations {
  border-top: 1px solid var(--mk2-line);
  background: #fff;
}

.mk2-text-link {
  display: inline-flex;
  gap: 10px;
  margin-top: 30px;
  color: var(--mk2-blue-600);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.mk2-integration-list {
  margin: 0;
  border-top: 1px solid var(--mk2-line);
}

.mk2-integration-list div {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 30px;
  padding: 24px 0;
  border-bottom: 1px solid var(--mk2-line);
}

.mk2-integration-list dt {
  color: #78909c;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mk2-integration-list dd {
  margin: 0;
  color: #2c4655;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
}

.mk2-final {
  position: relative;
  overflow: hidden;
  padding: clamp(110px, 13vw, 190px) 0;
  text-align: center;
  background: linear-gradient(145deg, #0a1f2e, #123d58);
}

.mk2-final-glow {
  position: absolute;
  width: 540px;
  height: 540px;
  left: 50%;
  bottom: -390px;
  border-radius: 50%;
  transform: translateX(-50%);
  background: rgba(72, 184, 225, 0.38);
  filter: blur(80px);
}

.mk2-final-inner {
  position: relative;
  max-width: 900px;
}

.mk2-final h2 {
  color: #f3fafd;
}

.mk2-final-inner > p:not(.mk2-kicker) {
  max-width: 65ch;
  margin: 28px auto 0;
  color: rgba(214, 234, 242, 0.7);
  font-size: 17px;
  line-height: 1.7;
}

.mk2-actions-center {
  justify-content: center;
}

.mk2-button-light {
  color: var(--mk2-navy-950);
  background: #effbff;
}

.mk2-button-text-light {
  color: rgba(229, 242, 247, 0.84);
  background: transparent;
}

.mk2-footer {
  padding: 62px 0;
  background: #fff;
}

.mk2-footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  gap: 70px;
  align-items: start;
}

.mk2-footer img {
  width: 176px;
  height: auto;
}

.mk2-footer p {
  max-width: 36ch;
  margin: 16px 0 0;
  color: var(--mk2-muted);
  font-size: 13px;
  line-height: 1.6;
}

.mk2-footer nav {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: 14px 34px;
}

.mk2-footer a {
  color: #294554;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

.mk2-footer a:hover {
  color: var(--mk2-blue-600);
}

.mk2-footer-contact {
  display: grid;
  justify-items: end;
  gap: 18px;
}

.mk2-footer-contact span {
  color: #82939c;
  font-size: 12px;
}

.mk2-reveal {
  opacity: 1;
  transform: none;
}

.mk2-motion-ready .mk2-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 620ms ease, transform 720ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.mk2-motion-ready .mk2-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Demo request */
.demo-page {
  min-height: 100svh;
  color: #fff;
  background:
    radial-gradient(circle at 12% 15%, rgba(62, 158, 202, 0.24), transparent 30%),
    linear-gradient(145deg, var(--mk2-navy-950), #0c2c41);
}

.demo-header {
  width: min(calc(100% - 48px), var(--mk2-max));
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-inline: auto;
  border-bottom: 1px solid rgba(203, 230, 240, 0.14);
}

.demo-header > a:last-child {
  color: rgba(230, 243, 248, 0.8);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.demo-brand {
  width: 184px;
}

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

.demo-shell {
  width: min(calc(100% - 48px), 1160px);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(480px, 1.1fr);
  gap: clamp(60px, 9vw, 130px);
  align-items: center;
  margin-inline: auto;
  padding: clamp(64px, 8vw, 110px) 0;
}

.demo-back,
.demo-return {
  display: inline-flex;
  color: rgba(204, 228, 237, 0.68);
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
}

.demo-intro .mk2-kicker {
  margin-top: 68px;
}

.demo-intro h1 {
  margin: 20px 0 0;
  color: #f4fafd;
  font-size: clamp(2.5rem, 5vw, 5.2rem);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.96;
}

.demo-intro > p:not(.mk2-kicker) {
  margin: 28px 0 0;
  color: rgba(215, 233, 240, 0.7);
  font-size: 16px;
  line-height: 1.75;
}

.demo-expectations {
  display: grid;
  gap: 0;
  margin-top: 42px;
  border-top: 1px solid rgba(198, 226, 237, 0.16);
}

.demo-expectations div {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 16px;
  padding: 17px 0;
  border-bottom: 1px solid rgba(198, 226, 237, 0.16);
}

.demo-expectations span {
  color: var(--mk2-cyan-400);
  font-size: 11px;
  letter-spacing: 0.1em;
}

.demo-expectations strong {
  color: rgba(235, 246, 250, 0.86);
  font-size: 14px;
  font-weight: 500;
}

.demo-intro > small {
  display: block;
  margin-top: 22px;
  color: rgba(177, 208, 220, 0.52);
  font-size: 11px;
}

.demo-form-panel {
  min-height: 660px;
  padding: clamp(28px, 4vw, 50px);
  border-radius: 24px;
  color: var(--mk2-ink);
  background: #fff;
  box-shadow: 0 38px 100px rgba(0, 8, 14, 0.34);
}

.demo-form-heading h2,
.demo-success h2 {
  margin: 12px 0 0;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1;
}

.demo-form-heading > p:not(.mk2-kicker) {
  margin: 12px 0 0;
  color: var(--mk2-muted);
  font-size: 12px;
}

.demo-form {
  position: relative;
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

.demo-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

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

.demo-form label > span {
  color: #334d5b;
  font-size: 12px;
  font-weight: 700;
}

.demo-form input,
.demo-form select,
.demo-form textarea {
  width: 100%;
  border: 1px solid #c8d5db;
  border-radius: 10px;
  padding: 12px 13px;
  color: var(--mk2-ink);
  background: #fbfdfd;
  font: inherit;
  font-size: 14px;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.demo-form input,
.demo-form select {
  min-height: 46px;
}

.demo-form textarea {
  resize: vertical;
  line-height: 1.55;
}

.demo-form input:hover,
.demo-form select:hover,
.demo-form textarea:hover {
  border-color: #91aab6;
}

.demo-form [aria-invalid="true"] {
  border-color: #b54a48;
  box-shadow: 0 0 0 3px rgba(181, 74, 72, 0.1);
}

.demo-field-error {
  color: #a23d3b;
  font-size: 11px;
}

.demo-submit {
  justify-self: start;
  margin-top: 4px;
}

.demo-submit:disabled {
  cursor: wait;
  opacity: 0.65;
  transform: none;
}

.demo-privacy {
  max-width: 56ch;
  margin: 0;
  color: #7a8c95;
  font-size: 10px;
  line-height: 1.5;
}

.demo-privacy a {
  color: var(--mk2-blue-600);
  font-weight: 700;
}

.public-legal-footer {
  width: min(1120px, calc(100% - 32px));
  margin: 28px auto 0;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(28, 50, 86, 0.14);
  color: #718394;
  font-size: 12px;
}

.public-legal-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}

.public-legal-footer a {
  color: #294554;
  font-weight: 600;
  text-decoration: none;
}

.public-legal-footer a:hover {
  color: var(--mk2-blue-600);
}

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

.demo-error-summary {
  display: grid;
  gap: 3px;
  margin-top: 22px;
  padding: 13px 15px;
  border-left: 3px solid #b54a48;
  color: #7d302f;
  background: #fff4f3;
  font-size: 12px;
}

.demo-success {
  min-height: 560px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.demo-success > span {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 30px;
  border-radius: 50%;
  color: #fff;
  background: var(--mk2-blue-600);
  font-size: 22px;
}

.demo-success > p:not(.mk2-kicker):not(.demo-response-note) {
  max-width: 45ch;
  margin: 20px 0 0;
  color: var(--mk2-muted);
  line-height: 1.7;
}

.demo-success .mk2-button {
  margin-top: 30px;
}

.demo-response-note {
  margin: 30px 0 0;
  color: var(--mk2-blue-600);
  font-weight: 700;
}

.demo-return {
  margin-top: 24px;
  color: #607580;
}

.privacy-body,
.privacy-page {
  background: #f4f7f8;
}

.privacy-page {
  min-height: 100vh;
}

.privacy-header {
  min-height: 88px;
  padding: 24px max(24px, calc((100vw - 1180px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: #071c29;
}

.privacy-header > a:last-child {
  color: rgba(225, 239, 245, 0.82);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

.privacy-brand {
  display: inline-flex;
  width: 190px;
}

.privacy-brand img {
  width: 100%;
  height: auto;
}

.privacy-document {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 88px 0 110px;
}

.privacy-title,
.privacy-prose,
.privacy-contents,
.privacy-sections {
  width: min(820px, 100%);
  margin-inline: auto;
}

.privacy-title h1 {
  margin: 16px 0 0;
  color: var(--mk2-ink);
  font-size: clamp(3.2rem, 8vw, 6.7rem);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.92;
}

.privacy-subtitle {
  margin: 26px 0 0;
  color: var(--mk2-muted);
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  line-height: 1.5;
}

.privacy-meta {
  margin: 54px 0 0;
}

.privacy-meta div,
.privacy-contact div {
  padding: 18px 0;
  display: grid;
  grid-template-columns: minmax(150px, 0.34fr) minmax(0, 1fr);
  gap: 30px;
  border-top: 1px solid var(--mk2-line);
}

.privacy-meta div:last-child,
.privacy-contact div:last-child {
  border-bottom: 1px solid var(--mk2-line);
}

.privacy-meta dt,
.privacy-contact dt {
  color: #718590;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.privacy-meta dd,
.privacy-contact dd {
  margin: 0;
  color: #334b58;
  font-size: 14px;
  line-height: 1.7;
}

.privacy-document a {
  color: var(--mk2-blue-600);
  text-underline-offset: 3px;
}

.privacy-prose {
  margin-top: 68px;
  color: #405864;
  font-size: 17px;
  line-height: 1.85;
}

.privacy-prose p {
  margin: 0;
}

.privacy-prose p + p {
  margin-top: 24px;
}

.privacy-contents {
  margin-top: 72px;
  padding: 34px 38px;
  background: #e9f1f4;
  border-top: 3px solid var(--mk2-blue-600);
}

.privacy-contents h2 {
  margin: 0;
  color: var(--mk2-ink);
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.privacy-contents ol {
  margin: 24px 0 0;
  padding-left: 22px;
  columns: 2;
  column-gap: 52px;
}

.privacy-contents li {
  margin: 0 0 10px;
  padding-left: 6px;
  break-inside: avoid;
  color: #607783;
  font-size: 13px;
  line-height: 1.5;
}

.privacy-contents a {
  color: #334f5d;
  text-decoration: none;
}

.privacy-sections {
  margin-top: 96px;
}

.privacy-sections section {
  padding-top: 18px;
  scroll-margin-top: 30px;
}

.privacy-sections section + section {
  margin-top: 82px;
}

.privacy-sections h2 {
  margin: 0 0 30px;
  padding-top: 24px;
  border-top: 1px solid var(--mk2-line);
  color: var(--mk2-ink);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.privacy-sections h2 span {
  display: block;
  margin-bottom: 12px;
  color: var(--mk2-blue-600);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.privacy-sections h3 {
  margin: 38px 0 14px;
  color: #253f4d;
  font-size: 1.12rem;
  line-height: 1.4;
}

.privacy-sections p,
.privacy-sections li,
.privacy-definitions dd {
  color: #526a76;
  font-size: 15px;
  line-height: 1.82;
}

.privacy-sections p {
  margin: 0;
}

.privacy-sections p + p,
.privacy-sections p + ul,
.privacy-sections ul + p,
.privacy-sections .privacy-table-wrap + p {
  margin-top: 20px;
}

.privacy-sections ul {
  display: grid;
  gap: 12px;
  margin-bottom: 0;
  padding-left: 22px;
}

.privacy-sections strong {
  color: #294653;
}

.privacy-definitions {
  margin: 0;
}

.privacy-definitions div {
  padding: 22px 0;
  display: grid;
  grid-template-columns: minmax(150px, 0.32fr) minmax(0, 1fr);
  gap: 30px;
  border-top: 1px solid var(--mk2-line);
}

.privacy-definitions div:last-child {
  border-bottom: 1px solid var(--mk2-line);
}

.privacy-definitions dt {
  color: #294653;
  font-size: 14px;
  font-weight: 700;
}

.privacy-definitions dd {
  margin: 0;
}

.privacy-table-wrap {
  margin-top: 30px;
  overflow-x: auto;
  border-top: 1px solid var(--mk2-line);
  border-bottom: 1px solid var(--mk2-line);
}

.privacy-table-wrap table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  text-align: left;
}

.privacy-table-wrap .privacy-table-wide {
  min-width: 1180px;
}

.privacy-table-wide th:first-child,
.privacy-table-wide td:first-child {
  width: 17%;
  color: #294653;
  font-weight: 700;
}

.privacy-table-wrap th,
.privacy-table-wrap td {
  padding: 17px 18px;
  vertical-align: top;
  border-bottom: 1px solid var(--mk2-line);
  color: #526a76;
  font-size: 13px;
  line-height: 1.65;
}

.privacy-table-wrap th {
  color: #294653;
  background: #edf3f5;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.privacy-table-wrap tr:last-child td {
  border-bottom: 0;
}

.privacy-contact {
  margin: 0;
}

@media (max-width: 1060px) {
  .mk2-hero-inner {
    grid-template-columns: minmax(0, 0.88fr) minmax(430px, 1.12fr);
    gap: 44px;
  }

  .mk2-navigation {
    gap: 17px;
  }

  .mk2-story-layout {
    grid-template-columns: minmax(300px, 0.75fr) minmax(440px, 1.25fr);
    gap: 52px;
  }

  .mk2-ai-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1.1fr);
    gap: 60px;
  }
}

@media (max-width: 880px) {
  .mk2-container,
  .mk2-hero-inner,
  .demo-header,
  .demo-shell {
    width: min(calc(100% - 36px), var(--mk2-max));
  }

  .mk2-menu-button {
    width: 44px;
    height: 44px;
    display: grid;
    place-content: center;
    gap: 6px;
    border: 0;
    border-radius: 50%;
    color: #fff;
    background: rgba(234, 247, 251, 0.1);
  }

  .mk2-menu-button > span:not(.sr-only) {
    width: 19px;
    height: 1px;
    display: block;
    background: currentColor;
    transition: transform 180ms ease;
  }

  .mk2-menu-button[aria-expanded="true"] > span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .mk2-menu-button[aria-expanded="true"] > span:nth-child(2) {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .mk2-navigation {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    display: none;
    align-items: stretch;
    padding: 18px;
    border: 1px solid rgba(203, 230, 240, 0.2);
    border-radius: 18px;
    background: rgba(7, 23, 35, 0.97);
    box-shadow: 0 24px 60px rgba(0, 8, 14, 0.42);
    backdrop-filter: blur(18px);
  }

  .mk2-navigation.is-open {
    display: grid;
  }

  .mk2-navigation a {
    min-height: 44px;
    display: flex;
    align-items: center;
    padding: 0 8px;
  }

  .mk2-navigation .mk2-nav-cta {
    justify-content: center;
    margin-top: 8px;
  }

  .mk2-hero-inner {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 54px;
    padding: 138px 0 94px;
  }

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

  .mk2-hero-product {
    width: min(100%, 720px);
    margin: 0 auto;
  }

  .mk2-product-window img {
    height: min(62vw, 460px);
  }

  .mk2-scroll-cue {
    display: none;
  }

  .mk2-proof .mk2-container {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .mk2-proof-list {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .mk2-shift-grid,
  .mk2-integrations-grid,
  .mk2-ai-grid,
  .demo-shell {
    grid-template-columns: 1fr;
  }

  .mk2-shift-grid,
  .mk2-integrations-grid {
    gap: 54px;
  }

  .mk2-story-layout {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .mk2-story-step {
    min-height: auto;
    padding: 42px 0;
    opacity: 1;
  }

  .mk2-story-stage {
    position: relative;
    top: auto;
    height: auto;
    display: grid;
    gap: 18px;
    overflow: visible;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .mk2-story-image,
  .mk2-story-image.is-active {
    position: relative;
    inset: auto;
    overflow: hidden;
    border-radius: 18px;
    opacity: 1;
    transform: none;
    background: var(--mk2-navy-900);
  }

  .mk2-story-image img {
    aspect-ratio: 1.35 / 1;
  }

  .mk2-ai-grid {
    gap: 58px;
  }

  .mk2-workflow-lines {
    grid-template-columns: 1fr;
    gap: 34px;
  }

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

  .mk2-footer-contact {
    grid-column: 1 / -1;
    justify-items: start;
  }

  .demo-shell {
    gap: 60px;
    padding-top: 48px;
  }

  .demo-intro .mk2-kicker {
    margin-top: 46px;
  }
}

@media (max-width: 600px) {
  .public-legal-footer {
    padding-bottom: 12px;
    flex-direction: column;
    text-align: center;
  }

  .privacy-header {
    min-height: 72px;
    padding: 19px 20px;
  }

  .privacy-brand {
    width: 150px;
  }

  .privacy-document {
    width: min(100% - 32px, 820px);
    padding: 58px 0 80px;
  }

  .privacy-meta div,
  .privacy-contact div,
  .privacy-definitions div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .privacy-prose {
    margin-top: 52px;
    font-size: 16px;
  }

  .privacy-contents {
    margin-top: 54px;
    padding: 28px 24px;
  }

  .privacy-contents ol {
    columns: 1;
  }

  .privacy-sections {
    margin-top: 70px;
  }

  .privacy-sections section + section {
    margin-top: 62px;
  }

  .mk2-header {
    top: 10px;
    width: calc(100% - 20px);
    min-height: 60px;
    padding-left: 14px;
  }

  .mk2-brand {
    width: 158px;
  }

  .mk2-hero-inner {
    gap: 24px;
    padding-top: 90px;
    padding-bottom: 36px;
  }

  .mk2-hero h1 {
    font-size: clamp(2.45rem, 12vw, 3.4rem);
  }

  .mk2-hero h1 span {
    margin-bottom: 16px;
    font-size: 0.28em;
  }

  .mk2-hero-lead {
    margin-top: 20px;
    font-size: 0.95rem;
    line-height: 1.55;
  }

  .mk2-hero-copy .mk2-actions {
    margin-top: 22px;
  }

  .mk2-hero-copy .mk2-button-text,
  .mk2-hero-audience {
    display: none;
  }

  .mk2-actions {
    align-items: stretch;
  }

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

  .mk2-product-window {
    border-radius: 14px;
  }

  .mk2-product-window img {
    height: 190px;
  }

  .mk2-window-bar {
    height: 36px;
  }

  .mk2-hero-product figcaption {
    display: grid;
    gap: 4px;
  }

  .mk2-section-intro h2,
  .mk2-ai h2,
  .mk2-final h2 {
    font-size: clamp(2.25rem, 11vw, 3.2rem);
  }

  .mk2-shift-line {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .mk2-story-layout {
    margin-top: 48px;
  }

  .mk2-story-image figcaption {
    padding: 16px;
  }

  .mk2-ai-question {
    max-width: 94%;
  }

  .mk2-ai-transcript {
    border-radius: 18px;
  }

  .mk2-integration-list div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .mk2-footer-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

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

  .demo-header,
  .demo-shell {
    width: calc(100% - 28px);
  }

  .demo-brand {
    width: 158px;
  }

  .demo-intro h1 {
    font-size: clamp(2.6rem, 13vw, 3.6rem);
  }

  .demo-form-panel {
    min-height: auto;
    padding: 26px 20px;
    border-radius: 18px;
  }

  .demo-form-row {
    grid-template-columns: 1fr;
  }

  .demo-submit {
    width: 100%;
  }
}

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

  .mk2-hero-copy,
  .mk2-hero-product {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .mk2-reveal,
  .mk2-motion-ready .mk2-reveal,
  .mk2-story-step,
  .mk2-story-image,
  .mk2-button,
  .mk2-header,
  .mk2-menu-button > span {
    transition: none;
  }
}
