:root {
  --blue: #2563eb;
  --blue-dark: #1d4ed8;
  --green: #16a34a;
  --red: #dc2626;
  --amber: #f59e0b;
  --slate: #0f172a;
  --muted: #64748b;
  --line: #e2e8f0;
  --soft: #f1f5f9;
  --panel: #ffffff;
  --shadow: 0 10px 40px rgba(15, 23, 42, 0.06);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-family: "Google Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings: "GRAD" 0;
}

body {
  margin: 0;
  background: #f4f8ff;
  color: var(--slate);

  font-family: "Google Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

  text-rendering: optimizeLegibility;

  letter-spacing: 1px;
  line-height: 1.2;
  overflow-x: hidden;
}

button,
input,
textarea,
select,
option {
  font: inherit;
  font-family: inherit;
}

/* Force one font stack across all landing page text elements. */
body * {
  font-family: inherit;
}

button {
  letter-spacing: 0;
}

svg {
  stroke-width: 2.35;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 1001;
  height: 60px;
  padding: 0 clamp(18px, 5vw, 72px);
  background: rgba(244, 248, 255, 0.7);
  border-bottom: 1px solid rgba(226, 232, 240, 0.88);
  backdrop-filter: blur(18px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--blue);
  text-decoration: none;
  font-size: 22px;
  font-weight: 900;
}

.brand img {
  width: 38px;
  height: 38px;
  border-radius: 12px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: flex-end;
  flex-wrap: nowrap;
}

.header-right {
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid #dbe7f5;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #2563eb;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

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

.site-header.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

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

.mobile-nav {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  right: 12px;
  left: 12px;
  border: 1px solid #dbe7f5;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.16), 0 8px 20px rgba(37, 99, 235, 0.06);
  padding: 12px;
  gap: 14px;
  justify-items: start;
}

.site-header.nav-open .mobile-nav {
  display: grid;
}

.mobile-nav a {
  width: 100%;
  justify-content: flex-start;
  text-align: left;
}

.mobile-nav .minor-link,
.mobile-nav .secondary-link {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 4px 0;
  min-height: 0;
  border-radius: 0;
}

.mobile-nav .secondary-link {
  color: var(--slate);
  font-size: 18px;
  font-weight: 800;
}

.mobile-nav .minor-link {
  color: #475569;
  text-decoration: none;
}

.mobile-nav .primary-link {
  color: var(--blue);
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 4px 0;
  min-height: 0;
  border-radius: 0;
  font-size: 18px;
  font-weight: 800;
}

.site-nav a {
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  padding: 10px 12px;
  border-radius: 12px;
  white-space: nowrap;
}

.site-nav a:hover {
  background: #eff6ff;
  color: var(--blue);
}

.site-nav .primary-link:hover {
  background: var(--blue-dark);
  color: white;
  box-shadow: 0 14px 28px rgba(37, 99, 235, 0.22);
}

.eyebrow {
  color: var(--blue);
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero p:not(.eyebrow),
.section-heading p {
  color: #475569;
  font-size: 18px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.primary-link,
.secondary-link {
  min-height: 40px;
  padding: 0 18px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 14px;
  font-weight: 900;
}

.primary-link {
  background: var(--blue);
  color: white;
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.18);
}

.secondary-link {
  background: white;
  color: var(--slate);
  border: 1px solid var(--line);
}

.minor-link {
  color: #475569;
}

.hero-media {
  background: white;
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(58px, 1fr));
  grid-auto-rows: 82px;
  gap: 10px;
}

.hero-shift {
  border-radius: 14px;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
}

.hero-shift.green {
  background: #ecfdf5;
  border-color: #bbf7d0;
}

.hero-shift.red {
  background: #fef2f2;
  border-color: #fecaca;
}

.hero-shift.wide {
  grid-column: span 2;
}

.hero-shift.tall {
  grid-row: span 2;
}

.intro-band {
  padding: 36px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: white;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.intro-band div {
  padding: 8px 0;
}

.stat {
  color: var(--slate);
  font-size: 15px;
  font-weight: 900;
}

.intro-band p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.hero {
  min-height: calc(100vh - 220px);
  padding: 56px clamp(18px, 5vw, 72px) 48px;
  display: grid;
  grid-template-columns: minmax(420px, 1fr) minmax(460px, 1fr);
  align-items: center;
  gap: clamp(36px, 5vw, 72px);
  text-align: left;
  background: #edf4ff;
}

.hero-copy {
  max-width: 760px;
  margin: 0;
}

.hero .eyebrow {
  margin-bottom: 30px;
  font-size: 20px;
}

.hero h1 {
  max-width: 700px;
  margin: 0 0 25px;
  color: var(--slate);
  font-size: clamp(35px, 6vw, 55px);
  line-height: 1.2;
  font-weight: 900;
}

.hero p:not(.eyebrow) {
  max-width: 560px;
  margin: 0;
  font-size: 19px;
}

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

.hero-preview {
  position: relative;
  max-width: none;
  margin: 0;
  border: 1px solid #3a3d44;
  border-radius: 26px;
  background: #2f3136;
  padding: 10px;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
  overflow: visible;
}

.hero-web-shot img {
  width: 100%;
  display: block;
}

.hero-web-shot {
  position: relative;
  border: 1px solid #d7e0ea;
  border-radius: 18px;
  background: #f3f7fc;
  padding: 26px 0 0;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
  overflow: hidden;
}

.hero-web-shot::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 12px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #d1d9e6;
  box-shadow: 14px 0 0 #d1d9e6, 28px 0 0 #d1d9e6;
}

.hero-web-shot img {
  border-radius: 12px;
  box-shadow: none;
  border-radius: 0;
}

.hero-app-shot {
  position: absolute;
  right: 18px;
  bottom: -80px;
  width: clamp(120px, 16vw, 190px);
  padding: 7px 6px 8px;
  border-radius: 26px;
  background: #2f3136;
  border: 1px solid #3a3d44;
  box-shadow: 0 10px 48px rgba(15, 23, 42, 0.4);
  overflow: visible;
  position: absolute;
}

.hero-app-shot img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: top center;
  border-radius: 22px;
  border: none;
  background: transparent;
  display: block;
}

.hero-app-shot::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 52px;
  height: 8px;
  border-radius: 10px;
  background: #1f2228;
  border: 1px solid #2a2d34;
}

.hero-app-shot::after {
  content: "";
  position: absolute;
  top: 7px;
  left: 50%;
  transform: translateX(-50%);
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: #5b616b;
}


.audience-section,
.feature-flow,
.employee-app-section,
.pilot-section,
.final-cta {
  padding: 78px clamp(18px, 5vw, 72px);
}

.section-heading.compact {
  margin-bottom: 24px;
}

.audience-grid {
  max-width: 1020px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.audience-grid div {
  min-height: 92px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #f7f9fb;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: #334155;
  font-size: 13px;
  font-weight: 800;
}

.audience-grid svg {
  width: 21px;
  height: 21px;
  color: var(--blue);
}

.problem-section {
  margin: 32px clamp(18px, 5vw, 72px);
  border-radius: 28px;
  background: #111827;
  color: white;
  padding: clamp(28px, 5vw, 58px);
  display: grid;
  grid-template-columns: 1fr minmax(320px, 0.8fr);
  gap: 42px;
  align-items: center;
}

.problem-section .eyebrow {
  color: #93c5fd;
}

.problem-section h2,
.feature-block h2,
.employee-app-section h2,
.pilot-section h2,
.final-cta h2,
.section-heading h2 {
  letter-spacing: 0;
}

.problem-section h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(22px, 4vw, 36px);
  line-height: 1.08;
}

.comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.messy-side,
.organized-side {
  min-height: 230px;
  border-radius: 18px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.messy-side {
  background: rgba(255, 255, 255, 0.06);
  color: #cbd5e1;
}

.organized-side {
  background: white;
  color: var(--slate);
}

.messy-side span,
.organized-side span {
  display: block;
  margin-bottom: 16px;
  font-size: 12px;
  font-weight: 900;
  color: #93c5fd;
}

.messy-side p,
.organized-side p {
  margin: 10px 0;
  font-size: 13px;
  line-height: 1.45;
}

.organized-side strong {
  display: block;
  margin: 22px 0 8px;
  font-size: 20px;
}

.feature-flow {
  display: grid;
  gap: 30px;
}

.feature-block {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 42px;
  align-items: center;
}

.feature-block.reverse {
  grid-template-columns: 1.18fr 0.82fr;
}

.feature-block.reverse > div:first-child {
  order: 2;
}

.feature-block h2,
.employee-app-section h2,
.pilot-section h2,
.final-cta h2 {
  margin: 0 0 14px;
  color: var(--slate);
  font-size: clamp(22px, 4vw, 36px);
  line-height: 1.1;
  font-weight: 900;
}

.feature-block p,
.employee-app-section p,
.pilot-section p {
  margin: 0;
  color: #475569;
  font-size: 16px;
  line-height: 1.65;
}

.mini-ui,
.request-mini,
.phone-preview {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #f7f9fb;
  padding: 12px;
  box-shadow: var(--shadow);
}

.mini-ui img {
  max-height: 380px;
  object-fit: cover;
  object-position: top left;
  border-radius: 16px;
}

.request-mini {
  display: grid;
  gap: 12px;
}

.request-mini div {
  min-height: 74px;
  border: 1px solid #dbe3ec;
  border-radius: 16px;
  background: white;
  display: grid;
  grid-template-columns: 34px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 14px;
  font-size: 14px;
  font-weight: 800;
}

.request-mini svg {
  color: var(--blue);
}

.request-mini strong {
  color: var(--green);
  font-size: 12px;
}

.employee-app-section {
  background: #f3f6f9;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 58px;
  align-items: center;
}

.phone-preview {
  max-width: 360px;
  margin: 0 auto;
  padding: 10px;
}

.phone-preview img {
  border-radius: 20px;
}

.pilot-section {
  margin: 40px clamp(18px, 5vw, 72px);
  border: 1px solid #cfe0ff;
  border-radius: 28px;
  background: #eef5ff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.pilot-section div {
  max-width: 760px;
}

.final-cta {
  text-align: center;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 24px clamp(18px, 5vw, 72px);
  color: #64748b;
  background: #edf4ff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 13px;
  font-weight: 700;
}

.site-footer-copy {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.site-footer-links {
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  flex-wrap: wrap;
}

.site-footer-links a {
  color: #47627f;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  transition: color 0.18s ease;
  white-space: nowrap;
}

.site-footer-links a:hover {
  color: var(--blue);
}

.social-proof-section {
  padding: 22px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #ffffff;
  text-align: center;
}

.social-proof-section p {
  margin: 0 0 14px;
  color: #64748b;
  font-size: 13px;
  font-weight: 800;
}

.proof-row {
  max-width: 920px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.proof-row span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  padding: 8px 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #334155;
  font-size: 12px;
  font-weight: 800;
}

.proof-row span svg {
  width: 15px;
  height: 15px;
  color: var(--blue);
  flex: 0 0 15px;
}

.landing-section {
  padding: 52px clamp(18px, 5vw, 72px);
}

.section-copy {
  max-width: 780px;
}

.section-copy h2 {
  margin: 0 0 14px;
  color: var(--slate);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  font-weight: 900;
}

.section-copy p {
  margin: 0;
  color: #475569;
  font-size: 16px;
  line-height: 1.65;
}


.pain-section,
.pricing-section {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 0.72fr);
  gap: 42px;
  align-items: center;
}

.pain-grid,
.benefits-grid,
.testimonial-grid,
.steps-grid {
  display: grid;
  gap: 14px;
}

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

.pain-grid div,
.benefits-grid article,
.steps-grid article,
.pricing-card,
.faq-list details,
.testimonial-grid blockquote {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fbfaf7;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.03);
}

.pain-grid div {
  min-height: 112px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  color: #334155;
  font-size: 14px;
  font-weight: 800;
}

.pain-grid svg,
.benefits-grid svg {
  width: 22px;
  height: 22px;
  color: var(--blue);
}

.steps-grid {
  max-width: 1100px;
  margin: 0 auto 26px;
  grid-template-columns: repeat(3, 1fr);
}

.steps-grid article {
  padding: 22px;
}

.steps-grid span {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: #eff6ff;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 900;
}

.steps-grid h3,
.benefits-grid h3 {
  margin: 16px 0 8px;
  color: var(--slate);
  font-size: 17px;
}

.steps-grid p,
.benefits-grid p,
.faq-list p {
  margin: 0;
  color: #64748b;
  font-size: 14px;
  line-height: 1.55;
}

.how-visual,
.employee-screenshot {
  max-width: 1120px;
  margin: 0 auto;
  border: 1px solid #dbe3ec;
  border-radius: 24px;
  background: #eef3f8;
  padding: 10px;
  box-shadow: var(--shadow);
}

.how-visual img,
.employee-screenshot img {
  width: 100%;
  display: block;
  border-radius: 16px;
}

.benefits-grid {
  grid-column: 1;
  max-width: 760px;
  margin: 0;
  grid-template-columns: repeat(2, 1fr);
}

.benefits-grid article {
  padding: 20px;
}

.employee-screenshot {
  grid-column: 2;
  grid-row: 1 / span 2;
  max-width: 360px;
  justify-self: center;
}

.testimonials-section {
  background: #f3f6f9;
}

.testimonial-grid {
  max-width: 980px;
  margin: 0 auto;
  grid-template-columns: 1fr 1fr;
}

.testimonial-grid blockquote {
  margin: 0;
  padding: 24px;
  color: #1f2937;
  font-size: 16px;
  line-height: 1.7;
}

.testimonial-grid span {
  display: block;
  margin-top: 18px;
  color: #64748b;
  font-size: 13px;
  font-weight: 800;
}

.pricing-card {
  padding: 24px;
  background: #eef5ff;
  border-color: #cfe0ff;
}

.pricing-card span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.pricing-card strong {
  display: block;
  margin-bottom: 16px;
  color: var(--slate);
  font-size: 26px;
}

.pricing-card ul {
  margin: 0 0 20px;
  padding-left: 20px;
  color: #475569;
  line-height: 1.9;
  font-size: 14px;
}

.faq-list {
  max-width: 880px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 18px 20px;
}

.faq-list summary {
  cursor: pointer;
  color: var(--slate);
  font-size: 15px;
  font-weight: 900;
}

.faq-list p {
  margin-top: 10px;
}

.final-cta p {
  margin: 0 auto;
  max-width: 520px;
  color: #64748b;
  font-size: 16px;
  line-height: 1.6;
}

.demo-section {
  height: auto;
  padding: 50px clamp(14px, 4vw, 48px) 140px;
  background: var(--soft);
  overflow: visible;
}

.section-heading {
  max-width: 850px;
  margin: 0 auto 24px;
  text-align: center;
}

.section-heading h2 {
  margin: 0;
  color: var(--slate);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 950;
}

.demo-window {
  max-width: 1550px;
  margin: 0 auto;
  border: 1px solid #d7e0ea;
  border-radius: 30px;
  overflow: hidden;
  background: #f8fafc;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.14);
}

.demo-shell-scale {
  position: relative;
  --demo-scale: 1;
  height: 780px;
  overflow: hidden;
}

.demo-shell-scale .demo-shell {
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% / var(--demo-scale));
  height: 780px;
  transform: scale(var(--demo-scale));
  transform-origin: top left;
}

.demo-mobile-error {
  display: none;
  min-height: 260px;
  padding: 28px 18px;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #334155;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.4;
  background: #f8fafc;
}

.demo-disclaimer {
  margin: 12px auto 0;
  max-width: 1550px;
  color: #64748b;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
}

.demo-window-bar {
  height: 42px;
  border-bottom: 1px solid #e2e8f0;
  background: linear-gradient(180deg, #fbfdff 0%, #edf3f8 100%);
  display: grid;
  grid-template-columns: 120px 1fr 120px;
  align-items: center;
  padding: 0 16px;
}

.window-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.window-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  display: block;
  box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.08);
}

.window-dot.close {
  background: #ff5f57;
}

.window-dot.minimize {
  background: #febc2e;
}

.window-dot.maximize {
  background: #28c840;
}

.window-title {
  justify-self: center;
  color: #000000;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
}

.demo-shell {
  height: 780px;
  display: grid;
  grid-template-columns: 236px minmax(0, 1fr);
  background: var(--soft);
  overflow: hidden;
  position: relative;
  --demo-drag-timing: 2.55s cubic-bezier(0.18, 0.89, 0.24, 1);
}

.demo-shift-ghost {
  position: absolute;
  z-index: 40;
  pointer-events: none;
  transition: left var(--demo-drag-timing), top var(--demo-drag-timing) !important;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.22);
}

.demo-drag-cursor {
  position: absolute;
  z-index: 41;
  width: 20px;
  height: 26px;
  background: url("./cursor.png") center / contain no-repeat;
  transform: rotate(-2deg);
  filter: drop-shadow(0 0 8px rgba(248, 250, 252, 0.25));
  pointer-events: none;
  transition: left var(--demo-drag-timing), top var(--demo-drag-timing);
}

.demo-drag-cursor-label {
  position: absolute;
  z-index: 41;
  background: rgba(15, 23, 42, 0.92);
  color: #ffffff;
  font-size: 15px;
  font-weight: 800;
  padding: 8px 12px;
  border-radius: 10px;
  line-height: 1.2;
  pointer-events: none;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.24);
  transition: left var(--demo-drag-timing), top var(--demo-drag-timing);
  white-space: nowrap;
}

.demo-menu-cursor {
  position: absolute;
  z-index: 20050;
  width: 20px;
  height: 26px;
  background: url("./cursor.png") center / contain no-repeat;
  transform: rotate(-2deg);
  filter: drop-shadow(0 0 8px rgba(248, 250, 252, 0.2));
  pointer-events: none;
  transition: left 0.7s cubic-bezier(0.22, 1, 0.36, 1), top 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.demo-menu-cursor-label {
  position: absolute;
  z-index: 20050;
  background: rgba(15, 23, 42, 0.92);
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  padding: 8px 12px;
  border-radius: 10px;
  line-height: 1.2;
  pointer-events: none;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.24);
  transition: left 0.7s cubic-bezier(0.22, 1, 0.36, 1), top 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  white-space: nowrap;
}

.week-context-menu button.auto-demo-menu-highlight {
  background: #dbeafe;
  color: #1d4ed8;
  box-shadow: inset 0 0 0 1px #93c5fd;
}

.demo-shift-source-hidden {
  opacity: 0.28;
}

.sidebar {
  width: 100%;
  min-height: 100%;
  background: white;
  display: flex;
  flex-direction: column;
}

.sidebar-logo {
  user-select: none;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px;
}

.sidebar-logo img {
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  display: block;
}

.sidebar-logo-text {
  min-width: 0;
}

.sidebar-logo h1 {
  margin: 0;
  letter-spacing: 1px;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.05;
  color: var(--blue);
}

.sidebar-logo p {
  margin: 3px 0 0;
  letter-spacing: 1px;
  font-size: 14px;
  line-height: 1.1;
  color: #323232;
}

.sidebar-menu {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px;
}

.sidebar-item {
  width: 100%;
  border: none;
  background: transparent;
  gap: 10px;
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #5f6b7c;
  padding: 13px 14px;
  border-radius: 14px;
  font-size: 14px;
  transition: 0.2s;
  cursor: pointer;
  user-select: none;
  text-align: left;
}

.sidebar-item:hover {
  background: #eff6ff;
  color: var(--blue);
}

.sidebar-item.active {
  background: var(--blue);
  color: white;
}

.sidebar-menu svg,
.profile-button svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  opacity: 0.9;
}

.sidebar-spacer {
  flex: 1;
}

.sidebar-footer {
  margin-top: auto;
  padding: 14px;
}

.profile-button {
  width: 100%;
  border: 1px solid var(--blue-dark);
  background: var(--blue);
  color: white;
  min-height: 46px;
  padding: 0 14px;
  border-radius: 14px;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.18);
}

.sidebar-icon-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.notification-indicator {
  position: absolute;
  top: -8px;
  right: -10px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: #ef4444;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
}

.demo-app {
    letter-spacing: 0px;
  line-height: 1;
  min-width: 0;
  height: 780px;
  background: var(--soft);
  overflow: auto;
}

.demo-shell.demo-autoplay-lock .demo-app {
  overflow-y: hidden;
}

.demo-shell.demo-autoplay-lock .schedule-scroll {
  overflow-y: hidden;
}

#demoContent {
  height: 100%;
  min-height: 100%;
}

.page {
  height: 100%;
  min-height: 100%;
}

.week-page {
  height: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.week-page .week-toolbar,
.topbar,
.day-toolbar,
.notifications-header,
.employees-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding: 26px 20px 18px 50px;
}

.week-toolbar-left,
.topbar-left,
.toolbar-title-row {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.week-toolbar-right,
.week-navigation,
.date-navigation,
.day-actions,
.toolbar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.week-range,
.title h1,
.notifications-title,
.employees-toolbar h1,
.day-title h1 {
  margin: 0;
  color: var(--slate);
  font-size: 28px;
  font-weight: 900;
}

.week-subtitle,
.title p,
.employees-toolbar p,
.day-title p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}

.nav-btn,
.calendar-btn,
.today-btn,
.draft-btn,
.publish-btn,
.add-btn,
.announcement-btn,
.table-btn {
  height: 42px;
  border: 1px solid var(--line);
  background: white;
  border-radius: 14px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  color: var(--slate);
  font-size: 13px;
  font-weight: 800;
  transition: 0.18s;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.03);
  white-space: nowrap;
}

.nav-btn:hover,
.calendar-btn:hover,
.today-btn:hover,
.draft-btn:hover {
  background: #f8fafc;
}

.date-nav-icon,
.week-page .nav-btn {
  width: 42px;
  min-width: 42px;
  padding: 0;
}

.hidden-date-input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.nav-btn svg,
.calendar-btn svg,
.today-btn svg,
.publish-btn svg,
.add-btn svg,
.announcement-btn svg,
.table-btn svg {
  width: 17px;
  height: 17px;
}

.publish-btn,
.add-btn,
.announcement-btn {
  border-color: var(--blue);
  background: var(--blue);
  color: white;
}

.publish-btn.published,
.table-btn.success {
  border-color: var(--green);
  background: var(--green);
  color: white;
}

.table-btn.reject {
  border-color: #fee2e2;
  background: #fee2e2;
  color: var(--red);
}

.week-save-status {
  height: 42px;
  min-width: 118px;
  border: 1px solid #bbf7d0;
  border-radius: 14px;
  background: #f0fdf4;
  color: #15803d;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 14px;
  font-size: 12px;
  font-weight: 800;
}

.week-save-status svg {
  width: 17px;
  height: 17px;
}

.schedule-wrapper {
  margin: 0 20px;
  background: white;
  border-radius: 30px 30px 0 0;
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: var(--shadow);
  flex: 1;
  min-height: 0;
}

.schedule-scroll {
  --week-grid-scale: 1;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  background: #ffffff;
}

.schedule-table {
  width: 100%;
  min-height: 100%;
  min-width: calc(1220px * var(--week-grid-scale));
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed;
}

.schedule-table th,
.schedule-table td {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.schedule-table th {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: calc(70px * var(--week-grid-scale));
  background: #f8fafc;
  padding: calc(10px * var(--week-grid-scale));
  text-align: center;
}

.schedule-table th:hover,
.schedule-table th:focus-within,
.schedule-table th.is-day-popup-open,
.schedule-table th:has(.day-target-indicator:hover),
.schedule-table th:has(.day-target-indicator:focus-within) {
  z-index: 5000;
}

.schedule-table th:first-child,
.employee-cell {
  position: sticky;
  left: 0;
  z-index: 16;
}

.schedule-table th:first-child {
  z-index: 30;
}

.employee-col {
  width: calc(160px * var(--week-grid-scale));
  min-width: calc(160px * var(--week-grid-scale));
}

.employee-cell {
  background: white;
  padding: calc(14px * var(--week-grid-scale)) calc(14px * var(--week-grid-scale))
    calc(14px * var(--week-grid-scale)) calc(28px * var(--week-grid-scale));
}

.employee-name {
  color: var(--slate);
  font-size: calc(14px * var(--week-grid-scale));
  font-weight: 900;
}

.employee-role,
.employee-hours,
.day-meta {
  margin-top: 4px;
  color: var(--muted);
  font-size: calc(12px * var(--week-grid-scale));
  font-weight: 700;
}

.employee-hours {
  margin-top: calc(8px * var(--week-grid-scale));
  color: var(--blue);
  font-size: calc(11px * var(--week-grid-scale));
  font-weight: 800;
}

.employee-role {
  display: flex;
  flex-wrap: wrap;
  gap: calc(6px * var(--week-grid-scale));
}

.role-chip-inline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 22px;
  padding: 3px 8px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--role-color, #2563eb) 12%, white);
  color: var(--role-color, #2563eb);
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.role-dot-inline {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--role-color, #2563eb);
  flex-shrink: 0;
}

.day-name {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.day-name-link {
  border: none;
  background: transparent;
  padding: 0;
  color: var(--slate);
  font-size: calc(13px * var(--week-grid-scale));
  font-weight: 900;
  cursor: pointer;
}

.day-name-link:hover {
  color: var(--blue);
  text-decoration: underline;
}

.day-date {
  margin-top: 4px;
  color: #94a3b8;
  font-size: calc(11px * var(--week-grid-scale));
  font-weight: 700;
  text-align: center;
}

.day-meta {
  color: var(--blue);
  font-size: calc(11px * var(--week-grid-scale));
  font-weight: 800;
  text-align: center;
}

.day-target-indicator {
  position: relative;
  margin: 0;
  position: absolute;
  top: 50%;
  left: calc(100% + 6px * var(--week-grid-scale));
  transform: translateY(-50%);
  width: calc(26px * var(--week-grid-scale));
  height: calc(26px * var(--week-grid-scale));
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #eff6ff;
  color: var(--blue);
  z-index: 1;
}

.day-target-indicator:hover,
.day-target-indicator:focus-within {
  z-index: 2;
}

.day-target-indicator.has-alert {
  background: #fff7ed;
  color: #ea580c;
}

.day-target-indicator.is-fulfilled {
  background: #ecfdf3;
  color: var(--green);
}

.day-target-indicator.no-target {
  background: #f8fafc;
  color: #94a3b8;
}

.day-target-indicator > svg {
  width: calc(14px * var(--week-grid-scale));
  height: calc(14px * var(--week-grid-scale));
}

.day-target-popup {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  width: calc(220px * var(--week-grid-scale));
  padding: calc(12px * var(--week-grid-scale));
  border-radius: calc(16px * var(--week-grid-scale));
  border: 1px solid var(--line);
  background: white;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.12);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 5001;
}

.day-target-indicator:hover .day-target-popup,
.day-target-indicator:focus-within .day-target-popup {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.day-target-popup-title {
  color: var(--slate);
  font-size: calc(12px * var(--week-grid-scale));
  font-weight: 900;
  margin-bottom: calc(10px * var(--week-grid-scale));
}

.day-target-popup-list {
  display: grid;
  gap: calc(6px * var(--week-grid-scale));
  margin-top: calc(8px * var(--week-grid-scale));
}

.day-target-popup-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: var(--muted);
  font-size: calc(11px * var(--week-grid-scale));
  font-weight: 800;
}

.day-target-popup-item.is-fulfilled {
  color: var(--green);
}

.day-target-popup-item.is-unfulfilled {
  color: #ea580c;
}

.day-target-popup-item.is-total {
  padding-bottom: calc(8px * var(--week-grid-scale));
  border-bottom: 1px solid #eef2f7;
}

.day-target-role-name {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.shift-cell {
  position: relative;
  min-height: calc(82px * var(--week-grid-scale));
  height: calc(82px * var(--week-grid-scale));
  padding: calc(3px * var(--week-grid-scale));
  background: white;
}

.shift-cell.drop-target {
  background: #dbeafe;
}

.empty-cell {
  min-height: calc(75px * var(--week-grid-scale));
  border-radius: calc(10px * var(--week-grid-scale));
}

.shift-card {
  min-height: calc(75px * var(--week-grid-scale));
  padding: calc(12px * var(--week-grid-scale));
  border-radius: calc(18px * var(--week-grid-scale));
  cursor: grab;
  user-select: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: calc(5px * var(--week-grid-scale));
  border: none;
  transition: 0.16s;
  box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.04);
}

.shift-card:active {
  cursor: grabbing;
}

.shift-card.selected {
  box-shadow: inset 0 0 0 2px var(--blue), 0 8px 20px rgba(37, 99, 235, 0.18);
  transform: translateY(-1px);
}

.shift-blue {
  background: #eff6ff;
  color: var(--slate);
}

.shift-green {
  background: #ecfdf5;
  color: var(--slate);
}

.shift-red {
  background: #fef2f2;
  color: var(--slate);
}

.shift-dayoff-approved,
.shift-swap-approved {
  background: #f1f5f9;
  color: #64748b;
  opacity: 0.82;
  filter: saturate(0.45);
  transform: scale(0.985);
}

.shift-dayoff-approved .shift-time,
.shift-dayoff-approved .shift-location,
.shift-swap-approved .shift-time,
.shift-swap-approved .shift-location {
  color: #64748b;
}

.shift-swap-mirrored {
  opacity: 1;
  filter: none;
  transform: none;
}

.shift-time {
  font-size: calc(12px * var(--week-grid-scale));
  font-weight: 800;
  color: var(--slate);
  margin-bottom: calc(6px * var(--week-grid-scale));
}

.shift-location {
  font-size: calc(11px * var(--week-grid-scale));
  font-weight: 700;
  color: #475569;
  opacity: 1;
}

.shift-role-line {
  margin-top: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 20px;
  padding: 2px 7px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--role-color, #2563eb) 14%, white);
  color: var(--role-color, #2563eb);
  font-size: calc(10px * var(--week-grid-scale));
  font-weight: 900;
  line-height: 1;
}

.request-indicators {
  position: absolute;
  top: calc(8px * var(--week-grid-scale));
  right: calc(8px * var(--week-grid-scale));
  display: flex;
  gap: calc(5px * var(--week-grid-scale));
  align-items: center;
  z-index: 20;
  pointer-events: none;
}

.request-indicators:has(.request-indicator:hover),
.request-indicators:has(.request-tooltip:hover) {
  z-index: 6000;
}

.request-indicator {
  position: relative;
  width: calc(25px * var(--week-grid-scale));
  height: calc(25px * var(--week-grid-scale));
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  color: var(--request-color, var(--blue));
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08), inset 0 0 0 1px rgba(15, 23, 42, 0.06);
  flex-shrink: 0;
  pointer-events: auto;
  z-index: 1;
}

.request-indicator:hover,
.request-indicator:has(.request-tooltip:hover) {
  z-index: 7000;
}

.request-indicator svg {
  width: calc(16px * var(--week-grid-scale));
  height: calc(16px * var(--week-grid-scale));
}

.availability-request {
  --request-color: var(--amber);
}

.swap-request {
  --request-color: var(--amber);
}

.dayoff-request {
  --request-color: var(--amber);
}

.request-indicator-pending {
  background: var(--amber);
  color: white;
}

.request-indicator-success {
  background: var(--green);
  color: white;
}

.request-indicator-danger {
  background: var(--red);
  color: white;
}

.request-indicator-pending svg,
.request-indicator-success svg,
.request-indicator-danger svg {
  color: white;
}

.mirrored-swap-request {
  background: white;
  color: var(--green);
}

.mirrored-swap-request svg {
  color: var(--green);
}

.request-tooltip {
  position: absolute;
  top: 0;
  right: calc(100% + 12px);
  min-width: 220px;
  padding: 12px;
  border-radius: 16px;
  background: var(--slate);
  color: white;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.4;
  opacity: 0;
  visibility: hidden;
  transform: translateX(6px);
  transition: opacity 0.16s, transform 0.16s, visibility 0.16s;
  pointer-events: auto;
  z-index: 8000;
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.22);
}

.request-tooltip strong {
  display: inline-block;
  margin-bottom: 4px;
}

.request-tooltip-buttons {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.request-tooltip-buttons button {
  border: none;
  min-height: 30px;
  border-radius: 10px;
  padding: 0 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: white;
  font-size: 11px;
  font-weight: 800;
  cursor: default;
}

.request-tooltip-buttons svg {
  width: 13px;
  height: 13px;
}

.tooltip-approve {
  background: var(--green);
}

.tooltip-reject {
  background: var(--red);
}

.request-indicator:hover .request-tooltip,
.request-tooltip:hover {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.week-context-menu {
  position: absolute;
  z-index: 20000;
  min-width: 166px;
  padding: 6px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.18);
}

.week-context-menu.hidden {
  display: none;
}

.week-context-menu button {
  width: 100%;
  height: 38px;
  border: none;
  background: transparent;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 10px;
  color: var(--slate);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  text-align: left;
}

.week-context-menu button:hover {
  background: #eff6ff;
  color: var(--blue);
}

.week-context-menu button.is-blocked {
  color: #94a3b8;
}

.week-context-menu svg {
  width: 16px;
  height: 16px;
}

.day-page {
  margin: 40px 20px 24px;
  min-height: 740px;
}

.daybar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
  margin-left: 30px;
  flex-wrap: wrap;
}

.daybar-left {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.day-header {
  display: flex;
  flex-direction: column;
}

.date-pill {
  margin: 0;
  color: var(--slate);
  font-size: 28px;
  font-weight: 900;
}

.day-subtitle {
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}

.day-page .date-navigation {
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn {
  background: #ffffff;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  color: var(--slate);
  font-size: 13px;
  font-weight: 800;
  transition: 0.18s;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.03);
}

.btn:hover {
  background: #f8fafc;
}

.btn svg {
  width: 17px;
  height: 17px;
}

.day-page .day-schedule-wrapper {
  margin: 0;
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: none;
}

.day-page .timeline {
  width: calc(100% - 8px);
}

.day-page .timeline-header {
  display: grid;
  grid-template-columns: repeat(24, minmax(0, 1fr));
  background: #f8fafc;
  border-bottom: 1px solid var(--line);
}

.day-page .timeline-header div {
  min-width: 0;
  padding: 6px 2px;
  text-align: center;
  font-size: 10px;
  font-weight: 700;
  color: var(--muted);
  border-right: 1px solid #f1f5f9;
}

.day-page .employee-row {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 30px;
  border-bottom: 1px solid var(--line);
}

.day-page .timeline-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(24, minmax(0, 1fr));
  min-height: 30px;
}

.day-page .hour-cell {
  border-right: 1px solid #f8fafc;
}

.day-page .shift {
  position: absolute;
  top: 3px;
  height: 24px;
  border-radius: 6px;
  background: var(--blue);
  color: white;
  border-left: 4px solid var(--blue-dark);
  padding: 4px 8px;
  display: flex;
  align-items: center;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 10px;
  font-weight: 700;
}

.timeline-panel,
.requests-wrapper,
.employees-grid-wrapper,
.notifications-list {
  margin: 0 20px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.notifications-page {
  min-height: 780px;
  display: flex;
  flex-direction: column;
  padding-bottom: 18px;
}

.notifications-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 14px;
  flex: 1;
  box-shadow: none;
  background: transparent;
  border: none;
  overflow: visible;
}

.notification-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 20px 22px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.03), 0 8px 24px rgba(15, 23, 42, 0.04);
}

.notification-card.unread {
  border-left: 5px solid var(--blue);
  background: #eff6ff;
}

.notification-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}

.notification-text strong {
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 900;
}

.notification-text {
  color: var(--slate);
  line-height: 1.65;
}

.notification-meta {
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 700;
  color: #94a3b8;
  background: #f8fafc;
  border: 1px solid var(--line);
  padding: 7px 10px;
  border-radius: 999px;
  white-space: nowrap;
}

.announcement-card {
  background: white;
  border-radius: 18px;
  padding: 14px;
  margin: 18px 20px 0;
  border: 1px solid var(--line);
  position: sticky;
  bottom: 18px;
  z-index: 20;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.1);
}

.announcement-title {
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 10px;
}

.announcement-composer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: end;
}

.announcement-textarea {
  width: 100%;
  min-height: 46px;
  max-height: 120px;
  border: 1px solid #cbd5e1;
  border-radius: 14px;
  padding: 13px 14px;
  resize: vertical;
  font-size: 14px;
  outline: none;
}

.announcement-textarea:focus {
  border-color: var(--blue);
}

.requests-page {
  margin: 40px 20px 24px;
  padding-bottom: 0;
}

.week-range.requests-range {
  margin: 0 0 18px 55px;
  font-size: 20px;
  font-weight: 800;
  color: var(--slate);
}

.requests-page .topbar {
  padding: 0 20px 0 50px;
  margin-bottom: 18px;
}

.requests-page .requests-wrapper {
  margin: 0;
  background: white;
  border-radius: 28px;
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: none;
}

.employee-section {
  border-bottom: 1px solid var(--line);
}

.employee-section:last-child {
  border-bottom: none;
}

.employee-header {
  padding: 18px 20px;
  background: #f8fafc;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.employee-info h3 {
  margin: 0 0 4px;
  font-size: 16px;
  font-weight: 900;
  color: var(--slate);
}

.employee-role {
  font-size: 12px;
  color: var(--muted);
}

.request-count {
  background: #dbeafe;
  color: var(--blue);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.requests-list {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.request-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 10px 12px;
  background: white;
}

.request-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.request-type {
  font-size: 12px;
  font-weight: 800;
  color: var(--slate);
}

.request-date {
  font-size: 11px;
  color: var(--muted);
  margin-top: 2px;
}

.request-message {
  font-size: 13px;
  color: var(--slate);
  font-weight: 800;
  line-height: 1.35;
}

.request-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 12px;
}

.employees-page {
  padding: 18px;
}

.employees-toolbar {
  padding: 0;
  margin-bottom: 18px;
}

.employees-grid-wrapper {
  margin: 0;
}

.employees-table {
  width: 100%;
  border-collapse: collapse;
}

.employees-table thead {
  background: #f8fafc;
}

.employees-table th {
  padding: 16px;
  font-size: 11px;
  font-weight: 800;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.employees-table td {
  padding: 14px 16px;
  border-bottom: 1px solid #f1f5f9;
  font-size: 13px;
  vertical-align: middle;
}

.employees-table tbody tr:hover {
  background: #f8fafc;
}

.employee-table-cell {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 12px;
  background: #dbeafe;
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
}

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

.modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 9999;
}

.modal-card {
  width: min(100%, 420px);
  background: white;
  border-radius: 24px;
  padding: 22px;
}

.modal-card h3 {
  margin: 0 0 20px;
}

.employee-role-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.employee-role-text {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.staffing-page {
  padding: 18px;
}

.staffing-toolbar,
.chat-header {
  padding: 0;
  margin-bottom: 18px;
}

.staffing-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  flex-wrap: wrap;
}

.staffing-toolbar h1,
.chat-header h1 {
  margin: 0 0 6px;
  color: var(--slate);
  font-size: 26px;
  font-weight: 900;
}

.staffing-toolbar p,
.chat-header p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.staffing-save-btn,
.chat-send-btn {
  height: 42px;
  border: none;
  border-radius: 14px;
  background: var(--blue);
  color: white;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.staffing-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.9fr);
  gap: 16px;
  align-items: start;
}

.staffing-panel,
.chat-panel {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: white;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.staffing-panel-header,
.chat-conversation-header,
.chat-search-wrap {
  padding: 16px 18px;
  border-bottom: 1px solid #eef2f7;
  background: #f8fafc;
}

.staffing-panel-header h2 {
  margin: 0 0 5px;
  font-size: 18px;
  font-weight: 900;
}

.staffing-panel-header p {
  margin: 0;
  font-size: 12px;
  color: var(--muted);
  font-weight: 700;
}

.staffing-panel-body {
  padding: 16px;
}

.role-create-row {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 42px;
  gap: 8px;
  margin-bottom: 14px;
}

.role-create-row input[type="text"],
.role-create-row input[type="color"] {
  height: 42px;
  border: 1px solid #dbe3ee;
  border-radius: 13px;
  background: #f8fafc;
}

.role-create-row input[type="text"] {
  padding: 0 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.role-create-row input[type="color"] {
  padding: 4px;
}

.role-create-row button,
.staffing-role-item button {
  border: none;
  cursor: pointer;
}

.staffing-role-list {
  display: grid;
  gap: 8px;
}

.staffing-role-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  padding: 10px;
}

.staffing-role-name {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--slate);
  font-size: 13px;
  font-weight: 900;
}

.staffing-role-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--role-color, #2563eb);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--role-color, #2563eb) 13%, white);
  flex-shrink: 0;
}

.staffing-role-item button {
  width: 34px;
  height: 34px;
  border-radius: 11px;
  background: #fee2e2;
  color: #dc2626;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.staffing-targets-table-wrap {
  overflow: auto;
}

.staffing-targets-table {
  width: 100%;
  min-width: 620px;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed;
}

.staffing-targets-table th,
.staffing-targets-table td {
  border-bottom: 1px solid #eef2f7;
  padding: 10px 8px;
  text-align: left;
  vertical-align: top;
}

.staffing-targets-table th {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.staffing-targets-table td:first-child {
  color: var(--slate);
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}

.staffing-total-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 66px;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: #fff7ed;
  color: #ea580c;
  font-size: 13px;
  font-weight: 900;
}

.staffing-total-pill.is-good,
.staffing-target-value.is-good {
  background: #ecfdf3;
  color: var(--green);
}

.staffing-target-role-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(112px, 132px));
  justify-content: start;
  gap: 9px 12px;
}

.staffing-target-role label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
  color: var(--slate);
  font-size: 12px;
  font-weight: 800;
}

.staffing-target-value {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  min-height: 34px;
  padding: 0 10px;
  border-radius: 12px;
  background: #f8fafc;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.chat-page {
  padding: 18px;
}

.chat-shell {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 16px;
  min-height: 700px;
}

.chat-list-panel,
.chat-conversation-panel {
  min-height: 0;
  display: flex;
  flex-direction: column;
}

.chat-search {
  width: 100%;
  height: 42px;
  border: 1px solid #dbe3ee;
  border-radius: 14px;
  background: white;
  color: var(--slate);
  padding: 0 14px;
  font-size: 13px;
  font-weight: 700;
  outline: none;
}

.chat-employee-list {
  min-height: 0;
  overflow: auto;
  padding: 8px;
}

.chat-employee-item {
  width: 100%;
  min-height: 62px;
  border: none;
  border-radius: 16px;
  background: transparent;
  color: var(--slate);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  cursor: pointer;
  text-align: left;
}

.chat-employee-item:hover {
  background: #f8fafc;
}

.chat-employee-item.active {
  background: #eff6ff;
  color: var(--blue-dark);
}

.chat-avatar {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: #dbeafe;
  color: var(--blue-dark);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  font-size: 14px;
  font-weight: 900;
}

.chat-employee-main {
  min-width: 0;
  flex: 1;
}

.chat-employee-name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 900;
}

.chat-employee-preview,
.chat-conversation-subtitle {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
  margin-top: 2px;
}

.chat-unread {
  min-width: 22px;
  height: 22px;
  border-radius: 999px;
  background: var(--blue);
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 7px;
  font-size: 11px;
  font-weight: 900;
}

.chat-conversation-header {
  min-height: 70px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.chat-conversation-title {
  color: var(--slate);
  font-size: 15px;
  font-weight: 900;
}

.chat-messages {
  flex: 1;
  min-height: 0;
  overflow: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
  background: #f8fafc;
}

.chat-message {
  max-width: min(560px, 78%);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
  color: var(--slate);
  padding: 10px 12px;
}

.chat-message.from-manager {
  align-self: flex-end;
  background: var(--blue);
  border-color: var(--blue);
  color: white;
}

.chat-message-body {
  white-space: pre-wrap;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
}

.chat-message-meta {
  margin-top: 5px;
  color: #94a3b8;
  font-size: 10px;
  font-weight: 800;
  text-align: right;
}

.chat-message.from-manager .chat-message-meta {
  color: rgba(255, 255, 255, 0.72);
}

.chat-composer {
  border-top: 1px solid var(--line);
  background: white;
  padding: 12px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: end;
}

.chat-composer textarea {
  width: 100%;
  min-height: 44px;
  max-height: 132px;
  border: 1px solid #dbe3ee;
  border-radius: 14px;
  background: #f8fafc;
  color: var(--slate);
  padding: 12px 14px;
  resize: vertical;
  outline: none;
  font-size: 13px;
  font-weight: 700;
}

.chat-empty {
  height: 100%;
  min-height: 180px;
  display: grid;
  place-items: center;
  color: var(--muted);
  text-align: center;
  font-size: 13px;
  font-weight: 750;
  padding: 24px;
}

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

.form-grid label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.form-grid input {
  width: 100%;
  border: 1px solid #dbe2ea;
  border-radius: 14px;
  padding: 14px;
  font-size: 14px;
  outline: none;
}

.form-grid input:focus {
  border-color: var(--blue);
}

.modal-actions {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.modal-actions button {
  flex: 1;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 22px;
  z-index: 30000;
  transform: translateX(-50%);
  max-width: min(420px, calc(100vw - 28px));
  border-radius: 16px;
  background: #0f172a;
  color: white;
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.25);
}

.hidden {
  display: none !important;
}

@media (max-width: 1100px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-preview {
    padding: 10px;
  }

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

  .problem-section,
  .feature-block,
  .feature-block.reverse,
  .employee-app-section,
  .benefits-section,
  .pain-section,
  .pricing-section {
    grid-template-columns: 1fr;
  }

  .benefits-section .section-heading,
  .benefits-grid,
  .employee-screenshot {
    grid-column: auto;
    grid-row: auto;
  }

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

  .feature-block.reverse > div:first-child {
    order: 0;
  }

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

  .demo-window {
    border-radius: 24px;
  }

  .demo-sidebar {
    min-height: auto;
  }

  .sidebar-menu {
    flex-direction: row;
    overflow-x: auto;
  }

  .sidebar-footer,
  .sidebar-spacer {
    display: none;
  }
}

@media (max-width: 720px) {
  .site-nav {
    display: none;
  }

  .header-right {
    display: none;
  }

  .hero {
    padding: 48px 16px 32px;
    text-align: left;
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero-preview {
    margin-top: 32px;
    border-radius: 18px;
    padding: 6px;
  }

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

  .hero-app-shot {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(220px, 68vw);
    margin: 12px auto -10px;
  }

  .hero-app-shot img {
    height: 360px;
  }

  .audience-section,
  .feature-flow,
  .employee-app-section,
  .pilot-section,
  .final-cta {
    padding: 52px 16px;
  }

  .audience-grid,
  .comparison,
  .steps-grid,
  .benefits-grid,
  .testimonial-grid,
  .pain-grid {
    grid-template-columns: 1fr;
  }

  .problem-section {
    margin: 16px;
    padding: 30px 18px;
    grid-template-columns: 1fr;
  }

  .pilot-section {
    margin: 24px 16px;
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer {
    flex-direction: column;
  }

  .demo-section {
    min-height: 1050px;
    height: auto;
    padding-bottom: 120px;
    padding-left: 12px;
    padding-right: 12px;
  }

  .demo-window-bar {
    grid-template-columns: 80px 1fr 80px;
    padding: 0 12px;
  }

  .week-page .week-toolbar,
  .topbar,
  .day-toolbar,
  .notifications-header {
    padding-left: 18px;
  }

  .schedule-wrapper,
  .timeline-panel,
  .requests-wrapper,
  .notifications-list,
  .announcement-card {
    margin-left: 12px;
    margin-right: 12px;
  }
}

/* Strategic landing upgrade */

.hero-benefits {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-benefits span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #334155;
  font-size: 13px;
  font-weight: 800;
}

.hero-benefits svg {
  width: 16px;
  height: 16px;
  color: var(--blue);
}

.problem-solution {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  background: #f8fafc;
}

.problem-card {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 24px;
  background: #fbfaf7;
}

.problem-card h2 {
  margin: 0 0 14px;
  font-size: 24px;
  line-height: 1.2;
}

.problem-card ul {
  margin-top: 30px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.problem-card li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 12px;
  border-radius: 12px;
  color: #334155;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  background-color: white;
  box-shadow: 0px 0px 4px #2727273b;
}

.problem-card li svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.old-way li svg {
  color: var(--red);
}

.new-way li svg {
  color: var(--green);
}

.old-way {
  background: #ffffff;
}

.old-way li{
color: black;
}

.old-way h2,
.old-way svg {
  color: var(--red);
}

.new-way {
  background: #f4fbf6;
}

.new-way li{
color: black;
}

.new-way h2,
.new-way svg {
  color: var(--green);
}

.walkthrough-grid {
  max-width: 90%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 16px;
  align-items: stretch;
}

.walkthrough-grid article {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 18px;
  background: #fbfaf7;
  display: flex;
  flex-direction: column;
}

.feature-slider {
  justify-content: flex-start;
  min-height: 0;
}

.feature-chip {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 14px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #eaf2ff;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
}

.feature-slides {
  position: relative;
  overflow: hidden;
  flex: 0 0 auto;
  transition: height 0.35s ease;
}

.feature-slide {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  inset: 0;
  display: grid;
  align-content: start;
  grid-template-rows: auto auto auto 1fr;
  transform: translateX(18%);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  gap: 0;
}

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

.feature-slide.is-prev {
  opacity: 0;
  pointer-events: none;
}

.feature-slide.from-right.is-prev {
  transform: translateX(-18%);
}

.feature-slide.from-left {
  transform: translateX(-18%);
}

.feature-slide.is-active.from-left,
.feature-slide.is-active.from-right {
  transform: translateX(0);
}

.feature-slide.from-left.is-prev {
  transform: translateX(18%);
}

.walkthrough-grid h3 {
  margin: 0 0 8px;
  font-size: 26px;
  line-height: 1.2;
}

.walkthrough-grid p {
  margin: 0 0 14px;
  color: #64748b;
  font-size: 14px;
}

.feature-media {
  margin-top: 10px;
  border: 1px solid #dbe3ec;
  border-radius: 14px;
  background: #eef4ff;
  padding: 8px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.walkthrough-grid .feature-media {
  margin-left: 0;
  margin-right: auto;
}

.feature-slider:not(.app-slider) .feature-media {
  position: relative;
  border: 1px solid #d7e0ea;
  border-radius: 16px;
  background: #f3f7fc;
  padding: 24px 10px 10px;
  overflow: hidden;
  width: min(100%, 790px);
  margin-left: auto;
  margin-right: auto;
}

.feature-slider:not(.app-slider) .feature-media::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 10px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #d1d9e6;
  box-shadow: 12px 0 0 #d1d9e6, 24px 0 0 #d1d9e6;
}

.walkthrough-grid .feature-media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: top center;
  border-radius: 0;
  background: #ffffff;
}

.feature-slider:not(.app-slider) .feature-media img {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.feature-slider:not(.app-slider) .feature-video {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  border: none;
  background: #ffffff;
}

.feature-expand {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 3;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(148, 163, 184, 0.42);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--slate);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.14);
  backdrop-filter: blur(10px);
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.feature-expand:hover {
  background: var(--blue);
  color: white;
  transform: translateY(-1px);
}

.feature-expand svg {
  width: 17px;
  height: 17px;
}

.app-slider .feature-slide .feature-media img {
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.app-slider .feature-media {
  width: min(100%, 166px);
  height: 369px;
  margin-left: auto;
  margin-right: auto;
  background: #0f172a;
  border: 1px solid #1e293b;
  border-radius: 28px;
  padding: 8px 7px 9px;
  position: relative;
  box-shadow: none;
}

.app-slider .feature-media::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 50%;
  transform: translateX(-50%);
  width: 58px;
  height: 10px;
  border-radius: 8px;
  background: #0b1220;
  border: 1px solid #111827;
}

.app-slider .feature-media::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: #334155;
}

.app-slider .feature-media img {
  border-radius: 22px;
  border: none;
  background: transparent;
}

.feature-dots {
  margin: auto auto 0;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: fit-content;
  min-height: 30px;
  border: 1px solid #dbeafe;
  border-radius: 999px;
  background: rgba(248, 250, 252, 0.92);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.feature-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  background: #bfdbfe;
  cursor: pointer;
  padding: 0;
  transition: width 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.feature-dot.is-active {
  width: 28px;
  background: var(--blue);
}

.feature-dot:hover {
  background: #93c5fd;
  transform: translateY(-1px);
}

.feature-dot.is-active:hover {
  background: var(--blue-dark);
}

.feature-dot:focus-visible {
  outline: 3px solid rgba(37, 99, 235, 0.22);
  outline-offset: 3px;
}

.feature-video-modal {
  position: fixed;
  inset: 0;
  z-index: 50000;
  padding: clamp(16px, 4vw, 48px);
  background: rgba(2, 6, 23, 0.84);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-video-dialog {
  width: min(1180px, 96vw);
  max-height: 92vh;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 18px;
  background: #0f172a;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
  overflow: hidden;
}

.feature-video-modal-bar {
  min-height: 54px;
  padding: 0 12px 0 18px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #e2e8f0;
  font-size: 14px;
  font-weight: 900;
}

.feature-video-close {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.78);
  color: #e2e8f0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.feature-video-close:hover {
  background: #1e293b;
}

.feature-video-close svg {
  width: 18px;
  height: 18px;
}

.feature-video-large {
  display: block;
  width: 100%;
  max-height: calc(92vh - 54px);
  background: #020617;
}

.process-row {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.process-row div {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fbfaf7;
  padding: 18px;
}

.process-row span {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: #eff6ff;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 900;
}

.process-row p {
  margin: 10px 0 0;
  color: #334155;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.5;
}

.executive-impact {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 40px);
  display: grid;
  gap: 24px;
}

.executive-heading {
  display: grid;
  gap: 14px;
  text-align: center;
  justify-items: center;
}

.executive-heading h2 {
  margin: 0;
  font-size: clamp(30px, 4.2vw, 48px);
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: #0f172a;
}

.executive-lead {
  margin: 0;
  max-width: 760px;
  color: #475569;
  font-size: 17px;
  line-height: 1.75;
}

.executive-body {
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.executive-highlights {
  display: grid;
  gap: 14px;
}

.executive-stat {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #ffffff;
  padding: 18px 18px 16px;
}

.executive-stat strong {
  display: block;
  margin-bottom: 6px;
  color: #0f172a;
  font-size: 18px;
  font-weight: 900;
}

.executive-stat span {
  color: #64748b;
  font-size: 14px;
  line-height: 1.6;
}

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

.executive-card {
  min-height: 210px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #ffffff;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.executive-card-primary {
  background: #ffffff;
}

.executive-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: #eff6ff;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.executive-icon svg {
  width: 22px;
  height: 22px;
}

.executive-card h3 {
  margin: 0;
  color: #0f172a;
  font-size: 22px;
  line-height: 1.15;
}

.executive-card p {
  margin: 0;
  color: #64748b;
  font-size: 15px;
  line-height: 1.7;
}

.pilot-section {
  margin: 36px clamp(18px, 5vw, 72px);
}

.final-cta {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
  color: white;
  text-align: center;
  padding: 68px clamp(18px, 5vw, 72px);
}

.final-cta h2 {
  margin: 0 0 8px;
  color: var(--blue);
  font-size: clamp(28px, 4vw, 44px);
}

.final-cta .hero-actions {
  justify-content: center;
}

@media (max-width: 1080px) {
  .header-right {
    width: 100%;
    justify-content: flex-end;
  }

  .problem-solution,
  .process-row,
  .executive-grid {
    grid-template-columns: 1fr;
  }

  .executive-body {
    grid-template-columns: 1fr;
  }

  .walkthrough-grid {
    max-width: 100%;
    grid-template-columns: 1fr;
  }

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

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

  .hero-app-shot {
    padding: 6px 5px 6px;
    border-radius: 22px;
  }

  .hero-app-shot img {
    border-radius: 18px;
  }
}

@media (max-width: 1280px) {
  .demo-shell,
  .demo-app {
    height: 700px;
  }
}

@media (max-width: 1024px) {
  .site-header {
    padding: 0 16px;
    gap: 12px;
  }

  .brand {
    font-size: 20px;
  }

  .brand img {
    width: 34px;
    height: 34px;
  }

  .site-nav {
    gap: 4px;
  }

  .site-nav a {
    font-size: 12px;
    padding: 8px 10px;
  }

  .hero {
    padding: 44px 16px 32px;
    gap: 24px;
  }

  .hero-copy,
  .hero h1,
  .hero p:not(.eyebrow) {
    max-width: 100%;
  }

  .hero-app-shot {
    right: 10px;
    bottom: -54px;
    width: clamp(108px, 18vw, 168px);
  }

  .demo-shell,
  .demo-app {
    height: 620px;
  }

  .walkthrough-grid h3 {
    font-size: 22px;
  }
}

@media (max-width: 760px) {
  .site-nav {
    display: none;
  }

  .hero h1 {
    font-size: clamp(26px, 8.5vw, 36px);
    line-height: 1.15;
    margin-bottom: 14px;
  }

  .hero .eyebrow {
    font-size: 14px;
    margin-bottom: 14px;
  }

  .hero p:not(.eyebrow) {
    font-size: 15px;
    line-height: 1.5;
  }

  .hero-app-shot {
    position: absolute;
    right: 8px;
    bottom: -42px;
    width: clamp(98px, 36vw, 160px);
    padding: 4px 3px 4px;
    border-radius: 14px;
    margin: 0;
  }

  .hero-app-shot img {
    height: auto;
    border-radius: 11px;
  }

  .hero-app-shot::before {
    top: 3px;
    width: 38px;
    height: 6px;
  }

  .hero-app-shot::after {
    top: 5px;
    width: 4px;
    height: 4px;
  }

  .problem-card li {
    align-items: flex-start;
  }

  .walkthrough-grid {
    max-width: 100%;
  }

  .walkthrough-grid article {
    padding: 14px;
  }

  .demo-shell-scale {
    --demo-scale: 0.58;
    height: calc(780px * var(--demo-scale));
    overflow: hidden;
  }

  .demo-shell {
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100% / var(--demo-scale));
    height: 780px !important;
    transform: scale(var(--demo-scale));
    transform-origin: top left;
  }

  .demo-app {
    height: 780px !important;
  }
}

/* Blue/white palette */
.social-proof-section,
.benefits-section,
.faq-section,
.final-cta,
.demo-section,
.how-section
 {
  background: #ffffff;
}

.problem-solution,
.pilot-section,
.landing-section,
.pricing-section
{
  
  background: #f1f6ff;
}

.how-section {
  background: #ffffff;
}

.proof-row span,
.pain-grid div,
.benefits-grid article,
.steps-grid article,
.pricing-card,
.faq-list details,
.testimonial-grid blockquote,
.walkthrough-grid article,
.process-row div,
.problem-card {
  background: #ffffff;
}

.how-visual,
.employee-screenshot,
.walkthrough-grid img {
  background: #2f3136;
}

.old-way h2,
.new-way h2,
.old-way svg,
.new-way svg {
  color: black;
}

.hero-demo-cta {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 24px;
  align-items: center;
  background: #eaf2ff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hero-demo-cta h2 {
  margin: 0 0 10px;
  font-size: clamp(32px, 4.5vw, 52px);
  line-height: 1.02;
}

.hero-demo-cta p {
  margin: 0 0 18px;
  color: #475569;
}

.hero-demo-shot {
  border: 1px solid #dbe3ec;
  border-radius: 18px;
  background: #f8fbff;
  padding: 8px;
  aspect-ratio: 15 / 7.1;
  overflow: hidden;
}

.hero-demo-shot img {
  width: 100%;
  border-radius: 12px;
  display: block;
}

.hero-demo-shot iframe {
  width: 100%;
  height: 100%;
  border: 1px solid #dbe3ec;
  border-radius: 12px;
  background: #ffffff;
  display: block;
  transform: none;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  background: #ffffff;
}

.trust-strip div {
  border: 1px solid #dbeafe;
  border-radius: 14px;
  background: #ffffff;
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 800;
  color: #334155;
}

.trust-strip svg {
  width: 16px;
  height: 16px;
  color: var(--blue);
}

.form-section {
  background: #f1f6ff;
}

.faq-section {
  background: #ffffff;
}

.form-layout {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
  align-items: start;
}

.form-copy {
  text-align: left;
  margin: 0;
}

.pilot-form {
  max-width: none;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #ffffff;
  padding: 22px;
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.08);
}

.pilot-form .form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.pilot-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #334155;
  font-size: 13px;
  font-weight: 700;
}

.pilot-form input,
.pilot-form textarea {
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  background: #f8fbff;
  color: #0f172a;
  padding: 10px 12px;
  font-size: 14px;
  outline: none;
}

.pilot-form input:focus,
.pilot-form textarea:focus {
  border-color: #93c5fd;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

.pilot-form .full-width {
  margin-top: 14px;
}

.pilot-form .consent-row {
  margin-top: 14px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  color: #334155;
}

.pilot-form .consent-row input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin-top: 2px;
}

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

.form-submit {
  border: none;
  cursor: pointer;
}

.form-submit:disabled {
  opacity: 0.7;
  cursor: wait;
}

.form-status {
  margin: 0;
  color: #334155;
  font-size: 13px;
  font-weight: 700;
}

.form-status.success {
  color: #166534;
}

.form-status.error {
  color: #991b1b;
}

.trust-strip{
 padding: 0px clamp(18px, 5vw, 92px) 52px clamp(18px, 5vw, 92px);

}



@media (max-width: 760px) {
  .hero-demo-cta,
  .trust-strip {
    grid-template-columns: 1fr;
  }

  .form-layout {
    grid-template-columns: 1fr;
    gap: 16px;
  }

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

@media (max-width: 640px) {
  .site-header {
    height: 56px;
    padding: 0 12px;
  }

  .hero {
    padding: 36px 12px 26px;
  }

  .hero h1 {
    font-size: clamp(40px, 8vw, 40px);
  }

  .hero p:not(.eyebrow) {
    font-size: 14px;
  }

  .hero-preview {
    margin-top: 20px;
    padding: 4px;
    border-radius: 14px;
    overflow: visible;
  }

  .hero-web-shot {
    border-radius: 12px;
    padding-top: 16px;
  }

  .hero-web-shot::before {
    top: 6px;
    left: 9px;
    width: 6px;
    height: 6px;
    box-shadow: 10px 0 0 #d1d9e6, 20px 0 0 #d1d9e6;
  }

  .hero-app-shot {
    position: absolute;
    right: 6px;
    bottom: -34px;
    width: min(122px, 40vw);
    padding: 3px 2px 3px;
    border-radius: 12px;
    margin: 0;
  }

  .hero-app-shot img {
    height: auto;
    border-radius: 10px;
  }

  .hero-app-shot::before {
    width: 30px;
    height: 5px;
  }

  .hero-app-shot::after {
    width: 3px;
    height: 3px;
  }

  .demo-window {
    border-radius: 18px;
  }

  .demo-window-bar {
    height: 36px;
    grid-template-columns: 66px 1fr 66px;
    padding: 0 8px;
  }

  .window-title {
    font-size: 11px;
    letter-spacing: 0.4px;
  }

  .demo-shell,
  .demo-app {
    height: 540px;
  }

  .demo-shell-scale {
    --demo-scale: 0.5;
    height: calc(780px * var(--demo-scale));
  }

  .trust-strip {
    padding: 0 12px 30px;
  }

  .landing-section,
  .demo-section,
  .social-proof-section {
    padding-left: 12px;
    padding-right: 12px;
  }
}

@media (min-width: 901px) and (max-width: 1100px) {
  .demo-shell {
    grid-template-columns: 236px minmax(0, 1fr);
  }

  .demo-sidebar {
    min-height: 100%;
  }

  .sidebar-menu {
    flex-direction: column;
    overflow: visible;
  }

  .sidebar-footer,
  .sidebar-spacer {
    display: block;
  }
}

@media (min-width: 901px) {
  .demo-shell,
  .demo-app {
    height: 780px !important;
  }

  .demo-shell-scale {
    height: calc(780px * var(--demo-scale)) !important;
  }
}

@media (max-width: 760px) {
  .demo-section {
    min-height: 0;
    padding-bottom: 36px;
  }

  .demo-window {
    margin-bottom: 10px;
  }

  .demo-mobile-error {
    min-height: 180px;
    padding: 22px 16px;
  }

  .demo-mobile-error {
    display: flex;
  }

  .demo-shell-scale {
    display: none;
    pointer-events: none;
  }
}

/* Final responsive normalization layer for the landing page */
@media (max-width: 1200px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
    min-height: auto;
    gap: 28px;
    padding-top: 44px;
    padding-bottom: 40px;
  }

  .hero-copy,
  .hero h1,
  .hero p:not(.eyebrow),
  .section-heading,
  .form-layout,
  .walkthrough-grid {
    max-width: 100%;
  }

  .hero-preview {
    max-width: 920px;
    width: 100%;
    margin: 0 auto;
  }

  .problem-solution,
  .walkthrough-grid,
  .form-layout {
    grid-template-columns: 1fr;
  }

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

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

}

@media (max-width: 980px) {
  .site-header {
    padding: 0 14px;
    gap: 14px;
    height: auto;
    min-height: 64px;
    flex-wrap: wrap;
  }

  .header-right {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .hero {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero h1 {
    font-size: clamp(34px, 5.6vw, 48px);
    margin-bottom: 18px;
  }

  .hero p:not(.eyebrow) {
    font-size: 17px;
  }

  .hero-app-shot {
    width: clamp(118px, 18vw, 170px);
    right: 14px;
    bottom: -56px;
  }

  .landing-section,
  .demo-section,
  .social-proof-section,
  .final-cta {
    padding-left: 16px;
    padding-right: 16px;
  }

  .proof-row {
    gap: 8px;
  }

  .proof-row span {
    font-size: 11px;
  }

  .form-copy p {
    margin-bottom: 10px;
  }
}

@media (max-width: 760px) {
  .site-header {
    height: 58px;
    padding: 0 12px;
    min-height: 58px;
    flex-wrap: nowrap;
  }

  .header-right {
    display: none;
  }

  .brand {
    font-size: 20px;
  }

  .brand img {
    width: 34px;
    height: 34px;
  }

  .mobile-nav {
    top: calc(100% + 8px);
    right: 10px;
    left: 10px;
    border-radius: 18px;
    padding: 10px;
  }

  .hero {
    gap: 18px;
    padding: 34px 12px 22px;
  }

  .hero-preview {
    order: -1;
    margin-bottom: 12px;
  }

  .hero .eyebrow {
    font-size: 13px;
    margin-bottom: 12px;
    line-height: 1.4;
  }

  .hero h1 {
    font-size: clamp(27px, 8vw, 34px);
    line-height: 1.12;
    margin-bottom: 14px;
  }

  .hero p:not(.eyebrow) {
    font-size: 14px;
    line-height: 1.55;
  }

  .hero-actions {
    margin-top: 18px;
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .primary-link,
  .hero-actions .secondary-link,
  .form-submit {
    width: 100%;
  }

  .hero-benefits {
    gap: 10px;
  }

  .hero-benefits span {
    font-size: 12px;
    line-height: 1.35;
  }

  .hero-preview {
    margin-top: 10px;
    padding: 6px;
    border-radius: 16px;
  }

  .hero-web-shot {
    border-radius: 14px;
    padding-top: 18px;
  }

  .hero-app-shot {
    right: 6px;
    bottom: -30px;
    width: min(118px, 38vw);
    border-radius: 12px;
    padding: 3px 2px 3px;
  }

  .hero-app-shot img {
    border-radius: 9px;
  }

  .hero-app-shot::before {
    top: 3px;
    width: 28px;
    height: 4px;
  }

  .hero-app-shot::after {
    top: 4px;
    width: 3px;
    height: 3px;
  }

  .section-heading {
    margin-bottom: 18px;
  }

  .section-heading h2,
  .final-cta h2 {
    font-size: clamp(24px, 7vw, 32px);
    line-height: 1.15;
  }

  .section-heading p,
  .final-cta p {
    font-size: 14px;
    line-height: 1.55;
  }

  .trust-strip,
  .problem-solution,
  .process-row,
  .form-layout,
  .executive-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    padding: 0 12px 26px;
  }

  .trust-strip div,
  .process-row div,
  .problem-card,
  .pilot-form,
  .executive-card,
  .executive-stat {
    border-radius: 16px;
  }

  .problem-card {
    padding: 18px;
  }

  .problem-card h2,
  .walkthrough-grid h3 {
    font-size: 21px;
  }

  .executive-impact {
    padding: 18px;
    gap: 18px;
    border-radius: 22px;
  }

  .executive-copy h2 {
    font-size: clamp(26px, 8vw, 34px);
    line-height: 1.1;
  }

  .executive-lead {
    font-size: 14px;
    line-height: 1.6;
  }

  .executive-body {
    grid-template-columns: 1fr;
  }

  .executive-card {
    min-height: 0;
    padding: 18px;
  }

  .executive-card h3 {
    font-size: 20px;
  }

  .executive-card p,
  .executive-stat span {
    font-size: 14px;
  }

  .problem-card ul {
    margin-top: 18px;
    gap: 10px;
  }

  .problem-card li {
    padding: 12px 10px;
    font-size: 13px;
    align-items: flex-start;
  }

  .walkthrough-grid article {
    padding: 14px;
  }

  .feature-media {
    width: 100%;
  }

  .feature-slider:not(.app-slider) .feature-media {
    width: 100%;
  }

  .app-slider .feature-media {
    width: min(100%, 146px);
    height: 324px;
    margin-left: auto;
    margin-right: auto;
  }

  .feature-dots {
    margin-top: auto;
  }

  .social-proof-section {
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .proof-row {
    justify-content: flex-start;
  }

  .proof-row span {
    font-size: 12px;
  }

  .final-cta {
    padding-top: 44px;
    padding-bottom: 44px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 12px 24px;
    text-align: left;
  }

  .site-footer-links {
    margin-left: 0;
    justify-content: flex-start;
    gap: 10px 16px;
  }

  .staffing-layout,
  .chat-shell {
    grid-template-columns: 1fr;
  }

  .chat-shell {
    min-height: auto;
  }
}

@media (max-width: 420px) {
  .hero {
    padding-left: 10px;
    padding-right: 10px;
  }

  .hero h1 {
    font-size: 26px;
  }

  .hero-preview {
    padding: 4px;
    border-radius: 14px;
  }

  .hero-app-shot {
    width: min(104px, 36vw);
    right: 4px;
    bottom: -24px;
  }

  .feature-media {
    margin-top: 8px;
  }

  .feature-slider:not(.app-slider) .feature-media {
    padding: 22px 8px 8px;
  }

  .app-slider .feature-media {
    width: min(100%, 124px);
    height: 276px;
  }

  .landing-section,
  .demo-section,
  .social-proof-section,
  .final-cta {
    padding-left: 10px;
    padding-right: 10px;
  }

  .trust-strip div,
  .process-row div,
  .pilot-form,
  .problem-card,
  .walkthrough-grid article {
    padding-left: 12px;
    padding-right: 12px;
  }
}
