/* ====================================================================
   Loudspeakers — Toastmasters club
   Brand palette:
     Loyal Blue  #004165
     True Maroon #772432
     Cool Gray   #A9B2B1
     Happy Yellow#F2DF74
   Font: Gotham (licensed). Falls back to Montserrat.
   To use real Gotham: host the font files and set --font-primary.
   ==================================================================== */

:root {
  --loyal-blue: #004165;
  --true-maroon: #772432;
  --cool-gray: #A9B2B1;
  --happy-yellow: #F2DF74;

  --blue-deep: #002a42;
  --ink: #0a1c26;
  --paper: #f7f5ef;

  --font-primary: "Gotham", "Montserrat", system-ui, -apple-system, sans-serif;

  --radius: 20px;
  --radius-sm: 12px;
  --shadow: 0 18px 50px -12px rgba(0, 20, 35, 0.55);
  --shadow-sm: 0 8px 24px -8px rgba(0, 20, 35, 0.4);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-primary);
  color: var(--paper);
  background: var(--ink);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

/* ---- Animated multicolor gradient backdrop ---- */
.bg {
  position: fixed;
  inset: -20% -10% -20% -10%;
  z-index: -2;
  background:
    radial-gradient(45% 55% at 18% 22%, rgba(0, 65, 101, 0.95), transparent 60%),
    radial-gradient(50% 55% at 82% 18%, rgba(119, 36, 50, 0.9), transparent 62%),
    radial-gradient(55% 60% at 78% 82%, rgba(242, 223, 116, 0.55), transparent 60%),
    radial-gradient(50% 55% at 22% 80%, rgba(169, 178, 177, 0.5), transparent 60%),
    linear-gradient(135deg, #04263a, #0a1c26 55%, #1a0d13);
  filter: saturate(1.05);
  animation: drift 26s ease-in-out infinite alternate;
  will-change: transform;
}
.bg::after {
  /* fine grain so the gradient feels filmic, like the reference image */
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/></svg>");
  mix-blend-mode: overlay;
  pointer-events: none;
}
@keyframes drift {
  0%   { transform: translate3d(0, 0, 0) scale(1.02); }
  50%  { transform: translate3d(-2.5%, 1.5%, 0) scale(1.06); }
  100% { transform: translate3d(2%, -1.5%, 0) scale(1.03); }
}

.vignette {
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background: radial-gradient(120% 90% at 50% 8%, transparent 55%, rgba(0,0,0,0.45));
}

/* ---- Layout shell ---- */
.app { max-width: 720px; margin: 0 auto; padding: 0 20px 80px; }

/* ====================================================================
   INTRO / hero
   ==================================================================== */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: 40px 0;
}

.logo-wrap {
  width: min(58vw, 230px);
  margin-bottom: 26px;
  filter: drop-shadow(0 14px 30px rgba(0, 0, 0, 0.4));
  opacity: 0;
  transform: scale(0.6) translateY(20px);
  animation: logoIn 1.5s var(--ease) 0.15s forwards;
}
.logo-wrap svg { display: block; width: 100%; height: auto; }
.logo-wrap svg path { opacity: 0; transform-origin: center;
  animation: tileIn 0.9s var(--ease) forwards; }
.logo-wrap svg path:nth-child(1) { animation-delay: 0.45s; }
.logo-wrap svg path:nth-child(2) { animation-delay: 0.65s; }
.logo-wrap svg path:nth-child(3) { animation-delay: 0.85s; }
.logo-wrap svg path:nth-child(4) { animation-delay: 1.05s; }

@keyframes logoIn {
  to { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes tileIn {
  from { opacity: 0; transform: translateY(14px) scale(0.85); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.wordmark {
  font-weight: 800;
  letter-spacing: 0.14em;
  font-size: clamp(26px, 7vw, 40px);
  text-transform: uppercase;
  background: linear-gradient(100deg, #fff, var(--happy-yellow));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  opacity: 0; animation: fadeUp 0.9s var(--ease) 1.15s forwards;
}
.tagline {
  margin-top: 6px;
  font-size: 13px; letter-spacing: 0.34em; text-transform: uppercase;
  color: var(--cool-gray);
  opacity: 0; animation: fadeUp 0.9s var(--ease) 1.3s forwards;
}

.question {
  margin: 34px auto 8px;
  max-width: 520px;
  font-size: clamp(20px, 5.4vw, 28px);
  font-weight: 600;
  line-height: 1.35;
  min-height: 2.4em;
  opacity: 0; animation: fadeUp 1s var(--ease) 1.5s forwards;
}
.greeting {
  font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--happy-yellow);
  opacity: 0; animation: fadeUp 0.9s var(--ease) 1.4s forwards;
}
.beta-badge {
  display: inline-block; margin-top: 12px;
  padding: 5px 14px; border-radius: 999px;
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--happy-yellow);
  background: rgba(242, 223, 116, 0.12);
  border: 1px solid rgba(242, 223, 116, 0.35);
  opacity: 0; animation: fadeUp 0.9s var(--ease) 1.32s forwards;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.live-counter {
  display: flex; align-items: center; gap: 14px;
  width: min(360px, 100%); margin: 18px auto 2px;
  padding: 14px 18px; border-radius: 16px;
  background: rgba(242, 223, 116, 0.1);
  border: 1px solid rgba(242, 223, 116, 0.32);
  animation: fadeUp 0.6s var(--ease);
}
.lc-num { font-weight: 800; font-size: 30px; line-height: 1; color: var(--happy-yellow); flex: 0 0 auto; }
.lc-body { text-align: left; }
.lc-live {
  display: flex; align-items: center; gap: 6px; margin-bottom: 3px;
  font-size: 10px; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; color: #ff7a7a;
}
.lc-dot { width: 7px; height: 7px; border-radius: 50%; background: #ff5a5a; animation: lcpulse 1.6s infinite; }
@keyframes lcpulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 90, 90, 0.55); }
  70% { box-shadow: 0 0 0 7px rgba(255, 90, 90, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 90, 90, 0); }
}
.lc-label { font-size: 12.5px; color: var(--paper); line-height: 1.35; }

.cta-group {
  margin-top: 26px;
  display: flex; flex-direction: column; gap: 14px;
  width: min(100%, 360px);
  opacity: 0; animation: fadeUp 1s var(--ease) 1.75s forwards;
}

.scroll-hint {
  margin-top: 34px;
  font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--cool-gray); opacity: 0;
  animation: fadeUp 1s ease 2.2s forwards;
}
.hero-foot {
  margin-top: 16px;
  display: flex; flex-direction: column; align-items: center; gap: 9px;
  opacity: 0; animation: fadeUp 1s ease 2.5s forwards;
}
.loc-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 600; text-decoration: none;
  color: var(--happy-yellow);
  padding: 9px 16px; border-radius: 999px;
  background: rgba(242, 223, 116, 0.1);
  border: 1px solid rgba(242, 223, 116, 0.32);
  transition: background 0.2s, transform 0.2s var(--ease);
}
.loc-link:hover { background: rgba(242, 223, 116, 0.2); transform: translateY(-2px); }
.guests-note { font-size: 13px; color: var(--cool-gray); }
@keyframes bob { 0%,100%{ transform: translate(-50%,0);} 50%{ transform: translate(-50%,6px);} }

/* ====================================================================
   Buttons
   ==================================================================== */
.btn {
  appearance: none; border: none; cursor: pointer;
  font-family: inherit; font-size: 16px; font-weight: 700;
  letter-spacing: 0.02em;
  padding: 16px 22px; border-radius: var(--radius-sm);
  color: #fff; background: var(--loyal-blue);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s;
  box-shadow: var(--shadow-sm);
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  text-align: center; text-decoration: none;
}
.btn:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.btn:active { transform: translateY(-1px) scale(0.99); }
.btn--primary {
  background: linear-gradient(120deg, var(--loyal-blue), #015a8a);
}
.btn--maroon { background: linear-gradient(120deg, var(--true-maroon), #9c3142); }
.btn--gold {
  background: linear-gradient(120deg, var(--happy-yellow), #e6c84d);
  color: var(--ink);
}
.btn--ghost {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(6px);
}
/* Re-assert the border on hover so it repaints with the lift transform — otherwise
   Safari drops the semi-transparent border on backdrop-filtered elements mid-transform. */
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.34);
}
.btn--wa { background: linear-gradient(120deg, #25D366, #128C7E); color: #fff; }
.btn--join {
  background: linear-gradient(120deg, var(--happy-yellow), #e7b53a);
  color: var(--ink);
  box-shadow: 0 12px 34px -10px rgba(242, 223, 116, 0.6);
}
.btn--join:hover { box-shadow: 0 18px 44px -10px rgba(242, 223, 116, 0.75); }
.btn-ico { width: 20px; height: 20px; flex: 0 0 auto; }
.btn--block { width: 100%; }
.btn--sm { padding: 10px 16px; font-size: 14px; border-radius: 10px; }
.btn:disabled { opacity: 0.45; cursor: not-allowed; transform: none; }

.btn-row { display: flex; gap: 12px; flex-wrap: wrap; }

/* ====================================================================
   Views / cards
   ==================================================================== */
.view { padding-top: 26px; min-height: 60vh; }
.view-enter { animation: viewIn 0.5s var(--ease) both; }
@keyframes viewIn {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

.topbar {
  position: sticky; top: 0; z-index: 30;
  display: flex; align-items: center; gap: 12px;
  padding: 14px 0; margin-bottom: 8px;
  backdrop-filter: blur(10px);
}
.topbar .mini-logo { width: 34px; height: 34px; }
.topbar .mini-logo svg { width: 100%; height: 100%; }
.topbar .crumb { font-weight: 700; letter-spacing: 0.04em; }
.back-btn {
  appearance: none; border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.06); color: #fff;
  width: 40px; height: 40px; border-radius: 12px; cursor: pointer;
  font-size: 18px; display: grid; place-items: center; transition: 0.2s;
}
.back-btn:hover { background: rgba(255,255,255,0.14); }

.card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
}
.card + .card { margin-top: 14px; }

.section-title {
  font-size: clamp(22px, 6vw, 30px);
  font-weight: 800; line-height: 1.2; margin-bottom: 6px;
}
.section-sub { color: var(--cool-gray); margin-bottom: 22px; }

/* Role grid */
.role-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.role-tile {
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-sm);
  padding: 18px 16px; cursor: pointer; text-align: left;
  color: #fff; font-family: inherit;
  transition: transform 0.25s var(--ease), background 0.25s, border-color 0.25s;
  position: relative; overflow: hidden;
}
.role-tile::before {
  content: ""; position: absolute; inset: 0; opacity: 0;
  background: linear-gradient(130deg, rgba(0,65,101,0.5), rgba(119,36,50,0.5));
  transition: opacity 0.3s;
}
.role-tile:hover { transform: translateY(-4px); border-color: var(--happy-yellow); }
.role-tile:hover::before { opacity: 1; }
.role-tile .rt-name { font-weight: 700; font-size: 16px; position: relative; }
.role-tile .rt-desc { font-size: 12.5px; color: var(--cool-gray); margin-top: 4px; position: relative; }
.role-tile.span2 { grid-column: 1 / -1; }

/* Date list */
.date-list { display: flex; flex-direction: column; gap: 12px; }
.card + .date-list { margin-top: 14px; }
.date-item {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 16px 18px; border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  cursor: pointer; color: #fff; font-family: inherit; text-align: left;
  transition: transform 0.2s var(--ease), border-color 0.2s, background 0.2s;
}
.date-item:hover { transform: translateX(4px); border-color: var(--happy-yellow); background: rgba(255,255,255,0.09); }
.date-item .di-date { font-weight: 700; font-size: 1.2em; }
.date-item .di-meta { font-size: 12px; color: var(--cool-gray); }
.date-item .di-go { color: var(--happy-yellow); font-size: 20px; }
.date-item.done { opacity: 0.55; cursor: default; }
.date-item.done:hover { transform: none; border-color: rgba(255,255,255,0.12); background: rgba(255,255,255,0.05); }
.date-item.done .di-meta { color: var(--happy-yellow); }

/* Forms */
.field { margin-bottom: 16px; text-align: left; }
.field label { display: block; font-size: 13px; font-weight: 600;
  letter-spacing: 0.02em; margin-bottom: 6px; color: var(--cool-gray); }
.field input, .field textarea, .field select {
  width: 100%; font-family: inherit; font-size: 16px; color: #fff;
  padding: 13px 14px; border-radius: 11px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.16);
  transition: border-color 0.2s, background 0.2s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--happy-yellow);
  background: rgba(255,255,255,0.1);
}
.field textarea { min-height: 84px; resize: vertical; }
.field-note { font-size: 12px; color: var(--cool-gray); margin-top: 6px; line-height: 1.4; }
.field select option { color: #111; }
.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

/* Expectations / info blocks */
.expect { list-style: none; display: flex; flex-direction: column; gap: 10px; margin: 6px 0 4px; }
.expect li { display: flex; gap: 10px; align-items: flex-start; font-size: 15px; }
.expect li::before { content: "▸"; color: var(--happy-yellow); margin-top: 1px; }

.pill {
  display: inline-block; padding: 5px 12px; border-radius: 999px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.03em;
  background: rgba(242,223,116,0.16); color: var(--happy-yellow);
  border: 1px solid rgba(242,223,116,0.3);
}

.disclaimer {
  font-size: 12.5px; line-height: 1.5; color: #e6d2d6;
  background: rgba(119, 36, 50, 0.18);
  border: 1px solid rgba(119, 36, 50, 0.34);
  border-radius: var(--radius-sm);
  padding: 12px 14px; margin: 16px 0 4px; text-align: left;
}

/* Feedback items */
.fb-item { display: flex; flex-direction: column; gap: 8px; }
.fb-item .fb-head { font-weight: 600; font-size: 15px; }
.fb-item textarea {
  width: 100%; font-family: inherit; font-size: 15px; color: #fff; min-height: 64px;
  padding: 11px 13px; border-radius: 11px; resize: vertical;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.16);
}
.fb-item textarea:focus { outline: none; border-color: var(--happy-yellow); background: rgba(255,255,255,0.1); }
.fb-item.done .fb-head { color: var(--cool-gray); }
.fb-flag { font-size: 13px; color: var(--happy-yellow); font-weight: 600; }

.empty {
  text-align: center; padding: 30px 16px; color: var(--cool-gray);
}
.empty .big { font-size: 44px; margin-bottom: 8px; }

/* ====================================================================
   Agenda
   ==================================================================== */
.agenda-row {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 4px; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.agenda-row:last-child { border-bottom: none; }
.agenda-role { flex: 0 0 38%; font-weight: 700; }
.agenda-role small { display: block; font-weight: 500; font-size: 11px; color: var(--cool-gray); letter-spacing: 0.02em; }
.agenda-who { flex: 1; color: var(--paper); }
.agenda-who.open { color: var(--cool-gray); font-style: italic; }
.agenda-who .extra { display: block; font-size: 12px; color: var(--happy-yellow); font-style: normal; }
.spk-details { display: flex; flex-direction: column; gap: 2px; margin-top: 5px; }
.spk-details span { font-size: 12px; color: var(--cool-gray); line-height: 1.4; }
.spk-details b { color: var(--happy-yellow); font-weight: 600; }
.agenda-tag { font-size: 11px; color: var(--cool-gray); }

.meeting-nav { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; gap: 10px; }
.meeting-nav .nav-btn {
  appearance:none;border:1px solid rgba(255,255,255,0.16);background:rgba(255,255,255,0.06);
  color:#fff;border-radius:10px;width:42px;height:42px;cursor:pointer;font-size:18px;transition:0.2s;
}
.meeting-nav .nav-btn:hover:not(:disabled){background:rgba(255,255,255,0.14);}
.meeting-nav .nav-btn:disabled{opacity:0.3;cursor:not-allowed;}
.meeting-nav .nav-date { text-align:center; }
.meeting-nav .nav-date .d { font-weight: 800; font-size: 17px; }
.meeting-nav .nav-date .l { font-size: 12px; color: var(--cool-gray); }

/* ====================================================================
   Modal
   ==================================================================== */
.modal-back {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(2, 10, 16, 0.66);
  backdrop-filter: blur(6px);
  display: grid; place-items: center; padding: 24px;
  opacity: 0; animation: fadeIn 0.3s ease forwards;
}
@keyframes fadeIn { to { opacity: 1; } }
.modal {
  width: min(440px, 100%);
  background: linear-gradient(160deg, #0c2a3c, #15121a);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius);
  padding: 26px; box-shadow: var(--shadow);
  transform: translateY(18px) scale(0.97); opacity: 0;
  animation: modalIn 0.4s var(--ease) forwards;
}
@keyframes modalIn { to { transform: translateY(0) scale(1); opacity: 1; } }
.modal h3 { font-size: 21px; margin-bottom: 10px; }
.modal p { color: #d9e2e1; margin-bottom: 18px; }
.modal .modal-actions { display: flex; gap: 10px; }
.modal .modal-actions .btn { flex: 1; }
.modal-icon { font-size: 40px; text-align: center; margin-bottom: 10px; }

.toast {
  position: fixed; left: 50%; bottom: 28px; transform: translateX(-50%) translateY(20px);
  background: rgba(10,28,38,0.95); border: 1px solid rgba(255,255,255,0.16);
  color: #fff; padding: 13px 20px; border-radius: 12px; z-index: 200;
  box-shadow: var(--shadow); opacity: 0; transition: 0.35s var(--ease); max-width: 90vw; text-align:center;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast.err { border-color: var(--true-maroon); }

/* ====================================================================
   Misc
   ==================================================================== */
.admin-link {
  position: fixed; top: 14px; right: 14px; z-index: 40;
  width: 38px; height: 38px; border-radius: 11px;
  display: grid; place-items: center; cursor: pointer;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  color: var(--cool-gray); text-decoration: none; font-size: 16px;
  transition: 0.2s; opacity: 0; animation: fadeUp 1s ease 2.4s forwards;
}
.admin-link:hover { color: var(--happy-yellow); background: rgba(255,255,255,0.12); }

.success-anim {
  width: 96px; height: 96px; margin: 0 auto 16px; border-radius: 50%;
  background: linear-gradient(120deg, var(--loyal-blue), var(--true-maroon));
  display: grid; place-items: center; position: relative;
  animation: pop 0.6s var(--ease);
}
.success-anim svg { width: 48px; height: 48px; }
.success-anim svg path {
  stroke: var(--happy-yellow); stroke-width: 6; fill: none;
  stroke-linecap: round; stroke-linejoin: round;
  stroke-dasharray: 60; stroke-dashoffset: 60;
  animation: draw 0.6s var(--ease) 0.25s forwards;
}
@keyframes pop { 0%{transform:scale(0.3);opacity:0;} 60%{transform:scale(1.08);} 100%{transform:scale(1);opacity:1;} }
@keyframes draw { to { stroke-dashoffset: 0; } }

.summary-list { list-style: none; margin: 12px 0; }
.summary-list li { display:flex; justify-content:space-between; gap:14px; padding:9px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08); font-size: 14.5px; }
.summary-list li span:first-child { color: var(--cool-gray); }
.summary-list li span:last-child { font-weight: 600; text-align:right; }

/* ====================================================================
   Join section — divider + button on the hero
   ==================================================================== */
.join-divider {
  display: flex; align-items: center; gap: 12px;
  margin: 8px 2px 2px;
  color: var(--cool-gray);
  font-size: 11px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
}
.join-divider::before, .join-divider::after {
  content: ""; flex: 1 1 auto; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.22), transparent);
}

/* ---- Feature squares ---- */
.features {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}
.feature {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 20px 18px;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.feature__icon {
  width: 52px; height: 52px; border-radius: 16px;
  display: grid; place-items: center;
  color: var(--happy-yellow);
  background: rgba(242, 223, 116, 0.12);
  border: 1px solid rgba(242, 223, 116, 0.3);
  margin-bottom: 4px;
}
.feature__icon svg { width: 28px; height: 28px; }
.feature__t { font-weight: 800; font-size: 15.5px; line-height: 1.25; }
.feature__d { font-size: 13px; color: var(--cool-gray); line-height: 1.4; }

/* ---- FAQ accordion ---- */
.faq { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
  overflow: hidden;
}
.faq-item summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 18px 20px;
  font-weight: 700; font-size: 16px; line-height: 1.35;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--happy-yellow); }
.faq-chev {
  flex: 0 0 auto; width: 26px; height: 26px; border-radius: 50%;
  display: grid; place-items: center;
  font-size: 20px; font-weight: 600; line-height: 1;
  color: var(--happy-yellow); background: rgba(242, 223, 116, 0.12);
  transition: transform 0.25s var(--ease);
}
.faq-item[open] .faq-chev { transform: rotate(45deg); }
.faq-a {
  padding: 0 20px 18px;
  color: var(--cool-gray); font-size: 14.5px; line-height: 1.6;
  animation: fadeUp 0.35s var(--ease);
}
.faq-a p { margin-bottom: 10px; }
.faq-a p:last-child { margin-bottom: 0; }
.faq-a strong { color: var(--paper); font-weight: 700; }
.faq-list { margin: 4px 0 12px; padding-left: 18px; }
.faq-list li { margin-bottom: 9px; }

/* ---- Ready to join CTA ---- */
.join-cta {
  margin-top: 40px;
  padding: 30px 24px;
  border-radius: var(--radius);
  text-align: center;
  background: linear-gradient(135deg, rgba(0, 65, 101, 0.55), rgba(119, 36, 50, 0.5));
  border: 1px solid rgba(242, 223, 116, 0.3);
  box-shadow: var(--shadow-sm);
}
.join-cta h2 { font-size: clamp(24px, 6.5vw, 32px); font-weight: 800; margin-bottom: 6px; }
.join-cta p { color: var(--cool-gray); margin-bottom: 20px; }
.join-cta .btn { max-width: 360px; margin: 0 auto; }
.join-cta__num {
  display: block; margin-top: 12px;
  font-size: 14px; font-weight: 600; letter-spacing: 0.06em; color: var(--cool-gray);
}

/* ---- Mobile polish (phones, ≤480px) ---- */
@media (max-width: 480px) {
  /* Agenda rows: stack so each name + its speech details get the full width
     instead of being squeezed between the role column and the action button. */
  .agenda-row { flex-direction: column; align-items: stretch; gap: 7px; padding: 14px 2px; }
  .agenda-role { flex: none; }
  .agenda-who { flex: none; }
  .agenda-row > .btn { align-self: flex-start; }
}

@media (max-width: 420px) {
  .role-grid { grid-template-columns: 1fr; }
  .row2 { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
}
