/* Blinskart Hotel OS — coming-soon landing */
:root {
  --ink: #07161c;
  --ink-soft: #0c242e;
  --teal: #1a8a8a;
  --teal-bright: #2bb5b0;
  --brass: #d4b483;
  --brass-soft: #e8d4b0;
  --sand: #f2ebe0;
  --mist: rgba(242, 235, 224, 0.72);
  --line: rgba(212, 180, 131, 0.28);
  --danger: #c45c4a;
  --ok: #3d9b7a;
  --radius: 14px;
  --font-display: "Instrument Serif", Georgia, serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --max: 1080px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--sand);
  background: var(--ink);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--brass-soft);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: #fff;
}

.skip {
  position: absolute;
  left: -9999px;
}

.skip:focus {
  left: 1rem;
  top: 1rem;
  z-index: 100;
  background: var(--sand);
  color: var(--ink);
  padding: 0.5rem 0.75rem;
}

/* Atmospheric background */
.atmosphere {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 55% at 15% -10%, rgba(26, 138, 138, 0.35), transparent 55%),
    radial-gradient(ellipse 60% 45% at 95% 10%, rgba(212, 180, 131, 0.18), transparent 50%),
    radial-gradient(ellipse 70% 50% at 50% 100%, rgba(12, 60, 70, 0.55), transparent 60%),
    linear-gradient(165deg, #061219 0%, #0a1f28 42%, #0d2a30 100%);
}

.atmosphere::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(242, 235, 224, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242, 235, 224, 0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
  animation: grid-drift 48s linear infinite;
}

.atmosphere::after {
  content: "";
  position: absolute;
  width: 42vw;
  height: 42vw;
  max-width: 520px;
  max-height: 520px;
  right: -8%;
  top: 18%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(43, 181, 176, 0.2), transparent 68%);
  filter: blur(8px);
  animation: orb-float 14s ease-in-out infinite alternate;
}

@keyframes grid-drift {
  from { transform: translateY(0); }
  to { transform: translateY(64px); }
}

@keyframes orb-float {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(-24px, 36px) scale(1.08); }
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse-soft {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.55; }
}

.wrap {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* Status banner */
.status-banner {
  border-bottom: 1px solid var(--line);
  background: rgba(7, 22, 28, 0.65);
  backdrop-filter: blur(10px);
  padding: 0.65rem 0;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
}

.status-banner .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brass);
  box-shadow: 0 0 0 3px rgba(212, 180, 131, 0.25);
  animation: pulse-soft 2.4s ease-in-out infinite;
  flex-shrink: 0;
}

.status-banner strong {
  color: var(--brass-soft);
  font-weight: 600;
}

/* Header / hero composition */
.site-header {
  padding: 1.25rem 0 0;
}

.brand-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.brand {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4.5vw, 2.65rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0;
}

.brand span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mist);
  margin-top: 0.4rem;
}

.nav-cta {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
  background: var(--brass);
  border: none;
  border-radius: 999px;
  padding: 0.55rem 1.1rem;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease;
}

.nav-cta:hover {
  background: var(--brass-soft);
  color: var(--ink);
  transform: translateY(-1px);
}

.hero {
  padding: clamp(2.5rem, 8vw, 5.5rem) 0 clamp(3rem, 7vw, 4.5rem);
  min-height: min(78vh, 720px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  animation: rise-in 0.9s ease-out both;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 6.2vw, 4.1rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.025em;
  max-width: 14ch;
  margin: 0 0 1.1rem;
  color: #fff;
}

.hero .lead {
  max-width: 36ch;
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  color: var(--mist);
  margin: 0 0 1.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1rem;
  align-items: center;
  margin-bottom: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 600;
  border-radius: 999px;
  padding: 0.85rem 1.45rem;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--teal-bright);
  color: var(--ink);
}

.btn-primary:hover {
  background: #3fc9c3;
  color: var(--ink);
}

.btn-ghost {
  background: transparent;
  color: var(--sand);
  border-color: var(--line);
}

.btn-ghost:hover {
  border-color: var(--brass);
  color: #fff;
}

.scale-note {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.65rem;
  max-width: 40rem;
  padding: 0.85rem 1rem;
  border-left: 2px solid var(--brass);
  background: rgba(212, 180, 131, 0.06);
  font-size: 0.92rem;
  color: var(--mist);
}

.scale-note strong {
  color: var(--brass-soft);
  font-weight: 600;
}

/* Sections */
section {
  padding: clamp(2.75rem, 6vw, 4.25rem) 0;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal-bright);
  margin: 0 0 0.65rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.8vw, 2.55rem);
  font-weight: 400;
  line-height: 1.15;
  margin: 0 0 0.75rem;
  color: #fff;
}

.section-intro {
  max-width: 42rem;
  color: var(--mist);
  margin: 0 0 2rem;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Pillars — light strip, not dashboard cards */
.pillars {
  border-block: 1px solid var(--line);
  background: rgba(12, 36, 46, 0.45);
}

.pillar-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 0.45rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.pillar-list li {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.55rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--brass-soft);
  background: rgba(7, 22, 28, 0.4);
}

.pillar-hint {
  margin: 1.25rem 0 0;
  font-size: 0.95rem;
  color: var(--mist);
  max-width: 40rem;
}

/* Benefit lists — not card grids in hero; section lists OK as open rows */
.benefit-grid {
  display: grid;
  gap: 1.5rem 2.5rem;
}

@media (min-width: 760px) {
  .benefit-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.benefit-block h3 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 400;
  margin: 0 0 1rem;
  color: var(--brass-soft);
}

.benefit-block ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.benefit-block li {
  position: relative;
  padding: 0.65rem 0 0.65rem 1.35rem;
  border-top: 1px solid rgba(242, 235, 224, 0.08);
  color: var(--mist);
}

.benefit-block li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.15rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--teal-bright);
}

.benefit-block li strong {
  color: #fff;
  font-weight: 600;
}

/* Waitlist */
.waitlist {
  scroll-margin-top: 1.5rem;
}

.waitlist-panel {
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  padding: clamp(1.35rem, 3vw, 2rem);
  background:
    linear-gradient(145deg, rgba(26, 138, 138, 0.12), transparent 45%),
    rgba(7, 22, 28, 0.72);
}

.form-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .form-grid {
    grid-template-columns: 1fr 1fr;
  }

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

label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-bottom: 0.35rem;
  color: var(--sand);
}

.req {
  color: var(--brass);
}

input,
select,
textarea {
  width: 100%;
  font: inherit;
  color: var(--sand);
  background: rgba(7, 22, 28, 0.85);
  border: 1px solid rgba(242, 235, 224, 0.14);
  border-radius: 10px;
  padding: 0.75rem 0.9rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--teal-bright);
  box-shadow: 0 0 0 3px rgba(43, 181, 176, 0.2);
}

input::placeholder {
  color: rgba(242, 235, 224, 0.35);
}

.form-actions {
  margin-top: 0.35rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}

.form-note {
  font-size: 0.85rem;
  color: rgba(242, 235, 224, 0.55);
}

.alert {
  margin: 0 0 1rem;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  font-size: 0.95rem;
}

.alert-ok {
  background: rgba(61, 155, 122, 0.18);
  border: 1px solid rgba(61, 155, 122, 0.45);
  color: #b8e6d4;
}

.alert-err {
  background: rgba(196, 92, 74, 0.18);
  border: 1px solid rgba(196, 92, 74, 0.45);
  color: #f0c4bc;
}

.honeypot {
  position: absolute;
  left: -10000px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 2rem 0 2.5rem;
  font-size: 0.9rem;
  color: rgba(242, 235, 224, 0.55);
}

.site-footer .wrap {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.site-footer strong {
  color: var(--mist);
  font-weight: 600;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .atmosphere::before,
  .atmosphere::after,
  .status-dot,
  .hero,
  .reveal {
    animation: none !important;
    transition: none !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ——— Docs / team manual (shared) ——— */
body.docs-page {
  font-size: 1rem;
}

.docs-max {
  --max: 960px;
}

.docs-banner {
  border-bottom: 1px solid var(--line);
  background: rgba(7, 22, 28, 0.75);
  backdrop-filter: blur(10px);
  padding: 0.55rem 0;
  font-size: 0.82rem;
  color: var(--mist);
}

.docs-banner strong {
  color: var(--brass-soft);
}

.docs-nav {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid var(--line);
  background: rgba(7, 22, 28, 0.88);
  backdrop-filter: blur(12px);
  padding: 0.65rem 0;
}

.docs-nav .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.85rem;
  align-items: center;
  justify-content: space-between;
}

.docs-nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.15rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.docs-nav-links a {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--mist);
  text-decoration: none;
  padding: 0.35rem 0.55rem;
  border-radius: 6px;
}

.docs-nav-links a:hover,
.docs-nav-links a:focus-visible {
  color: #fff;
  background: rgba(43, 181, 176, 0.15);
}

.docs-nav-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.docs-hero {
  padding: clamp(1.75rem, 5vw, 3rem) 0 1.5rem;
  min-height: 0;
  animation: rise-in 0.7s ease-out both;
}

.docs-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4.5vw, 2.85rem);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.02em;
  max-width: 22ch;
  margin: 0 0 0.85rem;
  color: #fff;
}

.docs-hero .lead {
  max-width: 48rem;
  color: var(--mist);
  margin: 0 0 1.25rem;
}

.docs-toc {
  margin: 1.5rem 0 0;
  padding: 1rem 1.15rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(12, 36, 46, 0.5);
}

.docs-toc h2 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-bright);
  margin: 0 0 0.65rem;
}

.docs-toc ol {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--mist);
  columns: 1;
  gap: 1.5rem;
}

@media (min-width: 720px) {
  .docs-toc ol {
    columns: 2;
  }
}

.docs-toc li {
  break-inside: avoid;
  margin: 0.25rem 0;
  font-size: 0.92rem;
}

.docs-toc a {
  text-decoration: none;
  color: var(--brass-soft);
}

.docs-toc a:hover {
  color: #fff;
}

.docs-section {
  scroll-margin-top: 4.5rem;
  padding: clamp(1.75rem, 4vw, 2.75rem) 0;
  border-top: 1px solid rgba(242, 235, 224, 0.08);
}

.docs-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3.2vw, 2.1rem);
  font-weight: 400;
  margin: 0 0 0.65rem;
  color: #fff;
}

.docs-section h3 {
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 400;
  margin: 1.5rem 0 0.55rem;
  color: var(--brass-soft);
}

.docs-section h4 {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin: 1.15rem 0 0.4rem;
  color: var(--sand);
}

.docs-section p,
.docs-section li {
  color: var(--mist);
}

.docs-section > p {
  max-width: 48rem;
}

.docs-callout {
  margin: 1rem 0 1.25rem;
  padding: 0.85rem 1rem;
  border-left: 2px solid var(--brass);
  background: rgba(212, 180, 131, 0.07);
  font-size: 0.95rem;
  color: var(--mist);
  max-width: 48rem;
}

.docs-callout.ok {
  border-left-color: var(--ok);
  background: rgba(61, 155, 122, 0.1);
}

.docs-callout.cut {
  border-left-color: var(--danger);
  background: rgba(196, 92, 74, 0.1);
}

.docs-table-wrap {
  overflow-x: auto;
  margin: 0.85rem 0 1.35rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(7, 22, 28, 0.55);
}

.docs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  min-width: 520px;
}

.docs-table th,
.docs-table td {
  text-align: left;
  vertical-align: top;
  padding: 0.65rem 0.8rem;
  border-bottom: 1px solid rgba(242, 235, 224, 0.08);
}

.docs-table th {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal-bright);
  background: rgba(12, 36, 46, 0.65);
  white-space: nowrap;
}

.docs-table td {
  color: var(--mist);
}

.docs-table tr:last-child td {
  border-bottom: none;
}

.docs-table strong {
  color: #fff;
  font-weight: 600;
}

.phase {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.2rem 0.45rem;
  border-radius: 4px;
  white-space: nowrap;
}

.phase-mvp {
  background: rgba(43, 181, 176, 0.22);
  color: #9eefe9;
}

.phase-growth {
  background: rgba(212, 180, 131, 0.2);
  color: var(--brass-soft);
}

.phase-adv {
  background: rgba(242, 235, 224, 0.1);
  color: rgba(242, 235, 224, 0.75);
}

.phase-cut {
  background: rgba(196, 92, 74, 0.22);
  color: #f0c4bc;
}

.phase-soon {
  background: rgba(212, 180, 131, 0.12);
  color: var(--brass);
}

.flow-box {
  font-family: ui-monospace, "Cascadia Code", Menlo, monospace;
  font-size: 0.8rem;
  line-height: 1.55;
  white-space: pre-wrap;
  margin: 0.75rem 0 1.15rem;
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(7, 22, 28, 0.7);
  color: var(--brass-soft);
  overflow-x: auto;
}

.role-grid {
  display: grid;
  gap: 1rem;
  margin: 1rem 0 1.5rem;
}

@media (min-width: 700px) {
  .role-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.role-block {
  padding: 1rem 1.1rem;
  border-top: 1px solid var(--line);
  background: rgba(12, 36, 46, 0.35);
}

.role-block h4 {
  margin-top: 0;
  color: var(--brass-soft);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.role-block ul {
  margin: 0.4rem 0 0;
  padding-left: 1.1rem;
}

.role-block li {
  margin: 0.25rem 0;
  font-size: 0.92rem;
}

.login-shell {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 0 3rem;
}

.login-panel {
  width: min(100%, 420px);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  padding: 1.5rem 1.35rem 1.65rem;
  background:
    linear-gradient(145deg, rgba(26, 138, 138, 0.12), transparent 45%),
    rgba(7, 22, 28, 0.78);
}

.login-panel h1 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 400;
  margin: 0 0 0.4rem;
  color: #fff;
}

.login-panel .lead {
  font-size: 0.92rem;
  color: var(--mist);
  margin: 0 0 1.15rem;
}

.login-panel label {
  margin-top: 0.35rem;
}

.login-panel .btn {
  width: 100%;
  margin-top: 0.85rem;
}

.btn-sm {
  font-size: 0.8rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
}

.part-divider {
  margin: 2rem 0 0.5rem;
  padding: 1rem 0 0.25rem;
  border-top: 2px solid var(--brass);
}

.part-divider .section-label {
  margin-bottom: 0.35rem;
}

.checklist {
  margin: 0.5rem 0 1rem;
  padding: 0;
  list-style: none;
  max-width: 48rem;
}

.checklist li {
  position: relative;
  padding: 0.55rem 0 0.55rem 1.35rem;
  border-top: 1px solid rgba(242, 235, 224, 0.08);
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1rem;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--teal-bright);
}
