:root {
  --public-font: Inter, "Segoe UI", Roboto, Arial, sans-serif;
  --ink: #10243d;
  --muted: #536b84;
  --line: #b8d4ef;
  --panel: #ffffff;
  --accent: #1d76d3;
  --accent-strong: #0c4d94;
  --danger: #8f2218;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

body.public-shell {
  margin: 0;
  min-height: 100vh;
  font-family: var(--public-font);
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(29, 118, 211, 0.12), transparent 36%),
    linear-gradient(180deg, #f8fcff 0%, #eef6ff 46%, #f7fbff 100%);
}

a {
  color: var(--accent-strong);
}

.public-header {
  position: sticky;
  top: 0;
  z-index: 4;
  background: rgba(248, 252, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.public-header-inner,
.public-main,
.footer-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding-left: 18px;
  padding-right: 18px;
}

.public-header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand-line {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 330px;
  padding: 10px 12px;
  border: 1px solid rgba(33, 42, 38, 0.16);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 248, 255, 0.96));
  box-shadow: 0 16px 28px rgba(22, 54, 86, 0.10);
  color: inherit;
  text-decoration: none;
}

.brand-logo {
  width: 124px;
  height: 54px;
  display: block;
  object-fit: contain;
  object-position: center;
  flex: 0 0 auto;
  box-sizing: border-box;
  padding: 3px 5px;
  border-radius: 12px;
  border: 1px solid rgba(0, 60, 110, 0.16);
  background: #fff;
  box-shadow: 0 10px 22px rgba(0, 60, 110, 0.12);
}

.brand-name,
.brand-tag {
  display: block;
}

.brand-copy {
  display: flex;
  flex-direction: column;
}

.brand-copy::after {
  content: "Revision 07212026-11";
  margin-top: 3px;
  font-size: 0.72rem;
  color: #5d748d;
  font-weight: 700;
}

.brand-name {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.1;
  font-weight: 800;
}

.brand-tag {
  margin: 2px 0 0;
  font-size: 0.78rem;
  color: var(--muted);
}

.public-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 12px;
}

.public-nav a {
  color: #16446c;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.91rem;
}

.public-nav a[aria-current="page"] {
  color: #07192c;
  border-bottom: 2px solid var(--accent);
}

.public-main {
  padding-top: 18px;
  padding-bottom: 56px;
}

.public-section {
  margin-top: 32px;
}

.hero {
  min-height: 62vh;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 32px;
  align-items: center;
  padding: 42px 0 26px;
}

.hero-copy h1,
.page-hero h1 {
  margin: 0;
  max-width: 880px;
  font-size: clamp(2.15rem, 4vw, 4.7rem);
  line-height: 1;
  letter-spacing: 0;
}

.hero-copy p,
.page-hero p,
.section-lead {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.62;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.primary-link,
.secondary-link,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 15px;
  border-radius: 8px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 800;
  font: inherit;
  cursor: pointer;
}

.legal-notice {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.5;
}

.legal-notice a,
.legal-page a {
  color: var(--accent-strong);
  font-weight: 800;
}

.legal-hero {
  max-width: none;
}

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

.legal-page .card {
  margin: 0;
}

.legal-page h2 {
  margin-top: 0;
}

@media (max-width: 760px) {
  .legal-page {
    grid-template-columns: 1fr;
  }
}

.primary-link {
  background: var(--accent);
  color: #fff;
}

.secondary-link {
  color: var(--accent-strong);
  background: #fff;
  border-color: #9fc4ed;
}

.primary-link:disabled,
.secondary-link:disabled {
  cursor: not-allowed;
  opacity: 0.62;
}

.text-link {
  padding-left: 0;
  padding-right: 0;
  color: var(--accent-strong);
}

.hero-visual,
.workflow-panel,
.pricing-table,
.form-panel {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(16, 53, 92, 0.11);
}

.hero-visual {
  padding: 18px;
}

.visual-kicker {
  margin: 0 0 14px;
}

.screen-bar {
  display: flex;
  gap: 6px;
  margin-bottom: 14px;
}

.screen-bar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #9fc4ed;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.metric-tile {
  min-height: 102px;
  padding: 14px;
  border: 1px solid #cfe0f3;
  border-radius: 8px;
  background: #f8fcff;
}

.metric-tile small {
  display: block;
  color: var(--muted);
  font-weight: 700;
}

.metric-tile strong {
  display: block;
  margin-top: 10px;
  font-size: 1.55rem;
}

.mini-chart {
  height: 54px;
  margin-top: 12px;
  border-radius: 6px;
  background:
    linear-gradient(90deg, rgba(29, 118, 211, 0.18) 12%, transparent 12% 18%, rgba(29, 118, 211, 0.32) 18% 36%, transparent 36% 42%, rgba(29, 118, 211, 0.56) 42% 58%, transparent 58% 64%, rgba(29, 118, 211, 0.74) 64% 100%),
    linear-gradient(180deg, transparent 48%, #b8d4ef 48% 52%, transparent 52%);
}

.section-title {
  margin: 0 0 8px;
  font-size: clamp(1.55rem, 2vw, 2.15rem);
  letter-spacing: 0;
}

.grid-two,
.grid-three,
.grid-four,
.grid-five {
  display: grid;
  gap: 16px;
}

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

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

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

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

.card {
  min-height: 100%;
  padding: 18px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.card h2,
.card h3 {
  margin: 0 0 8px;
  font-size: 1.15rem;
}

.card p,
.card li {
  color: var(--muted);
  line-height: 1.52;
}

.card p {
  margin-bottom: 0;
}

.card ul,
.feature-list {
  margin: 10px 0 0;
  padding-left: 19px;
}

.band {
  padding: 28px;
  background: #10243d;
  color: #fff;
  border-radius: 8px;
}

.band p,
.band li {
  color: #d8e7e1;
}

.workflow-panel {
  padding: 20px;
}

.workflow-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  counter-reset: step;
}

.workflow-steps div {
  position: relative;
  padding: 36px 12px 14px;
  min-height: 118px;
  border: 1px solid #cfe0f3;
  border-radius: 8px;
  background: #f8fcff;
  color: var(--muted);
  line-height: 1.35;
}

.workflow-steps div::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: 10px;
  left: 12px;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
}

.page-hero {
  padding: 42px 0 18px;
}

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

.price-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.price-card strong {
  display: block;
  margin-top: 10px;
  font-size: 2rem;
}

.seat-pricing-section {
  display: grid;
  gap: 20px;
}

.seat-pricing-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.pricing-cadence-toggle {
  display: inline-grid;
  grid-template-columns: repeat(2, minmax(112px, 1fr));
  padding: 5px;
  border: 1px solid #b8d4ef;
  border-radius: 999px;
  background: #edf6ff;
}

.pricing-cadence-toggle button {
  min-height: 42px;
  padding: 8px 18px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #315d89;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.pricing-cadence-toggle button.active {
  background: #1d76d3;
  color: #fff;
  box-shadow: 0 8px 20px rgba(29, 118, 211, 0.22);
}

.seat-pricing-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.seat-price-card {
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.seat-price-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, #1d76d3, #c98a2e);
}

.seat-price-card .pricing-cta {
  margin-top: auto;
  text-align: center;
}

.seat-role-list {
  display: grid;
  gap: 7px;
  margin: 12px 0 20px;
  padding-left: 20px;
  color: #315d89;
}

.seat-price-savings {
  width: fit-content;
  margin: 8px 0;
  padding: 5px 10px;
  border-radius: 999px;
  background: #e8f3ff;
  color: #0c4d94;
  font-size: 0.86rem;
  line-height: 1.2;
  font-weight: 800;
}

.ai-addon-block {
  display: grid;
  gap: 16px;
  margin-top: 18px;
  padding: 24px;
  border: 1px solid #b8d4ef;
  border-radius: 18px;
  background: linear-gradient(135deg, #f8fcff 0%, #eef6ff 68%, #fff8eb 100%);
}

.ai-pricing-grid {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.ai-price-card h3 {
  margin-bottom: 0;
  font-size: 1.25rem;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
}

.pricing-table-shell {
  overflow-x: auto;
}

.pricing-table th,
.pricing-table td {
  padding: 12px;
  border-bottom: 1px solid #d7e5f4;
  text-align: left;
  vertical-align: top;
}

.pricing-table th {
  background: #edf6ff;
}

.result-number {
  display: block;
  color: var(--accent-strong);
  font-size: 2rem;
  font-weight: 800;
}

.public-footer {
  border-top: 1px solid var(--line);
  padding: 30px 0 38px;
  background: #f8fcff;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: start;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-links a {
  color: #315d89;
  text-decoration: none;
  font-weight: 700;
}

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

.form-panel {
  padding: 22px;
}

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

.form-grid label {
  display: block;
  font-weight: 800;
  color: #243f5f;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  margin-top: 6px;
  border: 1px solid #b8d4ef;
  border-radius: 8px;
  padding: 11px 12px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.form-grid textarea {
  min-height: 132px;
  resize: vertical;
}

.form-grid button {
  justify-self: flex-start;
  min-height: 42px;
  padding: 10px 15px;
  border-radius: 8px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.notice {
  border: 1px solid #b8d4ef;
  border-radius: 8px;
  padding: 13px;
  background: #eef7ff;
  color: #16446c;
}

.detail-grid {
  display: grid;
  gap: 12px;
  margin: 14px 0;
}

.detail-item {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fcff;
}

.detail-item small,
.detail-item strong {
  display: block;
}

.detail-item small {
  color: var(--muted);
  font-weight: 800;
}

.detail-item strong {
  margin-top: 4px;
}

.module-spotlight .module-card,
.platform-layer-grid .card,
.ai-card {
  min-height: 178px;
}

.module-category-grid {
  align-items: stretch;
}

.module-group-card {
  border-top: 4px solid var(--accent);
  box-shadow: 0 14px 32px rgba(18, 49, 42, 0.08);
}

.module-group-card h3 {
  color: var(--accent-strong);
}

.module-group-card p {
  margin-top: 0;
}

.module-group-heading {
  margin-bottom: 8px;
  font-size: 1.45rem;
  letter-spacing: -0.02em;
}

.module-group-summary {
  color: var(--muted);
  min-height: 48px;
}

.module-group-list {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  gap: 9px;
}

.module-group-list li {
  padding: 10px 12px;
  border-radius: 12px;
  background: linear-gradient(180deg, #f8fcff 0%, #eef7ff 100%);
  border: 1px solid #d7e5f4;
  color: #16446c;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.3;
}

.roi-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 18px;
}

.roi-panel,
.testimonial-card {
  min-height: 100%;
  padding: 22px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 18px 40px rgba(16, 53, 92, 0.10);
}

.roi-control-grid {
  display: grid;
  gap: 14px;
}

.roi-control-grid label {
  display: grid;
  gap: 8px;
  font-weight: 800;
  color: #243f5f;
}

.roi-control-grid input[type="range"],
.roi-control-grid input[type="number"],
.roi-control-grid select {
  width: 100%;
}

.roi-control-grid input[type="number"],
.roi-control-grid select {
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid #b8d4ef;
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.roi-action-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.roi-action-row .muted {
  margin: 0;
}

.roi-calc-button {
  border: 0;
  cursor: pointer;
}

.roi-output-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.roi-output-card {
  padding: 16px;
  border: 1px solid #d6e5df;
  border-radius: 12px;
  background: linear-gradient(180deg, #ffffff, #f5fbf8);
}

.roi-output-card span,
.roi-output-card strong,
.roi-output-card small {
  display: block;
}

.roi-output-card span {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.roi-output-card strong {
  margin-top: 8px;
  color: var(--accent-strong);
  font-size: 1.85rem;
}

.roi-output-card small {
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.45;
}

.business-cost-card {
  background: linear-gradient(160deg, #103630, #155148);
  color: #fff;
  min-height: 100%;
  padding: 22px;
  border: 1px solid #1f6f62;
  border-radius: 12px;
  box-shadow: 0 18px 40px rgba(18, 49, 42, 0.16);
}

.business-cost-card h2,
.business-cost-card strong,
.business-cost-card p,
.business-cost-card span {
  color: #d8e7e1;
}

.business-cost-card h2 {
  margin: 8px 0 12px;
  font-size: 1.55rem;
}

.business-cost-card > strong {
  display: block;
  color: #fff;
  font-size: 3rem;
  font-weight: 700;
}

.business-cost-unit {
  margin: 6px 0 0;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.business-cost-metrics {
  display: grid;
  gap: 12px;
  margin: 18px 0 22px;
}

.business-cost-metrics article {
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.business-cost-metrics span,
.business-cost-metrics strong {
  display: block;
}

.business-cost-metrics span {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.business-cost-metrics strong {
  margin-top: 8px;
  color: #fff;
  font-size: 1.6rem;
}

.pricing-addon-grid {
  margin-top: 16px;
}

.plan-note {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.5;
}

.module-card h3,
.ai-card h3 {
  color: var(--accent-strong);
}

.module-card p,
.ai-card p {
  margin-bottom: 0;
}

.platform-layer-grid .card {
  border-top: 4px solid var(--accent);
}

.module-card {
  position: relative;
  overflow: hidden;
}

.module-card::after {
  content: "";
  position: absolute;
  inset: auto 16px 14px 16px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), rgba(29, 118, 211, 0));
  opacity: 0.45;
}

.public-error {
  color: var(--danger);
  font-weight: 700;
}

.muted {
  color: var(--muted);
}

.public-zoey-widget {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 25;
  width: min(420px, calc(100vw - 24px));
  pointer-events: none;
}

.public-zoey-fab {
  position: fixed;
  right: 16px;
  bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(12, 77, 148, 0.18);
  background: linear-gradient(160deg, #1d76d3, #0c4d94);
  color: #fff;
  font: inherit;
  font-weight: 800;
  box-shadow: 0 16px 38px rgba(12, 77, 148, 0.25);
  cursor: pointer;
  pointer-events: auto;
}

.public-zoey-fab img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.95);
}

.public-zoey-panel {
  position: fixed;
  right: 16px;
  bottom: 78px;
  width: min(420px, calc(100vw - 24px));
  border: 1px solid #bfd3cc;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 24px 46px rgba(12, 77, 148, 0.22);
  overflow: hidden;
  pointer-events: auto;
}

.public-zoey-treat-fly {
  position: fixed;
  pointer-events: none;
  width: 34px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f5e0a8 0%, #e7cd7e 40%, #d8b45a 100%);
  border-radius: 999px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.18);
  line-height: 1;
  transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
  opacity: 0;
  z-index: 2300;
  color: transparent;
  overflow: hidden;
}

.public-zoey-treat-fly::before,
.public-zoey-treat-fly::after {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f7e1a5 0%, #d8b45a 100%);
  top: 50%;
  transform: translateY(-50%);
}

.public-zoey-treat-fly::before {
  left: 3px;
}

.public-zoey-treat-fly::after {
  right: 3px;
}

.public-zoey-treat-fly-active {
  animation: public-zoey-treat-flight var(--public-zoey-bone-duration, 1300ms) cubic-bezier(0.18, 0.73, 0.26, 1) forwards;
}

@keyframes public-zoey-treat-flight {
  0% {
    opacity: 0;
    transform: translate3d(0, 0, 0) scale(0.4) rotate(-16deg);
  }
  8% {
    opacity: 1;
  }
  24% {
    transform: translate3d(var(--dx-25), calc(var(--dy-10) - 16px), 0) scale(1) rotate(8deg);
  }
  55% {
    transform: translate3d(var(--dx-55), calc(var(--dy-55) - 26px), 0) scale(0.85) rotate(20deg);
  }
  78% {
    transform: translate3d(var(--dx-78), calc(var(--dy-78) - 10px), 0) scale(0.55) rotate(14deg);
  }
  100% {
    transform: translate3d(var(--dx), var(--dy), 0) scale(0.12) rotate(18deg);
    opacity: 0.96;
  }
}

@keyframes public-zoey-chew {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  14% {
    transform: translateY(-3px) rotate(-2.5deg);
  }
  30% {
    transform: translateY(0) rotate(1.8deg) scale(0.99);
  }
  42% {
    transform: translateY(-4px) rotate(-1.8deg) scale(1.02);
  }
  56% {
    transform: translateY(1px) rotate(2.2deg) scale(0.98);
  }
  70% {
    transform: translateY(-2px) rotate(0deg) scale(1.02);
  }
  100% {
    transform: translateY(0) rotate(0deg) scale(1);
  }
}

.public-zoey-chewing {
  animation: public-zoey-chew 1.2s ease-in-out;
}

.public-zoey-panel[hidden] {
  display: none;
}

.public-zoey-panel-header {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px;
  border-bottom: 1px solid #d7e5f4;
  background: linear-gradient(180deg, #f8fcff, #edf6ff);
}

.public-zoey-panel-header img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
}

.public-zoey-panel-header div {
  min-width: 0;
  flex: 1;
}

.public-zoey-name {
  margin: 0;
  font-weight: 800;
  color: #07192c;
}

.public-zoey-greeting {
  margin: 4px 0 0;
  color: #315d89;
  line-height: 1.35;
  font-size: 0.82rem;
}

.public-zoey-close {
  border: 0;
  background: #fff;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid #b8d4ef;
  font-size: 1.1rem;
  cursor: pointer;
}

.public-zoey-panel-body {
  padding: 12px;
}

.public-zoey-progress {
  margin: 0;
  color: #536b84;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.public-zoey-meta-row {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
  margin-bottom: 10px;
}

.public-zoey-select-wrap {
  display: grid;
  gap: 6px;
  margin: 8px 0 10px;
  font-weight: 800;
  color: #315d89;
  font-size: 0.86rem;
}

.public-zoey-select {
  width: 100%;
  border: 1px solid #b8d4ef;
  border-radius: 10px;
  padding: 9px 12px;
  color: #10243d;
  background: #fff;
  font: inherit;
}

#publicZoeyStepTitle {
  margin: 0;
  color: #10243d;
}

.public-zoey-simple-line,
.public-zoey-summary,
.public-zoey-phase {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.45;
}

.public-zoey-summary {
  font-size: 0.92rem;
}

.public-zoey-phase {
  color: #315d89;
  font-weight: 700;
}

.public-zoey-artifact-shell {
  margin-top: 12px;
}

.public-zoey-artifact,
.public-zoey-artifact-wrap {
  margin: 0;
  border: 1px solid #d7e5f4;
  border-radius: 12px;
  overflow: hidden;
  background: #f8fcff;
}

.public-zoey-artifact figcaption,
.public-zoey-artifact-wrap figcaption {
  margin: 0;
  padding: 8px 10px;
  color: #315d89;
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-weight: 800;
  background: #edf6ff;
  border-bottom: 1px solid #d7e5f4;
}

.public-zoey-chart {
  width: 100%;
  display: block;
  margin: 0;
  background: white;
}

.public-zoey-artifact-wrap table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  margin: 0;
}

.public-zoey-artifact-wrap th,
.public-zoey-artifact-wrap td {
  border-top: 1px solid #d7e5f4;
  text-align: left;
  padding: 7px 10px;
  vertical-align: top;
}

.public-zoey-artifact-wrap th {
  background: #edf6ff;
  color: #315d89;
  font-size: 0.82rem;
}

.public-zoey-artifact-wrap td {
  color: #375b82;
  font-size: 0.84rem;
}

.public-zoey-controls {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 12px;
}

.public-zoey-control-btn,
.public-zoey-start-btn {
  border: 1px solid var(--accent);
  border-radius: 10px;
  padding: 10px 12px;
  background: #fff;
  color: var(--accent-strong);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.public-zoey-control-btn:hover,
.public-zoey-start-btn:hover {
  background: #f3f9f6;
}

.public-zoey-start-btn {
  align-items: center;
  display: inline-flex;
  justify-content: center;
  border-radius: 999px;
  min-width: 132px;
  min-height: 34px;
  padding-left: 12px;
  padding-right: 12px;
  background: linear-gradient(180deg, #ffffff 0%, #eef7ff 100%);
  color: var(--accent-strong);
  gap: 6px;
  transition: transform .18s ease, box-shadow .18s ease;
}

.public-zoey-start-btn::before {
  content: "\1F9B4";
}

.public-zoey-start-btn:hover,
.public-zoey-start-btn:focus-visible {
  transform: translateY(-1px);
  background: #ffffff;
  border-color: #1d76d3;
  box-shadow: 0 8px 20px rgba(29, 118, 211, 0.18);
}

@media (max-width: 820px) {
  .public-zoey-widget {
    width: calc(100vw - 16px);
    right: 8px;
    bottom: 10px;
  }

  .public-zoey-fab {
    right: 8px;
    bottom: 10px;
  }

  .public-zoey-panel {
    right: 8px;
    bottom: 70px;
    width: calc(100vw - 16px);
  }
}

@media (max-width: 980px) {
  .hero,
  .grid-two,
  .grid-three,
  .grid-four,
  .grid-five,
  .pricing-grid,
  .roi-shell,
  .roi-output-grid {
    grid-template-columns: 1fr;
  }

  .seat-pricing-header {
    align-items: stretch;
    flex-direction: column;
  }

  .pricing-cadence-toggle {
    width: 100%;
  }

  .roi-action-row {
    align-items: stretch;
  }

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

@media (max-width: 760px) {
  .public-header-inner {
    align-items: flex-start;
    flex-direction: column;
    padding-top: 12px;
    padding-bottom: 12px;
  }

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

  .hero {
    min-height: auto;
    padding-top: 24px;
  }

  .metric-grid,
  .workflow-steps,
  .footer-inner {
    grid-template-columns: 1fr;
  }
}


