@charset "UTF-8";
/* ── DEMO PAGE HERO ── */
.demo-hero {
  padding: 100px 20px 40px;
  background: var(--mist);
  background-image: radial-gradient(ellipse at 50% 0%, var(--gold-dim) 0%, transparent 70%);
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.demo-hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  color: var(--ink);
  margin-bottom: 16px;
  line-height: 1.15;
}

.demo-hero p {
  font-size: 1.1rem;
  color: var(--ink-2);
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

/* ── VIDEO CONTAINER ── */
.video-section {
  padding: 60px 20px;
  background: #fff;
}

.video-wrapper {
  max-width: 900px;
  margin: 0 auto;
  background: #000;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  position: relative;
  /* 16:9 Aspect Ratio Trick */
  padding-bottom: 56.25%;
  height: 0;
}

.video-wrapper iframe,
.video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ── LIVE DEMO CTA (Below Video) ── */
.live-demo-cta {
  max-width: 700px;
  margin: 60px auto 0;
  text-align: center;
  background: var(--mist);
  padding: 40px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.live-demo-cta h3 {
  font-size: 1.5rem;
  color: var(--ink);
  margin-bottom: 12px;
  font-family: var(--font-body);
}

.live-demo-cta p {
  color: var(--ink-2);
  margin-bottom: 24px;
  font-size: 0.95rem;
}

/* ── MODAL OVERLAY & CONTENT ── */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(26, 26, 46, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  /* Hidden by default */
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

/* Modal Open State */
.modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: #fff;
  width: 100%;
  max-width: 600px;
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
  position: relative;
  transform: scale(0.95) translateY(20px);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  overflow: hidden;
}

.modal-overlay.is-open .modal-content {
  transform: scale(1) translateY(0);
}

.modal-header {
  padding: 24px 32px;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--mist);
}

.modal-header h4 {
  margin: 0;
  font-size: 1.2rem;
  color: var(--ink);
}

.btn-close-modal {
  background: transparent;
  border: none;
  color: var(--ink-3);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 4px;
  transition: color 0.2s ease;
}

.btn-close-modal:hover {
  color: var(--red);
}

.modal-body {
  padding: 32px;
  min-height: 400px; /* Gives space for an embedded calendar */
  display: flex;
  flex-direction: column;
}

/* Placeholder for Calendly / Cal.com iframe */
.calendar-placeholder {
  flex: 1;
  background: #faf9f7;
  border: 2px dashed var(--border-med);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-3);
  font-size: 0.9rem;
  text-align: center;
  padding: 20px;
}/*# sourceMappingURL=styles_demo.css.map */