body.home {
  background: var(--navy);
  color: var(--white);
}

/* ── HERO ── */

.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #071428 0%, #0d2a5e 45%, #1565c0 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 120px 24px 80px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10zM10 10c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10S0 25.523 0 20s4.477-10 10-10z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
/* Glowing orbs */
.hero::after {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(41,182,246,0.15) 0%, transparent 70%);
  top: -100px; right: -100px;
  border-radius: 50%;
  animation: pulse 6s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{transform:scale(1);opacity:.8} 50%{transform:scale(1.1);opacity:1} }

.orb2 {
  position: absolute; width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,193,7,0.1) 0%, transparent 70%);
  bottom: -80px; left: -80px; border-radius: 50%;
  animation: pulse 8s ease-in-out infinite reverse;
}

.hero-badge {
  display: inline-block;
  background: rgba(255,193,7,.15); border: 1px solid var(--gold);
  color: var(--gold); font-size: .75rem; font-weight: 700; letter-spacing: 3px;
  padding: 6px 20px; border-radius: 20px; text-transform: uppercase;
  margin-bottom: 20px;
  animation: fadeUp .8s ease both;
}
.hero-org {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 6vw, 4rem);
  color: var(--sky); letter-spacing: 6px;
  animation: fadeUp .9s ease both;
}
.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 12vw, 8rem);
  line-height: .95;
  background: linear-gradient(135deg, var(--white) 30%, var(--sky) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  margin: 8px 0;
  animation: fadeUp 1s ease both;
}
.hero-title span { color: var(--gold); -webkit-text-fill-color: var(--gold); }
.hero-sub {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1rem, 3vw, 1.6rem);
  font-weight: 800; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 10px;
  animation: fadeUp 1.1s ease both;
}
.hero-tagline {
  font-size: 1rem; color: rgba(255,255,255,.7); letter-spacing: 3px;
  text-transform: uppercase; margin-bottom: 40px;
  animation: fadeUp 1.2s ease both;
}
.hero-info-bar {
  display: flex; flex-wrap: wrap; gap: 24px; justify-content: center;
  margin-bottom: 48px;
  animation: fadeUp 1.3s ease both;
}
.hero-pill {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.2);
  padding: 12px 24px; border-radius: 50px;
  font-size: .9rem; font-weight: 600;
  color: var(--white);
}
.hero-pill .icon { font-size: 1.2rem; }
.hero-pill strong { color: var(--gold); }

.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; animation: fadeUp 1.4s ease both; }
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: var(--navy); font-family: 'Montserrat', sans-serif;
  font-weight: 800; font-size: 1rem; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 16px 40px; border-radius: 6px; text-decoration: none; border: none; cursor: pointer;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 8px 32px rgba(255,193,7,.35);
  display: inline-block;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(255,193,7,.5); }
.btn-secondary {
  background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,.4); font-family: 'Montserrat', sans-serif;
  font-weight: 700; font-size: 1rem; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 16px 40px; border-radius: 6px; text-decoration: none; cursor: pointer;
  transition: border-color .2s, background .2s;
}
.btn-secondary:hover { border-color: var(--sky); background: rgba(41,182,246,.1); }
.btn-exhibitors {
  background: linear-gradient(135deg, var(--sky), var(--blue));
  color: var(--white); font-family: 'Montserrat', sans-serif;
  font-weight: 800; font-size: 1rem; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 16px 40px; border-radius: 6px; text-decoration: none; border: none; cursor: pointer;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 8px 32px rgba(21,101,192,.35);
  display: inline-block;
}
.btn-exhibitors:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(21,101,192,.5); color: var(--white); }

@keyframes fadeUp { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }

/* ── TICKER ── */
.ticker {
  background: var(--gold); color: var(--navy);
  padding: 12px 0; overflow: hidden;
  font-family: 'Montserrat', sans-serif; font-weight: 800;
  font-size: .85rem; letter-spacing: 2px; text-transform: uppercase;
}
.ticker-track {
  display: flex; gap: 60px; white-space: nowrap;
  animation: ticker 25s linear infinite;
}
@keyframes ticker { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.ticker-item { display: flex; align-items: center; gap: 16px; }
.ticker-dot { width: 8px; height: 8px; background: var(--navy); border-radius: 50%; }

/* ── SECTIONS ── */
section { padding: 100px 24px; }

.section-label {
  font-size: .7rem; font-weight: 700; letter-spacing: 5px; text-transform: uppercase;
  color: var(--sky); margin-bottom: 12px;
}
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1; color: var(--white); margin-bottom: 20px;
}
.section-title span { color: var(--gold); }
.section-desc { color: rgba(255,255,255,.65); max-width: 560px; line-height: 1.8; font-size: .95rem; }

.container { max-width: 1200px; margin: 0 auto; }

/* ── WHAT TO EXPECT ── */
.expect { background: linear-gradient(180deg, var(--navy) 0%, #0d2452 100%); }
.expect-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px; margin-top: 56px;
}
.expect-card {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px; padding: 36px 28px;
  transition: transform .3s, border-color .3s, background .3s;
  position: relative; overflow: hidden;
}
.expect-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--sky), var(--gold));
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s;
}
.expect-card:hover { transform: translateY(-6px); border-color: rgba(41,182,246,.4); background: rgba(41,182,246,.06); }
.expect-card:hover::before { transform: scaleX(1); }
.expect-icon { font-size: 2.5rem; margin-bottom: 16px; }
.expect-card h3 { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 1.05rem; color: var(--white); margin-bottom: 10px; }
.expect-card p { color: rgba(255,255,255,.6); font-size: .88rem; line-height: 1.7; }

/* ── EVENT DETAILS ── */
.details { background: #071428; }
.details-wrap {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.detail-list { list-style: none; margin-top: 32px; display: flex; flex-direction: column; gap: 20px; }
.detail-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 20px 24px; border-radius: 10px;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
}
.detail-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.detail-text strong { display: block; color: var(--gold); font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: .8rem; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 4px; }
.detail-text span { color: var(--white); font-size: 1rem; font-weight: 600; }

.highlights-box {
  background: linear-gradient(135deg, rgba(21,101,192,.3), rgba(10,26,58,.8));
  border: 1px solid rgba(41,182,246,.3); border-radius: 16px;
  padding: 40px; position: relative; overflow: hidden;
}
.highlights-box::after {
  content: '';
  position: absolute; top: -40px; right: -40px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(41,182,246,.2) 0%, transparent 70%);
  border-radius: 50%;
}
.highlights-box h3 {
  font-family: 'Bebas Neue', sans-serif; font-size: 2rem; color: var(--sky);
  letter-spacing: 2px; margin-bottom: 24px;
}
.highlight-item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.08);
  font-size: .9rem; font-weight: 600; color: rgba(255,255,255,.85);
}
.highlight-item:last-child { border-bottom: none; }
.highlight-item .chk { color: var(--gold); font-size: 1.1rem; }

.free-badge {
  display: inline-block; background: linear-gradient(135deg, var(--gold), var(--orange));
  color: var(--navy); font-family: 'Montserrat', sans-serif; font-weight: 900;
  font-size: 1.1rem; padding: 10px 28px; border-radius: 4px;
  letter-spacing: 2px; text-transform: uppercase; margin-top: 28px;
  box-shadow: 0 6px 24px rgba(255,193,7,.35);
}

/* ── WHO ATTENDS ── */
.who { background: linear-gradient(180deg, #0d2452 0%, var(--navy) 100%); }
.who-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 20px; margin-top: 56px; }
.who-card {
  text-align: center; padding: 36px 16px;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px; transition: transform .3s, background .3s;
}
.who-card:hover { transform: translateY(-6px); background: rgba(41,182,246,.08); }
.who-card .big { font-size: 2.8rem; margin-bottom: 12px; }
.who-card h4 { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: .85rem; letter-spacing: 1px; color: var(--sky); }

/* ── ANNUAL CONVENTION CTA ── */
.convention {
  background: linear-gradient(135deg, #071428, #0a2a6e);
  border-top: 3px solid var(--gold); border-bottom: 3px solid var(--gold);
  text-align: center; padding: 80px 24px;
}
.convention .section-label { justify-content: center; }
.conv-meta { display: flex; flex-wrap: wrap; gap: 24px; justify-content: center; margin: 32px 0; }
.conv-chip {
  background: rgba(255,193,7,.12); border: 1px solid var(--gold);
  color: var(--gold); padding: 10px 24px; border-radius: 50px;
  font-weight: 700; font-size: .85rem; letter-spacing: 1px;
}
.conv-desc { color: rgba(255,255,255,.7); max-width: 600px; margin: 0 auto 40px; line-height: 1.8; }

/* ── REGISTER ── */
.register {
  background: linear-gradient(135deg, var(--blue), #0a1a3a);
  text-align: center;
}
.register-box {
  max-width: 640px; margin: 0 auto;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.15);
  border-radius: 20px; padding: 56px 40px;
}
.register-box .section-title { margin-bottom: 12px; }
.register-box p { color: rgba(255,255,255,.6); margin-bottom: 32px; line-height: 1.8; }
.register-note {
  margin-top: 20px; font-size: .8rem; color: rgba(255,255,255,.4);
  letter-spacing: 1px;
}
.url-link { color: var(--sky); font-weight: 700; }

/* ── FLIPBOOK ── */
.flipbook-section {
  background: linear-gradient(180deg, #071428 0%, #0a1a3a 100%);
  padding: 100px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.flipbook-section::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,193,7,0.07) 0%, transparent 70%);
  top: -100px; left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  pointer-events: none;
}
.flipbook-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,193,7,.12); border: 1px solid var(--gold);
  color: var(--gold); font-size: .75rem; font-weight: 700; letter-spacing: 3px;
  padding: 6px 20px; border-radius: 20px; text-transform: uppercase;
  margin-bottom: 20px;
}
.flipbook-badge .flip-icon {
  font-size: 1rem;
  display: inline-block;
  animation: flipAnim 2s ease-in-out infinite;
}
@keyframes flipAnim {
  0%, 100% { transform: rotateY(0deg); }
  50% { transform: rotateY(180deg); }
}
.flipbook-frame-wrap {
  position: relative;
  max-width: 960px;
  margin: 48px auto 36px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255,193,7,0.25),
    0 20px 60px rgba(0,0,0,0.6),
    0 0 80px rgba(41,182,246,0.08);
  background: #040d1e;
}
.flipbook-frame-wrap iframe {
  display: block;
  width: 100%;
  height: 540px;
  border: none;
}
.flipbook-frame-bar {
  background: rgba(255,193,7,.08);
  border-top: 1px solid rgba(255,193,7,.2);
  padding: 12px 20px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 10px;
}
.flipbook-frame-bar span {
  color: rgba(255,255,255,.5); font-size: .78rem; letter-spacing: 1px;
}
.flipbook-frame-bar a {
  color: var(--gold); font-size: .78rem; font-weight: 700;
  text-decoration: none; letter-spacing: 1px;
  transition: color .2s;
}
.flipbook-frame-bar a:hover { color: var(--sky); }
.flipbook-cta-row {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  margin-top: 8px;
}
@media (max-width: 768px) {
  .flipbook-frame-wrap iframe { height: 340px; }
}

/* ── WIN PRIZES BUTTON ── */
.btn-win-prizes {
  background: linear-gradient(135deg, #ffc107, #ff6f00);
  color: var(--navy); font-family: 'Montserrat', sans-serif;
  font-weight: 800; font-size: 1rem; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 16px 40px; border-radius: 6px; text-decoration: none; border: none; cursor: pointer;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 8px 32px rgba(255,111,0,.35);
  display: inline-flex; align-items: center; gap: 8px;
  position: relative;
  overflow: hidden;
}
.btn-win-prizes:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(255,111,0,.5);
}

/* Pulse animation for the win button to attract attention */
@keyframes buttonPulse {
  0% { box-shadow: 0 8px 32px rgba(255,111,0,.35); }
  50% { box-shadow: 0 8px 32px rgba(255,111,0,.6), 0 0 0 8px rgba(255,111,0,.2); }
  100% { box-shadow: 0 8px 32px rgba(255,111,0,.35); }
}
.btn-win-pulse {
  animation: buttonPulse 2s infinite;
}

/* ── MODAL POPUP ── */
.modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(4, 13, 30, 0.85);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.modal-container {
  background: linear-gradient(135deg, #0a1a3a 0%, #071428 100%);
  border: 2px solid var(--gold);
  border-radius: 16px;
  width: 90%;
  max-width: 480px;
  padding: 40px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 40px rgba(255, 193, 7, 0.15);
  transform: scale(0.9);
  transition: transform 0.3s ease;
  max-height: 90vh;
  overflow-y: auto;
}
.modal-overlay.open .modal-container {
  transform: scale(1);
}
.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
}
.modal-close:hover {
  color: var(--gold);
  background: rgba(255, 255, 255, 0.05);
}
.modal-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 8px;
  line-height: 1.1;
}
.modal-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin-bottom: 28px;
  line-height: 1.5;
}

/* ── FORM STYLES ── */
.modal-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}
.form-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 1px;
  color: var(--sky);
  text-transform: uppercase;
}
.form-input {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 14px 16px;
  color: var(--white);
  font-family: 'Open Sans', sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.form-input:focus {
  outline: none;
  border-color: var(--sky);
  box-shadow: 0 0 10px rgba(41, 182, 246, 0.2);
}
select.form-input {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
  padding-right: 40px;
  cursor: pointer;
}
select.form-input:invalid {
  color: rgba(255, 255, 255, 0.3);
}
select.form-input option {
  background: #071428;
  color: var(--white);
}
.modal-submit-btn {
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: var(--navy);
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
  margin-top: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.modal-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,193,7,.4);
}
.modal-submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Spinner */
.spinner {
  width: 20px;
  height: 20px;
  border: 3px solid rgba(10, 26, 58, 0.3);
  border-radius: 50%;
  border-top-color: var(--navy);
  animation: spin 1s ease-in-out infinite;
  display: none;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Success & Error containers */
.modal-state {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px 0;
}
.modal-state-icon {
  font-size: 4rem;
  margin-bottom: 20px;
  animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.modal-state-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem;
  color: var(--gold);
  margin-bottom: 12px;
}
.modal-state-desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 24px;
}
@keyframes popIn {
  from { transform: scale(0); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .details-wrap { grid-template-columns: 1fr; gap: 40px; }
  .register-box { padding: 36px 24px; }
  .modal-container { padding: 30px 20px; }
}
