:root {
  --ink: #111114;
  --charcoal: #101014;
  --linen: #f4f2ee;
  --paper: #fbfaf7;
  --muted: #6f6d68;
  --line: #e4dfd6;
  --cyan: #22d3ee;
  --violet: #a855f7;
  --font: Inter, system-ui, sans-serif;
  --display: "Space Grotesk", Inter, sans-serif;
  --serif: Fraunces, "Times New Roman", serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--linen);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: rgba(34, 211, 238, 0.22);
  color: var(--ink);
}

a { color: inherit; text-decoration: none; }
img { display: block; }
h1, h2, h3 { font-family: var(--display); font-weight: 600; letter-spacing: -0.03em; line-height: 1.12; }
.serif { font-family: var(--serif); font-weight: 500; font-style: italic; letter-spacing: -0.02em; }

.skip {
  position: absolute;
  left: 12px;
  top: -40px;
  background: #fff;
  padding: 8px 12px;
  z-index: 40;
}
.skip:focus { top: 12px; }

.wrap { width: min(1140px, calc(100% - 48px)); margin: 0 auto; }

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: 0.045em;
  font-size: 14px;
}
.brand em {
  font-style: normal;
  background: linear-gradient(90deg, var(--cyan), var(--violet));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(16, 16, 20, 0.86);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 24px;
}
.nav .brand { color: #fff; }
.nav-links { display: flex; gap: 26px; font-size: 13.5px; color: rgba(255, 255, 255, 0.55); }
.nav-links a:hover { color: #fff; }
.nav-actions { display: flex; align-items: center; gap: 16px; }
.link-quiet { font-size: 13.5px; color: rgba(255, 255, 255, 0.55); }
.link-quiet:hover { color: #fff; }

.nav-toggle {
  display: none;
  width: 36px;
  height: 36px;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 16px;
  height: 1.5px;
  margin: 5px auto;
  background: #fff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 180ms var(--ease), background 180ms var(--ease), border-color 180ms var(--ease);
}
.btn:hover { transform: translateY(-1px); }
.btn-sm { height: 36px; padding: 0 14px; font-size: 13px; }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: #000; }
.btn-light { background: #fff; color: var(--ink); }
.btn-ghost { border-color: rgba(255, 255, 255, 0.18); color: #fff; }
.btn-ghost:hover { border-color: rgba(255, 255, 255, 0.4); }
.btn-outline { border-color: var(--line); background: transparent; color: var(--ink); }

.hero {
  position: relative;
  overflow: hidden;
  background: var(--charcoal);
  color: #fff;
  padding: 72px 0 88px;
}
.hero-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 12% 0%, rgba(34, 211, 238, 0.18), transparent 46%),
    radial-gradient(ellipse at 92% 88%, rgba(168, 85, 247, 0.14), transparent 42%);
  pointer-events: none;
}
.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse at 70% 50%, #000 20%, transparent 72%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 56px;
  align-items: center;
}
.pill {
  display: inline-flex;
  margin: 0 0 22px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
h1 { font-size: clamp(2.6rem, 5.4vw, 4.15rem); margin: 0 0 20px; }
.lede {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.58);
  max-width: 500px;
  margin: 0 0 28px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.hero-points {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 13.5px;
}
.hero-points li {
  padding-left: 16px;
  position: relative;
}
.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(90deg, var(--cyan), var(--violet));
}

.hero-stage {
  position: relative;
  min-height: 460px;
}

.plaque {
  width: min(340px, 100%);
  margin: 0 auto;
  background: var(--paper);
  color: var(--ink);
  border-radius: 22px;
  padding: 28px 28px 22px;
  text-align: center;
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.38),
    0 0 0 1px rgba(255, 255, 255, 0.06);
  transform: rotate(-1.4deg);
}
.plaque-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.plaque-brand {
  font-size: 10px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: #8b877f;
}
.plaque-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(90deg, var(--cyan), var(--violet));
}
.plaque-room {
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 500;
  margin: 10px 0 6px;
  letter-spacing: -0.02em;
}
.plaque-hint { margin: 0 0 18px; color: #7a766e; font-size: 13px; }
.plaque-qr {
  display: flex;
  justify-content: center;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}
.plaque-wifi {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
  color: #8b877f;
  font-size: 11.5px;
}

.board {
  position: absolute;
  right: 0;
  bottom: 8px;
  width: min(300px, 86%);
  background: rgba(18, 18, 22, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 14px;
  backdrop-filter: blur(16px);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.35);
  transform: rotate(2.2deg);
}
.board-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 10px;
}
.board-live {
  color: #86efac;
  letter-spacing: 0.08em;
}
.board-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 10px 8px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  margin-bottom: 6px;
}
.board-row:last-child { margin-bottom: 0; }
.board-row strong { display: block; font-size: 13px; color: #fff; font-weight: 600; }
.board-row span { display: block; font-size: 11px; color: rgba(255, 255, 255, 0.45); }
.tag {
  flex-shrink: 0;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 4px 7px;
  border-radius: 999px;
}
.tag-new { background: rgba(34, 211, 238, 0.16); color: #67e8f9; }
.tag-run { background: rgba(251, 191, 36, 0.16); color: #fbbf24; }
.tag-done { background: rgba(134, 239, 172, 0.12); color: #86efac; }

.depts {
  border-block: 1px solid var(--line);
  background: var(--paper);
}
.depts-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 28px;
  padding: 18px 0;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section { padding: 96px 0; }
.section-head { max-width: 640px; margin-bottom: 48px; }
.eyebrow {
  margin: 0 0 14px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #8a8680;
}
h2 { font-size: clamp(2rem, 3.4vw, 2.75rem); margin: 0 0 16px; }
.section-lede { color: var(--muted); margin: 0; font-size: 16.5px; line-height: 1.65; }

.section-dark {
  background: var(--charcoal);
  color: #fff;
}
.section-dark .eyebrow { color: rgba(255, 255, 255, 0.4); }
.section-dark .section-lede,
.section-dark p { color: rgba(255, 255, 255, 0.55); }

.bento {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}
.bento article {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 26px;
}
.bento-main {
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 360px;
  background:
    radial-gradient(ellipse at 100% 0%, rgba(34, 211, 238, 0.08), transparent 46%),
    var(--paper);
}
.bento h3 { margin: 0 0 8px; font-size: 18px; }
.bento p { margin: 0; color: var(--muted); font-size: 14.5px; }
.icon-tile {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--linen);
  color: var(--ink);
  margin-bottom: 16px;
}

.mini-board {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 28px;
}
.mini-col {
  background: var(--linen);
  border-radius: 12px;
  padding: 10px;
  min-height: 150px;
}
.mini-col header {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.mini-card {
  background: #fff;
  border-radius: 8px;
  padding: 10px 8px;
  font-size: 12px;
  margin-bottom: 6px;
  box-shadow: 0 1px 0 rgba(17, 17, 20, 0.04);
}
.mini-card.muted { color: var(--muted); }

.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
}
.steps::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, var(--cyan), var(--violet));
  opacity: 0.35;
}
.steps li {
  position: relative;
  padding: 0 8px;
}
.step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 20px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #16161c;
  font-family: var(--display);
  font-size: 13px;
  color: var(--cyan);
  letter-spacing: 0.08em;
}
.steps h3 { margin: 0 0 10px; font-size: 20px; }

.split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
  align-items: start;
}
.checks { list-style: none; padding: 0; margin: 28px 0 0; }
.checks li {
  padding: 16px 0 16px 0;
  border-top: 1px solid var(--line);
}
.checks strong { display: block; font-size: 15px; margin-bottom: 4px; }
.checks span { color: var(--muted); font-size: 14.5px; }

.cta-panel {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 32px;
  box-shadow: 0 20px 50px rgba(17, 17, 20, 0.05);
}
.cta-kicker {
  margin: 0 0 8px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8a8680;
}
.cta-panel h3 { margin: 0 0 10px; font-size: 26px; }
.cta-panel p { color: var(--muted); font-size: 14.5px; margin: 0 0 22px; }
.cta-panel .btn { width: 100%; margin-top: 8px; border-radius: 12px; }

.close {
  background: var(--charcoal);
  color: #fff;
  padding: 88px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.close::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(34, 211, 238, 0.14), transparent 50%),
    radial-gradient(ellipse at 50% 120%, rgba(168, 85, 247, 0.12), transparent 48%);
  pointer-events: none;
}
.close-inner { position: relative; }
.close h2 { font-size: clamp(2rem, 4vw, 3rem); margin: 0 0 28px; }
.close .hero-actions { justify-content: center; }

.footer {
  background: #0c0c10;
  color: rgba(255, 255, 255, 0.5);
  padding: 48px 0 28px;
  font-size: 14px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.1fr 1.4fr;
  gap: 48px;
  margin-bottom: 36px;
}
.footer .brand { color: #fff; margin-bottom: 14px; }
.footer p { max-width: 360px; margin: 0; line-height: 1.6; }
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.footer-cols h4 {
  margin: 0 0 12px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  font-family: var(--font);
  font-weight: 600;
}
.footer-cols a { display: block; margin-bottom: 8px; color: rgba(255, 255, 255, 0.62); }
.footer-cols a:hover { color: #fff; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 12px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

@media (max-width: 960px) {
  .hero-grid, .bento, .split, .footer-inner { grid-template-columns: 1fr; }
  .bento-main { grid-row: auto; min-height: 0; }
  .hero-stage { min-height: 0; }
  .plaque { transform: none; }
  .board {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(340px, 100%);
    margin: 16px auto 0;
    transform: none;
  }
  .steps { grid-template-columns: 1fr; }
  .steps::before { display: none; }
}

@media (max-width: 760px) {
  .wrap { width: min(1140px, calc(100% - 32px)); }
  .nav-links {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 64px;
    flex-direction: column;
    gap: 0;
    background: #101014;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 8px 24px 16px;
  }
  .nav.is-open .nav-links { display: flex; }
  .nav-links a { padding: 12px 0; color: rgba(255, 255, 255, 0.8); }
  .nav-toggle { display: block; }
  .nav-actions .link-quiet { display: none; }
  .hero { padding: 40px 0 56px; }
  .section { padding: 64px 0; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  .btn { transition: none; }
}
