.seminar-page {
  --sm-lime: #b6f500;
  --sm-muted: #9aa39a;
  --sm-border: rgba(255, 255, 255, 0.08);
  --sm-card: #141714;
}

.sm-page {
  color: #f2f4f0;
}

.sm-hero {
  position: relative;
  padding: calc(var(--header-height, 84px) + 20px) 0 36px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 55% 45% at 15% 20%, rgba(182, 245, 0, 0.08), transparent 58%),
    linear-gradient(165deg, #0a1208 0%, #0d1609 45%, #0a1008 100%);
}

.sm-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.sm-dots {
  position: absolute;
  width: 120px;
  height: 90px;
  background-image: radial-gradient(circle, rgba(182, 245, 0, 0.32) 1.5px, transparent 1.7px);
  background-size: 14px 14px;
  opacity: 0.45;
}

.sm-dots--tl { top: 80px; left: 4%; }
.sm-dots--br { right: 5%; bottom: 50px; opacity: 0.28; }

.sm-glow {
  position: absolute;
  left: 10%;
  bottom: 8%;
  width: min(360px, 46vw);
  height: 180px;
  background: radial-gradient(ellipse, rgba(182, 245, 0, 0.14), transparent 70%);
  filter: blur(18px);
}

.sm-intro,
.sm-reserve-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 22px 36px;
  align-items: start;
}

.sm-intro {
  margin-bottom: 22px;
}

.sm-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sm-lime);
}

.sm-kicker::after {
  content: "";
  width: 36px;
  height: 2px;
  background: var(--sm-lime);
  border-radius: 2px;
}

.sm-intro-copy h1,
.sm-section-head h2,
.sm-reserve h2 {
  margin: 0 0 8px;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.sm-intro-copy p,
.sm-reserve-copy > p {
  max-width: 62ch;
  margin: 0;
  color: var(--sm-muted);
  line-height: 1.6;
}

.sm-pills,
.sm-hero-actions,
.sm-facts,
.sm-perks,
.sm-speaker {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.sm-intro-side {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 14px;
  padding-top: 28px;
}

.sm-pills { margin: 0; }

.sm-pill,
.sm-badge,
.sm-card-date,
.sm-facts li,
.sm-tile {
  border: 1px solid var(--sm-border);
  background: rgba(255, 255, 255, 0.04);
}

.sm-pill {
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
}

.sm-hero-actions .btn-outline,
.sm-card-cta,
.sm-tile--actions .btn-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.22);
}

.sm-feature,
.sm-card,
.sm-reserve .contact-form-card,
.sm-tile {
  border: 1px solid var(--sm-border);
  border-radius: 18px;
  background: var(--sm-card);
  overflow: hidden;
}

.sm-feature {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
}

.sm-feature-media {
  position: relative;
  min-height: 100%;
}

.sm-feature-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.sm-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #11190c;
  color: var(--sm-lime);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.sm-feature-body {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(220px, 0.8fr);
  gap: 20px 28px;
  align-items: center;
  padding: 22px 24px;
}

.sm-card-body {
  padding: 18px 20px;
}

.sm-meta {
  margin: 0 0 6px;
  color: var(--sm-lime);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.sm-feature-body h2,
.sm-card h3 {
  margin: 0 0 8px;
  font-size: 1.35rem;
}

.sm-feature-main p,
.sm-card-body p {
  margin: 0;
  color: var(--sm-muted);
  line-height: 1.55;
}

.sm-feature-aside {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sm-speaker {
  align-items: center;
  margin-bottom: 0;
}

.sm-avatar {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: rgba(182, 245, 0, 0.14);
  color: var(--sm-lime);
  font-size: 0.78rem;
  font-weight: 800;
}

.sm-speaker small {
  display: block;
  color: var(--sm-muted);
}

.sm-facts {
  margin: 0;
  padding: 0;
  list-style: none;
}

.sm-facts li {
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.78rem;
}

.sm-section {
  padding: 36px 0;
}

.sm-schedule {
  background: #10140e;
}

.sm-section-head {
  margin-bottom: 14px;
}

.sm-block + .sm-block {
  margin-top: 28px;
}

.sm-table {
  display: grid;
  gap: 8px;
}

.sm-table-head,
.sm-table-row {
  display: grid;
  grid-template-columns: 200px minmax(0, 1.4fr) minmax(140px, 0.7fr) 140px;
  gap: 16px;
  align-items: start;
}

.sm-table-head {
  padding: 0 18px 8px;
  color: var(--sm-muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sm-table-row {
  padding: 16px 18px;
  border: 1px solid var(--sm-border);
  border-radius: 16px;
  background: var(--sm-card);
}

.sm-table-row.is-past {
  opacity: 0.82;
}

.sm-table-row strong,
.sm-table-row small {
  display: block;
}

.sm-table-row small {
  margin-top: 4px;
  color: var(--sm-muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.sm-status {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(182, 245, 0, 0.12);
  color: var(--sm-lime);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.sm-status--held {
  background: rgba(255, 255, 255, 0.06);
  color: #c5c9c0;
}

.sm-table-link {
  display: inline-block;
  margin-top: 8px;
  color: var(--sm-lime);
  font-size: 0.8rem;
  font-weight: 700;
}

.sm-list {
  display: grid;
  gap: 12px;
}

.sm-card {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr) minmax(160px, 220px);
  align-items: stretch;
}

.sm-card-date {
  display: grid;
  place-items: center;
  text-align: center;
  background: #11190c;
  border: 0;
  border-right: 1px solid var(--sm-border);
}

.sm-card-date strong {
  font-size: 1.7rem;
  line-height: 1;
  color: var(--sm-lime);
}

.sm-card-date span {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.sm-card-side {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 18px 20px 18px 0;
  color: var(--sm-muted);
  font-size: 0.82rem;
}

.sm-card-cta {
  align-self: flex-start;
  margin-top: 6px;
  padding: 7px 14px;
  font-size: 0.78rem;
}

.sm-card.is-past {
  opacity: 0.78;
}

.sm-empty {
  margin: 0;
  padding: 18px 20px;
  border: 1px dashed var(--sm-border);
  border-radius: 16px;
  color: var(--sm-muted);
}

.sm-perks {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  flex-direction: column;
  gap: 8px;
}

.sm-perks li::before {
  content: "✓ ";
  color: var(--sm-lime);
  font-weight: 800;
}

.sm-reserve {
  padding: 40px 0 64px;
}

.sm-reserve-tiles {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.sm-tile {
  padding: 14px 16px;
}

.sm-tile small {
  display: block;
  margin-bottom: 4px;
  color: var(--sm-lime);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sm-tile strong,
.sm-tile span {
  display: block;
}

.sm-tile span {
  margin-top: 4px;
  color: var(--sm-muted);
  font-size: 0.86rem;
}

.sm-tile--actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.sm-reserve .contact-form-card {
  padding: 22px;
}

.sm-reserve .form-title {
  margin-bottom: 14px;
  font-size: 1.35rem;
}

.sm-reserve .form-title,
.sm-reserve .form-group label {
  color: #ffffff !important;
}

.sm-reserve .form-group label .optional-label {
  color: rgba(255, 255, 255, 0.7) !important;
}

.sm-reserve .form-group {
  margin-bottom: 14px;
}

.sm-reserve .form-group textarea {
  min-height: 84px;
}

.sm-reserve .form-group input,
.sm-reserve .form-group select,
.sm-reserve .form-group textarea {
  color: #111111 !important;
  caret-color: #111111;
  background-color: #ffffff !important;
}

.sm-reserve .form-group input::placeholder,
.sm-reserve .form-group textarea::placeholder {
  color: #6b6b6b;
}

.sm-reserve .form-group input:-webkit-autofill,
.sm-reserve .form-group input:-webkit-autofill:hover,
.sm-reserve .form-group input:-webkit-autofill:focus,
.sm-reserve .form-group textarea:-webkit-autofill,
.sm-reserve .form-group select:-webkit-autofill {
  -webkit-text-fill-color: #111111;
  box-shadow: 0 0 0 1000px #ffffff inset;
  caret-color: #111111;
}

@media (max-width: 900px) {
  .sm-intro,
  .sm-reserve-grid,
  .sm-feature,
  .sm-feature-body,
  .sm-card,
  .sm-table-head,
  .sm-table-row {
    grid-template-columns: 1fr;
  }

  .sm-table-head {
    display: none;
  }

  .sm-intro-side {
    padding-top: 0;
  }

  .sm-feature-media img {
    min-height: 200px;
    height: 200px;
  }

  .sm-card {
    grid-template-columns: 72px 1fr;
  }

  .sm-card-side {
    grid-column: 2;
    padding: 0 20px 18px;
  }
}
