/* 3D Exposé Conventions — staging LPs
   Insight Media / TLD 3D · Cloud Capture only · STAGING */
:root {
  --bg: #0a0b0f;
  --bg-elev: #12141c;
  --bg-card: #181b26;
  --line: #2a2f3d;
  --text: #f2f3f7;
  --muted: #9aa3b5;
  --accent: #c8a45a;
  --accent-2: #6ec8ff;
  --danger: #e8a54b;
  --banner: #3d2a00;
  --banner-text: #ffd27a;
  --radius: 12px;
  --max: 1080px;
  --font: "Segoe UI", system-ui, -apple-system, sans-serif;
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  min-height: 100vh;
}
a { color: var(--accent-2); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }

.staging-banner {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(90deg, #5a3a00, #3d2a00);
  color: var(--banner-text);
  text-align: center;
  padding: 0.55rem 1rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-bottom: 1px solid #8a6200;
}
.staging-banner span { opacity: 0.85; font-weight: 500; }

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

.site-header {
  border-bottom: 1px solid var(--line);
  background: rgba(10,11,15,0.92);
  backdrop-filter: blur(8px);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
  flex-wrap: wrap;
}
.brand {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  color: var(--text);
  text-decoration: none;
}
.brand strong { font-size: 1.05rem; letter-spacing: 0.02em; }
.brand small { color: var(--muted); font-size: 0.75rem; }
.nav-links {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  align-items: center;
  font-size: 0.92rem;
}
.nav-links a { color: var(--muted); }
.nav-links a:hover { color: var(--text); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 1.15rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 650;
  font-size: 0.95rem;
  cursor: pointer;
  text-decoration: none !important;
  transition: transform 0.15s ease, background 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--accent);
  color: #1a1200;
}
.btn-primary:hover { background: #d9b56a; }
.btn-ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--text);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

.hero {
  padding: 3.2rem 0 2.2rem;
}
.hero-kicker {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  font-weight: 700;
  margin: 0 0 0.75rem;
}
.hero h1 {
  font-size: clamp(1.8rem, 4.2vw, 2.85rem);
  line-height: 1.15;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
  max-width: 18ch;
}
.hero .sub {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 42ch;
  margin: 0 0 1.6rem;
}
.cta-row { display: flex; flex-wrap: wrap; gap: 0.75rem; }

.section { padding: 2rem 0; }
.section h2 {
  font-size: 1.45rem;
  margin: 0 0 1rem;
  letter-spacing: -0.01em;
}
.section p.lead { color: var(--muted); max-width: 60ch; }

.proof-strip {
  border: 1px dashed #5a4a28;
  background: #15120c;
  border-radius: var(--radius);
  padding: 1.25rem;
  margin: 1.5rem 0;
}
.proof-strip .label {
  color: var(--banner-text);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.85rem;
}
.proof-frames {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}
@media (max-width: 720px) {
  .proof-frames { grid-template-columns: 1fr; }
}
.proof-frame {
  aspect-ratio: 4/3;
  border-radius: 8px;
  background:
    repeating-linear-gradient(
      -45deg,
      #1c1a14,
      #1c1a14 8px,
      #241f16 8px,
      #241f16 16px
    );
  border: 1px solid #3a3220;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8a7a55;
  font-size: 0.8rem;
  text-align: center;
  padding: 0.75rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media (max-width: 800px) {
  .grid-3 { grid-template-columns: 1fr; }
}
.card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.15rem 1.2rem;
}
.card h3 { margin: 0 0 0.45rem; font-size: 1.05rem; }
.card p { margin: 0; color: var(--muted); font-size: 0.95rem; }

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0;
}
.chip {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.35rem 0.8rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.tier-list { display: grid; gap: 0.75rem; }
.tier {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.75rem;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem 1.15rem;
}
.tier h3 { margin: 0 0 0.25rem; font-size: 1.05rem; }
.tier p { margin: 0; color: var(--muted); font-size: 0.92rem; }
@media (max-width: 640px) {
  .tier { grid-template-columns: 1fr; }
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 720px) {
  .two-col { grid-template-columns: 1fr; }
}
.panel {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem;
}
.panel h3 { margin-top: 0; }
.panel ul { margin: 0.5rem 0 0; padding-left: 1.1rem; color: var(--muted); }

.form-card {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-top: 1rem;
}
.form-note {
  background: #1a2210;
  border: 1px solid #3a4a22;
  color: #c8d89a;
  border-radius: 8px;
  padding: 0.75rem 0.9rem;
  font-size: 0.88rem;
  margin-bottom: 1rem;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}
@media (max-width: 640px) {
  .form-grid { grid-template-columns: 1fr; }
}
.form-grid .full { grid-column: 1 / -1; }
label {
  display: block;
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 0.3rem;
  font-weight: 600;
}
input, select, textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--line);
  color: var(--text);
  border-radius: 8px;
  padding: 0.65rem 0.75rem;
  font: inherit;
}
input:focus, select:focus, textarea:focus {
  outline: 2px solid rgba(200,164,90,0.35);
  border-color: var(--accent);
}
.form-actions {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}
.micro {
  font-size: 0.82rem;
  color: var(--muted);
}

.show-list {
  display: grid;
  gap: 0.75rem;
}
.show-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem 1.15rem;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s ease;
}
.show-row:hover {
  border-color: var(--accent);
  text-decoration: none;
}
.show-row h3 { margin: 0 0 0.2rem; font-size: 1.05rem; color: var(--text); }
.show-row p { margin: 0; color: var(--muted); font-size: 0.9rem; }
.show-row .meta { color: var(--accent); font-size: 0.8rem; font-weight: 700; }
@media (max-width: 640px) {
  .show-row { grid-template-columns: 1fr; }
}

.hub-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
@media (max-width: 640px) {
  .hub-links { grid-template-columns: 1fr; }
}
.hub-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem;
  color: inherit;
  text-decoration: none;
  transition: border-color 0.15s ease;
}
.hub-card:hover { border-color: var(--accent-2); text-decoration: none; }
.hub-card h3 { margin: 0 0 0.35rem; color: var(--text); }
.hub-card p { margin: 0; color: var(--muted); font-size: 0.92rem; }

.site-footer {
  margin-top: 3rem;
  border-top: 1px solid var(--line);
  padding: 2rem 0 2.5rem;
  color: var(--muted);
  font-size: 0.88rem;
}
.site-footer .disclaimer {
  margin-top: 0.75rem;
  font-size: 0.8rem;
  opacity: 0.85;
}
.tags {
  margin-top: 0.75rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.72rem;
  color: #6a7388;
}

.booked-box {
  text-align: center;
  padding: 3rem 1rem;
  max-width: 36rem;
  margin: 0 auto;
}
.booked-box h1 { margin-bottom: 0.75rem; }
.booked-box p { color: var(--muted); }

.how-steps { counter-reset: step; display: grid; gap: 0.75rem; }
.how-step {
  counter-increment: step;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: start;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
}
.how-step::before {
  content: counter(step);
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 50%;
  background: var(--accent);
  color: #1a1200;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}
.how-step h3 { margin: 0 0 0.25rem; font-size: 1rem; }
.how-step p { margin: 0; color: var(--muted); font-size: 0.92rem; }
