@keyframes meetingFloatSlow {
  0% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(40px, -60px) scale(1.15); }
  66% { transform: translate(-30px, 30px) scale(.9); }
  100% { transform: translate(0, 0) scale(1); }
}
@keyframes meetingFloatReverse {
  0% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-50px, 40px) scale(.85); }
  66% { transform: translate(40px, -40px) scale(1.1); }
  100% { transform: translate(0, 0) scale(1); }
}
.meeting-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(10, 13, 23, .52);
  backdrop-filter: blur(8px);
  z-index: 1200;
  overflow: hidden;
}
.meeting-modal.is-open { display: flex; }
.meeting-modal-aura {
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(100px);
  opacity: .9;
}
.meeting-modal-aura.aura-1 {
  top: 12%;
  left: 18%;
  width: 32rem;
  height: 32rem;
  background: rgba(165, 180, 252, .28);
  animation: meetingFloatSlow 16s infinite ease-in-out;
}
.meeting-modal-aura.aura-2 {
  bottom: 14%;
  right: 12%;
  width: 36rem;
  height: 36rem;
  background: rgba(216, 180, 254, .24);
  animation: meetingFloatReverse 20s infinite ease-in-out;
}
.meeting-modal-aura.aura-3 {
  top: 45%;
  right: 32%;
  width: 28rem;
  height: 28rem;
  background: rgba(233, 213, 255, .18);
  animation: meetingFloatSlow 18s infinite ease-in-out 2s;
}
.meeting-modal-dialog {
  width: min(100%, 820px);
  min-height: 560px;
  max-height: min(90vh, 720px);
  margin: auto;
  padding: 0;
  border: 1px solid #e8ecf5;
  border-radius: 26px;
  overflow: hidden;
  position: relative;
  inset: auto;
  background: #fff;
  box-shadow: 0 24px 64px rgba(124, 58, 237, .2);
  display: flex;
  z-index: 1;
}
.meeting-panel-left {
  width: 34%;
  min-width: 320px;
  padding: 28px;
  border-right: 1px solid #e8ecf5;
  background: rgba(255, 255, 255, .45);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}
.meeting-brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
  font-size: 1.03rem;
  font-weight: 800;
  color: #5b21b6;
  letter-spacing: -.01em;
}
.meeting-brand-dot {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  display: inline-grid;
  place-items: center;
  background: var(--brand-gradient);
  color: #fff;
  font-size: .8rem;
  box-shadow: 0 8px 16px rgba(124, 58, 237, .2);
}
.meeting-title {
  margin: 0;
  font-size: 2rem;
  line-height: 1.12;
  letter-spacing: -.025em;
  color: #0f172a;
}
.meeting-subtitle {
  margin: 12px 0 0;
  color: #64748b;
  line-height: 1.65;
  font-size: .92rem;
  max-width: 280px;
}
.meeting-meta {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}
.meeting-duration-box {
  border: 1px solid #e6ebf4;
  border-radius: 14px;
  padding: 12px;
  background: rgba(248, 250, 252, .75);
}
.meeting-meta-label {
  font-size: .67rem;
  color: #94a3b8;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}
.meeting-duration-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}
.meeting-duration-btn {
  appearance: none;
  border: 1px solid #dbe4ee;
  background: #fff;
  color: #475569;
  border-radius: 10px;
  height: 34px;
  font-size: .76rem;
  font-weight: 700;
  cursor: pointer;
  transition: all .2s ease;
}
.meeting-duration-btn:hover { border-color: #0f0029; }
.meeting-duration-btn.is-active {
  background: #0f0029;
  color: #fff;
  border-color: #0f0029;
  box-shadow: 0 8px 14px rgba(15, 0, 41, .22);
}
.meeting-meta-card {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #edf1f7;
  background: rgba(248, 250, 252, .58);
  border-radius: 12px;
  padding: 11px 10px;
}
.meeting-meta-icon {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  display: inline-grid;
  place-items: center;
  color: #4f46e5;
  background: #eef2ff;
  flex-shrink: 0;
  font-size: .82rem;
}
.meeting-meta-copy p {
  margin: 0;
  font-size: .74rem;
  color: #334155;
  line-height: 1.35;
  font-weight: 700;
}
.meeting-meta-copy .meeting-meta-label {
  margin-bottom: 2px;
  font-size: .62rem;
}
.meeting-tz-select {
  border: none;
  background: transparent;
  color: #334155;
  font: inherit;
  font-size: .75rem;
  font-weight: 700;
  padding: 0;
  outline: none;
  max-width: 100%;
}
.meeting-left-footer {
  margin-top: auto;
  border-top: 1px solid #edf1f7;
  padding-top: 12px;
  color: #94a3b8;
  font-size: .74rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.meeting-panel-center {
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  background: #fff;
}
.meeting-step {
  display: none;
  width: 100%;
  height: 100%;
}
.meeting-step.is-active { display: flex; }
.meeting-step-datetime {
  flex-direction: column;
}
.meeting-datetime-intro {
  padding: 28px 28px 0;
  border-bottom: 1px solid #e8ecf5;
}
.meeting-datetime-intro .meeting-title {
  font-size: 1.65rem;
}
.meeting-datetime-intro .meeting-subtitle {
  margin: 8px 0 0;
  max-width: none;
}
.meeting-datetime-body {
  display: flex;
  flex: 1;
  min-height: 0;
}
.meeting-calendar {
  flex: 1;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.meeting-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  color: #0f172a;
}
.meeting-head h4 {
  margin: 0;
  font-size: 1.35rem;
  letter-spacing: -.02em;
}
.meeting-month-nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.meeting-icon-btn {
  width: 32px;
  height: 32px;
  border: 1px solid #dde4ef;
  background: #fff;
  border-radius: 10px;
  color: #64748b;
  cursor: pointer;
  transition: all .2s ease;
  display: inline-grid;
  place-items: center;
  font-size: .72rem;
}
.meeting-icon-btn:hover {
  border-color: #c9d3e2;
  background: #f8fafc;
}
.meeting-icon-btn.is-disabled,
.meeting-icon-btn:disabled {
  opacity: .45;
  cursor: not-allowed;
  pointer-events: none;
}
.meeting-weekdays,
.meeting-days {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
}
.meeting-weekdays {
  margin-bottom: 10px;
  text-align: center;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: #94a3b8;
}
.meeting-weekdays .is-weekend { color: #fb7185; }
.meeting-day,
.meeting-day-blank {
  height: 44px;
  border-radius: 12px;
}
.meeting-day {
  border: 1px solid transparent;
  background: transparent;
  color: #334155;
  font-size: .9rem;
  font-weight: 700;
  cursor: pointer;
  transition: all .2s ease;
  display: inline-grid;
  place-items: center;
}
.meeting-day:hover {
  background: #f8fafc;
  border-color: #e6ebf4;
}
.meeting-day.is-weekend { color: #fb7185; }
.meeting-day.is-active {
  background: rgba(15, 0, 41, .06);
  border-color: #0f0029;
  color: #0f0029;
  box-shadow: 0 0 0 2px rgba(15, 0, 41, .16);
}
.meeting-day.is-disabled {
  color: #cbd5e1;
  cursor: not-allowed;
  pointer-events: none;
}
.meeting-calendar-footnote {
  margin-top: 20px;
  color: #94a3b8;
  font-size: .75rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.meeting-calendar-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid #0f0029;
  background: rgba(15, 0, 41, .2);
  display: inline-block;
}
.meeting-slots-panel {
  width: 290px;
  border-left: 1px solid #e8ecf5;
  background: #fff;
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
}
.meeting-selected-pill {
  font-size: .62rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: rgba(15, 0, 41, .08);
  color: #7c3aed;
  border-radius: 999px;
  display: inline-block;
  padding: 5px 10px;
  font-weight: 800;
  margin-bottom: 8px;
}
.meeting-selected-date {
  margin: 0;
  color: #0f172a;
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: -.01em;
}
.meeting-slots {
  margin-top: 14px;
  display: grid;
  gap: 8px;
  max-height: 330px;
  overflow-y: auto;
  padding-right: 4px;
}
.meeting-slots::-webkit-scrollbar { width: 6px; }
.meeting-slots::-webkit-scrollbar-track {
  background: rgba(243, 244, 246, .55);
  border-radius: 999px;
}
.meeting-slots::-webkit-scrollbar-thumb {
  background: rgba(15, 0, 41, .22);
  border-radius: 999px;
}
.meeting-slot-empty {
  text-align: center;
  color: #94a3b8;
  font-size: .75rem;
  line-height: 1.5;
  padding: 24px 8px;
  border: 1px dashed #e2e8f0;
  border-radius: 12px;
}
.meeting-slot {
  appearance: none;
  width: 100%;
  height: 42px;
  border-radius: 12px;
  border: 1px solid #dbe4ee;
  background: rgba(255, 255, 255, .85);
  color: #334155;
  font-size: .9rem;
  font-weight: 700;
  cursor: pointer;
  transition: all .2s ease;
}
.meeting-slot:hover {
  border-color: #0f0029;
  background: #f8fafc;
}
.meeting-slot.is-active {
  border-color: #0f0029;
  color: #0f0029;
  background: rgba(15, 0, 41, .06);
  box-shadow: 0 0 0 2px rgba(15, 0, 41, .14);
}
.meeting-step-btn {
  width: 100%;
  border: none;
  border-radius: 14px;
  height: 48px;
  font: inherit;
  font-size: .93rem;
  font-weight: 700;
  cursor: pointer;
  transition: all .25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}
.meeting-step-btn.primary {
  background: #0f0029;
  color: #fff;
  box-shadow: 0 14px 22px rgba(15, 0, 41, .26);
}
.meeting-step-btn.primary:hover { background: #0f0029; }
.meeting-step-btn.primary.is-disabled,
.meeting-step-btn.primary:disabled {
  background: #e2e8f0;
  color: #94a3b8;
  box-shadow: none;
  cursor: not-allowed;
}
.meeting-step-btn.ghost {
  border: 1px solid #dbe4ee;
  background: #fff;
  color: #475569;
}
.meeting-step-btn.ghost:hover { border-color: #0f0029; color: #0f0029; }
.meeting-step-form,
.meeting-step-success {
  flex-direction: column;
  padding: 28px;
  justify-content: space-between;
  background: rgba(255, 255, 255, .42);
}
.meeting-back-link {
  border: none;
  background: transparent;
  color: #64748b;
  font: inherit;
  font-size: .86rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding: 0;
}
.meeting-back-link:hover { color: #0f0029; }
.meeting-form-title {
  margin: 0;
  font-size: 1.8rem;
  color: #0f172a;
  letter-spacing: -.02em;
}
.meeting-form-subtitle {
  margin: 8px 0 0;
  color: #64748b;
  font-size: .9rem;
}
.meeting-request-form {
  margin-top: 22px;
  max-width: 640px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.meeting-field {
  display: grid;
  gap: 6px;
}
.meeting-field.is-span-2 { grid-column: span 2; }
.meeting-field label {
  font-size: .66rem;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: #94a3b8;
  font-weight: 800;
}
.meeting-field input,
.meeting-field textarea {
  width: 100%;
  border: 1px solid #dbe4ee;
  border-radius: 12px;
  background: rgba(255, 255, 255, .76);
  color: #0f172a;
  font: inherit;
  font-size: .9rem;
  padding: 12px 14px;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.meeting-field textarea {
  min-height: 90px;
  resize: vertical;
}
.meeting-field input:focus,
.meeting-field textarea:focus {
  outline: none;
  border-color: #0f0029;
  box-shadow: 0 0 0 3px rgba(15, 0, 41, .14);
}
.meeting-step-form-footer {
  margin-top: 20px;
  border-top: 1px solid #edf1f7;
  padding-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.meeting-summary {
  font-size: .8rem;
  color: #64748b;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.meeting-summary strong { color: #334155; font-weight: 700; }
.meeting-form-status {
  min-height: 18px;
  margin-top: 10px;
  font-size: .78rem;
  font-weight: 700;
  color: #64748b;
}
.meeting-form-status.is-error { color: #b91c1c; }
.meeting-form-status.is-success { color: #166534; }
.meeting-step-success {
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 14px;
}
.meeting-success-icon {
  width: 78px;
  height: 78px;
  border-radius: 999px;
  border: 1px solid #bbf7d0;
  background: #ecfdf3;
  color: #10b981;
  display: grid;
  place-items: center;
  font-size: 1.8rem;
  box-shadow: 0 12px 24px rgba(16, 185, 129, .14);
}
.meeting-success-title {
  margin: 0;
  color: #0f172a;
  font-size: 1.85rem;
  letter-spacing: -.02em;
}
.meeting-success-copy {
  margin: 0;
  max-width: 560px;
  color: #64748b;
  font-size: .92rem;
  line-height: 1.65;
}
.meeting-success-card {
  width: min(100%, 400px);
  border: 1px solid #e8ecf5;
  border-radius: 16px;
  background: rgba(248, 250, 252, .72);
  padding: 16px;
  display: grid;
  gap: 8px;
  text-align: left;
  font-size: .8rem;
}
.meeting-success-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #94a3b8;
}
.meeting-success-row strong {
  color: #334155;
  font-weight: 700;
  text-align: right;
}
.meeting-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  border: 1px solid #dbe4ee;
  background: #fff;
  color: #475569;
  cursor: pointer;
  font-size: 1rem;
  display: inline-grid;
  place-items: center;
  transition: all .2s ease;
  z-index: 2;
}
.meeting-modal-close:hover {
  border-color: #cbd5e1;
  color: #0f172a;
  background: #f8fafc;
}
body.meeting-modal-open { overflow: hidden; }
@media (max-width: 980px) {
  .meeting-modal { padding: 10px; }
  .meeting-modal-dialog {
    min-height: 0;
    max-height: 95vh;
    flex-direction: column;
  }
  .meeting-datetime-body {
    flex-direction: column;
  }
  .meeting-datetime-intro {
    padding: 20px 20px 0;
  }
  .meeting-slots-panel {
    width: 100%;
    border-left: none;
    border-top: 1px solid #e8ecf5;
  }
  .meeting-request-form {
    grid-template-columns: 1fr;
  }
  .meeting-field.is-span-2 { grid-column: auto; }
}
