
/* ===== base.css ===== */
/* ============================================================
   BASE.CSS — Variables, Reset, Typography
   Exium Classes · exium.in
   ============================================================ */

/* ── CSS Custom Properties ── */
:root {
  /* Brand palette */
  --navy:        #1a2d5a;
  --navy-dark:   #0e1c3a;
  --navy-mid:    #22396e;
  --navy-light:  #2e4d8f;
  --red:         #cc1f1f;
  --red-bright:  #e53030;
  --white:       #ffffff;
  --off-white:   #f2f5fc;
  --silver:      #c8d2e8;
  --muted:       #7a8db0;
  --blue-acc:    #4a6fc7;
  --blue-light:  #7a9ee0;
  --line:        rgba(200, 210, 232, 0.15);
  --text:        rgba(200, 210, 232, 0.82);

  /* Typography */
  --font-serif:  'Playfair Display', serif;
  --font-sans:   'DM Sans', sans-serif;
  --font-mono:   'Space Mono', monospace;
}

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

html {
  scroll-behavior: smooth;
}

/* ── Base Body ── */
body {
  font-family: var(--font-sans);
  background: var(--navy-dark);
  color: var(--white);
  overflow-x: hidden;
  min-height: 100vh;
}

/* Noise texture overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
  opacity: 0.6;
}

/* ── Typography ── */
.label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #f07070;
  margin-bottom: 0.9rem;
  display: block;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.body-text {
  font-size: 0.98rem;
  font-weight: 300;
  color: rgba(200, 210, 232, 0.65);
  line-height: 1.85;
  max-width: 50ch;
  margin-top: 1.2rem;
}

/* ── Animations ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes blink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.65); }
}


/* ===== layout.css ===== */
/* ============================================================
   LAYOUT.CSS — Grid, Containers, Spacing, Page Structure
   Exium Classes · exium.in
   ============================================================ */

/* ── Divider ── */
.divider {
  height: 1px;
  margin: 0 4rem;
  background: linear-gradient(90deg, transparent, rgba(200, 210, 232, 0.18), transparent);
}

/* ── Sections ── */
section {
  padding: 3rem 3rem;
  position: relative;
  z-index: 1;
}

/* ── Hero (Homepage) ── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 9rem 4rem 5rem;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.hero::before {
  content: '';
  position: absolute;
  top: -10%; right: -5%;
  width: 55%; height: 120%;
  background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy) 100%);
  clip-path: polygon(12% 0%, 100% 0%, 100% 100%, 0% 100%);
  z-index: 0;
}

.hero-left  { position: relative; z-index: 2; }
.hero-right { position: relative; z-index: 2; padding-left: 3.5rem; }

.hero-glow {
  position: absolute;
  top: 10%; right: 5%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(204, 31, 31, 0.07) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* ── Why Section ── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  margin-top: 4rem;
}

/* ── Schedule Section ── */
.schedule-section {
  background: linear-gradient(180deg, transparent, rgba(26, 45, 90, 0.4), transparent);
}

.sched-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 3.5rem;
}

.sched-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

/* ── Reviews ── */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 3.5rem;
}

/* ── FAQ Section ── */
#faq {
  position: relative;
  z-index: 1;
  padding: 3rem 3rem;
  background: linear-gradient(180deg, transparent, rgba(26, 45, 90, 0.3), transparent);
}

#faq .faq-header {
  margin-bottom: 3.5rem;
}

/* ── CTA Section ── */
.cta-section {
  text-align: center;
  overflow: hidden;
  background: linear-gradient(180deg, transparent, rgba(26, 45, 90, 0.5));
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 70% at 50% 50%, rgba(74, 111, 199, 0.07), transparent 70%);
  pointer-events: none;
}

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

/* ── Page Hero Strip (inner pages) ── */
.page-hero {
  position: relative;
  z-index: 1;
  padding: 9rem 3rem 3.5rem;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse 70% 100% at 80% 50%, rgba(74, 111, 199, 0.07) 0%, transparent 70%),
    radial-gradient(ellipse 40% 80% at 10% 60%, rgba(204, 31, 31, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.page-hero::after {
  content: '//';
  position: absolute;
  right: 4rem; top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-serif);
  font-size: 14rem; font-weight: 900; line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(74, 111, 199, 0.07);
  pointer-events: none;
  user-select: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 2rem;
}

/* ── Accent Line (inner pages) ── */
.accent-line {
  height: 1px;
  margin: 0 4rem;
  background: linear-gradient(90deg, transparent, rgba(200, 210, 232, 0.18), transparent);
  position: relative;
  z-index: 1;
}

/* ── Main Content (registration/contact) ── */
.main-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 0;
  margin: 0 4rem 5rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
}

.main-content::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-acc) 0%, var(--red) 100%);
  z-index: 2;
}

/* ── Sidebar ── */
.sidebar {
  background: rgba(26, 45, 90, 0.55);
  border-right: 1px solid var(--line);
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

/* ── Responsive ── */
@media (max-width: 960px) {
  .page-hero  { padding: 4rem 1.5rem 2rem; }
  .page-hero::after { display: none; }
  .hero-inner { flex-direction: column; align-items: flex-start; }
  .accent-line { margin: 0 1.5rem; }

  .main-content {
    grid-template-columns: 1fr;
    margin: 0 1.5rem 4rem;
  }

  .sidebar {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 900px) {
  section   { padding: 4rem 1.5rem; }
  .divider  { margin: 0 1.5rem; }

  .hero {
    grid-template-columns: 1fr;
    padding: 5rem 1.5rem 4rem;
  }

  .hero::before { display: none; }
  .hero::after  { display: none; }
  .hero-right   { padding-left: 0; margin-top: 2rem; }

  .why-grid,
  .sched-grid,
  .reviews-grid { grid-template-columns: 1fr; }

  .sched-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .rev-card:first-child { grid-column: 1; }

  #faq { padding: 5rem 1.5rem; }
}


/* ===== components.css ===== */
/* ============================================================
   COMPONENTS.CSS — Navbar, Buttons, Cards, Sections, Footer
   Exium Classes · exium.in
   ============================================================ */

/* ── NAV ── */
/* Scoped to .site-nav to avoid colliding with <nav> used inside footer */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4rem;
  height: 70px;
  background: rgba(14, 28, 58, 0.93);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.nav-logo {
  display: flex;
  align-items: center;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  backdrop-filter: blur(10px);
  text-decoration: none;
  transition: transform 0.2s ease;
}

.nav-logo:hover { transform: translateY(-1px); }
.nav-logo img   { height: 38px; width: auto; display: block; }

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

.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--white); }

.nav-cta {
  background: var(--red) !important;
  color: var(--white) !important;
  padding: 0.55rem 1.4rem;
  border-radius: 3px;
  font-weight: 600 !important;
  letter-spacing: 0.06em !important;
  transition: background 0.2s !important;
}

.nav-cta:hover { background: var(--red-bright) !important; }

/* Inner-page nav variants */
.nav-back {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-back:hover { color: var(--white); }
.nav-back svg   { width: 16px; height: 16px; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-tag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: rgba(204, 31, 31, 0.12);
  border: 1px solid rgba(204, 31, 31, 0.35);
  color: #f07070;
  padding: 0.3rem 0.75rem;
  border-radius: 2px;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.nav-tag::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--red);
  animation: blink 2s infinite;
  flex-shrink: 0;
}

/* ── BUTTONS ── */
.btn-primary {
  background: var(--red);
  color: var(--white);
  padding: 0.9rem 2.2rem;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, transform 0.2s;
}

.btn-primary:hover {
  background: var(--red-bright);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--silver);
  padding: 0.9rem 2.2rem;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  border: 1px solid rgba(200, 210, 232, 0.28);
  border-radius: 3px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
}

.btn-outline:hover {
  border-color: var(--silver);
  color: var(--white);
  transform: translateY(-2px);
}

/* ── HERO ELEMENTS ── */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(204, 31, 31, 0.12);
  border: 1px solid rgba(204, 31, 31, 0.4);
  padding: 0.4rem 1rem;
  border-radius: 2px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #f07070;
  margin-bottom: 2rem;
  animation: fadeUp 0.7s ease both;
}

/* Page-hero badge variant (blue) */
.page-hero .hero-badge {
  background: rgba(74, 111, 199, 0.1);
  border: 1px solid rgba(74, 111, 199, 0.3);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--blue-light);
  margin-bottom: 1.2rem;
  animation: fadeUp 0.6s ease both;
}

.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--red);
  animation: blink 2s infinite;
}

.page-hero .hero-badge::before { display: none; }

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 4.2vw, 5rem);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.7s 0.12s ease both;
}

.hero-title em { font-style: italic; color: #7a9ee0; }

.hero-sub {
  font-size: 1.02rem;
  font-weight: 300;
  color: rgba(200, 210, 232, 0.68);
  line-height: 1.78;
  max-width: 46ch;
  margin-bottom: 2.5rem;
  animation: fadeUp 0.7s 0.24s ease both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp 0.7s 0.36s ease both;
}

/* Page title / sub (inner pages) */
.page-title {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 4.5vw, 5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  animation: fadeUp 0.6s 0.1s ease both;
}

.page-title em { font-style: italic; color: var(--blue-light); }

.page-sub {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(200, 210, 232, 0.6);
  line-height: 1.75;
  max-width: 48ch;
  margin-top: 1rem;
  animation: fadeUp 0.6s 0.2s ease both;
}

/* ── CTA SECTION ELEMENTS ── */
.cta-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 4.5vw, 4.8rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.05;
  max-width: 18ch;
  margin: 1rem auto 1.5rem;
}

.cta-sub {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 3rem;
}

.cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-link {
  display: block;
  margin-top: 2.5rem;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  color: #7a9ee0;
  text-decoration: none;
  transition: color 0.2s;
}

.cta-link:hover { color: var(--white); }


/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--line);
  padding: 2rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: var(--muted);
  background: var(--navy-dark);
  position: relative;
  z-index: 1;
}

.footer-logo img { height: 28px; opacity: 0.7; }

.footer-links { display: flex; gap: 2rem; }

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--white); }




/* ============================================================
   MOBILE NAV — Glassmorphism slide-from-right drawer
   Add to bottom of css/components.css
   ============================================================ */

/* ── Hamburger button ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  background: transparent;
  border: 1px solid rgba(200, 210, 232, 0.18);
  border-radius: 6px;
  cursor: pointer;
  padding: 8px 7px;
  margin-left: auto;
  transition: border-color 0.2s, background 0.2s;
  flex-shrink: 0;
}

.nav-hamburger:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(200, 210, 232, 0.35);
}

.nav-hamburger .bar {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--silver);
  border-radius: 2px;
  transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1),
              opacity   0.25s ease,
              width     0.3s ease;
  transform-origin: center;
}

/* Hamburger → X animation when open */
.nav-hamburger.is-open .bar-1 {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-hamburger.is-open .bar-2 {
  opacity: 0;
  width: 0;
}
.nav-hamburger.is-open .bar-3 {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ── Backdrop ── */
.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 150;
  background: rgba(8, 15, 35, 0.55);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.nav-backdrop.is-open {
  display: block;
  opacity: 1;
}

/* ── Drawer ── */
.nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  width: min(320px, 88vw);

  /* Glassmorphism */
  background: rgba(14, 28, 58, 0.92);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border-left: 1px solid rgba(200, 210, 232, 0.1);

  /* Decorative gradient edge */
  box-shadow:
    -1px 0 0 0 rgba(74, 111, 199, 0.15),
    -20px 0 60px rgba(8, 15, 35, 0.4);

  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;

  /* Slide-in animation */
  transform: translateX(100%);
  transition: transform 0.42s cubic-bezier(0.23, 1, 0.32, 1);
  will-change: transform;
}

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

/* Subtle top accent line */
.nav-drawer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue-acc), var(--red));
}

/* ── Drawer header ── */
.nav-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(200, 210, 232, 0.08);
}

.nav-drawer__logo {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.02em;
}

.nav-drawer__logo span { color: var(--red); }

.nav-drawer__close {
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(200, 210, 232, 0.15);
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: color 0.2s, background 0.2s, border-color 0.2s;
  flex-shrink: 0;
}

.nav-drawer__close:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(200, 210, 232, 0.3);
}

.nav-drawer__close svg {
  width: 16px;
  height: 16px;
}

/* ── Drawer links ── */
.nav-drawer__links {
  list-style: none;
  padding: 0.75rem 0;
  flex: 1;
}

.nav-drawer__links li {
  opacity: 0;
  transform: translateX(18px);
  transition:
    opacity  0.35s ease calc(var(--i) * 0.06s + 0.1s),
    transform 0.35s cubic-bezier(0.23, 1, 0.32, 1) calc(var(--i) * 0.06s + 0.1s);
}

.nav-drawer.is-open .nav-drawer__links li {
  opacity: 1;
  transform: translateX(0);
}

.nav-drawer__links a {
  display: flex;
  align-items: center;
  padding: 0.95rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(200, 210, 232, 0.75);
  text-decoration: none;
  letter-spacing: 0.01em;
  border-left: 2px solid transparent;
  transition: color 0.2s, background 0.2s, border-color 0.2s;
}

.nav-drawer__links a:hover {
  color: var(--white);
  background: rgba(74, 111, 199, 0.08);
  border-left-color: var(--blue-acc);
}

/* ── Drawer footer ── */
.nav-drawer__footer {
  padding: 1.25rem 1.5rem 2rem;
  border-top: 1px solid rgba(200, 210, 232, 0.08);
  opacity: 0;
  transform: translateX(18px);
  transition:
    opacity  0.35s ease calc(var(--i) * 0.06s + 0.1s),
    transform 0.35s cubic-bezier(0.23, 1, 0.32, 1) calc(var(--i) * 0.06s + 0.1s);
}

.nav-drawer.is-open .nav-drawer__footer {
  opacity: 1;
  transform: translateX(0);
}

.nav-drawer__cta {
  display: block;
  background: var(--red);
  color: var(--white);
  text-align: center;
  padding: 0.9rem 1rem;
  border-radius: 4px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.nav-drawer__cta:hover {
  background: var(--red-bright);
  transform: translateY(-1px);
}

.nav-drawer__tagline {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  margin-top: 0.85rem;
  opacity: 0.6;
}


/* ── RESPONSIVE COMPONENTS ── */
@media (max-width: 900px) {
  .site-nav { padding: 0 1rem; }

  .nav-logo img { height: 28px; }
  .nav-logo     { padding: 4px 8px; }
  .nav-tag      { display: none; }

  .nav-cta {
    padding: 0.55rem 1rem;
    font-size: 0.75rem;
    white-space: nowrap;
  }

  .nav-links { gap: 0; margin-left: auto; }

  .nav-links li:not(:last-child) { display: none; }

  footer {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
    padding: 2rem 1.5rem;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .nav-hamburger { display: flex; }
}

/* ── Lock body scroll when drawer open ── */
body.nav-open {
  overflow: hidden;
}

/* ===== communication.css ===== */
.comm-body{background:#0a1628;color:#e0e8f8;min-height:100vh}.comm-layout{display:grid;grid-template-columns:230px 1fr;min-height:100vh}.comm-sidebar{background:#0e1c3a;border-right:1px solid rgba(200,210,232,.12);padding:1.25rem;display:flex;flex-direction:column;gap:.8rem}.comm-brand{font-family:Georgia,serif;font-size:1.35rem;font-weight:700;color:#fff;margin-bottom:1rem}.comm-brand span{color:#cc1f1f}.comm-brand small{display:block;font-family:monospace;font-size:.62rem;letter-spacing:.12em;text-transform:uppercase;color:#7a8db0;margin-top:.25rem}.comm-nav{display:flex;flex-direction:column;gap:.35rem}.comm-nav a,.comm-logout{color:#b9c6df;text-decoration:none;border-radius:8px;padding:.72rem .85rem;font-size:.9rem}.comm-nav a:hover,.comm-nav a.is-active{background:rgba(255,255,255,.06);color:#fff}.comm-user{margin-top:auto;color:#7a8db0;font-size:.8rem;border-top:1px solid rgba(200,210,232,.1);padding-top:1rem}.comm-user strong{color:#fff}.comm-logout{border:1px solid rgba(200,210,232,.14);text-align:center}.comm-main{padding:2rem;overflow-x:auto}.comm-topbar{display:flex;align-items:flex-start;justify-content:space-between;gap:1rem;margin-bottom:1.5rem}.comm-topbar .section-title{margin:.2rem 0 0}.comm-stats{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:1rem;margin-bottom:1.25rem}.comm-card,.comm-panel{background:rgba(255,255,255,.035);border:1px solid rgba(200,210,232,.13);border-radius:14px}.comm-card{padding:1.25rem}.comm-card strong{display:block;color:#fff;font-size:2rem}.comm-card span,.comm-muted{color:#8fa0bf}.comm-panel{padding:1.25rem;margin-bottom:1.25rem}.comm-panel h2{margin:0 0 1rem;color:#fff}.comm-panel-head{display:flex;align-items:center;justify-content:space-between;gap:1rem;margin-bottom:1rem}.comm-table-wrap{overflow:auto}.comm-table{width:100%;border-collapse:collapse;min-width:760px}.comm-table th,.comm-table td{padding:.8rem;border-bottom:1px solid rgba(200,210,232,.1);text-align:left;vertical-align:top}.comm-table th{font-size:.72rem;letter-spacing:.1em;text-transform:uppercase;color:#7a8db0}.comm-table small{display:block;color:#7a8db0;margin-top:.15rem}.comm-filters,.comm-form{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:.85rem;align-items:end;margin-bottom:1.25rem}.comm-form{grid-template-columns:repeat(5,minmax(0,1fr)) auto}.comm-filters input,.comm-filters select,.comm-form input,.comm-form select,.comm-table input{width:100%;background:rgba(255,255,255,.05);border:1px solid rgba(200,210,232,.16);border-radius:8px;color:#fff;padding:.75rem}.comm-form label{display:block;color:#7a8db0;font-size:.72rem;text-transform:uppercase;letter-spacing:.1em;margin-bottom:.35rem}.comm-marks-input{max-width:110px}.comm-actions{display:flex;gap:.8rem;margin-top:1rem}.comm-success,.comm-alert{border-radius:10px;padding:.85rem 1rem;margin-bottom:1rem}.comm-success{background:rgba(21,128,61,.14);border:1px solid rgba(21,128,61,.35);color:#9ee6b5}.comm-alert{background:rgba(204,31,31,.12);border:1px solid rgba(204,31,31,.32);color:#ff9b9b}.comm-status{display:inline-block;border-radius:999px;padding:.25rem .55rem;font-size:.75rem;background:rgba(255,255,255,.08);color:#dce6f8}.comm-status--ready{background:rgba(74,111,199,.18);color:#a9c1ff}.comm-status--sent{background:rgba(21,128,61,.18);color:#9ee6b5}.comm-status--failed{background:rgba(204,31,31,.16);color:#ff9b9b}.comm-message-preview{border:1px solid rgba(200,210,232,.12);border-radius:12px;padding:1rem;margin-bottom:1rem}.comm-message-preview label{display:flex;justify-content:space-between;gap:1rem;color:#fff;font-weight:600}.comm-message-preview label span{color:#8fa0bf;font-weight:400}.comm-message-preview pre,details pre{white-space:pre-wrap;font-family:inherit;background:rgba(0,0,0,.18);border-radius:10px;padding:1rem;margin-top:.75rem;color:#e8eefc}.comm-table details summary{cursor:pointer;color:#9eb7f5}@media(max-width:900px){.comm-layout{grid-template-columns:1fr}.comm-sidebar{position:static}.comm-stats,.comm-filters,.comm-form{grid-template-columns:1fr}.comm-topbar{flex-direction:column}.comm-main{padding:1rem}}

/* Communication admin login */
.comm-login-body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.comm-login-card {
  width: 100%;
  max-width: 380px;
  overflow: hidden;
}

.comm-login-top {
  height: 3px;
}

.comm-login-inner {
  padding: 2rem;
}

.comm-login-logo {
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.comm-login-title {
  margin-bottom: 1.5rem;
}

.comm-login-card label {
  display: block;
  margin-bottom: 0.4rem;
}

.comm-login-card input {
  width: 100%;
  margin-bottom: 1rem;
}

.comm-form--upload{grid-template-columns:2fr 1fr 1.5fr auto}.comm-status--matched,.comm-status--imported{background:rgba(21,128,61,.18);color:#9ee6b5}.comm-status--unmatched,.comm-status--duplicate,.comm-status--missing_marks{background:rgba(204,31,31,.16);color:#ffb0b0}.btn-primary:disabled{opacity:.45;cursor:not-allowed}

.comm-mini-stats {
  display: flex;
  align-items: stretch;
  gap: .8rem;
  flex-wrap: wrap;
}

.comm-mini-stats > div {
  min-width: 140px;
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(200,210,232,.13);
  border-radius: 12px;
  padding: .75rem .9rem;
}

.comm-mini-stats strong {
  display: block;
  color: #fff;
  font-size: 1.25rem;
  line-height: 1.1;
}

.comm-mini-stats span {
  display: block;
  color: #8fa0bf;
  font-size: .75rem;
  margin-top: .25rem;
}

/* v1.6 action and dropdown fixes */
.comm-actions-inline {
  white-space: nowrap;
}

.comm-actions-inline .separator {
  margin: 0 8px;
  color: #8fa0bf;
}

.comm-actions-inline .cta-link {
  display: inline;
}

.comm-inline-form {
  display: inline;
  margin: 0;
  padding: 0;
}

.comm-link-button {
  appearance: none;
  border: 0;
  background: transparent;
  color: #9eb7f5;
  cursor: pointer;
  font: inherit;
  letter-spacing: .12em;
  padding: 0;
}

.comm-link-button:hover {
  color: #ffffff;
}

.comm-form select,
.comm-panel select,
.comm-filters select {
  background: #0b1628;
  color: #ffffff;
}

.comm-form select option,
.comm-panel select option,
.comm-filters select option {
  background-color: #ffffff;
  color: #000000;
}
