/* ─────────────────────────────────────────────
   Tonight — the day-of landing page.
   Two steps: open Meet, scan QR (or continue here).
   ───────────────────────────────────────────── */

.tonight-body { overflow-x: hidden; }

.tonight {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 4rem 1.5rem 5rem;
  position: relative;
  z-index: 5;
  gap: 2rem;
}

.tonight-head {
  text-align: center;
  max-width: 560px;
}
.tonight-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.4rem, 7vw, 3.8rem);
  line-height: 1;
  letter-spacing: -0.015em;
  margin: 0.4rem 0 0.85rem;
}
.tonight-title em { color: var(--ink); font-style: italic; }
.tonight-sub {
  font-size: 1rem;
  opacity: 0.7;
  line-height: 1.5;
}

.how-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1.25rem;
  width: 100%;
  max-width: 460px;
}
.how-step {
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  padding: 1.6rem 1.5rem 1.85rem;
  text-align: center;
  position: relative;
}
.how-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--bg);
  font-family: 'DM Serif Display', serif;
  font-size: 1.5rem;
  font-style: italic;
  margin-bottom: 0.85rem;
  box-shadow: 0 4px 12px rgba(26, 53, 128, 0.28);
}
.how-step-title {
  font-family: 'DM Serif Display', serif;
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 0.35rem;
  line-height: 1.15;
}
.how-step-desc {
  font-size: 0.95rem;
  opacity: 0.7;
  line-height: 1.5;
  margin-bottom: 1.25rem;
}
.how-step-cta { display: inline-block; }

.qr-card {
  background: #fff;
  border-radius: 12px;
  padding: 1rem 1rem 0.7rem;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.14);
  margin-bottom: 1rem;
}
.qr-canvas {
  width: 240px;
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.qr-canvas img { display: block; width: 100%; height: auto; }
.qr-caption {
  font-family: 'Space Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  opacity: 0.5;
}

/* ── Buttons ─────────────────────────────────── */
.btn-primary {
  padding: 0.95rem 1.5rem;
  background: var(--ink);
  color: var(--bg);
  border: 0;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.12s, background 0.15s, box-shadow 0.15s;
  box-shadow: 0 4px 14px rgba(26, 53, 128, 0.25);
}
.btn-primary:hover { background: var(--ink-2); transform: translateY(-1px); box-shadow: 0 6px 18px rgba(26, 53, 128, 0.3); }
.btn-primary:active { transform: translateY(0); }

.btn-text {
  background: transparent;
  border: 0;
  color: var(--ink);
  font-family: inherit;
  font-size: 0.9rem;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  opacity: 0.8;
  padding: 0.5rem 0.25rem;
  display: inline-block;
}
.btn-text:hover { opacity: 1; }

.tonight-foot {
  margin-top: 1rem;
}
.quip {
  font-family: 'Caveat', cursive;
  font-size: 1.3rem;
  color: var(--ink);
  opacity: 0.75;
}

@media (max-width: 600px) {
  .tonight { padding: 3rem 1rem 4rem; }
  .how-step { padding: 1.4rem 1.15rem 1.55rem; }
  .qr-canvas { width: 200px; height: 200px; }
}
