/* Brand tokens — Ekkono: #f4af4e orange, #32373c ink, white bg, Ubuntu */
:root {
  --orange: #F4AF4E;
  --orange-deep: #E8961F;
  --ink: #32373C;
  --white: #FFFFFF;
  --tint: #FDF3E4;
  --line: rgba(50,55,60,0.12);
}

* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--white);
  color: var(--ink);
  font-family: 'Ubuntu', sans-serif;
  overflow-x: hidden;
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}

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

/* ---------- NAV ---------- */
header {
  position: absolute; top:0; left:0; right:0;
  display:flex; justify-content:space-between; align-items:center;
  padding: 26px 6vw;
  z-index: 10;
}
header img.logo { height: 30px; width:auto; }
header .partner-tag {
  font-size: 12px;
  color: rgba(50,55,60,0.55);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
}
.site-nav { display:flex; gap: 32px; }
.site-nav .nav-link {
  color: var(--ink);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  opacity: 0.6;
  transition: opacity 0.15s ease, color 0.15s ease;
}
.site-nav .nav-link:hover,
.site-nav .nav-link.active { opacity: 1; color: var(--orange-deep); }

@media (max-width: 700px) {
  header .partner-tag { display:none; }
  .site-nav { gap: 20px; }
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display:flex; flex-direction:column; justify-content:center;
  padding: 120px 6vw 60px;
  background: var(--white);
  overflow: hidden;
}

.scan {
  position:absolute;
  top:35%; right:-14%;
  width:120vmax; height:120vmax;
  transform: translate(0,-50%);
  background: conic-gradient(from 0deg,
    transparent 0deg,
    rgba(244,175,78,0.14) 9deg,
    transparent 22deg,
    transparent 360deg);
  animation: sweep 10s linear infinite;
  pointer-events:none;
}
@keyframes sweep { to { transform: translate(0,-50%) rotate(360deg); } }

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
}

.eyebrow {
  font-size: 13px;
  color: var(--orange-deep);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 18px;
}

h1 {
  font-family: 'Ubuntu', sans-serif;
  font-weight: 700;
  font-size: clamp(2.2rem, 4.6vw, 3.8rem);
  line-height: 1.05;
  color: var(--ink);
  max-width: 13ch;
}
.accent { color: var(--orange-deep); }

.lede {
  margin-top: 22px;
  max-width: 44ch;
  font-size: 1.02rem;
  line-height: 1.6;
  color: rgba(50,55,60,0.78);
}

.stat-row {
  margin-top: 28px;
  display:flex; gap: 28px;
}
.stat-row div strong {
  display:block;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--ink);
}
.stat-row div span {
  font-size: 11px;
  color: rgba(50,55,60,0.55);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-weight: 500;
}

/* ---------- SIGNUP CARD ---------- */
.signup-card {
  background: var(--orange);
  padding: 40px 34px;
  box-shadow: 0 24px 50px rgba(244,175,78,0.35);
  scroll-margin-top: 90px;
}

.signup-card .eyebrow { color: var(--ink); opacity: 0.75; }

.signup-card h2 {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--ink);
  line-height: 1.2;
  max-width: 20ch;
}

.signup-card p.sub {
  margin-top: 12px;
  color: rgba(50,55,60,0.75);
  font-size: 0.94rem;
  line-height: 1.55;
}

form { margin-top: 26px; display:flex; flex-direction:column; gap:12px; }

input[type="email"], input[type="text"], input[type="number"], select, textarea {
  background: var(--white);
  border: 1.5px solid rgba(50,55,60,0.2);
  padding: 15px 16px;
  color: var(--ink);
  font-family:'Ubuntu', sans-serif;
  font-size: 15px;
  width: 100%;
}

select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2332373C' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}
input::placeholder, textarea::placeholder { color: rgba(50,55,60,0.4); }
input:focus, textarea:focus, select:focus { outline:none; border-color: var(--ink); }
input:focus-visible, textarea:focus-visible { box-shadow: 0 0 0 2px var(--ink); }

textarea { resize: vertical; min-height: 80px; }

.btn {
  font-family: 'Ubuntu', sans-serif;
  background: var(--ink);
  color: var(--white);
  border:none;
  padding: 15px 20px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease;
  display: inline-block;
  text-decoration: none;
  text-align: center;
}
.btn:hover { transform: translateY(-2px); background: #1c1f24; }
.btn:focus-visible { outline: 3px solid var(--ink); outline-offset:2px; }

.signup-card ul {
  list-style: none;
  margin-top: 18px;
  margin-bottom: 6px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.signup-card ul li {
  font-size: 0.9rem;
  color: rgba(50,55,60,0.82);
  line-height: 1.4;
  padding-left: 14px;
  position: relative;
}

.signup-card ul li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--ink);
  opacity: 0.4;
  font-size: 0.8rem;
}

.signup-card ul li strong {
  color: var(--ink);
  font-weight: 700;
}

.privacy-note {
  margin-top:14px;
  font-size: 11.5px;
  color: rgba(50,55,60,0.6);
  line-height:1.5;
}
.privacy-note a { color: rgba(50,55,60,0.85); }

.form-status {
  margin-top: 14px;
  font-size: 12.5px;
  font-weight: 500;
  display:none;
}
.form-status.show { display:block; }
.form-status.ok { color: #1c1f24; }
.form-status.err { color: #B23A2E; }

@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero { padding-top: 110px; }
}

/* ---------- BELOW THE FOLD ---------- */
section { padding: 90px 6vw; }
.section-inner { max-width: 1080px; margin: 0 auto; }

.kicker {
  font-size: 12.5px;
  color: var(--orange-deep);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  margin-bottom: 14px;
}

h2.section-title {
  font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  color: var(--ink);
  max-width: 36ch;
  margin-bottom: 40px;
}

/* Methodology */
.method-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 48px;
}

.method-intro .section-title { margin-bottom: 0; }

.method-intro-text {
  font-size: 0.98rem;
  line-height: 1.7;
  color: rgba(50,55,60,0.72);
  padding-top: 8px;
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--line);
}

.method-card {
  padding: 28px 24px;
  border-right: 1px solid var(--line);
}
.method-card:last-child { border-right: none; }

.method-icon {
  height: 40px;
  width: auto;
  display: block;
  margin-bottom: 18px;
}

.method-card h3 {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.3;
}
.method-card p { color: rgba(50,55,60,0.65); line-height: 1.6; font-size: 0.88rem; }

@media (max-width: 860px) {
  .method-intro { grid-template-columns: 1fr; gap: 16px; }
  .method-grid { grid-template-columns: repeat(2, 1fr); }
  .method-card:nth-child(2) { border-right: none; }
  .method-card:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}

/* Schedule */
.schedule-bg { background: var(--tint); }
.schedule-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.day-card {
  background: var(--white);
  padding: 20px 16px;
  border: 1px solid var(--line);
}
.day-card .day-num {
  font-size: 11px;
  color: var(--orange-deep);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
  margin-bottom: 10px;
}
.day-card ul { list-style:none; }
.day-card li {
  font-size: 0.82rem;
  color: rgba(50,55,60,0.75);
  line-height: 1.5;
  margin-bottom: 4px;
}

/* Principles */
.principles-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}

.principle-item {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}

.principle-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 3px;
}

.principle-num {
  font-size: 11px;
  font-weight: 700;
  color: var(--orange-deep);
  letter-spacing: 0.1em;
}

.principle-theme {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.principle-content h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.3;
}

.principle-content p {
  font-size: 0.92rem;
  color: rgba(50,55,60,0.72);
  line-height: 1.65;
}

@media (max-width: 600px) {
  .principle-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .principle-meta { flex-direction: row; align-items: center; gap: 12px; }
}

/* Unique section */
.unique-bg { background: var(--ink); }
.unique-bg .kicker { color: var(--orange); }
.unique-bg h2.section-title { color: var(--white); }

.unique-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
}

.unique-card {
  background: var(--ink);
  padding: 32px 28px;
  transition: background 0.2s;
}
.unique-card:hover { background: #1c1f24; }

.unique-num {
  font-size: 11px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}

.unique-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.2;
}

.unique-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  min-height: 40px;
}

@media (max-width: 860px) {
  .unique-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .unique-grid { grid-template-columns: 1fr; }
}

/* Schedule table */
.schedule-table-wrap {
  overflow-x: auto;
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.schedule-table thead th {
  background: var(--ink);
  color: var(--white);
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 14px 16px;
  text-align: left;
  white-space: nowrap;
}

.schedule-table thead th span {
  display: block;
  font-weight: 400;
  font-size: 0.75rem;
  color: var(--orange);
  text-transform: none;
  letter-spacing: 0;
  margin-top: 3px;
}

.schedule-table .schedule-time-col {
  background: var(--white);
  color: var(--orange-deep);
  font-weight: 700;
  font-size: 0.8rem;
  white-space: nowrap;
  padding: 12px 16px;
  border-right: 2px solid var(--orange);
  width: 90px;
}

.schedule-table thead th.schedule-time-col {
  background: var(--ink);
  border-right: 2px solid rgba(244,175,78,0.4);
}

.schedule-table tbody tr { background: var(--white); }
.schedule-table tbody tr:nth-child(even) { background: #fafafa; }

.schedule-table tbody td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  color: rgba(50,55,60,0.78);
  line-height: 1.45;
  vertical-align: top;
  min-width: 140px;
}

.schedule-table tbody td:last-child { border-right: none; }

/* Quote wall */
.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.quote-card {
  background: var(--orange);
  color: var(--ink);
  padding: 26px 22px;
}
.quote-card p.q {
  font-size: 0.95rem;
  line-height: 1.55;
  font-style: italic;
  margin-bottom: 16px;
}
.quote-card .who {
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.quote-card .who span { display:block; color: rgba(50,55,60,0.6); font-size: 0.78rem; font-weight: 400; margin-top:3px; }

.quote-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  display: block;
  margin-bottom: 16px;
  border: 3px solid rgba(50,55,60,0.15);
}

/* FAQ */
.faq-list { display:flex; flex-direction:column; gap: 0; }
.faq-item {
  display:flex; justify-content:space-between; align-items:baseline;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.faq-item p.q { font-size: 0.98rem; color: var(--ink); }
.faq-item span.a {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--orange-deep);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  flex-shrink:0;
}

/* Closing CTA */
.closing-cta {
  background: var(--ink);
  text-align:center;
}
.closing-cta h2 {
  color: var(--white);
  font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  max-width: 20ch;
  margin: 0 auto 28px;
}
.closing-cta .btn { background: var(--orange); color: var(--ink); }
.closing-cta .btn:hover { background: var(--orange-deep); }

footer {
  padding: 26px 6vw;
  font-size: 11px;
  color: rgba(50,55,60,0.5);
  display:flex; justify-content:space-between;
  border-top: 1px solid var(--line);
}

@media (max-width: 860px) {
  .method-grid, .quote-grid { grid-template-columns: 1fr; }
  .schedule-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- VIDEO ---------- */
.video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--ink);
}

.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ---------- CONTACT ---------- */
.contact-layout {
  display: flex;
  gap: 44px;
  align-items: center;
}

.contact-avatar {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--ink);
  font-size: 2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.02em;
}

.contact-role {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--orange-deep);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.contact-bio p {
  font-size: 0.98rem;
  line-height: 1.65;
  color: rgba(50,55,60,0.78);
  margin-bottom: 16px;
}

.contact-email {
  display: inline-block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 2px solid var(--orange);
  padding-bottom: 2px;
  transition: border-color 0.15s;
}
.contact-email:hover { border-color: var(--orange-deep); }

@media (max-width: 600px) {
  .contact-layout { flex-direction: column; align-items: flex-start; gap: 24px; }
}

/* ---------- COACH ---------- */
.coach-layout {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 52px;
  align-items: center;
}

.coach-image-wrap {
  display: flex;
  justify-content: center;
}

.coach-photo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  display: block;
  border: 4px solid var(--white);
  box-shadow: 0 8px 32px rgba(50,55,60,0.15);
}

.coach-role {
  font-size: 12px;
  font-weight: 700;
  color: var(--orange-deep);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

.coach-bio p {
  font-size: 0.97rem;
  line-height: 1.7;
  color: rgba(50,55,60,0.78);
}

@media (max-width: 860px) {
  .coach-layout {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }
}

/* ---------- MODAL ---------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(50,55,60,0.55);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal-overlay[hidden] { display: none; }

.modal-box {
  background: var(--white);
  max-width: 680px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  position: relative;
  padding: 48px 44px 40px;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: rgba(50,55,60,0.5);
  cursor: pointer;
  line-height: 1;
  padding: 4px 8px;
}
.modal-close:hover { color: var(--ink); }

.modal-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}

.modal-updated {
  font-size: 12px;
  color: rgba(50,55,60,0.5);
  margin-bottom: 28px;
}

.modal-content h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 24px;
  margin-bottom: 8px;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--orange);
}

.modal-content p,
.modal-content ul,
.modal-content li {
  font-size: 0.9rem;
  color: rgba(50,55,60,0.8);
  line-height: 1.65;
  margin-bottom: 8px;
}

.modal-content ul {
  padding-left: 20px;
  margin-bottom: 0;
}

.modal-content a { color: var(--ink); }

@media (max-width: 600px) {
  .modal-box { padding: 36px 22px 28px; }
}

/* ---------- REGISTRATION PAGE ---------- */
.page-section {
  min-height: 100vh;
  padding: 100px 6vw 60px;
}

.register-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  min-height: 100vh;
}

.register-image {
  background-size: cover;
  background-position: center;
  height: 420px;
  align-self: start;
  position: sticky;
  top: 80px;
}

@media (max-width: 860px) {
  .register-layout {
    grid-template-columns: 1fr;
  }
  .register-image {
    height: 280px;
    position: static;
  }
}

.page-inner {
  max-width: 640px;
  margin: 0 auto;
}

.page-inner h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  max-width: none;
  margin-bottom: 10px;
}

.page-inner .lede { margin-top: 10px; margin-bottom: 36px; }

.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 36px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.form-group .hint {
  font-size: 11.5px;
  color: rgba(50,55,60,0.55);
  margin-top: -2px;
}

.field-error {
  font-size: 12px;
  color: #B23A2E;
  margin-top: 4px;
}

.field-errors-summary {
  background: #fef2f2;
  border: 1px solid #fecaca;
  padding: 14px 16px;
  margin-bottom: 24px;
  font-size: 13px;
  color: #B23A2E;
}

.registration-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.divider {
  border: none;
  border-top: 1px solid var(--line);
  margin: 8px 0;
}

/* Success/cancel pages */
.status-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 60px 6vw;
}

.status-page h1 {
  max-width: none;
  margin-bottom: 16px;
}

.status-page p {
  max-width: 40ch;
  color: rgba(50,55,60,0.75);
  line-height: 1.6;
  margin-bottom: 32px;
}
.status-page p a { color: var(--ink); }

.status-icon {
  font-size: 3rem;
  margin-bottom: 24px;
}

/* ---------- PROSE (policy/terms pages) ---------- */
.prose h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  max-width: none;
  margin-bottom: 8px;
}

.prose .modal-updated {
  margin-bottom: 36px;
}

.prose h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 28px;
  margin-bottom: 8px;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--orange);
}

.prose p,
.prose li {
  font-size: 0.95rem;
  color: rgba(50,55,60,0.8);
  line-height: 1.7;
  margin-bottom: 8px;
}

.prose ul {
  padding-left: 20px;
  margin-bottom: 12px;
}

.prose a { color: var(--ink); text-decoration: underline; }

/* ---------- ADMIN ---------- */
.admin-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 32px 80px;
}

.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 36px;
  padding-bottom: 24px;
  border-bottom: 2px solid var(--orange);
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}

.admin-stat {
  background: var(--tint);
  padding: 20px 22px;
  border-top: 3px solid var(--line);
}

.admin-stat--revenue { border-top-color: var(--orange); }

.admin-stat strong {
  display: block;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 6px;
}

.admin-stat span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(50,55,60,0.55);
  font-weight: 700;
}

.admin-section { margin-bottom: 52px; }

.admin-section-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.admin-table-wrap { overflow-x: auto; }

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.admin-table thead th {
  background: var(--ink);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 10px 14px;
  text-align: left;
  white-space: nowrap;
}

.admin-table tbody td {
  padding: 11px 14px;
  border-bottom: 1px solid var(--line);
  color: rgba(50,55,60,0.85);
  vertical-align: top;
}

.admin-table tbody tr:hover td { background: var(--tint); }

.admin-table a { color: var(--ink); }

.admin-comments-row td {
  font-size: 0.82rem;
  color: rgba(50,55,60,0.6);
  background: #fafafa;
  padding-top: 6px;
  padding-bottom: 10px;
}

.admin-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 3px 8px;
}

.admin-badge--paid { background: #d1fae5; color: #065f46; }
.admin-badge--pending { background: #fef3c7; color: #92400e; }
.admin-badge--cancelled { background: #fee2e2; color: #991b1b; }

.admin-empty {
  color: rgba(50,55,60,0.45);
  font-size: 0.9rem;
  padding: 20px 0;
}

@media (max-width: 700px) {
  .admin-stats { grid-template-columns: repeat(2, 1fr); }
  .admin-wrap { padding: 32px 16px 60px; }
}

/* ---------- SYMPOSIUM ---------- */
.presenter-line {
  margin-top: 26px;
  display:flex;
  align-items:center;
  gap: 14px;
}
.presenter-line img {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
}
.presenter-line .who { font-size: 0.9rem; line-height: 1.4; }
.presenter-line .who strong { display:block; }
.presenter-line .who span { color: rgba(50,55,60,0.6); font-size: 0.82rem; }

.takeaway-list { display:flex; flex-direction:column; gap: 26px; }
.takeaway-item {
  display:grid;
  grid-template-columns: 40px 1fr;
  gap: 18px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
}
.takeaway-item:last-child { border-bottom:none; }
.takeaway-num { font-weight: 700; font-size: 1.1rem; color: var(--orange-deep); }
.takeaway-item h3 { font-weight: 700; font-size: 1.05rem; margin-bottom: 6px; color: var(--ink); }
.takeaway-item p { color: rgba(50,55,60,0.72); line-height: 1.55; font-size: 0.95rem; }

.audience-box {
  background: var(--ink);
  color: var(--white);
  padding: 40px;
  text-align:center;
}
.audience-box p { font-size: 1.1rem; line-height: 1.6; max-width: 50ch; margin: 0 auto; }
.audience-box p strong { color: var(--orange); }
