:root {
  --navy: #071827;
  --navy-2: #0c2638;
  --navy-3: #14364a;
  --teal: #16b8a6;
  --teal-dark: #0b8179;
  --teal-soft: #ddfbf7;
  --white: #ffffff;
  --bg: #f6f9fc;
  --panel: #ffffff;
  --text: #102234;
  --muted: #617285;
  --line: #dce6ef;
  --line-strong: #c7d6e2;
  --danger: #b42318;
  --warning: #b7791f;
  --success: #0f766e;
  --shadow: 0 22px 60px rgba(7, 24, 39, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
}

button,
input,
select,
textarea {
  font: inherit;
}

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  min-width: 235px;
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: 168px;
  height: 52px;
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: var(--navy);
  color: var(--white);
  display: grid;
  place-items: center;
  line-height: 1;
  border: 2px solid var(--teal);
}

.brand-mark span {
  display: block;
  font-size: 12px;
  font-weight: 800;
  color: var(--teal);
  text-transform: lowercase;
}

.brand-mark strong {
  display: block;
  font-size: 17px;
  letter-spacing: 0;
}

.brand-name {
  font-size: 22px;
  font-weight: 850;
  letter-spacing: 0;
}

.brand-subtitle {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 6px;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
  padding: 10px 12px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 750;
}

.nav a:hover,
.nav a.active {
  background: var(--teal-soft);
  color: var(--navy);
}

.header-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}

.status-pill,
.mode-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--teal-soft);
  color: var(--success);
  border: 1px solid #bfeee8;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.status-pill span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--teal);
}

.header-link-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 8px 13px;
  border: 1px solid var(--navy);
  border-radius: var(--radius);
  background: var(--navy);
  color: var(--white);
  font-size: 13px;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
}

main {
  width: min(1440px, 100%);
  margin: 0 auto;
  padding: 30px clamp(16px, 4vw, 56px) 56px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(420px, 1.1fr);
  gap: 32px;
  align-items: stretch;
  margin-bottom: 34px;
}

.hero-copy {
  display: flex;
  min-height: 560px;
  flex-direction: column;
  justify-content: flex-start;
  gap: 18px;
  padding: clamp(32px, 4.5vw, 58px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(7, 24, 39, 0.96), rgba(12, 38, 56, 0.96)),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.08) 0 1px, transparent 1px 80px);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-copy h1 {
  max-width: 720px;
  margin: 6px 0 8px;
  font-size: clamp(38px, 5.2vw, 66px);
  line-height: 1.06;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 650px;
  margin: 0;
  color: #c8d8e6;
  font-size: 18px;
  line-height: 1.55;
}

.eyebrow {
  margin: 0;
  color: var(--teal);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero-metrics {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 42px;
}

.hero-metrics div {
  min-height: 94px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
}

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

.hero-metrics strong {
  font-size: 25px;
  color: var(--white);
}

.hero-metrics span {
  margin-top: 6px;
  color: #bdd0df;
  font-size: 13px;
  font-weight: 700;
}

.hero-metrics .hero-equation-symbol {
  margin: 0;
  color: var(--teal);
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
}

.command-panel,
.panel,
.metric-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 42px rgba(7, 24, 39, 0.07);
}

.command-panel {
  padding: clamp(20px, 3vw, 30px);
}

.access-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.access-panel h2 {
  margin: 8px 0 12px;
  color: var(--navy);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.04;
  letter-spacing: 0;
}

.access-panel p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.access-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 28px 0;
}

.button-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  text-decoration: none;
}

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

.feature-list span {
  padding: 12px 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfdff;
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
}

.auth-main {
  display: grid;
  place-items: center;
  min-height: calc(100vh - 110px);
}

.login-panel {
  width: min(460px, 100%);
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.login-panel h1 {
  margin: 8px 0 8px;
  color: var(--navy);
  font-size: 34px;
  letter-spacing: 0;
}

.login-panel p {
  margin: 0 0 22px;
  color: var(--muted);
  line-height: 1.5;
}

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

.info-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 0 0 24px;
}

.info-tabs a {
  display: grid;
  gap: 8px;
  min-height: 104px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(7, 24, 39, 0.06);
  text-decoration: none;
}

.info-tabs a:hover {
  border-color: var(--teal);
}

.info-tabs span {
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.info-tabs strong {
  color: var(--navy);
  font-size: 15px;
  line-height: 1.45;
}

.about-page {
  background:
    linear-gradient(180deg, #fbfdff 0%, #f5f8fb 42%, #ffffff 100%);
}

.about-main {
  width: min(1440px, 100%);
  padding-bottom: 72px;
}

.about-hero,
.about-intro,
.about-split,
.leadership-section,
.about-cta {
  animation: aboutFadeUp 0.7s ease both;
}

.about-hero {
  display: grid;
  gap: 0;
  margin-bottom: 26px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--navy);
  box-shadow: var(--shadow);
}

.about-hero-image {
  display: grid;
  min-height: clamp(310px, 48vw, 560px);
  place-items: end start;
  padding: clamp(22px, 4vw, 44px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(7, 24, 39, 0.18), rgba(7, 24, 39, 0.82)),
    linear-gradient(28deg, rgba(22, 184, 166, 0.28), transparent 38%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.13) 0 1px, transparent 1px 92px),
    linear-gradient(135deg, #d9e5eb 0%, #f6efe1 48%, #90b9c1 100%);
}

.image-placeholder-content {
  display: grid;
  gap: 7px;
  max-width: 360px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: var(--radius);
  background: rgba(7, 24, 39, 0.48);
  backdrop-filter: blur(12px);
}

.image-placeholder-content span {
  color: #d8c08c;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.image-placeholder-content strong {
  color: var(--white);
  font-size: 18px;
  line-height: 1.35;
}

.about-hero-copy {
  display: grid;
  gap: 18px;
  padding: clamp(28px, 5vw, 64px);
  background: var(--navy);
  color: var(--white);
}

.about-hero-copy h1 {
  max-width: 1000px;
  margin: 0;
  font-size: clamp(40px, 6vw, 78px);
  line-height: 1;
  letter-spacing: 0;
}

.about-hero-copy p:not(.eyebrow) {
  max-width: 780px;
  margin: 0;
  color: #d6e2ec;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.55;
}

.about-intro {
  display: grid;
  grid-template-columns: minmax(250px, 0.82fr) minmax(320px, 1.18fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: start;
  padding: clamp(30px, 5vw, 64px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 46px rgba(7, 24, 39, 0.07);
}

.about-section-copy h2,
.about-panel h2,
.leadership-section h2,
.about-cta h2 {
  margin: 10px 0 0;
  color: var(--navy);
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.06;
  letter-spacing: 0;
}

.about-prose {
  display: grid;
  gap: 18px;
}

.about-prose p,
.about-panel p,
.about-cta p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.about-split {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(360px, 1.05fr);
  gap: 24px;
  align-items: stretch;
  margin-top: 26px;
}

.about-image-card {
  display: grid;
  min-height: 480px;
  place-items: end start;
  padding: clamp(20px, 3vw, 34px);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(7, 24, 39, 0.08), rgba(7, 24, 39, 0.7)),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.16) 0 1px, transparent 1px 76px),
    linear-gradient(135deg, #f4f7f8 0%, #bdd3d9 46%, #d8c08c 100%);
  box-shadow: 0 18px 46px rgba(7, 24, 39, 0.09);
}

.about-panel {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 46px rgba(7, 24, 39, 0.07);
}

.leadership-section {
  display: grid;
  gap: 26px;
  margin-top: 26px;
  padding: clamp(30px, 5vw, 64px);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(7, 24, 39, 0.96), rgba(20, 54, 74, 0.94)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 88px);
  color: var(--white);
  box-shadow: var(--shadow);
}

.leadership-section h2 {
  max-width: 850px;
  color: var(--white);
}

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.leadership-grid article {
  min-height: 230px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
}

.leadership-grid span {
  color: #d8c08c;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.leadership-grid h3 {
  margin: 34px 0 10px;
  color: var(--white);
  font-size: 22px;
  letter-spacing: 0;
}

.leadership-grid p {
  margin: 0;
  color: #c8d8e6;
  line-height: 1.62;
}

.about-cta {
  display: grid;
  justify-items: center;
  gap: 14px;
  margin-top: 26px;
  padding: clamp(34px, 6vw, 74px);
  border: 1px solid #e4d7b5;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(246, 250, 252, 0.94)),
    linear-gradient(135deg, rgba(216, 192, 140, 0.28), rgba(22, 184, 166, 0.12));
  text-align: center;
  box-shadow: 0 18px 46px rgba(7, 24, 39, 0.07);
}

.about-cta h2 {
  max-width: 820px;
}

.about-cta p {
  max-width: 700px;
}

.about-cta .contact-email {
  margin: 2px 0 0;
  color: var(--navy);
  font-size: 18px;
  font-weight: 800;
}

.about-cta .contact-email a {
  color: inherit;
  text-decoration: none;
}

.about-cta .contact-email a:hover {
  color: var(--teal-dark);
}

.demo-request-form {
  display: grid;
  width: min(720px, 100%);
  gap: 16px;
  margin-top: 8px;
  text-align: left;
}

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

.demo-request-form .cta-actions {
  margin-top: 0;
}

.demo-request-form .primary-button {
  width: auto;
}

.form-message {
  width: min(720px, 100%);
  margin: 0;
  border-radius: var(--radius);
  padding: 12px 14px;
  font-weight: 800;
  text-align: left;
}

.form-message-success {
  border: 1px solid #bfeee8;
  background: var(--teal-soft);
  color: var(--teal-dark);
}

.form-message-error {
  border: 1px solid #ffd3d3;
  background: #fff4f4;
  color: #9d1f1f;
}

.cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 14px;
}

.cta-actions .button-link,
.access-actions .button-link {
  width: auto;
}

@keyframes aboutFadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

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

.section-heading,
.panel-header {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 18px;
}

.section-heading h2,
.panel-header h2 {
  margin: 6px 0 0;
  font-size: 22px;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow),
.panel-header p:not(.eyebrow) {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.upload-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(190px, 1fr));
  gap: 14px;
}

.field span {
  display: block;
  margin-bottom: 7px;
  color: var(--text);
  font-size: 13px;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 45px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 10px 11px;
  background: #fbfdff;
  color: var(--text);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 3px solid rgba(22, 184, 166, 0.18);
  border-color: var(--teal);
}

.field textarea {
  min-height: 120px;
  resize: vertical;
}

.form-actions {
  display: flex;
  align-items: end;
}

.primary-button,
.secondary-button {
  min-height: 45px;
  border-radius: var(--radius);
  padding: 11px 16px;
  font-weight: 850;
  cursor: pointer;
}

.primary-button {
  width: 100%;
  border: 1px solid var(--teal-dark);
  background: var(--teal);
  color: var(--navy);
}

.primary-button:hover {
  background: #2bd0bd;
}

.secondary-button {
  border: 1px solid #bfeee8;
  background: var(--teal-soft);
  color: var(--success);
}

.error-panel {
  margin-top: 16px;
  padding: 14px;
  border-radius: var(--radius);
  background: #fff1f0;
  color: var(--danger);
  border: 1px solid #f5c2c0;
  font-weight: 700;
}

.setup-hero {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(300px, 420px);
  gap: 24px;
  align-items: end;
  margin-bottom: 24px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(7, 24, 39, 0.96), rgba(20, 54, 74, 0.94)),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.08) 0 1px, transparent 1px 86px);
  color: var(--white);
  box-shadow: var(--shadow);
}

.setup-hero h1 {
  max-width: 820px;
  margin: 10px 0 14px;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1;
  letter-spacing: 0;
}

.setup-hero p:not(.eyebrow) {
  max-width: 720px;
  margin: 0;
  color: #c8d8e6;
  font-size: 17px;
  line-height: 1.55;
}

.setup-upload-panel {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.setup-upload-panel .field span {
  color: var(--white);
}

.property-panel,
.room-setup-panel {
  margin-bottom: 24px;
}

.property-grid,
.room-upload-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 14px;
  align-items: end;
}

.room-file-field {
  grid-column: span 2;
}

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

.mapping-card {
  display: grid;
  gap: 14px;
  min-width: 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfdff;
}

.mapping-card-top {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: flex-start;
}

.mapping-card h3 {
  margin: 5px 0 0;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.sample-list {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  min-height: 31px;
}

.sample-list span {
  display: inline-flex;
  max-width: 100%;
  padding: 6px 8px;
  border: 1px solid #d7e6ee;
  border-radius: 999px;
  background: var(--white);
  color: #36536a;
  font-size: 12px;
  font-weight: 750;
  overflow-wrap: anywhere;
}

.sample-list .empty-sample {
  color: var(--muted);
  font-weight: 700;
}

.setup-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 18px;
}

.setup-actions .primary-button {
  width: auto;
  min-width: 190px;
}

.warning-badge {
  background: #fff4db;
  border-color: #f0d8a8;
  color: var(--warning);
}

.setup-warning {
  margin: 0 0 16px;
}

.setup-simple main {
  max-width: 1120px;
}

.setup-simple h1 {
  margin: 0 0 20px;
  color: var(--navy);
  font-size: 32px;
  line-height: 1.15;
  letter-spacing: 0;
}

.setup-form-section {
  margin-bottom: 24px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.setup-form-section h2 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 20px;
  letter-spacing: 0;
}

.setup-form-section p {
  margin: 8px 0 12px;
  color: var(--muted);
  line-height: 1.45;
}

.simple-form-row,
.setup-file-row {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto;
  gap: 12px;
  align-items: end;
  margin-bottom: 14px;
}

.setup-file-list {
  display: grid;
  gap: 12px;
}

.rules-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 14px;
  margin-bottom: 14px;
}

.setup-current-hotel {
  color: var(--text);
}

.setup-success {
  padding: 10px 12px;
  border: 1px solid #bfeee8;
  border-radius: var(--radius);
  background: var(--teal-soft);
  color: var(--success) !important;
  font-weight: 800;
}

.setup-note {
  padding: 10px 12px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: #f8fbfd;
  color: var(--text) !important;
  font-weight: 750;
}

.setup-submit {
  width: auto;
  margin-top: 14px;
}

.room-summary-grid {
  display: grid;
  grid-template-columns: minmax(160px, 0.7fr) minmax(160px, 0.7fr) minmax(280px, 1.6fr);
  gap: 16px;
  margin-bottom: 18px;
}

.room-type-card {
  min-width: 0;
}

.credit-list {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.credit-list span {
  display: inline-flex;
  max-width: 100%;
  padding: 6px 9px;
  border: 1px solid #d7e6ee;
  border-radius: 999px;
  background: #eef5f8;
  color: #36536a;
  font-size: 12px;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.metric-card {
  padding: 20px;
}

.metric-card strong {
  display: block;
  margin: 8px 0;
  font-size: 32px;
  letter-spacing: 0;
}

.metric-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.metric-label {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.metric-card.alert strong {
  color: var(--warning);
}

.savings-panel {
  margin-bottom: 24px;
}

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

.savings-upload-grid {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.savings-highlight {
  background:
    linear-gradient(135deg, rgba(22, 184, 166, 0.12), rgba(255, 255, 255, 0.96)),
    var(--white);
  border-color: #bfeee8;
}

.savings-highlight strong {
  color: var(--success);
}

.comparison-table {
  margin-top: 8px;
}

.empty-state {
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius);
  background: #fbfdff;
}

.empty-state strong {
  color: var(--navy);
  font-size: 16px;
}

.empty-state p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.content-grid {
  display: grid;
  grid-template-columns: 1.65fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.panel {
  padding: 22px;
  margin-bottom: 24px;
}

.panel.wide {
  min-width: 0;
}

.download-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  background: var(--white);
}

th {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-align: left;
  padding: 12px;
  border-bottom: 1px solid var(--line);
  background: #f8fbfd;
  white-space: nowrap;
}

td {
  padding: 14px 12px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.guest-name {
  font-weight: 850;
}

.muted {
  color: var(--muted);
  font-size: 12px;
  margin-top: 3px;
}

.room-pill,
.warning-pill,
.mini-pill {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 850;
  font-size: 12px;
  white-space: nowrap;
}

.room-pill {
  background: var(--teal-soft);
  color: var(--success);
}

.warning-pill {
  background: #fff4db;
  color: var(--warning);
}

.reason-row td {
  background: #f9fbfd;
  color: var(--muted);
  font-size: 13px;
}

.top-options {
  margin-top: 8px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.top-options span,
.mini-pill {
  background: #eef5f8;
  color: #36536a;
  border: 1px solid #d7e6ee;
}

.section-stack {
  display: grid;
  gap: 12px;
}

.dashboard-results {
  display: grid;
  gap: 16px;
}

.result-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.result-tab {
  min-height: 44px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 10px 14px;
  background: var(--white);
  color: var(--navy);
  font-weight: 850;
  cursor: pointer;
}

.result-tab.is-active {
  border-color: var(--teal-dark);
  background: var(--teal);
  color: var(--navy);
}

.result-panel {
  display: block;
}

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

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

.section-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
  background: #fbfdff;
}

.board-card {
  display: grid;
  gap: 12px;
}

.pm-board-card {
  border-color: #bfeee8;
  background: linear-gradient(135deg, rgba(22, 184, 166, 0.1), #fbfdff);
}

.board-task-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  min-height: 52px;
  border: 1px dashed transparent;
  border-radius: var(--radius);
  padding: 2px;
  transition: border-color 140ms ease, background 140ms ease;
}

.board-task-list.is-drop-target {
  border-color: var(--teal);
  background: rgba(22, 184, 166, 0.08);
}

.board-task-list > span,
.board-task-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  max-width: 100%;
  padding: 6px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
}

.board-task-chip {
  cursor: grab;
  user-select: none;
}

.board-room-number {
  font-weight: 900;
}

.board-task-type,
.board-task-credit,
.board-task-late {
  display: inline-flex;
  align-items: center;
  min-height: 20px;
  border-radius: 999px;
  padding: 2px 7px;
  font-size: 11px;
  line-height: 1;
}

.board-task-type.checkout {
  background: #fff4db;
  color: var(--warning);
}

.board-task-type.stayover {
  background: #eef5f8;
  color: #36536a;
}

.board-task-credit {
  background: var(--teal-soft);
  color: var(--teal-dark);
}

.board-task-late {
  background: #fff4f4;
  color: #9d1f1f;
}

.board-task-chip:active {
  cursor: grabbing;
}

.board-task-chip.is-dragging {
  opacity: 0.45;
}

.section-top {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  font-size: 14px;
}

.load-bar {
  height: 9px;
  background: #e8eef3;
  border-radius: 999px;
  overflow: hidden;
  margin: 12px 0;
}

.load-bar div {
  height: 100%;
  background: var(--teal);
  border-radius: 999px;
}

.section-details {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
  flex-wrap: wrap;
}

.forecast-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 12px;
}

.forecast-day {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
  background: #fbfdff;
  display: grid;
  gap: 7px;
  min-width: 0;
}

.forecast-day strong {
  color: var(--navy);
}

.forecast-day span {
  color: var(--muted);
  font-size: 13px;
}

.forecast-list {
  display: grid;
  gap: 14px;
}

.forecast-line {
  border-bottom: 1px solid var(--line);
  padding-bottom: 14px;
  display: grid;
  gap: 8px;
}

.forecast-line:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    display: none;
  }

  .hero,
  .content-grid,
  .about-intro,
  .about-split,
  .setup-hero {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    min-height: 430px;
  }

  .metrics-grid,
  .savings-grid,
  .info-tabs,
  .forecast-grid,
  .room-summary-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .mapping-grid {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
  }

  .about-image-card {
    min-height: 360px;
  }
}

@media (max-width: 720px) {
  .site-header {
    position: static;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .brand {
    min-width: 0;
  }

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

  main {
    padding-top: 18px;
  }

  .hero-copy {
    min-height: auto;
  }

  .hero-copy h1 {
    font-size: 38px;
  }

  .about-hero-copy h1 {
    font-size: 39px;
  }

  .about-hero-copy,
  .about-intro,
  .about-panel,
  .leadership-section,
  .about-cta {
    padding: 24px;
  }

  .about-hero-image,
  .about-image-card {
    min-height: 300px;
  }

  .hero-metrics,
  .upload-grid,
  .property-grid,
  .room-upload-grid,
  .simple-form-row,
  .setup-file-row,
  .demo-form-grid,
  .rules-grid,
  .info-tabs,
  .metrics-grid,
  .savings-grid,
  .board-grid,
  .forecast-grid,
  .room-summary-grid,
  .mapping-grid {
    grid-template-columns: 1fr;
  }

  .hero-metrics .hero-equation-symbol {
    justify-self: center;
  }

  .room-file-field {
    grid-column: auto;
  }

  .section-heading,
  .panel-header,
  .section-top {
    flex-direction: column;
  }

  .primary-button {
    width: 100%;
  }

  .cta-actions,
  .cta-actions .button-link {
    width: 100%;
  }
}
