:root {
  --background: #fff8f3;
  --surface: #ffffff;
  --surface-low: #fff1e6;
  --surface-mid: #ffe2cf;
  --surface-strong: #ffc89c;
  --ink: #162236;
  --muted: #505463;
  --line: #ead4c7;
  --blue: #1f2f46;
  --blue-strong: #101a2b;
  --teal: #f36b1d;
  --teal-dark: #162236;
  --teal-soft: #fff0e4;
  --orange: #ff8a00;
  --red: #e42716;
  --shadow: 0 20px 25px -5px rgb(42 30 20 / 0.12), 0 8px 10px -6px rgb(42 30 20 / 0.1);
  --container: 100%;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  height: auto;
  min-height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  scroll-behavior: smooth;
}

body {
  height: auto;
  margin: 0;
  min-height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior-y: auto;
  touch-action: pan-y;
  color: var(--ink);
  background: var(--background);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

[id] {
  scroll-margin-top: 92px;
}

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

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

button {
  font: inherit;
}

input,
textarea {
  font: inherit;
}

svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sprite,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.topbar {
  position: sticky;
  z-index: 50;
  top: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  width: min(100%, var(--container));
  height: 80px;
  margin: 0 auto;
  padding: 0 40px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 188px;
  height: 56px;
  white-space: nowrap;
}

.brand-logo {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: left center;
}

.brand-icon {
  display: inline-grid;
  width: 24px;
  height: 24px;
  place-items: center;
  color: var(--teal);
}

.brand-icon svg {
  width: 18px;
  height: 18px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.main-nav a,
.top-actions a {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 650;
}

.main-nav a {
  padding: 28px 0 24px;
  border-bottom: 2px solid transparent;
}

.main-nav a:hover,
.main-nav .is-active,
.top-actions a:hover {
  color: var(--teal);
}

.main-nav .is-active {
  border-bottom-color: var(--teal);
}

.top-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 800;
  transition: background 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

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

.button.small {
  min-height: 42px;
  padding: 10px 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--red));
  box-shadow: 0 2px 6px rgb(243 107 29 / 0.24);
}

.button.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--red));
  box-shadow: 0 10px 22px rgb(228 39 22 / 0.24);
}

.button.primary:hover,
.button.small:hover {
  color: #fff;
  background: linear-gradient(135deg, #f97800, #c91e12);
}

.button.secondary {
  color: var(--ink);
  border-color: var(--line);
  background: var(--surface);
}

.button.secondary:hover {
  background: var(--surface-low);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 0;
  border-radius: 999px;
  color: var(--ink);
  background: var(--surface-low);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.93fr) minmax(460px, 1fr);
  gap: 48px;
  align-items: center;
  width: min(100%, var(--container));
  min-height: 680px;
  margin: 0 auto;
  padding: 96px 40px 104px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgb(255 138 0 / 0.16), transparent 36%),
    linear-gradient(315deg, rgb(228 39 22 / 0.08), transparent 38%),
    var(--surface-low);
}

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

.overline {
  margin: 0 0 18px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: 4.35rem;
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 2.9rem;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 1.18rem;
  line-height: 1.22;
}

p {
  color: var(--muted);
  font-size: 1rem;
}

.hero-copy p:not(.overline) {
  max-width: 600px;
  margin-bottom: 32px;
  font-size: 1.12rem;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-media {
  position: relative;
  min-width: 0;
  perspective: 1300px;
}

.hero-demo {
  position: relative;
  display: grid;
  grid-template-columns: 194px minmax(0, 1fr);
  isolation: isolate;
  min-height: 570px;
  overflow: hidden;
  border: 1px solid rgb(234 212 199 / 0.92);
  border-radius: 24px;
  background:
    radial-gradient(circle at 78% 8%, rgb(255 138 0 / 0.16), transparent 28%),
    linear-gradient(135deg, #101a2b 0%, #162236 46%, #fff8f3 46.2%, #fff8f3 100%);
  box-shadow:
    0 42px 90px rgb(42 30 20 / 0.26),
    0 14px 34px rgb(228 39 22 / 0.14),
    inset 0 1px 0 rgb(255 255 255 / 0.28);
  transform: rotateX(4deg) rotateY(-8deg) rotateZ(1deg);
  transform-origin: 55% 55%;
  animation: heroDemoFloat 7s ease-in-out infinite;
}

.hero-demo::before {
  position: absolute;
  inset: auto -90px -120px auto;
  z-index: -1;
  width: 280px;
  height: 280px;
  border-radius: 999px;
  background: radial-gradient(circle, rgb(228 39 22 / 0.16), transparent 68%);
  content: "";
  pointer-events: none;
}

.hero-demo-sidebar {
  display: grid;
  align-content: start;
  gap: 9px;
  padding: 24px 14px;
  color: #fff;
  background:
    linear-gradient(180deg, rgb(255 138 0 / 0.1), transparent 26%),
    linear-gradient(180deg, #101a2b 0%, #162236 100%);
}

.hero-demo-logo {
  display: flex;
  gap: 10px;
  align-items: center;
  min-height: 58px;
  margin-bottom: 18px;
  padding: 4px 6px;
  border: 0;
  border-radius: 14px;
  background: transparent;
}

.hero-demo-logo img {
  width: 42px;
  height: auto;
  object-fit: contain;
}

.hero-demo-logo strong {
  color: #fff;
  font-size: 1.08rem;
  font-weight: 850;
  letter-spacing: -0.01em;
}

.hero-demo-sidebar button {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid transparent;
  border-radius: 12px;
  color: rgb(255 255 255 / 0.72);
  background: transparent;
  cursor: pointer;
  font-size: 0.84rem;
  font-weight: 760;
  text-align: left;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.hero-demo-sidebar button:hover,
.hero-demo-sidebar button.is-active {
  border-color: rgb(255 255 255 / 0.12);
  color: #fff;
  background: linear-gradient(135deg, rgb(255 138 0 / 0.88), rgb(228 39 22 / 0.88));
  transform: translateX(3px);
}

.hero-demo-sidebar svg {
  width: 18px;
  height: 18px;
}

.hero-demo-main {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  min-width: 0;
  padding: 22px;
}

.hero-demo-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 70px;
  margin-bottom: 16px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgb(255 255 255 / 0.82);
  box-shadow: 0 14px 32px rgb(42 30 20 / 0.08);
}

.hero-demo-topbar span,
.hero-demo-topbar strong {
  display: block;
}

.hero-demo-topbar span {
  color: var(--teal);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-demo-topbar strong {
  color: var(--ink);
  font-size: 1.08rem;
}

.hero-demo-status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 12px;
  border-radius: 999px;
  color: #166534;
  background: #dcfce7;
  font-size: 0.76rem;
  font-weight: 850;
  white-space: nowrap;
}

.hero-demo-status span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 6px rgb(34 197 94 / 0.13);
  animation: heroStatusPulse 2.3s ease-in-out infinite;
}

.hero-demo-stage {
  position: relative;
  min-height: 374px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    radial-gradient(circle at 80% 14%, rgb(255 138 0 / 0.11), transparent 27%),
    #fff;
  box-shadow: 0 20px 46px rgb(42 30 20 / 0.08);
}

.hero-demo-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 16px;
  padding: 24px;
  opacity: 0;
  transform: translateY(14px) scale(0.985);
  pointer-events: none;
  transition: opacity 360ms ease, transform 360ms ease;
}

.hero-demo-slide.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.hero-slide-copy {
  max-width: 520px;
}

.hero-slide-copy span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  margin-bottom: 10px;
  padding: 6px 11px;
  border-radius: 999px;
  color: var(--teal);
  background: #fff1e7;
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-slide-copy h3 {
  max-width: 520px;
  margin-bottom: 8px;
  font-size: 1.75rem;
}

.hero-slide-copy p {
  max-width: 540px;
  margin-bottom: 0;
}

.hero-mini-metrics,
.hero-team-board,
.hero-request-actions,
.hero-it-flow {
  display: grid;
  gap: 10px;
}

.hero-mini-metrics {
  grid-template-columns: repeat(3, 1fr);
}

.hero-mini-metrics div,
.hero-team-board div,
.hero-request-card,
.hero-request-actions span,
.hero-it-flow div {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff8f3;
}

.hero-mini-metrics div {
  min-height: 82px;
  padding: 14px;
}

.hero-mini-metrics b,
.hero-mini-metrics small {
  display: block;
}

.hero-mini-metrics b {
  color: var(--teal);
  font-size: 2rem;
  line-height: 1;
}

.hero-mini-metrics small {
  margin-top: 8px;
  color: var(--muted);
  font-weight: 800;
}

.hero-team-board div {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 11px 13px;
}

.hero-team-board span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #22c55e;
}

.hero-team-board div:nth-child(2) span {
  background: #f59e0b;
}

.hero-team-board div:nth-child(3) span {
  background: var(--orange);
}

.hero-team-board small {
  color: var(--muted);
  font-weight: 750;
}

.hero-schedule-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  align-self: end;
}

.hero-schedule-grid b,
.hero-schedule-grid span {
  min-height: 48px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--ink);
  background: #fff8f3;
  font-size: 0.78rem;
  font-weight: 850;
}

.hero-schedule-grid b {
  min-height: auto;
  color: var(--muted);
  text-align: center;
}

.hero-schedule-grid .duty,
.hero-schedule-grid .event,
.hero-schedule-grid .free,
.hero-schedule-grid .leave {
  color: #fff;
}

.hero-schedule-grid .duty {
  background: var(--blue);
}

.hero-schedule-grid .event {
  background: #7e22ce;
}

.hero-schedule-grid .free {
  background: #dc2626;
}

.hero-schedule-grid .leave {
  background: #22c55e;
}

.hero-request-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px;
}

.hero-request-card b,
.hero-request-card small {
  display: block;
}

.hero-request-card small {
  color: var(--muted);
}

.hero-request-card > span {
  padding: 8px 11px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--red));
  font-size: 0.74rem;
  font-weight: 850;
  white-space: nowrap;
}

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

.hero-request-actions span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 800;
}

.hero-request-actions svg {
  color: var(--teal);
}

.hero-notes-panel {
  position: absolute;
  right: 22px;
  bottom: 22px;
  display: grid;
  width: min(calc(100% - 44px), 382px);
  gap: 12px;
  padding: 16px;
  border: 1px solid rgb(234 212 199 / 0.88);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgb(255 255 255 / 0.94), rgb(255 244 236 / 0.9)),
    var(--surface);
  box-shadow:
    0 24px 46px rgb(42 30 20 / 0.16),
    inset 0 1px 0 rgb(255 255 255 / 0.94);
  backdrop-filter: blur(14px);
}

.hero-note-stack {
  display: grid;
  gap: 8px;
}

.hero-note-stack div,
.hero-note-input {
  position: relative;
  display: grid;
  gap: 3px;
  padding: 13px 14px 13px 44px;
  overflow: hidden;
  border: 1px solid rgb(255 138 0 / 0.14);
  border-radius: 14px;
  background:
    linear-gradient(145deg, #fff, #fff6ef),
    var(--surface);
}

.hero-note-stack div::before,
.hero-note-input span {
  position: absolute;
  top: 14px;
  left: 14px;
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 7px;
  color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--red));
  content: "";
  font-size: 0.78rem;
  font-weight: 900;
}

.hero-note-stack div:nth-child(2)::before {
  background: linear-gradient(135deg, #7c3aed, #f97316);
}

.hero-note-stack div:nth-child(3)::before {
  background: linear-gradient(135deg, #0f766e, var(--orange));
}

.hero-note-stack b,
.hero-note-stack small,
.hero-note-stack span,
.hero-note-input b,
.hero-note-input small {
  display: block;
}

.hero-note-stack span {
  color: var(--red);
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-note-stack b,
.hero-note-input b {
  overflow: hidden;
  color: var(--ink);
  font-size: 0.92rem;
  line-height: 1.18;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-note-stack small,
.hero-note-input small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 750;
}

.hero-note-input {
  padding-top: 15px;
  padding-bottom: 15px;
  border-color: rgb(31 47 70 / 0.13);
  background: linear-gradient(135deg, #162236, #1f2f46);
}

.hero-note-input b {
  color: #fff;
}

.hero-note-input small {
  color: rgb(255 255 255 / 0.68);
}

.hero-it-flow {
  grid-template-columns: 1fr;
  align-self: end;
}

.hero-it-flow div {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 4px 12px;
  align-items: center;
  padding: 14px;
}

.hero-it-flow span {
  grid-row: span 2;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--red));
  font-weight: 900;
}

.hero-it-flow small {
  color: var(--muted);
}

.hero-demo-progress {
  height: 4px;
  margin-top: 16px;
  overflow: hidden;
  border-radius: 999px;
  background: #ffe2cf;
}

.hero-demo-progress span {
  display: block;
  width: 20%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--orange), var(--red));
  transition: transform 320ms ease;
  transform: translateX(var(--hero-demo-progress, 0%));
}

.circle {
  display: grid;
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 999px;
  color: var(--teal);
  background: var(--teal-soft);
}

@keyframes heroDemoFloat {
  0%,
  100% {
    transform: rotateX(4deg) rotateY(-8deg) rotateZ(1deg) translateY(0);
  }

  50% {
    transform: rotateX(4deg) rotateY(-6deg) rotateZ(0.4deg) translateY(-9px);
  }
}

@keyframes heroStatusPulse {
  0%,
  100% {
    box-shadow: 0 0 0 7px rgb(34 197 94 / 0.12);
  }

  50% {
    box-shadow: 0 0 0 12px rgb(34 197 94 / 0.05);
  }
}

.logo-strip {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 58px clamp(24px, 5vw, 84px) 32px;
  background: var(--background);
}

.logo-strip::before {
  display: none;
}

.audience-inner {
  position: relative;
  z-index: 1;
  max-width: 1480px;
  margin: 0 auto;
}

.audience-heading {
  display: grid;
  max-width: 760px;
  margin: 0 auto 52px;
  gap: 10px;
  text-align: center;
}

.audience-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2rem, 3.5vw, 4rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 48px);
}

.audience-card {
  --audience-accent: var(--orange);
  position: relative;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  align-items: start;
  gap: 20px;
  padding: 0;
  background: transparent;
  transition: transform 180ms ease;
}

.audience-card:nth-child(2) {
  --audience-accent: #f97316;
}

.audience-card:nth-child(3) {
  --audience-accent: #2563eb;
}

.audience-card:nth-child(4) {
  --audience-accent: #16a34a;
}

.audience-card:nth-child(5) {
  --audience-accent: #0f766e;
}

.audience-card:nth-child(6) {
  --audience-accent: #dc2626;
}

.audience-card:nth-child(7) {
  --audience-accent: #7c3aed;
}

.audience-card:nth-child(8) {
  --audience-accent: #162236;
}

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

.audience-card:hover {
  transform: translateY(-4px);
}

.audience-icon {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  color: var(--audience-accent);
  background: transparent;
}

.audience-icon svg {
  width: 46px;
  height: 46px;
  stroke-width: 1.65;
}

.audience-card h3 {
  margin: 2px 0 8px;
  color: var(--ink);
  font-size: clamp(1.05rem, 1.25vw, 1.35rem);
  line-height: 1.1;
}

.audience-card p {
  max-width: 34ch;
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.48;
}

.section {
  width: min(100%, var(--container));
  margin: 0 auto;
  padding: 96px 40px;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 48px;
}

.section-heading.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.modules {
  position: relative;
  overflow: hidden;
  padding-top: 58px;
  padding-bottom: 28px;
}

.modules::before {
  position: absolute;
  top: 28px;
  right: max(20px, calc((100% - var(--container)) / 2 + 44px));
  width: 360px;
  height: 360px;
  border-radius: 999px;
  background: radial-gradient(circle, rgb(255 138 0 / 0.13), transparent 68%);
  content: "";
  pointer-events: none;
}

.module-showcase {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0 auto;
}

.module-showcase-head {
  display: grid;
  max-width: 900px;
  justify-items: center;
  gap: 16px;
  margin: 0 auto 22px;
  text-align: center;
}

.module-showcase-head .overline {
  margin-bottom: 0;
}

.module-showcase-head h2,
.module-showcase-head p {
  margin: 0;
}

.module-showcase-head h2 {
  max-width: 820px;
  margin-right: auto;
  margin-left: auto;
}

.module-showcase-head p:not(.overline) {
  max-width: 820px;
  margin-right: auto;
  margin-left: auto;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.72;
}

.module-tile {
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow:
    0 18px 44px rgb(28 25 23 / 0.06),
    inset 0 1px 0 rgb(255 255 255 / 0.9);
}

.module-carousel {
  position: relative;
  display: grid;
  width: 100vw;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  margin-top: 18px;
  gap: 16px;
  overflow: visible;
  padding-top: 8px;
}

.module-carousel::before,
.module-carousel::after {
  position: absolute;
  z-index: 2;
  top: 18px;
  bottom: 0;
  width: min(120px, 12vw);
  pointer-events: none;
  content: "";
}

.module-carousel::before {
  left: 0;
  background: linear-gradient(90deg, var(--background) 12%, transparent);
}

.module-carousel::after {
  right: 0;
  background: linear-gradient(270deg, var(--background) 12%, transparent);
}

.module-carousel-viewport {
  overflow-x: hidden;
  overflow-y: hidden;
  cursor: grab;
  padding: 26px 0 36px;
  scrollbar-width: none;
  user-select: none;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
}

.module-carousel-viewport::-webkit-scrollbar {
  display: none;
}

.module-carousel-viewport:focus-visible {
  outline: 3px solid rgb(255 138 0 / 0.28);
  outline-offset: 4px;
}

.module-carousel-viewport.is-dragging {
  cursor: grabbing;
}

.module-carousel-track {
  display: flex;
  width: max-content;
  gap: 16px;
  padding: 10px 40px 14px;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.module-tile {
  --tile-accent: var(--orange);
  --tile-accent-2: var(--red);
  --tile-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='6' y='2' width='12' height='20' rx='3'/%3E%3Cpath d='M11 18h2'/%3E%3C/svg%3E");
  --tile-soft: #fff1e7;
  position: relative;
  display: grid;
  z-index: 1;
  align-content: start;
  gap: 12px;
  width: clamp(300px, 26vw, 382px);
  flex: 0 0 auto;
  min-height: 304px;
  padding: 26px;
  overflow: hidden;
  border: 1px solid rgb(234 212 199 / 0.76);
  border-radius: 22px;
  background:
    radial-gradient(circle at 86% 8%, rgb(255 138 0 / 0.13), transparent 34%),
    linear-gradient(145deg, rgb(255 255 255 / 0.98), #fff7ed),
    var(--surface);
  background:
    radial-gradient(circle at 86% 8%, color-mix(in srgb, var(--tile-accent) 18%, transparent), transparent 34%),
    linear-gradient(145deg, rgb(255 255 255 / 0.97), color-mix(in srgb, var(--tile-soft) 72%, white)),
    var(--surface);
  box-shadow:
    0 18px 44px rgb(28 25 23 / 0.07),
    inset 0 1px 0 rgb(255 255 255 / 0.92);
  animation: moduleRise 560ms ease both;
  transform-origin: center center;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.module-tile:nth-child(8n + 1) {
  --tile-accent: #ff8a00;
  --tile-accent-2: #e42716;
  --tile-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='6' y='2' width='12' height='20' rx='3'/%3E%3Cpath d='M11 18h2'/%3E%3C/svg%3E");
  --tile-soft: #fff0e4;
}

.module-tile:nth-child(8n + 2) {
  --tile-accent: #f97316;
  --tile-accent-2: #f59e0b;
  --tile-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M8 2v4M16 2v4M3 10h18'/%3E%3Crect x='4' y='5' width='16' height='16' rx='3'/%3E%3C/svg%3E");
  --tile-soft: #fff7d6;
}

.module-tile:nth-child(8n + 3) {
  --tile-accent: #7c3aed;
  --tile-accent-2: #ec4899;
  --tile-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 15a4 4 0 0 1-4 4H8l-5 3V7a4 4 0 0 1 4-4h10a4 4 0 0 1 4 4Z'/%3E%3C/svg%3E");
  --tile-soft: #f4ecff;
}

.module-tile:nth-child(8n + 4) {
  --tile-accent: #0f766e;
  --tile-accent-2: #14b8a6;
  --tile-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M19.5 12.6 12 20l-7.5-7.4a5 5 0 0 1 7.1-7.1l.4.4.4-.4a5 5 0 1 1 7.1 7.1Z'/%3E%3C/svg%3E");
  --tile-soft: #e7fff8;
}

.module-tile:nth-child(8n + 5) {
  --tile-accent: #2563eb;
  --tile-accent-2: #38bdf8;
  --tile-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M16 21v-2a4 4 0 0 0-4-4H7a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='9.5' cy='7' r='4'/%3E%3Cpath d='M22 21v-2a4 4 0 0 0-3-3.87M16 3.13a4 4 0 0 1 0 7.75'/%3E%3C/svg%3E");
  --tile-soft: #eaf3ff;
}

.module-tile:nth-child(8n + 6) {
  --tile-accent: #dc2626;
  --tile-accent-2: #fb7185;
  --tile-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10Z'/%3E%3Cpath d='m9 12 2 2 4-5'/%3E%3C/svg%3E");
  --tile-soft: #fff0f2;
}

.module-tile:nth-child(8n + 7) {
  --tile-accent: #16a34a;
  --tile-accent-2: #84cc16;
  --tile-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='6' rx='2'/%3E%3Crect x='3' y='14' width='18' height='6' rx='2'/%3E%3Cpath d='M7 7h.01M7 17h.01'/%3E%3C/svg%3E");
  --tile-soft: #efffeb;
}

.module-tile:nth-child(8n) {
  --tile-accent: #162236;
  --tile-accent-2: #f36b1d;
  --tile-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 19V5M4 19h16'/%3E%3Crect x='7' y='11' width='3' height='5' rx='1'/%3E%3Crect x='12' y='7' width='3' height='9' rx='1'/%3E%3Crect x='17' y='9' width='3' height='7' rx='1'/%3E%3C/svg%3E");
  --tile-soft: #edf1f7;
}

.module-tile:nth-child(2) {
  animation-delay: 40ms;
}

.module-tile:nth-child(3) {
  animation-delay: 80ms;
}

.module-tile:nth-child(4) {
  animation-delay: 120ms;
}

.module-tile:nth-child(n + 5) {
  animation-delay: 160ms;
}

.module-tile::before {
  position: absolute;
  top: -28px;
  right: -30px;
  z-index: 0;
  width: 138px;
  height: 138px;
  background:
    linear-gradient(135deg, var(--tile-accent), var(--tile-accent-2));
  content: "";
  opacity: 0.14;
  pointer-events: none;
  transform: rotate(-8deg);
  -webkit-mask: var(--tile-icon) center / contain no-repeat;
  mask: var(--tile-icon) center / contain no-repeat;
}

.module-tile::after {
  position: absolute;
  inset: auto 26px 22px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--tile-accent), transparent);
  content: "";
  opacity: 0.2;
  pointer-events: none;
}

.module-tile:hover {
  z-index: 4;
  border-color: rgb(255 138 0 / 0.42);
  box-shadow:
    0 28px 68px rgb(228 39 22 / 0.14),
    inset 0 1px 0 rgb(255 255 255 / 0.96);
  border-color: color-mix(in srgb, var(--tile-accent) 46%, var(--line));
  box-shadow:
    0 28px 68px color-mix(in srgb, var(--tile-accent) 20%, transparent),
    inset 0 1px 0 rgb(255 255 255 / 0.96);
  transform: translateY(-10px) scale(1.05);
}

.module-tile > * {
  position: relative;
  z-index: 1;
}

.module-tile > span {
  display: inline-grid;
  width: 46px;
  height: 46px;
  margin-bottom: 8px;
  place-items: center;
  border-radius: 16px;
  color: var(--tile-accent);
  background: #fff1e7;
  box-shadow: inset 0 0 0 1px rgb(255 138 0 / 0.12);
  background: color-mix(in srgb, var(--tile-soft) 82%, white);
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--tile-accent) 18%, transparent);
}

.module-tile svg {
  width: 22px;
  height: 22px;
}

.module-tile small {
  width: fit-content;
  padding: 5px 9px;
  border-radius: 999px;
  color: var(--tile-accent);
  background: rgb(255 255 255 / 0.68);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: inset 0 0 0 1px rgb(255 255 255 / 0.74);
}

.module-tile h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.28rem;
  line-height: 1.14;
}

.module-tile p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.62;
}

@keyframes moduleRise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.demo-lab {
  padding-top: 64px;
  background:
    linear-gradient(135deg, rgb(255 138 0 / 0.14), transparent 34%),
    linear-gradient(315deg, rgb(228 39 22 / 0.08), transparent 42%),
    #fff7ed;
}

.demo-frame-wrap {
  overflow: hidden;
  width: min(100%, 1240px);
  height: 760px;
  margin: 0 auto;
  border: 1px solid rgb(234 212 199 / 0.92);
  border-radius: 18px;
  background: #0c111d;
  box-shadow: 0 34px 80px rgb(28 25 23 / 0.2);
}

.demo-frame {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: #fafaf9;
}

.demo-shell {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  width: min(100%, 1240px);
  height: 720px;
  min-height: 640px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgb(231 229 228 / 0.96);
  border-radius: 18px;
  background: #fafaf9;
  box-shadow:
    0 34px 80px rgb(28 25 23 / 0.18),
    0 1px 0 rgb(255 255 255 / 0.82) inset;
}

.demo-login,
.demo-workspace {
  min-height: 0;
}

.demo-login {
  position: relative;
  display: flex;
  overflow-y: auto;
  flex-direction: column;
  align-content: start;
  gap: 12px;
  padding: 20px 12px 16px;
  color: #e7e5e4;
  background: linear-gradient(180deg, #0a0908 0%, #141210 54%, #0e0d0c 100%);
}

.demo-login::before {
  position: absolute;
  top: -76px;
  left: -46px;
  width: 190px;
  height: 190px;
  border-radius: 999px;
  background: radial-gradient(circle, rgb(234 88 12 / 0.13), transparent 70%);
  content: "";
  pointer-events: none;
}

.demo-app-brand {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 10px 14px;
  border-bottom: 1px solid rgb(255 255 255 / 0.07);
}

.demo-app-brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgb(0 0 0 / 0.32));
}

.demo-app-brand strong {
  color: #fff;
  font-size: 1.08rem;
  letter-spacing: -0.01em;
}

.demo-login h3,
.demo-login p {
  margin-bottom: 8px;
}

.demo-login > div:not(.demo-app-brand, .demo-credentials) {
  padding: 12px 12px 4px;
}

.demo-login .overline {
  margin-bottom: 10px;
  color: rgb(251 146 60 / 0.9);
  font-size: 0.56rem;
  letter-spacing: 0.14em;
}

.demo-login h3 {
  color: #fff;
  font-size: 1rem;
}

.demo-login p:not(.overline) {
  color: #a8a29e;
  font-size: 0.82rem;
  line-height: 1.5;
}

.demo-account,
.demo-reset,
.demo-tabs button,
.demo-action,
.demo-chat-send {
  border: 0;
  font: inherit;
  cursor: pointer;
}

.demo-account {
  position: relative;
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  width: 100%;
  min-height: 56px;
  padding: 10px 12px;
  border: 0;
  border-radius: 10px;
  color: #a8a29e;
  background: transparent;
  text-align: left;
  transition: color 160ms ease, background 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.demo-account::before {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 8px;
  color: #a8a29e;
  background: rgb(255 255 255 / 0.04);
  font-size: 0.72rem;
  font-weight: 900;
  content: "P";
}

.demo-account[data-demo-role="admin"]::before {
  content: "A";
}

.demo-account:hover,
.demo-account.is-active {
  color: #fb923c;
  background: linear-gradient(135deg, rgb(234 88 12 / 0.14), rgb(249 115 22 / 0.07));
  box-shadow: inset 0 0 0 1px rgb(234 88 12 / 0.18);
  transform: translateY(-1px);
}

.demo-account.is-active::before {
  color: #fff;
  background: linear-gradient(135deg, #ea580c, #f97316);
  box-shadow: 0 2px 8px -1px rgb(234 88 12 / 0.38);
}

.demo-account strong,
.demo-account span,
.demo-credentials b,
.demo-credentials span {
  display: block;
}

.demo-account strong {
  overflow: hidden;
  color: inherit;
  font-size: 0.86rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.demo-account span,
.demo-credentials span {
  color: #78716c;
  font-size: 0.74rem;
}

.demo-credentials {
  position: relative;
  display: grid;
  gap: 4px;
  margin-top: auto;
  padding: 16px;
  border: 1px solid rgb(255 255 255 / 0.06);
  border-radius: 14px;
  background: linear-gradient(135deg, rgb(255 255 255 / 0.04), rgb(255 255 255 / 0.01));
  color: #e7e5e4;
  backdrop-filter: blur(10px);
}

.demo-credentials span {
  color: #a8a29e;
}

.demo-workspace {
  position: relative;
  overflow: auto;
  background:
    radial-gradient(circle at 70% 0%, rgb(251 146 60 / 0.12), transparent 31%),
    #fafaf9;
}

.demo-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 86px;
  padding: 20px 24px 14px;
  background: transparent;
}

.demo-toolbar span {
  display: block;
  margin-bottom: 4px;
  color: #ea580c;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.demo-toolbar h3 {
  margin: 0;
  color: #1c1917;
  font-size: 1.28rem;
  font-weight: 850;
}

.demo-reset {
  min-height: 40px;
  padding: 8px 14px;
  border: 1px solid #e7e5e4;
  border-radius: 8px;
  color: #78716c;
  background: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.demo-reset:hover {
  border-color: #fed7aa;
  color: #ea580c;
  background: #fff7ed;
}

.demo-tabs {
  display: flex;
  gap: 8px;
  padding: 0 24px 18px;
  overflow-x: auto;
}

.demo-tabs button {
  min-height: 36px;
  padding: 8px 16px;
  border-radius: 8px;
  color: #78716c;
  background: #fff;
  box-shadow: inset 0 0 0 1px #e7e5e4;
  font-size: 0.78rem;
  font-weight: 750;
  white-space: nowrap;
  transition: background 160ms ease, color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.demo-tabs button:hover,
.demo-tabs button.is-active {
  color: #fff;
  background: linear-gradient(135deg, #ea580c, #f97316);
  box-shadow: 0 8px 18px rgb(234 88 12 / 0.18);
  transform: translateY(-1px);
}

.demo-stage {
  min-height: calc(100% - 144px);
  padding: 0 24px 24px;
}

.demo-view {
  animation: demoIn 260ms ease both;
}

.demo-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 16px;
}

.demo-metric {
  min-height: 112px;
  padding: 18px;
  border: 1px solid #e7e5e4;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 1px 3px rgb(0 0 0 / 0.04);
}

.demo-metric b {
  display: block;
  color: #1c1917;
  font-size: 2rem;
  font-weight: 850;
  line-height: 1;
}

.demo-metric span {
  display: block;
  margin-top: 12px;
  color: #78716c;
  font-size: 0.78rem;
  font-weight: 750;
}

.demo-grid-two {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.75fr);
  gap: 16px;
}

.demo-panel {
  overflow: hidden;
  padding: 20px;
  border: 1px solid #e7e5e4;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 1px 3px rgb(0 0 0 / 0.04);
}

.demo-panel h4 {
  margin: 0 0 16px;
  color: #1c1917;
  font-size: 1rem;
  font-weight: 850;
}

.demo-list {
  display: grid;
  gap: 10px;
}

.demo-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 13px 14px;
  border: 1px solid #e7e5e4;
  border-radius: 10px;
  background: #fafaf9;
}

.demo-row strong,
.demo-row span {
  display: block;
}

.demo-row span,
.demo-status,
.demo-subtle {
  color: #78716c;
  font-size: 0.82rem;
}

.demo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.demo-action,
.demo-chat-send {
  min-height: 36px;
  padding: 8px 12px;
  border-radius: 8px;
  color: #fff;
  background: #ea580c;
  font-size: 0.74rem;
  font-weight: 800;
  transition: filter 160ms ease, transform 160ms ease;
}

.demo-action:hover,
.demo-chat-send:hover {
  filter: brightness(0.96);
  transform: translateY(-1px);
}

.demo-action[data-demo-action="approve"] {
  background: #16a34a;
}

.demo-action[data-demo-action="reject"] {
  background: #dc2626;
}

.demo-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  padding: 4px 9px;
  border-radius: 6px;
  color: #d97706;
  background: #fef3c7;
  font-size: 0.7rem;
  font-weight: 800;
  white-space: nowrap;
}

.demo-badge.approved {
  color: #16a34a;
  background: #dcfce7;
}

.demo-badge.rejected {
  color: #dc2626;
  background: #fef2f2;
}

.demo-schedule {
  overflow-x: auto;
  border: 1px solid #e7e5e4;
  border-radius: 10px;
  background: #fff;
}

.demo-schedule table {
  width: 100%;
  min-width: 700px;
  border-collapse: collapse;
}

.demo-schedule th,
.demo-schedule td {
  padding: 12px;
  border-bottom: 1px solid #f5f5f4;
  text-align: left;
  vertical-align: top;
}

.demo-schedule th {
  color: #78716c;
  background: #fafaf9;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.demo-shift {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 6px 10px;
  border-radius: 8px;
  color: #fff;
  background: #1e293b;
  font-size: 0.72rem;
  font-weight: 800;
}

.demo-shift.leave {
  background: #22c55e;
}

.demo-shift.duty {
  background: linear-gradient(135deg, #ea580c, #f97316);
}

.demo-shift.free {
  color: #78716c;
  background: #f5f5f4;
}

.demo-request-form {
  display: grid;
  gap: 14px;
}

.demo-request-form .demo-action {
  justify-self: start;
}

.demo-request-form label {
  display: grid;
  gap: 7px;
  color: #78716c;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.demo-request-form input,
.demo-request-form textarea,
.demo-chat-input {
  width: 100%;
  border: 1px solid #e7e5e4;
  border-radius: 8px;
  background: #fff;
  color: #1c1917;
  font: inherit;
  outline: none;
}

.demo-request-form input {
  min-height: 44px;
  padding: 0 12px;
}

.demo-request-form textarea {
  min-height: 96px;
  padding: 12px;
  resize: vertical;
}

.demo-request-form input:focus,
.demo-request-form textarea:focus,
.demo-chat-input:focus {
  border-color: #ea580c;
  box-shadow: 0 0 0 2px rgb(234 88 12 / 0.12);
}

.demo-chat {
  display: grid;
  gap: 14px;
}

.demo-chat-log {
  display: grid;
  gap: 10px;
  max-height: 330px;
  overflow-y: auto;
  padding: 4px;
}

.demo-message {
  max-width: 82%;
  padding: 12px 14px;
  border: 1px solid #e7e5e4;
  border-radius: 14px;
  background: #fafaf9;
}

.demo-message.is-own {
  justify-self: end;
  color: #fff;
  border-color: #1e293b;
  background: #1e293b;
}

.demo-message p {
  margin: 4px 0 0;
  color: inherit;
  font-size: 0.92rem;
}

.demo-message b,
.demo-message span {
  display: block;
}

.demo-message span {
  margin-top: 4px;
  color: inherit;
  opacity: 0.78;
  font-size: 0.78rem;
}

.demo-chat-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.demo-chat-input {
  min-height: 44px;
  padding: 0 12px;
}

.demo-assistant {
  position: sticky;
  right: 18px;
  bottom: 18px;
  display: grid;
  width: 58px;
  height: 58px;
  margin: -76px 18px 18px auto;
  place-items: center;
  overflow: hidden;
  border: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, #fb923c, #7c3aed);
  box-shadow: 0 14px 30px rgb(124 58 237 / 0.3);
  cursor: pointer;
}

.demo-assistant img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes demoIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding: 92px 40px;
  background: var(--surface-mid);
}

.benefits article {
  display: grid;
  justify-items: center;
  text-align: center;
}

.benefits .circle {
  margin-bottom: 20px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.benefits p {
  max-width: 310px;
  margin-bottom: 0;
  font-size: 0.92rem;
}

.quote-band {
  position: relative;
  overflow: hidden;
  padding: 118px 40px;
  color: #fff;
  background: var(--teal-dark);
  text-align: center;
}

.quote-band::before {
  position: absolute;
  top: -80px;
  right: 5vw;
  content: "\"";
  color: rgb(255 255 255 / 0.08);
  font-family: Georgia, serif;
  font-size: 16rem;
  line-height: 1;
}

.quote-carousel {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 88px;
}

.quote-track {
  position: relative;
  min-height: 320px;
}

.quote-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  justify-items: center;
  opacity: 0;
  pointer-events: none;
  transform: translateX(28px);
  transition: opacity 280ms ease, transform 360ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.quote-slide.is-active {
  position: relative;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.quote-carousel.is-reversing .quote-slide {
  transform: translateX(-28px);
}

.quote-carousel.is-reversing .quote-slide.is-active {
  transform: translateX(0);
}

.quote-slide p {
  position: relative;
  max-width: 900px;
  margin: 0 auto 40px;
  color: #ffc49b;
  font-size: 2.25rem;
  font-style: italic;
  font-weight: 800;
  line-height: 1.22;
}

.quote-arrow {
  position: absolute;
  z-index: 2;
  top: 50%;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid rgb(255 255 255 / 0.22);
  border-radius: 999px;
  color: #fff;
  background: rgb(255 255 255 / 0.1);
  box-shadow: 0 14px 28px rgb(0 0 0 / 0.16);
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 160ms ease, transform 160ms ease, border-color 160ms ease;
}

.quote-arrow:hover {
  border-color: rgb(255 196 155 / 0.66);
  background: rgb(255 138 0 / 0.2);
  transform: translateY(-50%) scale(1.04);
}

.quote-arrow-prev {
  left: 0;
}

.quote-arrow-prev svg {
  transform: rotate(180deg);
}

.quote-arrow-next {
  right: 0;
}

.quote-author {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-align: left;
}

.quote-author span {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border: 3px solid rgb(255 255 255 / 0.22);
  border-radius: 999px;
  color: var(--teal-dark);
  background: #fff;
  font-weight: 900;
}

.quote-author b,
.quote-author small {
  display: block;
}

.quote-author small {
  color: rgb(255 255 255 / 0.76);
}

.expansion {
  background: var(--background);
}

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

.expansion-grid article {
  min-height: 176px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
}

.expansion-grid b,
.expansion-grid span {
  display: block;
}

.expansion-grid b {
  margin-bottom: 10px;
}

.expansion-grid span {
  color: var(--muted);
}

.pricing-showcase {
  --pricing-progress: 30%;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: min(100%, var(--container));
  margin: 0 auto;
  padding: 108px 40px;
  color: #fff;
  background:
    linear-gradient(135deg, rgb(255 138 0 / 0.12), transparent 34%),
    linear-gradient(180deg, #101a2b 0%, #162236 58%, #111827 100%);
}

.pricing-showcase::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgb(255 255 255 / 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 0.05) 1px, transparent 1px);
  background-position: 0 0;
  background-size: 58px 58px;
  content: "";
  opacity: 0.42;
}

.pricing-showcase::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 18% 12%, rgb(255 138 0 / 0.16), transparent 28%),
    radial-gradient(circle at 82% 18%, rgb(228 39 22 / 0.12), transparent 28%);
  content: "";
  opacity: 0.82;
}

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

.pricing-heading h2,
.pricing-heading p {
  color: #fff;
}

.pricing-heading p:not(.overline) {
  color: rgb(255 255 255 / 0.78);
}

.pricing-stage {
  display: grid;
  grid-template-columns: minmax(280px, 0.36fr) minmax(0, 1fr);
  gap: 22px;
  align-items: stretch;
}

.pricing-control,
.pricing-card,
.pricing-footnote,
.pricing-addons,
.implementation-pricing article {
  border: 1px solid rgb(255 255 255 / 0.14);
  border-radius: 8px;
  background: rgb(255 255 255 / 0.08);
  box-shadow: 0 24px 55px rgb(0 0 0 / 0.18);
  backdrop-filter: blur(18px);
}

.pricing-control {
  display: grid;
  align-content: start;
  gap: 22px;
  padding: 24px;
}

.pricing-control-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.pricing-control-top span,
.pricing-range-label,
.pricing-dial-copy small,
.pricing-card-kicker,
.implementation-pricing span {
  color: #ffc49b;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-control-top output {
  color: #fff;
  font-weight: 850;
}

.pricing-range-label {
  margin-bottom: -12px;
}

.pricing-range {
  width: 100%;
  accent-color: var(--orange);
  cursor: pointer;
}

.pricing-range-scale {
  display: flex;
  justify-content: space-between;
  color: rgb(255 255 255 / 0.58);
  font-size: 0.75rem;
  font-weight: 800;
}

.pricing-dial {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 224px;
  padding: 28px 24px 24px;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 0.12);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgb(255 255 255 / 0.08), rgb(255 255 255 / 0.025)),
    linear-gradient(180deg, rgb(16 26 43 / 0.76), rgb(17 24 39 / 0.94));
}

.pricing-dial::before {
  position: absolute;
  top: 26px;
  right: 24px;
  left: 24px;
  height: 1px;
  background: linear-gradient(90deg, rgb(255 255 255 / 0.1), rgb(255 196 155 / 0.58), rgb(255 255 255 / 0.1));
  content: "";
}

.pricing-dial-ring {
  position: absolute;
  top: 48px;
  right: 24px;
  left: 24px;
  height: 10px;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 0.12);
  border-radius: 999px;
  background: rgb(255 255 255 / 0.12);
  box-shadow: inset 0 1px 4px rgb(0 0 0 / 0.24);
}

.pricing-dial-ring::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--pricing-progress);
  border-radius: inherit;
  background: linear-gradient(90deg, var(--orange), var(--red));
  box-shadow: 0 0 24px rgb(255 107 31 / 0.34);
  content: "";
  transition: width 260ms ease;
}

.pricing-dial-ring span {
  position: absolute;
  inset: -8px 0;
  border: 0;
  background:
    linear-gradient(90deg, transparent calc(25% - 1px), rgb(255 255 255 / 0.42) calc(25% - 1px) calc(25% + 1px), transparent calc(25% + 1px)),
    linear-gradient(90deg, transparent calc(50% - 1px), rgb(255 255 255 / 0.42) calc(50% - 1px) calc(50% + 1px), transparent calc(50% + 1px)),
    linear-gradient(90deg, transparent calc(75% - 1px), rgb(255 255 255 / 0.42) calc(75% - 1px) calc(75% + 1px), transparent calc(75% + 1px));
}

.pricing-dial-copy {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: start;
  max-width: 100%;
  text-align: left;
}

.pricing-dial-copy strong {
  display: block;
  margin: 6px 0;
  color: #fff;
  font-size: 2.15rem;
  line-height: 1.05;
}

.pricing-dial-copy span {
  color: rgb(255 255 255 / 0.72);
  font-weight: 750;
}

.pricing-control-note {
  margin: 0;
  color: rgb(255 255 255 / 0.76);
  font-size: 0.9rem;
}

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

.pricing-card {
  position: relative;
  display: grid;
  align-content: start;
  min-height: 100%;
  padding: 22px;
  overflow: hidden;
  transition: background 240ms ease, border-color 240ms ease, transform 240ms ease, box-shadow 240ms ease;
}

.pricing-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--red), #ffffff);
  content: "";
  opacity: 0.55;
  transform: scaleX(0.28);
  transform-origin: left;
  transition: opacity 240ms ease, transform 300ms ease;
}

.pricing-card.is-active {
  border-color: rgb(255 196 155 / 0.7);
  background: rgb(255 255 255 / 0.15);
  box-shadow: 0 28px 70px rgb(228 39 22 / 0.2);
  transform: translateY(-6px);
}

.pricing-card.is-active::before {
  opacity: 1;
  transform: scaleX(1);
}

.pricing-card-price {
  margin: 16px 0 16px;
  color: #fff;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.pricing-card-price small,
.pricing-card-price span {
  color: rgb(255 255 255 / 0.68);
  font-size: 0.9rem;
  font-weight: 800;
}

.pricing-card p {
  min-height: 106px;
  margin-bottom: 18px;
  color: rgb(255 255 255 / 0.76);
  font-size: 0.9rem;
}

.pricing-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pricing-card li {
  position: relative;
  padding-left: 18px;
  color: rgb(255 255 255 / 0.82);
  font-size: 0.85rem;
}

.pricing-card li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--orange), var(--red));
  content: "";
}

.pricing-footnote {
  margin-top: 22px;
  padding: 18px 22px;
  color: rgb(255 255 255 / 0.78);
}

.pricing-footnote strong {
  color: #fff;
}

.pricing-addons {
  margin-top: 22px;
  padding: 24px;
  overflow: hidden;
}

.pricing-subheading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 26px;
  margin-bottom: 22px;
}

.pricing-subheading h3 {
  margin: 0;
  color: #fff;
  font-size: 1.7rem;
}

.pricing-subheading p {
  max-width: 600px;
  margin: 0;
  color: rgb(255 255 255 / 0.72);
  font-size: 0.92rem;
}

.addon-marquee {
  display: flex;
  width: max-content;
  gap: 12px;
  animation: addonDrift 28s linear infinite alternate;
}

.pricing-addons:hover .addon-marquee {
  animation-play-state: paused;
}

.addon-marquee span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 52px;
  padding: 12px 16px;
  border: 1px solid rgb(255 255 255 / 0.14);
  border-radius: 999px;
  color: rgb(255 255 255 / 0.8);
  background: rgb(255 255 255 / 0.08);
  white-space: nowrap;
}

.addon-marquee b {
  color: #ffc49b;
}

.implementation-pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 22px;
}

.implementation-pricing article {
  padding: 24px;
}

.implementation-pricing b {
  display: block;
  margin: 12px 0;
  color: #fff;
  font-size: 1.45rem;
}

.implementation-pricing p {
  margin: 0;
  color: rgb(255 255 255 / 0.74);
  font-size: 0.9rem;
}

.pricing-showcase.is-animated:not(.is-visible) .pricing-control,
.pricing-showcase.is-animated:not(.is-visible) .pricing-card,
.pricing-showcase.is-animated:not(.is-visible) .pricing-footnote,
.pricing-showcase.is-animated:not(.is-visible) .pricing-addons,
.pricing-showcase.is-animated:not(.is-visible) .implementation-pricing article {
  opacity: 0;
  transform: translateY(22px);
}

.pricing-showcase.is-visible .pricing-control,
.pricing-showcase.is-visible .pricing-card,
.pricing-showcase.is-visible .pricing-footnote,
.pricing-showcase.is-visible .pricing-addons,
.pricing-showcase.is-visible .implementation-pricing article {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 560ms ease, transform 640ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.pricing-showcase.is-visible .pricing-card:nth-child(2) {
  transition-delay: 90ms;
}

.pricing-showcase.is-visible .pricing-card:nth-child(3) {
  transition-delay: 160ms;
}

.pricing-showcase.is-visible .pricing-card:nth-child(4) {
  transition-delay: 230ms;
}

@keyframes addonDrift {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-100% + min(100vw, var(--container)) - 80px));
  }
}

.implementation {
  padding: 92px 40px;
  background: var(--surface-low);
}

.implementation ol {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1040px;
  margin: 0 auto;
  padding: 0;
  counter-reset: steps;
  list-style: none;
}

.implementation li {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
  counter-increment: steps;
}

.implementation li::before {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 999px;
  color: #fff;
  content: counter(steps, decimal-leading-zero);
  background: linear-gradient(135deg, var(--orange), var(--red));
  font-weight: 850;
}

.implementation b,
.implementation span {
  display: block;
}

.implementation span {
  margin-top: 8px;
  color: var(--muted);
}

.final-cta {
  padding: 108px 40px;
  background: var(--surface-mid);
  text-align: center;
}

.final-cta > div {
  max-width: 760px;
  margin: 0 auto;
}

.final-cta p {
  margin-bottom: 28px;
}

.contact-toggle {
  cursor: pointer;
}

.contact-panel {
  position: relative;
  max-height: 0;
  margin-top: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(18px) scale(0.98);
  transition:
    max-height 560ms cubic-bezier(0.2, 0.8, 0.2, 1),
    margin-top 320ms ease,
    opacity 260ms ease,
    transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.contact-panel.is-open {
  max-height: 860px;
  margin-top: 34px;
  opacity: 1;
  transform: translateY(0) scale(1);
}

.contact-panel-accent {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 28px;
  left: 28px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), var(--red), var(--blue));
  transform: scaleX(0);
  transform-origin: left;
}

.contact-panel.is-open .contact-panel-accent {
  animation: drawAccent 720ms 120ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.contact-form {
  position: relative;
  overflow: hidden;
  padding: 32px;
  border: 1px solid rgb(234 212 199 / 0.92);
  border-radius: 8px;
  background: rgb(255 255 255 / 0.94);
  box-shadow: 0 24px 50px rgb(42 30 20 / 0.11);
  text-align: left;
}

.contact-form::before {
  position: absolute;
  top: -80px;
  right: -90px;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background: radial-gradient(circle, rgb(255 138 0 / 0.2), transparent 70%);
  content: "";
}

.contact-form-heading {
  position: relative;
  max-width: 560px;
  margin-bottom: 24px;
}

.contact-form-heading span {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-form-heading h3 {
  margin-bottom: 8px;
  font-size: 1.35rem;
}

.contact-form-heading p {
  margin-bottom: 0;
  font-size: 0.94rem;
}

.form-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

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

.form-grid label > span {
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 800;
}

.form-grid input,
.form-grid textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #fffaf7;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.form-grid input {
  min-height: 48px;
  padding: 0 14px;
}

.form-grid textarea {
  min-height: 126px;
  resize: vertical;
  padding: 13px 14px;
}

.form-grid input:focus,
.form-grid textarea:focus {
  border-color: var(--teal);
  background: #fff;
  box-shadow: 0 0 0 4px rgb(243 107 29 / 0.13);
}

.form-wide {
  grid-column: 1 / -1;
}

.form-footer {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 22px;
}

.form-footer p {
  max-width: 390px;
  margin: 0;
  font-size: 0.84rem;
}

.form-status {
  position: relative;
  margin: 18px 0 0;
  color: var(--teal);
  font-size: 0.9rem;
  font-weight: 800;
}

@keyframes drawAccent {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  width: min(100%, var(--container));
  margin: 0 auto;
  padding: 32px 40px;
  border-top: 1px solid rgb(234 212 199 / 0.8);
  background: var(--surface);
}

.footer p {
  margin: 0;
  font-size: 0.88rem;
}

@media (max-width: 980px) {
  .topbar {
    grid-template-columns: auto auto;
  }

  .menu-button {
    display: grid;
    justify-self: end;
  }

  .main-nav,
  .top-actions {
    display: none;
  }

  .main-nav.is-open {
    position: absolute;
    top: calc(100% + 8px);
    right: 16px;
    left: 16px;
    display: grid;
    gap: 0;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--surface);
    box-shadow: var(--shadow);
  }

  .main-nav.is-open a {
    padding: 14px 10px;
    border-bottom: 0;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 72px;
  }

  h1 {
    font-size: 3.4rem;
  }

  h2 {
    font-size: 2.35rem;
  }

  .quote-band p {
    font-size: 1.85rem;
  }

  .quote-carousel {
    padding: 0 68px;
  }

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

  .hero-media {
    max-width: 860px;
  }

  .hero-demo {
    transform: none;
  }

  .demo-shell {
    grid-template-columns: 220px minmax(640px, 1fr);
    overflow-x: auto;
  }

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

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

  .benefits,
  .expansion-grid,
  .module-showcase-head,
  .pricing-stage,
  .implementation-pricing,
  .implementation ol {
    grid-template-columns: 1fr;
  }

  .module-showcase-head {
    gap: 18px;
  }

  .module-showcase-head .overline {
    margin-bottom: -6px;
  }

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

  .module-carousel .module-tile {
    width: clamp(280px, 42vw, 340px);
  }

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

  .pricing-card p {
    min-height: 0;
  }

  .pricing-subheading {
    align-items: flex-start;
    flex-direction: column;
  }

  .expansion-grid article {
    min-height: auto;
  }
}

@media (max-width: 720px) {
  .topbar,
  .hero,
  .section,
  .logo-strip,
  .benefits,
  .quote-band,
  .pricing-showcase,
  .implementation,
  .final-cta,
  .footer {
    padding-right: 20px;
    padding-left: 20px;
  }

  .topbar {
    height: 72px;
  }

  .brand {
    width: 158px;
    height: 48px;
  }

  .hero {
    padding-top: 56px;
    padding-bottom: 70px;
  }

  h1 {
    font-size: 2.25rem;
  }

  h2 {
    font-size: 1.9rem;
  }

  .quote-band p {
    font-size: 1.5rem;
  }

  .quote-carousel {
    padding: 0;
  }

  .quote-track {
    min-height: 420px;
  }

  .quote-arrow {
    top: auto;
    bottom: -18px;
    width: 46px;
    height: 46px;
    transform: none;
  }

  .quote-arrow:hover {
    transform: scale(1.04);
  }

  .quote-arrow-prev {
    left: calc(50% - 56px);
  }

  .quote-arrow-next {
    right: calc(50% - 56px);
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .demo-frame-wrap {
    height: 820px;
  }

  .demo-shell {
    grid-template-columns: 1fr;
    height: auto;
    min-height: 0;
    overflow: hidden;
  }

  .demo-login,
  .demo-stage,
  .demo-toolbar {
    padding: 20px;
  }

  .demo-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .demo-tabs {
    padding-right: 20px;
    padding-left: 20px;
  }

  .demo-actions {
    justify-content: flex-start;
  }

  .demo-message {
    max-width: 100%;
  }

  .contact-panel.is-open {
    max-height: 1120px;
  }

  .contact-form {
    padding: 24px;
  }

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

  .form-grid {
    gap: 15px;
  }

  .form-footer {
    display: grid;
  }

  .hero-demo {
    grid-template-columns: 1fr;
    min-height: auto;
    border-radius: 18px;
  }

  .hero-demo-sidebar {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 12px;
  }

  .hero-demo-logo {
    display: none;
  }

  .hero-demo-sidebar button {
    flex: 0 0 auto;
    min-height: 42px;
    white-space: nowrap;
  }

  .hero-demo-main {
    padding: 14px;
  }

  .hero-demo-topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-demo-stage {
    min-height: 560px;
  }

  .hero-demo-slide {
    gap: 12px;
    padding: 18px;
  }

  .hero-mini-metrics,
  .hero-request-actions {
    grid-template-columns: 1fr;
  }

  .hero-team-board div {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .hero-team-board small {
    grid-column: 2;
  }

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

  .hero-notes-panel {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(100%, 340px);
    margin: 0 auto;
  }

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

  .audience-heading {
    text-align: left;
    margin-right: 0;
    margin-bottom: 36px;
    margin-left: 0;
  }

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

  .audience-card {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 16px;
  }

  .audience-icon {
    width: 52px;
    height: 52px;
  }

  .audience-icon svg {
    width: 38px;
    height: 38px;
  }

  .section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .modules {
    padding-top: 46px;
    padding-bottom: 28px;
  }

  .demo-lab {
    padding-top: 56px;
  }

  .module-tile {
    padding: 20px;
  }

  .module-carousel::before,
  .module-carousel::after {
    width: 54px;
  }

  .module-tile {
    width: min(82vw, 320px);
    min-height: auto;
  }

  .quote-band {
    padding-top: 86px;
    padding-bottom: 86px;
  }

  .pricing-showcase {
    padding-top: 78px;
    padding-bottom: 78px;
  }

  .pricing-cards {
    grid-template-columns: 1fr;
  }

  .pricing-control,
  .pricing-card,
  .pricing-addons,
  .implementation-pricing article {
    padding: 20px;
  }

  .pricing-dial {
    min-height: 196px;
  }

  .pricing-card.is-active {
    transform: translateY(-3px);
  }

  .addon-marquee {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
    animation: none;
  }
}

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

  .module-tile,
  .hero-demo,
  .hero-demo-status span,
  .addon-marquee {
    animation: none;
  }

  .hero-demo {
    transform: none;
  }

  .hero-demo-slide {
    transition: none;
  }

  .pricing-showcase.is-animated:not(.is-visible) .pricing-control,
  .pricing-showcase.is-animated:not(.is-visible) .pricing-card,
  .pricing-showcase.is-animated:not(.is-visible) .pricing-footnote,
  .pricing-showcase.is-animated:not(.is-visible) .pricing-addons,
  .pricing-showcase.is-animated:not(.is-visible) .implementation-pricing article {
    opacity: 1;
    transform: none;
  }
}
