*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Readex Pro', sans-serif;
  background-color: #0e0c0c;
  color: #FFFFFF;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.header {
  width: 100%;
  padding: 2rem 1rem;
  display: flex;
  justify-content: center;
}
.header-logo {
  height: 60px;
  cursor: pointer;
}
.footer {
  width: 100%;
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: auto;
  font-size: 13px;
  color: #C4C4C4;
}
.footer-links {
  display: flex;
  gap: 1rem;
}
.footer-links a {
  color: #D18962;
  text-decoration: none;
}
.footer-links a:hover {
  text-decoration: underline;
}

.content-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 1rem 1rem 4rem;
  width: 100%;
}

.reg, .conf {
  width: 100%;
  max-width: 860px;
  background: #161313;
  border-radius: 12px;
  overflow: hidden;
  border: 0.5px solid #312F2F;
}

/* HERO section (shared) */
.hero, .conf-hero {
  background-color: #161313;
  padding: 4.5rem 3rem 3.5rem;
  position: relative;
  border-bottom: 1px solid #312F2F;
  overflow: hidden;
}
.hero {
  background-image: linear-gradient(rgba(22, 19, 19, 0.8), rgba(22, 19, 19, 0.95)), url('assets/ai-spa-business-background-1.jpg');
  background-size: cover;
  background-position: center;
}
.conf-hero {
  background-image: linear-gradient(rgba(22, 19, 19, 0.85), rgba(22, 19, 19, 0.95)), url('assets/ai-spa-business-background-1.jpg');
  background-size: cover;
  background-position: center;
  text-align: center;
}
.hero::before, .conf-hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: rgba(209,137,98,0.07);
  pointer-events: none;
}
.hero::after, .conf-hero::after {
  content: '';
  position: absolute;
  bottom: -50px; left: -50px;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: rgba(209,137,98,0.05);
  pointer-events: none;
}
.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(209,137,98,0.15);
  border: 0.5px solid rgba(209,137,98,0.4);
  color: #D18962;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 1.25rem;
}
.live-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #D18962;
}
.hero h1, .conf-hero h1 {
  font-family: 'Readex Pro', sans-serif;
  font-weight: 600;
  color: #FFFFFF;
  line-height: 1.35;
}
.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}
.conf-hero h1 {
  font-size: 1.75rem;
  margin-bottom: 0.65rem;
}
.hero-sub, .conf-sub {
  font-size: 16px;
  color: #C4C4C4;
  line-height: 1.7;
}
.hero-sub {
  margin-bottom: 3.5rem;
  max-width: 640px;
}
.conf-sub {
  margin: 0 auto;
  max-width: 500px;
}

/* HOSTS */
.hosts {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.host-card {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #312F2F;
  border: 0.5px solid #3d3b3b;
  border-radius: 8px;
  padding: 10px 14px;
  flex: 1;
  min-width: 200px;
}
.avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background-color: #D18962;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 13px;
  color: #161313;
  flex-shrink: 0;
}
.host-name { font-size: 14px; font-weight: 500; color: #FFFFFF; margin-bottom: 2px; }
.host-title { font-size: 12px; color: #C4C4C4; }

/* META */
.event-meta, .event-bar {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.event-meta {
  margin-bottom: 3rem;
}
.event-bar {
  justify-content: center;
  margin-top: 1.75rem;
  padding-top: 1.75rem;
  border-top: 0.5px solid #312F2F;
}
.meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #C4C4C4;
}

/* CTA */
.cta-btn {
  display: block;
  background: #D18962;
  color: #161313;
  font-family: 'Readex Pro', sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-align: center;
  padding: 14px 2rem;
  border-radius: 8px;
  cursor: pointer;
  border: none;
  width: 100%;
  text-decoration: none;
  transition: background 0.15s;
}
.cta-btn:hover:not(:disabled) { background: #bb7550; }
.cta-btn:disabled { opacity: 0.7; cursor: not-allowed; }
.recording-note {
  font-size: 13px;
  color: #C4C4C4;
  text-align: center;
  margin-top: 2rem;
}

/* FORMS */
.form-group {
  margin-bottom: 1.25rem;
}
.form-group label {
  display: block;
  font-size: 14px;
  color: #C4C4C4;
  margin-bottom: 8px;
  font-weight: 500;
}
.form-control {
  width: 100%;
  background: #161313;
  border: 1px solid #312F2F;
  border-radius: 6px;
  padding: 12px 14px;
  font-family: 'Readex Pro', sans-serif;
  font-size: 14px;
  color: #FFFFFF;
  outline: none;
  transition: border-color 0.2s;
}
.form-control:focus {
  border-color: #D18962;
}
.form-control::placeholder {
  color: #555;
}
.form-row {
  display: flex;
  gap: 1.25rem;
}
.form-row .form-group {
  flex: 1;
}
.form-error {
  color: #ff6b6b;
  font-size: 13px;
  margin-top: 6px;
  display: none;
}
.form-message {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 6px;
  font-size: 14px;
  display: none;
}
.form-message.error {
  background: rgba(255, 107, 107, 0.1);
  border: 1px solid rgba(255, 107, 107, 0.3);
  color: #ff6b6b;
}

/* BODY Section */
.body {
  padding: 3.5rem 3rem;
  background: #1D1C1C;
}
.section-title {
  font-family: 'Readex Pro', sans-serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 1.75rem;
}
.section-intro {
  font-size: 16px;
  color: #C4C4C4;
  line-height: 1.75;
  margin-bottom: 3.5rem;
}

/* QUESTIONS GRID */
.questions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 3rem;
}
.q-card {
  background: #312F2F;
  border: 0.5px solid #3d3b3b;
  border-radius: 8px;
  padding: 1.5rem;
}
.q-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #D18962;
  margin-bottom: 10px;
}
.q-text {
  font-size: 14px;
  color: #C4C4C4;
  line-height: 1.6;
}

/* DEMO NOTE */
.divider {
  border: none;
  border-top: 0.5px solid #312F2F;
  margin: 3.5rem 0;
}
.demo-note, .recording-sidebar {
  background: #312F2F;
  border-left: 3px solid #D18962;
  border-radius: 0 8px 8px 0;
  padding: 1.5rem;
  font-size: 15px;
  color: #C4C4C4;
  line-height: 1.7;
}
.demo-note { margin-bottom: 3.5rem; }
.recording-sidebar { margin-top: 3.5rem; }
.recording-sidebar strong { color: #D18962; font-weight: 500; }

/* BIOS */
.bios {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 3.5rem;
}
.bio-card {
  background: #312F2F;
  border: 0.5px solid #3d3b3b;
  border-radius: 8px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.bio-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  margin-bottom: 1.5rem;
}
.bio-avatar {
  width: 160px; height: 160px;
  border-radius: 50%;
  background-color: #D18962;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 500;
  color: #161313;
  flex-shrink: 0;
}
.bio-name { font-size: 18px; font-weight: 500; color: #FFFFFF; margin-bottom: 4px; }
.bio-co { font-size: 14px; color: #D18962; }
.bio-text { font-size: 14px; color: #C4C4C4; line-height: 1.65; }

/* BOTTOM CTA / REG FORM BLOCK */
.bottom-cta {
  background: #312F2F;
  padding: 3.5rem 2.5rem;
  border-radius: 8px;
  border: 0.5px solid #3d3b3b;
}

/* CONFIRMATION SPECIFIC */
.check-circle {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(209,137,98,0.15);
  border: 1.5px solid rgba(209,137,98,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}
.section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #D18962;
  margin-bottom: 0.75rem;
}
/* AGENDA */
.agenda-items { display: flex; flex-direction: column; }
.agenda-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 0.5px solid #312F2F;
}
.agenda-item:last-child { border-bottom: none; }
.agenda-num {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(209,137,98,0.15);
  border: 0.5px solid rgba(209,137,98,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 500;
  color: #D18962;
  flex-shrink: 0;
  margin-top: 1px;
}
.agenda-title {
  font-size: 14px;
  font-weight: 500;
  color: #FFFFFF;
  margin: 0 0 6px;
}
.agenda-desc {
  font-size: 14px;
  color: #C4C4C4;
  line-height: 1.6;
  margin: 0;
}
/* SHARE */
.share-box {
  background: #312F2F;
  border: 0.5px solid #3d3b3b;
  border-radius: 8px;
  padding: 1.25rem;
}
.share-intro {
  font-size: 14px;
  color: #C4C4C4;
  line-height: 1.6;
  margin: 0 0 1rem;
}
.share-link-row {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 0.5rem;
}
.share-link-input {
  flex: 1;
  background: #161313;
  border: 0.5px solid #3d3b3b;
  border-radius: 6px;
  padding: 9px 12px;
  font-family: 'Readex Pro', sans-serif;
  font-size: 13px;
  color: #C4C4C4;
  outline: none;
}
.copy-btn {
  background: #D18962;
  color: #161313;
  font-family: 'Readex Pro', sans-serif;
  font-size: 13px;
  font-weight: 500;
  border: none;
  border-radius: 6px;
  padding: 9px 16px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s;
}
.copy-btn:hover { background: #bb7550; }
.copy-confirm {
  font-size: 12px;
  color: #D18962;
  min-height: 16px;
  margin: 0 0 1rem;
  display: none;
}
.share-buttons { display: flex; gap: 8px; flex-wrap: wrap; }
.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #161313;
  border: 0.5px solid #3d3b3b;
  color: #C4C4C4;
  font-family: 'Readex Pro', sans-serif;
  font-size: 13px;
  padding: 8px 14px;
  border-radius: 6px;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s;
}
.share-btn:hover { border-color: #D18962; color: #FFFFFF; }
/* CONTACT */
.contact-card {
  background: #312F2F;
  border: 0.5px solid #3d3b3b;
  border-radius: 8px;
  padding: 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(209,137,98,0.15);
  border: 0.5px solid rgba(209,137,98,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-title {
  font-size: 14px;
  font-weight: 500;
  color: #FFFFFF;
  margin: 0 0 4px;
}
.contact-text {
  font-size: 13px;
  color: #C4C4C4;
  line-height: 1.55;
  margin: 0;
}
.contact-text a { color: #D18962; text-decoration: none; }
.contact-text a:hover { text-decoration: underline; }

/* RESPONSIVE */
@media (max-width: 520px) {
  .hero, .conf-hero, .body { padding: 2rem 1.5rem; }
  .hero h1 { font-size: 1.6rem; }
  .conf-hero h1 { font-size: 1.45rem; }
  .questions-grid, .bios { grid-template-columns: 1fr; }
  .hosts { flex-direction: column; }
  .event-bar { gap: 1rem; }
  .share-link-row { flex-direction: column; align-items: stretch; }
  .form-row { flex-direction: column; gap: 0; }
}
