:root {
  --bg: #13111c;
  --bg-soft: #1a1526;
  --surface: rgba(35, 29, 49, 0.92);
  --surface-soft: rgba(20, 17, 30, 0.82);
  --surface-float: rgba(27, 22, 39, 0.72);
  --text: #f2eef8;
  --text-soft: #b7b1c8;
  --text-muted: #8f879f;
  --violet: #8b5cf6;
  --violet-soft: #a78bfa;
  --border: rgba(167, 139, 250, 0.12);
  --shadow: 0 16px 44px rgba(5, 4, 12, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "DM Sans", sans-serif;
  background:
    radial-gradient(circle at 14% 12%, rgba(139, 92, 246, 0.12), transparent 18%),
    radial-gradient(circle at 84% 18%, rgba(167, 139, 250, 0.07), transparent 22%),
    linear-gradient(180deg, #151120 0%, #0f0d16 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

.page-shell {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  padding: 20px 0 0;
}

.background-visuals {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.bg-future-tech {
  position: absolute;
  inset: 0;
  background-image: url("/static/booking/bg-future-tech.svg");
  background-size: cover;
  background-position: center;
  opacity: 0.35;
}

.bg-orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(167, 139, 250, 0.08);
  filter: blur(0.2px);
}

.bg-orbit-left {
  width: 780px;
  height: 780px;
  top: -420px;
  left: -220px;
  box-shadow:
    0 0 0 36px rgba(167, 139, 250, 0.018),
    0 0 0 92px rgba(167, 139, 250, 0.012);
}

.bg-orbit-right {
  width: 540px;
  height: 540px;
  top: 88px;
  right: -180px;
  box-shadow:
    0 0 0 24px rgba(167, 139, 250, 0.016),
    0 0 0 62px rgba(167, 139, 250, 0.01);
}

.bg-grid {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 100% 168px, 168px 100%;
  mask-image: linear-gradient(180deg, transparent 0%, black 18%, black 62%, transparent 100%);
}

.page-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='0.9'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.page {
  width: min(1120px, calc(100vw - 32px));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  margin: 0 auto 24px;
  width: min(1120px, calc(100vw - 32px));
  max-width: 100%;
  background: rgba(19, 17, 28, 0.6);
  border: 1px solid rgba(167, 139, 250, 0.08);
  border-radius: 16px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(139, 92, 246, 0.08));
  border: 1px solid rgba(167, 139, 250, 0.2);
  border-radius: 10px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--violet-soft);
}

.brand-text {
  font-size: 1rem;
  font-weight: 700;
}

.header-nav {
  display: flex;
  align-items: center;
}

.brand,
h1,
h2,
h3 {
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.03em;
}


.header-note,
.lead,
.panel-intro p,
.choice-meta,
label,
.info-card p,
.notice,
.empty-state {
  color: var(--text-soft);
}

.header-note {
  margin: 0;
  font-size: 14px;
}

.page {
  padding: 24px 0 48px;
}

.site-footer {
  width: min(1120px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 20px 0 28px;
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  position: relative;
  z-index: 1;
}

.site-footer a {
  color: var(--text-soft);
  transition: color 0.2s ease;
}

.site-footer a:hover {
  color: var(--violet-soft);
}

.footer-sep {
  margin: 0 10px;
  opacity: 0.5;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.9fr);
  gap: 44px;
  align-items: start;
}

.hero-copy {
  padding: 34px 0 0;
}

.eyebrow,
.panel-kicker,
.feature-kicker {
  margin: 0 0 10px;
  color: var(--violet-soft);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

h1,
h2,
h3 {
  margin: 0;
}

h1 {
  max-width: 10ch;
  font-size: clamp(2.5rem, 5vw, 4.1rem);
  line-height: 0.96;
}

.lead {
  margin: 18px 0 0;
  max-width: 44ch;
  font-size: 1rem;
  line-height: 1.75;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
}

.trust-strip li {
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-soft);
  font-size: 13px;
}

.booking-shell,
.info-card {
  background: linear-gradient(180deg, rgba(36, 30, 50, 0.75), rgba(22, 18, 33, 0.65));
  border: 1px solid rgba(167, 139, 250, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.booking-shell {
  padding: 26px;
  border-radius: 26px;
  position: relative;
}

.booking-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 24%);
  pointer-events: none;
}

.panel-intro h2 {
  font-size: 1.8rem;
}

.panel-intro p {
  margin: 10px 0 0;
  line-height: 1.6;
}

.booking-block + .booking-block {
  margin-top: 20px;
}

.section-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.section-heading span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(167, 139, 250, 0.28);
  color: var(--violet-soft);
  font-size: 12px;
  font-weight: 700;
}

.section-heading h3 {
  font-size: 1.05rem;
}

.meeting-types,
.slots,
.compact-info {
  display: grid;
  gap: 14px;
}

.meeting-types {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.slots {
  grid-template-columns: 1fr;
  gap: 6px;
}

.choice,
input,
textarea,
button {
  width: 100%;
  font: inherit;
}

.choice {
  text-align: left;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(167, 139, 250, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.018), rgba(255, 255, 255, 0.008)), var(--surface-soft);
  color: var(--text);
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.choice strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
}

.choice-meta {
  font-size: 14px;
  line-height: 1.45;
}

.choice:hover,
.choice.selected {
  transform: translateY(-1px);
  border-color: rgba(167, 139, 250, 0.34);
  background: linear-gradient(180deg, rgba(139, 92, 246, 0.12), rgba(20, 17, 30, 0.86));
}

.slot-day-group {
  border: 1px solid rgba(167, 139, 250, 0.1);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(20, 17, 30, 0.5);
}

.slot-day-header {
  padding: 10px 14px 8px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--violet-soft);
  letter-spacing: 0.02em;
  border-bottom: 1px solid rgba(167, 139, 250, 0.08);
  background: rgba(139, 92, 246, 0.06);
}

.slot-time-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px 14px;
}

.slot-chip {
  width: auto;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid rgba(167, 139, 250, 0.18);
  background: rgba(139, 92, 246, 0.07);
  color: var(--text);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.15s ease;
  white-space: nowrap;
}

.slot-chip:hover {
  border-color: rgba(167, 139, 250, 0.45);
  background: rgba(139, 92, 246, 0.16);
  transform: translateY(-1px);
}

.slot-chip.selected {
  border-color: var(--violet);
  background: linear-gradient(180deg, rgba(139, 92, 246, 0.28), rgba(139, 92, 246, 0.16));
  color: #f2eef8;
}

.empty-state {
  padding: 14px 16px;
  border: 1px dashed rgba(167, 139, 250, 0.18);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
  line-height: 1.5;
}

form {
  display: grid;
  gap: 12px;
}

label {
  display: grid;
  gap: 7px;
  font-size: 14px;
}

input,
textarea {
  border: 1px solid rgba(167, 139, 250, 0.14);
  border-radius: 14px;
  background: rgba(10, 8, 18, 0.84);
  color: var(--text);
  padding: 13px 15px;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: rgba(167, 139, 250, 0.48);
  box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.12);
}

.button-primary,
button {
  appearance: none;
  border: 0;
  border-radius: 999px;
  padding: 13px 18px;
  color: white;
  font-weight: 700;
  background: linear-gradient(180deg, #9c72ff 0%, #7c4ef0 100%);
  cursor: pointer;
}

.notice {
  margin: 12px 0 0;
  line-height: 1.55;
}

.compact-info {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 34px;
}

.info-card {
  padding: 20px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(28, 24, 40, 0.6), rgba(20, 17, 30, 0.5));
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.info-card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.info-card p {
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 920px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .booking-shell {
    order: -1;
  }

  h1 {
    max-width: 12ch;
  }

  .hero-copy {
    padding-top: 8px;
  }
}

@media (max-width: 640px) {
  .site-header,
  .page,
  .site-footer {
    width: min(100vw - 20px, 1120px);
  }

  .site-header {
    padding: 14px 16px;
    margin-bottom: 16px;
  }

  .header-note {
    display: none;
  }

  .brand-text {
    font-size: 0.95rem;
  }

  .page {
    padding: 14px 0 28px;
  }

  .hero {
    gap: 16px;
  }

  .hero-copy {
    padding-top: 0;
  }

  h1 {
    max-width: none;
    font-size: 2.2rem;
  }

  .lead {
    font-size: 0.98rem;
  }

  .booking-shell {
    padding: 18px;
    border-radius: 20px;
  }

  .meeting-types,
  .slots,
  .compact-info {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    gap: 8px;
    margin-top: 16px;
  }

  .trust-strip li {
    font-size: 12px;
  }

  .bg-orbit-left {
    width: 420px;
    height: 420px;
    top: -220px;
    left: -160px;
  }

  .bg-orbit-right {
    width: 280px;
    height: 280px;
    top: 340px;
    right: -120px;
  }
}
