.vcr-page {
  position: relative;
  isolation: isolate;
  min-height: 70vh;
  padding: clamp(118px, 9.75vw, 148px) clamp(20px, 5vw, 76px) clamp(72px, 9vw, 132px);
  color: #132128;
  background: #f3efe7;
}

.vcr-page::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  z-index: -1;
  height: clamp(680px, 42vw, 740px);
  background:
    radial-gradient(circle at 82% 4%, rgba(51, 197, 220, .16), transparent 30%),
    #0b171d;
}

.vcr-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, .8fr);
  gap: clamp(38px, 6vw, 90px);
  align-items: end;
  width: min(1220px, 100%);
  margin: 0 auto clamp(64px, 6vw, 90px);
  color: #fff;
}

.vcr-hero h1,
.vcr-confirm-card h1 {
  max-width: 800px;
  margin: 14px 0 20px;
  font-size: clamp(42px, 5.5vw, 76px);
  line-height: .98;
  letter-spacing: -.045em;
}

.vcr-hero-copy > p {
  max-width: 720px;
  color: rgba(255, 255, 255, .76);
  font-size: clamp(17px, 1.55vw, 21px);
  line-height: 1.65;
}

.vcr-steps {
  display: grid;
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  border: 1px solid rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .12);
}

.vcr-steps li {
  display: grid;
  grid-template-columns: 46px 1fr;
  column-gap: 14px;
  padding: 17px 20px;
  background: rgba(7, 17, 23, .82);
}

.vcr-steps span {
  grid-row: 1 / 3;
  color: #33c5dc;
  font-weight: 800;
}

.vcr-steps small { color: rgba(255, 255, 255, .62); }

.vcr-card,
.vcr-confirm-card {
  width: min(920px, 100%);
  margin: 0 auto;
  padding: clamp(28px, 5vw, 62px);
  border-top: 4px solid #33c5dc;
  background: #fff;
  box-shadow: 0 28px 80px rgba(17, 27, 32, .14);
}

.vcr-card .eyebrow,
.vcr-confirm-card .eyebrow,
.vcr-pdf-header .eyebrow {
  color: #087789;
}

.vcr-card-head h2 {
  max-width: 680px;
  margin: 10px 0 30px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: -.035em;
}

.vcr-form { display: grid; gap: 26px; }
.vcr-form .auth-field { display: grid; gap: 8px; }
.vcr-form label,
.vcr-form legend { font-weight: 750; }

.vcr-form input[type="email"],
.vcr-form input[type="text"],
.vcr-form input[type="tel"],
.vcr-form select {
  width: 100%;
  min-height: 52px;
  padding: 11px 14px;
  border: 1px solid #c7ccd0;
  border-radius: 0;
  color: #132128;
  background: #fff;
  font: inherit;
}

.vcr-form input:focus,
.vcr-form select:focus {
  outline: 3px solid rgba(51, 197, 220, .2);
  border-color: #168da0;
}

.vcr-form fieldset { min-width: 0; margin: 0; padding: 0; border: 0; }
.vcr-form fieldset > legend { margin-bottom: 12px; }
.vcr-conference-list { display: grid; gap: 10px; }

.vcr-conference-entry {
  border: 1px solid #d7dadb;
  background: #f8f6f1;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.vcr-conference-entry:has(input:checked) {
  border-color: #168da0;
  box-shadow: inset 4px 0 #33c5dc;
  background: #f1fbfc;
}

.vcr-conference-option {
  position: relative;
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 13px;
  align-items: start;
  padding: 18px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.vcr-conference-option input { margin-top: 4px; accent-color: #168da0; }
.vcr-conference-option span { display: grid; gap: 5px; }
.vcr-conference-option strong { font-size: 18px; }
.vcr-conference-option small { color: #58666c; font-weight: 500; }

.vcr-brochure-button {
  display: flex;
  align-items: center;
  gap: 10px;
  width: calc(100% - 36px);
  margin: 0 18px 16px;
  padding: 11px 13px;
  border: 1px solid rgba(22, 141, 160, .3);
  color: #087789;
  background: rgba(255, 255, 255, .72);
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.vcr-brochure-button:hover,
.vcr-brochure-button:focus-visible {
  border-color: #168da0;
  background: #fff;
  outline: 3px solid rgba(51, 197, 220, .18);
}

.vcr-brochure-button span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 24px;
  color: #fff;
  background: #b51f2e;
  font-size: 10px;
  letter-spacing: .08em;
}

.vcr-privacy-note,
.vcr-empty,
.vcr-selected-conference {
  padding: 20px 22px;
  border-left: 4px solid #33c5dc;
  background: #edf7f8;
}

.vcr-privacy-note p,
.vcr-empty p { margin: 7px 0 0; color: #526067; line-height: 1.6; }
.vcr-form .auth-submit { justify-self: start; min-width: 240px; }

.vcr-confirmation-page {
  padding-top: clamp(72px, 9vw, 128px);
  background: #f3efe7;
}

.vcr-confirmation-page::before {
  height: 320px;
  background:
    radial-gradient(circle at 78% 0, rgba(51, 197, 220, .17), transparent 28%),
    #0b171d;
}

.vcr-confirm-card { border-top-color: #ffd600; }
.vcr-confirm-card h1 { margin-bottom: 26px; font-size: clamp(38px, 5vw, 64px); }
.vcr-selected-conference { display: grid; gap: 5px; margin-bottom: 24px; }
.vcr-selected-conference strong { font-size: 20px; }
.vcr-selected-conference span { color: #536168; }
.vcr-selected-conference.vcr-selected-conference-summary { gap: 7px; margin-bottom: 0; }
.vcr-selection-label { color: #087789; font-size: 11px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.vcr-selected-conference-summary .vcr-brochure-button { justify-self: start; width: auto; margin: 10px 0 0; }
.vcr-selected-conference-summary .vcr-brochure-button span { color: #fff; }
.vcr-change-conference { justify-self: start; margin-top: 5px; color: #087789; font-size: 13px; font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }
.vcr-change-conference:hover,
.vcr-change-conference:focus-visible { color: #0b1e24; }
.vcr-complete-state { display: grid; gap: 20px; }
.vcr-complete-message { padding: 22px; border: 1px solid #d7dadb; background: #f8f6f1; }
.vcr-complete-message > strong { display: block; font-size: 20px; }
.vcr-complete-message p { margin: 9px 0 0; color: #536168; line-height: 1.6; }
.vcr-complete-message b { color: #132128; overflow-wrap: anywhere; }
.vcr-completion-copy { margin: 0 0 28px; color: #536168; line-height: 1.65; }
.vcr-contact-fields { padding: 20px !important; border: 1px solid #d7dadb !important; }
.vcr-phone-grid { display: grid; grid-template-columns: .7fr 1fr 1.3fr; gap: 12px; }
.vcr-form .auth-check { display: grid; grid-template-columns: 22px 1fr; gap: 10px; align-items: start; font-weight: 500; line-height: 1.55; }
.vcr-form .auth-check input { margin-top: 5px; accent-color: #168da0; }
.vcr-form .auth-check a { color: #087789; text-decoration: underline; }
.vcr-form .has-error input,
.vcr-form .has-error select { border-color: #b51f2e; }
.vcr-form .auth-error-text { color: #a3182a; font-weight: 700; }

body.vcr-pdf-open { overflow: hidden; }

.vcr-pdf-modal[hidden] { display: none; }

.vcr-pdf-modal {
  position: fixed;
  inset: 0;
  z-index: 12000;
  display: grid;
  place-items: center;
  padding: 18px;
}

.vcr-pdf-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: rgba(2, 10, 14, .88);
  cursor: zoom-out;
}

.vcr-pdf-dialog {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  width: min(1120px, 100%);
  max-height: calc(100vh - 36px);
  overflow: hidden;
  border-top: 4px solid #33c5dc;
  color: #132128;
  background: #fff;
  box-shadow: 0 36px 120px rgba(0, 0, 0, .55);
}

.vcr-pdf-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  padding: 20px 24px 18px;
  border-bottom: 1px solid #dde1e3;
}

.vcr-pdf-header h2 {
  margin: 6px 0 0;
  font-size: clamp(22px, 2.5vw, 34px);
  line-height: 1.08;
  letter-spacing: -.025em;
}

.vcr-pdf-close {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid #cfd5d7;
  color: #132128;
  background: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.vcr-pdf-close:hover,
.vcr-pdf-close:focus-visible {
  border-color: #168da0;
  color: #087789;
  outline: 3px solid rgba(51, 197, 220, .18);
}

.vcr-pdf-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 360px;
  overflow: auto;
  padding: 16px;
  background:
    linear-gradient(45deg, #17252b 25%, transparent 25%) 0 0 / 22px 22px,
    linear-gradient(-45deg, #17252b 25%, transparent 25%) 0 11px / 22px 22px,
    linear-gradient(45deg, transparent 75%, #17252b 75%) 11px -11px / 22px 22px,
    linear-gradient(-45deg, transparent 75%, #17252b 75%) -11px 0 / 22px 22px,
    #122027;
}

.vcr-pdf-stage canvas {
  display: block;
  max-width: 100%;
  height: auto;
  background: #fff;
  box-shadow: 0 16px 48px rgba(0, 0, 0, .42);
}

.vcr-pdf-stage canvas[hidden] { display: none; }

.vcr-pdf-loading,
.vcr-pdf-error {
  display: grid;
  justify-items: center;
  gap: 12px;
  max-width: 520px;
  padding: 24px;
  color: #fff;
  text-align: center;
}

.vcr-pdf-loading[hidden],
.vcr-pdf-error[hidden] { display: none; }

.vcr-pdf-loading i {
  width: 38px;
  height: 38px;
  border: 3px solid rgba(255, 255, 255, .25);
  border-top-color: #33c5dc;
  border-radius: 50%;
  animation: vcr-pdf-spin .8s linear infinite;
}

.vcr-pdf-error span { color: rgba(255, 255, 255, .7); }

.vcr-pdf-controls {
  display: grid;
  grid-template-columns: auto auto auto 1fr;
  gap: 12px;
  align-items: center;
  padding: 14px 20px;
  border-top: 1px solid #dde1e3;
  background: #f8f6f1;
}

.vcr-pdf-controls button,
.vcr-pdf-controls a {
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid #bac3c7;
  color: #132128;
  background: #fff;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.vcr-pdf-controls button:disabled {
  opacity: .38;
  cursor: not-allowed;
}

.vcr-pdf-controls a {
  justify-self: end;
  border-color: #168da0;
  color: #087789;
}

.vcr-pdf-page-count {
  min-width: 60px;
  text-align: center;
}

@keyframes vcr-pdf-spin { to { transform: rotate(360deg); } }

@media (max-width: 860px) {
  .vcr-page::before { height: 820px; }
  .vcr-confirmation-page::before { height: 300px; }
  .vcr-hero { grid-template-columns: 1fr; align-items: start; }
  .vcr-phone-grid { grid-template-columns: 1fr; }
  .vcr-pdf-dialog { max-height: calc(100vh - 20px); }
  .vcr-pdf-modal { padding: 10px; }
  .vcr-pdf-header { padding: 15px 16px 13px; }
  .vcr-pdf-stage { min-height: 300px; padding: 10px; }
  .vcr-pdf-controls { grid-template-columns: 1fr auto 1fr; padding: 10px; }
  .vcr-pdf-controls button { padding-inline: 8px; }
  .vcr-pdf-controls a { grid-column: 1 / -1; justify-self: stretch; text-align: center; }
}

@media (max-width: 520px) {
  .vcr-page { padding-inline: 14px; }
  .vcr-card,
  .vcr-confirm-card { padding: 24px 18px 30px; }
  .vcr-hero h1 { font-size: 42px; }
  .vcr-form .auth-submit { width: 100%; min-width: 0; }
  .vcr-pdf-controls button { font-size: 0; }
  .vcr-pdf-controls button span { font-size: 18px; }
  .vcr-pdf-header .eyebrow { display: none; }
  .vcr-pdf-header h2 { margin-top: 7px; font-size: 21px; }
}

@media (prefers-reduced-motion: reduce) {
  .vcr-pdf-loading i { animation-duration: 1.8s; }
}
