:root {
  /* Rich Color Palette (Replacing excessive plain whites with warm champagne, deep slate, and lush emerald teal) */
  --navy: #071922;
  --navy-mid: #0d2735;
  --navy-card: #123344;
  --teal: #0c837f;
  --teal-dark: #075f5c;
  --teal-light: #7de0cc;
  --teal-subtle: #e6f6f3;
  --orange: #e76f27;
  --orange-hover: #d25b15;
  --orange-light: #ffede2;
  
  /* Rich Tonal Backgrounds */
  --bg-page: #fbfaf7;
  --bg-card: #ffffff;
  --bg-warm: #f4ede2;
  --bg-soft-cream: #faf7f0;
  --bg-slate: #edf3f3;
  --bg-mint: #eaf3f0;
  --bg-dark: #071822;

  /* Typography Colors */
  --ink: #112028;
  --ink-secondary: #2c424d;
  --muted: #5e737e;
  --line: #d8e2df;
  --line-strong: #bfd0cc;

  /* Elevation Shadows */
  --shadow-sm: 0 4px 14px rgba(7, 25, 34, 0.04);
  --shadow-md: 0 10px 30px rgba(7, 25, 34, 0.08);
  --shadow-lg: 0 20px 50px rgba(7, 25, 34, 0.12);
  --shadow-glow: 0 0 40px rgba(12, 131, 127, 0.18);
  --radius: 20px;
}

*, *::before, *::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background-color: var(--bg-page);
  font-family: "DM Sans", system-ui, -apple-system, sans-serif;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: "Manrope", sans-serif;
  color: var(--navy);
  line-height: 1.2;
  margin: 0 0 1rem;
  font-weight: 700;
}

h1 { font-size: clamp(2.4rem, 5vw, 4.4rem); letter-spacing: -0.04em; }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.9rem); letter-spacing: -0.03em; }
h3 { font-size: 1.35rem; letter-spacing: -0.02em; }
h4 { font-size: 1.05rem; }
p { margin: 0 0 1.25rem; color: var(--muted); }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

.container {
  width: min(1200px, calc(100% - 48px));
  margin-inline: auto;
}

/* ========================================================
   TOPBAR
======================================================== */
.topbar {
  background: #05131a;
  color: #c4d7dc;
  font-size: 0.77rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0 24px;
}
.topbar-inner {
  max-width: 1320px;
  margin: auto;
  min-height: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.topbar-left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.topbar-pill {
  background: rgba(125, 224, 204, 0.15);
  color: var(--teal-light);
  border: 1px solid rgba(125, 224, 204, 0.35);
  font-size: 0.65rem;
  font-weight: 800;
  padding: 2px 9px;
  border-radius: 999px;
  letter-spacing: 0.1em;
}
.topbar-lead {
  font-weight: 500;
}
.topbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.75rem;
}
.topbar-date {
  color: #9ab4bb;
}
.topbar-link {
  color: var(--teal-light);
  font-weight: 700;
}
.topbar-link:hover { text-decoration: underline; }

/* ========================================================
   HEADER & PRECISE THREE-ZONE NAVIGATION
======================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 300;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 4px 20px rgba(7, 25, 34, 0.04);
}
.nav-container {
  width: min(1340px, calc(100% - 36px));
  margin-inline: auto;
}
.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* Zone 1: Brand */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--navy-mid), #091e28);
  color: #ffffff;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.06em;
  box-shadow: 0 4px 12px rgba(7, 25, 34, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.brand-mark span { color: var(--teal-light); }
.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.brand-copy strong {
  font-family: "Manrope", sans-serif;
  font-size: 1.02rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.03em;
}
.brand-copy small {
  font-size: 0.63rem;
  color: var(--teal);
  font-weight: 800;
  letter-spacing: 0.16em;
  margin-top: 3px;
}

/* Zone 2: Navigation Links Pill Bar */
.main-nav {
  display: flex;
  align-items: center;
  flex-grow: 1;
  justify-content: center;
}
.nav-links {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--bg-slate);
  border: 1px solid var(--line);
  padding: 5px 8px;
  border-radius: 999px;
}
.nav-link {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--ink-secondary);
  border-radius: 999px;
  white-space: nowrap;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
}
.nav-link:hover {
  color: var(--teal-dark);
  background: rgba(255, 255, 255, 0.85);
}
.nav-link.active {
  color: #ffffff;
  background: var(--teal);
  box-shadow: 0 3px 10px rgba(12, 131, 127, 0.32);
}
.drawer-actions {
  display: none;
}

/* Zone 3: Header Right CTAs */
.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.header-cta-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 12px 24px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  white-space: nowrap;
  line-height: 1;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.2s ease, background-color 0.2s ease;
  text-decoration: none;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--orange), #ef7c36);
  color: #ffffff;
  box-shadow: 0 6px 18px rgba(231, 111, 39, 0.28);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #d25b15, #e76f27);
  box-shadow: 0 8px 22px rgba(231, 111, 39, 0.36);
}
.btn-teal {
  background: var(--teal);
  color: #ffffff;
  box-shadow: 0 6px 18px rgba(12, 131, 127, 0.28);
}
.btn-teal:hover { background: var(--teal-dark); }
.btn-outline {
  border-color: var(--navy);
  color: var(--navy);
  background: transparent;
}
.btn-outline:hover {
  background: var(--navy);
  color: #ffffff;
}
.btn-white {
  background: #ffffff;
  color: var(--navy);
  box-shadow: var(--shadow-sm);
}
.btn-white:hover {
  background: var(--bg-soft-cream);
}
.btn-small {
  padding: 9px 16px;
  font-size: 0.79rem;
}

/* Mobile Hamburger Toggle */
.menu-toggle {
  display: none;
  background: var(--bg-slate);
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
  padding: 9px 10px;
  width: 42px;
  height: 42px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.hamburger-bar {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.menu-toggle[aria-expanded="true"] .hamburger-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] .hamburger-bar:nth-child(2) {
  opacity: 0;
}
.menu-toggle[aria-expanded="true"] .hamburger-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ========================================================
   GLOBAL SECTIONS & DIVERSE COLOR PALETTES
======================================================== */
.section {
  padding: 85px 0;
  position: relative;
}

/* Color Variant Backgrounds (Eliminating Plain White Bleed) */
.section-slate { background-color: var(--bg-slate); }
.section-cream { background-color: var(--bg-warm); }
.section-mint { background-color: var(--bg-mint); }
.section-soft-cream { background-color: var(--bg-soft-cream); }
.section-dark {
  background: radial-gradient(circle at 80% 20%, #113c4c 0%, var(--navy) 70%);
  color: #ffffff;
}
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: #ffffff; }
.section-dark p { color: #c4d7dc; }

.section-head {
  max-width: 760px;
  margin-bottom: 48px;
}
.section-head.center {
  text-align: center;
  margin-inline: auto;
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 12px;
}
.kicker::before {
  content: "";
  width: 16px;
  height: 2px;
  background: currentColor;
}
.section-dark .kicker { color: var(--teal-light); }

/* Grid Layouts */
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }

/* Rich Card System */
.card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
  overflow: hidden;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--line-strong);
}
.card-featured {
  border: 2px solid var(--teal);
  background: linear-gradient(180deg, #ffffff, #f4faf8);
}
.card-dark {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
}
.card-dark:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
}

.icon-badge {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: var(--teal-subtle);
  color: var(--teal-dark);
  font-weight: 800;
  display: grid;
  place-items: center;
  font-size: 1.15rem;
  margin-bottom: 20px;
  border: 1px solid rgba(12, 131, 127, 0.15);
}
.icon-orange {
  background: var(--orange-light);
  color: var(--orange);
  border-color: rgba(231, 111, 39, 0.2);
}

/* ========================================================
   HERO SECTION (DARK OBSIDIAN & TEAL)
======================================================== */
.hero {
  position: relative;
  background: radial-gradient(circle at 85% 15%, #0f4051 0%, var(--navy) 65%);
  color: #ffffff;
  padding: 95px 0 110px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.hero::after {
  content: "";
  position: absolute;
  top: -150px;
  right: -100px;
  width: 550px;
  height: 550px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(12, 131, 127, 0.25) 0%, rgba(12, 131, 127, 0) 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero h1 { color: #ffffff; }
.hero h1 span { color: var(--teal-light); }
.hero-tagline {
  font-family: "Manrope", sans-serif;
  font-size: 1.22rem;
  font-weight: 700;
  color: #e5f2f5;
  margin-bottom: 16px;
}
.hero-lead {
  font-size: 1.12rem;
  color: #b8d2d9;
  max-width: 600px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0 40px;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0.82rem;
  color: #9ab4bb;
}
.hero-meta span { display: inline-flex; align-items: center; gap: 6px; }

/* Interactive Orbit Card */
.hero-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 40px;
  border-radius: 32px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
}
.hero-orbit {
  position: relative;
  aspect-ratio: 1;
  max-width: 320px;
  margin: auto;
  border: 1px dashed rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.orbit-core {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #ffffff;
  color: var(--navy);
  display: grid;
  place-items: center;
  text-align: center;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: 0.78rem;
  line-height: 1.2;
  box-shadow: 0 0 0 14px rgba(255, 255, 255, 0.08);
}
.orbit-node {
  position: absolute;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  backdrop-filter: blur(8px);
}
.node-1 { top: 0; left: 50%; transform: translate(-50%, -50%); }
.node-2 { right: -12px; top: 50%; transform: translateY(-50%); }
.node-3 { bottom: -12px; left: 50%; transform: translate(-50%, 50%); }
.node-4 { left: -12px; top: 50%; transform: translateY(-50%); }

/* ========================================================
   STATISTICS & METRIC TILES
======================================================== */
.stat-box {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 30px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.stat-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 20px;
  right: 20px;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--orange));
  border-radius: 0 0 4px 4px;
}
.stat-box strong {
  display: block;
  font-size: 2.3rem;
  font-family: "Manrope", sans-serif;
  color: var(--navy);
  margin-bottom: 6px;
  letter-spacing: -0.04em;
}
.stat-box span {
  font-size: 0.88rem;
  color: var(--muted);
  font-weight: 600;
}

/* ========================================================
   TIMELINE & AGENDA TABS
======================================================== */
.agenda-day {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 36px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 30px;
}
.agenda-item {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.agenda-item:last-child { border-bottom: none; }
.agenda-time {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  color: var(--teal);
  font-size: 0.95rem;
}
.agenda-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--bg-slate);
  color: var(--ink-secondary);
  margin-bottom: 6px;
}
.agenda-title {
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

/* Circular Live Pitch Timer */
.timer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 680px;
  margin: 36px auto;
}
.time-box {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 22px;
  padding: 28px 16px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.time-box strong {
  display: block;
  font-size: 2.8rem;
  font-family: "Manrope", sans-serif;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 8px;
}
.time-box span {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--teal-light);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* ========================================================
   INTERACTIVE TABS & ACCORDION
======================================================== */
.faq-wrap {
  max-width: 860px;
  margin: auto;
}
.faq-item {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 16px;
  margin-bottom: 14px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: border-color 0.2s ease;
}
.faq-item.open {
  border-color: var(--teal);
}
.faq-q {
  width: 100%;
  text-align: left;
  padding: 22px 28px;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 700;
  color: var(--navy);
  font-size: 1.05rem;
}
.faq-q span:last-child {
  font-size: 1.4rem;
  color: var(--teal);
  transition: transform 0.25s ease;
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0, 1, 0, 1);
  background: var(--bg-soft-cream);
}
.faq-a p {
  padding: 0 28px 24px;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.65;
}
.faq-item.open .faq-a {
  max-height: 500px;
  transition: max-height 0.35s ease-in-out;
}
.faq-item.open .faq-q span:last-child {
  transform: rotate(45deg);
}

/* ========================================================
   FORMS & REGISTRATION INTERFACE
======================================================== */
.form-shell {
  max-width: 900px;
  margin: auto;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 44px;
  box-shadow: var(--shadow-md);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.field { display: grid; gap: 8px; }
.field.full { grid-column: 1 / -1; }
label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
}
input, select, textarea {
  width: 100%;
  border: 1px solid #cad6d3;
  border-radius: 12px;
  padding: 13px 16px;
  background: var(--bg-slate);
  color: var(--ink);
  font-size: 0.92rem;
  transition: all 0.2s ease;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  background: #ffffff;
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(12, 131, 127, 0.14);
}
textarea {
  min-height: 115px;
  resize: vertical;
}
.form-note {
  font-size: 0.76rem;
  color: var(--muted);
  line-height: 1.4;
}

/* ========================================================
   TOAST NOTIFICATION
======================================================== */
.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1000;
  background: var(--navy);
  color: #ffffff;
  padding: 16px 24px;
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  transform: translateY(120px);
  opacity: 0;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
  max-width: 400px;
  font-size: 0.88rem;
  border-left: 4px solid var(--teal-light);
}
.toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* ========================================================
   FOOTER (RICH DEEP OBSIDIAN)
======================================================== */
.footer {
  background: #05131a;
  color: #9cb5bc;
  padding: 80px 0 35px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}
.footer-col-main .brand-mark {
  background: #ffffff;
  color: var(--navy);
}
.footer-col-main .brand-copy strong { color: #ffffff; }
.footer-desc {
  margin-top: 18px;
  max-width: 380px;
  color: #8da6ad;
  font-size: 0.88rem;
}
.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.f-badge {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.72rem;
  color: var(--teal-light);
}
.footer-col h4 {
  color: #ffffff;
  font-size: 0.95rem;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}
.footer-col a {
  display: block;
  margin-bottom: 10px;
  color: #9cb5bc;
  font-size: 0.86rem;
  transition: color 0.2s ease;
}
.footer-col a:hover {
  color: var(--teal-light);
}
.contact-mini {
  display: grid;
  gap: 8px;
  font-size: 0.84rem;
  color: #8da6ad;
}
.contact-mini strong {
  color: #ffffff;
}
.footer-bottom {
  margin-top: 60px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: #728c94;
}
.footer-legal {
  display: flex;
  gap: 12px;
}
.footer-legal a:hover { color: #ffffff; }

/* ========================================================
   RESPONSIVE BREAKPOINTS
======================================================== */
@media (max-width: 1140px) {
  .header-cta-group { display: none; }
  .menu-toggle { display: flex; }

  .main-nav {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: #ffffff;
    flex-direction: column;
    align-items: stretch;
    padding: 22px 26px 32px;
    display: none;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 40px rgba(7, 25, 34, 0.14);
    max-height: calc(100vh - 80px);
    overflow-y: auto;
  }
  .main-nav.open {
    display: flex;
    animation: drawerFade 0.24s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }
  @keyframes drawerFade {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .nav-links {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    background: transparent;
    border: none;
    padding: 0;
    gap: 6px;
  }
  .nav-link {
    padding: 12px 18px;
    font-size: 0.96rem;
    border-radius: 12px;
    color: var(--navy);
  }
  .nav-link:hover, .nav-link.active {
    background: var(--bg-slate);
    color: var(--teal-dark);
  }
  .drawer-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
  }
  .drawer-actions .btn {
    width: 100%;
    padding: 12px;
  }

  .hero-inner, .grid-4, .grid-3, .grid-2 {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 768px) {
  .topbar { display: none; }
  .hero-inner, .grid-4, .grid-3, .grid-2, .form-grid {
    grid-template-columns: 1fr;
  }
  .field.full { grid-column: auto; }
  .timer-grid { grid-template-columns: 1fr; }
  .agenda-item { grid-template-columns: 1fr; gap: 8px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .form-shell { padding: 28px 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 14px; text-align: center; }
}



/* Brand Logo Image */
.brand-logo-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 10px;
  background: #ffffff;
  padding: 2px;
  box-shadow: 0 4px 10px rgba(7, 25, 34, 0.14);
  flex-shrink: 0;
}
.footer-brand .brand-logo-img {
  background: #ffffff;
}
