/* ══════════════════════════════════════
   Styles from admin\admin.html
══════════════════════════════════════ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
}

body {
  font-family: var(--font-body, 'Poppins', sans-serif);
  background: #0d0d0d;
  color: #f1f5f9;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

:root {
  --cyan-300: #67e8f9;
  --cyan-400: #22d3ee;
  --violet-300: #c4b5fd;
  --emerald-300: #6ee7b7;
  --rose-200: #fecdd3;
  --rose-300: #fda4af;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --max-w: 80rem;
  --px: 1rem;
  --nav-h: 74px;
}

@media (min-width: 640px) {
  :root {
    --px: 1.5rem;
  }
}

@media (min-width: 1024px) {
  :root {
    --px: 2rem;
  }
}

.bg-overlay {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: -10;
  background:
    radial-gradient(ellipse 70% 45% at 18% 12%, rgba(255, 255, 255, 0.04), transparent),
    radial-gradient(ellipse 55% 40% at 82% 8%, rgba(255, 255, 255, 0.03), transparent),
    linear-gradient(180deg, #0d0d0d, #111111 52%, #0a0a0a);
}

.main-content {
  max-width: var(--max-w);
  margin-inline: auto;
  padding: calc(var(--nav-h) + 3.5rem) var(--px) 5rem;
}

/* ── Page header ── */
.admin-page-header {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 1024px) {
  .admin-page-header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

.header-text {
  max-width: 48rem;
}

.label {
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--cyan-300);
}

.page-title {
  margin-top: 1rem;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
}

.page-subtitle {
  margin-top: 1.25rem;
  font-size: 1.125rem;
  line-height: 2;
  color: var(--slate-300);
}

.btn-view {
  display: block;
  border-radius: 0.75rem;
  background: var(--cyan-400);
  color: #020617;
  font-weight: 900;
  padding: 0.75rem 1.5rem;
  text-align: center;
  white-space: nowrap;
  box-shadow: 0 20px 25px -5px rgba(34, 211, 238, 0.2);
  transition: transform 0.3s ease, background 0.3s ease;
}

.btn-view:hover {
  transform: translateY(-4px);
  background: #fff;
}

/* ── Two-column grid ── */
.admin-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .admin-grid {
    grid-template-columns: 0.95fr 1.05fr;
  }
}

/* ── Panel card ── */
.panel {
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
  padding: 1.5rem;
  backdrop-filter: blur(12px);
}

.panel-title {
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 1.5rem;
}

/* ── Form ── */
.form-fields {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--slate-300);
  margin-bottom: 0.5rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(2, 6, 23, 0.8);
  color: #fff;
  padding: 0.75rem 1rem;
  outline: none;
  font-size: 1rem;
  font-family: var(--font-body, 'Poppins', sans-serif);
  transition: border-color 0.3s ease;
  appearance: none;
  -webkit-appearance: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--slate-500);
}

.form-input:focus,
.form-select:focus {
  border-color: var(--cyan-300);
}

.form-select.violet:focus {
  border-color: var(--violet-300);
}

.form-select.emerald:focus {
  border-color: var(--emerald-300);
}

.form-textarea {
  resize: none;
}

.form-textarea:focus {
  border-color: var(--cyan-300);
}

.btn-save {
  width: 100%;
  border-radius: 0.75rem;
  background: var(--cyan-400);
  color: #020617;
  font-weight: 900;
  padding: 1rem 1.5rem;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-family: var(--font-heading, 'Poppins', sans-serif);
  box-shadow: 0 20px 25px -5px rgba(34, 211, 238, 0.2);
  transition: transform 0.3s ease, background 0.3s ease;
}

.btn-save:hover {
  transform: translateY(-4px);
  background: #fff;
}

/* ── Saved events panel ── */
.panel-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.btn-reset {
  border-radius: 0.75rem;
  border: 1px solid rgba(253, 164, 175, 0.3);
  background: rgba(244, 63, 94, 0.1);
  color: var(--rose-200);
  font-weight: 900;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  cursor: pointer;
  font-family: var(--font-heading, 'Poppins', sans-serif);
  transition: border-color 0.3s ease, background 0.3s ease;
}

.btn-reset:hover {
  border-color: var(--rose-200);
  background: rgba(244, 63, 94, 0.2);
}

#admin-events-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Saved event items (injected by JS) */
#admin-events-list article {
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(2, 6, 23, 0.6);
  padding: 1.25rem;
}

#admin-events-list article>div {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

#admin-events-list p:first-child {
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--cyan-300);
}

#admin-events-list h3 {
  margin-top: 0.5rem;
  font-size: 1.25rem;
  font-weight: 900;
  color: #fff;
}

#admin-events-list .event-meta {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: var(--slate-400);
}

#admin-events-list .event-body {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.75;
  color: var(--slate-300);
}

/* Delete buttons injected by JS */
[data-delete-event] {
  flex-shrink: 0;
  border-radius: 0.5rem;
  border: 1px solid rgba(253, 164, 175, 0.3);
  background: rgba(244, 63, 94, 0.1);
  color: var(--rose-200);
  font-weight: 900;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  cursor: pointer;
  font-family: var(--font-heading, 'Poppins', sans-serif);
  transition: background 0.3s ease;
}

[data-delete-event]:hover {
  background: rgba(244, 63, 94, 0.2);
}

.hidden {
  display: none !important;
}

/* ══════════════════════════════════════
   Styles from admin\analytics.html
══════════════════════════════════════ */
body {
  font-family: var(--font-body, 'Poppins', sans-serif);
  background: #020617;
  color: #f1f5f9
}

.main {
  max-width: 900px;
  margin: 6rem auto;
  padding: 1rem
}

.panel {
  background: rgba(255, 255, 255, 0.03);
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.04)
}

/* ══════════════════════════════════════
   Styles from admin\users.html
══════════════════════════════════════ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
}

body {
  font-family: var(--font-body, 'Poppins', sans-serif);
  background: #0d0d0d;
  color: #f1f5f9;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

:root {
  --cyan-300: #67e8f9;
  --cyan-400: #22d3ee;
  --violet-300: #c4b5fd;
  --emerald-300: #6ee7b7;
  --rose-200: #fecdd3;
  --rose-300: #fda4af;
  --amber-300: #fcd34d;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --max-w: 80rem;
  --px: 1rem;
  --nav-h: 74px;
}

@media (min-width: 640px) {
  :root {
    --px: 1.5rem;
  }
}

@media (min-width: 1024px) {
  :root {
    --px: 2rem;
  }
}

.bg-overlay {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: -10;
  background:
    radial-gradient(ellipse 70% 45% at 18% 12%, rgba(255, 255, 255, 0.04), transparent),
    radial-gradient(ellipse 55% 40% at 82% 8%, rgba(255, 255, 255, 0.03), transparent),
    linear-gradient(180deg, #0d0d0d, #111111 52%, #0a0a0a);
}

.main-content {
  max-width: var(--max-w);
  margin-inline: auto;
  padding: calc(var(--nav-h) + 3.5rem) var(--px) 5rem;
}

/* ── Page header ── */
.admin-page-header {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 1024px) {
  .admin-page-header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

.header-text {
  max-width: 48rem;
}

.label {
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--cyan-300);
}

.page-title {
  margin-top: 1rem;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
}

.page-subtitle {
  margin-top: 1rem;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--slate-300);
}

.btn-back {
  display: inline-block;
  border-radius: 0.75rem;
  background: var(--cyan-400);
  color: #020617;
  font-weight: 900;
  padding: 0.75rem 1.5rem;
  text-align: center;
  white-space: nowrap;
  box-shadow: 0 20px 25px -5px rgba(34, 211, 238, 0.2);
  transition: transform 0.3s ease, background 0.3s ease;
}

.btn-back:hover {
  transform: translateY(-4px);
  background: #fff;
}

/* ── Stats bar ── */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}

.stat-card {
  position: relative;
  border-radius: 8px;
  border: 1px solid #1a1d24;
  background: #0b0c10;
  padding: 28px 20px;

  text-align: center;
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease;
}


.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: #2a2f3a;

  transition: background-color 0.2s ease;
}

.stat-card:hover {
  transform: translateY(-2px);
  border-color: #2a2f3a;
}

.stat-card:hover::before {
  background: #ffb703;

}


.stat-value {
  font-size: 36px;

  font-weight: 700;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;

  color: #ffb703;
  line-height: 1;
  letter-spacing: -0.02em;

}

.stat-label {
  margin-top: 10px;
  font-size: 11px;

  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #626d85;

}


.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.filter-input {
  flex: 1;
  min-width: 200px;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(2, 6, 23, 0.8);
  color: #fff;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  font-family: var(--font-body, 'Poppins', sans-serif);
  outline: none;
  transition: border-color 0.25s ease;
}

.filter-input::placeholder {
  color: var(--slate-500);
}

.filter-input:focus {
  border-color: var(--cyan-300);
}

.filter-select {
  min-width: 180px;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(2, 6, 23, 0.8);
  color: #fff;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  font-family: var(--font-body, 'Poppins', sans-serif);
  outline: none;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}

.filter-select:focus {
  border-color: var(--cyan-300);
}

.btn-refresh {
  border-radius: 0.75rem;
  border: 1px solid rgba(103, 232, 249, 0.2);
  background: rgba(34, 211, 238, 0.08);
  color: var(--cyan-300);
  font-weight: 900;
  padding: 0.75rem 1.25rem;
  font-size: 0.875rem;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.btn-refresh:hover {
  background: rgba(34, 211, 238, 0.15);
  border-color: rgba(103, 232, 249, 0.4);
}

/* ── Registration cards ── */
.reg-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.reg-card {
  border-radius: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  padding: 1.5rem;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.reg-card:hover {
  border-color: rgba(103, 232, 249, 0.2);
  transform: translateY(-2px);
}

.reg-card-header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.reg-card-event {
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--cyan-300);
}

.reg-card-name {
  margin-top: 0.25rem;
  font-size: 1.25rem;
  font-weight: 900;
  color: #fff;
}

.reg-card-date {
  font-size: 0.75rem;
  color: var(--slate-400);
  white-space: nowrap;
}

.reg-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.reg-detail {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.reg-detail-label {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--slate-500);
}

.reg-detail-value {
  font-size: 0.875rem;
  color: var(--slate-300);
  word-break: break-all;
}

.team-info {
  border-radius: 0.625rem;
  border: 1px solid rgba(196, 181, 253, 0.1);
  background: rgba(196, 181, 253, 0.04);
  padding: 0.75rem;
  margin-bottom: 1rem;
}

.team-info-title {
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--violet-300);
  margin-bottom: 0.5rem;
}

.team-member-item {
  display: flex;
  gap: 0.75rem;
  font-size: 0.8rem;
  color: var(--slate-300);
  padding: 0.25rem 0;
}

.team-member-item span:first-child {
  color: #fff;
  font-weight: 700;
}

.reg-card-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.reg-notes {
  font-size: 0.8rem;
  color: var(--slate-400);
  font-style: italic;
  max-width: 60%;
}

.btn-delete {
  border-radius: 0.5rem;
  border: 1px solid rgba(253, 164, 175, 0.3);
  background: rgba(244, 63, 94, 0.1);
  color: var(--rose-200);
  font-weight: 900;
  padding: 0.5rem 0.75rem;
  font-size: 0.8rem;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.25s ease;
}

.btn-delete:hover {
  background: rgba(244, 63, 94, 0.2);
}

.empty-state {
  border-radius: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  padding: 3rem;
  text-align: center;
  color: var(--slate-400);
}

.empty-state svg {
  margin-bottom: 1rem;
  opacity: 0.4;
}

.loading-msg {
  text-align: center;
  color: var(--slate-400);
  padding: 3rem 1rem;
  font-size: 0.9rem;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reg-card {
  animation: slideUp 0.35s ease both;
}

/* ══════════════════════════════════════
   Styles from announcements.html
══════════════════════════════════════ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
}

body {
  font-family: var(--font-body, 'Poppins', sans-serif);
  background: #0d0d0d;
  color: #f1f5f9;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

:root {
  --cyan-200: #a5f3fc;
  --cyan-300: #67e8f9;
  --violet-200: #ddd6fe;
  --violet-300: #c4b5fd;
  --emerald-200: #a7f3d0;
  --emerald-300: #6ee7b7;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --max-w: 64rem;
  --px: 1rem;
  --nav-h: 74px;
}

@media (min-width: 640px) {
  :root {
    --px: 1.5rem;
  }
}

@media (min-width: 1024px) {
  :root {
    --px: 2rem;
  }
}

.bg-overlay {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: -10;
  background:
    radial-gradient(ellipse 65% 45% at 15% 15%, rgba(255, 255, 255, 0.04), transparent),
    radial-gradient(ellipse 50% 35% at 90% 5%, rgba(255, 255, 255, 0.03), transparent),
    linear-gradient(180deg, #0d0d0d, #111111 55%, #0a0a0a);
}

.main-content {
  max-width: var(--max-w);
  margin-inline: auto;
  padding: calc(var(--nav-h) + 3.5rem) var(--px) 5rem;
}

/* ── Header ── */
.page-header {
  margin-bottom: 3.5rem;
}

.label {
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--cyan-300);
}

.page-title {
  margin-top: 1rem;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
}

.page-subtitle {
  margin-top: 1.25rem;
  font-size: 1.125rem;
  line-height: 2;
  color: var(--slate-300);
  max-width: 48rem;
}

/* ── Timeline ── */
.timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--cyan-300), var(--violet-300), transparent);
}

@media (min-width: 640px) {
  .timeline::before {
    left: 1.5rem;
  }
}

.timeline-item {
  position: relative;
  margin-left: 2.5rem;
  border-radius: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
  padding: 1.75rem;
  box-shadow: 0 25px 50px -12px rgba(2, 6, 23, 0.3);
  backdrop-filter: blur(12px);
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), border-color 0.4s ease, box-shadow 0.4s ease;
  isolation: isolate;
  overflow: hidden;
}

.timeline-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, transparent, transparent);
  z-index: -1;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.timeline-item:hover {
  transform: translateY(-8px) rotateX(5deg) scale(1.02);
  box-shadow: 0 30px 60px -10px rgba(2, 6, 23, 0.4);
  border-color: transparent;
}

.timeline-item:hover::before {
  background: linear-gradient(
    45deg,
    var(--cyan-300),
    var(--violet-300),
    var(--emerald-300),
    var(--amber)
  );
  background-size: 300% 300%;
  animation: gradientMove 4s ease infinite;
  opacity: 1;
}

/* Keep category-specific hover border colors for fallback */
.timeline-item.cyan:hover {
  border-color: rgba(103, 232, 249, 0.5);
}
.timeline-item.violet:hover {
  border-color: rgba(196, 181, 253, 0.5);
}
.timeline-item.emerald:hover {
  border-color: rgba(110, 231, 183, 0.5);
}
/* Amber for fourth item */
.timeline-item:nth-child(4):hover {
  border-color: rgba(245, 158, 11, 0.5);
}

@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Timeline dot enhancements */
.timeline-dot {
  position: absolute;
  left: -2.85rem;
  top: 1.75rem;
  height: 1rem;
  width: 1rem;
  border-radius: 9999px;
  transition: all 0.4s ease;
  z-index: 2;
}

.timeline-item:hover .timeline-dot {
  transform: scale(1.3);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.6);
}

/* Color-specific dot backgrounds */
.timeline-dot.cyan { background: var(--cyan-300); }
.timeline-dot.violet { background: var(--violet-300); }
.timeline-dot.emerald { background: var(--emerald-300); }
.timeline-item:nth-child(4) .timeline-dot { background: var(--amber); }

@media (min-width: 640px) {
  .timeline-item {
    margin-left: 4rem;
  }
  .timeline-dot {
    left: -3.15rem;
  }

  .timeline-item {
    padding: 2rem;
  }
}

/* Ensure content stays above pseudo-element */
.timeline-item > * {
  position: relative;
  z-index: 1;
}

.item-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.item-badge {
  border-radius: 9999px;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 900;
}

.item-badge.cyan {
  background: rgba(34, 211, 238, 0.1);
  color: var(--cyan-200);
}

.item-badge.violet {
  background: rgba(139, 92, 246, 0.1);
  color: var(--violet-200);
}

.item-badge.emerald {
  background: rgba(52, 211, 153, 0.1);
  color: var(--emerald-200);
}

.item-time {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--slate-400);
}

.item-title {
  margin-top: 1rem;
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
}

.item-body {
  margin-top: 0.75rem;
  line-height: 1.75;
  color: var(--slate-300);
}

/* ══════════════════════════════════════
   Styles from community.html
══════════════════════════════════════ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
}

body {
  font-family: var(--font-body, 'Poppins', sans-serif);
  background: #0d0d0d;
  color: #f1f5f9;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

:root {
  --cyan-200: #a5f3fc;
  --cyan-300: #67e8f9;
  --cyan-400: #22d3ee;
  --violet-200: #ddd6fe;
  --violet-300: #c4b5fd;
  --emerald-200: #a7f3d0;
  --emerald-300: #6ee7b7;
  --slate-300: #cbd5e1;
  --max-w: 80rem;
  --px: 1rem;
  --nav-h: 74px;
}

@media (min-width: 640px) {
  :root {
    --px: 1.5rem;
  }
}

@media (min-width: 1024px) {
  :root {
    --px: 2rem;
  }
}

.bg-overlay {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: -10;
  background:
    radial-gradient(ellipse 65% 45% at 20% 15%, rgba(255, 255, 255, 0.04), transparent),
    radial-gradient(ellipse 50% 35% at 75% 10%, rgba(255, 255, 255, 0.03), transparent),
    linear-gradient(180deg, #0d0d0d, #111111 55%, #0a0a0a);
}

.main-content {
  max-width: var(--max-w);
  margin-inline: auto;
  padding: calc(var(--nav-h) + 3.5rem) var(--px) 5rem;
}

.page-header {
  margin-bottom: 3rem;
  max-width: 48rem;
}

.label {
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--cyan-300);
}

.page-title {
  margin-top: 1rem;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
}

.page-subtitle {
  margin-top: 1.25rem;
  font-size: 1.125rem;
  line-height: 2;
  color: var(--slate-300);
}

/* ── Cards Grid ── */
.cards-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
  .cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.hub-card {
  border-radius: 1.5rem;
  padding: 1.75rem;
  backdrop-filter: blur(12px);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.hub-card:hover {
  transform: translateY(-8px);
}

.hub-card.cyan {
  border: 1px solid rgba(103, 232, 249, 0.2);
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.15), rgba(255, 255, 255, 0.06), #020617);
}

.hub-card.cyan:hover {
  border-color: rgba(103, 232, 249, 0.6);
  box-shadow: 0 25px 50px -12px rgba(8, 51, 68, 0.4);
}

.hub-card.violet {
  border: 1px solid rgba(196, 181, 253, 0.2);
  background: linear-gradient(135deg, rgba(167, 139, 250, 0.15), rgba(255, 255, 255, 0.06), #020617);
}

.hub-card.violet:hover {
  border-color: rgba(196, 181, 253, 0.6);
  box-shadow: 0 25px 50px -12px rgba(30, 20, 68, 0.4);
}

.hub-card.emerald {
  border: 1px solid rgba(110, 231, 183, 0.2);
  background: linear-gradient(135deg, rgba(52, 211, 153, 0.15), rgba(255, 255, 255, 0.06), #020617);
}

.hub-card.emerald:hover {
  border-color: rgba(110, 231, 183, 0.6);
  box-shadow: 0 25px 50px -12px rgba(8, 38, 24, 0.4);
}

.hub-icon {
  height: 3rem;
  width: 3rem;
}

.hub-icon.cyan {
  color: var(--cyan-300);
}

.hub-icon.violet {
  color: var(--violet-300);
}

.hub-icon.emerald {
  color: var(--emerald-300);
}

.hub-title {
  margin-top: 2rem;
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
}

.hub-desc {
  margin-top: 1rem;
  line-height: 1.75;
  color: var(--slate-300);
}

.hub-link {
  display: inline-flex;
  margin-top: 2rem;
  font-weight: 900;
  transition: transform 0.3s ease;
}

.hub-link:hover {
  transform: translateX(4px);
}

.hub-link.cyan {
  color: var(--cyan-200);
}

.hub-link.violet {
  color: var(--violet-200);
}

.hub-link.emerald {
  color: var(--emerald-200);
}

/* ══════════════════════════════════════
   Styles from events.html
══════════════════════════════════════ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
}

body {
  font-family: var(--font-body, 'Poppins', sans-serif);
  background: #0d0d0d;
  color: #f1f5f9;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

:root {
  --cyan-300: #67e8f9;
  --cyan-400: #22d3ee;
  --violet-300: #c4b5fd;
  --emerald-300: #6ee7b7;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --max-w: 80rem;
  --px: 1rem;
  --nav-h: 74px;
}

@media (min-width: 640px) {
  :root {
    --px: 1.5rem;
  }
}

@media (min-width: 1024px) {
  :root {
    --px: 2rem;
  }
}

.bg-overlay {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: -10;
  background:
    radial-gradient(ellipse 70% 45% at 18% 12%, rgba(255, 255, 255, 0.04), transparent),
    radial-gradient(ellipse 55% 40% at 82% 8%, rgba(255, 255, 255, 0.03), transparent),
    linear-gradient(180deg, #0d0d0d, #111111 52%, #0a0a0a);
}

.main-content {
  max-width: var(--max-w);
  margin-inline: auto;
  padding: calc(var(--nav-h) + 3.5rem) var(--px) 5rem;
}

.page-header {
  margin-bottom: 3rem;
  max-width: 56rem;
}

.label {
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--cyan-300);
}

.page-title {
  margin-top: 1rem;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
}

.page-subtitle {
  margin-top: 1.25rem;
  font-size: 1.125rem;
  line-height: 2;
  color: var(--slate-300);
}

/* ── Two-column layout ── */
.events-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .events-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

/* ── Section headers ── */
.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.section-title {
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
}

.badge-live {
  border-radius: 9999px;
  background: rgba(52, 211, 153, 0.1);
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 900;
  color: var(--emerald-300);
}

/* ── Upcoming cards ── */
#upcoming-events-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* ── Past glories container ── */
.past-wrap {
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
  padding: 1.5rem;
  backdrop-filter: blur(12px);
}

#past-events-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* ── Dynamic event card styles (injected by JS) ── */
/* These styles are referenced in main.js via class names. The JS uses
       Tailwind-like class strings; we override them here with equivalent CSS. */

/* Upcoming event card */
#upcoming-events-list article {
  border-radius: 1.5rem;
  border: 1px solid rgba(103, 232, 249, 0.2);
  background: rgba(255, 255, 255, 0.06);
  padding: 1.5rem;
  backdrop-filter: blur(12px);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

#upcoming-events-list article:hover {
  transform: translateY(-4px);
  border-color: rgba(103, 232, 249, 0.6);
}

#upcoming-events-list article:nth-child(3n+2) {
  border-color: rgba(196, 181, 253, 0.2);
}

#upcoming-events-list article:nth-child(3n+2):hover {
  border-color: rgba(196, 181, 253, 0.6);
}

#upcoming-events-list article:nth-child(3n+3) {
  border-color: rgba(110, 231, 183, 0.2);
}

#upcoming-events-list article:nth-child(3n+3):hover {
  border-color: rgba(110, 231, 183, 0.6);
}

/* JS-rendered event styles */
.event-card-top {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.event-date {
  font-size: 0.875rem;
  font-weight: 900;
  color: var(--cyan-300);
}

.event-title {
  margin-top: 0.5rem;
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
}

.event-desc {
  margin-top: 1rem;
  line-height: 1.75;
  color: var(--slate-300);
}

.status-badge {
  border-radius: 9999px;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 900;
  white-space: nowrap;
}

/* ── Register button on event cards ── */
.btn-register-event {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
  padding: 0.625rem 1.25rem;
  border-radius: 0.75rem;
  border: none;
  cursor: pointer;
  font-family: var(--font-heading, 'Poppins', sans-serif);
  font-weight: 900;
  font-size: 0.875rem;
  background: linear-gradient(135deg, var(--cyan-400), #06b6d4);
  color: #020617;
  box-shadow: 0 8px 20px -4px rgba(34, 211, 238, 0.3);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn-register-event:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -4px rgba(34, 211, 238, 0.45);
  background: linear-gradient(135deg, #67e8f9, var(--cyan-400));
}

.btn-register-event:active {
  transform: translateY(0);
}

.btn-register-event svg {
  width: 16px;
  height: 16px;
}

/* Past event dot+text */
#past-events-list>div {
  display: flex;
  gap: 1rem;
}

#past-events-list span {
  display: block;
  margin-top: 0.25rem;
  height: 0.75rem;
  width: 0.75rem;
  flex-shrink: 0;
  border-radius: 9999px;
  background: var(--cyan-300);
}

#past-events-list h3 {
  font-weight: 900;
  color: #fff;
}

#past-events-list p {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  line-height: 1.75;
  color: var(--slate-400);
}

.empty-msg {
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
  padding: 1.5rem;
  color: var(--slate-300);
}

/* ════════════════════════════════════════════
       REGISTRATION MODAL
    ════════════════════════════════════════════ */
.modal-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(2, 6, 23, 0.75);
  backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  padding: 1rem;
  animation: fadeIn 0.25s ease;
}

.modal-backdrop.open {
  display: flex;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.97);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.modal-card {
  width: 100%;
  max-width: 540px;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 1.5rem;
  border: 1px solid rgba(103, 232, 249, 0.15);
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(24px);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04),
    0 24px 64px -12px rgba(0, 0, 0, 0.6),
    0 0 80px -20px rgba(34, 211, 238, 0.12);
  padding: 2rem;
  animation: slideUp 0.35s ease;
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.modal-header h2 {
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
}

.modal-header .modal-event-name {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--cyan-300);
  letter-spacing: 0.05em;
}

.modal-close {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 1.25rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.2s ease;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.12);
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.modal-form .field-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.modal-form .field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

@media (max-width: 480px) {
  .modal-form .field-row {
    grid-template-columns: 1fr;
  }
}

.modal-form label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--slate-300);
}

.modal-form input,
.modal-form select,
.modal-form textarea {
  width: 100%;
  border-radius: 0.625rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(2, 6, 23, 0.7);
  color: #fff;
  padding: 0.65rem 0.85rem;
  font-size: 0.9rem;
  font-family: var(--font-body, 'Poppins', sans-serif);
  outline: none;
  transition: border-color 0.25s ease;
}

.modal-form input::placeholder,
.modal-form textarea::placeholder {
  color: var(--slate-500);
}

.modal-form input:focus,
.modal-form select:focus,
.modal-form textarea:focus {
  border-color: var(--cyan-300);
}

.modal-form textarea {
  resize: none;
}

.team-members-section {
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.03);
  padding: 1rem;
}

.team-members-section h4 {
  font-size: 0.8rem;
  font-weight: 900;
  color: var(--violet-300);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.75rem;
}

#team-members-fields {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.team-member-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.team-member-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.team-member-label {
  grid-column: 1 / -1;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--slate-400);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.modal-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.btn-modal-submit {
  flex: 1;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  border: none;
  cursor: pointer;
  font-family: var(--font-heading, 'Poppins', sans-serif);
  font-weight: 900;
  font-size: 0.95rem;
  background: linear-gradient(135deg, var(--cyan-400), #06b6d4);
  color: #020617;
  box-shadow: 0 12px 24px -6px rgba(34, 211, 238, 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-modal-submit:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px -6px rgba(34, 211, 238, 0.4);
}

.btn-modal-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn-modal-cancel {
  padding: 0.75rem 1.25rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
  color: var(--slate-300);
  font-family: var(--font-heading, 'Poppins', sans-serif);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.2s ease;
}

.btn-modal-cancel:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Scrollbar inside modal */
.modal-card::-webkit-scrollbar {
  width: 6px;
}

.modal-card::-webkit-scrollbar-track {
  background: transparent;
}

.modal-card::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 3px;
}

/* ══════════════════════════════════════
   Styles from forgot-password.html
══════════════════════════════════════ */
/* ===========================
   ACM JIT — Shared Design System
   =========================== */

/* ── Reset & Base ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body, 'Poppins', sans-serif);
  background-color: #020617;
  color: #f1f5f9;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
  font-family: inherit;
}

input,
textarea,
select {
  font-family: inherit;
}

/* ── CSS Variables ── */
:root {
  --cyan-200: #a5f3fc;
  --cyan-300: #67e8f9;
  --cyan-400: #22d3ee;
  --violet-200: #ddd6fe;
  --violet-300: #c4b5fd;
  --violet-400: #a78bfa;
  --emerald-200: #a7f3d0;
  --emerald-300: #6ee7b7;
  --emerald-400: #34d399;
  --amber-300: #fcd34d;
  --rose-200: #fecdd3;
  --rose-300: #fda4af;
  --fuchsia-300: #e879f9;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-950: #020617;

  --max-w: 80rem;
  --px: 1rem;
  --nav-h: 74px;
}

/* ── Background Overlay ── */
.bg-overlay {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: -10;
}

/* ── Layout ── */
.container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--px);
}

@media (min-width: 640px) {
  :root {
    --px: 1.5rem;
  }
}

@media (min-width: 1024px) {
  :root {
    --px: 2rem;
  }
}

/* ── Typography ── */
.label {
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--cyan-300);
}

.page-title {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-top: 1rem;
}

.page-subtitle {
  font-size: 1.125rem;
  line-height: 2;
  color: var(--slate-300);
  margin-top: 1.25rem;
  max-width: 48rem;
}

/* ── Cards ── */
.card {
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 1.5rem;
}

.card-xl {
  border-radius: 2rem;
}

/* ── Buttons ── */
.btn-primary {
  display: inline-block;
  border-radius: 0.75rem;
  background: var(--cyan-400);
  color: #020617;
  font-weight: 900;
  padding: 1rem 1.75rem;
  text-align: center;
  box-shadow: 0 20px 25px -5px rgba(34, 211, 238, 0.2);
  transition: transform 0.3s ease, background 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-4px);
  background: #fff;
}

.btn-ghost {
  display: inline-block;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-weight: 900;
  padding: 1rem 1.75rem;
  text-align: center;
  backdrop-filter: blur(8px);
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.btn-ghost:hover {
  transform: translateY(-4px);
  border-color: rgba(196, 181, 253, 0.6);
  background: rgba(167, 139, 250, 0.1);
  color: var(--violet-200);
}

.btn-danger {
  display: inline-block;
  border-radius: 0.75rem;
  border: 1px solid rgba(253, 164, 175, 0.3);
  background: rgba(244, 63, 94, 0.1);
  color: var(--rose-200);
  font-weight: 900;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.btn-danger:hover {
  background: rgba(244, 63, 94, 0.2);
  border-color: var(--rose-200);
}

/* ── Badges ── */
.badge {
  display: inline-flex;
  border-radius: 9999px;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 900;
}

.badge-cyan {
  background: rgba(34, 211, 238, 0.1);
  color: var(--cyan-200);
}

.badge-violet {
  background: rgba(139, 92, 246, 0.1);
  color: var(--violet-200);
}

.badge-emerald {
  background: rgba(52, 211, 153, 0.1);
  color: var(--emerald-200);
}

.badge-amber {
  background: rgba(251, 191, 36, 0.1);
  color: var(--amber-300);
}

.badge-rose {
  background: rgba(244, 63, 94, 0.1);
  color: var(--rose-300);
}

.badge-active {
  background: rgba(52, 211, 153, 0.1);
  color: var(--emerald-300);
}

/* ── Form Elements ── */
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(2, 6, 23, 0.8);
  color: #fff;
  padding: 0.75rem 1rem;
  outline: none;
  transition: border-color 0.3s ease;
  appearance: none;
  -webkit-appearance: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--slate-500);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--cyan-300);
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--slate-300);
  margin-bottom: 0.5rem;
}

.form-textarea {
  resize: none;
}

/* ── Nav ── */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(2, 6, 23, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 25px 50px -12px rgba(8, 51, 68, 0.2);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-w);
  margin-inline: auto;
  padding: 1rem var(--px);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-light {
  display: none !important;
}
.logo-dark {
  display: inline-block !important;
}

body.light-theme .logo-dark,
html.light-theme .logo-dark {
  display: none !important;
}
body.light-theme .logo-light,
html.light-theme .logo-light {
  display: inline-block !important;
}

.nav-logo-mark {
  display: grid;
  place-items: center;
  height: 2.5rem;
  width: 2.5rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(34, 211, 238, 0.3);
  background: rgba(34, 211, 238, 0.1);
  font-size: 0.75rem;
  font-weight: 900;
  color: var(--cyan-300);
  box-shadow: 0 10px 15px -3px rgba(8, 51, 68, 0.4);
  transition: border-color 0.3s ease, background 0.3s ease;
}

.nav-logo:hover .nav-logo-mark {
  border-color: rgba(103, 232, 249, 0.7);
  background: rgba(34, 211, 238, 0.2);
}

.nav-logo-text {
  font-size: 1.125rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  color: #fff;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  display: block;
  border-radius: 0.75rem;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--slate-300);
  transition: background 0.3s ease, color 0.3s ease;
}

.nav-link:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--cyan-300);
}

.nav-link.active {
  color: var(--cyan-300);
  background: rgba(255, 255, 255, 0.1);
}

.nav-cta {
  margin-left: 0.5rem;
  border-radius: 0.75rem;
  background: var(--cyan-400);
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 900;
  color: #020617;
  box-shadow: 0 10px 15px -3px rgba(34, 211, 238, 0.2);
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.nav-cta:hover {
  transform: translateY(-2px);
  background: #fff;
  box-shadow: 0 10px 15px -3px rgba(103, 232, 249, 0.3);
}

.nav-cta.active {
  box-shadow: 0 0 0 2px rgba(165, 243, 252, 0.5);
}

.nav-toggle {
  display: none;
  height: 2.5rem;
  width: 2.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: #f1f5f9;
  transition: border-color 0.3s ease, color 0.3s ease;
}

.nav-toggle:hover {
  border-color: rgba(103, 232, 249, 0.5);
  color: var(--cyan-300);
}

@media (max-width: 767px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(var(--nav-h) - 2px);
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(2, 6, 23, 0.95);
    padding: 0.75rem;
    box-shadow: 0 25px 50px -12px rgba(8, 51, 68, 0.3);
    backdrop-filter: blur(20px);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-link {
    padding: 0.75rem 1rem;
  }

  .nav-cta {
    margin-left: 0;
    margin-top: 0.5rem;
    text-align: center;
    padding: 0.75rem 1.25rem;
  }
}

/* ── Hover Lift ── */
.hover-lift {
  transition: transform 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-8px);
}

.hover-lift-sm {
  transition: transform 0.3s ease;
}

.hover-lift-sm:hover {
  transform: translateY(-4px);
}

/* ── Section spacing ── */
.main-content {
  max-width: var(--max-w);
  margin-inline: auto;
  padding: calc(var(--nav-h) + 3.5rem) var(--px) 5rem;
}

.page-header {
  margin-bottom: 3rem;
  max-width: 56rem;
}

/* ══════════════════════════════════════
   Styles from index.html
══════════════════════════════════════ */
/* ── Reset ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body, 'Poppins', sans-serif);
  background: #0d0d0d;
  color: #f1f5f9;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

/* ── Variables ── */
:root {
  --cyan-200: #a5f3fc;
  --cyan-300: #67e8f9;
  --cyan-400: #22d3ee;
  --cyan-500: #06b6d4;
  --violet-200: #ddd6fe;
  --violet-300: #c4b5fd;
  --violet-400: #a78bfa;
  --emerald-200: #a7f3d0;
  --emerald-300: #6ee7b7;
  --emerald-400: #34d399;
  --amber-300: #fcd34d;
  --amber-400: #fbbf24;
  --rose-300: #fda4af;
  --rose-400: #fb7185;
  --fuchsia-300: #e879f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --max-w: 80rem;
  --px: 1rem;
  --nav-h: 74px;
}

@media (min-width: 640px) {
  :root {
    --px: 1.5rem;
  }
}

@media (min-width: 1024px) {
  :root {
    --px: 2rem;
  }
}

/* ── Classic Background Overlay ── */
.bg-overlay {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: -10;
  background:
    radial-gradient(ellipse 65% 45% at 15% 15%, rgba(255, 255, 255, 0.04), transparent),
    radial-gradient(ellipse 50% 35% at 90% 5%, rgba(255, 255, 255, 0.03), transparent),
    linear-gradient(180deg, #0d0d0d, #111111 55%, #0a0a0a);
}

/* ── Layout ── */
.container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--px);
}

/* ── Section Shared ── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--cyan-400);
  margin-bottom: 1rem;
}

.section-label::before {
  content: '';
  display: block;
  width: 2rem;
  height: 2px;
  background: linear-gradient(90deg, var(--rose-400), transparent);
  border-radius: 2px;
}

.section-title {
  font-family: var(--font-heading, 'Poppins', sans-serif);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  max-width: 36rem;
}

.section-subtitle {
  margin-top: 1rem;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--slate-400);
  max-width: 38rem;
}

/* ══════════════════════════════════════
       HERO
    ══════════════════════════════════════ */
.hero {
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 3rem) 0 4rem;
}

.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
  width: 100%;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

/* Left */




@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.4);
  }
}

/* ── Hero text reveal (fires after splash fades) ── */
@keyframes heroReveal {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Respect reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
  .hero-heading,
  .hero-heading .highlight,
  .hero-desc,
  .hero-actions {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

.hero-heading {
  font-family: var(--font-heading, 'Poppins', sans-serif);
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  font-weight: 500;
  color: #fff;
  line-height: 1.1;
  /* ── Hero reveal animation ── */
  opacity: 0;
  transform: translateY(24px);
  animation: heroReveal 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.8s forwards;
}

.hero-heading .highlight {
  background: linear-gradient(135deg, var(--cyan-400), var(--violet-400));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  /* ── Highlight reveal (fade only — no transform to avoid clashing with rotate(-2deg) in theme.css) ── */
  opacity: 0;
  animation: heroFadeIn 0.5s ease 1.1s forwards;
}

.hero-desc {
  margin-top: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.85;
  color: var(--slate-300);
  max-width: 32rem;
  /* ── Hero reveal animation ── */
  opacity: 0;
  transform: translateY(24px);
  animation: heroReveal 0.7s cubic-bezier(0.22, 1, 0.36, 1) 1.0s forwards;
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  /* ── Hero reveal animation ── */
  opacity: 0;
  transform: translateY(24px);
  animation: heroReveal 0.7s cubic-bezier(0.22, 1, 0.36, 1) 1.2s forwards;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 0.75rem;
  padding: 0.875rem 1.75rem;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary {
  background: linear-gradient(135deg, var(--cyan-400), #0891b2);
  color: #020617;
  box-shadow: 0 4px 20px rgba(34, 211, 238, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(34, 211, 238, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--slate-200);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(196, 181, 253, 0.4);
  color: var(--violet-300);
}

.btn svg {
  width: 18px;
  height: 18px;
}

/* Right — Photo Collage / Visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-card-stack {
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 4 / 3;
}

.hero-card {
  position: absolute;
  border-radius: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(16px);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-card:hover {
  transform: scale(1.03) !important;
}

.hero-card-main {
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0;
  background:
    linear-gradient(to top, rgba(10, 15, 30, 0.95) 0%, rgba(10, 15, 30, 0.4) 50%, rgba(10, 15, 30, 0.1) 100%),
    linear-gradient(135deg, rgba(34, 211, 238, 0.15), rgba(139, 92, 246, 0.1));
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}

.hero-card-main:active {
  cursor: grabbing;
}

.hero-card-main canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-3d-label {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  text-align: center;
  pointer-events: none;
}

.hero-3d-label h3 {
  font-family: var(--font-heading, 'Poppins', sans-serif);
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}

.hero-3d-label p {
  margin-top: 0.2rem;
  font-size: 0.75rem;
  color: var(--slate-400);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}

.hero-card-float-1 {
  top: -4%;
  right: 2%;
  width: 34%;
  z-index: 4;
  padding: 0.8rem;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(34, 211, 238, 0.15);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero-card-float-2 {
  bottom: -6%;
  left: -5%;
  width: 50%;
  z-index: 4;
  padding: 1.25rem;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(139, 92, 246, 0.15);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.float-card-label {
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--slate-500);
  margin-bottom: 0.3rem;
}

.float-card-value {
  font-family: var(--font-heading, 'Poppins', sans-serif);
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
}

.float-card-value .unit {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--cyan-300);
}

.float-card-sub {
  margin-top: 0.25rem;
  font-size: 0.65rem;
  color: var(--slate-400);
}

/* ==========================================================================
   1. STATS GRID (MATCHED TO SMOKY BACKDROP)
   ========================================================================== */

.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  width: 100%;
}

@media (min-width: 640px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

@media (min-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-item {
  display: flex;
  align-items: center;
  flex: 1;
  gap: 24px;
  padding: 32px 40px;
  background: #0f1013;
  /* Matches your exact smoky website section backdrop color */
  border: 1px solid #1c1e24;
  /* Subtle crisp border that anchors naturally into the gray */
  border-radius: 20px;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

/* Snappy vertical interactive pop */
.stat-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  background: #131519;
  /* Slightly brightens card on hover for a dynamic premium look */
}

.stat-number {
  font-family: var(--font-heading, 'Poppins', sans-serif);
  font-size: 52px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  letter-spacing: -0.01em;
}

.stat-text {
  font-size: 18px;
  color: #717b91;
  /* High-contrast steel gray for perfect readability on charcoal */
  font-weight: 500;
  line-height: 1.3;
  text-align: left;
}

/* --- Stats Color Activation --- */
.stat-number.cyan {
  color: #50e3c2;
}

.stat-item:nth-child(1):hover {
  border-color: rgba(80, 227, 194, 0.45);
}

.stat-number.violet {
  color: #a3b899;
}

.stat-item:nth-child(2):hover {
  border-color: rgba(163, 184, 153, 0.45);
}

.stat-number.emerald {
  color: #ffb703;
}

.stat-item:nth-child(3):hover {
  border-color: rgba(255, 183, 3, 0.45);
}

.stat-number.amber {
  color: #e63946;
}

.stat-item:nth-child(4):hover {
  border-color: rgba(230, 57, 70, 0.45);
}


/* ==========================================================================
   2. FEATURES SECTION (MATCHED TO SMOKY BACKDROP)
   ========================================================================== */
.feature-card {
  position: relative;
  overflow: hidden;

  /* Pill shape requires significant left/right padding, reduced vertical padding for shorter height */
  padding: 1.5rem 4rem;

  background: #000000;
  /* Pitch black */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);

  /* Elegant Pill / Stadium Shape */
  border-radius: 9999px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;

  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.4s ease, border-radius 0.4s ease;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 20%;
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  opacity: 0.5;
  transition: opacity 0.4s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  /* Slightly morph the pill on hover */
  border-radius: 120px;
  border-color: rgba(6, 182, 212, 0.4);
  background: #000000;
  box-shadow:
    0 24px 48px -12px rgba(0, 0, 0, 0.5),
    0 0 40px -10px rgba(6, 182, 212, 0.15);
}

.feature-card:hover::before {
  opacity: 1;
  background: linear-gradient(90deg, transparent, rgba(6, 182, 212, 0.5), transparent);
}

/* Circular Icon Container */
.feature-emoji {
  width: 80px;
  height: 80px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: radial-gradient(circle,
      rgba(0, 255, 255, 0.15),
      rgba(255, 255, 255, 0.04));

  border: 1px solid rgba(255, 255, 255, 0.1);

  margin-bottom: 1.5rem;

  box-shadow:
    0 0 25px rgba(0, 255, 255, 0.12);
}

.feature-emoji svg {
  width: 34px;
  height: 34px;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.feature-text {
  line-height: 1.7;
  color: #94a3b8;
}

/* ══════════════════════════════════════
       DOMAINS
    ══════════════════════════════════════ */
.domains-section {
  padding: 0 0 6rem;
}

.domains-header {
  margin-bottom: 3rem;
}

.domains-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .domains-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .domains-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.domain-card {
  position: relative;
  border-radius: 12px;
  padding: 32px 24px;
  background: #0b0c10;
  /* Deep charcoal dark base */
  border: 1px solid #1a1d24;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

/* Crisp top accent line */
.domain-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  opacity: 0;
  transition: opacity 0.2s ease;
}

/* Snappy, human-calibrated hover effect */
.domain-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

.domain-card:hover::before {
  opacity: 1;
}

/* --- Unique Human-Curated Color Palette --- */

/* Card 1: Electric Ice (Cool Ice Blue) */
.domain-card:nth-child(1)::before {
  background: #50e3c2;
}

.domain-card:nth-child(1):hover {
  border-color: rgba(80, 227, 194, 0.25);
}

/* Card 2: Muted Sage (Sophisticated Green) */
.domain-card:nth-child(2)::before {
  background: #a3b899;
}

.domain-card:nth-child(2):hover {
  border-color: rgba(163, 184, 153, 0.25);
}

/* Card 3: Amber Gold (Warm Technical Hue) */
.domain-card:nth-child(3)::before {
  background: #ffb703;
}

.domain-card:nth-child(3):hover {
  border-color: rgba(255, 183, 3, 0.25);
}

/* Card 4: Burnt Coral (Deep, Premium Red) */
.domain-card:nth-child(4)::before {
  background: #e63946;
}

.domain-card:nth-child(4):hover {
  border-color: rgba(230, 57, 70, 0.25);
}

.domain-icon {
  width: 48px;
  /* Defined in clean, human-written pixels instead of arbitrary rems */
  height: 48px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
}

.domain-icon svg {
  width: 24px;
  height: 24px;
}

/* --- Matching Color Palette --- */

/* Icon 1: Electric Ice (Matches Card 1) */
.domain-card:nth-child(1) .domain-icon {
  background: rgba(80, 227, 194, 0.08);
  color: #50e3c2;
}

/* Icon 2: Muted Sage (Matches Card 2) */
.domain-card:nth-child(2) .domain-icon {
  background: rgba(163, 184, 153, 0.08);
  color: #a3b899;
}

/* Icon 3: Amber Gold (Matches Card 3) */
.domain-card:nth-child(3) .domain-icon {
  background: rgba(255, 183, 3, 0.08);
  color: #ffb703;
}

/* Icon 4: Burnt Coral (Matches Card 4) */
.domain-card:nth-child(4) .domain-icon {
  background: rgba(230, 57, 70, 0.08);
  color: #e63946;
}

.domain-name {
  font-family: var(--font-heading, 'Poppins', sans-serif);
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
}

.domain-desc {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.75;
  color: var(--slate-400);
}

/* ══════════════════════════════════════
       WHAT WE DO — FEATURE BLOCKS
    ══════════════════════════════════════ */
.features-section {
  padding: 0 0 6rem;
}

.features-header {
  margin-bottom: 3rem;
}

.features-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Mobile Responsiveness for Feature Cards */
@media (max-width: 639px) {
  .feature-card {
    padding: 2.5rem 1.5rem;
    border-radius: 40px;
    /* Softer pill for narrow screens */
  }

  .feature-card:hover {
    border-radius: 40px;
  }
}

/* --- Cohesive Human-Curated Style Cycles --- */

/* Feature 1 & 5: Electric Ice */
.features-grid .feature-card:nth-child(1) .feature-emoji,
.features-grid .feature-card:nth-child(5) .feature-emoji {
  background: rgba(80, 227, 194, 0.08);
  color: #50e3c2;
}

.features-grid .feature-card:nth-child(1):hover,
.features-grid .feature-card:nth-child(5):hover {
  border-color: rgba(80, 227, 194, 0.35);
}

/* Feature 2 & 6: Muted Sage */
.features-grid .feature-card:nth-child(2) .feature-emoji,
.features-grid .feature-card:nth-child(6) .feature-emoji {
  background: rgba(163, 184, 153, 0.08);
  color: #a3b899;
}

.features-grid .feature-card:nth-child(2):hover,
.features-grid .feature-card:nth-child(6):hover {
  border-color: rgba(163, 184, 153, 0.35);
}

/* Feature 3: Amber Gold */
.features-grid .feature-card:nth-child(3) .feature-emoji {
  background: rgba(255, 183, 3, 0.08);
  color: #ffb703;
}

.features-grid .feature-card:nth-child(3):hover {
  border-color: rgba(255, 183, 3, 0.35);
}

/* Feature 4: Burnt Coral */
.features-grid .feature-card:nth-child(4) .feature-emoji {
  background: rgba(230, 57, 70, 0.08);
  color: #e63946;
}

.features-grid .feature-card:nth-child(4):hover {
  border-color: rgba(230, 57, 70, 0.35);
}

/* ══════════════════════════════════════
       CTA SECTION
    ══════════════════════════════════════ */
.cta-section {
  padding: 0 0 6rem;
}

.cta-box {
  position: relative;
  overflow: hidden;
  border-radius: 2rem;
  padding: 4rem 2rem;
  text-align: center;
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.08), rgba(139, 92, 246, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.cta-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 50%, rgba(34, 211, 238, 0.1), transparent 60%),
    radial-gradient(circle at 70% 50%, rgba(139, 92, 246, 0.08), transparent 60%);
}

.cta-box>* {
  position: relative;
  z-index: 1;
}

.cta-title {
  font-family: var(--font-heading, 'Poppins', sans-serif);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
}

.cta-desc {
  margin: 1rem auto 0;
  max-width: 32rem;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--slate-300);
}

.cta-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

/* ══════════════════════════════════════
       FOOTER
    ══════════════════════════════════════ */
.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 2.5rem 0;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .footer-inner {
    justify-content: space-between;
    text-align: left;
  }
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--slate-400);
}

.footer-brand .mark {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  background: rgba(34, 211, 238, 0.1);
  font-size: 0.65rem;
  font-weight: 900;
  color: var(--cyan-300);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.footer-link {
  font-size: 0.85rem;
  color: var(--slate-500);
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--cyan-300);
}

/* Footer Social & Contact Pills */
.footer-social-contact {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 1.5rem;
  padding: 1.25rem 0 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-contact-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.05rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  color: #D1FAE5;
  font-family: var(--font-heading, 'Space Grotesk', sans-serif);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 2px 2px 0px rgba(0, 0, 0, 0.3);
}

.footer-contact-pill svg {
  flex-shrink: 0;
  stroke: currentColor;
}

.footer-contact-pill:hover {
  background: #38bdf8 !important;
  color: #0B0F0D !important;
  border-color: #0B0F0D !important;
  transform: translateY(-2px);
  box-shadow: 3px 3px 0px #0B0F0D !important;
}

.footer-contact-pill.instagram:hover {
  background: linear-gradient(135deg, #f59e0b, #ec4899, #8b5cf6) !important;
  color: #ffffff !important;
  border-color: #0B0F0D !important;
  transform: translateY(-2px);
  box-shadow: 3px 3px 0px #0B0F0D !important;
}

.footer-copy {
  width: 100%;
  text-align: center;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  font-size: 0.8rem;
  color: var(--slate-500);
}

.footer-acm-cta {
  width: 100%;
  text-align: center;
  margin-top: 1.5rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-acm-cta h2 {
  margin: 0;
  font-family: var(--font-heading, 'Poppins', sans-serif);
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
  font-weight: 800;
  line-height: 1.4;
}

.footer-acm-cta h2 a {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, var(--cyan-300), var(--violet-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0.5rem 0;
}

.footer-acm-cta h2 a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan-400), var(--violet-400));
  border-radius: 2px;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-acm-cta h2 a:hover::after {
  width: 100%;
}

.footer-acm-cta h2 a:hover {
  filter: brightness(1.2) drop-shadow(0 0 12px rgba(34, 211, 238, 0.35));
}

.footer-acm-cta h2 a svg {
  width: 1.1em;
  height: 1.1em;
  flex-shrink: 0;
  stroke: var(--cyan-300);
  transition: transform 0.3s ease;
}

.footer-acm-cta h2 a:hover svg {
  transform: translate(3px, -3px);
}

/* ── Scroll reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(40px) scale(0.95);
  filter: blur(10px);
  transition: opacity 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), filter 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

/* ── Responsive tweaks ── */
@media (max-width: 767px) {
  .hero-visual {
    display: none;
  }

  .hero {
    padding-top: calc(var(--nav-h) + 2rem);
  }
}

/* ══════════════════════════════════════
   Styles from join-us.html
══════════════════════════════════════ */
/* ===========================
   ACM JIT — Shared Design System
   =========================== */

/* ── Reset & Base ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body, 'Poppins', sans-serif);
  background-color: #0d0d0d;
  color: #f1f5f9;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
  font-family: inherit;
}

input,
textarea,
select {
  font-family: inherit;
}

/* ── CSS Variables ── */
:root {
  --cyan-200: #a5f3fc;
  --cyan-300: #67e8f9;
  --cyan-400: #22d3ee;
  --violet-200: #ddd6fe;
  --violet-300: #c4b5fd;
  --violet-400: #a78bfa;
  --emerald-200: #a7f3d0;
  --emerald-300: #6ee7b7;
  --emerald-400: #34d399;
  --amber-300: #fcd34d;
  --rose-200: #fecdd3;
  --rose-300: #fda4af;
  --fuchsia-300: #e879f9;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-950: #020617;

  --max-w: 80rem;
  --px: 1rem;
  --nav-h: 74px;
}

/* ── Background Overlay ── */
.bg-overlay {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: -10;
}

/* ── Layout ── */
.container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--px);
}

@media (min-width: 640px) {
  :root {
    --px: 1.5rem;
  }
}

@media (min-width: 1024px) {
  :root {
    --px: 2rem;
  }
}

/* ── Typography ── */
.label {
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--cyan-300);
}

.page-title {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-top: 1rem;
}

.page-subtitle {
  font-size: 1.125rem;
  line-height: 2;
  color: var(--slate-300);
  margin-top: 1.25rem;
  max-width: 48rem;
}

/* ── Cards ── */
.card {
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 1.5rem;
}

.card-xl {
  border-radius: 2rem;
}

/* ── Buttons ── */
.btn-primary {
  display: inline-block;
  border-radius: 0.75rem;
  background: var(--cyan-400);
  color: #020617;
  font-weight: 900;
  padding: 1rem 1.75rem;
  text-align: center;
  box-shadow: 0 20px 25px -5px rgba(34, 211, 238, 0.2);
  transition: transform 0.3s ease, background 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-4px);
  background: #fff;
}

.btn-ghost {
  display: inline-block;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-weight: 900;
  padding: 1rem 1.75rem;
  text-align: center;
  backdrop-filter: blur(8px);
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.btn-ghost:hover {
  transform: translateY(-4px);
  border-color: rgba(196, 181, 253, 0.6);
  background: rgba(167, 139, 250, 0.1);
  color: var(--violet-200);
}

.btn-danger {
  display: inline-block;
  border-radius: 0.75rem;
  border: 1px solid rgba(253, 164, 175, 0.3);
  background: rgba(244, 63, 94, 0.1);
  color: var(--rose-200);
  font-weight: 900;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.btn-danger:hover {
  background: rgba(244, 63, 94, 0.2);
  border-color: var(--rose-200);
}

/* ── Badges ── */
.badge {
  display: inline-flex;
  border-radius: 9999px;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 900;
}

.badge-cyan {
  background: rgba(34, 211, 238, 0.1);
  color: var(--cyan-200);
}

.badge-violet {
  background: rgba(139, 92, 246, 0.1);
  color: var(--violet-200);
}

.badge-emerald {
  background: rgba(52, 211, 153, 0.1);
  color: var(--emerald-200);
}

.badge-amber {
  background: rgba(251, 191, 36, 0.1);
  color: var(--amber-300);
}

.badge-rose {
  background: rgba(244, 63, 94, 0.1);
  color: var(--rose-300);
}

.badge-active {
  background: rgba(52, 211, 153, 0.1);
  color: var(--emerald-300);
}

/* ── Form Elements ── */
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(2, 6, 23, 0.8);
  color: #fff;
  padding: 0.75rem 1rem;
  outline: none;
  transition: border-color 0.3s ease;
  appearance: none;
  -webkit-appearance: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--slate-500);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--cyan-300);
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--slate-300);
  margin-bottom: 0.5rem;
}

.form-textarea {
  resize: none;
}

/* ── Nav ── */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(2, 6, 23, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 25px 50px -12px rgba(8, 51, 68, 0.2);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-w);
  margin-inline: auto;
  padding: 1rem var(--px);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-logo-mark {
  display: grid;
  place-items: center;
  height: 2.5rem;
  width: 2.5rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(34, 211, 238, 0.3);
  background: rgba(34, 211, 238, 0.1);
  font-size: 0.75rem;
  font-weight: 900;
  color: var(--cyan-300);
  box-shadow: 0 10px 15px -3px rgba(8, 51, 68, 0.4);
  transition: border-color 0.3s ease, background 0.3s ease;
}

.nav-logo:hover .nav-logo-mark {
  border-color: rgba(103, 232, 249, 0.7);
  background: rgba(34, 211, 238, 0.2);
}

.nav-logo-text {
  font-size: 1.125rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  color: #fff;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  display: block;
  border-radius: 0.75rem;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--slate-300);
  transition: background 0.3s ease, color 0.3s ease;
}

.nav-link:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--cyan-300);
}

.nav-link.active {
  color: var(--cyan-300);
  background: rgba(255, 255, 255, 0.1);
}

.nav-cta {
  margin-left: 0.5rem;
  border-radius: 0.75rem;
  background: var(--cyan-400);
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 900;
  color: #020617;
  box-shadow: 0 10px 15px -3px rgba(34, 211, 238, 0.2);
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.nav-cta:hover {
  transform: translateY(-2px);
  background: #fff;
  box-shadow: 0 10px 15px -3px rgba(103, 232, 249, 0.3);
}

.nav-cta.active {
  box-shadow: 0 0 0 2px rgba(165, 243, 252, 0.5);
}

.nav-toggle {
  display: none;
  height: 2.5rem;
  width: 2.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: #f1f5f9;
  transition: border-color 0.3s ease, color 0.3s ease;
}

.nav-toggle:hover {
  border-color: rgba(103, 232, 249, 0.5);
  color: var(--cyan-300);
}

@media (max-width: 767px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(var(--nav-h) - 2px);
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(2, 6, 23, 0.95);
    padding: 0.75rem;
    box-shadow: 0 25px 50px -12px rgba(8, 51, 68, 0.3);
    backdrop-filter: blur(20px);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-link {
    padding: 0.75rem 1rem;
  }

  .nav-cta {
    margin-left: 0;
    margin-top: 0.5rem;
    text-align: center;
    padding: 0.75rem 1.25rem;
  }
}

/* ── Hover Lift ── */
.hover-lift {
  transition: transform 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-8px);
}

.hover-lift-sm {
  transition: transform 0.3s ease;
}

.hover-lift-sm:hover {
  transform: translateY(-4px);
}

/* ── Section spacing ── */
.main-content {
  max-width: var(--max-w);
  margin-inline: auto;
  padding: calc(var(--nav-h) + 3.5rem) var(--px) 5rem;
}

.page-header {
  margin-bottom: 3rem;
  max-width: 56rem;
}

/* ══════════════════════════════════════
   Styles from know-us.html
══════════════════════════════════════ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
}

body {
  font-family: var(--font-body, 'Poppins', sans-serif);
  background: #0d0d0d;
  color: #f1f5f9;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

:root {
  --cyan-200: #a5f3fc;
  --cyan-300: #67e8f9;
  --violet-200: #ddd6fe;
  --violet-300: #c4b5fd;
  --emerald-200: #a7f3d0;
  --emerald-300: #6ee7b7;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --max-w: 80rem;
  --px: 1rem;
  --nav-h: 74px;
}

@media (min-width: 640px) {
  :root {
    --px: 1.5rem;
  }
}

@media (min-width: 1024px) {
  :root {
    --px: 2rem;
  }
}

.bg-overlay {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: -10;
  background:
    radial-gradient(ellipse 70% 45% at 20% 10%, rgba(255, 255, 255, 0.04), transparent),
    radial-gradient(ellipse 55% 40% at 80% 15%, rgba(255, 255, 255, 0.03), transparent),
    linear-gradient(180deg, #0d0d0d, #111111 55%, #0a0a0a);
}

.main-content {
  max-width: var(--max-w);
  margin-inline: auto;
  padding: calc(var(--nav-h) + 3.5rem) var(--px) 5rem;
}

.page-header {
  margin-bottom: 3rem;
  max-width: 56rem;
}

.label {
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--cyan-300);
}

.page-title {
  margin-top: 1rem;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
}

.page-subtitle {
  margin-top: 1.25rem;
  font-size: 1.125rem;
  line-height: 2;
  color: var(--slate-300);
}

/* ── Team Grid ── */
.team-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ── Member Card ── */
.member-card {
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
  padding: 1.5rem;
  backdrop-filter: blur(12px);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.member-card:hover {
  transform: translateY(-8px);
}

.member-card.cyan:hover {
  border-color: rgba(103, 232, 249, 0.6);
  box-shadow: 0 25px 50px -12px rgba(8, 51, 68, 0.3);
}

.member-card.violet:hover {
  border-color: rgba(196, 181, 253, 0.6);
  box-shadow: 0 25px 50px -12px rgba(30, 20, 68, 0.3);
}

.member-card.emerald:hover {
  border-color: rgba(110, 231, 183, 0.6);
  box-shadow: 0 25px 50px -12px rgba(8, 38, 24, 0.3);
}

.member-top {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.avatar {
  display: grid;
  place-items: center;
  height: 5rem;
  width: 5rem;
  flex-shrink: 0;
  border-radius: 1rem;
  font-size: 1.5rem;
  font-weight: 900;
  color: #020617;
}

.avatar.cyan-violet {
  background: linear-gradient(135deg, var(--cyan-300), var(--violet-300));
}

.avatar.violet-emerald {
  background: linear-gradient(135deg, var(--violet-300), var(--emerald-300));
}

.avatar.emerald-cyan {
  background: linear-gradient(135deg, var(--emerald-300), var(--cyan-300));
}

.avatar.cyan-emerald {
  background: linear-gradient(135deg, #a5f3fc, var(--emerald-300));
}

.avatar.violet-cyan {
  background: linear-gradient(135deg, #ddd6fe, var(--cyan-300));
}

.avatar.emerald-violet {
  background: linear-gradient(135deg, #a7f3d0, var(--violet-300));
}

.member-name {
  font-size: 1.25rem;
  font-weight: 900;
  color: #fff;
}

.member-role {
  display: inline-flex;
  margin-top: 0.5rem;
  border-radius: 9999px;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 900;
}

.member-role.cyan {
  background: rgba(34, 211, 238, 0.1);
  color: var(--cyan-200);
}

.member-role.violet {
  background: rgba(139, 92, 246, 0.1);
  color: var(--violet-200);
}

.member-role.emerald {
  background: rgba(52, 211, 153, 0.1);
  color: var(--emerald-200);
}

/* ── Social links ── */
.socials {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
  color: var(--slate-300);
}

.social-btn {
  display: inline-flex;
  padding: 0.5rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: border-color 0.3s ease, color 0.3s ease;
}

.social-btn svg {
  height: 1.25rem;
  width: 1.25rem;
}

.member-card.cyan .social-btn:hover {
  border-color: rgba(103, 232, 249, 0.6);
  color: var(--cyan-300);
}

.member-card.violet .social-btn:hover {
  border-color: rgba(196, 181, 253, 0.6);
  color: var(--violet-300);
}

.member-card.emerald.social-btn:hover {
  border-color: rgba(110, 231, 183, 0.6);
  color: var(--emerald-300);
}

/* ── Compact member (no socials) ── */
.member-bio {
  margin-top: 1.25rem;
  font-size: 0.875rem;
  line-height: 1.75;
  color: var(--slate-400);
}

/* ══════════════════════════════════════
   Styles from navbar.html
══════════════════════════════════════ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --cyan-200: #a5f3fc;
  --cyan-300: #67e8f9;
  --cyan-400: #22d3ee;
  --violet-200: #ddd6fe;
  --slate-300: #cbd5e1;
  --nav-h: 74px;
  --max-w: 80rem;
  --px: 1rem;
}

@media (min-width: 640px) {
  :root {
    --px: 1.5rem;
  }
}

@media (min-width: 1024px) {
  :root {
    --px: 2rem;
  }
}

.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(2, 6, 23, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 25px 50px -12px rgba(8, 51, 68, 0.2);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-w);
  margin-inline: auto;
  padding: 1rem var(--px);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
}

.nav-logo-mark {
  display: grid;
  place-items: center;
  height: 2.5rem;
  width: 2.5rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(34, 211, 238, 0.3);
  background: rgba(34, 211, 238, 0.1);
  font-size: 0.75rem;
  font-weight: 900;
  color: var(--cyan-300);
  box-shadow: 0 10px 15px -3px rgba(8, 51, 68, 0.4);
  transition: border-color 0.3s ease, background 0.3s ease;
}

.nav-logo:hover .nav-logo-mark {
  border-color: rgba(103, 232, 249, 0.7);
  background: rgba(34, 211, 238, 0.2);
}

.nav-logo-text {
  font-size: 1.125rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  color: #fff;
}

.nav-toggle {
  display: none;
  height: 2.5rem;
  width: 2.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: #f1f5f9;
  cursor: pointer;
  transition: border-color 0.3s ease, color 0.3s ease;
}

.nav-toggle:hover {
  border-color: rgba(103, 232, 249, 0.5);
  color: var(--cyan-300);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  display: block;
  border-radius: 0.75rem;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--slate-300);
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
  font-family: var(--font-heading, 'Poppins', sans-serif);
}

.nav-link:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--cyan-300);
}

button.nav-link {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: none;
  background: transparent;
  color: inherit;
  padding: 0.5rem 1rem;
  font: inherit;
  cursor: pointer;
}

.nav-link.active {
  color: var(--cyan-300);
  background: rgba(255, 255, 255, 0.1);
  position: relative;
}

.nav-link.active::after {
  content: '';
  display: block;
  height: 2px;
  width: 100%;
  margin-top: 2px;
  border-radius: 9999px;
  background: rgba(103, 232, 249, 0.8);
}

.nav-cta {
  display: block;
  margin-left: 0.5rem;
  border-radius: 0.75rem;
  background: var(--cyan-400);
  padding: 0.625rem 1.25rem;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 900;
  color: #020617;
  text-decoration: none;
  box-shadow: 0 10px 15px -3px rgba(34, 211, 238, 0.2);
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  font-family: var(--font-heading, 'Poppins', sans-serif);
}

.nav-cta:hover {
  transform: translateY(-2px);
  background: #fff;
  box-shadow: 0 10px 15px -3px rgba(103, 232, 249, 0.3);
}

.nav-cta.active {
  box-shadow: 0 0 0 2px rgba(165, 243, 252, 0.5);
}

@media (max-width: 767px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: var(--nav-h);
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(2, 6, 23, 0.95);
    padding: 0.75rem;
    box-shadow: 0 25px 50px -12px rgba(8, 51, 68, 0.3);
    backdrop-filter: blur(20px);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-link {
    padding: 0.75rem 1rem;
  }

  .nav-cta {
    margin-left: 0;
    margin-top: 0.5rem;
    padding: 0.75rem 1.25rem;
  }
}

/* ══════════════════════════════════════
   Styles from register.html
══════════════════════════════════════ */
/* ===========================
   ACM JIT — Shared Design System
   =========================== */

/* ── Reset & Base ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body, 'Poppins', sans-serif);
  background-color: #020617;
  color: #f1f5f9;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
  font-family: inherit;
}

input,
textarea,
select {
  font-family: inherit;
}

/* ── CSS Variables ── */
:root {
  --cyan-200: #a5f3fc;
  --cyan-300: #67e8f9;
  --cyan-400: #22d3ee;
  --violet-200: #ddd6fe;
  --violet-300: #c4b5fd;
  --violet-400: #a78bfa;
  --emerald-200: #a7f3d0;
  --emerald-300: #6ee7b7;
  --emerald-400: #34d399;
  --amber-300: #fcd34d;
  --rose-200: #fecdd3;
  --rose-300: #fda4af;
  --fuchsia-300: #e879f9;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-950: #020617;

  --max-w: 80rem;
  --px: 1rem;
  --nav-h: 74px;
}

/* ── Background Overlay ── */
.bg-overlay {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: -10;
}

/* ── Layout ── */
.container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--px);
}

@media (min-width: 640px) {
  :root {
    --px: 1.5rem;
  }
}

@media (min-width: 1024px) {
  :root {
    --px: 2rem;
  }
}

/* ── Typography ── */
.label {
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--cyan-300);
}

.page-title {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-top: 1rem;
}

.page-subtitle {
  font-size: 1.125rem;
  line-height: 2;
  color: var(--slate-300);
  margin-top: 1.25rem;
  max-width: 48rem;
}

/* ── Cards ── */
.card {
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 1.5rem;
}

.card-xl {
  border-radius: 2rem;
}

/* ── Buttons ── */
.btn-primary {
  display: inline-block;
  border-radius: 0.75rem;
  background: var(--cyan-400);
  color: #020617;
  font-weight: 900;
  padding: 1rem 1.75rem;
  text-align: center;
  box-shadow: 0 20px 25px -5px rgba(34, 211, 238, 0.2);
  transition: transform 0.3s ease, background 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-4px);
  background: #fff;
}

.btn-ghost {
  display: inline-block;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-weight: 900;
  padding: 1rem 1.75rem;
  text-align: center;
  backdrop-filter: blur(8px);
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.btn-ghost:hover {
  transform: translateY(-4px);
  border-color: rgba(196, 181, 253, 0.6);
  background: rgba(167, 139, 250, 0.1);
  color: var(--violet-200);
}

.btn-danger {
  display: inline-block;
  border-radius: 0.75rem;
  border: 1px solid rgba(253, 164, 175, 0.3);
  background: rgba(244, 63, 94, 0.1);
  color: var(--rose-200);
  font-weight: 900;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.btn-danger:hover {
  background: rgba(244, 63, 94, 0.2);
  border-color: var(--rose-200);
}

/* ── Badges ── */
.badge {
  display: inline-flex;
  border-radius: 9999px;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 900;
}

.badge-cyan {
  background: rgba(34, 211, 238, 0.1);
  color: var(--cyan-200);
}

.badge-violet {
  background: rgba(139, 92, 246, 0.1);
  color: var(--violet-200);
}

.badge-emerald {
  background: rgba(52, 211, 153, 0.1);
  color: var(--emerald-200);
}

.badge-amber {
  background: rgba(251, 191, 36, 0.1);
  color: var(--amber-300);
}

.badge-rose {
  background: rgba(244, 63, 94, 0.1);
  color: var(--rose-300);
}

.badge-active {
  background: rgba(52, 211, 153, 0.1);
  color: var(--emerald-300);
}

/* ── Form Elements ── */
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(2, 6, 23, 0.8);
  color: #fff;
  padding: 0.75rem 1rem;
  outline: none;
  transition: border-color 0.3s ease;
  appearance: none;
  -webkit-appearance: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--slate-500);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--cyan-300);
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--slate-300);
  margin-bottom: 0.5rem;
}

.form-textarea {
  resize: none;
}

/* ── Nav ── */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(2, 6, 23, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 25px 50px -12px rgba(8, 51, 68, 0.2);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-w);
  margin-inline: auto;
  padding: 1rem var(--px);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-logo-mark {
  display: grid;
  place-items: center;
  height: 2.5rem;
  width: 2.5rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(34, 211, 238, 0.3);
  background: rgba(34, 211, 238, 0.1);
  font-size: 0.75rem;
  font-weight: 900;
  color: var(--cyan-300);
  box-shadow: 0 10px 15px -3px rgba(8, 51, 68, 0.4);
  transition: border-color 0.3s ease, background 0.3s ease;
}

.nav-logo:hover .nav-logo-mark {
  border-color: rgba(103, 232, 249, 0.7);
  background: rgba(34, 211, 238, 0.2);
}

.nav-logo-text {
  font-size: 1.125rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  color: #fff;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  display: block;
  border-radius: 0.75rem;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--slate-300);
  transition: background 0.3s ease, color 0.3s ease;
}

.nav-link:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--cyan-300);
}

.nav-link.active {
  color: var(--cyan-300);
  background: rgba(255, 255, 255, 0.1);
}

.nav-cta {
  margin-left: 0.5rem;
  border-radius: 0.75rem;
  background: var(--cyan-400);
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 900;
  color: #020617;
  box-shadow: 0 10px 15px -3px rgba(34, 211, 238, 0.2);
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.nav-cta:hover {
  transform: translateY(-2px);
  background: #fff;
  box-shadow: 0 10px 15px -3px rgba(103, 232, 249, 0.3);
}

.nav-cta.active {
  box-shadow: 0 0 0 2px rgba(165, 243, 252, 0.5);
}

.nav-toggle {
  display: none;
  height: 2.5rem;
  width: 2.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: #f1f5f9;
  transition: border-color 0.3s ease, color 0.3s ease;
}

.nav-toggle:hover {
  border-color: rgba(103, 232, 249, 0.5);
  color: var(--cyan-300);
}

@media (max-width: 767px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(var(--nav-h) - 2px);
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(2, 6, 23, 0.95);
    padding: 0.75rem;
    box-shadow: 0 25px 50px -12px rgba(8, 51, 68, 0.3);
    backdrop-filter: blur(20px);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-link {
    padding: 0.75rem 1rem;
  }

  .nav-cta {
    margin-left: 0;
    margin-top: 0.5rem;
    text-align: center;
    padding: 0.75rem 1.25rem;
  }
}

/* ── Hover Lift ── */
.hover-lift {
  transition: transform 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-8px);
}

.hover-lift-sm {
  transition: transform 0.3s ease;
}

.hover-lift-sm:hover {
  transform: translateY(-4px);
}

/* ── Section spacing ── */
.main-content {
  max-width: var(--max-w);
  margin-inline: auto;
  padding: calc(var(--nav-h) + 3.5rem) var(--px) 5rem;
}

.page-header {
  margin-bottom: 3rem;
  max-width: 56rem;
}

/* ══════════════════════════════════════
   Styles from verify.html
══════════════════════════════════════ */
/* ===========================
   ACM JIT — Shared Design System
   =========================== */

/* ── Reset & Base ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body, 'Poppins', sans-serif);
  background-color: #020617;
  color: #f1f5f9;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
  font-family: inherit;
}

input,
textarea,
select {
  font-family: inherit;
}

/* ── CSS Variables ── */
:root {
  --cyan-200: #a5f3fc;
  --cyan-300: #67e8f9;
  --cyan-400: #22d3ee;
  --violet-200: #ddd6fe;
  --violet-300: #c4b5fd;
  --violet-400: #a78bfa;
  --emerald-200: #a7f3d0;
  --emerald-300: #6ee7b7;
  --emerald-400: #34d399;
  --amber-300: #fcd34d;
  --rose-200: #fecdd3;
  --rose-300: #fda4af;
  --fuchsia-300: #e879f9;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-950: #020617;

  --max-w: 80rem;
  --px: 1rem;
  --nav-h: 74px;
}

/* ── Background Overlay ── */
.bg-overlay {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: -10;
}

/* ── Layout ── */
.container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--px);
}

@media (min-width: 640px) {
  :root {
    --px: 1.5rem;
  }
}

@media (min-width: 1024px) {
  :root {
    --px: 2rem;
  }
}

/* ── Typography ── */
.label {
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--cyan-300);
}

.page-title {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-top: 1rem;
}

.page-subtitle {
  font-size: 1.125rem;
  line-height: 2;
  color: var(--slate-300);
  margin-top: 1.25rem;
  max-width: 48rem;
}

/* ── Cards ── */
.card {
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 1.5rem;
}

.card-xl {
  border-radius: 2rem;
}

/* ── Buttons ── */
.btn-primary {
  display: inline-block;
  border-radius: 0.75rem;
  background: var(--cyan-400);
  color: #020617;
  font-weight: 900;
  padding: 1rem 1.75rem;
  text-align: center;
  box-shadow: 0 20px 25px -5px rgba(34, 211, 238, 0.2);
  transition: transform 0.3s ease, background 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-4px);
  background: #fff;
}

.btn-ghost {
  display: inline-block;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-weight: 900;
  padding: 1rem 1.75rem;
  text-align: center;
  backdrop-filter: blur(8px);
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.btn-ghost:hover {
  transform: translateY(-4px);
  border-color: rgba(196, 181, 253, 0.6);
  background: rgba(167, 139, 250, 0.1);
  color: var(--violet-200);
}

.btn-danger {
  display: inline-block;
  border-radius: 0.75rem;
  border: 1px solid rgba(253, 164, 175, 0.3);
  background: rgba(244, 63, 94, 0.1);
  color: var(--rose-200);
  font-weight: 900;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.btn-danger:hover {
  background: rgba(244, 63, 94, 0.2);
  border-color: var(--rose-200);
}

/* ── Badges ── */
.badge {
  display: inline-flex;
  border-radius: 9999px;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 900;
}

.badge-cyan {
  background: rgba(34, 211, 238, 0.1);
  color: var(--cyan-200);
}

.badge-violet {
  background: rgba(139, 92, 246, 0.1);
  color: var(--violet-200);
}

.badge-emerald {
  background: rgba(52, 211, 153, 0.1);
  color: var(--emerald-200);
}

.badge-amber {
  background: rgba(251, 191, 36, 0.1);
  color: var(--amber-300);
}

.badge-rose {
  background: rgba(244, 63, 94, 0.1);
  color: var(--rose-300);
}

.badge-active {
  background: rgba(52, 211, 153, 0.1);
  color: var(--emerald-300);
}

/* ── Form Elements ── */
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(2, 6, 23, 0.8);
  color: #fff;
  padding: 0.75rem 1rem;
  outline: none;
  transition: border-color 0.3s ease;
  appearance: none;
  -webkit-appearance: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--slate-500);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--cyan-300);
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--slate-300);
  margin-bottom: 0.5rem;
}

.form-textarea {
  resize: none;
}

/* ── Nav ── */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(2, 6, 23, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 25px 50px -12px rgba(8, 51, 68, 0.2);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-w);
  margin-inline: auto;
  padding: 1rem var(--px);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-logo-mark {
  display: grid;
  place-items: center;
  height: 2.5rem;
  width: 2.5rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(34, 211, 238, 0.3);
  background: rgba(34, 211, 238, 0.1);
  font-size: 0.75rem;
  font-weight: 900;
  color: var(--cyan-300);
  box-shadow: 0 10px 15px -3px rgba(8, 51, 68, 0.4);
  transition: border-color 0.3s ease, background 0.3s ease;
}

.nav-logo:hover .nav-logo-mark {
  border-color: rgba(103, 232, 249, 0.7);
  background: rgba(34, 211, 238, 0.2);
}

.nav-logo-text {
  font-size: 1.125rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  color: #fff;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  display: block;
  border-radius: 0.75rem;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--slate-300);
  transition: background 0.3s ease, color 0.3s ease;
}

.nav-link:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--cyan-300);
}

.nav-link.active {
  color: var(--cyan-300);
  background: rgba(255, 255, 255, 0.1);
}

.nav-cta {
  margin-left: 0.5rem;
  border-radius: 0.75rem;
  background: var(--cyan-400);
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 900;
  color: #020617;
  box-shadow: 0 10px 15px -3px rgba(34, 211, 238, 0.2);
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.nav-cta:hover {
  transform: translateY(-2px);
  background: #fff;
  box-shadow: 0 10px 15px -3px rgba(103, 232, 249, 0.3);
}

.nav-cta.active {
  box-shadow: 0 0 0 2px rgba(165, 243, 252, 0.5);
}

.nav-toggle {
  display: none;
  height: 2.5rem;
  width: 2.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: #f1f5f9;
  transition: border-color 0.3s ease, color 0.3s ease;
}

.nav-toggle:hover {
  border-color: rgba(103, 232, 249, 0.5);
  color: var(--cyan-300);
}

@media (max-width: 767px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(var(--nav-h) - 2px);
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(2, 6, 23, 0.95);
    padding: 0.75rem;
    box-shadow: 0 25px 50px -12px rgba(8, 51, 68, 0.3);
    backdrop-filter: blur(20px);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-link {
    padding: 0.75rem 1rem;
  }

  .nav-cta {
    margin-left: 0;
    margin-top: 0.5rem;
    text-align: center;
    padding: 0.75rem 1.25rem;
  }
}

/* ── Hover Lift ── */
.hover-lift {
  transition: transform 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-8px);
}

.hover-lift-sm {
  transition: transform 0.3s ease;
}

.hover-lift-sm:hover {
  transform: translateY(-4px);
}

/* ── Section spacing ── */
.main-content {
  max-width: var(--max-w);
  margin-inline: auto;
  padding: calc(var(--nav-h) + 3.5rem) var(--px) 5rem;
}

.page-header {
  margin-bottom: 3rem;
  max-width: 56rem;
}

/* ══════════════════════════════════════
   Splash Screen Styles
══════════════════════════════════════ */
.splash-screen {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 45% at 18% 12%, rgba(255, 255, 255, 0.04), transparent),
    radial-gradient(ellipse 55% 40% at 82% 8%, rgba(255, 255, 255, 0.03), transparent),
    linear-gradient(180deg, #0d0d0d, #111111 52%, #0a0a0a);
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeOutSplash 0.3s ease-out 0.75s forwards;
  pointer-events: none;
  overflow: hidden;
  will-change: opacity, visibility;
}

html.light-theme .splash-screen,
body.light-theme .splash-screen {
  background:
    radial-gradient(ellipse 70% 45% at 18% 12%, rgba(6, 182, 212, 0.06), transparent),
    radial-gradient(ellipse 55% 40% at 82% 8%, rgba(139, 92, 246, 0.06), transparent),
    linear-gradient(180deg, #f8fafc, #f1f5f9 52%, #e2e8f0);
}

.splash-bg-blobs {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: -1;
  animation: bgDisperse 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  will-change: transform, opacity;
}

.splash-blob {
  position: absolute;
  border-radius: 50%;
}

.splash-blob-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.5) 0%, rgba(34, 211, 238, 0) 65%);
  transform: translate(-30%, -30%);
}

.splash-blob-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.5) 0%, rgba(139, 92, 246, 0) 65%);
  transform: translate(30%, 30%);
}

html.light-theme .splash-blob-1,
body.light-theme .splash-blob-1 {
  background: radial-gradient(circle, rgba(6, 182, 212, 0.6) 0%, rgba(6, 182, 212, 0) 65%);
}

html.light-theme .splash-blob-2,
body.light-theme .splash-blob-2 {
  background: radial-gradient(circle, rgba(139, 92, 246, 0.6) 0%, rgba(139, 92, 246, 0) 65%);
}

.splash-logo {
  width: 140px;
  height: 140px;
  object-fit: contain;
  border-radius: 50%;
  background-color: #ffffff;
  padding: 8px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.05);
  animation: logoDisperse 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes logoDisperse {
  0% {
    transform: scale(0.9);
    filter: blur(4px);
    opacity: 0;
  }

  20% {
    transform: scale(1);
    filter: blur(0);
    opacity: 1;
  }

  60% {
    transform: scale(1.05);
    filter: blur(0);
    opacity: 1;
  }

  100% {
    transform: scale(2.5);
    filter: blur(12px);
    opacity: 0;
  }
}

@keyframes bgDisperse {
  0% {
    transform: scale(0.8) rotate(0deg);
    opacity: 0;
  }

  20% {
    transform: scale(1) rotate(45deg);
    opacity: 1;
  }

  60% {
    transform: scale(1.1) rotate(90deg);
    opacity: 1;
  }

  100% {
    transform: scale(3) rotate(180deg);
    opacity: 0;
    filter: blur(80px);
  }
}

@keyframes fadeOutSplash {
  0% {
    opacity: 1;
    visibility: visible;
  }

  100% {
    opacity: 0;
    visibility: hidden;
    display: none;
  }
}
/* -- Announcements Grid & Cards (Base structure, design handled in announcements.css) -- */
.announcements-grid {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

@media (max-width: 639px) {
  .space-card {
    flex-direction: column;
    gap: 1.25rem;
    padding: 1.5rem;
  }
}
