:root {
  --bg: #0a1530;
  --bg-2: #0d1a3a;
  --card: rgba(255, 255, 255, 0.025);
  --card-border: rgba(255, 255, 255, 0.07);
  --input-bg: rgba(255, 255, 255, 0.04);
  --input-border: rgba(255, 255, 255, 0.12);
  --accent: #f5a623;
  --accent-2: #ffb938;
  --accent-glow: rgba(245, 166, 35, 0.35);
  --text: #ffffff;
  --text-muted: #b8c2d9;
  --text-soft: #8a96b3;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

html, body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  background:
    radial-gradient(ellipse at top right, rgba(245, 166, 35, 0.08), transparent 50%),
    radial-gradient(ellipse at bottom left, rgba(245, 166, 35, 0.04), transparent 50%),
    var(--bg);
  min-height: 100vh;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ==== HEADER ==== */
header { padding: 28px 0 0; }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand-logo { width: 42px; height: 42px; flex-shrink: 0; }

.brand-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.08em;
  color: #fff;
}

.nav-links { display: flex; align-items: center; gap: 38px; list-style: none; }

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  transition: color 0.2s;
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
  padding: 0;
}

.nav-links a:hover,
.nav-links a.active { color: var(--accent); }

/* ==== BUTTONS ==== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.1em;
  padding: 14px 28px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
}
.btn-outline:hover { background: rgba(245, 166, 35, 0.12); }

.btn-solid {
  background: var(--accent);
  color: #0a1530;
}
.btn-solid:hover {
  background: var(--accent-2);
  box-shadow: 0 0 30px var(--accent-glow);
}

.btn-block { width: 100%; }
.btn-lg { padding: 17px 32px; font-size: 14px; }

.nav .btn { padding: 11px 22px; }

/* ==== HERO ==== */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 32px;
  padding: 64px 0 56px;
}

.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 72px;
  line-height: 0.95;
  letter-spacing: -0.01em;
  margin-bottom: 22px;
}
.hero-title .accent { color: var(--accent); display: block; }

.hero-tagline {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 18px;
  color: #fff;
  max-width: 440px;
}

.hero-desc {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 360px;
  margin-bottom: 32px;
}

.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-art {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-art svg {
  width: 100%;
  max-width: 380px;
  height: auto;
  filter: drop-shadow(0 0 60px rgba(245, 166, 35, 0.3));
}

.hero-art::after {
  content: "";
  position: absolute;
  bottom: 4%;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 24px;
  background: radial-gradient(ellipse, rgba(245, 166, 35, 0.55), transparent 70%);
  filter: blur(8px);
  pointer-events: none;
}

/* ==== FEATURES ROW ==== */
.features {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  padding: 32px 0 56px;
}

.feature { display: flex; align-items: center; gap: 12px; }

.feature-icon { flex-shrink: 0; width: 36px; height: 36px; color: var(--accent); }

.feature-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.3;
  color: #d8dff0;
}

/* ==== CARD ==== */
.card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 36px;
}

/* ==== STUFF WE DO ==== */
.stuff {
  display: grid;
  grid-template-columns: auto 1fr auto 1.4fr;
  gap: 32px;
  align-items: center;
  margin-bottom: 80px;
}

.stuff-icon-wrap {
  position: relative;
  width: 140px;
  height: 140px;
  flex-shrink: 0;
}

.stuff-icon-wrap svg.ring {
  position: absolute; inset: 0; width: 100%; height: 100%;
  filter: drop-shadow(0 0 18px rgba(245, 166, 35, 0.55));
}

.stuff-icon-wrap svg.rocket {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 62px; height: 62px;
  color: var(--accent);
}

.stuff-text h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 30px;
  line-height: 1;
  color: #fff;
  margin-bottom: 4px;
  letter-spacing: -0.005em;
}

.stuff-text h2 .accent { color: var(--accent); display: block; }

.stuff-text p {
  font-size: 14px; color: var(--text-muted);
  line-height: 1.6; margin-top: 14px; max-width: 280px;
}

.stuff-divider {
  width: 1px; align-self: stretch;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.12), transparent);
}

.stuff-lists {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 32px;
  align-items: start;
}

.stuff-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: #d8dff0;
}

.check { flex-shrink: 0; width: 18px; height: 18px; color: var(--accent); }

/* ==== SECTION INTRO (centered eyebrow + heading + subtitle) ==== */
.section-intro { text-align: center; margin-bottom: 32px; }

.eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.32em; color: var(--accent);
  margin-bottom: 16px;
}

.section-intro h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800; font-size: 34px;
  line-height: 1.2; color: #fff;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.section-intro p {
  color: var(--text-muted); font-size: 15px;
  line-height: 1.6; max-width: 560px; margin: 0 auto;
}

/* ==== BUSINESS CAMPUS ==== */
.campus {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px; align-items: center;
  margin-bottom: 32px; padding: 28px;
}

.campus-img {
  width: 100%; height: 320px;
  object-fit: cover; border-radius: 8px; display: block;
}

.campus-content h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900; font-size: 22px;
  color: var(--accent); letter-spacing: 0.04em;
  margin-bottom: 14px;
}

.campus-content > p { color: #d8dff0; font-size: 15px; line-height: 1.55; margin-bottom: 6px; }
.campus-content > p.muted { color: var(--text-muted); margin-bottom: 20px; }

.campus-list {
  list-style: none;
  display: flex; flex-direction: column;
  gap: 16px; margin-bottom: 20px;
}

.campus-list li {
  display: grid; grid-template-columns: 22px 1fr;
  gap: 12px; align-items: start;
}

.campus-list .check { width: 18px; height: 18px; margin-top: 3px; }

.campus-list strong { display: block; font-weight: 600; color: #fff; font-size: 14px; margin-bottom: 3px; }
.campus-list span { color: var(--text-muted); font-size: 13px; line-height: 1.5; }

.campus-content .closing { color: #fff; font-weight: 600; font-size: 15px; margin-top: 4px; }

/* ==== BOTTOM CTA ==== */
.cta {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 28px; align-items: center;
  padding: 26px 36px; margin-bottom: 36px;
}

.cta-icon { width: 64px; height: 64px; color: var(--accent); flex-shrink: 0; }

.cta-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800; font-size: 22px;
  line-height: 1.2; color: #fff;
}
.cta-title .accent { color: var(--accent); display: block; }

.cta-sub { color: var(--text-muted); font-size: 14px; line-height: 1.5; max-width: 220px; }

/* ==== FOOTER ==== */
footer { text-align: center; padding: 20px 0 40px; }

.footer-tag {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px; font-weight: 700;
  letter-spacing: 0.32em; color: var(--accent);
}
.footer-tag .last { color: #fff; }

/* ==== TOAST NOTIFICATION ==== */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--accent);
  color: #0a1530;
  padding: 14px 24px;
  border-radius: 6px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.05em;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4), 0 0 30px var(--accent-glow);
  opacity: 0;
  transition: all 0.35s ease;
  z-index: 100;
  pointer-events: none;
}
.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* ====================================================== */
/* ==== PAGE HERO (smaller hero for non-home pages) ==== */
/* ====================================================== */
.page-hero {
  padding: 56px 0 40px;
  text-align: center;
}

.page-hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 56px;
  line-height: 1;
  letter-spacing: -0.01em;
  color: #fff;
  margin-bottom: 16px;
}

.page-hero h1 .accent { color: var(--accent); }

.page-hero p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto;
}

/* ====================================================== */
/* ==== FORMS (signup & contact) ==== */
/* ====================================================== */
.form-card {
  max-width: 720px;
  margin: 0 auto 48px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}

.form-field {
  display: flex;
  flex-direction: column;
  margin-bottom: 18px;
}

.form-field label {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.form-field input,
.form-field textarea,
.form-field select {
  background: var(--input-bg);
  border: 1px solid var(--input-border);
  border-radius: 6px;
  padding: 14px 16px;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  transition: all 0.2s;
  outline: none;
  width: 100%;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--text-soft);
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.12);
}

.form-field textarea {
  min-height: 140px;
  resize: vertical;
  font-family: 'Inter', sans-serif;
}

.form-actions {
  margin-top: 28px;
  display: flex;
  justify-content: center;
}

.form-note {
  text-align: center;
  margin-top: 18px;
  font-size: 13px;
  color: var(--text-muted);
}

.form-note a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}
.form-note a:hover { text-decoration: underline; }

/* ====================================================== */
/* ==== MEMBERSHIP TIERS (signup page) ==== */
/* ====================================================== */
.tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.tier {
  background: var(--card);
  border: 1.5px solid var(--card-border);
  border-radius: 12px;
  padding: 28px 24px;
  cursor: pointer;
  transition: all 0.25s;
  position: relative;
  text-align: left;
}

.tier:hover {
  border-color: rgba(245, 166, 35, 0.4);
  transform: translateY(-2px);
}

.tier.selected {
  border-color: var(--accent);
  background: rgba(245, 166, 35, 0.05);
  box-shadow: 0 0 30px rgba(245, 166, 35, 0.15);
}

.tier-badge {
  position: absolute;
  top: -10px;
  right: 18px;
  background: var(--accent);
  color: #0a1530;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 10px;
  letter-spacing: 0.1em;
  padding: 5px 10px;
  border-radius: 4px;
}

.tier-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: #fff;
  margin-bottom: 6px;
  letter-spacing: 0.04em;
}

.tier-price {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 32px;
  color: var(--accent);
  margin-bottom: 4px;
}

.tier-price small {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
}

.tier-desc {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.5;
}

.tier-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tier-features li {
  font-size: 13px;
  color: #d8dff0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.tier-features .check { width: 14px; height: 14px; }

/* ====================================================== */
/* ==== EVENTS PAGE ==== */
/* ====================================================== */
.events-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.event-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 28px;
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 22px;
  align-items: start;
  transition: all 0.25s;
}

.event-card:hover {
  border-color: rgba(245, 166, 35, 0.4);
  transform: translateY(-2px);
}

.event-date {
  background: rgba(245, 166, 35, 0.1);
  border: 1px solid rgba(245, 166, 35, 0.35);
  border-radius: 8px;
  padding: 14px 8px;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
}

.event-date .day {
  display: block;
  font-size: 32px;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}

.event-date .month {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.16em;
  margin-top: 4px;
}

.event-content h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.25;
}

.event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 12px;
  font-size: 12px;
  color: var(--text-muted);
}

.event-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.event-meta-item svg {
  width: 14px;
  height: 14px;
  color: var(--accent);
}

.event-content p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 14px;
}

.event-rsvp {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  text-decoration: none;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

.event-rsvp:hover { text-decoration: underline; }

.event-rsvp::after { content: " →"; }

/* ====================================================== */
/* ==== CONTACT PAGE ==== */
/* ====================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 48px;
}

.contact-info {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 32px;
}

.contact-info h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 20px;
  color: var(--accent);
  letter-spacing: 0.04em;
  margin-bottom: 22px;
}

.contact-info-item {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  margin-bottom: 22px;
  align-items: start;
}

.contact-info-item:last-child { margin-bottom: 0; }

.contact-info-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(245, 166, 35, 0.1);
  border: 1px solid rgba(245, 166, 35, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.contact-info-icon svg { width: 16px; height: 16px; }

.contact-info-text strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact-info-text span,
.contact-info-text a {
  color: #fff;
  font-size: 14px;
  line-height: 1.5;
  text-decoration: none;
  display: block;
}

.contact-info-text a:hover { color: var(--accent); }

.contact-form {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 32px;
}

.contact-form h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 20px;
  color: var(--accent);
  letter-spacing: 0.04em;
  margin-bottom: 22px;
}

/* ==== RESPONSIVE ==== */
@media (max-width: 920px) {
  .hero { grid-template-columns: 1fr; text-align: center; }
  .hero-buttons { justify-content: center; }
  .hero-tagline, .hero-desc { margin-left: auto; margin-right: auto; }
  .features { grid-template-columns: repeat(2, 1fr); }
  .stuff { grid-template-columns: 1fr; text-align: center; }
  .stuff-icon-wrap { margin: 0 auto; }
  .stuff-divider { display: none; }
  .stuff-text p { margin: 14px auto 0; }
  .campus { grid-template-columns: 1fr; }
  .cta { grid-template-columns: 1fr; text-align: center; }
  .cta-icon { margin: 0 auto; }
  .cta-sub { max-width: none; }
  .nav-links { display: none; }
  .page-hero h1 { font-size: 44px; }
  .tiers { grid-template-columns: 1fr; }
  .events-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .hero-title { font-size: 48px; }
  .features { grid-template-columns: 1fr; }
  .stuff-lists { grid-template-columns: 1fr; }
  .page-hero h1 { font-size: 36px; }
  .event-card { grid-template-columns: 70px 1fr; gap: 16px; padding: 22px; }
}
