html {
  scroll-behavior: smooth;
}

.homepage-shell {
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-body);
  font-size: var(--app-font-size);
}

.homepage-shell a {
  text-decoration: none;
}

.homepage-container {
  width: 100%;
  max-width: 104rem;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.homepage-card {
  border: 1px solid var(--border);
  background: color-mix(in srgb, var(--card) 96%, var(--muted));
  box-shadow: 0 18px 48px rgba(47, 45, 42, 0.06);
  border-radius: var(--radius);
}

.homepage-card--dark {
  background: rgba(255, 255, 255, 0.96);
}

.section-eyebrow {
  color: var(--primary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-eyebrow--light {
  color: color-mix(in srgb, var(--primary) 20%, #ffffff);
  text-shadow: 0 1px 10px rgba(7, 26, 47, 0.18);
}

.section-title {
  margin-top: 1rem;
  color: var(--foreground);
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 4.2vw, 3.5rem);
  font-weight: var(--font-weight-medium);
  letter-spacing: 0;
  line-height: 1.05;
}

.section-title--light {
  color: #f7fbff;
}

.section-copy {
  margin-top: 1rem;
  max-width: 48rem;
  color: var(--muted-foreground);
  font-size: clamp(1rem, 1.2vw, 1.25rem);
  line-height: 1.75;
}

.section-copy--emphasis {
  color: var(--foreground);
  font-weight: 600;
}

.section-copy--light {
  color: rgba(247, 251, 255, 0.74);
}

/* Reveal-on-scroll: only hide sections once JS has confirmed it can reveal them.
   Without JS (or if the IntersectionObserver never fires) content stays visible
   instead of being stuck permanently at opacity:0. The landing page script
   adds .js-reveal-ready on the page root once JS mounts. */
.js-reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.85s ease, transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--lp-delay, 0ms);
}

.js-reveal-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* No reduced-motion override for the scroll reveal — deliberate landing-page
   exception (see a11y.css): the marketing surface animates for everyone. */

.pointer-page {
  position: relative;
  background: var(--background);
}

.pointer-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--sidebar) 90%, transparent);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(18px);
}

.pointer-header__inner {
  min-height: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-block: 0;
}

.pointer-brand {
  display: flex;
  align-items: center;
  color: var(--foreground);
}

.pointer-brand__mark {
  display: block;
  height: 2.5rem;
  width: 14.75rem;
}

.pointer-brand__svg {
  display: block;
  height: 100%;
  width: 100%;
}

.pointer-top-nav {
  margin-left: 1.5rem;
  display: none;
  align-items: center;
  gap: 0.5rem;
}

.pointer-top-nav__link {
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  padding: 0.5rem 1rem;
  color: var(--muted-foreground);
  cursor: pointer;
  font-size: 0.94rem;
  font-weight: 600;
  transition: background 0.2s ease, color 0.2s ease;
}

.pointer-top-nav__link:hover {
  color: var(--foreground);
  background: color-mix(in srgb, var(--primary) 8%, transparent);
}

.pointer-header__actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.pointer-header .pointer-header__actions {
  flex: 1;
  justify-content: flex-end;
}

.pointer-signin-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--card) 76%, transparent);
  color: var(--foreground);
  padding: 0.62rem 1rem;
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.25;
  min-height: 2.375rem;
  transition: transform 0.2s ease, color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.pointer-signin-link:hover {
  transform: translateY(-1px);
  border-color: var(--primary);
  background: var(--muted);
  color: var(--foreground);
}

.pointer-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  border: 1px solid transparent;
  padding: 0.82rem 1.5rem;
  font-size: var(--text-sm, 0.98rem);
  font-weight: 700;
  line-height: 1.25;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.pointer-btn:hover {
  transform: translateY(-1px);
}

.pointer-btn--solid {
  background: var(--primary);
  color: var(--primary-foreground);
  border-color: var(--primary);
}

.pointer-btn--solid:hover {
  background: var(--theme-accent-hover, var(--primary));
  opacity: 1;
}

.pointer-btn--ghost {
  border-color: var(--border);
  background: color-mix(in srgb, var(--card) 82%, transparent);
  color: var(--foreground);
}

.pointer-btn--ghost-dark {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.pointer-btn--ghost-dark:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.7);
}

.pointer-btn--compact {
  padding: 0.7rem 1.15rem;
}

.pointer-btn--header.pointer-btn--solid {
  background: var(--primary);
  border-color: var(--primary);
  min-height: 2.375rem;
  padding: 0.62rem 1rem;
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.25;
}

/* ---------------------------------------------------------------------------
   Login page brand panel — the left split of /login. A warm off-white surface
   (#F4F3F0) with dark-ink content, so sign-in reads clean and light. Hidden
   below lg, so mobile never loads this surface.
--------------------------------------------------------------------------- */
.login-brand-panel {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #F4F3F0;
  padding: clamp(3rem, 6vh, 5rem) clamp(2.5rem, 5vw, 4.5rem);
}

.login-brand-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  /* Faint cool/warm tints for a touch of depth — kept low so the surface stays
     an even off-white with no dark smudges. */
  background:
    radial-gradient(circle at 12% 8%, rgba(0, 91, 150, 0.06), transparent 40%),
    radial-gradient(circle at 85% 100%, rgba(7, 26, 47, 0.05), transparent 55%);
}

.login-brand-panel__inner {
  width: min(100%, 32rem);
  margin-inline: auto;
}

/* Sized up one tier vs. the landing hero defaults: public-sector clients are
   commonly on 1366x768 / 1080p displays where the standard sizes read small. */
.login-brand-panel .section-eyebrow {
  font-size: 0.8rem;
}

/* The eyebrow ships as the --light (on-dark) variant; re-tint it to the
   dark-ink-on-light palette used elsewhere in the product. */
.login-brand-panel .section-eyebrow--light {
  color: #1d5d8f;
  text-shadow: none;
}

.login-brand-panel__title {
  margin-top: 0.9rem;
  color: #071a2f;
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 3.6vw, 3.9rem);
  font-weight: 650;
  letter-spacing: -0.045em;
  line-height: 1.04;
}

.login-brand-panel__copy {
  margin-top: 1.1rem;
  max-width: 30rem;
  color: rgba(7, 26, 47, 0.76);
  font-size: var(--text-lg);
  line-height: 1.65;
}

.login-brand-panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2.3rem;
}

.login-brand-panel__actions .pointer-btn {
  padding: 0.9rem 1.7rem;
  font-size: var(--text-base);
}

/* The login lockup is absolutely positioned over the brand panel at desktop
   widths — re-tint the brand tokens so it stays legible on the off-white panel.
   Below lg (1024px) the panel is hidden and the lockup keeps theme colors. */
@media (min-width: 1024px) {
  .login-page .pointer-brand {
    --foreground: #071a2f;
    --muted-foreground: #3f5566;
    --card: #ffffff;
    --primary: #1d5d8f;
    --brand-ink: #071a2f;
    --brand-accent: #1d5d8f;
  }
}

/* "Schedule a demo" ships as the --ghost-dark (on-dark) button; re-tint it for
   the light panel so its border/text read against the off-white surface. */
.login-brand-panel .pointer-btn--ghost-dark {
  border-color: rgba(7, 26, 47, 0.22);
  background: rgba(7, 26, 47, 0.03);
  color: #071a2f;
}

.login-brand-panel .pointer-btn--ghost-dark:hover {
  background: rgba(7, 26, 47, 0.06);
  border-color: rgba(7, 26, 47, 0.35);
}

.auth-page {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 16%, color-mix(in srgb, var(--primary) 10%, transparent), transparent 28rem),
    radial-gradient(circle at 82% 8%, color-mix(in srgb, var(--muted-foreground) 12%, transparent), transparent 28rem),
    linear-gradient(135deg, var(--muted) 0%, var(--background) 100%);
  color: var(--foreground);
  font-family: var(--font-body);
}

.auth-page__grain {
  position: absolute;
  inset: 0;
  opacity: 0.55;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(7, 26, 47, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 26, 47, 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at 50% 20%, black, transparent 72%);
}

.auth-page__shell {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 100vh;
  margin-inline: auto;
  padding: 0;
}

.auth-page__header {
  position: absolute;
  top: 0.5rem;
  left: clamp(1.5rem, 4vw, 4rem);
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
}

.auth-brand {
  display: inline-flex;
  align-items: center;
  color: #071a2f;
  text-decoration: none;
}

.auth-brand__mark {
  display: block;
  width: 14.5rem;
  height: 2.5rem;
}

.auth-brand__svg {
  display: block;
  width: 100%;
  height: 100%;
}

.auth-page__switcher {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  border: 1px solid rgba(201, 216, 230, 0.78);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  padding: 0.42rem 0.5rem 0.42rem 1rem;
  box-shadow: 0 12px 28px rgba(7, 26, 47, 0.06);
  backdrop-filter: blur(16px);
}

.auth-page__switcher span {
  color: rgba(7, 26, 47, 0.58);
  font-size: 0.9rem;
  font-weight: 600;
}

.auth-page__switcher a {
  border-radius: 999px;
  background: #071a2f;
  color: #ffffff;
  padding: 0.55rem 0.85rem;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease;
}

.auth-page__switcher a:hover {
  transform: translateY(-1px);
  background: #005b96;
}

.auth-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: stretch;
  gap: 0;
  min-height: 100vh;
  padding-top: 0;
}

.auth-card {
  width: min(100%, 31rem);
  max-width: 31rem;
  min-height: auto;
  align-self: center;
  justify-self: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
  margin: clamp(5rem, 10vh, 7rem) clamp(1.25rem, 5vw, 5rem) clamp(2rem, 5vh, 4rem);
  box-shadow: none;
  backdrop-filter: none;
}

.auth-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid rgba(29, 93, 143, 0.16);
  border-radius: 999px;
  background: rgba(29, 93, 143, 0.08);
  color: #1d5d8f;
  padding: 0.45rem 0.75rem;
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.auth-card__heading {
  margin-top: 1.6rem;
}

.auth-card__heading p {
  color: #1d5d8f;
  font-size: 0.92rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.auth-card__heading h1 {
  margin-top: 0.5rem;
  color: #071a2f;
  font-size: clamp(2rem, 3vw, 2.85rem);
  font-weight: 700;
  letter-spacing: -0.052em;
  line-height: 1;
}

.auth-card__heading span {
  display: block;
  margin-top: 1rem;
  color: rgba(7, 26, 47, 0.66);
  font-size: 1rem;
  line-height: 1.65;
}

.auth-social-options {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.55rem;
}

.auth-social-button {
  display: inline-flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3.35rem;
  border: 1px solid rgba(201, 216, 230, 0.92);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  color: #071a2f;
  cursor: pointer;
  font-size: 0.98rem;
  font-weight: 720;
  box-shadow: 0 10px 24px rgba(7, 26, 47, 0.04);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.auth-social-button:hover {
  transform: translateY(-1px);
  border-color: rgba(29, 93, 143, 0.28);
  box-shadow: 0 14px 30px rgba(7, 26, 47, 0.08);
}

.auth-social-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 999px;
  background: transparent;
  color: #123a63;
  font-size: 0.76rem;
  font-weight: 850;
  line-height: 1;
}

.auth-social-mark svg {
  display: block;
  width: 1.15rem;
  height: 1.15rem;
}

.auth-social-mark--phone { color: #0f766e; }
.auth-social-mark--email { color: #1d5d8f; }

.auth-sso-button {
  display: inline-flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 3.35rem;
  margin-top: 0.85rem;
  border: 1px solid rgba(201, 216, 230, 0.92);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  color: #071a2f;
  cursor: pointer;
  font-size: 0.98rem;
  font-weight: 720;
  box-shadow: 0 12px 28px rgba(7, 26, 47, 0.05);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.auth-sso-button:hover {
  transform: translateY(-1px);
  border-color: rgba(29, 93, 143, 0.28);
  box-shadow: 0 16px 34px rgba(7, 26, 47, 0.08);
}

.auth-social-button:focus-visible,
.auth-sso-button:focus-visible,
.auth-form__meta button:focus-visible,
.auth-submit:focus-visible {
  outline: 3px solid rgba(110, 193, 228, 0.42);
  outline-offset: 3px;
}

.auth-action-feedback {
  margin-top: 0.85rem;
  border: 1px solid rgba(29, 93, 143, 0.18);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(29, 93, 143, 0.08), rgba(110, 193, 228, 0.12));
  color: #123a63;
  padding: 0.75rem 0.85rem;
  font-size: 0.86rem;
  font-weight: 650;
  line-height: 1.45;
}

.auth-provider-prompt {
  display: grid;
  gap: 0.85rem;
  margin-top: 0.95rem;
  border: 1px solid rgba(29, 93, 143, 0.16);
  border-radius: 20px;
  background: rgba(247, 251, 255, 0.86);
  padding: 1rem;
  box-shadow: 0 16px 38px rgba(7, 26, 47, 0.07);
}

.auth-provider-prompt__copy {
  display: grid;
  gap: 0.35rem;
}

.auth-provider-prompt__copy p {
  color: #1d5d8f;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.auth-provider-prompt__copy strong {
  color: #071a2f;
  font-size: 1rem;
  font-weight: 800;
}

.auth-provider-prompt__copy span {
  color: rgba(7, 26, 47, 0.62);
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.5;
}

.auth-provider-prompt__field {
  display: grid;
  gap: 0.45rem;
}

.auth-provider-prompt__field span {
  color: rgba(7, 26, 47, 0.72);
  font-size: 0.84rem;
  font-weight: 750;
}

.auth-provider-prompt__field input {
  min-height: 3rem;
  width: 100%;
  border: 1px solid rgba(201, 216, 230, 0.95);
  border-radius: 14px;
  background: #ffffff;
  color: #071a2f;
  padding: 0 0.9rem;
  font-size: 0.96rem;
  font-weight: 650;
  outline: 0;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.auth-provider-prompt__field input:focus {
  border-color: rgba(29, 93, 143, 0.55);
  box-shadow: 0 0 0 4px rgba(29, 93, 143, 0.1);
}

.auth-provider-prompt__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3rem;
  border: 0;
  border-radius: 14px;
  background: #071a2f;
  color: #ffffff;
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease;
}

.auth-provider-prompt__submit:hover {
  transform: translateY(-1px);
  background: #005b96;
}

.auth-provider-prompt__submit:focus-visible {
  outline: 3px solid rgba(110, 193, 228, 0.42);
  outline-offset: 3px;
}

.auth-divider {
  position: relative;
  display: flex;
  justify-content: center;
  margin-top: 1.35rem;
  color: rgba(7, 26, 47, 0.46);
  font-size: 0.76rem;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.auth-divider::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: rgba(201, 216, 230, 0.82);
  display: none;
}

.auth-divider span {
  position: relative;
  z-index: 1;
  background: transparent;
  padding-inline: 0;
}

.auth-form {
  display: grid;
  gap: 1rem;
  margin-top: 1.35rem;
}

.auth-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.auth-field {
  display: grid;
  gap: 0.45rem;
}

.auth-field > span {
  color: rgba(7, 26, 47, 0.72);
  font-size: 0.88rem;
  font-weight: 700;
}

.auth-input-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 3.35rem;
  border: 1px solid rgba(201, 216, 230, 0.95);
  border-radius: 16px;
  background: rgba(247, 251, 255, 0.78);
  padding-inline: 0.95rem;
  color: rgba(7, 26, 47, 0.48);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.auth-input-wrap:focus-within {
  border-color: rgba(29, 93, 143, 0.55);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(29, 93, 143, 0.1);
}

.auth-input-wrap input {
  min-width: 0;
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  color: #071a2f;
  font-size: 0.98rem;
  font-weight: 600;
}

.auth-password-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(7, 26, 47, 0.48);
  cursor: pointer;
  padding: 0.25rem;
}

.auth-form__meta,
.auth-form__assurance {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(7, 26, 47, 0.58);
  font-size: 0.88rem;
}

.auth-form__meta label,
.auth-form__assurance {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 650;
}

.auth-form__meta input {
  width: 1rem;
  height: 1rem;
  accent-color: #1d5d8f;
}

.auth-form__meta button,
.auth-form__meta a {
  border: 0;
  background: transparent;
  color: #1d5d8f;
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 750;
  text-decoration: none;
}

.auth-form__assurance {
  justify-content: flex-start;
  border: 1px solid rgba(29, 93, 143, 0.12);
  border-radius: 14px;
  background: rgba(29, 93, 143, 0.06);
  padding: 0.75rem 0.85rem;
  color: rgba(7, 26, 47, 0.7);
}

.auth-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 3.45rem;
  border: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, #071a2f 0%, #123a63 52%, #005b96 100%);
  color: #ffffff;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 760;
  box-shadow: 0 16px 34px rgba(0, 91, 150, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.auth-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(0, 91, 150, 0.3);
}

.auth-demo-note {
  display: grid;
  gap: 0.45rem;
  margin-top: 1.25rem;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
}

.auth-demo-note span {
  color: rgba(7, 26, 47, 0.54);
  font-size: 0.72rem;
  font-weight: 760;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.auth-demo-note code {
  color: #071a2f;
  font-family: var(--font-body);
  font-size: 0.84rem;
  font-weight: 650;
  white-space: normal;
  word-break: break-word;
}

.auth-demo-note a {
  color: #1d5d8f;
  font-size: 0.92rem;
  font-weight: 750;
  text-decoration: none;
}

.auth-demo-note a:hover {
  color: #071a2f;
}

.auth-cta-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 33rem);
  justify-self: end;
  color: #071a2f;
}

.auth-cta-panel__eyebrow {
  color: #1d5d8f;
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.auth-cta-panel h2 {
  max-width: 12ch;
  margin-top: 0.85rem;
  color: #071a2f;
  font-size: clamp(2.4rem, 4.8vw, 4.6rem);
  font-weight: 680;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.auth-cta-panel > span {
  display: block;
  max-width: 30rem;
  margin-top: 1.2rem;
  color: rgba(7, 26, 47, 0.68);
  font-size: 1.05rem;
  line-height: 1.75;
}

.auth-cta-panel__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 3.35rem;
  margin-top: 2rem;
  border-radius: 999px;
  background: #071a2f;
  color: #ffffff;
  padding-inline: 1.35rem;
  font-size: 0.98rem;
  font-weight: 760;
  text-decoration: none;
  box-shadow: 0 16px 34px rgba(7, 26, 47, 0.16);
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.auth-cta-panel__link:hover {
  transform: translateY(-2px);
  background: #005b96;
  box-shadow: 0 20px 42px rgba(0, 91, 150, 0.22);
}

.auth-cta-panel__list {
  display: grid;
  gap: 0.85rem;
  margin-top: 2rem;
}

.auth-cta-panel__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(7, 26, 47, 0.72);
  font-size: 0.94rem;
  font-weight: 650;
}

.auth-cta-panel__item span {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 999px;
  background: rgba(29, 93, 143, 0.08);
  color: #1d5d8f;
}

.auth-cta-panel__item strong {
  font-weight: 650;
}

.auth-visual-panel {
  position: relative;
  min-height: 45rem;
  height: 100%;
  border: 1px solid rgba(223, 244, 255, 0.16);
  border-radius: 36px;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 10%, rgba(110, 193, 228, 0.34), transparent 22rem),
    radial-gradient(circle at 90% 16%, rgba(0, 91, 150, 0.42), transparent 24rem),
    linear-gradient(135deg, #071a2f 0%, #0c2744 48%, #005b96 100%);
  box-shadow: 0 36px 120px rgba(7, 26, 47, 0.28);
  padding: clamp(1.5rem, 3vw, 2.2rem);
  isolation: isolate;
}

.auth-visual-panel--split {
  min-height: 100vh;
  height: auto;
  margin-top: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: clamp(2rem, 4vw, 4rem) clamp(1.5rem, 4vw, 4rem);
}

.auth-visual-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.34;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 52px 52px;
  pointer-events: none;
}

.auth-visual-panel__orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(18px);
  opacity: 0.8;
  pointer-events: none;
}

.auth-visual-panel__orb--one {
  width: 19rem;
  height: 19rem;
  top: -5rem;
  right: -5.5rem;
  background: rgba(110, 193, 228, 0.34);
}

.auth-visual-panel__orb--two {
  width: 16rem;
  height: 16rem;
  left: -4rem;
  bottom: 8rem;
  background: rgba(29, 93, 143, 0.62);
}

.auth-visual-panel__topline {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(247, 251, 255, 0.7);
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.auth-live-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid rgba(187, 247, 208, 0.28);
  border-radius: 999px;
  background: rgba(22, 163, 74, 0.13);
  color: #dcfce7;
  padding: 0.5rem 0.7rem;
}

.auth-live-pill span {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: #86efac;
  box-shadow: 0 0 0 5px rgba(134, 239, 172, 0.14);
}

.auth-visual-panel__copy {
  position: relative;
  z-index: 1;
  max-width: 42rem;
  margin-top: clamp(2rem, 5vw, 4.2rem);
  color: #ffffff;
}

.auth-visual-panel__copy p,
.auth-next-card > p {
  color: rgba(223, 244, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.auth-visual-panel__copy h2 {
  max-width: 16ch;
  margin-top: 0.85rem;
  color: #f7fbff;
  font-size: clamp(2rem, 3.6vw, 3.8rem);
  font-weight: 680;
  letter-spacing: -0.065em;
  line-height: 1;
}

.auth-visual-panel__copy > span {
  display: block;
  max-width: 34rem;
  margin-top: 1.2rem;
  color: rgba(247, 251, 255, 0.74);
  font-size: 1.04rem;
  line-height: 1.75;
}

.auth-workspace-preview {
  position: relative;
  z-index: 1;
  width: min(92%, 34rem);
  margin: clamp(2rem, 5vw, 3.5rem) 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 26px;
  background: rgba(247, 251, 255, 0.1);
  padding: 1rem;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(22px);
}

.auth-workspace-preview__bar {
  display: flex;
  gap: 0.42rem;
  padding: 0.2rem 0.2rem 0.95rem;
}

.auth-workspace-preview__bar span {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 999px;
  background: rgba(247, 251, 255, 0.34);
}

.auth-workspace-preview__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  padding: 1rem;
}

.auth-workspace-preview__header p,
.auth-risk-grid span,
.auth-signal-list__item p {
  color: rgba(247, 251, 255, 0.58);
  font-size: 0.76rem;
  font-weight: 680;
}

.auth-workspace-preview__header strong {
  display: block;
  margin-top: 0.4rem;
  color: #ffffff;
  font-size: 1.08rem;
  font-weight: 760;
}

.auth-workspace-preview__header > span,
.auth-upcoming-pill {
  border: 1px solid rgba(110, 193, 228, 0.24);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.22), rgba(110, 193, 228, 0.14));
  color: #dcfce7;
  padding: 0.5rem 0.7rem;
  font-size: 0.76rem;
  font-weight: 760;
  white-space: nowrap;
}

.auth-risk-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.auth-risk-grid article {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  padding: 0.95rem;
}

.auth-risk-grid__item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% 12%, var(--snapshot-glow, rgba(223, 244, 255, 0.16)), transparent 58%);
  pointer-events: none;
}

.auth-risk-grid__item span,
.auth-risk-grid__item strong {
  position: relative;
  z-index: 1;
}

.auth-risk-grid__item--active {
  --snapshot-glow: rgba(110, 193, 228, 0.34);
  border-color: rgba(110, 193, 228, 0.34);
  background: linear-gradient(145deg, rgba(110, 193, 228, 0.18), rgba(255, 255, 255, 0.07));
}

.auth-risk-grid__item--on-time {
  --snapshot-glow: rgba(52, 211, 153, 0.34);
  border-color: rgba(52, 211, 153, 0.34);
  background: linear-gradient(145deg, rgba(34, 197, 94, 0.18), rgba(255, 255, 255, 0.07));
}

.auth-risk-grid__item--delayed {
  --snapshot-glow: rgba(251, 113, 133, 0.34);
  border-color: rgba(251, 113, 133, 0.36);
  background: linear-gradient(145deg, rgba(244, 63, 94, 0.18), rgba(255, 255, 255, 0.07));
}

.auth-risk-grid strong {
  display: block;
  margin-top: 0.4rem;
  color: #ffffff;
  font-size: 1.65rem;
  font-weight: 760;
  letter-spacing: -0.045em;
}

.auth-risk-grid__item--active strong { color: #dff4ff; }
.auth-risk-grid__item--on-time strong { color: #bbf7d0; }
.auth-risk-grid__item--delayed strong { color: #fecdd3; }

.auth-signal-list {
  display: grid;
  gap: 0.65rem;
  margin-top: 0.75rem;
}

.auth-signal-list__item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  padding: 0.75rem;
}

.auth-signal-list__item > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 999px;
  background: rgba(110, 193, 228, 0.14);
  color: #dff4ff;
  font-size: 0.72rem;
  font-weight: 760;
}

.auth-signal-list__item--cost .auth-signal-list__number {
  border: 1px solid rgba(251, 191, 36, 0.34);
  background: rgba(251, 191, 36, 0.16);
  color: #fde68a;
}

.auth-signal-list__item--stable .auth-signal-list__number {
  border: 1px solid rgba(52, 211, 153, 0.34);
  background: rgba(34, 197, 94, 0.16);
  color: #bbf7d0;
}

.auth-signal-list__item--load .auth-signal-list__number {
  border: 1px solid rgba(110, 193, 228, 0.34);
  background: rgba(110, 193, 228, 0.16);
  color: #dff4ff;
}

.auth-signal-list__item p {
  color: rgba(247, 251, 255, 0.82);
}

.auth-signal-list__item strong {
  display: block;
  margin-bottom: 0.14rem;
  color: #dff4ff;
  font-size: 0.78rem;
  font-weight: 760;
}

.auth-signal-list__item em,
.auth-signal-list__status {
  border: 1px solid rgba(223, 244, 255, 0.16);
  border-radius: 999px;
  background: rgba(223, 244, 255, 0.1);
  color: #dff4ff;
  padding: 0.28rem 0.52rem;
  font-size: 0.76rem;
  font-weight: 760;
  font-style: normal;
}

.auth-signal-list__status--cost {
  border-color: rgba(251, 191, 36, 0.32);
  background: rgba(251, 191, 36, 0.14);
  color: #fde68a;
}

.auth-signal-list__status--stable {
  border-color: rgba(52, 211, 153, 0.32);
  background: rgba(34, 197, 94, 0.16);
  color: #bbf7d0;
}

.auth-signal-list__status--load {
  border-color: rgba(110, 193, 228, 0.34);
  background: rgba(110, 193, 228, 0.14);
  color: #dff4ff;
}

.auth-next-card {
  position: relative;
  z-index: 1;
  width: min(88%, 28rem);
  margin: -1.5rem auto 0 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  background: rgba(7, 26, 47, 0.42);
  color: #ffffff;
  padding: 1.2rem;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.auth-step-list {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.1rem;
}

.auth-step-list__item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.9rem;
  font-weight: 650;
}

.auth-step-list__icon {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 999px;
  background: rgba(52, 211, 153, 0.14);
  color: #bbf7d0;
}

.auth-step-list__item strong {
  display: flex;
  min-width: 0;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.24rem 0.45rem;
  font-size: 0.9rem;
  font-weight: 650;
  line-height: 1.35;
}

.auth-step-list__label {
  color: rgba(255, 255, 255, 0.92);
}

.auth-step-list__value {
  border: 1px solid var(--step-border, rgba(223, 244, 255, 0.18));
  border-radius: 999px;
  background: var(--step-bg, rgba(223, 244, 255, 0.1));
  color: var(--step-color, #dff4ff);
  padding: 0.08rem 0.42rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.auth-step-list__detail {
  flex-basis: 100%;
  color: rgba(223, 244, 255, 0.66);
  font-size: 0.82rem;
  font-weight: 620;
}

.auth-step-list__copy--active {
  --step-border: rgba(110, 193, 228, 0.34);
  --step-bg: rgba(110, 193, 228, 0.14);
  --step-color: #dff4ff;
}

.auth-step-list__copy--cost {
  --step-border: rgba(251, 191, 36, 0.34);
  --step-bg: rgba(251, 191, 36, 0.14);
  --step-color: #fde68a;
}

.auth-step-list__copy--on-time,
.auth-step-list__copy--stable {
  --step-border: rgba(52, 211, 153, 0.34);
  --step-bg: rgba(34, 197, 94, 0.14);
  --step-color: #bbf7d0;
}

.auth-step-list__copy--load {
  --step-border: rgba(129, 140, 248, 0.34);
  --step-bg: rgba(99, 102, 241, 0.14);
  --step-color: #c7d2fe;
}

.pointer-hero-surface {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #005b96;
}

.pointer-hero-surface::before {
  content: '';
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 65%;
  background: radial-gradient(circle at 15% 10%, rgba(110, 193, 228, 0.35), transparent 30%), radial-gradient(circle at 80% 15%, rgba(255,255,255,0.14), transparent 35%);
  pointer-events: none;
}

.pointer-hero-surface > * {
  position: relative;
  z-index: 1;
}

.pointer-hero {
  position: relative;
  display: grid;
  min-height: calc(100vh - 48px);
  align-items: center;
  gap: 3rem;
  padding-block: 3.5rem 5rem;
}

.hero-copy-block {
  position: relative;
  z-index: 20;
}

.pointer-hero__title {
  margin-top: 0.5rem;
  max-width: 11.5ch;
  font-size: clamp(3.25rem, 8vw, 6rem);
  font-weight: 680;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.pointer-hero__line {
  display: inline;
}

.pointer-hero__line--a::after {
  content: ' ';
}

.pointer-hero__line--c {
  display: block;
}

.pointer-hero__title--light {
  color: #f7fbff;
  text-shadow: 0 8px 30px rgba(7, 26, 47, 0.22);
}

.pointer-hero__copy {
  margin-top: 1.5rem;
  max-width: 36rem;
  color: rgba(247, 251, 255, 0.92);
  font-size: clamp(1.08rem, 1.45vw, 1.32rem);
  line-height: 1.65;
}

.pointer-hero__actions {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-scene-shell {
  position: relative;
  min-height: clamp(30rem, calc(72vh - 4rem), 42rem);
  overflow: visible;
}

.pointer-scroll-cue {
  position: absolute;
  left: 50%;
  bottom: clamp(2rem, 7vh, 5rem);
  z-index: 10;
  transform: translateX(-50%);
  pointer-events: none;
}

.pointer-scroll-cue__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(223, 244, 255, 0.32);
  border-radius: 999px;
  background: rgba(247, 251, 255, 0.08);
  color: rgba(247, 251, 255, 0.92);
  font-size: 1.4rem;
  animation: pointerScrollPulse 1.4s ease-in-out infinite;
  backdrop-filter: blur(8px);
  pointer-events: auto;
  cursor: pointer;
}

@keyframes pointerScrollPulse {
  0%, 100% { transform: translateY(0); opacity: 0.72; box-shadow: 0 0 0 0 rgba(223, 244, 255, 0.16); }
  50% { transform: translateY(7px); opacity: 1; box-shadow: 0 0 18px 0 rgba(223, 244, 255, 0.22); }
}

.pointer-trust-strip {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(110, 193, 228, 0.12);
  border-bottom: 1px solid rgba(214, 222, 230, 0.95);
  background: radial-gradient(circle at 12% 18%, rgba(110, 193, 228, 0.18), transparent 22%), radial-gradient(circle at 88% 24%, rgba(29, 93, 143, 0.12), transparent 24%), linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.pointer-trust-strip__inner {
  position: relative;
  z-index: 1;
  padding-block: 1.35rem;
  color: #123a63;
}

.pointer-trust-strip__copy-block {
  max-width: 56rem;
  margin-inline: auto;
  text-align: center;
}

.pointer-trust-strip__eyebrow {
  color: #071a2f;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.pointer-trust-marquee {
  overflow: hidden;
  margin-top: 0.9rem;
}

.pointer-trust-marquee__track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 3.5rem;
  animation: pointerTrustScroll 42s linear infinite;
}

.pointer-trust-marquee:hover .pointer-trust-marquee__track {
  animation-play-state: paused;
}

.pointer-trust-marquee__card {
  position: relative;
  flex: 0 0 auto;
  display: flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.25rem;
  text-align: center;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.pointer-trust-marquee__card:hover {
  transform: translateY(-2px);
  opacity: 0.86;
}

.pointer-trust-marquee__logo {
  width: var(--logo-width, 8.625rem);
  max-width: none;
  max-height: 36px;
  height: auto;
  object-fit: contain;
}

.pointer-trust-marquee__logo--brand-blue {
  filter: brightness(0) saturate(100%) invert(22%) sepia(76%) saturate(1646%) hue-rotate(178deg) brightness(93%) contrast(101%);
}

.pointer-trust-marquee__sr {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@keyframes pointerTrustScroll {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 1.75rem)); }
}

.pointer-section-spacing {
  padding-block: clamp(4rem, 8vw, 7rem);
}

.pointer-section-shell {
  background: #ffffff;
  border-radius: 40px;
}

.pointer-section-shell--mist {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.96));
  padding-inline: max(1.5rem, 3vw);
}

.pointer-fireside-section {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(214, 222, 230, 0.86);
  background:
    radial-gradient(circle at 12% 12%, rgba(110, 193, 228, 0.16), transparent 24rem),
    radial-gradient(circle at 92% 22%, rgba(29, 93, 143, 0.12), transparent 26rem),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.pointer-fireside-section__grid {
  display: grid;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.pointer-fireside-section__copy .section-title {
  max-width: 12ch;
}

.pointer-fireside-section__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.pointer-fireside-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(201, 216, 230, 0.92);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(237, 244, 251, 0.9)),
    #ffffff;
  padding: clamp(1.2rem, 2.5vw, 2rem);
  box-shadow: 0 28px 70px rgba(7, 26, 47, 0.12);
}

.pointer-fireside-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(29, 93, 143, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29, 93, 143, 0.055) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at 72% 18%, black, transparent 72%);
  pointer-events: none;
}

.pointer-fireside-panel > * {
  position: relative;
  z-index: 1;
}

.pointer-fireside-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid rgba(201, 216, 230, 0.88);
  padding-bottom: 1rem;
}

.pointer-fireside-panel__header span,
.pointer-fireside-panel__agenda span,
.pointer-research-card > span {
  color: #1d5d8f;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.pointer-fireside-panel__header strong {
  color: #071a2f;
  font-size: 0.92rem;
  font-weight: 760;
  text-align: right;
}

.pointer-fireside-panel__speakers {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.25rem;
}

.pointer-fireside-panel__speakers article {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  column-gap: 0.9rem;
  border: 1px solid rgba(201, 216, 230, 0.76);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  padding: 0.9rem;
}

.pointer-fireside-panel__speakers article > span {
  grid-row: span 2;
  display: inline-flex;
  width: 2.8rem;
  height: 2.8rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(135deg, #071a2f, #1d5d8f);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 800;
}

.pointer-fireside-panel__speakers strong {
  color: #071a2f;
  font-size: 1rem;
  font-weight: 760;
}

.pointer-fireside-panel__speakers small,
.pointer-fireside-panel__agenda p,
.pointer-research-card p,
.pointer-research-card__meta em {
  color: rgba(7, 26, 47, 0.66);
  line-height: 1.55;
}

.pointer-fireside-panel__agenda {
  margin-top: 1rem;
  border-radius: 18px;
  background: rgba(29, 93, 143, 0.08);
  padding: 1rem;
}

.pointer-fireside-panel__agenda p {
  margin-top: 0.45rem;
  font-size: 0.95rem;
}

.pointer-research-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 8%, rgba(16, 185, 129, 0.08), transparent 24rem),
    radial-gradient(circle at 86% 8%, rgba(59, 130, 246, 0.1), transparent 25rem),
    linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.pointer-research-grid {
  display: grid;
  gap: 1rem;
  margin-top: clamp(2rem, 4vw, 3rem);
}

.pointer-research-card {
  display: flex;
  min-height: 22rem;
  flex-direction: column;
  border: 1px solid rgba(201, 216, 230, 0.9);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  padding: clamp(1.2rem, 2.2vw, 1.6rem);
  box-shadow: 0 18px 54px rgba(7, 26, 47, 0.07);
}

.pointer-research-card h3 {
  margin-top: 1rem;
  color: #071a2f;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  font-weight: 680;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.pointer-research-card p {
  margin-top: 1rem;
  font-size: 0.98rem;
}

.pointer-research-card__meta {
  display: grid;
  gap: 0.25rem;
  margin-top: auto;
  padding-top: 1.5rem;
}

.pointer-research-card__meta small {
  color: #123a63;
  font-size: 0.82rem;
  font-weight: 760;
}

.pointer-research-card__meta strong {
  color: #071a2f;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 720;
  letter-spacing: -0.055em;
  line-height: 1;
}

.pointer-research-card__meta em {
  max-width: 20rem;
  font-size: 0.9rem;
  font-style: normal;
}

.pointer-research-section__actions {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

@media (min-width: 900px) {
  .pointer-fireside-section__grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(26rem, 0.7fr);
  }

  .pointer-research-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.section-heading {
  max-width: 48rem;
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.pointer-architecture {
  max-width: 64rem;
  margin: 3rem auto 0;
  border: 1px solid #e2e8f0;
  border-radius: 32px;
  background: #f8fafb;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.05);
}

.pointer-architecture__layer {
  border: 1px solid #e2e8f0;
  border-radius: 26px;
  background: #f2f5f7;
  padding: 1.5rem;
}

.pointer-architecture__layer--accent {
  background: linear-gradient(180deg, rgba(237, 244, 251, 0.9), rgba(247, 251, 255, 0.96));
  border-color: rgba(29, 93, 143, 0.14);
}

.pointer-architecture__header {
  margin-bottom: 1.25rem;
  text-align: center;
  color: #123a63;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.pointer-architecture__grid {
  display: grid;
  gap: 1rem;
}

.pointer-architecture__card {
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  background: #fbfcfd;
  padding: 1.25rem;
  text-align: center;
  color: #1f2937;
  font-weight: 650;
}

.pointer-architecture__card--accent {
  border-color: rgba(29, 93, 143, 0.14);
  background: rgba(255, 255, 255, 0.96);
  color: #123a63;
}

.pointer-architecture__connector {
  padding-block: 1rem;
  text-align: center;
  color: #1d5d8f;
  font-size: 2rem;
  font-weight: 300;
}

.pointer-intelligence-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 9% 12%, rgba(56, 189, 248, 0.22), transparent 24rem),
    radial-gradient(circle at 86% 18%, rgba(59, 130, 246, 0.2), transparent 28rem),
    radial-gradient(circle at 50% 104%, rgba(16, 185, 129, 0.12), transparent 24rem),
    linear-gradient(180deg, #06111f 0%, #081a2e 48%, #f7fbff 100%);
}

.pointer-intelligence-section::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.28;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(223, 244, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(223, 244, 255, 0.08) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at 50% 24%, black, transparent 76%);
}

.pointer-intelligence-section > * {
  position: relative;
  z-index: 1;
}

.pointer-intelligence-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(223, 244, 255, 0.16);
  border-radius: clamp(28px, 4vw, 48px);
  background:
    linear-gradient(145deg, rgba(247, 251, 255, 0.1), rgba(247, 251, 255, 0.035)),
    rgba(6, 17, 31, 0.82);
  padding: clamp(1.35rem, 3.4vw, 3.5rem);
  box-shadow: 0 42px 120px rgba(3, 7, 18, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(22px);
}

.pointer-intelligence-shell--minimal {
  padding: clamp(1.4rem, 3vw, 2.4rem);
}

.pointer-intelligence-shell--minimal .pointer-intelligence-map {
  margin-top: 0;
}

.pointer-intelligence-shell::before,
.pointer-intelligence-shell::after {
  content: '';
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(18px);
}

.pointer-intelligence-shell::before {
  top: -8rem;
  right: -6rem;
  width: 22rem;
  height: 22rem;
  background: rgba(56, 189, 248, 0.18);
}

.pointer-intelligence-shell::after {
  left: 12%;
  bottom: -9rem;
  width: 20rem;
  height: 20rem;
  background: rgba(16, 185, 129, 0.12);
}

.pointer-intelligence-hero,
.pointer-intelligence-map,
.pointer-operating-flow {
  position: relative;
  z-index: 1;
}

.pointer-intelligence-hero {
  display: grid;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: end;
}

.pointer-intelligence-copy .section-title {
  max-width: 13ch;
}

.pointer-intelligence-copy .section-copy {
  max-width: 54rem;
}

.pointer-intelligence-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.65rem;
}

.pointer-intelligence-pills span,
.pointer-intelligence-input-grid span,
.pointer-agent-list span,
.pointer-operating-flow__track span {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(223, 244, 255, 0.16);
  border-radius: 999px;
  background: rgba(247, 251, 255, 0.08);
  color: rgba(247, 251, 255, 0.88);
  font-size: 0.86rem;
  font-weight: 720;
  line-height: 1.25;
}

.pointer-intelligence-pills span {
  padding: 0.62rem 0.85rem;
}

.pointer-decision-brief {
  border: 1px solid rgba(223, 244, 255, 0.16);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.07));
  padding: clamp(1rem, 2vw, 1.4rem);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.pointer-decision-brief__topbar,
.pointer-decision-brief__score {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.pointer-decision-brief__topbar span,
.pointer-decision-brief__score span,
.pointer-decision-brief__grid article span,
.pointer-intelligence-column-label,
.pointer-operating-flow__label {
  color: rgba(223, 244, 255, 0.58);
  font-size: 0.72rem;
  font-weight: 780;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.pointer-decision-brief__topbar strong {
  border: 1px solid rgba(52, 211, 153, 0.28);
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.12);
  color: #bbf7d0;
  padding: 0.42rem 0.65rem;
  font-size: 0.76rem;
  font-weight: 780;
}

.pointer-decision-brief__score {
  align-items: end;
  margin-top: 1.4rem;
}

.pointer-decision-brief__score strong {
  color: #ffffff;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  font-weight: 760;
  letter-spacing: -0.055em;
  text-align: right;
}

.pointer-decision-brief__meter {
  overflow: hidden;
  height: 0.65rem;
  margin-top: 1.1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
}

.pointer-decision-brief__meter span {
  display: block;
  width: 84%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #38bdf8, #3b82f6 54%, #fbbf24 100%);
  box-shadow: 0 0 24px rgba(56, 189, 248, 0.38);
}

.pointer-decision-brief__grid {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
}

.pointer-decision-brief__grid article {
  border: 1px solid rgba(223, 244, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  padding: 0.9rem;
}

.pointer-decision-brief__grid article strong {
  display: block;
  margin-top: 0.4rem;
  color: rgba(247, 251, 255, 0.94);
  font-size: 0.96rem;
  font-weight: 720;
  line-height: 1.35;
}

.pointer-intelligence-map {
  display: grid;
  gap: 1rem;
  margin-top: clamp(2rem, 5vw, 4rem);
}

.pointer-intelligence-inputs,
.pointer-agent-core,
.pointer-intelligence-stages,
.pointer-operating-flow {
  border: 1px solid rgba(223, 244, 255, 0.14);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.065);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.pointer-intelligence-inputs,
.pointer-intelligence-stages {
  padding: 1rem;
}

.pointer-intelligence-column-label {
  margin-bottom: 0.85rem;
}

.pointer-intelligence-input-grid,
.pointer-agent-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.62rem;
}

.pointer-intelligence-input-grid span,
.pointer-agent-list span {
  padding: 0.58rem 0.72rem;
}

.pointer-agent-core {
  position: relative;
  overflow: hidden;
  min-height: 24rem;
  display: grid;
  place-items: center;
  padding: 1.2rem;
  background:
    radial-gradient(circle at 50% 42%, rgba(56, 189, 248, 0.22), transparent 34%),
    linear-gradient(180deg, rgba(15, 23, 42, 0.62), rgba(15, 23, 42, 0.22));
}

.pointer-agent-core__halo {
  position: absolute;
  width: 18rem;
  height: 18rem;
  border-radius: 999px;
  border: 1px solid rgba(56, 189, 248, 0.28);
  background: radial-gradient(circle, rgba(56, 189, 248, 0.18), transparent 62%);
  box-shadow: 0 0 52px rgba(56, 189, 248, 0.18), inset 0 0 40px rgba(56, 189, 248, 0.1);
  animation: pointerAgentPulse 3.8s ease-in-out infinite;
}

.pointer-agent-core__center {
  position: relative;
  z-index: 2;
  width: min(100%, 18rem);
  border: 1px solid rgba(223, 244, 255, 0.2);
  border-radius: 30px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.08));
  padding: 1.5rem;
  text-align: center;
  backdrop-filter: blur(18px);
}

.pointer-agent-core__center span {
  color: #7dd3fc;
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.pointer-agent-core__center strong {
  display: block;
  margin-top: 0.55rem;
  color: #ffffff;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  font-weight: 760;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.pointer-agent-core__center p {
  margin-top: 0.75rem;
  color: rgba(223, 244, 255, 0.72);
  font-size: 0.9rem;
  font-weight: 650;
  line-height: 1.45;
}

.pointer-agent-list {
  position: absolute;
  inset: auto 1rem 1rem;
  justify-content: center;
}

.pointer-agent-list span:nth-child(2n) {
  border-color: rgba(96, 165, 250, 0.22);
  background: rgba(59, 130, 246, 0.12);
}

.pointer-agent-list span:nth-child(3n) {
  border-color: rgba(251, 191, 36, 0.22);
  background: rgba(251, 191, 36, 0.1);
  color: #fde68a;
}

.pointer-intelligence-stages {
  display: grid;
  gap: 0.85rem;
}

.pointer-intelligence-stage {
  border: 1px solid rgba(223, 244, 255, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
  padding: 1rem;
}

.pointer-intelligence-stage > span {
  color: #7dd3fc;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0.12em;
}

.pointer-intelligence-stage h3 {
  margin-top: 0.45rem;
  color: #ffffff;
  font-size: 1.12rem;
  font-weight: 740;
  line-height: 1.18;
}

.pointer-intelligence-stage p {
  margin-top: 0.55rem;
  color: rgba(223, 244, 255, 0.66);
  font-size: 0.92rem;
  line-height: 1.58;
}

.pointer-operating-flow {
  display: grid;
  gap: 1rem;
  align-items: center;
  margin-top: 1rem;
  padding: 1rem;
}

.pointer-operating-flow__track {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.pointer-operating-flow__track span {
  position: relative;
  padding: 0.7rem 0.9rem;
}

.pointer-operating-flow__track span.is-approved {
  border-color: rgba(52, 211, 153, 0.34);
  background: rgba(16, 185, 129, 0.16);
  color: #bbf7d0;
}

.pointer-operating-flow p {
  color: rgba(223, 244, 255, 0.68);
  font-size: 0.95rem;
  font-weight: 650;
  line-height: 1.5;
}

@keyframes pointerAgentPulse {
  0%, 100% { transform: scale(0.96); opacity: 0.7; }
  50% { transform: scale(1.04); opacity: 1; }
}

.pointer-dashboard-showcase {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 16% 18%, rgba(59, 130, 246, 0.1), transparent 24%), radial-gradient(circle at 84% 18%, rgba(34, 197, 94, 0.09), transparent 24%), linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 248, 252, 0.98));
}

.pointer-dashboard-showcase__stack {
  display: grid;
  gap: 0;
}

.pointer-dashboard-showcase__copy {
  max-width: 52rem;
}

.pointer-dashboard-showcase__visual {
  perspective: 1800px;
  transform-style: preserve-3d;
  width: 100%;
}

.dashboard-showcase {
  position: relative;
  min-height: 40rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.dashboard-showcase__glow {
  position: absolute;
  width: 18rem;
  height: 18rem;
  border-radius: 999px;
  filter: blur(42px);
  opacity: 0.85;
  pointer-events: none;
}

.dashboard-showcase__glow--left { left: 4%; top: 12%; background: rgba(59, 130, 246, 0.18); }
.dashboard-showcase__glow--right { right: 1%; bottom: 12%; background: rgba(14, 165, 233, 0.16); }

.dashboard-mac-window {
  position: relative;
  z-index: 1;
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(154, 168, 184, 0.22);
  border-radius: 2.1rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.9)),
    #ffffff;
  box-shadow:
    0 44px 120px rgba(7, 26, 47, 0.18),
    0 18px 42px rgba(7, 26, 47, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.dashboard-mac-window__chrome {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.9rem;
  min-height: 3rem;
  border-bottom: 1px solid rgba(154, 168, 184, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 245, 249, 0.92)),
    #f8fafc;
  padding: 0.68rem 0.9rem;
}

.dashboard-mac-window__traffic {
  display: inline-flex;
  align-items: center;
  gap: 0.48rem;
}

.dashboard-mac-window__traffic span {
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 999px;
  box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.08);
}

.dashboard-mac-window__traffic span:nth-child(1) { background: #ff5f57; }
.dashboard-mac-window__traffic span:nth-child(2) { background: #ffbd2e; }
.dashboard-mac-window__traffic span:nth-child(3) { background: #28c840; }

.dashboard-mac-window__address,
.dashboard-mac-window__status {
  overflow: hidden;
  color: rgba(7, 26, 47, 0.56);
  font-size: 0.72rem;
  font-weight: 760;
  line-height: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dashboard-mac-window__address {
  justify-self: center;
  width: min(100%, 24rem);
  border: 1px solid rgba(154, 168, 184, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  padding: 0.48rem 0.78rem;
  text-align: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.84);
}

.dashboard-mac-window__status {
  color: #1d5d8f;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dashboard-mac-window__body {
  padding: 0.78rem;
  background:
    radial-gradient(circle at 12% 0%, rgba(58, 134, 255, 0.08), transparent 19rem),
    linear-gradient(180deg, #f8fafc 0%, #eef4fb 100%);
}

.dashboard-block {
  position: relative;
  width: 100%;
  border-radius: 2rem;
  padding: 1rem;
  background: linear-gradient(180deg, #eff4fb 0%, #e5edf7 100%);
  box-shadow: 0 40px 110px rgba(15, 23, 42, 0.16), 0 10px 26px rgba(15, 23, 42, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.72);
  z-index: 1;
}

.dashboard-block__topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  padding: 0.25rem 0.5rem 1rem;
}

.dashboard-block__eyebrow {
  color: #1d5d8f;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.dashboard-block__launch,
.dashboard-panel__header span {
  color: #1d5d8f;
  font-size: 0.78rem;
  font-weight: 700;
}

.dashboard-block__screen {
  display: grid;
  min-height: 34rem;
  overflow: hidden;
  border-radius: 1.2rem;
  background: linear-gradient(180deg, #eef4fb 0%, #e7eef7 100%);
  border: 1px solid rgba(201, 216, 230, 0.95);
}

.dashboard-app__sidebar {
  display: none;
  background: linear-gradient(180deg, #0f172a 0%, #16233a 100%);
  color: #f8fafc;
  padding: 1.4rem 1.15rem;
  flex-direction: column;
  gap: 1.4rem;
}

.dashboard-app__brand {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.dashboard-app__nav {
  display: grid;
  gap: 0.65rem;
}

.dashboard-app__nav span {
  display: block;
  border-radius: 0.9rem;
  padding: 0.8rem 0.95rem;
  font-size: 0.82rem;
  color: rgba(226, 232, 240, 0.7);
  background: rgba(255,255,255,0.03);
}

.dashboard-app__nav span.is-active {
  color: #f8fafc;
  background: rgba(59, 130, 246, 0.2);
  border: 1px solid rgba(96, 165, 250, 0.28);
}

.dashboard-app__sidebar-card {
  margin-top: auto;
  border-radius: 1rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(148, 163, 184, 0.14);
  padding: 1rem;
  color: #f8fafc;
}

.dashboard-app__sidebar-card p {
  color: rgba(125, 211, 252, 0.9);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.dashboard-app__sidebar-card strong {
  display: block;
  margin-top: 0.65rem;
  font-size: 0.93rem;
  line-height: 1.5;
}

.dashboard-app__main {
  padding: clamp(0.9rem, 2vw, 1.35rem);
  display: grid;
  gap: 1rem;
}

.dashboard-app__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.dashboard-app__eyebrow {
  color: #1d5d8f;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.dashboard-app__header h3 {
  margin-top: 0.45rem;
  color: #071a2f;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 700;
}

.dashboard-app__header-chip {
  border-radius: 999px;
  padding: 0.55rem 0.9rem;
  background: rgba(29, 93, 143, 0.08);
  color: #123a63;
  font-size: 0.75rem;
  font-weight: 700;
  white-space: nowrap;
}

.dashboard-app__kpis,
.dashboard-project-strip {
  display: grid;
  gap: 0.85rem;
}

.dashboard-kpi,
.dashboard-project-strip__card {
  border-radius: 1rem;
  padding: 1rem;
  border: 1px solid rgba(201, 216, 230, 0.92);
  background: rgba(255,255,255,0.78);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
  animation: dashboardFloatIn 0.7s ease both;
}

.dashboard-kpi p,
.dashboard-project-strip__card p {
  color: rgba(7, 26, 47, 0.64);
  font-size: 0.75rem;
  font-weight: 650;
}

.dashboard-kpi strong {
  display: block;
  margin-top: 0.45rem;
  color: #071a2f;
  font-size: 1.5rem;
  font-weight: 700;
}

.dashboard-kpi span {
  display: block;
  margin-top: 0.45rem;
  font-size: 11px;
  font-weight: 700;
}

.dashboard-kpi--blue span { color: #2563eb; }
.dashboard-kpi--green span { color: #15803d; }
.dashboard-kpi--amber span { color: #b45309; }
.dashboard-kpi--red span { color: #b91c1c; }

.dashboard-project-strip__card p {
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.dashboard-project-strip__card strong {
  display: block;
  margin-top: 0.45rem;
  color: #071a2f;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.25;
}

.dashboard-project-strip__card--green strong { color: #15803d; }
.dashboard-project-strip__card--amber strong { color: #b45309; }
.dashboard-project-strip__card--blue strong { color: #2563eb; }
.dashboard-project-strip__card--red strong { color: #b91c1c; }

.dashboard-panel {
  border-radius: 1.15rem;
  border: 1px solid rgba(201, 216, 230, 0.94);
  background: rgba(255,255,255,0.82);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.05);
  padding: 1rem;
}

.dashboard-panel__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.dashboard-panel__header p {
  color: rgba(7, 26, 47, 0.62);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.dashboard-panel__header strong {
  display: block;
  margin-top: 0.4rem;
  color: #071a2f;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
}

.dashboard-gantt {
  display: grid;
  margin-top: 1rem;
  border: 1px solid rgba(214, 222, 230, 0.92);
  border-radius: 1rem;
  overflow: hidden;
  background: rgba(255,255,255,0.72);
}

.dashboard-gantt__table {
  background: rgba(248, 250, 252, 0.86);
  overflow-x: auto;
}

.dashboard-gantt__table-head,
.dashboard-gantt__table-row {
  display: grid;
  grid-template-columns: minmax(9rem, 1.5fr) 4rem 4rem 4.5rem 4.5rem;
  gap: 0.65rem;
  align-items: center;
  min-height: 3rem;
  padding: 0.85rem 1rem;
  min-width: 32rem;
}

.dashboard-gantt__table-head {
  background: rgba(15, 23, 42, 0.04);
  color: rgba(7, 26, 47, 0.62);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.dashboard-gantt__table-row {
  border-top: 1px solid rgba(214, 222, 230, 0.74);
  color: #123a63;
  font-size: 0.84rem;
  font-weight: 600;
}

.dashboard-gantt__task-name {
  color: #071a2f;
  font-weight: 700;
}

.dashboard-gantt__timeline {
  position: relative;
  min-width: 0;
  overflow-x: auto;
  background: linear-gradient(180deg, rgba(255,255,255,0.8), rgba(243, 247, 252, 0.82));
}

.dashboard-gantt__timeline-head {
  display: grid;
  grid-template-columns: repeat(8, minmax(4rem, 1fr));
  min-height: 3rem;
  min-width: 34rem;
  align-items: center;
  padding: 0 0.5rem;
  background: rgba(15, 23, 42, 0.04);
  color: rgba(7, 26, 47, 0.62);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.dashboard-gantt__timeline-head span { text-align: center; }

.dashboard-gantt__timeline-grid {
  position: relative;
  min-width: 34rem;
}

.dashboard-gantt__timeline-grid::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(148, 163, 184, 0.16) 1px, transparent 1px);
  background-size: 12.5% 100%;
  pointer-events: none;
}

.dashboard-gantt__timeline-row {
  position: relative;
  min-height: 3rem;
  border-top: 1px solid rgba(214, 222, 230, 0.74);
}

.dashboard-gantt__today {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 56%;
  width: 2px;
  background: rgba(239, 68, 68, 0.88);
}

.dashboard-gantt__bar {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 0.95rem;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.2);
  overflow: hidden;
}

.dashboard-gantt__bar i {
  display: block;
  height: 100%;
  border-radius: inherit;
  animation: dashboardBarGrow 1.1s ease both;
  transform-origin: left center;
}

.dashboard-gantt__bar--blue i { background: linear-gradient(90deg, #3b82f6, #1d4ed8); }
.dashboard-gantt__bar--amber i { background: linear-gradient(90deg, #f59e0b, #d97706); }
.dashboard-gantt__bar--green i { background: linear-gradient(90deg, #22c55e, #15803d); }
.dashboard-gantt__bar--red i { background: linear-gradient(90deg, #ef4444, #b91c1c); }

@keyframes dashboardFloatIn {
  0% { opacity: 0; transform: translateY(18px) scale(0.985); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes dashboardBarGrow {
  0% { transform: scaleX(0); opacity: 0.5; }
  100% { transform: scaleX(1); opacity: 1; }
}

.pointer-problem-grid,
.pointer-why-now-grid,
.pointer-workflow-grid,
.pointer-output-grid,
.pointer-usecase-grid,
.pointer-human-ai-grid,
.pointer-outcome-grid,
.pointer-expansion-grid,
.pointer-data-advantage-grid,
.pointer-data-band__grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 3rem;
}

.pointer-problem-card,
.pointer-why-now-card,
.pointer-workflow-card,
.pointer-usecase-card,
.pointer-human-ai-card,
.pointer-outcome-card {
  padding: clamp(1.75rem, 3vw, 2.5rem);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

a.pointer-usecase-card:hover,
a.pointer-output-card:hover,
a.pointer-expansion-grid__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 52px rgba(7, 26, 47, 0.1);
}

.pointer-problem-card__icon,
.pointer-output-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: linear-gradient(135deg, #123a63 0%, #1d5d8f 60%, #6ec1e4 100%);
}

.pointer-output-card__icon {
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 1rem;
}

.pointer-problem-card h3,
.pointer-why-now-card h3,
.pointer-workflow-card h3,
.pointer-output-card h3,
.pointer-usecase-card h3,
.pointer-human-ai-card h3,
.pointer-outcome-card h3 {
  margin-top: 1.25rem;
  color: #071a2f;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  font-weight: 700;
  line-height: 1.2;
}

.pointer-problem-card p,
.pointer-why-now-card p,
.pointer-workflow-card p,
.pointer-output-card p,
.pointer-usecase-card p:last-child,
.pointer-human-ai-card p,
.pointer-outcome-card p {
  margin-top: 1rem;
  color: rgba(7, 26, 47, 0.72);
  font-size: 1rem;
  line-height: 1.75;
}

.pointer-workflow-card__step {
  color: #0c4a6e;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.pointer-output-shell {
  padding: clamp(2rem, 4vw, 3.5rem);
}

.pointer-output-card {
  display: block;
  border: 1px solid #c9d8e6;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(250, 251, 252, 0.98), rgba(241, 244, 246, 0.96));
  padding: 2rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pointer-loop {
  display: grid;
  gap: 1rem;
  align-items: center;
  margin-top: 3rem;
  border: 1px solid #e2e8f0;
  border-radius: 32px;
  background: #f8fafb;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.05);
}

.pointer-loop__step {
  position: relative;
  min-height: 130px;
  border: 1px solid rgba(201, 216, 230, 0.9);
  background: rgba(251, 252, 253, 0.96);
  border-radius: 24px;
  padding: 1.25rem 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.5rem;
  text-align: center;
}

.pointer-loop__index {
  color: #1d5d8f;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.pointer-loop__label {
  color: #071a2f;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.6;
}

.pointer-loop__arrow {
  align-self: center;
  color: #6b9fc1;
  font-size: 1.4rem;
}

.pointer-loop__feedback {
  grid-column: 1 / -1;
  margin-top: 0.75rem;
  border: 1px dashed rgba(29, 93, 143, 0.24);
  border-radius: 22px;
  background: rgba(237, 244, 251, 0.7);
  color: #123a63;
  padding: 1rem 1.5rem;
  text-align: center;
  font-weight: 700;
}

.pointer-benefits-grid {
  display: grid;
  gap: 1.5rem;
}

.pointer-benefits-card,
.pointer-expansion-card {
  padding: clamp(2rem, 4vw, 3rem);
}

.pointer-bullet-list {
  margin-top: 2rem;
  display: grid;
  gap: 1rem;
  list-style: none;
  padding: 0;
}

.pointer-bullet-list li {
  border-top: 1px solid rgba(201, 216, 230, 0.9);
  padding-top: 1rem;
  color: #123a63;
  font-weight: 650;
}

.pointer-inline-link {
  display: inline-flex;
  margin-top: 1.5rem;
  color: #1d5d8f;
  font-weight: 800;
}

.pointer-data-band {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border-top: 1px solid rgba(214, 222, 230, 0.95);
  border-bottom: 1px solid rgba(214, 222, 230, 0.95);
}

.pointer-data-band__inner {
  display: grid;
  gap: 2.5rem;
  padding-block: clamp(4rem, 8vw, 7rem);
}

.pointer-data-band .section-eyebrow--light,
.pointer-final-cta--dark .section-eyebrow--light {
  color: #1d5d8f;
  text-shadow: none;
}

.pointer-data-band .section-title--light,
.pointer-final-cta--dark .section-title--light {
  color: #071a2f;
}

.pointer-data-band .section-copy--light,
.pointer-data-band__copy,
.pointer-final-cta--dark .section-copy--light,
.pointer-final-cta--dark .pointer-final-cta__copy {
  color: rgba(7, 26, 47, 0.76);
}

.pointer-data-advantage-card,
.pointer-data-band__card,
.pointer-expansion-grid__card {
  border: 1px solid rgba(214, 222, 230, 0.95);
  border-radius: 24px;
  background: rgba(251, 252, 253, 0.96);
  padding: 1.5rem;
  color: #123a63;
}

.pointer-data-advantage-card h3,
.pointer-expansion-grid__card h3 {
  color: #071a2f;
  font-size: 1.25rem;
  font-weight: 700;
}

.pointer-data-advantage-card p,
.pointer-expansion-grid__card p {
  margin-top: 0.75rem;
  color: rgba(7, 26, 47, 0.72);
  font-size: 1rem;
  line-height: 1.75;
}

.pointer-expansion-card {
  background: linear-gradient(180deg, rgba(249, 250, 251, 0.98), rgba(241, 244, 246, 0.96));
}

.pointer-faq-grid {
  display: grid;
  gap: 2.5rem;
}

.pointer-faq {
  display: grid;
  gap: 1rem;
}

.pointer-faq__item {
  overflow: hidden;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  background: #ffffff;
}

.pointer-faq__item summary {
  cursor: pointer;
  padding: 1.25rem 1.5rem;
  color: #071a2f;
  font-size: 1.05rem;
  font-weight: 750;
  list-style: none;
}

.pointer-faq__item summary::-webkit-details-marker {
  display: none;
}

.pointer-faq__item summary::after {
  content: '+';
  float: right;
  color: #1d5d8f;
}

.pointer-faq__item[open] summary::after {
  content: '–';
}

.pointer-faq__item p {
  padding: 0 1.5rem 1.5rem;
  color: #334155;
  font-size: 1rem;
  line-height: 1.8;
}

.pointer-final-cta-wrap {
  padding-bottom: 6rem;
}

.pointer-final-cta {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
  border: 1px solid #c9d8e6;
  border-radius: 36px;
  background: white;
  padding: clamp(2rem, 4vw, 3rem);
  box-shadow: 0 18px 60px rgba(15, 23, 42, 0.08);
}

.pointer-final-cta--dark {
  border-color: #d6dee6;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.public-site-footer {
  border-top: 1px solid rgba(201, 216, 230, 0.9);
  background: #f4f8fc;
}

.public-site-footer__inner {
  display: grid;
  gap: 2.5rem;
  padding-block: 4rem;
}

.public-site-footer__eyebrow,
.public-site-footer__label {
  color: #1d5d8f;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.public-site-footer__title {
  margin-top: 1rem;
  max-width: 38rem;
  color: #071a2f;
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1.15;
}

.public-site-footer__copy {
  margin-top: 1rem;
  max-width: 44rem;
  color: rgba(7, 26, 47, 0.72);
  line-height: 1.8;
}

.public-site-footer__grid {
  display: grid;
  gap: 2rem;
}

.public-site-footer__links {
  margin-top: 1rem;
  display: grid;
  gap: 0.75rem;
}

.public-site-footer__links a {
  color: rgba(7, 26, 47, 0.74);
  font-size: 0.9rem;
  font-weight: 650;
}

.public-site-footer__links a:hover {
  color: #071a2f;
}

.kairos-demo-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.kairos-demo-modal__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: #020617;
  backdrop-filter: none;
  cursor: pointer;
}

.kairos-demo-modal__panel {
  position: relative;
  z-index: 1;
  width: min(1120px, 96vw);
  max-height: 94vh;
  overflow: hidden;
  border: 1px solid rgba(201, 216, 230, 0.9);
  border-radius: 28px;
  background: var(--popover);
  color: var(--popover-foreground);
  opacity: 1;
  box-shadow: 0 30px 90px rgba(2, 6, 23, 0.28);
}

.kairos-demo-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid rgba(214, 222, 230, 0.95);
  padding: 1rem 1.25rem;
}

.kairos-demo-modal__header h2 {
  margin-top: 0.25rem;
  color: #071a2f;
  font-size: 1.35rem;
  font-weight: 750;
}

.kairos-demo-modal__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid rgba(201, 216, 230, 0.9);
  border-radius: 999px;
  background: #f8fafc;
  color: #071a2f;
  cursor: pointer;
}

.kairos-demo-modal__frame-wrap {
  width: 100%;
  min-height: min(78vh, 760px);
}

.kairos-demo-modal__frame {
  width: 100%;
  height: min(78vh, 760px);
  border: 0;
  background: #ffffff;
}

.landing-hero-scene__shell {
  position: relative;
  width: 100%;
  min-height: 640px;
  height: 100%;
  overflow: hidden;
  border-radius: 14px;
  background: transparent;
  cursor: crosshair;
  font-family: var(--font-body);
}

/* ── Backdrop glow: pure CSS radial gradient, zero GPU cost ── */
.landing-hero-scene__backdrop-glow {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 72% 55% at 50% 62%, rgba(74, 158, 202, 0.07) 0%, transparent 70%),
    radial-gradient(ellipse 40% 30% at 50% 20%, rgba(232, 237, 242, 0.04) 0%, transparent 60%);
  animation: sceneGlowPulse 5s ease-in-out infinite;
}

@keyframes sceneGlowPulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.6; }
}

/* ── WebGL fallback ── */
.landing-hero-scene__fallback {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  background: transparent;
  pointer-events: none;
}

/* Static fallback = a real captured frame of the 3-D hero, full-bleed so it is visually
   identical to the live scene. The image already carries the navy background (it was
   captured over the same hero ground), so cover-filling the shell is seamless. */
.landing-hero-scene__fallback-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  /* The frame is a wide, tight shot of the whole bridge; contain shows all of it
     (zoomed out, nothing cropped) and the navy letterbox matches the hero ground. */
  object-fit: contain;
  object-position: center;
  /* Rest fully-visible so the fallback still shows if the browser blocks CSS animation
     entirely (locked-down / kiosk builds); the fade is enhancement only. */
  opacity: 1;
  animation: fallbackFadeIn 1.2s ease 0.3s forwards;
}

@keyframes fallbackFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.landing-hero-scene__fallback-cable {
  stroke-dasharray: 600;
  /* Rest drawn (offset 0); the keyframe hides then re-draws it when animation runs. */
  stroke-dashoffset: 0;
  animation: fallbackCableDraw 2s ease 0.8s forwards;
}

@keyframes fallbackCableDraw {
  from { stroke-dashoffset: 600; }
  to   { stroke-dashoffset: 0; }
}

.landing-hero-scene__fallback-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(132, 141, 150, 0.14);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  padding: 6px 14px;
  opacity: 1;
  animation: fallbackFadeIn 0.8s ease 1.4s forwards;
}

.landing-hero-scene__canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  transition: filter 0.45s ease, opacity 0.45s ease;
  background: transparent;
}

.landing-hero-scene__canvas--blurred {
  filter: blur(2px) brightness(0.8);
  opacity: 0.55;
}

.landing-hero-scene__phase-badge {
  position: absolute;
  top: clamp(2rem, 5.5vh, 3.5rem);
  right: 18px;
  z-index: 8;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(132, 141, 150, 0.14);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  padding: 6px 14px;
  pointer-events: none;
}

.landing-hero-scene__phase-line {
  width: 18px;
  height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,.2), rgba(255,255,255,.95), rgba(255,255,255,.28));
  box-shadow: 0 0 10px rgba(255,255,255,.26);
  animation: phaseLinePulse 1.7s ease-in-out infinite;
}

.landing-hero-scene__phase-text {
  font-size: 0.6rem;
  letter-spacing: 2.5px;
  color: rgba(233,236,239,.78);
}

@keyframes phaseLinePulse {
  0%, 100% { opacity: 1; transform: scaleX(1); }
  50% { opacity: 0.45; transform: scaleX(0.72); }
}

.landing-hero-scene__issue-layer {
  position: absolute;
  inset: 0;
  z-index: 9;
  pointer-events: none;
}

.landing-hero-scene__issue-pin {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  transition: opacity 0.2s ease;
}

.landing-hero-scene__pin-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--label-color, #fff);
  box-shadow: 0 0 0 1px rgba(18,22,28,.55), 0 0 10px color-mix(in srgb, var(--label-color, #fff) 50%, transparent);
}

.landing-hero-scene__pin-stem {
  width: 18px;
  height: 1px;
  margin: 0 6px 0 5px;
  background: color-mix(in srgb, var(--label-color, #fff) 84%, white 16%);
  opacity: 0.9;
}

.landing-hero-scene__issue-tag {
  position: relative;
  padding: 5px 10px 5px 12px;
  border-radius: 3px;
  font-size: 0.55rem;
  letter-spacing: 1.2px;
  white-space: nowrap;
  background: rgba(18, 22, 28, 0.6);
  color: color-mix(in srgb, var(--label-color, #fff) 82%, white 18%);
  border: 1px solid color-mix(in srgb, var(--label-color, #fff) 38%, rgba(255,255,255,.14) 62%);
  box-shadow: 0 4px 16px rgba(0,0,0,.18);
}

.landing-hero-scene__gantt {
  position: absolute;
  left: 18px;
  right: 18px;
  height: 38%;
  bottom: 14px;
  z-index: 20;
  background: rgba(188, 193, 198, 0.16);
  backdrop-filter: blur(1px) saturate(1.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 16px 18px 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
  color: #222;
  box-shadow: 0 16px 40px rgba(0,0,0,.18);
  animation: sceneGanttIn 0.4s ease both;
}

@keyframes sceneGanttIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.landing-hero-scene__gantt-title {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  color: #f3f4f6;
}

.landing-hero-scene__gantt-sub {
  margin-top: 2px;
  font-size: 0.58rem;
  letter-spacing: 1.4px;
  color: rgba(229, 231, 235, 0.82);
}

.landing-hero-scene__smartsheet-wrap {
  --sheet-row-h: 34px;
  --sheet-task-col: minmax(136px, 1.45fr);
  --sheet-start-col: minmax(58px, 0.55fr);
  --sheet-duration-col: minmax(58px, 0.5fr);
  --sheet-status-col: minmax(82px, 0.72fr);
  flex: 1;
  display: grid;
  grid-template-columns: minmax(340px, 40%) minmax(0, 1fr);
  min-height: 0;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(225, 225, 225, 0.84);
}

.landing-hero-scene__smartsheet-wrap,
.landing-hero-scene__smartsheet-wrap * {
  box-sizing: border-box;
}

.landing-hero-scene__sheet-left {
  min-width: 0;
  border-right: 1px solid rgba(0,0,0,.08);
  background: rgba(236, 236, 236, 0.9);
}

.landing-hero-scene__sheet-right {
  position: relative;
  display: grid;
  grid-template-rows: var(--sheet-row-h) 1fr;
  min-width: 0;
  overflow: hidden;
  background: rgba(239, 239, 239, 0.88);
}

.landing-hero-scene__sheet-head-row,
.landing-hero-scene__sheet-row {
  display: grid;
  grid-template-columns: var(--sheet-task-col) var(--sheet-start-col) var(--sheet-duration-col) var(--sheet-status-col);
  height: var(--sheet-row-h);
}

.landing-hero-scene__sheet-head-row,
.landing-hero-scene__time-header {
  background: rgba(221, 221, 221, 0.94);
  border-bottom: 1px solid rgba(0,0,0,.08);
}

.landing-hero-scene__h-cell,
.landing-hero-scene__c-task,
.landing-hero-scene__c-start,
.landing-hero-scene__c-dur,
.landing-hero-scene__c-stat {
  display: flex;
  align-items: center;
  padding: 0 10px;
  font-size: 0.62rem;
  color: #374151;
  border-right: 1px solid rgba(255,255,255,.4);
}

.landing-hero-scene__c-task {
  min-width: 0;
}

.landing-hero-scene__h-cell {
  font-size: 0.6rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.landing-hero-scene__sheet-row {
  border-bottom: 1px solid rgba(0,0,0,.07);
  animation: sceneRowIn 0.42s ease-out backwards;
  animation-delay: var(--row-delay);
}

.landing-hero-scene__c-start,
.landing-hero-scene__c-dur,
.landing-hero-scene__c-stat { justify-content: center; }
.landing-hero-scene__c-stat.is-delayed { color: #dc2626; font-weight: 800; }
.landing-hero-scene__task-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; margin-right: 7px; }
.landing-hero-scene__task-name { min-width: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.landing-hero-scene__mini-badge { margin-left: 6px; padding: 1px 4px; border-radius: 3px; font-size: 0.46rem; font-weight: 800; letter-spacing: 0.6px; background: rgba(249, 115, 22, 0.12); border: 1px solid rgba(249, 115, 22, 0.3); color: #c2410c; }

.landing-hero-scene__time-header {
  position: relative;
  grid-row: 1;
  height: var(--sheet-row-h);
}

.landing-hero-scene__time-head-cell {
  position: absolute;
  left: var(--tick-left);
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.58rem;
  font-weight: 800;
  color: #4b5563;
}

.landing-hero-scene__time-head-cell.is-start {
  transform: translateY(-50%);
}

.landing-hero-scene__time-head-cell.is-end {
  transform: translate(-100%, -50%);
}

.landing-hero-scene__grid-lines {
  position: absolute;
  inset: var(--sheet-row-h) 0 0 0;
  pointer-events: none;
}

.landing-hero-scene__grid-line {
  position: absolute;
  left: var(--tick-left);
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(0,0,0,.08);
}

.landing-hero-scene__grid-line.is-major {
  background: rgba(0,0,0,.13);
}

.landing-hero-scene__gantt-rows {
  display: flex;
  flex-direction: column;
  grid-row: 2;
  position: relative;
}

.landing-hero-scene__g-row {
  display: flex;
  align-items: center;
  height: var(--sheet-row-h);
  border-bottom: 1px solid rgba(0,0,0,.07);
  animation: sceneRowIn 0.42s ease-out backwards;
  animation-delay: var(--row-delay);
}

@keyframes sceneRowIn {
  from { opacity: 0; transform: translateX(-10px); }
  to { opacity: 1; transform: none; }
}

.landing-hero-scene__g-track {
  flex: 1;
  height: 100%;
  position: relative;
  overflow: visible;
}

.landing-hero-scene__today-line {
  position: absolute;
  left: 48.5%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(222, 226, 230, 0.72);
  z-index: 5;
  opacity: 0.7;
}

.landing-hero-scene__today-line span {
  position: absolute;
  top: 2px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.44rem;
  letter-spacing: 0.8px;
  color: rgba(229, 231, 235, 0.82);
  font-weight: 800;
}

.landing-hero-scene__g-bar-bg,
.landing-hero-scene__g-bar-fill {
  position: absolute;
  left: var(--bar-left);
  top: 10px;
  height: 12px;
  border-radius: 4px;
}

.landing-hero-scene__g-bar-bg {
  width: var(--bar-width);
  background: #d9d9d9;
  border: 1px solid #c8c8c8;
}

.landing-hero-scene__g-bar-bg.is-critical {
  border-color: rgba(249, 115, 22, 0.26);
  background: rgba(249, 115, 22, 0.08);
}

.landing-hero-scene__g-bar-fill {
  width: 0%;
  z-index: 2;
  opacity: 0.95;
  box-shadow: inset 0 -1px 0 rgba(0,0,0,.12);
  transition: width 1.05s cubic-bezier(0.23, 1, 0.32, 1);
}

.landing-hero-scene__g-bar-fill.is-ready {
  width: var(--target-width);
}

.landing-hero-scene__g-bar-fill.is-delayed {
  background-image: repeating-linear-gradient(45deg, transparent, transparent 5px, rgba(255,255,255,0.22) 5px, rgba(255,255,255,0.22) 10px) !important;
  background-size: 20px 100%;
  animation: stripeScroll 2s linear infinite;
}

@keyframes stripeScroll {
  0% { background-position: 0 0; }
  100% { background-position: 28px 0; }
}

.landing-hero-scene__delay-flag {
  position: absolute;
  left: var(--flag-left);
  top: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 6;
}

.landing-hero-scene__flag-line { width: 1.5px; flex: 1; background: #e74c3c; }
.landing-hero-scene__flag-label { font-size: 0.42rem; color: #c0392b; letter-spacing: 0.8px; margin-top: 1px; font-weight: 800; }

.landing-hero-scene__g-pct {
  position: absolute;
  left: var(--progress-left);
  top: 10px;
  transform: translate(-50%, -2px);
  font-size: 0.46rem;
  color: #fff;
  background: rgba(17,24,39,.86);
  padding: 1px 4px;
  border-radius: 3px;
  z-index: 7;
}

.landing-hero-scene__legend {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 8px;
}

.landing-hero-scene__legend div {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.6rem;
  letter-spacing: 0.8px;
  color: rgba(243, 244, 246, 0.88);
  text-transform: uppercase;
}

.landing-hero-scene__legend span {
  width: 8px;
  height: 8px;
  border-radius: 2px;
}

@media (min-width: 640px) {
  .pointer-hero__actions {
    flex-direction: row;
  }

  .public-site-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .homepage-container {
    padding-inline: 2.5rem;
  }

  .pointer-architecture__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pointer-why-now-grid,
  .pointer-outcome-grid,
  .pointer-output-grid,
  .pointer-usecase-grid,
  .pointer-data-band__grid,
  .pointer-expansion-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pointer-human-ai-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .dashboard-app__kpis,
  .dashboard-project-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .pointer-top-nav {
    display: flex;
  }

  .pointer-hero {
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  }

  .hero-copy-block {
    max-width: 48rem;
    margin-right: -4rem;
    padding-block: 1rem 1.5rem;
  }

  .hero-scene-shell {
    width: min(88%, 46rem);
    height: 100%;
    justify-self: end;
  }

  .dashboard-block__screen {
    grid-template-columns: 13.5rem minmax(0, 1fr);
  }

  .dashboard-app__sidebar {
    display: flex;
  }

  .dashboard-app__kpis,
  .dashboard-project-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .dashboard-gantt {
    grid-template-columns: minmax(22rem, 0.92fr) minmax(0, 1.08fr);
  }

  .dashboard-gantt__table {
    border-right: 1px solid rgba(214, 222, 230, 0.92);
  }

  .pointer-problem-grid,
  .pointer-data-advantage-grid,
  .pointer-expansion-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .pointer-workflow-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .pointer-loop {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .pointer-loop__arrow {
    position: absolute;
    right: -0.8rem;
    top: 50%;
    transform: translateY(-50%);
  }

  .pointer-benefits-grid,
  .pointer-faq-grid {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  }

  .pointer-data-band__inner {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    align-items: start;
  }

  .pointer-data-advantage-grid {
    grid-column: 2;
  }

  .pointer-data-band__grid {
    grid-column: 1 / -1;
  }

  .pointer-final-cta,
  .public-site-footer__inner {
    grid-template-columns: 1fr auto;
    flex-direction: row;
    align-items: center;
  }

  .public-site-footer__inner {
    display: grid;
  }
}

@media (min-width: 1280px) {
  .pointer-output-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .pointer-usecase-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

@media (min-width: 1536px) {
  .homepage-container {
    max-width: 1760px;
    padding-inline: 4rem;
  }

  .pointer-hero {
    gap: 4rem;
    padding-block: 4.5rem 5rem;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  }

  .pointer-architecture__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .pointer-hero__title {
    font-size: 6rem;
  }

  .hero-scene-shell {
    width: min(92%, 56rem);
    min-height: 46rem;
  }
}

@media (max-width: 768px) {
  .pointer-header__inner {
    flex-wrap: wrap;
  }

  .pointer-brand__mark {
    width: 10.75rem;
  }

  .pointer-signin-link {
    display: none;
  }

  .pointer-hero {
    min-height: auto;
    padding-top: 1.5rem;
    padding-bottom: 4.5rem;
  }

  .hero-scene-shell {
    min-height: 24rem;
  }

  .landing-hero-scene__shell {
    min-height: 520px;
  }

  .landing-hero-scene__gantt {
    left: 8px;
    right: 8px;
    height: 42%;
    bottom: 8px;
    padding: 12px;
  }

  .landing-hero-scene__smartsheet-wrap {
    grid-template-columns: 1fr;
  }

  .landing-hero-scene__sheet-right {
    display: none;
  }

  .dashboard-showcase {
    min-height: auto;
    padding-top: 1rem;
  }

  .pointer-section-spacing,
  .pointer-data-band__inner,
  .public-site-footer__inner {
    padding-block: 4rem;
  }
}

/* Landing-page typography overrides. Kept at the end so these win the cascade,
   locking in the on-screen typography, hero sizing, and responsive text rules
   for the public landing page. */
.homepage-shell {
  color: #071a2f;
  font-family: var(--font-body);
}

.homepage-container {
  max-width: 104rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.section-eyebrow,
.pointer-trust-strip__eyebrow,
.public-site-footer__eyebrow,
.public-site-footer__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  line-height: normal;
  text-transform: uppercase;
}

.section-title {
  margin-top: 1rem;
  color: #071a2f;
  font-size: 2.25rem;
  font-weight: 600;
  letter-spacing: normal;
  line-height: 1.25;
}

.section-copy {
  margin-top: 1rem;
  max-width: 48rem;
  color: rgba(7, 26, 47, 0.76);
  font-size: 1.125rem;
  line-height: 2rem;
}

.section-copy--emphasis {
  font-weight: 500;
}

.pointer-brand__mark {
  height: 2.5rem;
  width: 14.75rem;
}

.pointer-top-nav {
  display: none;
  margin-left: 1.5rem;
  align-items: center;
  gap: 0.5rem;
}

.pointer-top-nav__link {
  border: 0;
  border-radius: 999px;
  background: transparent;
  padding: 0.5rem 1rem;
  color: rgba(7, 26, 47, 0.76);
  cursor: default;
  font-size: 15px;
  font-weight: 500;
}

.pointer-signin-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(29, 93, 143, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: #123a63;
  padding: 0.5rem 1rem;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.25rem;
  min-height: 2.375rem;
}

.pointer-btn {
  border-radius: 999px;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5rem;
  box-shadow: none;
}

.pointer-btn--compact {
  padding: 0.8rem 1.25rem;
}

.pointer-btn--header {
  padding: 0.5rem 1rem;
  min-height: 2.375rem;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.25rem;
}

.pointer-btn--header.pointer-btn--solid {
  padding: 0.5rem 1rem;
  min-height: 2.375rem;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.25rem;
}

.pointer-hero-surface::before {
  display: none;
}

.pointer-hero {
  min-height: calc(100vh - 56px);
  gap: 3rem;
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

.hero-copy-block {
  position: relative;
  z-index: 20;
}

.pointer-hero__title {
  margin-top: 0.5rem;
  max-width: 72rem;
  font-size: 3rem;
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 1.02;
}

.pointer-hero__line--b::after {
  content: ' ';
}

.pointer-hero__copy {
  width: 100%;
  margin-top: 1.5rem;
  max-width: 48rem;
  color: rgba(247, 251, 255, 0.92);
  font-size: 1.25rem;
  line-height: 2.25rem;
  text-align: left;
}

.pointer-hero__actions {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-scene-shell {
  min-height: clamp(30rem, calc(72vh - 4rem), 42rem);
  border: 0;
  border-radius: 0;
  overflow: visible;
}

.pointer-scroll-cue {
  left: 50%;
  bottom: clamp(5rem, 12vh, 7rem);
  z-index: 60;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  color: rgba(247, 251, 255, 0.92);
}

.pointer-scroll-cue__arrow {
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(223, 244, 255, 0.32);
  background: rgba(247, 251, 255, 0.08);
  box-shadow: 0 0 0 rgba(223, 244, 255, 0.2);
  color: rgba(247, 251, 255, 0.92);
  font-size: 1.4rem;
  line-height: 1;
}

.pointer-section-spacing {
  padding-top: 7rem;
  padding-bottom: 7rem;
}

.section-heading {
  max-width: 48rem;
}

.pointer-architecture__header {
  margin-bottom: 1.25rem;
  color: #123a63;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  line-height: 1.25rem;
  text-align: center;
  text-transform: uppercase;
}

.pointer-architecture__card {
  padding: 1.25rem;
  color: #1f2937;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5rem;
}

.pointer-architecture__connector {
  padding-top: 1rem;
  padding-bottom: 1rem;
  font-size: 1.875rem;
  font-weight: 300;
  line-height: 2.25rem;
}

.pointer-problem-card,
.pointer-benefits-card,
.pointer-output-shell,
.pointer-expansion-card {
  padding: 2.5rem;
}

.pointer-why-now-card,
.pointer-workflow-card,
.pointer-usecase-card,
.pointer-human-ai-card,
.pointer-outcome-card {
  padding: 2rem;
}

.pointer-problem-card h3,
.pointer-workflow-card h3,
.pointer-usecase-card h3 {
  margin-top: 1rem;
  color: #071a2f;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 2rem;
}

.pointer-problem-card h3 {
  margin-top: 1.5rem;
}

.pointer-why-now-card h3,
.pointer-human-ai-card h3,
.pointer-outcome-card h3 {
  margin-top: 0;
  color: #071a2f;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.25;
}

.pointer-output-card h3,
.pointer-data-advantage-card h3,
.pointer-expansion-grid__card h3 {
  margin-top: 0;
  color: #071a2f;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.75rem;
}

.pointer-problem-card p,
.pointer-why-now-card p,
.pointer-workflow-card p,
.pointer-output-card p,
.pointer-usecase-card p:last-child,
.pointer-human-ai-card p,
.pointer-outcome-card p,
.pointer-data-advantage-card p,
.pointer-expansion-grid__card p {
  margin-top: 1rem;
  color: #334155;
  font-size: 1rem;
  line-height: 2rem;
}

.pointer-data-advantage-card p,
.pointer-expansion-grid__card p {
  margin-top: 0.75rem;
}

.pointer-workflow-card__step {
  color: #0c4a6e;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  line-height: 1.25rem;
}

.pointer-loop__index {
  color: #1d5d8f;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  line-height: 1rem;
  text-transform: uppercase;
}

.pointer-loop__label {
  color: #071a2f;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.75rem;
}

.pointer-loop__feedback {
  margin-top: 0.75rem;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5rem;
}

.pointer-bullet-list li {
  color: #123a63;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5rem;
}

.pointer-inline-link {
  font-weight: 600;
}

.pointer-data-band__inner {
  gap: 2.5rem;
  padding-top: 7rem;
  padding-bottom: 7rem;
}

.pointer-data-advantage-grid {
  margin-top: 0;
  gap: 1rem;
}

.pointer-data-band__card {
  color: #123a63;
  font-size: 1rem;
  font-weight: 500;
  line-height: 2rem;
}

.pointer-expansion-grid {
  margin-top: 2.5rem;
  gap: 1.25rem;
}

.pointer-faq__item summary {
  color: #071a2f;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.75rem;
}

.pointer-faq__item p {
  color: #334155;
  font-size: 1rem;
  line-height: 2rem;
}

.pointer-final-cta {
  gap: 2rem;
  padding: 2.5rem;
}

.public-site-footer__title {
  margin-top: 1rem;
  max-width: 36rem;
  color: #071a2f;
  font-size: 1.875rem;
  font-weight: 600;
  line-height: 1.25;
}

.public-site-footer__copy {
  margin-top: 1rem;
  max-width: 42rem;
  color: rgba(7, 26, 47, 0.72);
  font-size: 1rem;
  line-height: 2rem;
}

.public-site-footer__links a {
  color: rgba(7, 26, 47, 0.74);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.25rem;
}

@media (min-width: 640px) {
  .pointer-hero__actions {
    flex-direction: row;
  }
}

@media (min-width: 768px) {
  .homepage-container {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .auth-page__header {
    left: 2.5rem;
  }

  .pointer-brand__mark {
    height: 2.5rem;
    width: 14.75rem;
  }

  .section-title {
    font-size: 3rem;
    line-height: 1;
  }

  .section-copy {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }

  .pointer-hero__title {
    font-size: 4.5rem;
    line-height: 1;
  }
}

@media (min-width: 1024px) {
  .pointer-hero {
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .hero-copy-block {
    max-width: 48rem;
    margin-right: -4rem;
    padding-top: 1rem;
    padding-bottom: 1.5rem;
  }

  .hero-scene-shell {
    width: min(88%, 46rem);
    height: 100%;
    margin-left: 0;
    margin-right: 0;
    align-self: center;
    justify-self: end;
  }

  .pointer-benefits-grid,
  .pointer-faq-grid {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  }

  .pointer-final-cta,
  .public-site-footer__inner {
    flex-direction: row;
    align-items: center;
  }
}

@media (min-width: 1280px) {
  .homepage-container {
    padding-left: 3.5rem;
    padding-right: 3.5rem;
  }

  .auth-page__header {
    left: 3.5rem;
  }

  .pointer-top-nav {
    display: flex;
  }

  .pointer-hero {
    gap: 1rem;
  }

  .pointer-hero__title {
    font-size: 5.4rem;
  }
}

@media (min-width: 1536px) {
  .homepage-container {
    max-width: 1760px;
    padding-left: 4rem;
    padding-right: 4rem;
  }

  .auth-page__header {
    left: 4rem;
  }

  .pointer-hero {
    min-height: calc(100vh - 56px);
    gap: 4rem;
    padding-top: 4.5rem;
    padding-bottom: 5rem;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  }

  .hero-copy-block {
    max-width: 54rem;
    margin-right: -2rem;
    padding-top: 0.5rem;
    padding-bottom: 2rem;
  }

  .pointer-hero__title {
    max-width: 11.5ch;
    font-size: 6rem;
    line-height: 0.96;
  }

  .pointer-hero__copy {
    max-width: 36rem;
    font-size: 1.32rem;
    line-height: 2.15rem;
  }

  .hero-scene-shell {
    width: min(92%, 56rem);
    min-height: 46rem;
  }

  .pointer-scroll-cue {
    bottom: 4.75rem;
  }

  .pointer-section-spacing {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }

  .section-heading {
    max-width: 58rem;
  }
}

@media (min-width: 1440px) and (max-height: 1100px) {
  .pointer-hero {
    min-height: calc(100vh - 56px);
    gap: 2rem;
    padding-top: 1.75rem;
    padding-bottom: 2.75rem;
    align-items: center;
  }

  .hero-copy-block {
    max-width: 44rem;
    margin-right: -1rem;
    padding-top: 0;
    padding-bottom: 0.5rem;
  }

  .pointer-hero__title {
    max-width: 13.5ch;
    font-size: clamp(4rem, 4.2vw, 4.85rem);
    line-height: 0.95;
  }

  .pointer-hero__title--responsive-lines .pointer-hero__line {
    display: inline;
  }

  .pointer-hero__title--responsive-lines .pointer-hero__line--a::after,
  .pointer-hero__title--responsive-lines .pointer-hero__line--b::after {
    content: ' ';
  }

  .pointer-hero__copy {
    max-width: 30rem;
    margin-top: 1rem;
    font-size: 1.05rem;
    line-height: 1.65rem;
  }

  .pointer-hero__actions {
    margin-top: 1.5rem;
    gap: 0.875rem;
  }

  .pointer-btn {
    padding: 0.85rem 1.25rem;
  }

  .hero-scene-shell {
    width: min(88%, 48rem);
    min-height: clamp(26rem, calc(62vh - 2rem), 34rem);
  }

  .pointer-scroll-cue {
    bottom: 1.6rem;
    gap: 0.2rem;
  }

  .pointer-scroll-cue__arrow {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.1rem;
  }
}

@media (min-width: 1800px) and (max-width: 2100px) and (min-height: 980px) and (max-height: 1200px) {
  .pointer-hero {
    min-height: calc(100vh - 56px);
    padding-top: 3.75rem;
    padding-bottom: 4rem;
    gap: 3.25rem;
    grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  }

  .hero-copy-block {
    max-width: 56rem;
    margin-right: -1rem;
  }

  .pointer-hero__title {
    max-width: 14.2ch;
    font-size: 5.1rem;
    line-height: 0.96;
  }

  .pointer-hero__title--responsive-lines .pointer-hero__line {
    display: inline;
  }

  .pointer-hero__title--responsive-lines .pointer-hero__line--a::after,
  .pointer-hero__title--responsive-lines .pointer-hero__line--b::after {
    content: ' ';
  }

  .pointer-hero__copy {
    max-width: 34rem;
    font-size: 1.14rem;
    line-height: 1.85rem;
  }

  .hero-scene-shell {
    width: min(86%, 50rem);
    min-height: 42rem;
  }

  .pointer-scroll-cue {
    bottom: 6.5rem;
  }
}

@media (max-width: 768px) {
  .pointer-hero {
    min-height: auto;
    padding-top: 1.5rem;
    padding-bottom: 4.5rem;
  }

  .hero-copy-block {
    margin-right: 0;
  }

  .hero-scene-shell {
    margin-left: 0;
    width: 100%;
    min-height: 24rem;
  }

  .pointer-scroll-cue {
    bottom: 3.5rem;
  }

  .pointer-section-spacing,
  .pointer-data-band__inner,
  .public-site-footer__inner,
  .public-info-hero,
  .public-info-cta-wrap {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

@media (max-width: 1100px) {
  .auth-layout {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .auth-card {
    max-width: 42rem;
    min-height: auto;
  }

  .auth-visual-panel {
    min-height: 34rem;
  }
}

@media (max-width: 720px) {
  .auth-page {
    overflow: auto;
  }

  .auth-page__shell {
    padding: 1rem;
  }

  .auth-page__header {
    align-items: flex-start;
    flex-direction: column;
  }

  .auth-page__switcher {
    width: 100%;
    justify-content: space-between;
  }

  .auth-page__switcher span {
    font-size: 0.82rem;
  }

  .auth-layout {
    padding-block: 1.5rem 2.5rem;
  }

  .auth-card {
    border-radius: 24px;
  }

  .auth-form__grid,
  .auth-risk-grid {
    grid-template-columns: 1fr;
  }

  .auth-visual-panel__topline,
  .auth-workspace-preview__header,
  .auth-form__meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .auth-visual-panel__copy h2 {
    max-width: 13.5ch;
    font-size: clamp(2.3rem, 14vw, 3.5rem);
  }

  .auth-workspace-preview,
  .auth-next-card {
    width: 100%;
    margin: 1rem 0 0;
  }

  .auth-visual-panel {
    min-height: auto;
    border-radius: 28px;
  }
}

/* Section 2: executive infrastructure intelligence redesign overrides. */
.pointer-intelligence-section {
  background:
    radial-gradient(circle at 12% 10%, rgba(125, 211, 252, 0.3), transparent 25rem),
    radial-gradient(circle at 82% 8%, rgba(59, 130, 246, 0.28), transparent 28rem),
    radial-gradient(circle at 52% 48%, rgba(20, 184, 166, 0.14), transparent 34rem),
    radial-gradient(circle at 50% 104%, rgba(247, 251, 255, 0.8), transparent 18rem),
    linear-gradient(180deg, #020817 0%, #071a2f 52%, #f7fbff 100%);
}

.pointer-intelligence-section::before {
  opacity: 0.34;
  background-size: 48px 48px;
}

.pointer-intelligence-section::after {
  content: '';
  position: absolute;
  inset: 8% 4% auto;
  height: 34rem;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(56, 189, 248, 0.18), rgba(255, 255, 255, 0.08), rgba(16, 185, 129, 0.14));
  filter: blur(70px);
  opacity: 0.68;
  pointer-events: none;
}

.pointer-intelligence-shell {
  border-color: rgba(223, 244, 255, 0.2);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), transparent 24%),
    linear-gradient(180deg, rgba(8, 26, 46, 0.94), rgba(2, 8, 23, 0.86));
  box-shadow:
    0 52px 150px rgba(2, 8, 23, 0.46),
    0 18px 44px rgba(56, 189, 248, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    inset 0 -1px 0 rgba(125, 211, 252, 0.08);
}

.pointer-intelligence-shell::before {
  background: rgba(56, 189, 248, 0.26);
}

.pointer-intelligence-shell::after {
  background: rgba(45, 212, 191, 0.16);
}

.pointer-intelligence-section .section-title--light {
  color: #f7fbff;
  max-width: 15ch;
  font-size: clamp(2.8rem, 5.4vw, 6rem);
  font-weight: 680;
  letter-spacing: -0.068em;
  line-height: 0.93;
  text-wrap: balance;
}

.pointer-intelligence-section .section-copy--light {
  color: rgba(247, 251, 255, 0.76);
  font-size: clamp(1.05rem, 1.35vw, 1.28rem);
  line-height: 1.75;
}

.pointer-intelligence-section .section-eyebrow--light {
  color: #7dd3fc;
}

.pointer-intelligence-pills span {
  border-color: rgba(125, 211, 252, 0.24);
  background: linear-gradient(135deg, rgba(125, 211, 252, 0.14), rgba(255, 255, 255, 0.07));
  box-shadow: 0 12px 26px rgba(2, 8, 23, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.pointer-decision-brief,
.pointer-intelligence-inputs,
.pointer-agent-core,
.pointer-intelligence-stages,
.pointer-operating-flow {
  border-color: rgba(223, 244, 255, 0.18);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.045)),
    rgba(15, 23, 42, 0.44);
  box-shadow:
    0 22px 54px rgba(2, 8, 23, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.pointer-decision-brief {
  position: relative;
  overflow: hidden;
}

.pointer-decision-brief::before {
  content: '';
  position: absolute;
  inset: -1px;
  background:
    radial-gradient(circle at 82% 0%, rgba(125, 211, 252, 0.28), transparent 42%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent 38%);
  pointer-events: none;
}

.pointer-decision-brief > * {
  position: relative;
  z-index: 1;
}

.pointer-decision-brief__score strong {
  max-width: 16rem;
  font-size: clamp(1.35rem, 2.25vw, 2rem);
  line-height: 1.02;
  text-wrap: balance;
}

.pointer-decision-brief__grid article,
.pointer-intelligence-stage {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.04));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.pointer-decision-brief__grid article::after,
.pointer-intelligence-stage::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 92% 8%, rgba(125, 211, 252, 0.13), transparent 45%);
  pointer-events: none;
}

.pointer-intelligence-inputs {
  min-height: 28rem;
  position: relative;
  overflow: hidden;
}

.pointer-intelligence-inputs::before {
  content: '';
  position: absolute;
  inset: 3rem 1rem 1rem;
  border: 1px dashed rgba(125, 211, 252, 0.16);
  border-radius: 30px;
  background:
    radial-gradient(circle at 20% 22%, rgba(125, 211, 252, 0.16), transparent 28%),
    radial-gradient(circle at 78% 72%, rgba(45, 212, 191, 0.12), transparent 26%);
  pointer-events: none;
}

.pointer-intelligence-column-label {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: #bae6fd;
}

.pointer-intelligence-column-label::before {
  content: '';
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 999px;
  background: #38bdf8;
  box-shadow: 0 0 0 5px rgba(56, 189, 248, 0.13), 0 0 18px rgba(56, 189, 248, 0.48);
}

.pointer-intelligence-input-grid {
  position: relative;
  z-index: 1;
  display: block;
  min-height: 24rem;
  margin-top: 0.6rem;
}

.pointer-input-source {
  position: absolute;
  width: min(12.5rem, 48%);
  min-height: 4.65rem;
  display: flex;
  align-items: center;
  gap: 0.78rem;
  border: 1px solid rgba(125, 211, 252, 0.18);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(125, 211, 252, 0.12), rgba(255, 255, 255, 0.055)),
    rgba(255, 255, 255, 0.045);
  padding: 0.78rem;
  box-shadow: 0 10px 24px rgba(2, 8, 23, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  animation: inputSourceFloat 7s ease-in-out infinite;
  transform: translate(var(--x, 0), var(--y, 0)) rotate(var(--r, 0deg));
}

.pointer-input-source:nth-child(2n) {
  animation-delay: -1.8s;
}

.pointer-input-source:nth-child(3n) {
  animation-delay: -3.4s;
}

.pointer-input-source:nth-child(1) { left: 3%; top: 7%; --r: -7deg; }
.pointer-input-source:nth-child(2) { right: 5%; top: 2%; --r: 5deg; }
.pointer-input-source:nth-child(3) { left: 25%; top: 25%; --r: 2deg; }
.pointer-input-source:nth-child(4) { right: 0%; top: 31%; --r: -5deg; }
.pointer-input-source:nth-child(5) { left: 1%; top: 48%; --r: 6deg; }
.pointer-input-source:nth-child(6) { right: 14%; top: 58%; --r: -2deg; }
.pointer-input-source:nth-child(7) { left: 34%; top: 72%; --r: -8deg; }
.pointer-input-source:nth-child(8) { left: 7%; top: 79%; --r: 4deg; }

.pointer-input-source__logo {
  flex: 0 0 auto;
  width: 2.65rem;
  height: 2.65rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(219, 234, 254, 0.88));
  color: #0f172a;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  box-shadow: 0 12px 28px rgba(2, 8, 23, 0.22);
}

.pointer-input-source__copy {
  min-width: 0;
  display: grid;
  gap: 0.15rem;
}

.pointer-input-source__copy strong {
  color: #f8fafc;
  font-size: 0.9rem;
  font-weight: 850;
  line-height: 1.05;
}

.pointer-input-source__copy small {
  color: rgba(226, 232, 240, 0.64);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.pointer-input-source--p6 .pointer-input-source__logo { color: #2563eb; }
.pointer-input-source--project .pointer-input-source__logo { color: #16a34a; }
.pointer-input-source--excel .pointer-input-source__logo { color: #15803d; }
.pointer-input-source--email .pointer-input-source__logo { color: #0ea5e9; }
.pointer-input-source--pdf .pointer-input-source__logo { color: #dc2626; }
.pointer-input-source--image .pointer-input-source__logo { color: #7c3aed; }
.pointer-input-source--rfi .pointer-input-source__logo { color: #f97316; }
.pointer-input-source--doc .pointer-input-source__logo { color: #1d4ed8; }

@keyframes inputSourceFloat {
  0%, 100% { translate: 0 0; opacity: 0.92; }
  50% { translate: 0 -7px; opacity: 1; }
}

.pointer-agent-core {
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 50% 40%, rgba(56, 189, 248, 0.3), transparent 34%),
    radial-gradient(circle at 20% 82%, rgba(16, 185, 129, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(15, 23, 42, 0.72), rgba(15, 23, 42, 0.28));
}

.pointer-agent-core::before {
  background:
    linear-gradient(90deg, transparent 0 12%, rgba(125, 211, 252, 0.12) 12% 13%, transparent 13% 87%, rgba(45, 212, 191, 0.12) 87% 88%, transparent 88%),
    radial-gradient(circle, rgba(125, 211, 252, 0.08), transparent 60%);
}

.pointer-agent-core::before,
.pointer-agent-core::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 24rem;
  height: 24rem;
  border: 1px solid rgba(125, 211, 252, 0.12);
  border-radius: 42% 58% 52% 48%;
  transform: translate(-50%, -50%);
  animation: neuralOrbit 16s linear infinite;
  pointer-events: none;
}

.pointer-agent-core::after {
  width: 17rem;
  height: 17rem;
  border-color: rgba(45, 212, 191, 0.14);
  animation-duration: 11s;
  animation-direction: reverse;
}

.pointer-agent-core__halo {
  width: 20rem;
  height: 20rem;
  border-color: rgba(125, 211, 252, 0.34);
  box-shadow: 0 0 78px rgba(56, 189, 248, 0.24), inset 0 0 52px rgba(56, 189, 248, 0.14);
}

.pointer-agent-core__center {
  z-index: 3;
  box-shadow: 0 26px 64px rgba(2, 8, 23, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.pointer-neural-field {
  position: absolute;
  inset: 1.2rem;
  z-index: 1;
  pointer-events: none;
}

.pointer-neural-field span {
  position: absolute;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: #7dd3fc;
  box-shadow: 0 0 22px rgba(125, 211, 252, 0.78);
  animation: neuralPulse 2.8s ease-in-out infinite;
}

.pointer-neural-field span::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 5.8rem;
  height: 1px;
  transform-origin: left center;
  background: linear-gradient(90deg, rgba(125, 211, 252, 0.62), transparent);
}

.pointer-neural-field span:nth-child(1) { left: 11%; top: 22%; animation-delay: -0.1s; }
.pointer-neural-field span:nth-child(2) { left: 31%; top: 13%; animation-delay: -0.6s; }
.pointer-neural-field span:nth-child(3) { left: 62%; top: 18%; animation-delay: -1.1s; }
.pointer-neural-field span:nth-child(4) { left: 82%; top: 34%; animation-delay: -1.7s; }
.pointer-neural-field span:nth-child(5) { left: 18%; top: 48%; animation-delay: -2.2s; }
.pointer-neural-field span:nth-child(6) { left: 42%; top: 39%; animation-delay: -0.4s; }
.pointer-neural-field span:nth-child(7) { left: 70%; top: 53%; animation-delay: -0.9s; }
.pointer-neural-field span:nth-child(8) { left: 28%; top: 74%; animation-delay: -1.4s; }
.pointer-neural-field span:nth-child(9) { left: 53%; top: 78%; animation-delay: -1.9s; }
.pointer-neural-field span:nth-child(10) { left: 82%; top: 73%; animation-delay: -2.5s; }
.pointer-neural-field span:nth-child(11) { left: 9%; top: 82%; animation-delay: -0.8s; }
.pointer-neural-field span:nth-child(12) { left: 91%; top: 16%; animation-delay: -1.6s; }

.pointer-neural-field span:nth-child(3n)::after { transform: rotate(54deg); }
.pointer-neural-field span:nth-child(3n + 1)::after { transform: rotate(-24deg); }
.pointer-neural-field span:nth-child(3n + 2)::after { transform: rotate(148deg); }

.pointer-data-stream {
  position: absolute;
  z-index: 2;
  left: -22%;
  right: -22%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(125, 211, 252, 0.95), rgba(45, 212, 191, 0.85), transparent);
  filter: drop-shadow(0 0 10px rgba(125, 211, 252, 0.65));
  animation: dataStream 3.4s linear infinite;
}

.pointer-data-stream::before,
.pointer-data-stream::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 999px;
  background: #e0f2fe;
  box-shadow: 0 0 18px rgba(125, 211, 252, 0.9);
  transform: translateY(-50%);
}

.pointer-data-stream::before { left: 28%; }
.pointer-data-stream::after { left: 62%; }

.pointer-data-stream--a { top: 30%; }
.pointer-data-stream--b { top: 70%; animation-delay: -1.7s; }

.pointer-flow-label {
  position: absolute;
  z-index: 4;
  top: 1rem;
  border: 1px solid rgba(223, 244, 255, 0.16);
  border-radius: 999px;
  background: rgba(2, 8, 23, 0.42);
  color: rgba(226, 232, 240, 0.78);
  padding: 0.45rem 0.68rem;
  font-size: 0.64rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.pointer-flow-label--in { left: 1rem; }
.pointer-flow-label--out { right: 1rem; color: #bbf7d0; }

@keyframes neuralPulse {
  0%, 100% { transform: scale(0.82); opacity: 0.45; }
  50% { transform: scale(1.35); opacity: 1; }
}

@keyframes neuralOrbit {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes dataStream {
  from { transform: translateX(-24%) scaleX(0.55); opacity: 0; }
  20% { opacity: 1; }
  80% { opacity: 1; }
  to { transform: translateX(24%) scaleX(1); opacity: 0; }
}

.pointer-intelligence-stage {
  border-color: rgba(45, 212, 191, 0.18);
}

.pointer-intelligence-stage h3::before {
  content: '';
  display: inline-block;
  width: 0.55rem;
  height: 0.55rem;
  margin-right: 0.5rem;
  border-radius: 999px;
  background: #34d399;
  box-shadow: 0 0 18px rgba(52, 211, 153, 0.6);
  vertical-align: middle;
}

.pointer-operating-flow {
  background:
    linear-gradient(90deg, rgba(125, 211, 252, 0.12), rgba(255, 255, 255, 0.045), rgba(16, 185, 129, 0.1)),
    rgba(15, 23, 42, 0.45);
}

@media (min-width: 768px) {
  .pointer-decision-brief__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1100px) {
  .pointer-intelligence-hero {
    grid-template-columns: minmax(0, 1.18fr) minmax(25rem, 0.82fr);
  }

  .pointer-intelligence-map {
    grid-template-columns: minmax(20rem, 0.95fr) minmax(26rem, 1.05fr) minmax(21rem, 0.9fr);
    align-items: stretch;
  }

  .pointer-intelligence-inputs,
  .pointer-intelligence-stages {
    align-content: start;
  }

  .pointer-operating-flow {
    grid-template-columns: auto minmax(0, 1fr) auto;
  }

  .pointer-operating-flow__track {
    justify-content: center;
  }
}

@media (min-width: 1440px) {
  .pointer-intelligence-copy .section-title {
    max-width: 14.5ch;
  }

  .pointer-agent-core {
    min-height: 28rem;
  }
}

@media (max-width: 720px) {
  .pointer-intelligence-shell {
    margin-inline: -0.5rem;
  }

  .pointer-intelligence-section .section-title--light {
    font-size: clamp(2.35rem, 12vw, 3.5rem);
  }

  .pointer-decision-brief__score {
    align-items: flex-start;
    flex-direction: column;
  }

  .pointer-decision-brief__score strong {
    text-align: left;
  }

  .pointer-agent-core {
    min-height: 28rem;
  }

  .pointer-intelligence-input-grid {
    min-height: 30rem;
  }

  .pointer-input-source {
    position: relative;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    width: 100%;
    margin-bottom: 0.7rem;
    transform: rotate(var(--r, 0deg));
  }

  .pointer-agent-list {
    position: relative;
    inset: auto;
    margin-top: 1.2rem;
  }

  .pointer-operating-flow__track span {
    flex: 1 1 calc(50% - 0.6rem);
    justify-content: center;
  }
}

/* Landing demo snapshot alignment overrides. */
.dashboard-app__main {
  align-content: start;
}

.dashboard-app__header,
.dashboard-panel__header {
  align-items: center;
}

.dashboard-app__header > div,
.dashboard-panel__header > div,
.dashboard-kpi,
.dashboard-project-strip__card {
  min-width: 0;
}

.dashboard-kpi,
.dashboard-project-strip__card {
  display: flex;
  min-height: 7.25rem;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.45rem;
}

.dashboard-kpi p,
.dashboard-kpi strong,
.dashboard-kpi span,
.dashboard-project-strip__card p,
.dashboard-project-strip__card strong,
.dashboard-panel__header p,
.dashboard-panel__header strong,
.dashboard-gantt__table-head span,
.dashboard-gantt__table-row span,
.dashboard-gantt__timeline-head span {
  margin-top: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dashboard-kpi p,
.dashboard-project-strip__card p,
.dashboard-panel__header p,
.dashboard-gantt__table-head,
.dashboard-gantt__timeline-head {
  line-height: 1.1;
}

.dashboard-kpi strong {
  line-height: 1;
}

.dashboard-kpi span,
.dashboard-gantt__table-row {
  line-height: 1.25;
}

.dashboard-panel__header strong {
  line-height: 1.2;
}

.dashboard-project-strip__card strong {
  font-size: 11px;
  font-weight: 700;
  line-height: 1.25;
}

.dashboard-gantt__table-head,
.dashboard-gantt__table-row {
  min-height: 3.25rem;
}

/* Landing Product demo: signed-in dashboard preview and customization animation. */
.pointer-dashboard-showcase__stack {
  gap: clamp(2.75rem, 5vw, 5.5rem);
}

.pointer-dashboard-showcase__copy {
  margin-bottom: 0.5rem;
}

.dashboard-showcase {
  min-height: clamp(44rem, 60vw, 58rem);
}

.dashboard-block__screen--app-dashboard {
  min-height: clamp(40rem, 54vw, 52rem);
  background: #f7fafc;
}

.dashboard-app__main--real-preview {
  gap: 1rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 0%, rgba(59, 130, 246, 0.08), transparent 22rem),
    linear-gradient(180deg, #f8fafc 0%, #eef4fb 100%);
}

.dashboard-app__header--signed-in h3 {
  margin-top: 0.1rem;
  font-size: clamp(1.65rem, 2.2vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.dashboard-scenario-tabs {
  display: none;
  align-items: center;
  gap: 0.35rem;
  border: 1px solid rgba(201, 216, 230, 0.96);
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.82);
  padding: 0.3rem;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.dashboard-scenario-tabs span,
.dashboard-scenario-tabs em,
.dashboard-scenario-tabs strong {
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 750;
  line-height: 1;
  white-space: nowrap;
}

.dashboard-scenario-tabs span {
  color: rgba(7, 26, 47, 0.52);
  padding-inline: 0.35rem;
}

.dashboard-scenario-tabs strong,
.dashboard-scenario-tabs em {
  border-radius: 0.65rem;
  padding: 0.48rem 0.58rem;
}

.dashboard-scenario-tabs strong {
  background: #071a2f;
  color: #ffffff;
}

.dashboard-scenario-tabs em {
  color: rgba(7, 26, 47, 0.58);
}

.dashboard-ai-insight,
.dashboard-preview-section,
.dashboard-intelligence-demo {
  border: 1px solid rgba(201, 216, 230, 0.92);
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.045);
}

.dashboard-ai-insight {
  padding: 0.9rem;
}

.dashboard-ai-insight.dashboard-ai-insight--ongoing {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 190, 11, 0.18), transparent 14rem),
    radial-gradient(circle at 92% 12%, rgba(255, 0, 110, 0.16), transparent 13rem),
    rgba(255, 255, 255, 0.9);
}

.dashboard-ai-insight.dashboard-ai-insight--ongoing::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(120deg, rgba(255, 190, 11, 0.36), transparent 28%, rgba(255, 0, 110, 0.28) 78%, transparent);
  opacity: 0.34;
  pointer-events: none;
}

.dashboard-ai-insight.dashboard-ai-insight--ongoing > * {
  position: relative;
  z-index: 1;
}

.dashboard-ai-insight__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.dashboard-ai-insight__header span {
  display: inline-flex;
  align-items: center;
  border-radius: 0.8rem;
  background: linear-gradient(90deg, #f59e0b, #ec4899);
  color: #ffffff;
  padding: 0.55rem 0.75rem;
  font-size: 0.78rem;
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(236, 72, 153, 0.14);
}

.dashboard-ai-insight__header button {
  border: 0;
  border-radius: 0.75rem;
  background: #071a2f;
  color: #ffffff;
  padding: 0.55rem 0.75rem;
  font-size: 0.72rem;
  font-weight: 750;
}

.dashboard-ai-insight__body {
  display: grid;
  gap: 0.45rem;
  margin-top: 0.75rem;
  border: 1px solid rgba(214, 222, 230, 0.72);
  border-radius: 0.9rem;
  background: rgba(241, 245, 249, 0.72);
  padding: 0.8rem;
}

.dashboard-ai-insight__body p {
  position: relative;
  margin: 0;
  color: rgba(7, 26, 47, 0.78);
  font-size: 0.76rem;
  font-weight: 650;
  line-height: 1.45;
  padding-left: 0.85rem;
}

.dashboard-ai-insight__body p::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.52em;
  width: 0.32rem;
  height: 0.32rem;
  border-radius: 999px;
  background: #f59e0b;
}

.dashboard-ai-insight__body--ongoing {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.62rem;
  border-color: rgba(255, 190, 11, 0.2);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(248, 250, 252, 0.64)),
    rgba(255, 255, 255, 0.78);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.74);
}

.dashboard-ai-insight__body--ongoing p {
  padding-left: 0;
}

.dashboard-ai-insight__body--ongoing p::before {
  display: none;
}

.dashboard-delay-card {
  --demo-accent: #ff006e;
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--demo-accent) 22%, rgba(226, 232, 240, 0.95));
  border-radius: 0.95rem;
  background:
    radial-gradient(circle at 100% 0%, color-mix(in srgb, var(--demo-accent) 18%, transparent), transparent 58%),
    rgba(255, 255, 255, 0.9);
  padding: 0.7rem;
  box-shadow: 0 14px 30px color-mix(in srgb, var(--demo-accent) 10%, transparent);
}

.dashboard-delay-card::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 0.18rem;
  background: linear-gradient(90deg, var(--demo-accent), color-mix(in srgb, var(--demo-accent) 22%, #ffffff));
  opacity: 0.78;
}

.dashboard-delay-card--pink { --demo-accent: #ff006e; }
.dashboard-delay-card--orange { --demo-accent: #fb5607; }

.dashboard-delay-card__topline {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.42rem;
}

.dashboard-delay-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.72rem;
  height: 1.72rem;
  border-radius: 0.62rem;
  background: color-mix(in srgb, var(--demo-accent) 13%, #ffffff);
  color: var(--demo-accent);
}

.dashboard-delay-card__icon svg {
  width: 0.92rem;
  height: 0.92rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.dashboard-delay-card__topline em,
.dashboard-delay-card__topline strong {
  width: fit-content;
  max-width: 100%;
  overflow: hidden;
  border-radius: 999px;
  padding: 0.24rem 0.4rem;
  font-size: 0.55rem;
  font-style: normal;
  font-weight: 900;
  line-height: 1;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.dashboard-delay-card__topline em {
  background: color-mix(in srgb, var(--demo-accent) 10%, #f8fafc);
  color: color-mix(in srgb, var(--demo-accent) 70%, #071a2f);
}

.dashboard-delay-card__topline strong {
  justify-self: end;
  background: #071a2f;
  color: #ffffff;
  box-shadow: 0 8px 16px rgba(15, 23, 42, 0.12);
}

.dashboard-delay-card h4 {
  margin: 0.58rem 0 0;
  color: #071a2f;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.dashboard-delay-card p {
  margin-top: 0.36rem;
  color: rgba(7, 26, 47, 0.66);
  font-size: 0.65rem;
  font-weight: 650;
  line-height: 1.36;
}

.dashboard-delay-card p b {
  color: color-mix(in srgb, var(--demo-accent) 72%, #071a2f);
  font-weight: 900;
}

.dashboard-preview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;
}

.dashboard-preview-section {
  min-width: 0;
  padding: 0.9rem;
}

.dashboard-preview-section__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.dashboard-preview-section__header h4 {
  margin: 0;
  color: #071a2f;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.dashboard-preview-section__header span {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(201, 216, 230, 0.9);
  border-radius: 0.7rem;
  background: rgba(255, 255, 255, 0.72);
  color: #1d5d8f;
  padding: 0.42rem 0.58rem;
  font-size: 0.68rem;
  font-weight: 800;
  white-space: nowrap;
}

.dashboard-preview-section__header--intelligence {
  margin-bottom: 0.85rem;
}

.dashboard-preview-section__header--intelligence > div {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  justify-content: flex-end;
}

.dashboard-task-grid,
.dashboard-snapshot-grid {
  display: grid;
  gap: 0.7rem;
}

.dashboard-task-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.dashboard-task-card,
.dashboard-snapshot-card,
.dashboard-widget-card {
  min-width: 0;
  border: 1px solid rgba(201, 216, 230, 0.82);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 9px 20px rgba(15, 23, 42, 0.045);
}

.dashboard-task-card {
  position: relative;
  display: flex;
  min-height: 8.7rem;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.75rem;
  border-radius: 1rem;
  padding: 0.82rem;
  overflow: hidden;
}

.dashboard-task-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 94% 0%, color-mix(in srgb, var(--demo-accent, #ff006e) 16%, transparent), transparent 50%),
    linear-gradient(180deg, color-mix(in srgb, var(--demo-accent, #ff006e) 7%, transparent), transparent 48%);
  opacity: 0.88;
  pointer-events: none;
}

.dashboard-task-card > * {
  position: relative;
  z-index: 1;
}

.dashboard-task-card > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
}

.dashboard-task-card__icon,
.dashboard-snapshot-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 0.75rem;
  background: rgba(29, 93, 143, 0.08);
}

.dashboard-task-card small {
  border-radius: 999px;
  background: rgba(245, 158, 11, 0.12);
  color: #b45309;
  padding: 0.28rem 0.45rem;
  font-size: 0.58rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dashboard-task-card strong,
.dashboard-snapshot-card strong,
.dashboard-widget-card b {
  color: #071a2f;
  font-weight: 850;
  letter-spacing: -0.03em;
}

.dashboard-task-card strong {
  display: block;
  font-size: 0.82rem;
  line-height: 1.18;
}

.dashboard-task-card p {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  color: rgba(7, 26, 47, 0.62);
  font-size: 0.68rem;
  font-weight: 650;
  line-height: 1.42;
}

.dashboard-task-card__delay-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.45rem;
  border: 1px solid color-mix(in srgb, var(--demo-accent, #ff006e) 14%, rgba(226, 232, 240, 0.92));
  border-radius: 0.72rem;
  background: rgba(255, 255, 255, 0.66);
  padding: 0.42rem 0.5rem;
}

.dashboard-task-card__delay-meta span,
.dashboard-task-card__delay-meta em {
  overflow: hidden;
  font-style: normal;
  line-height: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dashboard-task-card__delay-meta span {
  color: color-mix(in srgb, var(--demo-accent, #ff006e) 72%, #071a2f);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.dashboard-task-card__delay-meta em {
  color: rgba(7, 26, 47, 0.58);
  font-size: 0.58rem;
  font-weight: 850;
  text-transform: uppercase;
}

.dashboard-task-card--red small { background: rgba(239, 68, 68, 0.1); color: #b91c1c; }
.dashboard-task-card--blue small { background: rgba(59, 130, 246, 0.1); color: #1d4ed8; }

.dashboard-snapshot-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.dashboard-snapshot-card {
  display: grid;
  gap: 0.45rem;
  min-height: 7.35rem;
  border-radius: 0.95rem;
  padding: 0.72rem;
}

.dashboard-snapshot-card > div {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.dashboard-snapshot-card__handle,
.dashboard-widget-card__handle {
  color: rgba(100, 116, 139, 0.64);
  cursor: grab;
  font-size: 0.82rem;
  letter-spacing: -0.25em;
  line-height: 1;
}

.dashboard-snapshot-card small,
.dashboard-widget-card p {
  overflow: hidden;
  color: rgba(7, 26, 47, 0.56);
  font-size: 0.62rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  line-height: 1.1;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.dashboard-snapshot-card strong {
  font-size: 1.4rem;
  line-height: 1;
}

.dashboard-snapshot-card em {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  overflow: hidden;
  border-radius: 0.5rem;
  background: rgba(241, 245, 249, 0.86);
  color: rgba(7, 26, 47, 0.62);
  padding: 0.28rem 0.42rem;
  font-size: 0.58rem;
  font-style: normal;
  font-weight: 800;
  line-height: 1.1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dashboard-snapshot-showcase {
  position: relative;
  min-height: 15.85rem;
  isolation: isolate;
}

.dashboard-snapshot-showcase .dashboard-snapshot-grid {
  position: relative;
  z-index: 1;
}

.dashboard-snapshot-card--added {
  opacity: 0;
  z-index: 6;
  transform: translate(0, 0.55rem) scale(0.94);
  transform-origin: center;
  animation: addedSnapshotMoveToFront 8s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.dashboard-snapshot-card--active-projects {
  animation: activeProjectsYieldSlot 8s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.dashboard-snapshot-card--delayed-projects {
  animation: delayedProjectsYieldSlot 8s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.dashboard-snapshot-card--escalations {
  animation: escalationsYieldSlot 8s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.dashboard-customize-trigger {
  position: relative;
  overflow: hidden;
  animation: customizeTriggerFocus 8s ease infinite;
}

.dashboard-customize-trigger::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0 30%, rgba(58, 134, 255, 0.18) 45%, transparent 62% 100%);
  transform: translateX(-120%);
  animation: customizeTriggerSheen 8s ease infinite;
}

.dashboard-customize-panel {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 5;
  display: grid;
  gap: 0.68rem;
  border: 1px solid rgba(201, 216, 230, 0.94);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.96);
  padding: 0.78rem;
  box-shadow: 0 24px 58px rgba(15, 23, 42, 0.16);
  backdrop-filter: blur(10px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-0.65rem) scale(0.96);
  transform-origin: top right;
  animation: customizePanelOpen 8s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.dashboard-customize-panel__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
}

.dashboard-customize-panel__topline strong {
  color: #071a2f;
  font-size: 0.86rem;
  font-weight: 850;
  letter-spacing: -0.02em;
}

.dashboard-customize-panel__topline span {
  border-radius: 999px;
  background: rgba(58, 134, 255, 0.1);
  color: #1d5d8f;
  padding: 0.28rem 0.48rem;
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dashboard-customize-options {
  display: grid;
  gap: 0.46rem;
}

.dashboard-customize-option {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.58rem;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 0.82rem;
  background: rgba(248, 250, 252, 0.86);
  padding: 0.5rem;
  opacity: 0;
  transform: translateY(0.45rem);
  animation: customizeOptionRise 8s ease infinite;
}

.dashboard-customize-option:nth-child(1) { animation-delay: 0s; }
.dashboard-customize-option:nth-child(2) { animation-delay: 0.16s; }
.dashboard-customize-option:nth-child(3) { animation-delay: 0.32s; }
.dashboard-customize-option:nth-child(4) { animation-delay: 0.48s; }

.dashboard-customize-option--blue { --demo-accent: #3a86ff; }
.dashboard-customize-option--orange { --demo-accent: #fb5607; }
.dashboard-customize-option--pink { --demo-accent: #ff006e; }
.dashboard-customize-option--yellow { --demo-accent: #ffbe0b; }
.dashboard-customize-option--green { --demo-accent: #10b981; }

.dashboard-customize-option:nth-child(4) {
  animation-name: customizeFourthOptionRise;
}

.dashboard-customize-option__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.86rem;
  height: 1.86rem;
  border-radius: 0.7rem;
  color: var(--demo-accent, #3a86ff);
  background: color-mix(in srgb, var(--demo-accent, #3a86ff) 13%, transparent);
}

.dashboard-customize-option__icon svg {
  width: 0.94rem;
  height: 0.94rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.dashboard-customize-option strong,
.dashboard-customize-option small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dashboard-customize-option strong {
  color: #071a2f;
  font-size: 0.72rem;
  font-weight: 850;
  line-height: 1.15;
}

.dashboard-customize-option small {
  margin-top: 0.16rem;
  color: rgba(7, 26, 47, 0.56);
  font-size: 0.58rem;
  font-weight: 700;
  line-height: 1.1;
}

.dashboard-customize-toggle {
  position: relative;
  width: 2.05rem;
  height: 1.12rem;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.28);
  box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.24);
}

.dashboard-customize-toggle i {
  position: absolute;
  left: 0.16rem;
  top: 0.16rem;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 3px 8px rgba(15, 23, 42, 0.16);
}

.dashboard-customize-option:nth-child(4) .dashboard-customize-toggle {
  animation: customizeToggleTrack 8s ease infinite;
}

.dashboard-customize-option:nth-child(4) .dashboard-customize-toggle i {
  animation: customizeToggleKnob 8s ease infinite;
}

.dashboard-customize-save {
  border: 0;
  border-radius: 0.78rem;
  background: #0f172a;
  color: #ffffff;
  padding: 0.58rem 0.72rem;
  font-size: 0.68rem;
  font-weight: 850;
  line-height: 1;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.1);
  animation: customizeSavePress 8s ease infinite;
}

.dashboard-customize-cursor {
  position: absolute;
  z-index: 8;
  right: 1.05rem;
  top: -2.7rem;
  width: 1.2rem;
  height: 1.2rem;
  transform-origin: 20% 20%;
  animation: customizeCursorPath 8s cubic-bezier(0.65, 0, 0.35, 1) infinite;
  filter: drop-shadow(0 10px 16px rgba(15, 23, 42, 0.24));
  pointer-events: none;
}

.dashboard-customize-cursor::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  border-left: 0.5rem solid #071a2f;
  border-top: 0.82rem solid transparent;
  border-bottom: 0.22rem solid transparent;
  transform: rotate(-24deg);
}

.dashboard-customize-cursor span {
  position: absolute;
  left: 0.62rem;
  top: 0.62rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: #1d5d8f;
  box-shadow: 0 0 0 0 rgba(29, 93, 143, 0.36);
  animation: customizeCursorClick 8s ease infinite;
}

.dashboard-customize-toast {
  position: absolute;
  left: 50%;
  bottom: 0.3rem;
  z-index: 7;
  border: 1px solid rgba(29, 93, 143, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: #123a63;
  padding: 0.48rem 0.72rem;
  font-size: 0.62rem;
  font-weight: 850;
  white-space: nowrap;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.1);
  opacity: 0;
  transform: translate(-50%, 0.45rem);
  animation: customizeToastPulse 8s ease infinite;
}

.dashboard-snapshot-card--blue .dashboard-snapshot-card__icon,
.dashboard-widget-card--blue .dashboard-widget-visual { background-color: rgba(59, 130, 246, 0.12); }
.dashboard-snapshot-card--amber .dashboard-snapshot-card__icon,
.dashboard-widget-card--amber .dashboard-widget-visual { background-color: rgba(245, 158, 11, 0.13); }
.dashboard-snapshot-card--red .dashboard-snapshot-card__icon,
.dashboard-widget-card--red .dashboard-widget-visual { background-color: rgba(239, 68, 68, 0.11); }
.dashboard-snapshot-card--green .dashboard-snapshot-card__icon,
.dashboard-widget-card--green .dashboard-widget-visual { background-color: rgba(34, 197, 94, 0.12); }
.dashboard-widget-card--purple .dashboard-widget-visual { background-color: rgba(124, 58, 237, 0.11); }

.dashboard-intelligence-demo {
  padding: 0.9rem;
}

.dashboard-widget-stage {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: minmax(8.8rem, auto);
  gap: 0.78rem;
  isolation: isolate;
}

.dashboard-widget-card {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 8.8rem;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.7rem;
  border-radius: 1rem;
  padding: 0.82rem;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
  animation: widgetSubtleFloat 7s ease-in-out infinite;
}

.dashboard-widget-card:nth-of-type(2n) { animation-delay: -1.6s; }
.dashboard-widget-card:nth-of-type(3n) { animation-delay: -3s; }

.dashboard-widget-card--medium {
  grid-column: span 1;
}

.dashboard-widget-card--large {
  grid-column: span 2;
}

.dashboard-widget-card--small {
  grid-column: span 1;
}

.dashboard-widget-card--moving {
  z-index: 4;
  border-color: rgba(29, 93, 143, 0.36);
  box-shadow: 0 24px 58px rgba(15, 23, 42, 0.16);
  animation: widgetDragMove 8s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}

.dashboard-widget-card__topline,
.dashboard-widget-card__content {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.dashboard-widget-card__topline strong {
  min-width: 0;
  flex: 1;
  overflow: hidden;
  color: #071a2f;
  font-size: 0.84rem;
  font-weight: 850;
  line-height: 1.1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dashboard-widget-card__topline em {
  border-radius: 0.35rem;
  background: linear-gradient(90deg, rgba(245, 158, 11, 0.16), rgba(236, 72, 153, 0.16));
  color: #b45309;
  padding: 0.18rem 0.32rem;
  font-size: 0.56rem;
  font-style: normal;
  font-weight: 900;
}

.dashboard-widget-card__content {
  justify-content: space-between;
  margin-top: auto;
}

.dashboard-widget-card__content > div {
  min-width: 0;
}

.dashboard-widget-card b {
  display: block;
  font-size: 1.05rem;
  line-height: 1.1;
}

.dashboard-widget-card small {
  display: -webkit-box;
  margin-top: 0.35rem;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  color: rgba(7, 26, 47, 0.58);
  font-size: 0.66rem;
  font-weight: 650;
  line-height: 1.3;
}

.dashboard-widget-visual {
  position: relative;
  flex: 0 0 auto;
  width: 3.25rem;
  height: 3.25rem;
  overflow: hidden;
  border-radius: 0.9rem;
}

.dashboard-widget-visual--donut span {
  position: absolute;
  inset: 0.45rem;
  border-radius: 999px;
  background: conic-gradient(#3b82f6 0 58%, #f59e0b 58% 82%, #ef4444 82% 100%);
}

.dashboard-widget-visual--donut span::after {
  content: '';
  position: absolute;
  inset: 0.45rem;
  border-radius: inherit;
  background: #ffffff;
}

.dashboard-widget-visual--line i {
  position: absolute;
  bottom: 0.65rem;
  width: 0.32rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #7c3aed, #3b82f6);
}

.dashboard-widget-visual--line i:nth-child(1) { left: 0.62rem; height: 1.1rem; }
.dashboard-widget-visual--line i:nth-child(2) { left: 1.2rem; height: 1.65rem; }
.dashboard-widget-visual--line i:nth-child(3) { left: 1.78rem; height: 1.35rem; }
.dashboard-widget-visual--line i:nth-child(4) { left: 2.36rem; height: 2.1rem; }

.dashboard-widget-visual--heatmap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.22rem;
  padding: 0.5rem;
}

.dashboard-widget-visual--heatmap span {
  border-radius: 0.24rem;
  background: rgba(239, 68, 68, 0.22);
}

.dashboard-widget-visual--heatmap span:nth-child(3n + 1) { background: rgba(34, 197, 94, 0.28); }
.dashboard-widget-visual--heatmap span:nth-child(3n + 2) { background: rgba(245, 158, 11, 0.32); }

.dashboard-widget-visual--brief {
  display: grid;
  align-content: center;
  gap: 0.35rem;
  padding: 0.65rem;
}

.dashboard-widget-visual--brief span,
.dashboard-widget-visual--alerts span {
  display: block;
  height: 0.38rem;
  border-radius: 999px;
  background: rgba(22, 163, 74, 0.42);
}

.dashboard-widget-visual--brief span:nth-child(2) { width: 78%; }
.dashboard-widget-visual--brief span:nth-child(3) { width: 58%; }

.dashboard-widget-visual--alerts {
  display: grid;
  align-content: center;
  gap: 0.35rem;
  padding: 0.6rem;
}

.dashboard-widget-visual--alerts span {
  background: rgba(245, 158, 11, 0.42);
}

.dashboard-widget-visual--alerts span:nth-child(2) { width: 74%; background: rgba(239, 68, 68, 0.36); }
.dashboard-widget-visual--alerts span:nth-child(3) { width: 55%; background: rgba(34, 197, 94, 0.34); }

.dashboard-widget-cursor {
  position: absolute;
  z-index: 8;
  left: 45%;
  top: 17%;
  width: 1.25rem;
  height: 1.25rem;
  transform-origin: 20% 20%;
  animation: widgetCursorPath 8s cubic-bezier(0.65, 0, 0.35, 1) infinite;
  filter: drop-shadow(0 10px 16px rgba(15, 23, 42, 0.24));
  pointer-events: none;
}

.dashboard-widget-cursor::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  border-left: 0.5rem solid #071a2f;
  border-top: 0.82rem solid transparent;
  border-bottom: 0.22rem solid transparent;
  transform: rotate(-24deg);
}

.dashboard-widget-cursor span {
  position: absolute;
  left: 0.62rem;
  top: 0.62rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: #1d5d8f;
  box-shadow: 0 0 0 0 rgba(29, 93, 143, 0.36);
  animation: widgetCursorClick 8s ease infinite;
}

.dashboard-widget-toast {
  position: absolute;
  right: 0.35rem;
  top: -0.35rem;
  z-index: 7;
  border: 1px solid rgba(29, 93, 143, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #123a63;
  padding: 0.48rem 0.7rem;
  font-size: 0.62rem;
  font-weight: 850;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.1);
  opacity: 0;
  transform: translateY(0.45rem);
  animation: widgetToastPulse 8s ease infinite;
}

@keyframes widgetSubtleFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

@keyframes widgetCursorPath {
  0%, 12% { transform: translate3d(0, 0, 0) scale(1); }
  18%, 28% { transform: translate3d(0.1rem, 0.08rem, 0) scale(0.94); }
  46%, 58% { transform: translate3d(10.8rem, 11.4rem, 0) scale(0.94); }
  70% { transform: translate3d(10.8rem, 11.4rem, 0) scale(1); }
  84%, 100% { transform: translate3d(0, 0, 0) scale(1); }
}

@keyframes widgetCursorClick {
  0%, 14%, 32%, 64%, 100% { box-shadow: 0 0 0 0 rgba(29, 93, 143, 0); opacity: 0.75; }
  18%, 58% { box-shadow: 0 0 0 0.55rem rgba(29, 93, 143, 0.14); opacity: 1; }
}

@keyframes widgetDragMove {
  0%, 14% { transform: translate3d(0, 0, 0) rotate(0deg); }
  18%, 30% { transform: translate3d(0, 0, 0) rotate(-0.8deg) scale(1.025); }
  48%, 60% { transform: translate3d(10.4rem, 10.9rem, 0) rotate(-0.8deg) scale(1.025); }
  68% { transform: translate3d(10.4rem, 10.9rem, 0) rotate(0deg) scale(1); }
  78% { transform: translate3d(0, 0.35rem, 0) rotate(0deg) scale(0.99); }
  84%, 100% { transform: translate3d(0, 0, 0) rotate(0deg) scale(1); }
}

@keyframes widgetToastPulse {
  0%, 72%, 100% { opacity: 0; transform: translateY(0.45rem); }

  80%, 92% { opacity: 1; transform: translateY(0); }
}

@keyframes snapshotGridMakeRoom {
  0%, 22%, 92%, 100% { transform: translateY(0); }
  34%, 84% { transform: translateY(11.4rem); }
}

@keyframes addedSnapshotReveal {
  0%, 68%, 96%, 100% { opacity: 0; transform: translateY(0.55rem) scale(0.94); }
  74%, 92% { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes addedSnapshotMoveToFront {
  0%, 68%, 96%, 100% { opacity: 0; transform: translate(0, 0.55rem) scale(0.94); }
  74%, 79% { opacity: 1; transform: translate(0, 0) scale(1); }
  86%, 92% { opacity: 1; transform: translate(calc(-100% - 0.7rem), calc(-100% - 0.7rem)) scale(1.04); box-shadow: 0 18px 36px rgba(255, 0, 110, 0.18), 0 0 0 3px rgba(255, 0, 110, 0.1); }
}

@keyframes activeProjectsYieldSlot {
  0%, 78%, 96%, 100% { transform: translateX(0); }
  86%, 92% { transform: translateX(calc(100% + 0.7rem)); }
}

@keyframes delayedProjectsYieldSlot {
  0%, 78%, 96%, 100% { transform: translate(0, 0); }
  86%, 92% { transform: translate(calc(-100% - 0.7rem), calc(100% + 0.7rem)); }
}

@keyframes escalationsYieldSlot {
  0%, 78%, 96%, 100% { transform: translateX(0); }
  86%, 92% { transform: translateX(calc(100% + 0.7rem)); }
}

@keyframes customizeTriggerFocus {
  0%, 12%, 92%, 100% { border-color: rgba(201, 216, 230, 0.9); box-shadow: none; }
  18%, 30% { border-color: rgba(58, 134, 255, 0.38); box-shadow: 0 0 0 0.22rem rgba(58, 134, 255, 0.08); }
}

@keyframes customizeTriggerSheen {
  0%, 12%, 100% { transform: translateX(-120%); }
  18%, 32% { transform: translateX(120%); }
  33%, 100% { transform: translateX(120%); }
}

@keyframes customizePanelOpen {
  0%, 22%, 76%, 100% { opacity: 0; transform: translateY(-0.65rem) scale(0.96); }
  32%, 70% { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes customizeOptionRise {
  0%, 29%, 76%, 100% { opacity: 0; transform: translateY(0.45rem); }
  38%, 70% { opacity: 1; transform: translateY(0); }
}

@keyframes customizeFourthOptionRise {
  0%, 29%, 76%, 100% { opacity: 0; transform: translateY(0.45rem); }
  38%, 50% { opacity: 1; transform: translateY(0); border-color: rgba(226, 232, 240, 0.95); }
  56%, 70% { opacity: 1; transform: translateY(0); border-color: color-mix(in srgb, var(--demo-accent, #ff006e) 42%, rgba(226, 232, 240, 0.95)); box-shadow: 0 10px 22px color-mix(in srgb, var(--demo-accent, #ff006e) 12%, transparent); }
}

@keyframes customizeToggleTrack {
  0%, 42%, 76%, 100% { background: rgba(148, 163, 184, 0.28); box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.24); }
  52%, 70% { background: #3a86ff; box-shadow: inset 0 0 0 1px rgba(58, 134, 255, 0.22); }
}

@keyframes customizeToggleKnob {
  0%, 42%, 76%, 100% { transform: translateX(0); }
  52%, 70% { transform: translateX(0.92rem); }
}

@keyframes customizeSavePress {
  0%, 62%, 76%, 100% { transform: translateY(0) scale(1); background: #0f172a; }
  66%, 72% { transform: translateY(1px) scale(0.985); background: #1d5d8f; }
}

@keyframes customizeCursorPath {
  0%, 10% { transform: translate3d(0, 0, 0) scale(1); }
  16%, 24% { transform: translate3d(0.1rem, 0.08rem, 0) scale(0.94); }
  38%, 48% { transform: translate3d(-1.15rem, 11.2rem, 0) scale(0.94); }
  56%, 64% { transform: translate3d(-1.15rem, 11.2rem, 0) scale(0.94); }
  66%, 74% { transform: translate3d(-7.9rem, 16.45rem, 0) scale(0.94); }
  80%, 92% { transform: translate3d(-7.9rem, 16.45rem, 0) scale(1); }
  88%, 100% { transform: translate3d(0, 0, 0) scale(1); }
}

@keyframes customizeCursorClick {
  0%, 12%, 28%, 50%, 62%, 76%, 100% { box-shadow: 0 0 0 0 rgba(29, 93, 143, 0); opacity: 0.76; }
  18%, 44%, 60%, 68%, 72% { box-shadow: 0 0 0 0.55rem rgba(29, 93, 143, 0.14); opacity: 1; }
}

@keyframes customizeToastPulse {
  0%, 72%, 100% { opacity: 0; transform: translate(-50%, 0.45rem); }
  80%, 92% { opacity: 1; transform: translate(-50%, 0); }
}

@media (min-width: 720px) {
  .dashboard-scenario-tabs {
    display: inline-flex;
  }

  .dashboard-preview-grid {
    grid-template-columns: minmax(0, 1.25fr) minmax(17rem, 0.75fr);
  }
}

@media (min-width: 1100px) {
  .dashboard-block__screen--app-dashboard {
    grid-template-columns: 12.75rem minmax(0, 1fr);
  }
}

@media (max-width: 900px) {
  .dashboard-showcase,
  .dashboard-block__screen--app-dashboard {
    min-height: auto;
  }

  .dashboard-widget-stage {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dashboard-widget-card--large,
  .dashboard-widget-card--medium,
  .dashboard-widget-card--small {
    grid-column: span 1;
  }

  .dashboard-widget-cursor,
  .dashboard-widget-toast {
    display: none;
  }

  .dashboard-widget-card--moving {
    animation: widgetSubtleFloat 7s ease-in-out infinite;
  }
}

@media (max-width: 560px) {
  .dashboard-task-grid,
  .dashboard-snapshot-grid,
  .dashboard-widget-stage {
    grid-template-columns: 1fr;
  }

  .dashboard-ai-insight__body--ongoing {
    grid-template-columns: 1fr;
  }

  .dashboard-ai-insight__header,
  .dashboard-preview-section__header,
  .dashboard-preview-section__header--intelligence {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Actual dashboard color/icon language refinements for the landing preview. */
.dashboard-block__screen--app-dashboard {
  color: #0f172a;
}

.dashboard-app__main--real-preview {
  background:
    radial-gradient(circle at 12% 0%, rgba(58, 134, 255, 0.08), transparent 22rem),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.dashboard-ai-insight,
.dashboard-preview-section,
.dashboard-intelligence-demo,
.dashboard-task-card,
.dashboard-snapshot-card,
.dashboard-widget-card {
  border-color: rgba(226, 232, 240, 0.95);
  background: rgba(255, 255, 255, 0.94);
}

.dashboard-ai-insight__header span {
  gap: 0.45rem;
  background: linear-gradient(90deg, #ffbe0b, #ff006e);
}

.dashboard-ai-insight__header span i,
.dashboard-task-card__icon,
.dashboard-snapshot-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.dashboard-ai-insight__header span i {
  width: 1rem;
  height: 1rem;
}

.dashboard-ai-insight__header svg,
.dashboard-task-card__icon svg,
.dashboard-snapshot-card__icon svg {
  width: 1rem;
  height: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.dashboard-task-card__icon,
.dashboard-snapshot-card__icon {
  color: var(--demo-accent, #3a86ff);
  background: color-mix(in srgb, var(--demo-accent, #3a86ff) 13%, transparent);
}

.dashboard-task-card--blue,
.dashboard-snapshot-card--blue,
.dashboard-widget-card--blue { --demo-accent: #3a86ff; }

.dashboard-task-card--orange,
.dashboard-snapshot-card--orange,
.dashboard-widget-card--orange { --demo-accent: #fb5607; }

.dashboard-task-card--pink,
.dashboard-snapshot-card--pink,
.dashboard-widget-card--pink { --demo-accent: #ff006e; }

.dashboard-task-card--yellow,
.dashboard-snapshot-card--yellow,
.dashboard-widget-card--yellow { --demo-accent: #ffbe0b; }

.dashboard-task-card--green,
.dashboard-snapshot-card--green,
.dashboard-widget-card--green { --demo-accent: #10b981; }

.dashboard-widget-card--purple { --demo-accent: #8338ec; }

.dashboard-task-card small {
  background: color-mix(in srgb, var(--demo-accent, #fb5607) 12%, transparent);
  color: color-mix(in srgb, var(--demo-accent, #fb5607) 72%, #071a2f);
}

.dashboard-task-card__action {
  width: 100%;
  margin-top: 0.1rem;
  border: 0;
  border-radius: 0.75rem;
  background: #0f172a;
  color: #ffffff;
  padding: 0.58rem 0.72rem;
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.08);
}

.dashboard-task-card__action::after {
  content: ' →';
}

.dashboard-snapshot-card em {
  color: color-mix(in srgb, var(--demo-accent, #3a86ff) 64%, #334155);
  background: color-mix(in srgb, var(--demo-accent, #3a86ff) 10%, #f8fafc);
}

.dashboard-snapshot-card--blue .dashboard-snapshot-card__icon,
.dashboard-widget-card--blue .dashboard-widget-visual,
.dashboard-snapshot-card--orange .dashboard-snapshot-card__icon,
.dashboard-widget-card--orange .dashboard-widget-visual,
.dashboard-snapshot-card--pink .dashboard-snapshot-card__icon,
.dashboard-widget-card--pink .dashboard-widget-visual,
.dashboard-snapshot-card--yellow .dashboard-snapshot-card__icon,
.dashboard-widget-card--yellow .dashboard-widget-visual,
.dashboard-snapshot-card--green .dashboard-snapshot-card__icon,
.dashboard-widget-card--green .dashboard-widget-visual,
.dashboard-widget-card--purple .dashboard-widget-visual {
  background-color: color-mix(in srgb, var(--demo-accent, #3a86ff) 13%, transparent);
}

.dashboard-widget-card--moving {
  border-color: color-mix(in srgb, var(--demo-accent, #ffbe0b) 36%, rgba(226, 232, 240, 0.95));
}

.dashboard-widget-card__topline em {
  background: color-mix(in srgb, var(--demo-accent, #ffbe0b) 13%, transparent);
  color: color-mix(in srgb, var(--demo-accent, #ffbe0b) 72%, #071a2f);
}

.dashboard-widget-visual--donut span {
  background: conic-gradient(#3a86ff 0 58%, #fb5607 58% 82%, #ff006e 82% 100%);
}

.dashboard-widget-visual--line i {
  background: linear-gradient(180deg, #8338ec, #3a86ff);
}

.dashboard-widget-visual--heatmap span {
  background: rgba(255, 0, 110, 0.24);
}

.dashboard-widget-visual--heatmap span:nth-child(3n + 1) { background: rgba(16, 185, 129, 0.28); }
.dashboard-widget-visual--heatmap span:nth-child(3n + 2) { background: rgba(251, 86, 7, 0.3); }
.dashboard-widget-visual--brief span { background: rgba(16, 185, 129, 0.42); }
.dashboard-widget-visual--alerts span { background: rgba(255, 190, 11, 0.48); }
.dashboard-widget-visual--alerts span:nth-child(2) { background: rgba(255, 0, 110, 0.36); }
.dashboard-widget-visual--alerts span:nth-child(3) { background: rgba(58, 134, 255, 0.34); }

/* Kairos app-style landing demo polish. */
.pointer-dashboard-showcase.pointer-section-spacing {
  padding-block: clamp(3.25rem, 5.5vw, 5rem);
}

.pointer-dashboard-showcase__stack {
  gap: clamp(1rem, 2vw, 1.75rem);
}

.pointer-dashboard-showcase__copy {
  margin-bottom: 0;
}

.pointer-dashboard-showcase__demo-label {
  margin-top: 0.75rem;
}

.dashboard-showcase {
  min-height: clamp(34rem, 48vw, 44rem);
  font-family: var(--font-body);
}

.dashboard-block {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 1.5rem;
  background: #ffffff;
  padding: 0.75rem;
  box-shadow: 0 24px 70px rgba(26, 26, 26, 0.12), 0 8px 24px rgba(26, 26, 26, 0.08);
}

.dashboard-block__screen--app-dashboard {
  min-height: clamp(32rem, 44vw, 40rem);
  border-color: rgba(0, 0, 0, 0.08);
  background: #fafafa;
  color: #1a1a1a;
}

.dashboard-app__sidebar {
  gap: 1rem;
  border-right: 1px solid rgba(0, 0, 0, 0.08);
  background: #ffffff;
  color: #1a1a1a;
}

.dashboard-app__brand {
  color: #1a1a1a;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.dashboard-app__nav span {
  border: 1px solid transparent;
  background: transparent;
  color: #6b6b6b;
  font-size: 0.875rem;
  font-weight: 500;
}

.dashboard-app__nav span.is-active {
  border-color: rgba(0, 0, 0, 0.08);
  background: #f0f0f2;
  color: #1a1a1a;
}

.dashboard-app__main--real-preview {
  background:
    radial-gradient(circle at 12% 0%, rgba(48, 76, 103, 0.08), transparent 22rem),
    #fafafa;
}

.dashboard-app__eyebrow {
  color: #6b6b6b;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.dashboard-app__header--signed-in h3 {
  color: #1a1a1a;
  font-size: clamp(1.2rem, 1.7vw, 1.55rem);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.35;
}

.dashboard-ai-insight,
.dashboard-preview-section,
.dashboard-task-card,
.dashboard-snapshot-card {
  border-color: rgba(0, 0, 0, 0.08);
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(26, 26, 26, 0.05);
}

.dashboard-ai-insight.dashboard-ai-insight--ongoing {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.04), rgba(48, 76, 103, 0.08)),
    #ffffff;
}

.dashboard-ai-insight.dashboard-ai-insight--ongoing::before {
  background: linear-gradient(120deg, rgba(0, 0, 0, 0.1), transparent 34%, rgba(48, 76, 103, 0.16));
  opacity: 0.28;
}

.dashboard-ai-insight__header span {
  background: linear-gradient(to right, #000000, #304c67);
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 500;
  box-shadow: 0 10px 22px rgba(48, 76, 103, 0.16);
}

.dashboard-ai-insight__body--ongoing {
  border-color: rgba(48, 76, 103, 0.18);
  background: rgba(250, 250, 250, 0.86);
}

.dashboard-delay-card {
  border-color: color-mix(in srgb, var(--demo-accent, #3a86ff) 24%, rgba(0, 0, 0, 0.08));
  background:
    radial-gradient(circle at 100% 0%, color-mix(in srgb, var(--demo-accent, #3a86ff) 14%, transparent), transparent 58%),
    #ffffff;
  box-shadow: 0 8px 18px color-mix(in srgb, var(--demo-accent, #3a86ff) 8%, transparent);
}

.dashboard-delay-card--blue { --demo-accent: #3a86ff; }

.dashboard-delay-card__topline em,
.dashboard-delay-card__topline strong,
.dashboard-task-card small,
.dashboard-task-card__delay-meta em,
.dashboard-snapshot-card small,
.dashboard-snapshot-card em {
  font-weight: 500;
  letter-spacing: 0.04em;
}

.dashboard-delay-card__topline em {
  color: color-mix(in srgb, var(--demo-accent, #3a86ff) 70%, #1a1a1a);
}

.dashboard-delay-card__topline strong {
  background: #1a1a1a;
}

.dashboard-delay-card h4,
.dashboard-preview-section__header h4,
.dashboard-task-card strong,
.dashboard-snapshot-card strong {
  color: #1a1a1a;
  font-weight: 500;
}

.dashboard-delay-card h4 {
  font-size: 0.875rem;
  line-height: 1.25;
}

.dashboard-delay-card p,
.dashboard-task-card p {
  color: #6b6b6b;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.45;
}

.dashboard-delay-card p b {
  color: color-mix(in srgb, var(--demo-accent, #3a86ff) 72%, #1a1a1a);
  font-weight: 500;
}

.dashboard-preview-section__header h4 {
  font-size: 1rem;
  line-height: 1.4;
}

.dashboard-preview-section__header span {
  border-color: rgba(0, 0, 0, 0.08);
  background: #f5f5f5;
  color: #304c67;
  font-size: 0.75rem;
  font-weight: 500;
}

.dashboard-task-card {
  min-height: 9.1rem;
}

.dashboard-task-card strong {
  font-size: 0.875rem;
  line-height: 1.3;
}

.dashboard-task-card__delay-meta {
  border-color: color-mix(in srgb, var(--demo-accent, #3a86ff) 14%, rgba(0, 0, 0, 0.08));
  background: #fafafa;
}

.dashboard-task-card__delay-meta span {
  color: color-mix(in srgb, var(--demo-accent, #3a86ff) 72%, #1a1a1a);
  font-size: 0.875rem;
  font-weight: 500;
}

.dashboard-task-card__action {
  background: linear-gradient(to right, #000000, #304c67);
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.25;
}

.dashboard-snapshot-showcase {
  min-height: auto;
}

.dashboard-snapshot-card {
  min-height: 7rem;
}

.dashboard-snapshot-card small {
  color: #6b6b6b;
  font-size: 0.7rem;
}

.dashboard-snapshot-card strong {
  font-size: 1.35rem;
  line-height: 1.1;
}

.dashboard-app__main--decisions {
  background:
    radial-gradient(circle at 12% 0%, rgba(29, 93, 143, 0.1), transparent 22rem),
    linear-gradient(180deg, #fafafa 0%, #eef4fb 100%);
}

.dashboard-app__main--recovery {
  background:
    radial-gradient(circle at 12% 0%, rgba(16, 185, 129, 0.1), transparent 20rem),
    radial-gradient(circle at 100% 22%, rgba(48, 76, 103, 0.08), transparent 18rem),
    linear-gradient(180deg, #fbfdfc 0%, #eef6f3 100%);
}

.dashboard-ai-insight--owner-queue,
.dashboard-ai-insight--recovery-plan {
  position: relative;
  overflow: hidden;
}

.dashboard-ai-insight--owner-queue {
  background:
    linear-gradient(90deg, rgba(29, 93, 143, 0.06), rgba(48, 76, 103, 0.1)),
    #ffffff;
}

.dashboard-ai-insight--recovery-plan {
  background:
    linear-gradient(90deg, rgba(16, 185, 129, 0.08), rgba(48, 76, 103, 0.08)),
    #ffffff;
}

.dashboard-ai-insight--owner-queue .dashboard-ai-insight__header span {
  background: linear-gradient(to right, #071a2f, #1d5d8f);
}

.dashboard-ai-insight--recovery-plan .dashboard-ai-insight__header span {
  background: linear-gradient(to right, #064e3b, #304c67);
}

.dashboard-owner-queue {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.62rem;
  margin-top: 0.75rem;
}

.dashboard-owner-decision {
  --demo-accent: #3a86ff;
  display: grid;
  gap: 0.48rem;
  min-width: 0;
  border: 1px solid color-mix(in srgb, var(--demo-accent) 22%, rgba(0, 0, 0, 0.08));
  border-radius: 0.95rem;
  background:
    radial-gradient(circle at 100% 0%, color-mix(in srgb, var(--demo-accent) 16%, transparent), transparent 58%),
    #ffffff;
  padding: 0.72rem;
  box-shadow: 0 10px 22px color-mix(in srgb, var(--demo-accent) 9%, transparent);
}

.dashboard-owner-decision--orange { --demo-accent: #f97316; }
.dashboard-owner-decision--blue { --demo-accent: #3a86ff; }
.dashboard-owner-decision--yellow { --demo-accent: #f59e0b; }

.dashboard-owner-decision__topline {
  display: flex;
  align-items: center;
  gap: 0.42rem;
  min-width: 0;
}

.dashboard-owner-decision__topline span {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 1.45rem;
  height: 1.45rem;
  border-radius: 0.48rem;
  background: color-mix(in srgb, var(--demo-accent) 12%, #ffffff);
  color: color-mix(in srgb, var(--demo-accent) 72%, #1a1a1a);
}

.dashboard-owner-decision__topline svg,
.dashboard-owner-brief > span svg {
  width: 0.9rem;
  height: 0.9rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.dashboard-owner-decision__topline em {
  min-width: 0;
  overflow: hidden;
  color: color-mix(in srgb, var(--demo-accent) 72%, #1a1a1a);
  font-size: 0.66rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.dashboard-owner-decision__topline strong {
  margin-left: auto;
  border-radius: 999px;
  background: #1a1a1a;
  color: #ffffff;
  padding: 0.24rem 0.42rem;
  font-size: 0.66rem;
  font-weight: 700;
  line-height: 1;
}

.dashboard-owner-decision h4 {
  margin: 0;
  color: #1a1a1a;
  font-size: 0.82rem;
  font-weight: 560;
  letter-spacing: -0.01em;
  line-height: 1.26;
}

.dashboard-owner-decision p {
  margin: 0;
  color: #6b6b6b;
  font-size: 0.72rem;
  font-weight: 450;
  line-height: 1.38;
}

.dashboard-owner-decision__owner {
  display: grid;
  gap: 0.12rem;
  margin-top: 0.18rem;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
  padding-top: 0.52rem;
}

.dashboard-owner-decision__owner small,
.dashboard-owner-metric small,
.dashboard-recovery-summary small {
  color: #6b6b6b;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.dashboard-owner-decision__owner b {
  color: #1a1a1a;
  font-size: 0.76rem;
  font-weight: 650;
  line-height: 1.2;
}

.dashboard-owner-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.62rem;
  margin-top: 0.8rem;
}

.dashboard-owner-metric {
  display: grid;
  gap: 0.2rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 0.9rem;
  background: #fafafa;
  padding: 0.72rem;
}

.dashboard-owner-metric strong {
  color: #1a1a1a;
  font-size: 1.18rem;
  font-weight: 560;
  letter-spacing: -0.035em;
  line-height: 1;
}

.dashboard-owner-metric em {
  color: #6b6b6b;
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.25;
}

.dashboard-owner-brief {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.72rem;
  align-items: center;
  margin-top: 0.72rem;
  border: 1px solid rgba(29, 93, 143, 0.16);
  border-radius: 1rem;
  background:
    radial-gradient(circle at 100% 0%, rgba(29, 93, 143, 0.1), transparent 56%),
    #ffffff;
  padding: 0.85rem;
}

.dashboard-owner-brief > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 0.75rem;
  background: #071a2f;
  color: #ffffff;
}

.dashboard-owner-brief strong {
  display: block;
  color: #1a1a1a;
  font-size: 0.86rem;
  font-weight: 580;
  line-height: 1.25;
}

.dashboard-owner-brief p {
  margin: 0.18rem 0 0;
  color: #6b6b6b;
  font-size: 0.73rem;
  line-height: 1.42;
}

.dashboard-recovery-summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.9rem;
  align-items: center;
  margin-top: 0.8rem;
  border: 1px solid rgba(16, 185, 129, 0.18);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.86);
  padding: 0.92rem;
}

.dashboard-recovery-summary strong {
  display: block;
  margin-top: 0.18rem;
  color: #1a1a1a;
  font-size: 1.05rem;
  font-weight: 580;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.dashboard-recovery-summary p {
  margin: 0.28rem 0 0;
  color: #6b6b6b;
  font-size: 0.76rem;
  line-height: 1.42;
}

.dashboard-recovery-summary > span {
  border-radius: 999px;
  background: #064e3b;
  color: #ecfdf5;
  padding: 0.48rem 0.62rem;
  font-size: 0.72rem;
  font-weight: 750;
  white-space: nowrap;
}

.dashboard-recovery-options {
  display: grid;
  gap: 0.62rem;
  margin-top: 0.8rem;
}

.dashboard-recovery-option {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 0.95rem;
  background: #ffffff;
  padding: 0.75rem;
  box-shadow: 0 8px 18px rgba(26, 26, 26, 0.04);
}

.dashboard-recovery-option.is-recommended {
  border-color: rgba(16, 185, 129, 0.34);
  background:
    radial-gradient(circle at 100% 0%, rgba(16, 185, 129, 0.12), transparent 58%),
    #ffffff;
  box-shadow: 0 12px 24px rgba(16, 185, 129, 0.1);
}

.dashboard-recovery-option__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
}

.dashboard-recovery-option__header strong {
  color: #1a1a1a;
  font-size: 0.86rem;
  font-weight: 580;
  line-height: 1.25;
}

.dashboard-recovery-option__header span {
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.12);
  color: #047857;
  padding: 0.25rem 0.42rem;
  font-size: 0.62rem;
  font-weight: 780;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.dashboard-recovery-option__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.4rem;
  margin-top: 0.55rem;
}

.dashboard-recovery-option__grid small {
  display: grid;
  gap: 0.1rem;
  border-radius: 0.72rem;
  background: #fafafa;
  color: #6b6b6b;
  padding: 0.48rem;
  font-size: 0.66rem;
  font-weight: 520;
  line-height: 1.2;
}

.dashboard-recovery-option__grid b {
  color: #1a1a1a;
  font-size: 0.72rem;
  font-weight: 720;
}

.dashboard-recovery-option p {
  margin: 0.5rem 0 0;
  color: #6b6b6b;
  font-size: 0.72rem;
  line-height: 1.35;
}

.dashboard-recovery-approval {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.72rem;
}

.dashboard-recovery-approval span {
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.08);
  color: #064e3b;
  padding: 0.4rem 0.55rem;
  font-size: 0.68rem;
  font-weight: 720;
}

.dashboard-app__main--decisions > section,
.dashboard-app__main--recovery > section {
  animation: dashboardDemoSwap 0.28s ease both;
}

.dashboard-app__main--decisions > section:nth-of-type(2),
.dashboard-app__main--recovery > section:nth-of-type(2) {
  animation-delay: 0.04s;
}

@keyframes dashboardDemoSwap {
  from { opacity: 0; transform: translateY(0.5rem); }
  to { opacity: 1; transform: translateY(0); }
}

@media (min-width: 1100px) {
  .dashboard-block__screen--app-dashboard {
    grid-template-columns: 12rem minmax(0, 1fr);
  }
}

@media (max-width: 900px) {
  .dashboard-showcase,
  .dashboard-block__screen--app-dashboard {
    min-height: auto;
  }

  .dashboard-owner-queue,
  .dashboard-owner-metrics,
  .dashboard-recovery-option__grid {
    grid-template-columns: 1fr;
  }

  .dashboard-recovery-summary {
    grid-template-columns: 1fr;
  }
}

/* Cohere-inspired landing app preview: split copy left, live webapp preview right. */
.pointer-dashboard-showcase {
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 24%, rgba(48, 76, 103, 0.12), transparent 28rem),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.pointer-dashboard-showcase__stack--split {
  display: grid;
  align-items: center;
  gap: clamp(2.5rem, 5vw, 6rem);
}

.pointer-dashboard-showcase__stack--split .pointer-dashboard-showcase__copy {
  max-width: 38rem;
}

.pointer-dashboard-showcase__body {
  margin-top: 1.2rem;
  max-width: 34rem;
  color: rgba(7, 26, 47, 0.72);
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  line-height: 1.75;
}

.pointer-dashboard-showcase__benefits {
  display: grid;
  gap: 0.82rem;
  margin-top: 1.65rem;
}

.pointer-demo-benefit-card {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 0.86rem;
  width: 100%;
  border: 1px solid rgba(48, 76, 103, 0.13);
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, 0.78);
  color: #071a2f;
  cursor: pointer;
  padding: 1rem;
  text-align: left;
  box-shadow: 0 14px 34px rgba(7, 26, 47, 0.055);
  transition:
    border-color 0.22s ease,
    background 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease;
}

.pointer-demo-benefit-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(120deg, rgba(48, 76, 103, 0.12), transparent 34%, rgba(29, 93, 143, 0.14));
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}

.pointer-demo-benefit-card:hover,
.pointer-demo-benefit-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(48, 76, 103, 0.28);
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(7, 26, 47, 0.08);
}

.pointer-demo-benefit-card:focus-visible {
  outline: 3px solid rgba(110, 193, 228, 0.38);
  outline-offset: 3px;
}

.pointer-demo-benefit-card.is-active {
  border-color: rgba(48, 76, 103, 0.38);
  background: linear-gradient(135deg, #ffffff 0%, #f7fbff 100%);
  box-shadow: 0 22px 54px rgba(7, 26, 47, 0.1), inset 0 0 0 1px rgba(255, 255, 255, 0.92);
}

.pointer-demo-benefit-card.is-active::after {
  opacity: 1;
}

.pointer-demo-benefit-card__index {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 0.76rem;
  background: rgba(48, 76, 103, 0.08);
  color: #304c67;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: -0.02em;
}

.pointer-demo-benefit-card.is-active .pointer-demo-benefit-card__index {
  background: linear-gradient(135deg, #071a2f, #304c67);
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(48, 76, 103, 0.18);
}

.pointer-demo-benefit-card__content {
  position: relative;
  z-index: 1;
  display: grid;
  min-width: 0;
  gap: 0.28rem;
}

.pointer-demo-benefit-card__eyebrow {
  color: #1d5d8f;
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.pointer-demo-benefit-card strong {
  color: #071a2f;
  font-size: 1rem;
  font-weight: 780;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.pointer-demo-benefit-card small {
  color: rgba(7, 26, 47, 0.62);
  font-size: 0.88rem;
  font-weight: 560;
  line-height: 1.5;
}

.pointer-dashboard-showcase__benefit-detail {
  min-height: 4.25rem;
  margin-top: 0.9rem;
  border-left: 3px solid rgba(48, 76, 103, 0.26);
  color: rgba(7, 26, 47, 0.72);
  padding: 0.1rem 0 0.1rem 0.95rem;
  font-size: 0.98rem;
  font-weight: 620;
  line-height: 1.6;
}

.pointer-dashboard-showcase__stack--split .pointer-dashboard-showcase__visual {
  width: 100%;
  max-width: none;
  justify-self: end;
}

.pointer-dashboard-showcase__stack--split .dashboard-showcase {
  min-height: clamp(32rem, 41vw, 39rem);
}

.pointer-dashboard-showcase__stack--split .dashboard-block {
  transform-origin: center left;
}

.pointer-dashboard-showcase__stack--split .dashboard-mac-window {
  transform-origin: center left;
}

.dashboard-block__screen--app-dashboard {
  overflow: hidden;
}

.dashboard-app__sidebar--collapsed {
  align-items: center;
  gap: 1.1rem;
  padding: 1rem 0.55rem;
}

.dashboard-app__brand--collapsed {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.45rem;
  height: 2.45rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 0.9rem;
  background: linear-gradient(135deg, #000000, #304c67);
  color: #ffffff;
  font-size: 0.95rem;
  letter-spacing: 0;
}

.dashboard-app__nav--collapsed {
  width: 100%;
  justify-items: center;
  gap: 0.58rem;
}

.dashboard-app__nav--collapsed span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.45rem;
  height: 2.45rem;
  padding: 0;
  border-radius: 0.85rem;
}

.dashboard-app__nav--collapsed span i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1rem;
  height: 1rem;
}

.dashboard-app__nav--collapsed span svg {
  width: 1rem;
  height: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.dashboard-app__nav--collapsed span em {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.dashboard-preview-section--snapshot .dashboard-snapshot-showcase {
  min-height: 21rem;
  overflow: visible;
}

.dashboard-preview-section--snapshot .dashboard-preview-section__header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto 1.2rem;
}

.dashboard-preview-section--snapshot .dashboard-customize-trigger {
  grid-column: 2;
  justify-self: end;
  transform: translateX(-1.15rem);
}

.dashboard-preview-section--snapshot .dashboard-customize-panel {
  left: auto;
  right: 0;
  width: min(100%, 23rem);
}

.dashboard-preview-section--snapshot .dashboard-customize-cursor {
  top: -2.25rem;
  right: 2rem;
}

.dashboard-preview-section--snapshot .dashboard-customize-toast {
  bottom: 0.75rem;
}

.dashboard-intelligence-demo--widgets {
  overflow: hidden;
}

.dashboard-intelligence-demo--widgets .dashboard-widget-stage {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: minmax(6.75rem, auto);
  gap: 0.62rem;
}

.dashboard-intelligence-demo--widgets .dashboard-widget-card {
  min-height: 6.75rem;
  padding: 0.72rem;
}

.dashboard-intelligence-demo--widgets .dashboard-widget-card--large {
  grid-column: span 2;
}

.dashboard-intelligence-demo--widgets .dashboard-widget-visual {
  width: 2.85rem;
  height: 2.85rem;
}

.dashboard-intelligence-demo--widgets .dashboard-widget-card--moving {
  animation-name: widgetDragMoveLanding;
}

.dashboard-intelligence-demo--widgets .dashboard-widget-cursor {
  left: 39%;
  top: 18%;
  animation-name: widgetCursorPathLanding;
}

.dashboard-intelligence-demo--widgets .dashboard-widget-toast {
  top: 0.35rem;
  right: 0.45rem;
}

@keyframes widgetCursorPathLanding {
  0%, 12% { transform: translate3d(0, 0, 0) scale(1); }
  18%, 28% { transform: translate3d(0.1rem, 0.08rem, 0) scale(0.94); }
  46%, 58% { transform: translate3d(8.2rem, 7.15rem, 0) scale(0.94); }
  70% { transform: translate3d(8.2rem, 7.15rem, 0) scale(1); }
  84%, 100% { transform: translate3d(0, 0, 0) scale(1); }
}

@keyframes widgetDragMoveLanding {
  0%, 14% { transform: translate3d(0, 0, 0) rotate(0deg); }
  18%, 30% { transform: translate3d(0, 0, 0) rotate(-0.8deg) scale(1.025); }
  48%, 60% { transform: translate3d(7.85rem, 6.85rem, 0) rotate(-0.8deg) scale(1.025); }
  68% { transform: translate3d(7.85rem, 6.85rem, 0) rotate(0deg) scale(1); }
  78% { transform: translate3d(0, 0.35rem, 0) rotate(0deg) scale(0.99); }
  84%, 100% { transform: translate3d(0, 0, 0) rotate(0deg) scale(1); }
}

@keyframes customizeCursorPath {
  0%, 10% { transform: translate3d(0, 0, 0) scale(1); }
  16%, 24% { transform: translate3d(0.1rem, 0.08rem, 0) scale(0.94); }
  36%, 48% { transform: translate3d(-0.6rem, 11.35rem, 0) scale(0.94); }
  56%, 64% { transform: translate3d(-0.6rem, 11.35rem, 0) scale(0.94); }
  70%, 77% { transform: translate3d(-7.35rem, 17.25rem, 0) scale(0.9); }
  78%, 82% { transform: translate3d(-7.35rem, 17.25rem, 0) scale(0.86); }
  86%, 92% { transform: translate3d(-15.95rem, 9.3rem, 0) scale(0.86); }
  96%, 100% { transform: translate3d(0, 0, 0) scale(1); }
}

@keyframes customizeCursorClick {
  0%, 12%, 28%, 50%, 62%, 76%, 94%, 100% { box-shadow: 0 0 0 0 rgba(29, 93, 143, 0); opacity: 0.76; }
  18%, 44%, 60%, 68%, 72% { box-shadow: 0 0 0 0.55rem rgba(29, 93, 143, 0.14); opacity: 1; }
  78%, 92% { box-shadow: 0 0 0 0.42rem rgba(255, 0, 110, 0.12); opacity: 1; }
}

@keyframes addedSnapshotMoveToFront {
  0%, 68%, 96%, 100% { opacity: 0; transform: translate(0, 0.55rem) scale(0.94); }
  74%, 79% { opacity: 1; transform: translate(0, 0) scale(1.04); box-shadow: 0 18px 36px rgba(255, 0, 110, 0.18), 0 0 0 3px rgba(255, 0, 110, 0.1); }
  86%, 92% { opacity: 1; transform: translate(calc(-100% - 0.7rem), calc(-100% - 0.7rem)) scale(1.04); box-shadow: 0 22px 44px rgba(255, 0, 110, 0.2), 0 0 0 3px rgba(255, 0, 110, 0.1); }
}

@media (min-width: 900px) {
  .dashboard-block__screen--app-dashboard {
    grid-template-columns: 4.65rem minmax(0, 1fr) !important;
  }

  .dashboard-app__sidebar--collapsed {
    display: flex;
  }
}

@media (min-width: 1100px) {
  .pointer-dashboard-showcase__stack--split {
    grid-template-columns: minmax(22rem, 0.72fr) minmax(48rem, 1.28fr);
  }

  .pointer-dashboard-showcase__stack--split .pointer-dashboard-showcase__visual {
    width: min(58vw, 62rem);
    margin-right: clamp(-5rem, -3.5vw, -2rem);
  }

  .pointer-dashboard-showcase__stack--split .dashboard-mac-window {
    transform: perspective(1800px) translateX(4%) rotateY(-3deg) rotateX(1deg);
  }
}

@media (max-width: 899px) {
  .dashboard-app__sidebar--collapsed {
    display: none;
  }

  .dashboard-intelligence-demo--widgets .dashboard-widget-stage {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .dashboard-intelligence-demo--widgets .dashboard-widget-stage {
    grid-template-columns: 1fr;
  }

  .dashboard-intelligence-demo--widgets .dashboard-widget-card--large,
  .dashboard-intelligence-demo--widgets .dashboard-widget-card--medium,
  .dashboard-intelligence-demo--widgets .dashboard-widget-card--small {
    grid-column: span 1;
  }

  .dashboard-mac-window__chrome {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .dashboard-mac-window__status {
    display: none;
  }
}

/* Demo animation sync: cursor latches to the widget while it is dragged, then holds the final layout. */
.dashboard-snapshot-card--added,
.dashboard-snapshot-card--active-projects,
.dashboard-snapshot-card--delayed-projects,
.dashboard-snapshot-card--escalations,
.dashboard-customize-trigger,
.dashboard-customize-trigger::after,
.dashboard-customize-panel,
.dashboard-customize-option,
.dashboard-customize-option:nth-child(4),
.dashboard-customize-option:nth-child(4) .dashboard-customize-toggle,
.dashboard-customize-option:nth-child(4) .dashboard-customize-toggle i,
.dashboard-customize-save,
.dashboard-customize-cursor,
.dashboard-customize-cursor span,
.dashboard-customize-toast {
  animation-duration: 11s;
}

.dashboard-snapshot-card--added {
  overflow: visible;
}

.dashboard-snapshot-card--added::before,
.dashboard-snapshot-card--added::after {
  content: '';
  position: absolute;
  z-index: 12;
  pointer-events: none;
  opacity: 0;
  animation: addedSnapshotCursorLatch 11s ease infinite;
}

.dashboard-snapshot-card--added::before {
  left: 0.42rem;
  top: 0.48rem;
  width: 0;
  height: 0;
  border-left: 0.52rem solid #071a2f;
  border-top: 0.84rem solid transparent;
  border-bottom: 0.24rem solid transparent;
  transform: rotate(-24deg);
  filter: drop-shadow(0 10px 16px rgba(15, 23, 42, 0.24));
}

.dashboard-snapshot-card--added::after {
  left: 1.05rem;
  top: 1.1rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: #ff006e;
  box-shadow: 0 0 0 0 rgba(255, 0, 110, 0.22);
}

@keyframes customizePanelOpen {
  0%, 22%, 66%, 100% { opacity: 0; transform: translateY(-0.65rem) scale(0.96); }
  28%, 62% { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes customizeOptionRise {
  0%, 26%, 66%, 100% { opacity: 0; transform: translateY(0.45rem); }
  32%, 62% { opacity: 1; transform: translateY(0); }
}

@keyframes customizeFourthOptionRise {
  0%, 26%, 66%, 100% { opacity: 0; transform: translateY(0.45rem); }
  32%, 44% { opacity: 1; transform: translateY(0); border-color: rgba(226, 232, 240, 0.95); }
  48%, 62% { opacity: 1; transform: translateY(0); border-color: color-mix(in srgb, var(--demo-accent, #ff006e) 42%, rgba(226, 232, 240, 0.95)); box-shadow: 0 10px 22px color-mix(in srgb, var(--demo-accent, #ff006e) 12%, transparent); }
}

@keyframes customizeToggleTrack {
  0%, 46%, 66%, 100% { background: rgba(148, 163, 184, 0.28); box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.24); }
  50%, 62% { background: #3a86ff; box-shadow: inset 0 0 0 1px rgba(58, 134, 255, 0.22); }
}

@keyframes customizeToggleKnob {
  0%, 46%, 66%, 100% { transform: translateX(0); }
  50%, 62% { transform: translateX(0.92rem); }
}

@keyframes customizeSavePress {
  0%, 56%, 66%, 100% { transform: translateY(0) scale(1); background: #0f172a; }
  60%, 64% { transform: translateY(1px) scale(0.985); background: #1d5d8f; }
}

@keyframes customizeCursorPath {
  0%, 10% { opacity: 1; transform: translate3d(0, 0, 0) scale(1); }
  16%, 22% { opacity: 1; transform: translate3d(0.1rem, 0.08rem, 0) scale(0.94); }
  34%, 46% { opacity: 1; transform: translate3d(0.05rem, 16.3rem, 0) scale(0.94); }
  52%, 58% { opacity: 1; transform: translate3d(0.05rem, 16.3rem, 0) scale(0.94); }
  62%, 64% { opacity: 1; transform: translate3d(-7.35rem, 17.25rem, 0) scale(0.9); }
  66%, 99% { opacity: 0; transform: translate3d(-7.35rem, 17.25rem, 0) scale(0.86); }
  100% { opacity: 0; transform: translate3d(0, 0, 0) scale(1); }
}

@keyframes customizeCursorClick {
  0%, 12%, 28%, 50%, 66%, 100% { box-shadow: 0 0 0 0 rgba(29, 93, 143, 0); opacity: 0.76; }
  18%, 42%, 54%, 62% { box-shadow: 0 0 0 0.55rem rgba(29, 93, 143, 0.14); opacity: 1; }
}

@keyframes addedSnapshotCursorLatch {
  0%, 63%, 99%, 100% { opacity: 0; }
  66%, 96% { opacity: 1; }
  68%, 73% { box-shadow: 0 0 0 0.52rem rgba(255, 0, 110, 0.12); }
}

@keyframes addedSnapshotMoveToFront {
  0%, 62%, 100% { opacity: 0; transform: translate(0, 0.55rem) scale(0.94); }
  66%, 68% { opacity: 1; transform: translate(0, 0) scale(1.04); box-shadow: 0 18px 36px rgba(255, 0, 110, 0.18), 0 0 0 3px rgba(255, 0, 110, 0.1); }
  73%, 99% { opacity: 1; transform: translate(calc(-100% - 0.7rem), calc(-100% - 0.7rem)) scale(1.04); box-shadow: 0 22px 44px rgba(255, 0, 110, 0.2), 0 0 0 3px rgba(255, 0, 110, 0.1); }
}

@keyframes activeProjectsYieldSlot {
  0%, 68%, 100% { transform: translateX(0); }
  73%, 99% { transform: translateX(calc(100% + 0.7rem)); }
}

@keyframes delayedProjectsYieldSlot {
  0%, 68%, 100% { transform: translate(0, 0); }
  73%, 99% { transform: translate(calc(-100% - 0.7rem), calc(100% + 0.7rem)); }
}

@keyframes escalationsYieldSlot {
  0%, 68%, 100% { transform: translateX(0); }
  73%, 99% { transform: translateX(calc(100% + 0.7rem)); }
}

@keyframes customizeToastPulse {
  0%, 72%, 100% { opacity: 0; transform: translate(-50%, 0.45rem); }
  76%, 96% { opacity: 1; transform: translate(-50%, 0); }
}

/* Scale-inspired demo preview left panel. */
.pointer-dashboard-showcase__stack--split .pointer-dashboard-showcase__copy {
  max-width: 46rem;
}

.pointer-dashboard-showcase__copy {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(201, 216, 230, 0.86);
  border-radius: clamp(1.5rem, 3vw, 2.5rem);
  background:
    radial-gradient(circle at 14% 18%, rgba(110, 193, 228, 0.2), transparent 26rem),
    radial-gradient(circle at 86% 82%, rgba(29, 93, 143, 0.08), transparent 24rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(247, 251, 255, 0.88) 100%);
  color: #071a2f;
  padding: clamp(2rem, 5vw, 4.8rem) clamp(1.45rem, 4vw, 3.65rem);
  box-shadow: 0 28px 76px rgba(7, 26, 47, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.pointer-dashboard-showcase__copy::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(29, 93, 143, 0.08), transparent 36%);
  opacity: 0.58;
  pointer-events: none;
}

.pointer-dashboard-showcase__copy > * {
  position: relative;
  z-index: 1;
}

.pointer-dashboard-showcase__sr-title,
.pointer-dashboard-showcase__benefit-detail {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.pointer-dashboard-showcase__benefits {
  display: grid;
  margin-top: 0;
  gap: 0;
}

.pointer-demo-benefit-card {
  position: relative;
  display: block;
  width: 100%;
  border: 0;
  border-top: 1px solid rgba(201, 216, 230, 0.74);
  border-radius: 0;
  background: transparent;
  color: rgba(7, 26, 47, 0.34);
  cursor: pointer;
  padding: clamp(1.65rem, 3.5vw, 2.75rem) 0;
  text-align: left;
  box-shadow: none;
  transition: color 0.28s ease, opacity 0.28s ease;
}

.pointer-demo-benefit-card:last-child {
  border-bottom: 1px solid rgba(201, 216, 230, 0.74);
}

.pointer-demo-benefit-card::after {
  display: none;
}

.pointer-demo-benefit-card:hover,
.pointer-demo-benefit-card:focus-visible {
  color: rgba(7, 26, 47, 0.72);
  transform: none;
  background: transparent;
  box-shadow: none;
}

.pointer-demo-benefit-card:focus-visible {
  outline: 2px solid rgba(29, 93, 143, 0.34);
  outline-offset: 0.45rem;
}

.pointer-demo-benefit-card.is-active {
  border-color: rgba(201, 216, 230, 0.84);
  background: transparent;
  color: #071a2f;
  box-shadow: none;
}

.pointer-demo-benefit-card__content {
  position: relative;
  z-index: 1;
  display: grid;
  min-width: 0;
  gap: clamp(0.8rem, 1.2vw, 1.15rem);
}

.pointer-demo-benefit-card strong {
  color: currentColor;
  font-size: clamp(1.75rem, 3.1vw, 2.45rem);
  font-weight: 560;
  letter-spacing: -0.055em;
  line-height: 1.04;
  transition: color 0.28s ease;
}

.pointer-demo-benefit-card small {
  display: block;
  max-width: 38rem;
  color: rgba(7, 26, 47, 0.4);
  font-size: clamp(1rem, 1.65vw, 1.32rem);
  font-weight: 600;
  line-height: 1.45;
  transition: color 0.28s ease;
}

.pointer-demo-benefit-card.is-active small {
  color: rgba(7, 26, 47, 0.76);
}

@media (min-width: 1100px) {
  .pointer-dashboard-showcase__stack--split {
    grid-template-columns: minmax(30rem, 0.82fr) minmax(46rem, 1.18fr);
  }
}

/* Reference-inspired final demo-call CTA. Scoped separately from the legacy
   pointer-final-cta card so this full-bleed section can close the landing page. */
.pointer-final-demo-cta {
  position: relative;
  min-height: clamp(38rem, 78vh, 58rem);
  overflow: hidden;
  background: #000000;
  color: #ffffff;
  isolation: isolate;
}

.pointer-final-demo-cta::before,
.pointer-final-demo-cta::after {
  content: '';
  position: absolute;
  inset-inline: 0;
  z-index: 0;
  pointer-events: none;
}

.pointer-final-demo-cta::before {
  top: 0;
  height: 45%;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.08), transparent 17rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 68%);
  opacity: 0.7;
}

.pointer-final-demo-cta::after {
  bottom: 0;
  height: 38%;
  background: radial-gradient(ellipse at 50% 100%, rgba(255, 255, 255, 0.035), transparent 62%);
}

.pointer-final-demo-cta__decor {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.pointer-final-demo-cta__disc {
  position: absolute;
  top: clamp(-4.8rem, -6vw, -2.5rem);
  display: block;
  width: clamp(4.2rem, 7.5vw, 7rem);
  aspect-ratio: 1;
  opacity: 0.9;
}

.pointer-final-demo-cta__disc--solid {
  left: 41%;
  width: clamp(3.8rem, 5.4vw, 5rem);
  border-radius: 0;
  background: #ffffff;
}

.pointer-final-demo-cta__disc--grid {
  left: 49%;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  background:
    radial-gradient(circle at center, transparent 0 38%, rgba(255, 255, 255, 0.85) 39% 40%, transparent 41%),
    repeating-radial-gradient(circle at center, transparent 0 0.7rem, rgba(255, 255, 255, 0.78) 0.72rem 0.78rem, transparent 0.8rem 1.35rem),
    repeating-linear-gradient(90deg, transparent 0 1rem, rgba(255, 255, 255, 0.66) 1.02rem 1.08rem, transparent 1.1rem 2rem);
}

.pointer-final-demo-cta__disc--mesh {
  right: 40%;
  border-radius: 999px;
  background:
    repeating-radial-gradient(circle at center, #ffffff 0 0.42rem, transparent 0.45rem 0.86rem),
    #ffffff;
  mask-image: radial-gradient(circle, black 0 58%, transparent 60%);
  opacity: 0.96;
}

.pointer-final-demo-cta__inner {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: inherit;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-block: clamp(9rem, 17vh, 14rem) clamp(7rem, 12vh, 10rem);
  text-align: center;
}

.pointer-final-demo-cta__rule {
  position: absolute;
  top: clamp(4.5rem, 10vh, 8.5rem);
  left: clamp(1.5rem, 20vw, 30rem);
  right: clamp(1.5rem, 20vw, 30rem);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.13) 12%, rgba(255, 255, 255, 0.18) 50%, rgba(255, 255, 255, 0.13) 88%, transparent);
}

.pointer-final-demo-cta__title {
  display: grid;
  gap: 0.05em;
  max-width: min(90vw, 77rem);
  margin: clamp(1rem, 3vw, 3.25rem) auto 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: clamp(3.4rem, 8.3vw, 8.25rem);
  font-weight: 250;
  letter-spacing: -0.085em;
  line-height: 0.95;
}

.pointer-final-demo-cta__title span {
  display: block;
}

.pointer-final-demo-cta__title em {
  color: #ffffff;
  font-style: normal;
  font-weight: 300;
  letter-spacing: -0.09em;
}

.pointer-final-demo-cta__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: clamp(3rem, 5.5vw, 5.5rem);
}

.pointer-final-demo-cta__primary,
.pointer-final-demo-cta__secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  border-radius: 999px;
  color: #ffffff;
  font-size: clamp(0.98rem, 1.15vw, 1.18rem);
  font-weight: 700;
  line-height: 1;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.pointer-final-demo-cta__primary {
  min-height: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.08));
  padding: 0.85rem 1.45rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 16px 38px rgba(0, 0, 0, 0.32);
  cursor: pointer;
}

.pointer-final-demo-cta__primary:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.42);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.11));
}

.pointer-final-demo-cta__secondary {
  border: 0;
  background: transparent;
  padding: 0.85rem 0.25rem;
}

.pointer-final-demo-cta__secondary:hover {
  transform: translateY(-1px);
  color: rgba(255, 255, 255, 0.78);
}

.pointer-final-demo-cta__primary:focus-visible,
.pointer-final-demo-cta__secondary:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.62);
  outline-offset: 4px;
}

@media (min-width: 640px) {
  .pointer-final-demo-cta__actions {
    flex-direction: row;
    gap: 2rem;
  }
}

@media (max-width: 720px) {
  .pointer-final-demo-cta {
    min-height: 34rem;
  }

  .pointer-final-demo-cta__disc--solid { left: 28%; }
  .pointer-final-demo-cta__disc--grid { left: 46%; }
  .pointer-final-demo-cta__disc--mesh { right: 20%; }

  .pointer-final-demo-cta__title {
    max-width: 12ch;
  }
}

/* Kairos theme refinement for the final CTA: keep the cinematic reference
   composition, but use Kairos blue/navy, mist, and product-button language. */
.pointer-final-demo-cta {
  background:
    radial-gradient(circle at 14% 14%, rgba(110, 193, 228, 0.26), transparent 28rem),
    radial-gradient(circle at 88% 18%, rgba(29, 93, 143, 0.32), transparent 30rem),
    radial-gradient(circle at 50% 100%, rgba(247, 251, 255, 0.08), transparent 34rem),
    linear-gradient(180deg, #071a2f 0%, #0b2948 48%, #005b96 100%);
  color: #f7fbff;
}

.pointer-final-demo-cta::before {
  background:
    linear-gradient(rgba(223, 244, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(223, 244, 255, 0.06) 1px, transparent 1px),
    radial-gradient(circle at 50% 0%, rgba(110, 193, 228, 0.18), transparent 22rem);
  background-size: 52px 52px, 52px 52px, auto;
  height: 100%;
  opacity: 0.52;
  mask-image: radial-gradient(circle at 50% 38%, black, transparent 72%);
}

.pointer-final-demo-cta::after {
  background: linear-gradient(180deg, transparent, rgba(7, 26, 47, 0.38));
}

.pointer-final-demo-cta__disc {
  opacity: 0.78;
  filter: drop-shadow(0 18px 42px rgba(2, 8, 23, 0.22));
}

.pointer-final-demo-cta__disc--solid {
  border-radius: 20px;
  background: linear-gradient(135deg, #dff4ff 0%, #6ec1e4 48%, #1d5d8f 100%);
}

.pointer-final-demo-cta__disc--grid {
  border-color: rgba(223, 244, 255, 0.72);
  background:
    radial-gradient(circle at center, transparent 0 38%, rgba(223, 244, 255, 0.74) 39% 40%, transparent 41%),
    repeating-radial-gradient(circle at center, transparent 0 0.7rem, rgba(110, 193, 228, 0.72) 0.72rem 0.78rem, transparent 0.8rem 1.35rem),
    radial-gradient(circle, rgba(29, 93, 143, 0.34), transparent 68%);
}

.pointer-final-demo-cta__disc--mesh {
  background:
    repeating-radial-gradient(circle at center, rgba(223, 244, 255, 0.95) 0 0.38rem, transparent 0.42rem 0.86rem),
    rgba(110, 193, 228, 0.7);
}

.pointer-final-demo-cta__rule {
  background: linear-gradient(90deg, transparent, rgba(223, 244, 255, 0.18) 12%, rgba(110, 193, 228, 0.42) 50%, rgba(223, 244, 255, 0.18) 88%, transparent);
}

.pointer-final-demo-cta__title {
  color: rgba(223, 244, 255, 0.64);
  text-shadow: 0 18px 54px rgba(2, 8, 23, 0.34);
}

.pointer-final-demo-cta__title em {
  color: #ffffff;
  text-shadow: 0 0 32px rgba(110, 193, 228, 0.26);
}

.pointer-final-demo-cta__primary.pointer-btn {
  min-height: 3.25rem;
  border-color: var(--brand-ink);
  background: var(--brand-ink);
  color: #ffffff;
  padding: 0.9rem 1.55rem;
  box-shadow: 0 1px 2px rgba(21, 64, 107, 0.18);
}

.pointer-final-demo-cta__primary.pointer-btn:hover {
  transform: translateY(-1px);
  border-color: color-mix(in srgb, var(--brand-ink) 90%, #000);
  background: color-mix(in srgb, var(--brand-ink) 90%, #000);
  opacity: 1;
}

/* Transparent final CTA: remove the dark band and top circle decorations. */
.pointer-final-demo-cta {
  background: transparent;
  color: #071a2f;
}

.pointer-final-demo-cta::before,
.pointer-final-demo-cta::after,
.pointer-final-demo-cta__decor {
  display: none;
}

.pointer-final-demo-cta__rule {
  background: linear-gradient(90deg, transparent, rgba(7, 26, 47, 0.12) 12%, rgba(29, 93, 143, 0.22) 50%, rgba(7, 26, 47, 0.12) 88%, transparent);
}

.pointer-final-demo-cta__title {
  color: rgba(7, 26, 47, 0.64);
  text-shadow: none;
}

.pointer-final-demo-cta__title em {
  color: #071a2f;
  text-shadow: none;
}

/* Landing app preview sizing lock: match the right preview to the left panel. */
.pointer-dashboard-showcase__stack--split {
  align-items: stretch;
}

.pointer-dashboard-showcase__stack--split .pointer-dashboard-showcase__copy,
.pointer-dashboard-showcase__stack--split .pointer-dashboard-showcase__visual {
  height: 100%;
}

.pointer-dashboard-showcase__stack--split .pointer-dashboard-showcase__visual {
  display: flex;
  align-items: stretch;
}

.pointer-dashboard-showcase__stack--split .dashboard-showcase {
  flex: 1 1 auto;
  align-items: stretch;
  height: 100%;
  min-height: 0;
}

.pointer-dashboard-showcase__stack--split .dashboard-mac-window {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.pointer-dashboard-showcase__stack--split .dashboard-mac-window__body,
.pointer-dashboard-showcase__stack--split .dashboard-block,
.pointer-dashboard-showcase__stack--split .dashboard-block__screen--app-dashboard {
  min-height: 0;
}

.pointer-dashboard-showcase__stack--split .dashboard-mac-window__body,
.pointer-dashboard-showcase__stack--split .dashboard-block {
  display: flex;
  flex: 1 1 auto;
}

.pointer-dashboard-showcase__stack--split .dashboard-block__screen--app-dashboard {
  flex: 1 1 auto;
  height: 100%;
  min-height: 0 !important;
}

.pointer-dashboard-showcase__stack--split .dashboard-app__main--real-preview {
  grid-template-rows: auto auto minmax(0, 1fr);
  min-height: 0;
  overflow: hidden;
}

@media (max-width: 899px) {
  .pointer-dashboard-showcase__stack--split .pointer-dashboard-showcase__copy,
  .pointer-dashboard-showcase__stack--split .pointer-dashboard-showcase__visual,
  .pointer-dashboard-showcase__stack--split .dashboard-showcase,
  .pointer-dashboard-showcase__stack--split .dashboard-mac-window,
  .pointer-dashboard-showcase__stack--split .dashboard-block__screen--app-dashboard {
    height: auto;
    min-height: auto;
  }

  .pointer-dashboard-showcase__stack--split .dashboard-app__main--real-preview {
    grid-template-rows: none;
    overflow: visible;
  }
}

/* Landing viewport polish: compact client showcase, full 1080p first fold, and responsive scroll cue. */
.pointer-trust-strip__inner {
  padding-block: 1.2rem;
}

.pointer-trust-marquee {
  margin-top: 0.75rem;
}

.pointer-trust-marquee__card {
  min-height: 34px;
  padding-block: 0.28rem;
}

.pointer-trust-marquee__logo {
  max-height: 34px;
}

.pointer-scroll-cue__arrow {
  touch-action: manipulation;
}

@media (min-width: 1800px) and (max-width: 2100px) and (min-height: 980px) and (max-height: 1200px) {
  .pointer-hero {
    min-height: calc(100vh - 56px);
    padding-top: 4.25rem;
    padding-bottom: 4.35rem;
  }

  .pointer-scroll-cue {
    bottom: 4.25rem;
  }
}

/* ============================================================================
   === lp animation toolkit ===
   Five reusable, CSS-only animation utilities for the redesigned landing tour
   and sections. No JS animation anywhere. Every animated element uses one of
   these plus an optional --lp-delay custom property for staggering. SVG path
   draws rely on a fixed pathLength="100" attribute on the path, so the CSS is
   always dasharray:100 / dashoffset:100->0 with no JS measurement.
   ============================================================================ */

@keyframes lpFadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes lpGrowBar {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}
@keyframes lpGrowBarVertical {
  from { transform: scaleY(0); }
  to   { transform: scaleY(1); }
}
@keyframes lpDraw {
  from { stroke-dashoffset: 100; }
  to   { stroke-dashoffset: 0; }
}
@keyframes lpPop {
  from { opacity: 0; transform: scale(0.6); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes lpPulse {
  0%, 100% { opacity: 0.55; transform: scale(0.85); }
  50%      { opacity: 1;    transform: scale(1.1); }
}

.lp-fade-up {
  opacity: 0;
  animation: lpFadeUp 0.48s ease-out forwards;
  animation-delay: var(--lp-delay, 0ms);
}
.lp-grow-bar {
  transform: scaleX(0);
  transform-origin: left center;
  animation: lpGrowBar 0.7s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
  animation-delay: var(--lp-delay, 0ms);
}
.lp-grow-bar--vertical {
  transform: scaleY(0);
  transform-origin: bottom center;
  animation-name: lpGrowBarVertical;
}
.lp-draw {
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  animation: lpDraw 0.9s ease forwards;
  animation-delay: var(--lp-delay, 0ms);
}
.lp-pop {
  opacity: 0;
  animation: lpPop 0.32s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  animation-delay: var(--lp-delay, 0ms);
}
.lp-pulse {
  animation: lpPulse 2.4s ease-in-out infinite;
  animation-delay: var(--lp-delay, 0ms);
  transform-box: fill-box;
  transform-origin: center;
}

/* No prefers-reduced-motion override here — a deliberate exception for the
   landing product tour: OS "animation effects off" was rendering
   the product tour completely static for its target audience. The motion is
   small-area and contained (no parallax / viewport-scale movement). */

/* ============================================================================
   === Product tour shell ===
   Section heading + chapter tabs live in a compact left rail; the right stage
   gets the width. Inside the mock-browser window the screen is a faithful
   miniature of the real app shell: light sidebar, "All Portfolios" topbar, page
   title + header action — matching AppLayout's look, not a stylized mock.
   ============================================================================ */

.lp-tour {
  display: grid;
  grid-template-columns: minmax(15rem, 0.55fr) minmax(0, 1.65fr);
  gap: clamp(1.25rem, 2.6vw, 2.4rem);
  align-items: start;
}

.lp-tour__rail {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.lp-tour__heading {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.lp-tour__title {
  margin: 0;
  font-size: clamp(1.45rem, 2.2vw, 1.9rem);
  font-weight: 780;
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: #0d2742;
}

.lp-tour__tabs {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.lp-tour__tab {
  display: block;
  width: 100%;
  text-align: left;
  border: 1px solid rgba(154, 168, 184, 0.26);
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.6);
  padding: 0.8rem 0.95rem;
  cursor: pointer;
  transition: border-color 0.22s ease, background 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

.lp-tour__tab:hover,
.lp-tour__tab:focus-visible {
  border-color: rgba(29, 93, 143, 0.5);
  background: rgba(255, 255, 255, 0.92);
  outline: none;
}

.lp-tour__tab.is-active {
  border-color: #1d5d8f;
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(7, 26, 47, 0.12);
  transform: translateY(-1px);
}

.lp-tour__tab-eyebrow {
  display: block;
  font-size: 0.9rem;
  font-weight: 760;
  color: #0d2742;
  line-height: 1.3;
}

.lp-tour__tab-copy {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.78rem;
  line-height: 1.48;
  color: rgba(13, 39, 66, 0.66);
}

.lp-tour__tab.is-active .lp-tour__tab-copy {
  color: rgba(13, 39, 66, 0.82);
}

.lp-tour__stage {
  position: relative;
  perspective: 1800px;
}

/* ── Miniature app shell (styled to resemble the real product chrome) ── */
.dashboard-mac-window__body--tour {
  padding: 0;
  background: #f7f8fa;
}

.lp-app {
  display: flex;
  min-height: 0;
}

.lp-app-side {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  width: 2.9rem;
  padding: 0.7rem 0.35rem;
  background: #ffffff;
  border-right: 1px solid #e8eaee;
}

.lp-app-side__brand {
  display: grid;
  place-items: center;
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 0.5rem;
  background: #16273b;
  color: #ffffff;
  font-weight: 800;
  font-size: 0.85rem;
  margin-bottom: 0.35rem;
}

.lp-app-side__item {
  display: grid;
  place-items: center;
  width: 1.9rem;
  height: 1.9rem;
  border-radius: 0.5rem;
  color: #7a8694;
  transition: background 0.2s ease, color 0.2s ease;
}

.lp-app-side__item.is-active {
  background: #eef1f5;
  color: #16273b;
}

.lp-app-side__item svg {
  width: 1rem;
  height: 1rem;
}

.lp-app-main {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.lp-app-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 2.3rem;
  padding: 0 0.9rem;
  background: #ffffff;
  border-bottom: 1px solid #e8eaee;
}

.lp-app-topbar__portfolios {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.66rem;
  font-weight: 700;
  color: #243b53;
}

.lp-app-topbar__portfolios svg {
  width: 0.55rem;
  height: 0.4rem;
  fill: none;
  stroke: #7a8694;
  stroke-width: 1.6;
}

.lp-app-topbar__right {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.lp-app-topbar__bell {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  border: 1.5px solid #9aa5b1;
}

.lp-app-topbar__avatar {
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #c8d2dc, #9aa8b8);
  border: 1px solid #e8eaee;
}

.lp-app-page {
  flex: 1;
  min-width: 0;
  padding: 0.85rem 1rem 1rem;
  background: #f7f8fa;
}

.lp-app-page__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
}

.lp-app-page__title {
  margin: 0;
  font-size: 1rem;
  font-weight: 760;
  color: #16273b;
}

.lp-app-page__action {
  flex: none;
  font-size: 0.6rem;
  font-weight: 700;
  color: #ffffff;
  background: #16273b;
  border-radius: 0.5rem;
  padding: 0.34rem 0.6rem;
  transition: transform 0.15s ease, background 0.15s ease;
}
.lp-app-page__action.is-pressed { background: #0c1828; transform: translateY(1px) scale(0.96); }

@media (max-width: 900px) {
  .lp-tour {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* ============================================================================
   === Tour screen: Performance (portfolio command) ===
   Faithful to the real /performance page: snapshot KPI cards (icon beside
   label, big value, muted detail), the left-accent "Portfolio brief" panel
   with a confidence pill, then trend + portfolio map panels.
   ============================================================================ */
.lp-pf { display: flex; flex-direction: column; gap: 0.7rem; }

/* The scene stage: hosts the steady page, the simulated cursor, and the
   export-preview overlay. Zoom scales the page toward the export button. */
.lp-pf-stage { position: relative; overflow: hidden; border-radius: 0.4rem; }

.lp-pf-zoom {
  transform-origin: 88% 3%;
  transition: transform 0.85s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.lp-pf-zoom.is-zoomed { transform: scale(1.3); }

.lp-pf__cursor {
  position: absolute;
  left: 42%;
  top: 52%;
  z-index: 40;
  width: 1.1rem;
  height: 1.1rem;
  opacity: 0;
  transition: left 1.2s cubic-bezier(0.4, 0, 0.2, 1), top 1.2s cubic-bezier(0.4, 0, 0.2, 1), transform 0.15s ease, opacity 0.3s ease;
  pointer-events: none;
}
.lp-pf__cursor.is-active { opacity: 1; }
.lp-pf__cursor.is-at-export { left: 87%; top: 0.45rem; }
.lp-pf__cursor.is-clicking { transform: scale(0.78); }
.lp-pf__cursor svg { width: 100%; height: 100%; fill: #16273b; stroke: #ffffff; stroke-width: 1.4; }

.lp-pf__click-ring {
  position: absolute;
  left: calc(87% + 0.2rem);
  top: 0.7rem;
  z-index: 35;
  width: 2rem;
  height: 2rem;
  margin: -1rem 0 0 -1rem;
  border: 2px solid #1d5d8f;
  border-radius: 999px;
  pointer-events: none;
  animation: lpClickRing 0.6s ease-out forwards;
}
@keyframes lpClickRing {
  from { opacity: 0.8; transform: scale(0.3); }
  to   { opacity: 0; transform: scale(1.6); }
}

.lp-pf__export-wrap {
  position: absolute;
  inset: 0;
  z-index: 30;
  display: grid;
  place-items: center;
  pointer-events: none;
}

.lp-pf__scrim {
  position: absolute;
  inset: 0;
  background: rgba(13, 29, 46, 0.35);
  animation: lpScrimIn 0.35s ease forwards;
}
@keyframes lpScrimIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.lp-pf__export {
  position: relative;
  width: min(20rem, 78%);
  background: #ffffff;
  border-radius: 0.7rem;
  padding: 0.85rem 0.95rem;
  box-shadow: 0 30px 70px rgba(7, 26, 47, 0.35);
}

.lp-pf__export-head { display: flex; flex-direction: column; gap: 0.15rem; }
.lp-pf__export-head strong { font-size: 0.8rem; font-weight: 760; color: #16273b; }
.lp-pf__export-head small { font-size: 0.58rem; color: #7a8694; }

.lp-pf__export-kpis { display: flex; gap: 0.45rem; margin: 0.6rem 0 0.55rem; }
.lp-pf__export-kpis span { flex: 1; height: 1.4rem; border-radius: 0.35rem; background: #f1f4f7; }

.lp-pf__export-chart { display: flex; align-items: flex-end; gap: 0.35rem; height: 3.2rem; padding: 0 0.15rem; }
.lp-pf__export-chart span { flex: 1; border-radius: 0.2rem 0.2rem 0 0; background: linear-gradient(180deg, #2f7fb8, #1d5d8f); }

.lp-pf__export-foot { display: flex; align-items: center; gap: 0.4rem; margin-top: 0.65rem; font-size: 0.6rem; font-weight: 650; color: #16273b; }
.lp-pf__export-check {
  display: grid;
  place-items: center;
  width: 1rem;
  height: 1rem;
  border-radius: 999px;
  background: rgba(31, 157, 107, 0.15);
  color: #1f7d57;
  font-weight: 800;
  font-size: 0.62rem;
}

.lp-pf__kpis {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.6rem;
}

.lp-pf__kpi {
  display: grid;
  align-content: start;
  gap: 0.38rem;
  background: #ffffff;
  border: 1px solid #e8eaee;
  border-radius: 0.6rem;
  padding: 0.6rem 0.7rem;
  min-width: 0;
}

.lp-pf__kpi-label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.62rem;
  font-weight: 600;
  color: #16273b;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.lp-pf__kpi-icon { display: inline-grid; place-items: center; width: 0.95rem; height: 0.95rem; flex: none; color: #7a8694; }
.lp-pf__kpi-icon svg { width: 100%; height: 100%; }
.lp-pf__kpi-icon--warning { color: #d98a16; }
.lp-pf__kpi-icon--destructive { color: #d8453a; }
.lp-pf__kpi-icon--info { color: #1d5d8f; }
.lp-pf__kpi-icon--default { color: #7a8694; }

.lp-pf__kpi-value { font-size: 1.25rem; font-weight: 700; color: #16273b; line-height: 1.05; }

.lp-pf__kpi-detail { font-size: 0.56rem; color: #7a8694; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.lp-pf__kpi-detail--destructive { color: #c0392b; }
.lp-pf__kpi-detail--warning { color: #b06f0a; }

/* Portfolio brief: left-accent analytics panel, like the real page */
.lp-pf__brief {
  min-height: 4.7rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  background: #ffffff;
  border: 1px solid #e8eaee;
  border-left: 3px solid #16273b;
  border-radius: 0.6rem;
  padding: 0.6rem 0.75rem;
}

.lp-pf__brief-head { display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; }

.lp-pf__brief-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #16273b;
}
.lp-pf__brief-eyebrow svg { width: 0.7rem; height: 0.7rem; color: #1d5d8f; }

.lp-pf__brief-confidence {
  flex: none;
  font-size: 0.56rem;
  font-weight: 700;
  color: #1f7d57;
  background: rgba(31, 157, 107, 0.07);
  border: 1px solid rgba(31, 157, 107, 0.45);
  border-radius: 999px;
  padding: 0.14rem 0.5rem;
}

.lp-pf__brief-line { margin: 0; font-size: 0.68rem; line-height: 1.45; color: #243b53; }
.lp-pf__brief-footer { font-size: 0.54rem; color: #7a8694; }

.lp-pf__lower {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 0.7rem;
}

.lp-pf__panel {
  background: #ffffff;
  border: 1px solid #e8eaee;
  border-radius: 0.6rem;
  padding: 0.55rem 0.7rem 0.65rem;
}
.lp-pf__panel--map { position: relative; }

.lp-pf__panel-head { font-size: 0.62rem; font-weight: 700; color: #16273b; margin-bottom: 0.4rem; }

.lp-pf__trend { width: 100%; height: 4.6rem; }
.lp-pf__trend-grid { stroke: #eceff3; stroke-width: 1; }
.lp-pf__trend-line { fill: none; stroke: #1d5d8f; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; vector-effect: non-scaling-stroke; }
.lp-pf__trend-dot { fill: #d8453a; }
.lp-pf__trend-band { fill: rgba(29, 93, 143, 0.1); stroke: none; }
.lp-pf__trend-forecast { fill: none; stroke: #1d5d8f; stroke-width: 2; stroke-dasharray: 4 3; stroke-linecap: round; vector-effect: non-scaling-stroke; }

.lp-pf__map { width: 100%; height: 7.2rem; }
.lp-pf__map-land { fill: rgba(29, 93, 143, 0.05); stroke: rgba(29, 93, 143, 0.28); stroke-width: 1.5; }
.lp-pf__map-river { fill: none; stroke: rgba(29, 93, 143, 0.22); stroke-width: 1.5; stroke-dasharray: 3 3; }
.lp-pf__map-dot--success { fill: #1f9d6b; }
.lp-pf__map-dot--warning { fill: #d98a16; }
.lp-pf__map-dot--info { fill: #1d5d8f; }
.lp-pf__map-ring { fill: none; stroke: #d98a16; stroke-width: 2; opacity: 0.9; transform-box: fill-box; transform-origin: center; }

.lp-pf__flag {
  position: absolute;
  top: 0.5rem;
  right: 0.6rem;
  font-size: 0.56rem;
  font-weight: 700;
  color: #b06f0a;
  background: rgba(217, 138, 22, 0.12);
  border: 1px solid rgba(217, 138, 22, 0.35);
  border-radius: 999px;
  padding: 0.18rem 0.5rem;
}

@media (max-width: 1080px) {
  .lp-pf__kpis { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lp-pf__lower { grid-template-columns: minmax(0, 1fr); }
}

/* ============================================================================
   === Tour screen: Schedules (gantt + baseline compare + quality) ===
   ============================================================================ */
.lp-sch { display: flex; flex-direction: column; gap: 0.6rem; }

.lp-sch__toolbar { display: flex; align-items: center; gap: 0.5rem; }

.lp-sch__chip {
  display: inline-flex;
  align-items: baseline;
  gap: 0.35rem;
  font-size: 0.62rem;
  font-weight: 700;
  color: #16273b;
  background: #ffffff;
  border: 1px solid #dde1e7;
  border-radius: 0.5rem;
  padding: 0.3rem 0.55rem;
}
.lp-sch__chip small { font-size: 0.5rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; color: #7a8694; }

.lp-sch__badge {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.56rem;
  font-weight: 700;
  color: #5b6b7c;
  background: rgba(31, 157, 107, 0.07);
  border: 1px solid rgba(31, 157, 107, 0.4);
  border-radius: 999px;
  padding: 0.26rem 0.55rem;
}
.lp-sch__badge strong { font-size: 0.78rem; font-weight: 800; color: #1f7d57; }
.lp-sch__badge em { font-style: normal; font-size: 0.54rem; color: #7a8694; }

.lp-sch__panel { background: #ffffff; border: 1px solid #e8eaee; border-radius: 0.6rem; padding: 0.75rem 0.8rem 0.65rem; }

.lp-sch__rows { position: relative; display: flex; flex-direction: column; gap: 0.55rem; }

.lp-sch__row { display: grid; grid-template-columns: minmax(5.5rem, 0.6fr) minmax(0, 2.2fr); align-items: center; gap: 0.6rem; }
.lp-sch__row-name { font-size: 0.66rem; font-weight: 600; color: #16273b; }

.lp-sch__track { position: relative; height: 0.85rem; }
.lp-sch__ghost { position: absolute; left: 0; top: 0.18rem; height: 0.5rem; border-radius: 0.25rem; background: repeating-linear-gradient(45deg, #e3e7ec, #e3e7ec 3px, transparent 3px, transparent 6px); border: 1px solid #d7dce3; }
.lp-sch__bar { position: absolute; left: 0; top: 0.05rem; height: 0.75rem; border-radius: 0.25rem; transform-origin: left center; }
.lp-sch__bar--ok { background: linear-gradient(180deg, #29a878, #1f9d6b); }
.lp-sch__bar--over { background: linear-gradient(180deg, #e85c50, #d8453a); }

.lp-sch__overrun {
  position: absolute;
  top: -0.1rem;
  font-size: 0.5rem;
  font-weight: 800;
  color: #c0392b;
  background: rgba(216, 69, 58, 0.1);
  border: 1px solid rgba(216, 69, 58, 0.35);
  border-radius: 999px;
  padding: 0.08rem 0.35rem;
  white-space: nowrap;
  z-index: 3;
}

.lp-sch__cp { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.lp-sch__cp-line { fill: none; stroke: rgba(216, 69, 58, 0.5); stroke-width: 1.4; stroke-dasharray: 100; vector-effect: non-scaling-stroke; }

/* Footer row: legend left, quality checks right — height reserved so the
   checks popping in on the final beat never shift the layout. */
.lp-sch__foot { display: flex; align-items: center; justify-content: space-between; gap: 0.6rem; min-height: 1.7rem; margin-top: 0.7rem; border-top: 1px solid #eef0f3; padding-top: 0.55rem; }

.lp-sch__legend { display: flex; flex-wrap: wrap; gap: 0.8rem; }
.lp-sch__legend-item { display: inline-flex; align-items: center; gap: 0.35rem; font-size: 0.58rem; color: #7a8694; }
.lp-sch__swatch { width: 0.7rem; height: 0.5rem; border-radius: 0.2rem; }
.lp-sch__swatch--ghost { background: repeating-linear-gradient(45deg, #e3e7ec, #e3e7ec 3px, transparent 3px, transparent 6px); border: 1px solid #d7dce3; }
.lp-sch__swatch--ok { background: #1f9d6b; }
.lp-sch__swatch--over { background: #d8453a; }

.lp-sch__checks { display: flex; gap: 0.4rem; }
.lp-sch__check { font-size: 0.54rem; font-weight: 700; border-radius: 999px; padding: 0.18rem 0.5rem; white-space: nowrap; }
.lp-sch__check--ok { color: #1f7d57; background: rgba(31, 157, 107, 0.1); border: 1px solid rgba(31, 157, 107, 0.35); }
.lp-sch__check--warn { color: #b06f0a; background: rgba(217, 138, 22, 0.12); border: 1px solid rgba(217, 138, 22, 0.4); }

@media (max-width: 720px) {
  .lp-sch__foot { flex-direction: column; align-items: flex-start; }
}

/* ============================================================================
   === Tour screen: Workflows (the traveling submission card) ===
   ============================================================================ */
.lp-wf { --lp-wf-gap: 1.1rem; display: flex; flex-direction: column; gap: 0.8rem; }

.lp-wf__labels { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--lp-wf-gap); }
.lp-wf__col-label { font-size: 0.62rem; font-weight: 700; color: #8b97a4; text-align: center; transition: color 0.3s ease; }
.lp-wf__col-label.is-reached { color: #16273b; }

.lp-wf__track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--lp-wf-gap);
  height: 3.9rem;
}

.lp-wf__slot {
  border: 1.5px dashed #d7dce3;
  border-radius: 0.6rem;
  background: #fbfcfd;
  transition: border-color 0.35s ease, background 0.35s ease;
}
.lp-wf__slot.is-reached { border-color: rgba(29, 93, 143, 0.4); background: rgba(29, 93, 143, 0.04); }

.lp-wf__mover {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: calc((100% - 2 * var(--lp-wf-gap)) / 3);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.5rem 0.55rem;
  background: #ffffff;
  border: 1px solid #e3e7ec;
  border-top: 3px solid #1d5d8f;
  border-radius: 0.6rem;
  box-shadow: 0 10px 26px rgba(7, 26, 47, 0.12);
  transition: transform 0.75s cubic-bezier(0.22, 0.61, 0.36, 1);
  z-index: 2;
}
.lp-wf__mover--info { border-top-color: #1d5d8f; }
.lp-wf__mover--warning { border-top-color: #d98a16; }
.lp-wf__mover--success { border-top-color: #1f9d6b; }
.lp-wf__mover.is-at-0 { transform: translateX(0); }
.lp-wf__mover.is-at-1 { transform: translateX(calc(100% + var(--lp-wf-gap))); }
.lp-wf__mover.is-at-2 { transform: translateX(calc(200% + 2 * var(--lp-wf-gap))); }

.lp-wf__card-title { font-size: 0.62rem; font-weight: 700; color: #16273b; line-height: 1.3; }

.lp-wf__stamp { align-self: flex-start; font-size: 0.54rem; font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase; padding: 0.16rem 0.4rem; border-radius: 999px; }
.lp-wf__stamp--info { background: rgba(29, 93, 143, 0.1); color: #1d5d8f; }
.lp-wf__stamp--warning { background: rgba(217, 138, 22, 0.12); color: #b06f0a; }
.lp-wf__stamp--success { background: rgba(31, 157, 107, 0.12); color: #1f7d57; }

.lp-wf__next {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: calc((100% - 2 * var(--lp-wf-gap)) / 3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.56rem;
  font-weight: 700;
  color: #8b97a4;
  border: 1.5px dashed rgba(29, 93, 143, 0.35);
  border-radius: 0.6rem;
  background: rgba(29, 93, 143, 0.03);
  padding: 0.4rem;
  text-align: center;
  z-index: 1;
}

/* Reserved height so log lines appending mid-loop never shift the layout */
.lp-wf__log {
  min-height: 5.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  background: #ffffff;
  border: 1px solid #e8eaee;
  border-radius: 0.6rem;
  padding: 0.6rem 0.75rem;
}
.lp-wf__log-line { margin: 0; display: flex; align-items: center; gap: 0.4rem; font-size: 0.6rem; color: #5b6b7c; }
.lp-wf__log-dot { flex: none; width: 0.4rem; height: 0.4rem; border-radius: 999px; background: #1f9d6b; }

.lp-wf__audit { margin: 0; font-size: 0.62rem; font-weight: 650; color: #16273b; padding-top: 0.15rem; }

@media (max-width: 560px) {
  .lp-wf { --lp-wf-gap: 0.6rem; }
  .lp-wf__track { height: 4.8rem; }
  .lp-wf__card-title { font-size: 0.56rem; }
}

/* ============================================================================
   === Personas ("Who it's for") ===
   ============================================================================ */
.pointer-personas__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2.4vw, 1.6rem);
  margin-top: clamp(1.75rem, 4vw, 2.75rem);
}

.pointer-persona-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
  padding: clamp(1.25rem, 2vw, 1.65rem);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.pointer-persona-card:hover {
  transform: translateY(-3px);
  border-color: var(--theme-accent-border, var(--primary));
  box-shadow: 0 20px 48px rgba(7, 26, 47, 0.1);
}

.pointer-persona-card__icon {
  display: grid;
  place-items: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 0.75rem;
  background: var(--theme-accent-soft, rgba(29, 93, 143, 0.1));
  color: var(--primary);
  margin-bottom: 1rem;
}
.pointer-persona-card__icon svg { width: 1.4rem; height: 1.4rem; }

.pointer-persona-card__role {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted-foreground);
}

.pointer-persona-card__headline {
  margin-top: 0.35rem;
  font-size: var(--text-lg);
  font-weight: 760;
  color: var(--foreground);
  line-height: 1.3;
}

.pointer-persona-card__list {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.pointer-persona-card__list li {
  position: relative;
  padding-left: 1.25rem;
  font-size: var(--text-sm);
  line-height: 1.5;
  color: var(--muted-foreground);
}

.pointer-persona-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: var(--primary);
}

@media (max-width: 980px) {
  .pointer-personas__grid { grid-template-columns: minmax(0, 1fr); }
}

/* ============================================================================
   === Governance (replaces fictional Fireside) ===
   ============================================================================ */
.pointer-governance__chain {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  margin: clamp(1.75rem, 4vw, 2.75rem) auto clamp(1.5rem, 3vw, 2.25rem);
  max-width: 30rem;
}

.pointer-governance__chain-svg { width: 100%; height: auto; }
.pointer-governance__chain-line { stroke: var(--primary); stroke-width: 2.5; stroke-dasharray: 100; }
.pointer-governance__node circle { fill: var(--theme-accent-soft, rgba(29, 93, 143, 0.12)); stroke: var(--primary); stroke-width: 2; }
.pointer-governance__check { fill: none; stroke: var(--primary); stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }

.pointer-governance__chain-labels {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 0 1.2rem;
}
.pointer-governance__chain-labels span {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted-foreground);
}

.pointer-governance__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.9rem, 2vw, 1.4rem);
  max-width: 56rem;
  margin: 0 auto;
}

.pointer-governance-tile {
  border: 1px solid var(--border);
  border-left: 3px solid var(--primary);
  border-radius: var(--radius);
  background: var(--card);
  padding: clamp(1.1rem, 1.8vw, 1.4rem);
}
.pointer-governance-tile h3 { margin: 0 0 0.4rem; font-size: var(--text-base); font-weight: 740; color: var(--foreground); }
.pointer-governance-tile p { margin: 0; font-size: var(--text-sm); line-height: 1.55; color: var(--muted-foreground); }

@media (max-width: 720px) {
  .pointer-governance__grid { grid-template-columns: minmax(0, 1fr); }
}

/* ============================================================================
   === Platform map (replaces invented industry-research stats) ===
   ============================================================================ */
.pointer-platform-map__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.85rem, 1.8vw, 1.3rem);
  margin-top: clamp(1.75rem, 4vw, 2.75rem);
}

.pointer-platform-tile {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
  padding: clamp(1rem, 1.6vw, 1.3rem);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.pointer-platform-tile:hover {
  transform: translateY(-3px);
  border-color: var(--theme-accent-border, var(--primary));
  box-shadow: 0 16px 40px rgba(7, 26, 47, 0.1);
}

.pointer-platform-tile__icon {
  display: grid;
  place-items: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 0.65rem;
  background: var(--theme-accent-soft, rgba(29, 93, 143, 0.1));
  color: var(--primary);
  margin-bottom: 0.75rem;
}
.pointer-platform-tile__icon svg { width: 1.2rem; height: 1.2rem; }

.pointer-platform-tile__title { margin: 0 0 0.3rem; font-size: var(--text-base); font-weight: 740; color: var(--foreground); }
.pointer-platform-tile__copy { margin: 0; font-size: var(--text-sm); line-height: 1.5; color: var(--muted-foreground); }

.pointer-platform-map__actions {
  display: flex;
  justify-content: center;
  margin-top: clamp(1.75rem, 4vw, 2.75rem);
}

@media (max-width: 1024px) {
  .pointer-platform-map__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .pointer-platform-map__grid { grid-template-columns: minmax(0, 1fr); }
}

/* ============================================================================
   === Tour auto-play progress + reduced-motion ===
   Scene styles live with their screens above; this block only carries the
   chapter auto-play progress bar and the reduced-motion parking rules.
   ============================================================================ */

/* Chapter auto-play progress bar (duration matches AUTOPLAY_MS in the tour script) */
.lp-tour__tab { position: relative; overflow: hidden; }
.lp-tour__tab-progress {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 100%;
  background: linear-gradient(90deg, #1d5d8f, #3a86ff);
  transform-origin: left center;
  transform: scaleX(0);
  animation: lpTourProgress 10500ms linear forwards;
}
@keyframes lpTourProgress { to { transform: scaleX(1); } }
.lp-tour.is-paused .lp-tour__tab-progress { animation-play-state: paused; }

/* (No reduced-motion parking — see the deliberate exception note in the
   lp animation toolkit block above.) */

/* ─────────────────────────────────────────────────────────────────────────────
   Product showcase — a full-screen, Untitled-UI-style pinned scroll
   canvas. A tall track wraps a position:sticky stage; the page scrolls "through" a
   tilted mosaic of REAL in-app Kairos screens (public/landing-demo). One scroll
   value drives many layers at once: a hatched backdrop drifts, the skewed mosaic
   slides upward while its columns shear past each other, live chips + two teammate
   cursors float on top and click. Bespoke dark palette (token-exempt) like the
   other landing blocks.
   ───────────────────────────────────────────────────────────────────────────── */
.lps {
  position: relative;
  /* Scroll budget while pinned — the pacing knob. */
  height: 300vh;
  /* Deeper toward the bottom so the light fragments read with more contrast down there. */
  background: radial-gradient(125% 100% at 50% -6%, #12335f 0%, #0b1f3e 44%, #060e20 100%);
  color: #eaf1fb;
}
.lps__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: clip; /* mosaic bleeds past the edges without a scrollbar */
}

/* deep backdrop — diagonal hatch + drifting grid (slowest parallax) */
.lps__bg { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.lps__hatch {
  position: absolute;
  inset: -14% -8%;
  background-image: repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.045) 0, rgba(255, 255, 255, 0.045) 1px, transparent 1px, transparent 11px);
  will-change: transform;
}
.lps__grid {
  position: absolute;
  inset: -14%;
  background-image:
    linear-gradient(rgba(91, 155, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(91, 155, 255, 0.1) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: radial-gradient(60% 60% at 50% 42%, #000 0%, transparent 84%);
  mask-image: radial-gradient(60% 60% at 50% 42%, #000 0%, transparent 84%);
  will-change: transform, opacity;
}

.lps__inner { position: relative; z-index: 1; width: 100%; height: 100%; display: flex; flex-direction: column; }
.lps__head {
  flex: none;
  text-align: center;
  padding-top: clamp(2rem, 6vh, 4rem);
  padding-bottom: clamp(1.5rem, 4vh, 2.75rem);
  will-change: opacity, transform;
}
.lps__title {
  font-size: clamp(1.9rem, 3.4vw, 3.1rem);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0.6rem auto 0.9rem;
  color: #ffffff;
}
.lps__body {
  font-size: clamp(1rem, 1.2vw, 1.18rem);
  line-height: 1.6;
  color: #b9c8df;
  max-width: 72ch;
  margin: 0 auto;
}

/* stage = the area below the heading; owns the shared perspective camera */
/* overflow: hidden so fragments that follow the canvas up simply scroll off the top edge
   (no fade-out) instead of overlapping the heading above the stage. */
.lps__stage { position: relative; flex: 1; min-height: 0; overflow: hidden; perspective: 2000px; perspective-origin: 50% 50%; }
/* board + fragments share ONE 3-D space so the opaque canvas occludes fragments behind it */
.lps__3d { position: absolute; inset: 0; transform-style: preserve-3d; }

/* the tilted background plane that slides on scroll */
.lps__board {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-origin: center 42%;
  will-change: transform;
}
/* the single background canvas — a browser window showing one full real app screen */
.lps__canvas {
  position: relative;
  margin: 0;
  width: 69%;
  border-radius: 14px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 55px 110px -34px rgba(0, 0, 0, 0.88);
}
/* the scrolling viewport inside the browser window — the tall shot pans inside it */
.lps__screen { position: relative; width: 100%; aspect-ratio: 16 / 9; overflow: hidden; background: #eef2f6; }
/* top: a slight inset so there's a little padding above the demo screen, below the chrome */
.lps__canvas-img { position: absolute; top: 0.85rem; left: 0; display: block; width: 100%; height: auto; will-change: transform; }

/* browser chrome so it reads as a web app */
.lps__chrome {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.55rem 0.9rem;
  background: #f1f3f5;
  border-bottom: 1px solid #e3e6ea;
}
.lps__chrome-dots { display: flex; gap: 0.4rem; flex: none; }
.lps__chrome-dots i { width: 0.7rem; height: 0.7rem; border-radius: 999px; }
.lps__chrome-dots i:nth-child(1) { background: #ff5f57; }
.lps__chrome-dots i:nth-child(2) { background: #febc2e; }
.lps__chrome-dots i:nth-child(3) { background: #28c840; }
.lps__chrome-url {
  flex: 1;
  max-width: 24rem;
  background: #ffffff;
  border: 1px solid #e3e6ea;
  border-radius: 999px;
  padding: 0.24rem 0.85rem;
  font-size: 0.72rem;
  color: #64748b;
  text-align: center;
}

/* soft scrim between the background canvas and the foreground fragments */
.lps__scrim {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: radial-gradient(120% 82% at 50% 46%, rgba(8, 21, 44, 0.52) 0%, rgba(8, 21, 44, 0.2) 40%, transparent 72%);
}

/* FOREGROUND fragments — real chart / form / KPI crops that fly toward the viewer */
.lps__frag {
  position: absolute;
  margin: 0;
  /* 10% larger again (was clamp(17.25rem, 26.45vw, 25.3rem), itself +15% over clamp(15rem, 23vw, 22rem)) */
  width: clamp(18.98rem, 29.1vw, 27.83rem);
  will-change: transform, opacity;
}
.lps__frag-shot {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 14px;
  background-color: #0f1b30;
  background-repeat: no-repeat;
  box-shadow: 0 42px 84px -28px rgba(0, 0, 0, 0.8);
}
/* each shot pans/zooms into the relevant region of a real screenshot */
/* customize / chart-library panel — block matches the screenshot aspect so it fills
   edge-to-edge (no letterbox), ratio preserved. */
.lps__frag-shot--chart { aspect-ratio: 1051 / 679; background-image: url(/static/landing-demo/customize-charts.png); background-size: cover; background-position: center; }
/* Workload & Coverage — cropped to the top hero (title, tabs, the two KPI cards). */
.lps__frag-shot--form { aspect-ratio: 1075 / 430; background-image: url(/static/landing-demo/workload-coverage.png); background-size: cover; background-position: center top; }
/* Ask Kairos chat — cropped to the header + the first grounded Q&A. */
.lps__frag-shot--kpi { aspect-ratio: 1240 / 600; background-image: url(/static/landing-demo/ask-kairos.png); background-size: cover; background-position: center top; }

.lps__frag-cap {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.6rem;
  padding: 0.32rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.97);
  color: #0b1f3e;
  font-size: 0.74rem;
  font-weight: 700;
  box-shadow: 0 16px 34px -16px rgba(0, 0, 0, 0.6);
}
.lps__frag-dot { width: 0.55rem; height: 0.55rem; border-radius: 999px; flex: none; }
.lps__frag-dot--blue { background: #2b8fff; }
.lps__frag-dot--violet { background: #7a5cff; }
.lps__frag-dot--green { background: #2bb574; }

/* positions echo the reference: chart upper-right, form mid-left, KPI lower-right.
   Nudged a bit inward (toward page center) for readability. */
.lps__frag--chart { top: 28%; right: 9%; }
.lps__frag--form { top: 41%; left: 8%; width: clamp(20.88rem, 32vw, 30.6rem); } /* Workload & coverage, +10% */
/* "Ask Kairos" chat — lower-right, moved lower; the chart block has risen up and away
   by the time this one arrives, so they don't collide. */
.lps__frag--kpi { bottom: -5%; right: 3.9%; width: clamp(20.88rem, 32vw, 30.6rem); } /* far lower-right (~150px right of prior); block 1 scrolls off before this peaks + 10% */

@media (max-width: 860px) {
  .lps__frag { width: clamp(11rem, 46vw, 15rem); }
  .lps__frag--chart { top: 15%; right: 3%; }
  .lps__frag--form { top: 47%; left: 3%; }
  .lps__frag--kpi { bottom: 7%; right: 6%; }
}

/* floating live chips */
.lps__chip {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 0.85rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.97);
  color: #0b1f3e;
  box-shadow: 0 22px 46px -18px rgba(0, 0, 0, 0.65);
  will-change: transform, opacity;
  max-width: 16rem;
}
.lps__chip-text { display: flex; flex-direction: column; line-height: 1.25; }
.lps__chip-text strong { font-size: 0.84rem; font-weight: 700; white-space: nowrap; }
.lps__chip-text span { font-size: 0.72rem; color: #5b6b82; white-space: nowrap; }
.lps__chip-dot { width: 0.7rem; height: 0.7rem; border-radius: 999px; flex: none; }
.lps__chip-dot--red { background: #ef4444; box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.18); }
.lps__chip-check {
  display: grid;
  place-items: center;
  width: 1.35rem;
  height: 1.35rem;
  flex: none;
  border-radius: 999px;
  background: #2bb574;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
}
.lps__chip--delay { top: 14%; right: 7%; }
.lps__chip--approval { bottom: 16%; left: 7%; }

/* teammate cursors */
.lps__cursor {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 6;
  width: 22px;
  height: 22px;
  pointer-events: none;
  will-change: left, top, opacity;
}
.lps__cursor-arrow {
  position: relative;
  display: block;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.45));
  animation: lps-cursor-press 2.6s ease-in-out infinite;
}
.lps__cursor-tag {
  position: absolute;
  top: 17px;
  left: 13px;
  white-space: nowrap;
  font-size: 0.68rem;
  font-weight: 700;
  color: #fff;
  padding: 0.12rem 0.45rem;
  border-radius: 5px;
  box-shadow: 0 6px 14px -6px rgba(0, 0, 0, 0.5);
}
.lps__cursor-ripple {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  transform: translate(-50%, -50%) scale(0);
  animation: lps-cursor-click 2.6s ease-out infinite;
}
.lps__cursor--a .lps__cursor-arrow { fill: #7a5cff; }
.lps__cursor--a .lps__cursor-tag { background: #7a5cff; }
.lps__cursor--a .lps__cursor-ripple { background: rgba(122, 92, 255, 0.5); }
.lps__cursor--b .lps__cursor-arrow { fill: #2b8fff; animation-delay: 1.3s; }
.lps__cursor--b .lps__cursor-tag { background: #2b8fff; }
.lps__cursor--b .lps__cursor-ripple { background: rgba(43, 143, 255, 0.5); animation-delay: 1.3s; }

@keyframes lps-cursor-click {
  0%, 60% { transform: translate(-50%, -50%) scale(0); opacity: 0; }
  68% { transform: translate(-50%, -50%) scale(0.4); opacity: 0.75; }
  100% { transform: translate(-50%, -50%) scale(3.8); opacity: 0; }
}
@keyframes lps-cursor-press {
  0%, 58%, 100% { transform: scale(1); }
  66% { transform: scale(0.8); }
  76% { transform: scale(1); }
}

/* floating control bar */
.lps__toolbar {
  position: absolute;
  z-index: 6;
  bottom: 4%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.55rem;
  border-radius: 999px;
  background: rgba(13, 23, 38, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 40px -16px rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
}
.lps__tool {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #aebfd6;
  cursor: default;
}
.lps__tool svg { display: block; fill: currentColor; }
.lps__tool--active { background: #2b8fff; color: #fff; }
.lps__tool-sep { width: 1px; height: 1.3rem; background: rgba(255, 255, 255, 0.14); margin: 0 0.2rem; }
.lps__tool-live {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0 0.65rem 0 0.4rem;
  font-size: 0.74rem;
  font-weight: 600;
  color: #cfdcef;
  white-space: nowrap;
}
.lps__tool-live i {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: #28c840;
  box-shadow: 0 0 0 3px rgba(40, 200, 64, 0.22);
}

/* Tablet / mobile: drop the pin + tilt, show the canvas as a static image.
   (Reduced-motion is intentionally NOT a trigger — this is a landing flourish
   that animates regardless; the same call the product tour makes.) */
@media (max-width: 860px) {
  .lps { height: auto; background: radial-gradient(120% 60% at 50% 0%, #11305c 0%, #0b1f3e 60%, #08152c 100%); }
  .lps__sticky { position: static; height: auto; overflow: visible; padding: clamp(3rem, 8vw, 6rem) 0; }
  .lps__bg { display: none; }
  .lps__inner { display: block; }
  .lps__head { padding: 0 1.25rem; }
  .lps__stage { position: static; }
  .lps__board { position: static; inset: auto; transform: none !important; padding: 0 1.25rem; }
  .lps__canvas { width: 100%; max-width: 42rem; margin: 2rem auto 0; }
  .lps__frag, .lps__scrim, .lps__cursor, .lps__toolbar { display: none; }
}



/* == Demo modal: email-request fallback form ==================================
   Opened via the "request by email" link, or automatically when the calendar
   embed can't load (e.g. blocked on agency networks). */
.kairos-demo-modal__frame-wrap[hidden],
.kairos-demo-form[hidden],
.kairos-demo-form__success[hidden],
.kairos-demo-modal__alt[hidden] { display: none; }
.kairos-demo-form { padding: 1.1rem 1.4rem 1.3rem; overflow-y: auto; }
.kairos-demo-form__intro { margin: 0 0 0.9rem; font-size: 0.95rem; color: var(--muted-foreground); }
.kairos-demo-form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 0.8rem; }
@media (max-width: 640px) { .kairos-demo-form__grid { grid-template-columns: 1fr; } }
.kairos-demo-form__field { display: flex; flex-direction: column; gap: 0.3rem; margin-bottom: 0.8rem; font-size: 0.85rem; color: var(--foreground); }
.kairos-demo-form__field em { font-style: normal; color: var(--muted-foreground); }
.kairos-demo-form__field input,
.kairos-demo-form__field textarea {
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  background: var(--card);
  color: var(--foreground);
  font: inherit;
  padding: 0.55rem 0.7rem;
}
.kairos-demo-form__field input:focus-visible,
.kairos-demo-form__field textarea:focus-visible {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--primary) 18%, transparent);
}
.kairos-demo-form__actions { display: flex; align-items: center; gap: 1rem; margin-top: 0.2rem; }
.kairos-demo-form__linkbtn {
  background: none; border: none; padding: 0; cursor: pointer;
  font: inherit; font-size: 0.85rem; color: var(--primary);
  text-decoration: underline; text-underline-offset: 2px;
}
.kairos-demo-form__success { padding: 1.4rem; font-size: 0.95rem; }
.kairos-demo-form__success p { margin: 0 0 0.5rem; }
.kairos-demo-form__success-note { color: var(--muted-foreground); font-size: 0.85rem; }
.kairos-demo-modal__alt { margin: 0; padding: 0.65rem 1.4rem 0.9rem; font-size: 0.85rem; color: var(--muted-foreground); border-top: 1px solid var(--border); }
