/* ========================================
   NAV
   ======================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--section-pad-x);
  z-index: 100;
  transition: background 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}

.nav--solid {
  background: var(--mall-goth);
  border-bottom-color: rgba(253, 248, 243, 0.1);
}

.nav__logo svg {
  height: 28px;
  width: auto;
  transition: fill 0.4s ease;
}

.nav__logo svg path {
  fill: var(--tighty-whitey);
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: var(--cheeto-fingers);
  color: var(--mall-goth);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  border-radius: 100px;
  border: 2px solid var(--mall-goth);
  box-shadow: 0 0 0 1.5px rgba(255, 167, 72, 0.4);
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.nav__cta:hover {
  background: #FFB86C;
  box-shadow: 0 0 0 2px rgba(255, 167, 72, 0.5);
}

/* ========================================
   HERO
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--mall-goth);
  overflow: hidden;
  padding: var(--nav-height) var(--section-pad-x) 80px;
}

.hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
}

.hero__eyebrow {
  color: var(--cheeto-fingers);
  margin-bottom: 24px;
}

.hero h1 {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__headline-l1 {
  color: var(--tighty-whitey);
  margin-bottom: 4px;
  display: block;
}

.hero__headline-l2 {
  margin-bottom: 28px;
  display: block;
  color: var(--tighty-whitey);
}

.hero__subhead {
  color: var(--gray-4);
  font-size: 18px;
  max-width: 640px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  background: var(--cheeto-fingers);
  color: var(--mall-goth);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 17px;
  border-radius: 100px;
  border: 2px solid var(--mall-goth);
  box-shadow: 0 0 0 1.5px rgba(255, 167, 72, 0.4);
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.hero__cta:hover {
  background: #FFB86C;
  box-shadow: 0 0 0 2px rgba(255, 167, 72, 0.5);
}

.hero__cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding-bottom: 24px;
}

.hero__cta-note {
  color: var(--tighty-whitey);
  font-family: 'Caveat', cursive;
  font-size: 26px;
  font-weight: 400;
  line-height: 1.3;
  text-align: center;
  transform: rotate(-2deg);
  padding: 0 16px;
  margin-top: 4px;
}

/* Hero speaker avatars */
.hero__speakers {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 36px;
}

.hero__speaker {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.hero__speaker-photo {
  width: 88px;
  height: 88px;
  border-radius: 100%;
  border: 1px solid var(--cheeto-fingers);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-11);
}

.hero__speaker-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__speaker-name {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  color: var(--tighty-whitey);
  opacity: 0.9;
}

.hero__speaker-title {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11px;
  color: var(--tighty-whitey);
  opacity: 0.5;
}

.hero__speaker-logo {
  height: 16px;
  display: flex;
  align-items: center;
  margin-top: 2px;
}

.hero__speaker-company {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  color: var(--cheeto-fingers);
  line-height: 1;
}

/* ========================================
   PROBLEM
   ======================================== */
.problem {
  background: var(--tighty-whitey);
  padding: var(--section-pad-y) 0;
}

.problem__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--section-pad-x);
}

.problem__eyebrow {
  color: var(--cheeto-fingers);
  margin-bottom: 20px;
}

.problem__headline {
  max-width: 800px;
  margin-bottom: 56px;
}

.problem__statements {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.problem__statement {
  padding: 40px 32px 32px;
  border: 1px solid var(--mall-goth);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.problem__statement-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
  color: var(--mall-goth);
}

.problem__statement-body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.7;
  color: var(--mall-goth);
  opacity: 0.85;
}

.problem__icon {
  position: absolute;
  top: -28px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 100%;
  background: var(--lemon-snow);
  display: flex;
  align-items: center;
  justify-content: center;
}

.problem__icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

/* ========================================
   SPEAKERS
   ======================================== */
.speakers {
  background: var(--mall-goth);
  padding: var(--section-pad-y) 0;
}

.speakers__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--section-pad-x);
  text-align: center;
}

.speakers__eyebrow {
  color: var(--cheeto-fingers);
  margin-bottom: 20px;
}

.speakers__headline {
  color: var(--tighty-whitey);
  margin-bottom: 56px;
}

.speakers__grid {
  display: flex;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
}

.speaker-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  opacity: 0;
  transform: scale(0.8);
}

.speaker-card__photo {
  width: 200px;
  height: 200px;
  border-radius: 100%;
  border: 1px solid var(--cheeto-fingers);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-11);
}

.speaker-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Placeholder initials when no image */
.speaker-card__initials {
  font-family: var(--font-heading);
  font-size: 64px;
  color: var(--tighty-whitey);
  text-transform: uppercase;
  line-height: 1;
  opacity: 0.6;
}

.speaker-card__name {
  font-family: var(--font-heading);
  font-size: 32px;
  color: var(--tighty-whitey);
  text-transform: uppercase;
  line-height: 1;
}

.speaker-card__title {
  font-size: 16px;
  color: var(--tighty-whitey);
  opacity: 0.7;
  max-width: 200px;
}

/* Logo under speaker name — full speakers section */
.speaker-card__logo {
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 4px;
}

.speaker-card__company {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  color: var(--cheeto-fingers);
  line-height: 1;
}

/* ========================================
   TOPICS (BENTO)
   ======================================== */
.topics {
  background: var(--tighty-whitey);
  padding: var(--section-pad-y) 0;
}

.topics__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--section-pad-x);
}

.topics__eyebrow {
  color: var(--cheeto-fingers);
  margin-bottom: 20px;
}

.topics__headline {
  max-width: 700px;
  margin-bottom: 48px;
}

.bento-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto auto;
  gap: 24px;
}

.bento-card {
  padding: 32px;
  border: 1px solid var(--mall-goth);
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Card 1: large, spans 2 rows on left */
.bento-card--large {
  grid-row: 1 / 3;
}

/* Card 4: full width bottom */
.bento-card--full {
  grid-column: 1 / -1;
}

.bento-card__icon {
  width: 80px;
  height: 80px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bento-card__icon img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.bento-card__icon--lemon { background: var(--lemon-snow); }
.bento-card__icon--facebook { background: var(--facebook-mom); }
.bento-card__icon--panther { background: var(--panther); }
.bento-card__icon--swamp { background: var(--my-swamp); }

.bento-card__title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
  color: var(--mall-goth);
  margin-bottom: 8px;
}

.bento-card__body {
  font-size: 16px;
  line-height: 1.7;
  color: var(--mall-goth);
  opacity: 0.85;
}

/* Large card: vertical layout with more space */
.bento-card--large .bento-card__title {
  font-size: 23px;
}

/* Full-width card: horizontal layout */
.bento-card--full {
  flex-direction: row;
  align-items: center;
  gap: 32px;
}

.bento-card--full .bento-card__content {
  flex: 1;
}

/* ========================================
   REGISTRATION
   ======================================== */
.registration {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

.registration__left {
  background: var(--cheeto-fingers);
  padding: var(--section-pad-y) var(--section-pad-x);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.registration__date-info {
  margin-bottom: 32px;
}

.registration__date-label {
  color: var(--mall-goth);
  margin-bottom: 8px;
}

.registration__date-value {
  font-family: var(--font-heading);
  font-size: 40px;
  text-transform: uppercase;
  color: var(--mall-goth);
  line-height: 1;
}

.registration__time {
  font-size: 16px;
  font-weight: 600;
  color: var(--mall-goth);
  opacity: 0.8;
  margin-top: 8px;
}

#countdown {
  margin-bottom: 32px;
}

.flip-countdown {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.flip-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.flip-display {
  display: flex;
  gap: 4px;
}

.flip-label {
  color: var(--mall-goth);
  opacity: 0.7;
}

.flip-separator {
  font-family: var(--font-heading);
  font-size: 36px;
  color: var(--mall-goth);
  line-height: 72px;
  opacity: 0.4;
  margin: 0 2px;
  align-self: flex-start;
}

.registration__note {
  font-size: 14px;
  color: var(--mall-goth);
  opacity: 0.7;
  margin-bottom: 24px;
}

.registration__setto {
  position: absolute;
  bottom: 0;
  right: 24px;
  width: 110px;
  opacity: 0.92;
  pointer-events: none;
}

.registration__right {
  background: var(--tighty-whitey);
  padding: var(--section-pad-y) var(--section-pad-x);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.registration__form-header {
  margin-bottom: 28px;
}

.registration__form-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  background: var(--cheeto-fingers);
  color: var(--mall-goth);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  border-radius: 100px;
  letter-spacing: 0.03em;
  margin-bottom: 16px;
}

.registration__form-headline {
  font-family: var(--font-heading);
  font-size: 40px;
  text-transform: uppercase;
  line-height: 1;
  color: var(--mall-goth);
  margin-bottom: 12px;
}

.registration__form-sub {
  color: var(--mall-goth);
  opacity: 0.65;
  font-size: 15px;
  line-height: 1.6;
}

.registration__iframe-wrap {
  overflow: hidden;
}

.registration__iframe-wrap iframe {
  width: 100%;
  height: 580px;
  border: none;
  display: block;
}

.registration__placeholder {
  text-align: center;
  padding: 48px 32px;
  color: var(--mall-goth);
  opacity: 0.5;
}

.registration__placeholder-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

/* ========================================
   REGISTRATION DRAWER
   ======================================== */
.reg-overlay {
  position: fixed;
  inset: 0;
  background: rgba(48, 42, 35, 0.65);
  backdrop-filter: blur(4px);
  z-index: 900;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.reg-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}

.reg-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 480px;
  max-width: 100vw;
  background: var(--tighty-whitey);
  border-left: 1px solid var(--mall-goth);
  z-index: 901;
  display: none;
  flex-direction: column;
  overflow: hidden;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.reg-drawer.is-visible {
  display: flex;
}

.reg-drawer.is-open {
  transform: translateX(0);
}

.reg-drawer__header {
  padding: 28px 28px 22px;
  border-bottom: 1px solid var(--mall-goth);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  flex-shrink: 0;
  background: var(--tighty-whitey);
}

.reg-drawer__badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  background: var(--cheeto-fingers);
  color: var(--mall-goth);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 11px;
  border-radius: 100px;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}

.reg-drawer__title {
  font-family: var(--font-heading);
  font-size: 36px;
  text-transform: uppercase;
  color: var(--mall-goth);
  line-height: 1;
  margin-bottom: 6px;
}

.reg-drawer__sub {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--mall-goth);
  opacity: 0.55;
}

.reg-drawer__close {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: none;
  border: 1px solid var(--mall-goth);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mall-goth);
  font-size: 14px;
  line-height: 1;
  transition: background 0.2s, color 0.2s;
  margin-top: 4px;
}

.reg-drawer__close:hover {
  background: var(--mall-goth);
  color: var(--tighty-whitey);
}

.reg-drawer__body {
  flex: 1;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 14px 20px 0;
}

.reg-drawer__body iframe {
  width: 100%;
  flex: 1;
  border: none;
  display: block;
  min-height: 0;
}

body.drawer-open {
  overflow: hidden;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: var(--mall-goth);
  padding: 48px 0;
  border-top: 1px solid rgba(253, 248, 243, 0.1);
}

.footer__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--section-pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.footer__left {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer__logo svg {
  height: 24px;
  width: auto;
}

.footer__logo svg path {
  fill: var(--tighty-whitey);
}

.footer__tagline {
  font-size: 14px;
  color: var(--tighty-whitey);
  opacity: 0.5;
}

.footer__right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer__social-link {
  width: 32px;
  height: 32px;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.footer__social-link:hover {
  opacity: 1;
}

.footer__social-link img {
  width: 100%;
  height: 100%;
}

.footer__copyright {
  font-size: 12px;
  color: var(--tighty-whitey);
  opacity: 0.4;
}
