:root {
  --navy: #060b18;
  --gold: #d4af37;
  --gold-2: #f0d36a;
  --cyan: #67d2ff;
  --sky: #bfe9ff;
  --paper: #f7fcff;
  --ink: #10141c;
  --muted: #4a5568;
  --danger: #9b2c2c;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  min-height: 100%;
  color: var(--ink);
  font-family: Outfit, system-ui, sans-serif;
}

body {
  min-height: 100vh;
  background: #3aa4ff;
}

.wash {
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(1200px 520px at 12% -8%, #ffffff 0%, transparent 55%),
    radial-gradient(900px 480px at 100% 0%, rgba(94, 220, 255, .55), transparent 50%),
    linear-gradient(180deg, #dff4ff 0%, #8ed4ff 36%, #3ea6ff 68%, #1f7ef0 100%);
}

.spark {
  position: fixed;
  z-index: 2;
  width: 28px;
  height: 28px;
  pointer-events: none;
  filter: drop-shadow(0 2px 4px rgba(6,11,24,.2));
}
.s1 { top: 28px; left: 6%; transform: rotate(-12deg); }
.s2 { top: 70px; right: 8%; width: 18px; height: 18px; }
.s3 { top: 42%; left: 3%; width: 16px; height: 16px; }

.poster {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 28px auto 0;
  padding: 16px 16px 0;
  background: linear-gradient(180deg, #c4ecff 0%, #5eb4ff 100%);
  border-radius: 32px;
  box-shadow:
    0 30px 70px rgba(8, 32, 92, .28),
    inset 0 0 0 3px rgba(255,255,255,.55);
}

.tape {
  position: absolute;
  z-index: 3;
  height: 30px;
  width: 118px;
  background: linear-gradient(180deg, rgba(255,248,220,.92), rgba(212,175,55,.55));
  box-shadow: 0 3px 0 rgba(6,11,24,.08);
}
.corner-tl { top: 10px; left: 36px; transform: rotate(-9deg); }
.corner-tr { top: 14px; right: 44px; transform: rotate(8deg); width: 96px; }

.poster-inner {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255,255,255,.35), transparent 30%),
    linear-gradient(180deg, #f8fcff 0%, #eaf6ff 100%);
  border-radius: 22px;
  padding: 26px 22px 34px;
}

.poster-inner::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .07;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='140' height='140'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='2'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='.55'/></svg>");
}

.topbar, .hero, .stage, .banner { position: relative; z-index: 1; }

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.brand-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 800;
  font-size: .72rem;
  letter-spacing: .16em;
  box-shadow: 0 6px 0 rgba(6,11,24,.18);
}

.gold-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px var(--gold);
}

.hearts {
  margin: 0;
  font-weight: 700;
  color: var(--navy);
}

.hero { text-align: center; padding: 10px 8px 6px; }

.chrome {
  margin: 0;
  font-family: "Bebas Neue", Impact, sans-serif;
  line-height: .88;
  letter-spacing: .04em;
  color: #f4fbff;
}

.community {
  font-size: clamp(2rem, 7vw, 4rem);
  text-shadow:
    0 1px 0 #c9eeff,
    0 2px 0 #8ad4ff,
    0 3px 0 #4db4ff,
    0 4px 0 #2b90f0,
    0 5px 0 #1a6fe0,
    0 8px 0 #0d4fb8,
    0 14px 22px rgba(6, 24, 80, .32);
}

.name {
  font-size: clamp(2.8rem, 10vw, 6.2rem);
  text-shadow:
    0 1px 0 #dff6ff,
    0 2px 0 #9adfff,
    0 4px 0 #4db4ff,
    0 6px 0 #1e7dff,
    0 8px 0 #1258c4,
    0 16px 26px rgba(6, 20, 70, .35);
}

.script {
  margin: 8px 0 0;
  font-family: Pacifico, cursive;
  font-size: clamp(1.7rem, 4.4vw, 2.6rem);
  color: var(--navy);
}

.subline {
  margin: 6px 0 10px;
  font-weight: 800;
  letter-spacing: .04em;
  color: #16325c;
}

.lede {
  margin: 0 auto;
  max-width: 38rem;
  color: #203049;
  font-size: 1.05rem;
  line-height: 1.55;
}

.sticky {
  position: absolute;
  z-index: 2;
  width: 148px;
  padding: 14px 12px;
  font-weight: 800;
  font-size: .9rem;
  line-height: 1.25;
  background: #7fd4ff;
  color: var(--navy);
  box-shadow: 5px 6px 0 rgba(6,11,24,.12);
}
.sticky.navy { background: #1d4ed8; color: #fff; }
.s-left { top: 168px; left: -18px; transform: rotate(-7deg); }
.s-right { top: 210px; right: -16px; transform: rotate(6deg); }

.banner {
  margin: 16px 8px 0;
  padding: 12px 14px;
  background: #fff4c8;
  border-radius: 16px;
  border: 2px solid var(--navy);
  font-weight: 700;
}
.banner.error { background: #ffd4ce; color: var(--danger); }

.stage {
  margin-top: 22px;
  background: #fff;
  border-radius: 24px;
  padding: clamp(16px, 3vw, 28px);
  box-shadow:
    0 16px 36px rgba(16, 48, 110, .12),
    0 0 0 1px rgba(6,11,24,.06);
}

.stage::before,
.stage::after {
  content: "";
  position: absolute;
  top: 10px;
  width: 86px;
  height: 22px;
  background: linear-gradient(180deg, rgba(255,250,230,.95), rgba(212,175,55,.5));
}
.stage { position: relative; }
.stage::before { left: 24px; transform: rotate(-8deg); }
.stage::after { right: 28px; transform: rotate(7deg); }

.loading, .empty { color: var(--muted); margin: 0; }
.error-inline { color: var(--danger); font-weight: 700; }

.steps {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
}

.steps li {
  background: #eaf4ff;
  color: var(--muted);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: .76rem;
  font-weight: 800;
}

.steps li[aria-current="step"] {
  background: var(--navy);
  color: #fff;
}

.host-chip {
  display: flex;
  gap: 12px;
  align-items: center;
  margin: 8px 0 14px;
}

.avatar {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, #1b2744, var(--navy));
  color: var(--gold);
  display: grid;
  place-items: center;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.45rem;
  letter-spacing: .04em;
  box-shadow: 4px 4px 0 var(--gold);
}

.host-chip strong { display: block; font-size: 1.05rem; }
.host-chip span { color: var(--muted); font-size: .88rem; }

.tz-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 16px;
}

.tz-pill {
  background: #e8f4ff;
  border-radius: 999px;
  padding: 7px 12px;
  font-weight: 700;
  font-size: .84rem;
}

.tz-pill.host {
  background: var(--navy);
  color: #fff;
}

.tz-pill.host b { color: var(--gold); }

.grid-types {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

@media (min-width: 760px) {
  .grid-types { grid-template-columns: 1fr 1fr; }
}

.card {
  position: relative;
  display: block;
  width: 100%;
  text-align: left;
  background: linear-gradient(180deg, #fff, #f3f9ff);
  border: 0;
  border-radius: 8px 8px 18px 18px;
  padding: 22px 18px 18px;
  cursor: pointer;
  font-family: inherit;
  color: inherit;
  box-shadow:
    0 14px 28px rgba(16, 40, 90, .12),
    0 0 0 1px rgba(6,11,24,.08);
}

.card:nth-child(1) { transform: rotate(-1.1deg); }
.card:nth-child(2) { transform: rotate(1.2deg); }

.card:hover, .card:focus-visible {
  transform: rotate(0deg) translateY(-3px);
  outline: none;
  box-shadow:
    0 18px 32px rgba(16, 40, 90, .16),
    0 0 0 3px var(--gold);
}

.card .mins {
  display: inline-block;
  background: var(--navy);
  color: #fff;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
}

.card h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.2rem;
  margin: 12px 0 8px;
  letter-spacing: .04em;
}

.card p { margin: 0 0 16px; color: var(--muted); line-height: 1.45; min-height: 3.2em; }

.card .select {
  display: inline-flex;
  background: var(--navy);
  color: #fff;
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 800;
  font-size: .82rem;
}

.card .select b { color: var(--gold); margin-left: 6px; }

.toolbar {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.ghost, .primary, .slot, .day, .meet {
  font-family: inherit;
}

.ghost {
  background: #fff;
  color: var(--navy);
  border: 2px solid var(--navy);
  border-radius: 999px;
  padding: 8px 14px;
  cursor: pointer;
  font-weight: 800;
}

.primary, .meet {
  display: inline-block;
  background: var(--navy);
  color: #fff;
  border: 0;
  border-radius: 999px;
  padding: 13px 20px;
  font-weight: 800;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 6px 0 rgba(6,11,24,.16);
}

.primary.gold, .meet.gold {
  background: var(--gold);
  color: var(--navy);
}

.primary:disabled { opacity: .4; cursor: not-allowed; box-shadow: none; }

.calendly {
  display: grid;
  gap: 22px;
}

@media (min-width: 880px) {
  .calendly { grid-template-columns: 280px minmax(0, 1fr); align-items: start; }
}

.event-side {
  background: #f4f9ff;
  border-radius: 20px;
  padding: 18px;
  box-shadow: inset 0 0 0 1px rgba(6,11,24,.06);
}

.event-side h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  margin: 8px 0 6px;
}

.cal-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.cal-head h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.8rem;
  margin: 0;
  letter-spacing: .04em;
}

.dow, .days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}

.dow {
  margin-bottom: 6px;
  color: var(--muted);
  text-align: center;
  font-size: .72rem;
  font-weight: 800;
}

.day {
  aspect-ratio: 1;
  border: 0;
  border-radius: 12px;
  background: #eaf4ff;
  color: var(--ink);
  cursor: pointer;
  font-weight: 800;
}

.day:disabled {
  opacity: .28;
  cursor: default;
  background: transparent;
}

.day.today { box-shadow: inset 0 0 0 2px var(--gold); }
.day.selected {
  background: var(--navy);
  color: var(--gold);
}

.slots {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  max-height: 360px;
  overflow: auto;
  padding-right: 4px;
}

@media (min-width: 520px) {
  .slots { grid-template-columns: 1fr 1fr; }
}

.slot {
  border: 0;
  border-radius: 999px;
  background: #eaf4ff;
  color: var(--ink);
  padding: 12px 10px;
  cursor: pointer;
  font-weight: 800;
}

.slot small {
  display: block;
  font-weight: 600;
  color: var(--muted);
  font-size: .75rem;
}

.slot.selected {
  background: var(--navy);
  color: #fff;
}
.slot.selected small { color: var(--gold); }

.picker h3 {
  margin: 18px 0 8px;
  font-size: 1rem;
}

.form-wrap {
  display: grid;
  gap: 18px;
}

@media (min-width: 880px) {
  .form-wrap { grid-template-columns: 280px minmax(0, 1fr); }
}

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

label {
  display: grid;
  gap: 6px;
  font-size: .8rem;
  font-weight: 800;
  color: var(--muted);
  letter-spacing: .04em;
  text-transform: uppercase;
}

input, textarea {
  font: inherit;
  text-transform: none;
  letter-spacing: 0;
  color: var(--ink);
  background: #f7fbff;
  border: 2px solid #d7e6f7;
  border-radius: 14px;
  padding: 12px;
}

input:focus, textarea:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(103, 210, 255, .35);
}

.summary {
  background: #eaf4ff;
  border-radius: 16px;
  padding: 14px 16px;
  margin-bottom: 4px;
}

.summary strong { display: block; margin-bottom: 4px; }

.confirm {
  max-width: 640px;
  margin: 0 auto;
  text-align: left;
}

.confirm .script { text-align: left; }

.confirm h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2rem, 6vw, 3rem);
  margin: 4px 0 14px;
  letter-spacing: .03em;
}

.confirm dl {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 8px 12px;
  margin: 0 0 16px;
}

.confirm dt {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}

.confirm dd { margin: 0; font-weight: 700; }

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 8px 0 12px;
}

.danger-link {
  background: transparent;
  border: 0;
  color: var(--danger);
  font-weight: 800;
  cursor: pointer;
  padding: 8px 0;
  font-family: inherit;
}

.foot {
  margin: 8px -16px 0;
  text-align: center;
  color: #eaf4ff;
  background: linear-gradient(180deg, transparent, rgba(6,11,24,.18) 18%, #060b18 62%);
  padding: 0 16px 28px;
  border-radius: 0 0 28px 28px;
}

.skyline {
  display: block;
  width: calc(100% + 32px);
  margin-left: -16px;
  height: 78px;
}

.legacy {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.3rem, 4vw, 2rem);
  letter-spacing: .08em;
  color: var(--gold);
  margin: 4px 8px 8px;
}

.foot p { margin: 4px 16px; font-weight: 700; }
.fine { font-size: .8rem; font-weight: 500; opacity: .8; }

@media (max-width: 820px) {
  .sticky { width: 118px; font-size: .76rem; padding: 10px 8px; }
  .s-left { top: 132px; left: 4px; }
  .s-right { top: 150px; right: 4px; }
}

@media (max-width: 640px) {
  .poster { margin-top: 12px; border-radius: 24px 24px 0 0; }
  .spark, .tape { display: none; }
  .confirm dl { grid-template-columns: 1fr; }
  .card:nth-child(1), .card:nth-child(2) { transform: none; }
}
