/* ═══════════════════════════════════════════════════════
   Homepage styles — home decorator only (pre-login)
   ═══════════════════════════════════════════════════════ */

/* Brand colours from the myStage logo gradient */
/* Coral: #f0634a  →  Magenta: #e0197a              */

/* ─── BODY ──────────────────────────────────────── */
body.home-body {
  background: #09090f;
  color: rgba(255,255,255,0.93);
  font-family: 'Raleway', sans-serif;
  padding-bottom: 0;
}

/* ─── NAVBAR ─────────────────────────────────────── */
.navbar-home {
  background: transparent;
  border: none;
  box-shadow: none;
  position: absolute;
  width: 100%;
  z-index: 100;
  -webkit-transition: background 0.3s, border-color 0.3s;
  transition: background 0.3s, border-color 0.3s;
}
.navbar-home.navbar-solid {
  background: #0d0d18;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  position: fixed;
}
.navbar-home .navbar-brand { padding: 16px 0; }
.navbar-home .navbar-toggle { border-color: rgba(255,255,255,0.2); margin-top: 14px; }
.navbar-home .navbar-toggle .icon-bar { background-color: rgba(255,255,255,0.7); }
.navbar-home .navbar-collapse {
  border-top: none;
  box-shadow: none;
}
@media (max-width: 767px) {
  .navbar-home .navbar-collapse.in {
    background: #0d0d18;
    border-top: 1px solid rgba(255,255,255,0.07);
  }
}

.btn-home-ghost {
  background: rgba(255,255,255,0.08) !important;
  border: 1px solid rgba(255,255,255,0.22) !important;
  color: rgba(255,255,255,0.9) !important;
  border-radius: 4px !important;
  font-family: 'Raleway', sans-serif !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  letter-spacing: 0.04em !important;
  -webkit-transition: background 0.2s, border-color 0.2s;
  transition: background 0.2s, border-color 0.2s;
}
.btn-home-ghost:hover,
.btn-home-ghost:focus {
  background: rgba(255,255,255,0.15) !important;
  border-color: rgba(255,255,255,0.4) !important;
  color: #fff !important;
}
.btn-home-brand {
  background: -webkit-linear-gradient(315deg, #f0634a, #e0197a) !important;
  background: linear-gradient(135deg, #f0634a, #e0197a) !important;
  border: none !important;
  color: #fff !important;
  border-radius: 4px !important;
  font-family: 'Raleway', sans-serif !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  letter-spacing: 0.04em !important;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
.btn-home-brand:hover,
.btn-home-brand:focus { opacity: 0.85 !important; color: #fff !important; }

/* ─── HERO ───────────────────────────────────────── */
.home-hero {
  position: relative;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-size: cover;
  background-position: center;
  background-color: #09090f;
  overflow: hidden;
  padding: 80px 2rem 0;
}
.home-hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background:
    radial-gradient(ellipse 50% 40% at 30% 70%, rgba(240,99,74,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 70% 30%, rgba(224,25,122,0.07) 0%, transparent 60%),
    linear-gradient(170deg, rgba(9,9,20,0.85) 0%, rgba(9,9,15,0.78) 100%);
  z-index: 0;
}
.home-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 860px;
  width: 100%;
  padding: 4rem 1rem 5rem;
}
.home-eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
  background: -webkit-linear-gradient(315deg, #f0634a, #e0197a);
  background: linear-gradient(135deg, #f0634a, #e0197a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1rem;
}
.home-eyebrow::before,
.home-eyebrow::after {
  content: '';
  display: block;
  width: 48px;
  height: 1px;
  background: -webkit-linear-gradient(left, #f0634a, #e0197a);
  background: linear-gradient(90deg, #f0634a, #e0197a);
  opacity: 0.5;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.home-hero-title {
  font-family: 'Cinzel', serif;
  font-size: 72px;
  font-weight: 700;
  line-height: 1.1;
  color: rgba(255,255,255,0.93);
  margin-bottom: 1.5rem;
  letter-spacing: 0.03em;
}
.home-accent {
  background: -webkit-linear-gradient(315deg, #f0634a, #e0197a);
  background: linear-gradient(135deg, #f0634a, #e0197a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.home-hero-body {
  font-size: 19px;
  color: rgba(255,255,255,0.5);
  margin: 0 auto 3rem;
  font-weight: 300;
  max-width: 560px;
  line-height: 1.65;
}
.home-hero-ctas {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.btn-home-hero-brand {
  background: -webkit-linear-gradient(315deg, #f0634a, #e0197a);
  background: linear-gradient(135deg, #f0634a, #e0197a);
  color: #fff;
  padding: 16px 36px;
  border-radius: 4px;
  font-family: 'Raleway', sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border: none;
  display: inline-block;
  -webkit-transition: opacity 0.2s, -webkit-box-shadow 0.25s;
  transition: opacity 0.2s, box-shadow 0.25s;
}
.btn-home-hero-brand:hover,
.btn-home-hero-brand:focus {
  opacity: 0.9;
  color: #fff;
  text-decoration: none;
  -webkit-box-shadow: 0 0 36px rgba(224,25,122,0.3);
          box-shadow: 0 0 36px rgba(224,25,122,0.3);
}
.btn-home-hero-outline {
  background: transparent;
  color: rgba(255,255,255,0.93);
  padding: 16px 36px;
  border-radius: 4px;
  font-family: 'Raleway', sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.25);
  display: inline-block;
  -webkit-transition: border-color 0.2s, background 0.2s;
  transition: border-color 0.2s, background 0.2s;
}
.btn-home-hero-outline:hover,
.btn-home-hero-outline:focus {
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.93);
  text-decoration: none;
}
.home-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  color: rgba(255,255,255,0.2);
  z-index: 1;
  -webkit-animation: home-bob 2.2s ease-in-out infinite;
          animation: home-bob 2.2s ease-in-out infinite;
}
@-webkit-keyframes home-bob {
  0%, 100% { -webkit-transform: translateX(-50%) translateY(0); transform: translateX(-50%) translateY(0); }
  50%       { -webkit-transform: translateX(-50%) translateY(8px); transform: translateX(-50%) translateY(8px); }
}
@keyframes home-bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ─── EVENTS SECTION ─────────────────────────────── */
.home-events-section {
  background: #0d0d18;
  padding: 80px 2rem;
  border-top: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.home-container {
  max-width: 1200px;
  margin: 0 auto;
}
.home-section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.home-section-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
  background: -webkit-linear-gradient(315deg, #f0634a, #e0197a);
  background: linear-gradient(135deg, #f0634a, #e0197a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.home-section-title {
  font-family: 'Cinzel', serif;
  font-size: 36px;
  font-weight: 600;
  color: rgba(255,255,255,0.93);
  letter-spacing: 0.06em;
}
.home-events-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 2rem;
}
.home-event-card {
  background: #121220;
  padding: 24px;
  text-decoration: none;
  color: inherit;
  display: block;
  position: relative;
  overflow: hidden;
  -webkit-transition: background 0.18s;
  transition: background 0.18s;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 260px;
          flex: 1 1 260px;
}
.home-event-card:hover {
  background: #181828;
  text-decoration: none;
  color: inherit;
}
.home-event-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
}
.home-event-open::before {
  background: -webkit-linear-gradient(left, #4ade80, transparent 80%);
  background: linear-gradient(90deg, #4ade80, transparent 80%);
}
.home-event-soon::before {
  background: -webkit-linear-gradient(left, #60a5fa, transparent 80%);
  background: linear-gradient(90deg, #60a5fa, transparent 80%);
}
.home-event-badge {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.3rem;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 3px;
  margin-bottom: 12px;
}
.home-badge-open {
  background: rgba(74,222,128,0.1);
  color: #4ade80;
  border: 1px solid rgba(74,222,128,0.2);
}
.home-badge-soon {
  background: rgba(96,165,250,0.1);
  color: #60a5fa;
  border: 1px solid rgba(96,165,250,0.2);
}
.home-event-name {
  font-family: 'Cinzel', serif;
  font-size: 17px;
  font-weight: 600;
  color: rgba(255,255,255,0.93);
  margin-bottom: 5px;
  letter-spacing: 0.02em;
}
.home-event-org {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 12px;
}
.home-event-status {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
}
.home-events-footer { text-align: center; }
.home-link-muted {
  color: rgba(255,255,255,0.5);
  font-size: 15px;
  text-decoration: none;
  letter-spacing: 0.04em;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}
.home-link-muted:hover {
  color: rgba(255,255,255,0.93);
  text-decoration: none;
}

/* ─── AUDIENCE PANELS ────────────────────────────── */
.home-audience {
  padding: 96px 2rem;
  position: relative;
  overflow: hidden;
}
.home-competitor {
  background: #121220;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.home-competitor::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(240,99,74,0.10) 0%, transparent 65%);
  pointer-events: none;
}
.home-organiser {
  background: #0d0d18;
}
.home-organiser::before {
  content: '';
  position: absolute;
  bottom: -120px; left: -120px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(59,143,239,0.09) 0%, transparent 65%);
  pointer-events: none;
}
.home-panel-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 1;
}
.home-panel-inner-flip .home-panel-pitch { -webkit-box-ordinal-group: 3; -ms-flex-order: 2; order: 2; }
.home-panel-inner-flip .home-benefits-grid { -webkit-box-ordinal-group: 2; -ms-flex-order: 1; order: 1; }

.home-panel-pitch {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 320px;
          flex: 1 1 320px;
}
.home-benefits-grid {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 460px;
          flex: 1 1 460px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1.25rem 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.home-panel-icon-wrap {
  width: 68px; height: 68px;
  border-radius: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 26px;
  margin-bottom: 28px;
  background: -webkit-linear-gradient(315deg, rgba(240,99,74,0.18), rgba(224,25,122,0.12));
  background: linear-gradient(135deg, rgba(240,99,74,0.18), rgba(224,25,122,0.12));
  border: 1px solid rgba(240,99,74,0.22);
  color: #f0634a;
}
.home-panel-icon-org {
  background: -webkit-linear-gradient(315deg, rgba(59,143,239,0.16), rgba(108,99,255,0.10));
  background: linear-gradient(135deg, rgba(59,143,239,0.16), rgba(108,99,255,0.10));
  border: 1px solid rgba(59,143,239,0.2);
  color: #3b8fef;
}
.home-panel-tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 14px;
  background: -webkit-linear-gradient(315deg, #f0634a, #e0197a);
  background: linear-gradient(135deg, #f0634a, #e0197a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}
.home-panel-tag-org {
  background: -webkit-linear-gradient(left, #3b8fef, #6c63ff);
  background: linear-gradient(90deg, #3b8fef, #6c63ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.home-panel-heading {
  font-family: 'Cinzel', serif;
  font-size: 52px;
  font-weight: 700;
  color: rgba(255,255,255,0.93);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: 0.03em;
}
.home-panel-body {
  font-size: 17px;
  color: rgba(255,255,255,0.5);
  font-weight: 300;
  margin-bottom: 32px;
  max-width: 420px;
  line-height: 1.65;
}
.btn-home-panel {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  -webkit-transition: opacity 0.2s, -webkit-box-shadow 0.25s;
  transition: opacity 0.2s, box-shadow 0.25s;
}
.btn-home-panel:hover,
.btn-home-panel:focus { text-decoration: none; opacity: 0.85; }
.btn-home-panel-competitor {
  background: -webkit-linear-gradient(315deg, #f0634a, #e0197a);
  background: linear-gradient(135deg, #f0634a, #e0197a);
  color: #fff !important;
}
.btn-home-panel-competitor:hover {
  color: #fff !important;
  -webkit-box-shadow: 0 0 28px rgba(224,25,122,0.3);
          box-shadow: 0 0 28px rgba(224,25,122,0.3);
}
.btn-home-panel-organiser {
  background: -webkit-linear-gradient(315deg, #3b8fef, #6c63ff);
  background: linear-gradient(135deg, #3b8fef, #6c63ff);
  color: #fff !important;
}
.btn-home-panel-organiser:hover {
  color: #fff !important;
  -webkit-box-shadow: 0 0 28px rgba(59,143,239,0.3);
          box-shadow: 0 0 28px rgba(59,143,239,0.3);
}
.btn-home-panel-organiser-outline {
  background: transparent;
  border: 2px solid #3b8fef;
  color: #3b8fef !important;
}
.btn-home-panel-organiser-outline:hover {
  background: rgba(59,143,239,0.1);
  color: #6c63ff !important;
  border-color: #6c63ff;
}
.home-benefit-card {
  background: #181828;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 28px 24px;
  -webkit-transition: border-color 0.2s;
  transition: border-color 0.2s;
}
.home-benefit-card:hover { border-color: rgba(255,255,255,0.15); }
.home-benefit-icon {
  font-size: 20px;
  margin-bottom: 14px;
  color: #f0634a;
}
.home-benefit-icon-org { color: #3b8fef; }
.home-benefit-title {
  font-family: 'Raleway', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: rgba(255,255,255,0.93);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.home-benefit-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  font-weight: 400;
  line-height: 1.55;
  margin: 0;
}

/* ─── CTA BAND ───────────────────────────────────── */
.home-cta-band {
  background: #09090f;
  border-top: 1px solid rgba(255,255,255,0.07);
  text-align: center;
  padding: 88px 2rem;
  position: relative;
  overflow: hidden;
}
.home-cta-band::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 700px; height: 350px;
  background: radial-gradient(ellipse at center, rgba(224,25,122,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.home-cta-heading {
  font-family: 'Cinzel', serif;
  font-size: 42px;
  font-weight: 600;
  color: rgba(255,255,255,0.93);
  margin-bottom: 14px;
  letter-spacing: 0.06em;
  position: relative;
}
.home-cta-body {
  font-size: 18px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 40px;
  position: relative;
  font-weight: 300;
}
.btn-home-cta-outline {
  display: inline-block;
  background: transparent;
  color: rgba(255,255,255,0.93);
  padding: 16px 40px;
  border-radius: 4px;
  font-family: 'Raleway', sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.3);
  -webkit-transition: border-color 0.2s, background 0.2s;
  transition: border-color 0.2s, background 0.2s;
  position: relative;
}
.btn-home-cta-outline:hover,
.btn-home-cta-outline:focus {
  border-color: rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.93);
  text-decoration: none;
}

/* ─── PHOTO CREDIT ───────────────────────────────── */
.home-photo-credit {
  background: #09090f;
  padding: 0 2rem 24px;
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.22);
}
.home-photo-credit a {
  color: rgba(255,255,255,0.32);
  text-decoration: none;
}
.home-photo-credit a:hover { color: rgba(255,255,255,0.6); }

/* ─── FOOTER (dark override) ─────────────────────── */
body.home-body footer {
  background: #09090f;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 1.5rem 2rem;
}
body.home-body footer p,
body.home-body footer a {
  color: rgba(255,255,255,0.32);
}
body.home-body footer a:hover { color: rgba(255,255,255,0.65); }
body.home-body footer img {
  opacity: 0.3;
  -webkit-filter: invert(1);
          filter: invert(1);
}

/* ─── FORM PAGES (signup, contact) ──────────────── */
.home-form-page {
  min-height: 100vh;
  padding: 100px 1.5rem 80px;
  background: #09090f;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.home-form-card {
  width: 100%;
  max-width: 520px;
  background: #121220;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 44px 48px 48px;
}
.home-form-header {
  text-align: center;
  margin-bottom: 36px;
}
.home-form-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-bottom: 10px;
  background: -webkit-linear-gradient(315deg, #f0634a, #e0197a);
  background: linear-gradient(135deg, #f0634a, #e0197a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}
.home-form-title {
  font-family: 'Cinzel', serif;
  font-size: 28px;
  font-weight: 700;
  color: rgba(255,255,255,0.93);
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}
.home-form-subtitle {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  font-weight: 400;
  margin: 0;
  line-height: 1.55;
}
.home-form-subtitle a { color: #f0634a; text-decoration: none; }
.home-form-subtitle a:hover { text-decoration: underline; }
/* Two-column row inside the card */
.home-form-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
}
.home-form-row .form-group {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}
/* Checkbox rows */
.home-form-check {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.home-form-check input[type=checkbox] { margin: 0; -webkit-flex-shrink: 0; -ms-flex-negative: 0; flex-shrink: 0; }
/* Thin divider */
.home-form-divider {
  border-top: 1px solid rgba(255,255,255,0.07);
  margin: 20px 0 20px;
}
/* Full-width submit button */
.home-form-submit { margin-top: 24px; }
.home-form-submit .btn-default { width: 100%; text-align: center; }
/* Sign-in link at bottom */
.home-form-login-link {
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  margin-top: 20px;
  margin-bottom: 0;
}
.home-form-login-link a { color: rgba(255,255,255,0.6); text-decoration: none; }
.home-form-login-link a:hover { color: #fff; }
@media (max-width: 560px) {
  .home-form-card { padding: 32px 24px 36px; }
  .home-form-row { -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; gap: 0; }
}

/* ─── HOSTING PAGE ───────────────────────────────── */

/* Page header band (replaces hero for interior pages) */
.hosting-page-header {
  background: #0d0d18;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 100px 2rem 72px;
}
.hosting-page-title {
  font-family: 'Cinzel', serif;
  font-size: 46px;
  font-weight: 700;
  color: rgba(255,255,255,0.93);
  line-height: 1.15;
  letter-spacing: 0.03em;
  margin-bottom: 18px;
  max-width: 760px;
}
.hosting-page-subtitle {
  font-size: 18px;
  color: rgba(255,255,255,0.48);
  font-weight: 300;
  max-width: 600px;
  line-height: 1.65;
  margin-bottom: 36px;
}
.hosting-page-ctas {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

/* How it works */
.hosting-steps-section {
  background: #121220;
  padding: 80px 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.hosting-steps {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0;
  margin-top: 3rem;
}
.hosting-step {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 180px;
          flex: 1 1 180px;
  text-align: center;
  padding: 0 1.5rem;
}
.hosting-step-num {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: rgba(240,99,74,0.45);
  margin-bottom: 14px;
}
.hosting-step-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 22px;
  color: #f0634a;
  margin: 0 auto 18px;
}
.hosting-step-title {
  font-family: 'Raleway', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}
.hosting-step-body {
  font-size: 13px;
  color: rgba(255,255,255,0.42);
  line-height: 1.65;
  font-weight: 400;
}
.hosting-step-connector {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 26px;
  color: rgba(255,255,255,0.13);
  font-size: 14px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

/* Features grid */
.hosting-features-section {
  background: #09090f;
  padding: 80px 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.hosting-features-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1.5rem 1fr 1.5rem 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.hosting-feature-card {
  background: #121220;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 28px 24px;
  -webkit-transition: border-color 0.2s;
  transition: border-color 0.2s;
}
.hosting-feature-card:hover { border-color: rgba(59,143,239,0.22); }
.hosting-feature-icon {
  font-size: 20px;
  color: #3b8fef;
  margin-bottom: 16px;
}
.hosting-feature-title {
  font-family: 'Raleway', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  margin-bottom: 8px;
}
.hosting-feature-body {
  font-size: 13px;
  color: rgba(255,255,255,0.42);
  line-height: 1.65;
  font-weight: 400;
  margin: 0;
}

/* Pricing section */
.hosting-pricing-section {
  background: #0d0d18;
  padding: 80px 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.hosting-pricing-intro {
  font-size: 17px;
  color: rgba(255,255,255,0.45);
  font-weight: 300;
  max-width: 560px;
  margin: 12px auto 0;
  line-height: 1.6;
}
.hosting-pricing-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 3rem;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.hosting-price-card {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 260px;
          flex: 1 1 260px;
  background: #121220;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 32px 28px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.hosting-price-card-featured {
  border-color: rgba(59,143,239,0.3);
  background: #13182a;
}
.hosting-price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  background: -webkit-linear-gradient(315deg, #3b8fef, #6c63ff);
  background: linear-gradient(135deg, #3b8fef, #6c63ff);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}
.hosting-price-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 12px;
}
.hosting-price-amount {
  font-family: 'Cinzel', serif;
  font-size: 32px;
  font-weight: 700;
  color: rgba(255,255,255,0.93);
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}
.hosting-price-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
  font-weight: 300;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.hosting-price-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.hosting-price-list li {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  padding: 6px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.hosting-price-list li .fa { color: #3b8fef; font-size: 12px; -webkit-flex-shrink: 0; -ms-flex-negative: 0; flex-shrink: 0; }
.hosting-price-cta {
  display: block;
  text-align: center;
  padding: 11px 20px;
  background: -webkit-linear-gradient(315deg, #3b8fef, #6c63ff);
  background: linear-gradient(135deg, #3b8fef, #6c63ff);
  color: #fff;
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  border-radius: 4px;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
.hosting-price-cta:hover { opacity: 0.85; color: #fff; text-decoration: none; }

/* Support section */
.hosting-support-section {
  background: #121220;
  padding: 80px 2rem;
}
.hosting-support-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 4rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.hosting-support-text { -webkit-box-flex: 1; -ms-flex: 1 1 360px; flex: 1 1 360px; }
.hosting-support-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: -webkit-linear-gradient(315deg, #3b8fef, #6c63ff);
  background: linear-gradient(135deg, #3b8fef, #6c63ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
  display: block;
}
.hosting-support-heading {
  font-family: 'Cinzel', serif;
  font-size: 34px;
  font-weight: 600;
  color: rgba(255,255,255,0.93);
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}
.hosting-support-body {
  font-size: 16px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 24px;
}
.hosting-support-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.hosting-support-list li {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  padding: 9px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.hosting-support-list li:last-child { border-bottom: none; }
.hosting-support-list li .fa { color: #3b8fef; font-size: 12px; -webkit-flex-shrink: 0; -ms-flex-negative: 0; flex-shrink: 0; }
.hosting-support-cta-card {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 300px;
          flex: 0 1 300px;
  background: #181828;
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 12px;
  padding: 36px 30px;
  text-align: center;
}
.hosting-support-card-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: -webkit-linear-gradient(315deg, #3b8fef, #6c63ff);
  background: linear-gradient(135deg, #3b8fef, #6c63ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
  display: block;
}
.hosting-support-card-heading {
  font-family: 'Cinzel', serif;
  font-size: 19px;
  font-weight: 600;
  color: rgba(255,255,255,0.93);
  letter-spacing: 0.03em;
  margin-bottom: 10px;
  line-height: 1.35;
}
.hosting-support-card-body {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 24px;
  font-weight: 400;
  line-height: 1.55;
}
.hosting-cta-btn { display: block; text-align: center; }
.hosting-support-card-or {
  font-size: 12px;
  color: rgba(255,255,255,0.18);
  margin: 14px 0 10px;
}
.hosting-support-card-link {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}
.hosting-support-card-link:hover { color: rgba(255,255,255,0.75); text-decoration: none; }

/* Responsive adjustments for hosting + forms */
@media (max-width: 900px) {
  .hosting-page-title { font-size: 36px; }
  .hosting-features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .hosting-page-header { padding: 90px 1.25rem 56px; }
  .hosting-page-title { font-size: 28px; }
  .hosting-page-subtitle { font-size: 15px; }
  .hosting-steps-section,
  .hosting-features-section,
  .hosting-pricing-section,
  .hosting-support-section { padding: 60px 1.25rem; }
  .hosting-step-connector { display: none; }
  .hosting-step { -webkit-box-flex: 1; -ms-flex: 1 1 45%; flex: 1 1 45%; margin-bottom: 2rem; }
  .hosting-features-grid { grid-template-columns: 1fr; }
}
@media (max-width: 440px) {
  .hosting-step { -webkit-box-flex: 1; -ms-flex: 1 1 100%; flex: 1 1 100%; }
}

/* ─── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 1100px) {
  .home-hero-title  { font-size: 56px; }
  .home-panel-heading { font-size: 42px; }
}
@media (max-width: 900px) {
  .home-panel-inner { gap: 3rem; }
  .home-panel-inner-flip .home-panel-pitch { -webkit-box-ordinal-group: 1; -ms-flex-order: 0; order: 0; }
  .home-panel-inner-flip .home-benefits-grid { -webkit-box-ordinal-group: 2; -ms-flex-order: 1; order: 1; }
  .home-hero-title  { font-size: 48px; }
  .home-panel-heading { font-size: 36px; }
  .home-section-title { font-size: 28px; }
}
@media (max-width: 640px) {
  .home-audience  { padding: 64px 1.25rem; }
  .home-events-section { padding: 60px 1.25rem; }
  .home-hero-title    { font-size: 36px; }
  .home-panel-heading { font-size: 30px; }
  .home-hero-body     { font-size: 16px; }
  .home-benefits-grid { grid-template-columns: 1fr; }
  .home-hero-ctas {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .btn-home-hero-brand,
  .btn-home-hero-outline { width: 100%; text-align: center; }
}
