:root {
  --ws-ink: #12101a;
  --ws-ink-soft: #2a2438;
  --ws-plum: #6b5a9a;
  --ws-plum-deep: #241b38;
  --ws-accent: #5ec8d8;
  --ws-mist: #f0eef5;
  --ws-paper: #f7f6fa;
  --ws-line: rgba(36, 27, 56, 0.12);
  --ws-font: "Vazirmatn", Tahoma, sans-serif;
}

.workshop-page,
.workshop-page * {
  box-sizing: border-box;
}

.workshop-page {
  font-family: var(--ws-font);
  color: var(--ws-ink);
  background: var(--ws-paper);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.ws-container {
  width: min(1120px, 90%);
  margin: 0 auto;
}

/* —— Hero —— */
.ws-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  color: #fff;
  padding: 0;
  overflow: hidden;
  background: #0c0a12;
}

.ws-hero-media {
  position: absolute;
  top: 108px; /* clear fixed navbar + top bar */
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  overflow: hidden;
}

.ws-hero-media img,
.ws-hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.ws-hero-video {
  display: block;
  transform: scale(1.04);
  animation: wsKenBurns 20s ease-out forwards;
}

.ws-hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(10, 8, 16, 0.35) 0%,
      rgba(10, 8, 16, 0.2) 35%,
      rgba(10, 8, 16, 0.78) 68%,
      rgba(10, 8, 16, 0.96) 100%
    ),
    linear-gradient(90deg, rgba(10, 8, 16, 0.72) 0%, rgba(10, 8, 16, 0.2) 55%, transparent 100%);
}

.ws-hero-panel {
  position: relative;
  z-index: 1;
  width: min(1120px, 90%);
  margin: 0 auto;
  padding: 140px 0 72px;
}

.ws-hero-copy {
  max-width: 640px;
  text-align: right;
}

.ws-brand {
  font-size: clamp(2rem, 5vw, 3.1rem);
  font-weight: 900;
  letter-spacing: 0.14em;
  margin: 0 0 18px;
  color: #fff;
  line-height: 1.1;
}

.ws-hero-title {
  font-size: clamp(1.7rem, 4.2vw, 2.85rem);
  font-weight: 800;
  line-height: 1.35;
  margin: 0 0 16px;
  max-width: 16ch;
}

.ws-hero-sub {
  font-size: clamp(1rem, 2vw, 1.18rem);
  font-weight: 500;
  line-height: 1.85;
  margin: 0 0 32px;
  max-width: 32em;
  color: rgba(255, 255, 255, 0.88);
}

.ws-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-start;
}

.ws-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.ws-btn-primary {
  background: #fff;
  color: var(--ws-plum-deep);
}

.ws-btn-primary:hover {
  transform: translateY(-2px);
  background: #e8f7fa;
}

.ws-btn-ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.45);
}

.ws-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.7);
}

.ws-btn-block {
  width: 100%;
  background: var(--ws-accent);
  color: #0c1a1e;
  margin-top: 10px;
}

.ws-btn-block:hover {
  background: #7ad8e4;
  color: #0c1a1e;
  transform: translateY(-1px);
}

/* —— Facts —— */
.ws-facts {
  background: #0c0a12;
  color: #fff;
  padding: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ws-facts-list {
  display: grid;
  grid-template-columns: 1fr;
  margin: 0;
  padding: 8px 0;
}

.ws-fact {
  display: grid;
  grid-template-columns: 7.5rem 1fr;
  gap: 12px 20px;
  align-items: baseline;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ws-fact:last-child {
  border-bottom: none;
}

.ws-fact dt {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--ws-accent);
  letter-spacing: 0.02em;
}

.ws-fact dd {
  margin: 0;
  font-weight: 800;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.7;
  color: #fff;
}

.ws-fact-price {
  color: #ffe29a !important;
  font-size: clamp(1.15rem, 2.3vw, 1.4rem) !important;
}

@media (min-width: 760px) {
  .ws-facts-list {
    grid-template-columns: 1fr 1fr;
    column-gap: 48px;
    padding: 18px 0 10px;
  }

  .ws-fact-span {
    grid-column: 1 / -1;
  }
}

@media (min-width: 980px) {
  .ws-facts-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .ws-fact-span {
    grid-column: span 2;
  }
}

/* —— Sections —— */
.ws-section {
  padding: 96px 0;
  position: relative;
}

.ws-section-title {
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  font-weight: 800;
  margin: 0 0 36px;
  color: var(--ws-plum-deep);
  letter-spacing: -0.02em;
}

.ws-section-title::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  margin-top: 14px;
  background: linear-gradient(90deg, var(--ws-accent), var(--ws-plum));
  border-radius: 2px;
}

/* About + poster */
.ws-about {
  background:
    radial-gradient(ellipse 50% 40% at 0% 0%, rgba(94, 200, 216, 0.08), transparent 55%),
    var(--ws-paper);
}

.ws-about-layout {
  display: grid;
  gap: 48px;
  align-items: center;
}

@media (min-width: 880px) {
  .ws-about-layout {
    grid-template-columns: 1.15fr 0.85fr;
  }
}

.ws-about-copy h2 {
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  font-weight: 800;
  color: var(--ws-plum-deep);
  margin: 0 0 20px;
  letter-spacing: -0.02em;
}

.ws-about-copy h2::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  margin-top: 14px;
  background: linear-gradient(90deg, var(--ws-accent), var(--ws-plum));
  border-radius: 2px;
}

.ws-about-copy > p {
  line-height: 2;
  font-size: 1.05rem;
  color: var(--ws-ink-soft);
  margin: 0;
}

.ws-about-meta {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 22px;
  border-top: 1px solid var(--ws-line);
}

.ws-about-meta p {
  margin: 0;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ws-ink);
}

.ws-about-meta span {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--ws-plum);
  margin-bottom: 2px;
  letter-spacing: 0.04em;
}

.ws-about-meta a {
  color: inherit;
  text-decoration: none;
}

.ws-about-meta a:hover {
  color: var(--ws-plum);
}

.ws-poster {
  margin: 0;
  position: relative;
}

.ws-poster img {
  width: 100%;
  display: block;
  border-radius: 4px;
  box-shadow:
    0 24px 60px rgba(18, 16, 26, 0.18),
    0 0 0 1px rgba(36, 27, 56, 0.08);
}

.ws-poster figcaption {
  margin-top: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ws-plum);
  text-align: center;
}

/* Audience */
.ws-audience-sec {
  background: var(--ws-mist);
}

/* Checklists */
.ws-checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.ws-checklist li {
  position: relative;
  padding: 16px 18px 16px 18px;
  padding-right: 48px;
  background: #fff;
  border-right: 3px solid var(--ws-accent);
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.75;
  color: var(--ws-ink-soft);
}

.ws-checklist li::before {
  content: "";
  position: absolute;
  right: 18px;
  top: 1.35em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ws-plum);
}

.ws-checklist-tight li {
  background: transparent;
  border-right-color: var(--ws-plum);
  padding: 8px 0 8px 0;
  padding-right: 28px;
  font-weight: 500;
  font-size: 0.98rem;
}

.ws-checklist-tight li::before {
  right: 0;
  top: 0.95em;
  width: 6px;
  height: 6px;
  background: var(--ws-accent);
}

/* Goals numbered */
.ws-goals {
  background: #fff;
}

.ws-numbered {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 18px;
}

.ws-numbered li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--ws-line);
}

.ws-numbered li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.ws-numbered span {
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--ws-accent);
  line-height: 1.4;
  font-variant-numeric: tabular-nums;
}

.ws-numbered p {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.8;
  color: var(--ws-ink-soft);
}

/* Learn */
.ws-learn {
  background:
    linear-gradient(180deg, #161222 0%, #241b38 100%);
  color: #fff;
}

.ws-learn .ws-section-title {
  color: #fff;
}

.ws-learn .ws-section-title::after {
  background: linear-gradient(90deg, var(--ws-accent), rgba(255, 255, 255, 0.4));
}

.ws-learn-weeks {
  display: grid;
  gap: 1px;
  background: rgba(255, 255, 255, 0.1);
}

@media (min-width: 700px) {
  .ws-learn-weeks {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1000px) {
  .ws-learn-weeks {
    grid-template-columns: repeat(3, 1fr);
  }
}

.ws-learn-week {
  background: #1a1530;
  padding: 28px 24px;
  min-height: 160px;
}

.ws-learn-week-label {
  margin: 0 0 14px;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--ws-accent);
  letter-spacing: 0.02em;
}

.ws-learn-item-title {
  font-size: 1.15rem;
  margin: 0 0 10px;
  color: #fff;
  font-weight: 800;
  line-height: 1.45;
}

.ws-learn-week p {
  margin: 0;
  line-height: 1.8;
  opacity: 0.82;
  font-size: 0.96rem;
  font-weight: 500;
}

/* Pillars */
.ws-pillars {
  background: var(--ws-mist);
}

.ws-pillars-grid {
  display: grid;
  gap: 40px;
}

@media (min-width: 860px) {
  .ws-pillars-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
  }
}

.ws-pillar h3 {
  margin: 0 0 20px;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--ws-plum-deep);
  padding-bottom: 14px;
  border-bottom: 2px solid var(--ws-accent);
}

/* Agenda */
.ws-agenda {
  background: var(--ws-paper);
}

.ws-agenda-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ws-agenda-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  padding: 26px 0;
  border-bottom: 1px solid var(--ws-line);
}

.ws-agenda-item:last-child {
  border-bottom: none;
}

.ws-agenda-index {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--ws-plum);
  line-height: 1.4;
}

.ws-agenda-body time {
  display: inline-block;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--ws-accent);
  background: rgba(94, 200, 216, 0.12);
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 10px;
}

.ws-agenda-body h3 {
  margin: 0 0 8px;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--ws-plum-deep);
}

.ws-agenda-body p {
  margin: 0;
  opacity: 0.85;
  line-height: 1.75;
  font-size: 0.98rem;
}

/* Speakers */
.ws-speakers {
  background: #fff;
}

.ws-mentors {
  background: var(--ws-mist);
}

.ws-mentor {
  grid-template-columns: 1fr;
}

.ws-speakers-grid {
  display: grid;
  gap: 28px;
}

@media (min-width: 700px) {
  .ws-speakers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.ws-speaker {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 20px;
  align-items: start;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--ws-line);
}

.ws-speaker:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

@media (min-width: 700px) {
  .ws-speaker:nth-last-child(-n + 2) {
    border-bottom: none;
    padding-bottom: 0;
  }
}

.ws-speaker-photo {
  width: 100px;
  height: 100px;
  border-radius: 4px;
  overflow: hidden;
  background: var(--ws-plum-deep);
  box-shadow: 0 0 0 1px rgba(36, 27, 56, 0.1);
}

.ws-speaker-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.ws-speaker-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

.ws-speaker h3 {
  margin: 0 0 6px;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--ws-plum-deep);
}

.ws-speaker-role {
  margin: 0 0 10px;
  color: var(--ws-plum);
  font-weight: 700;
  font-size: 0.92rem;
}

.ws-speaker-bio {
  margin: 0;
  line-height: 1.75;
  opacity: 0.85;
  font-size: 0.95rem;
}

/* Register */
.ws-register {
  background:
    radial-gradient(ellipse 60% 50% at 0% 100%, rgba(94, 200, 216, 0.12), transparent 50%),
    linear-gradient(165deg, #1a1530 0%, #0f0d16 100%);
  color: #fff;
}

.ws-register .ws-register-copy h2 {
  color: #fff;
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  margin: 0 0 16px;
  font-weight: 800;
}

.ws-register .ws-register-copy h2::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  margin-top: 14px;
  background: var(--ws-accent);
  border-radius: 2px;
}

.ws-register-copy p {
  line-height: 1.9;
  opacity: 0.9;
  font-size: 1.02rem;
}

.ws-register-note {
  margin-top: 18px !important;
  font-weight: 800 !important;
  color: var(--ws-accent) !important;
  opacity: 1 !important;
}

.ws-register-phone {
  margin-top: 14px !important;
  font-weight: 700 !important;
}

.ws-register-phone a {
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(94, 200, 216, 0.5);
}

.ws-register-phone a:hover {
  color: var(--ws-accent);
}

.ws-register-layout {
  display: grid;
  gap: 44px;
}

@media (min-width: 860px) {
  .ws-register-layout {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: start;
  }
}

.ws-register-form-wrap {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 28px;
}

.ws-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ws-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 600;
}

.ws-form label span {
  opacity: 0.8;
}

.ws-input {
  width: 100%;
  padding: 13px 14px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  font-family: inherit;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.ws-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.ws-input:focus {
  border-color: rgba(94, 200, 216, 0.65);
  background: rgba(255, 255, 255, 0.1);
}

.ws-flash {
  background: rgba(94, 200, 216, 0.15);
  border: 1px solid rgba(94, 200, 216, 0.4);
  color: #c8f0f6;
  padding: 12px 14px;
  border-radius: 8px;
  margin-bottom: 14px;
  font-weight: 600;
}

/* Motion */
[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1), transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes wsKenBurns {
  from { transform: scale(1.04); }
  to { transform: scale(1); }
}

@media (max-width: 600px) {
  .ws-hero-media {
    top: 96px;
  }

  .ws-hero-panel {
    padding: 120px 0 56px;
  }

  .ws-hero-title {
    max-width: none;
  }

  .ws-fact {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .ws-section {
    padding: 72px 0;
  }

  .ws-speaker {
    grid-template-columns: 80px 1fr;
  }

  .ws-speaker-photo {
    width: 80px;
    height: 80px;
  }

  .ws-agenda-item {
    grid-template-columns: 40px 1fr;
    gap: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ws-hero-video,
  [data-animate] {
    animation: none !important;
    transition: none !important;
  }

  [data-animate] {
    opacity: 1;
    transform: none;
  }
}
