/* ===== RESET & VARIABLES ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --cream: #eef8fc;
  --ivory: #f8fdff;
  --sand: #d8edf5;
  --gold: #2596be;
  --gold-light: #8fd0e8;
  --gold-dark: #0f5f86;
  --gold-glow: rgba(37, 150, 190, .18);
  --brown: #183342;
  --brown-deep: #102838;
  --text: #183342;
  --text-muted: #5d7480;
  --text-soft: #365765;
  --border-gold: rgba(37, 150, 190, .22);
  --border-gold2: rgba(37, 150, 190, .12);
  --surface: rgba(255, 255, 255, .94);
  --surface-strong: rgba(255, 255, 255, .99);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow-sm: 0 4px 12px rgba(22, 71, 96, .06);
  --shadow-md: 0 12px 32px rgba(22, 71, 96, .1);
  --shadow-lg: 0 24px 64px rgba(22, 71, 96, .14);
  --transition: .3s cubic-bezier(.4, 0, .2, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--cream);
}

::-webkit-scrollbar-thumb {
  background: var(--gold-dark);
  border-radius: 99px;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ===== GEOMETRIC PATTERN ===== */
.geo-pattern {
  position: absolute;
  inset: 0;
  opacity: .04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='96' height='96'%3E%3Cg fill='none' stroke='%232596be' stroke-width='.7'%3E%3Cpolygon points='48,6 90,30 90,66 48,90 6,66 6,30'/%3E%3Cpolygon points='48,18 78,33 78,63 48,78 18,63 18,33'/%3E%3Cline x1='48' y1='6' x2='48' y2='18'/%3E%3Cline x1='90' y1='30' x2='78' y2='33'/%3E%3Cline x1='90' y1='66' x2='78' y2='63'/%3E%3Cline x1='48' y1='90' x2='48' y2='78'/%3E%3Cline x1='6' y1='66' x2='18' y2='63'/%3E%3Cline x1='6' y1='30' x2='18' y2='33'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

/* ===== SELJUK MOTIF SILHOUETTES ===== */
.silhouette {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  color: var(--gold-dark);
}

.silhouette-1 {
  width: 760px;
  height: 760px;
  top: -180px;
  right: -280px;
  opacity: 0.07;
  animation: slowSpin 140s linear infinite;
}

.silhouette-2 {
  width: 620px;
  height: 620px;
  bottom: -180px;
  left: -230px;
  opacity: 0.06;
  animation: slowSpin 120s linear infinite reverse;
}

.silhouette-3 {
  width: 1200px;
  height: 1200px;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.05;
}

.silhouette-4 {
  width: 620px;
  height: 620px;
  top: 80px;
  right: -220px;
  opacity: 0.055;
  animation: slowSpin 160s linear infinite;
}

.silhouette-5 {
  width: 760px;
  height: 760px;
  top: 120px;
  right: -260px;
  opacity: 0.05;
  animation: slowSpin 220s linear infinite reverse;
}

.silhouette-6 {
  width: 560px;
  height: 560px;
  top: 80px;
  left: -220px;
  opacity: 0.055;
  animation: slowSpin 90s linear infinite;
}

.silhouette-7 {
  width: 520px;
  height: 520px;
  top: 90px;
  left: -190px;
  opacity: 0.05;
  animation: slowSpin 130s linear infinite reverse;
}

.silhouette-8 {
  width: 500px;
  height: 500px;
  top: 40px;
  right: -180px;
  opacity: 0.045;
  animation: slowSpin 150s linear infinite;
}

.silhouette-9 {
  width: 540px;
  height: 540px;
  top: 70px;
  left: -210px;
  opacity: 0.045;
  animation: slowSpin 170s linear infinite reverse;
}

.silhouette-10 {
  width: 460px;
  height: 460px;
  top: 50px;
  right: -170px;
  opacity: 0.045;
  animation: slowSpin 145s linear infinite;
}

.silhouette svg,
.silhouette img {
  width: 100%;
  height: 100%;
}

.silhouette img {
  display: block;
  object-fit: contain;
}

@keyframes slowSpin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* ===== NAVBAR ===== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 0 40px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(248, 253, 255, .92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(37, 150, 190, .15);
  box-shadow: 0 2px 24px rgba(22, 71, 96, .06);
  transition: all .4s ease;
}

nav.scrolled {
  background: rgba(248, 253, 255, .98);
  box-shadow: 0 8px 32px rgba(22, 71, 96, .1);
  border-bottom-color: var(--border-gold);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(37, 150, 190, .3);
}

.nav-logo-icon svg {
  width: 22px;
  height: 22px;
}

.nav-logo-city {
  font-size: 17px;
  font-weight: 700;
  color: var(--brown);
  letter-spacing: .3px;
}

.nav-logo-sub {
  font-size: 10px;
  color: var(--text-muted);
  margin-top: -2px;
  letter-spacing: .5px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}

.nav-links a {
  position: relative;
  font-size: 13px;
  color: var(--text-soft);
  text-decoration: none;
  letter-spacing: .2px;
  transition: color .2s;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 8px;
}

.nav-links a:hover {
  color: var(--gold);
  background: rgba(37, 150, 190, .06);
}

.nav-cta {
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  border: none;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all .25s;
  box-shadow: 0 4px 14px rgba(37, 150, 190, .3);
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(37, 150, 190, .4);
}

.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger svg {
  width: 24px;
  height: 24px;
  stroke: var(--text-soft);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  z-index: 199;
  background: rgba(248, 253, 255, .98);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(37, 150, 190, .2);
  padding: 16px 20px;
  flex-direction: column;
  gap: 2px;
  max-height: calc(100vh - 72px);
  overflow-y: auto;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  padding: 14px 12px;
  color: var(--text-soft);
  text-decoration: none;
  font-size: 15px;
  border-radius: 10px;
  font-weight: 500;
  transition: all .2s;
}

.mobile-menu a:hover {
  color: var(--gold);
  background: rgba(37, 150, 190, .06);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 24px 100px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  /* background: linear-gradient(180deg,
      rgba(248, 253, 255, .97) 0%,
      rgba(238, 248, 252, .95) 30%,
      rgba(216, 237, 245, .3) 70%,
      rgba(37, 150, 190, .08) 100%); */
}

.hero .geo-pattern {
  opacity: .06;
  z-index: 1;
}

.hero-poster {
  width: min(1120px, 100%);
  border-radius: 18px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid rgba(37, 150, 190, .18);
  box-shadow: 0 24px 70px rgba(22, 71, 96, .18);
  position: relative;
  z-index: 2;
}

.hero-poster img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 26px;
  border-radius: 999px;
  margin-bottom: 28px;
  background: rgba(37, 150, 190, .08);
  border: 1px solid rgba(37, 150, 190, .2);
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 1.6px;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s ease infinite;
  box-shadow: 0 0 12px rgba(37, 150, 190, .4);
}

.hero-title {
  font-size: clamp(42px, 6.5vw, 82px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -1px;
  position: relative;
  z-index: 2;
  margin-bottom: 12px;
  max-width: 900px;
  color: var(--brown);
}

.hero-title .gold {
  color: var(--gold);
}

.hero-theme-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 22px;
  border-radius: 12px;
  margin-top: 30px;
  margin-bottom: 20px;
  background: rgba(37, 150, 190, .1);
  border: 1px solid rgba(37, 150, 190, .25);
  font-size: 27px;
  font-weight: 600;
  color: var(--gold-dark);
  position: relative;
  z-index: 2;
}

.hero-subtitle {
  font-size: clamp(15px, 1.8vw, 18px);
  color: var(--text-soft);
  max-width: 720px;
  margin: 15px auto 30px;
  line-height: 1.8;
  font-weight: 400;
  position: relative;
  z-index: 2;
}

.hero-event-info {
  display: inline-flex;
  align-items: stretch;
  gap: 0;
  margin: 0 auto 8px;
  padding: 10px;
  border: 1px solid rgba(37, 150, 190, .18);
  border-radius: 18px;
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 18px 48px rgba(22, 71, 96, .12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  position: relative;
  z-index: 2;
}

.event-info-item {
  min-width: 230px;
  padding: 12px 20px;
  text-align: left;
}

.event-info-label {
  display: block;
  margin-bottom: 3px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.4px;
  line-height: 1.2;
  text-transform: uppercase;
}

.event-info-item strong {
  display: block;
  color: var(--brown-deep);
  font-size: clamp(15px, 1.7vw, 18px);
  font-weight: 700;
  line-height: 1.35;
}

.event-info-divider {
  width: 1px;
  margin: 8px 0;
  background: linear-gradient(to bottom, transparent, rgba(37, 150, 190, .34), transparent);
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 28px;
  position: relative;
  z-index: 2;
}

.btn-primary,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all .25s;
  letter-spacing: .3px;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #fff;
  box-shadow: 0 10px 30px rgba(37, 150, 190, .35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(37, 150, 190, .45);
}

.btn-ghost {
  background: rgba(255, 255, 255, .7);
  border: 1px solid rgba(37, 150, 190, .25);
  color: var(--text);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, .9);
  border-color: var(--gold);
  color: var(--gold-dark);
}

.hero-year {
  font-size: clamp(110px, 22vw, 220px);
  font-weight: 900;
  color: rgba(37, 150, 190, .04);
  line-height: 1;
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  z-index: 0;
  pointer-events: none;
  letter-spacing: -8px;
}

.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}

.hero-scroll span {
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.scroll-line {
  width: 2px;
  height: 40px;
  border-radius: 999px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease infinite;
}

/* ===== ANIMATIONS ===== */
@keyframes pulse {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .3
  }
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: .3;
    transform: scaleY(1)
  }

  50% {
    opacity: 1;
    transform: scaleY(1.15)
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px)
  }

  to {
    opacity: 1;
    transform: none
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-20px)
  }

  to {
    opacity: 1;
    transform: none
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 0
  }

  100% {
    background-position: 200% 0
  }
}

/* ===== TICKER BAND ===== */
.announce-band {
  background: linear-gradient(90deg, rgba(238, 248, 252, .96), rgba(226, 242, 248, .98), rgba(238, 248, 252, .96));
  border-top: 1px solid rgba(37, 150, 190, .12);
  border-bottom: 1px solid rgba(37, 150, 190, .12);
  padding: 14px 0;
  overflow: hidden;
}

.ticker-wrap {
  display: flex;
  animation: ticker 40s linear infinite;
  width: max-content;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 40px;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 500;
  color: var(--brown);
}

.ticker-item::before {
  content: '✦';
  font-size: 10px;
  color: var(--gold);
  opacity: .6;
}

@keyframes ticker {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

/* ===== SECTIONS ===== */
section {
  position: relative;
  overflow: hidden;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 40px;
}

.section-inner.compact {
  padding: 60px 40px;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header.left {
  text-align: left;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  border-radius: 30px;
  margin-bottom: 18px;
  background: rgba(37, 150, 190, .08);
  border: 1px solid rgba(37, 150, 190, .2);
  font-size: 11px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.section-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 18px;
  color: var(--brown);
}

.section-title .gold {
  color: var(--gold);
}

.section-title::after {
  content: '';
  display: block;
  width: 70px;
  height: 2px;
  margin-top: 16px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.section-header .section-title::after {
  margin: 16px auto 0;
}

.section-lead {
  font-size: clamp(14px, 1.4vw, 17px);
  color: var(--text-soft);
  max-width: 700px;
  line-height: 1.8;
  font-weight: 400;
}

.section-header .section-lead {
  margin: 0 auto;
}

/* ===== STATS ===== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.stat-item {
  text-align: center;
  padding: 40px 20px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .85);
  border: 1px solid rgba(37, 150, 190, .1);
  transition: all var(--transition);
}

.stat-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(37, 150, 190, .25);
}

.stat-number {
  font-size: clamp(32px, 4.5vw, 54px);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-suffix {
  font-size: .45em;
  vertical-align: top;
  margin-top: .3em;
  display: inline-block;
}

.stat-label {
  font-size: 14px;
  color: var(--text);
  font-weight: 600;
  letter-spacing: .3px;
}

.stat-sub {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 6px;
  line-height: 1.5;
}

/* ===== ABOUT MAGAZINE GRID ===== */
.about-mag-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: start;
}

.about-mag-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  color: var(--brown);
  line-height: 1.15;
  margin-bottom: 30px;
  letter-spacing: -0.5px;
}

.about-mag-title .gold {
  color: var(--gold);
}

.about-mag-lead {
  font-size: 18px;
  color: var(--text-soft);
  line-height: 1.8;
  margin-bottom: 20px;
  font-weight: 500;
}

.dropcap {
  float: left;
  font-size: 64px;
  line-height: 56px;
  padding-top: 4px;
  padding-right: 12px;
  font-weight: 800;
  color: var(--gold);
  font-family: serif;
}

.about-mag-text {
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.8;
  margin-bottom: 40px;
}

.about-mag-stats {
  display: flex;
  gap: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(37, 150, 190, .2);
}

.mag-stat {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mag-stat-val {
  font-size: 42px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.mag-stat-lbl {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.4;
}

.about-mag-callout {
  background: rgba(255, 255, 255, .6);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid rgba(37, 150, 190, .15);
  box-shadow: var(--shadow-sm);
}

.mag-quote-box {
  margin-bottom: 40px;
}

.mag-quote-icon {
  font-size: 56px;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 10px;
  margin-left: -8px;
}

.mag-quote-box p {
  font-size: 19px;
  font-weight: 500;
  font-style: italic;
  color: var(--brown);
  line-height: 1.6;
}

.mag-quote-box strong {
  color: var(--gold-dark);
  font-style: normal;
}

.mag-goals h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(37, 150, 190, .15);
}

.about-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  color: var(--text-soft);
  line-height: 1.7;
}

.about-list li::before {
  content: '';
  width: 20px;
  height: 20px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 3px;
  background: rgba(37, 150, 190, .1) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpolyline points='5,10 8,13 15,7' stroke='%232596be' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/cover no-repeat;
  border: 1px solid rgba(37, 150, 190, .3);
}

/* ===== THEME / FIRST YEAR ===== */
.theme-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 20px;
}

.theme-card {
  padding: 32px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .8);
  border: 1px solid rgba(37, 150, 190, .1);
  transition: all var(--transition);
  position: relative;
}

.theme-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(37, 150, 190, .3);
}

.theme-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(37, 150, 190, .1);
  border: 1px solid rgba(37, 150, 190, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.theme-card-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.8;
}

.theme-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--brown);
}

.theme-card p {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.75;
}

/* ===== TOPICS HORIZONTAL CAROUSEL ===== */
.topics-carousel {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 8px;
  margin: 0 -40px;
  padding-left: 40px;
  padding-right: 40px;
}

.topics-carousel::-webkit-scrollbar {
  display: none;
}

.topics-track {
  display: flex;
  gap: 14px;
  width: max-content;
}

.topic-card {
  width: 180px;
  flex-shrink: 0;
  padding: 28px 22px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .8);
  border: 1px solid rgba(37, 150, 190, .1);
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.topic-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  opacity: 0;
  transition: opacity .2s;
}

.topic-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(37, 150, 190, .25);
}

.topic-card:hover::before {
  opacity: 1;
}

.topic-card.active {
  background: linear-gradient(135deg, rgba(37, 150, 190, .12), rgba(255, 255, 255, .95));
  border-color: var(--gold);
  box-shadow: 0 8px 28px rgba(37, 150, 190, .18);
}

.topic-card.active::before {
  opacity: 1;
}

.topic-card-year {
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.topic-card-num {
  font-size: 36px;
  font-weight: 800;
  color: rgba(37, 150, 190, .12);
  line-height: 1;
  margin-bottom: 12px;
}

.topic-card.active .topic-card-num {
  color: rgba(37, 150, 190, .25);
}

.topic-card-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--brown);
  line-height: 1.4;
}

.topic-card.active .topic-card-name {
  color: var(--gold-dark);
}

.topic-card-status {
  margin-top: 12px;
  font-size: 11px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: .5px;
}

/* ===== ABSTRACTS & PAPERS READER ===== */
.detail-page {
  padding-top: 96px;
}

.detail-page .hero,
.detail-page .announce-band,
.detail-page #about,
.detail-page #scope,
.detail-page #topics,
.detail-page #countries,
.detail-page #institutions,
.detail-page #contact {
  display: none;
}

.detail-ozetler #committees,
.detail-ozetler #papers,
.detail-bildiriler #committees,
.detail-bildiriler #abstracts,
.detail-kurullar #abstracts,
.detail-kurullar #papers {
  display: none;
}

.home-page #committees .section-inner > .reveal:not(.section-action):nth-of-type(n+6) {
  display: none;
}

.detail-page .section-action,
.home-page.detail-page .section-action {
  display: none;
}

.section-action {
  margin-top: 28px;
  text-align: center;
}

.home-page .reader-toolbar {
  display: none;
}

.reader-section {
  background: transparent;
}

.reader-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.reader-search {
  flex: 1;
  min-width: 240px;
  max-width: 480px;
  position: relative;
}

.reader-search input {
  width: 100%;
  padding: 12px 16px 12px 44px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(37, 150, 190, .18);
  background: rgba(255, 255, 255, .8);
  font-size: 14px;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  transition: all .25s;
  outline: none;
}

.reader-search input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(37, 150, 190, .1);
  background: #fff;
}

.reader-search input::placeholder {
  color: var(--text-muted);
}

.reader-search svg {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  stroke: var(--text-muted);
  fill: none;
  stroke-width: 2;
}

.filter-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.filter-tag {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(37, 150, 190, .18);
  background: rgba(255, 255, 255, .6);
  font-size: 12px;
  font-weight: 500;
  color: var(--text-soft);
  cursor: pointer;
  transition: all .2s;
}

.filter-tag:hover,
.filter-tag.active {
  background: rgba(37, 150, 190, .12);
  border-color: var(--gold);
  color: var(--gold-dark);
}

.reader-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 20px;
}

.reader-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .85);
  border: 1px solid rgba(37, 150, 190, .1);
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.reader-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(37, 150, 190, .3);
}

.reader-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  opacity: 0;
  transition: opacity .25s;
}

.reader-card:hover::before {
  opacity: 1;
}

.reader-card-category {
  font-size: 10px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.reader-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 8px;
  line-height: 1.4;
}

.reader-card-author {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.reader-card-author svg {
  width: 14px;
  height: 14px;
  stroke: var(--text-muted);
  fill: none;
  stroke-width: 2;
}

.reader-card p {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.reader-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(37, 150, 190, .08);
}

.reader-card-meta {
  font-size: 11px;
  color: var(--text-muted);
  display: flex;
  gap: 12px;
}

.reader-card-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.reader-card-meta svg {
  width: 13px;
  height: 13px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
}

.reader-card-action {
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: all .2s;
}

.reader-card:hover .reader-card-action {
  gap: 8px;
}

.reader-card-action svg {
  width: 14px;
  height: 14px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
}

/* ===== READING MODAL ===== */
.reader-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(61, 49, 34, .6);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: opacity .3s ease;
}

.reader-modal-overlay.open {
  display: flex;
  opacity: 1;
}

.reader-modal {
  background: #fff;
  border-radius: var(--radius-xl);
  max-width: 860px;
  width: 100%;
  max-height: 90vh;
  box-shadow: 0 40px 100px rgba(61, 49, 34, .3);
  display: flex;
  flex-direction: column;
  transform: translateY(20px);
  transition: transform .3s ease;
  overflow: hidden;
}

.reader-modal-overlay.open .reader-modal {
  transform: none;
}

.reader-modal-header {
  padding: 28px 32px 20px;
  border-bottom: 1px solid rgba(37, 150, 190, .1);
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.reader-modal-header-content {
  flex: 1;
}

.reader-modal-close {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(37, 150, 190, .08);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
  flex-shrink: 0;
}

.reader-modal-close:hover {
  background: rgba(37, 150, 190, .16);
}

.reader-modal-close svg {
  width: 18px;
  height: 18px;
  stroke: var(--text-soft);
  fill: none;
  stroke-width: 2;
}

.reader-modal-category {
  font-size: 10px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.reader-modal h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 6px;
}

.reader-modal-author {
  font-size: 13px;
  color: var(--text-muted);
}

.reader-modal-body {
  padding: 32px;
  overflow-y: auto;
  flex: 1;
  font-size: 15px;
  color: var(--text);
  line-height: 1.9;
}

.reader-modal-body h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--brown);
  margin: 28px 0 12px;
}

.reader-modal-body h3:first-child {
  margin-top: 0;
}

.reader-modal-body p {
  margin-bottom: 16px;
}

.reader-modal-body blockquote {
  padding: 16px 20px;
  margin: 20px 0;
  border-left: 3px solid var(--gold);
  background: rgba(37, 150, 190, .04);
  border-radius: 0 12px 12px 0;
  font-style: italic;
  color: var(--text-soft);
}

.reader-modal-footer {
  padding: 16px 32px;
  border-top: 1px solid rgba(37, 150, 190, .1);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ===== COMMITTEE SECTIONS ===== */
.team-section-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.team-section-title .badge {
  font-size: 10px;
  padding: 3px 10px;
  border-radius: 20px;
  background: rgba(37, 150, 190, .1);
  color: var(--gold);
  font-weight: 600;
  letter-spacing: .5px;
}

.team-section-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.6;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 14px;
  margin-bottom: 48px;
}

.team-card {
  padding: 20px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, .75);
  border: 1px solid rgba(37, 150, 190, .08);
  transition: all var(--transition);
}

.team-card:hover {
  border-color: rgba(37, 150, 190, .2);
  box-shadow: var(--shadow-sm);
}

.team-card-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 4px;
}

.team-card-role {
  font-size: 12px;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 6px;
}

.team-card-affiliation {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}

.team-card-country {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 6px;
  padding: 2px 8px;
  border-radius: 6px;
  background: rgba(37, 150, 190, .06);
}

.team-card.featured {
  background: rgba(255, 255, 255, .92);
  border-color: rgba(37, 150, 190, .2);
  box-shadow: var(--shadow-sm);
}

.team-card.featured .team-card-name {
  font-size: 15px;
}

/* ===== MARQUEE (Countries & Institutions) ===== */
.marquee-container {
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}

.marquee-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: marqueeScroll 25s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

@keyframes marqueeScroll {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

.country-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .85);
  border: 1px solid rgba(37, 150, 190, .12);
  transition: all var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}

.country-badge:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: var(--shadow-md);
  border-color: rgba(37, 150, 190, .3);
}

.country-flag {
  font-size: 32px;
  line-height: 1;
}

.country-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--brown);
}

/* Institutions animated marquee */
.institutions-animated .logos-grid {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: marqueeScroll 30s linear infinite;
}

.institutions-animated .logos-grid:hover {
  animation-play-state: paused;
}

.institutions-animated .section-inner {
  overflow: hidden;
}

.institutions-animated .logos-grid {
  mask-image: none;
}

.logo-card {
  padding: 24px 20px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .75);
  border: 1px solid rgba(37, 150, 190, .08);
  text-align: center;
  transition: all var(--transition);
  flex-shrink: 0;
  min-width: 180px;
}

.logo-card:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: var(--shadow-md);
  border-color: rgba(37, 150, 190, .25);
}

/* ===== SCOPE CARDS ===== */
.scope-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 20px;
}

.scope-card {
  padding: 32px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .8);
  border: 1px solid rgba(37, 150, 190, .1);
  transition: all var(--transition);
}

.scope-card:hover {
  border-color: rgba(37, 150, 190, .25);
  box-shadow: var(--shadow-md);
}

.scope-card-num {
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

.scope-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 12px;
}

.scope-card p {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.75;
}

.scope-card ul {
  list-style: none;
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.scope-card li {
  font-size: 13.5px;
  color: var(--text-soft);
  line-height: 1.65;
  padding-left: 20px;
  position: relative;
}

.scope-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  opacity: .5;
}

/* ===== INSTITUTIONS ===== */
.logos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.logo-card {
  padding: 24px 20px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .75);
  border: 1px solid rgba(37, 150, 190, .08);
  text-align: center;
  transition: all var(--transition);
}

.logo-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(37, 150, 190, .25);
}

.logo-mark {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .95);
  border: 1px solid rgba(37, 150, 190, .2);
  box-shadow: var(--shadow-sm);
}

.logo-mark.president {
  background: linear-gradient(135deg, rgba(248, 253, 255, .95), rgba(37, 150, 190, .15));
}

.logo-mark svg {
  width: 36px;
  height: 36px;
}

.logo-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 4px;
}

.logo-sub {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 760px;
  margin: 0 auto;
}

.contact-card {
  padding: 32px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .8);
  border: 1px solid rgba(37, 150, 190, .1);
}

.contact-card h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 16px;
}

.contact-card p {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.8;
  margin-bottom: 8px;
}

.contact-card a {
  color: var(--gold);
  font-weight: 500;
  transition: color .2s;
}

.contact-card a:hover {
  color: var(--gold-dark);
}

.contact-card-label {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-bottom: 4px;
  margin-top: 14px;
}

.contact-card-value {
  font-size: 15px;
  color: var(--text);
}

/* ===== FOOTER ===== */
.footer {
  background: #e2f2f8;
  border-top: 1px solid rgba(37, 150, 190, .15);
  padding: 64px 40px 32px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37, 150, 190, .3);
}

.footer-logo-mark svg {
  width: 24px;
  height: 24px;
}

.footer-logo-text .city {
  font-size: 16px;
  font-weight: 700;
  color: var(--brown);
}

.footer-logo-text .sub {
  font-size: 10px;
  color: var(--text-muted);
}

.footer-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 280px;
}

.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--gold-dark);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 13px;
  color: var(--text-muted);
  transition: color .2s;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid rgba(37, 150, 190, .12);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 12px;
  color: var(--text-muted);
}

.footer-legal {
  display: flex;
  gap: 18px;
}

.footer-legal a {
  font-size: 12px;
  color: var(--text-muted);
  transition: color .2s;
}

.footer-legal a:hover {
  color: var(--gold);
}

/* ===== REVEAL ANIMATION ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 {
  transition-delay: .1s;
}

.reveal-delay-2 {
  transition-delay: .2s;
}

.reveal-delay-3 {
  transition-delay: .3s;
}

/* ===== EMPTY STATE ===== */
.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-muted);
}

.empty-state svg {
  width: 64px;
  height: 64px;
  stroke: var(--sand);
  fill: none;
  stroke-width: 1.2;
  margin-bottom: 16px;
}

.empty-state h3 {
  font-size: 18px;
  color: var(--text-soft);
  margin-bottom: 8px;
}

.empty-state p {
  font-size: 14px;
  max-width: 400px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .silhouette-1,
  .silhouette-5 {
    width: 560px;
    height: 560px;
    right: -240px;
  }

  .silhouette-2,
  .silhouette-6 {
    width: 460px;
    height: 460px;
    left: -210px;
  }

  .silhouette-4 {
    width: 480px;
    height: 480px;
    right: -210px;
  }

  .silhouette-7,
  .silhouette-9 {
    width: 420px;
    height: 420px;
    left: -190px;
  }

  .silhouette-8,
  .silhouette-10 {
    width: 400px;
    height: 400px;
    right: -180px;
  }

  .about-mag-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .theme-grid {
    grid-template-columns: 1fr;
  }

  .scope-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-hamburger {
    display: block;
  }

  nav {
    padding: 0 18px;
  }

  .hero {
    padding: 110px 18px 80px;
    min-height: auto;
  }

  .hero-poster {
    border-radius: 14px;
  }

  .hero-title {
    font-size: clamp(32px, 8vw, 52px);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .logos-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reader-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reader-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .reader-search {
    max-width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .section-inner {
    padding: 64px 18px;
  }

  nav {
    height: 64px;
    padding: 0 14px;
  }

  .mobile-menu {
    top: 64px;
  }

  .hero {
    padding: 90px 14px 60px;
  }

  .hero-poster {
    border-radius: 10px;
  }

  .hero-event-info {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 360px;
    padding: 8px;
  }

  .event-info-item {
    min-width: 0;
    padding: 11px 14px;
    text-align: center;
  }

  .event-info-divider {
    width: auto;
    height: 1px;
    margin: 0 12px;
    background: linear-gradient(to right, transparent, rgba(37, 150, 190, .34), transparent);
  }

  .hero-year {
    display: none;
  }

  .hero-scroll {
    display: none;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .stat-item {
    padding: 24px 14px;
  }

  .logos-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .about-mag-stats {
    flex-direction: column;
    gap: 20px;
  }

  .about-mag-callout {
    padding: 24px;
  }

  .reader-modal {
    border-radius: var(--radius-md);
    max-height: 95vh;
  }

  .reader-modal-header {
    padding: 20px;
  }

  .reader-modal-body {
    padding: 20px;
  }

  .footer {
    padding: 48px 18px 24px;
  }

  .btn-primary,
  .btn-ghost {
    width: 100%;
    justify-content: center;
  }

  .hero-actions {
    width: 100%;
  }
}

@media (hover: none) and (pointer: coarse) {

  .stat-item:hover,
  .theme-card:hover,
  .reader-card:hover,
  .logo-card:hover,
  .team-card:hover {
    transform: none;
  }
}

/* Toast */
@keyframes toastIn {
  from {
    opacity: 0;
    transform: translateY(16px) scale(.96)
  }

  to {
    opacity: 1;
    transform: none
  }
}

/* ===== PROGRAM PAGE ===== */
.home-program {
  position: relative;
  overflow: hidden;
  padding: 96px 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(238, 248, 252, .92)),
    radial-gradient(circle at 85% 12%, rgba(143, 208, 232, .26), transparent 32%);
}

.home-program-grid {
  display: grid;
  gap: 18px;
}

.home-program .program-card {
  grid-template-columns: 122px minmax(0, 1fr);
  gap: 22px;
}

.home-program .program-card time {
  position: static;
}

.home-program .program-card > div {
  padding: 22px;
}

.home-program .program-card > div::before {
  display: none;
}

.home-program .program-card ul {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.home-program .section-action {
  margin-top: 34px;
}

.program-page {
  background:
    radial-gradient(circle at 12% 8%, rgba(143, 208, 232, .28), transparent 34%),
    linear-gradient(180deg, var(--ivory), var(--cream) 42%, #fff);
  min-height: 100vh;
}

.program-hero {
  position: relative;
  overflow: hidden;
  padding: 120px 24px 52px;
  border-bottom: 1px solid var(--border-gold2);
}

.program-hero .silhouette-5 {
  width: 420px;
  height: 420px;
  top: 36px;
  right: 44px;
  opacity: 0.045;
}

.program-hero-inner {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.program-hero h1 {
  margin-top: 12px;
  color: var(--brown-deep);
  font-size: clamp(34px, 4.8vw, 56px);
  line-height: 1.05;
  letter-spacing: 0;
}

.program-hero p {
  max-width: 680px;
  margin-top: 16px;
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.65;
}

.program-meta-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 760px;
  margin-top: 24px;
}

.program-meta-grid div {
  padding: 14px 16px;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, .72);
  box-shadow: var(--shadow-sm);
}

.program-meta-grid span {
  display: block;
  margin-bottom: 4px;
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.program-meta-grid strong {
  color: var(--brown);
  font-size: 14px;
}

.program-section {
  width: min(1040px, calc(100% - 40px));
  margin: 0 auto;
  padding: 48px 0 72px;
}

.program-day + .program-day {
  margin-top: 52px;
}

.program-day-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-gold);
}

.program-day-head span {
  color: var(--gold-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.program-day-head h2 {
  color: var(--brown-deep);
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.1;
  text-align: right;
}

.program-timeline {
  position: relative;
  display: grid;
  gap: 14px;
}

.program-timeline::before {
  content: '';
  position: absolute;
  top: 12px;
  bottom: 12px;
  left: 112px;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--border-gold), transparent);
}

.program-card {
  position: relative;
  display: grid;
  grid-template-columns: 98px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.program-card time {
  position: sticky;
  top: 92px;
  z-index: 1;
  display: inline-flex;
  justify-content: center;
  min-height: 36px;
  padding: 8px 10px;
  border: 1px solid var(--border-gold);
  border-radius: 999px;
  background: var(--surface-strong);
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 900;
  box-shadow: var(--shadow-sm);
}

.program-card > div {
  position: relative;
  padding: 18px 20px;
  border: 1px solid var(--border-gold2);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-md);
}

.program-card > div::before {
  content: '';
  position: absolute;
  top: 24px;
  left: -34px;
  width: 11px;
  height: 11px;
  border: 3px solid var(--ivory);
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(37, 150, 190, .14);
}

.program-card h3 {
  color: var(--brown-deep);
  font-size: 18px;
  line-height: 1.25;
}

.program-chair {
  margin-top: 6px;
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.program-card ul {
  display: grid;
  gap: 9px;
  margin-top: 14px;
  list-style: none;
}

.program-card li {
  padding: 11px 13px;
  border: 1px solid rgba(37, 150, 190, .1);
  border-radius: var(--radius-sm);
  background: rgba(238, 248, 252, .52);
}

.program-card li strong,
.program-card li span {
  display: block;
}

.program-card li strong {
  color: var(--brown);
  font-size: 13px;
  font-weight: 900;
}

.program-card li span {
  margin-top: 4px;
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.5;
}

.program-card.protocol > div {
  border-color: rgba(15, 95, 134, .25);
  background: linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(216, 237, 245, .78));
}

.program-card.break > div {
  padding: 12px 18px;
  background: rgba(216, 237, 245, .55);
  box-shadow: var(--shadow-sm);
}

.program-card.break h3 {
  font-size: 15px;
}

@media (max-width: 768px) {
  .program-hero {
    padding: 104px 18px 42px;
  }

  .program-hero .silhouette-5 {
    width: 260px;
    height: 260px;
    top: 82px;
    right: 12px;
  }

  .program-hero p {
    font-size: 15px;
  }

  .program-meta-grid {
    grid-template-columns: 1fr;
  }

  .program-section {
    width: min(100% - 28px, 1120px);
    padding: 34px 0 56px;
  }

  .program-day-head {
    display: block;
  }

  .program-day-head h2 {
    margin-top: 8px;
    text-align: left;
  }

  .program-timeline::before {
    display: none;
  }

  .program-card {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .program-card time {
    position: static;
    justify-self: start;
  }

  .program-card > div {
    padding: 16px;
  }

  .program-card > div::before {
    display: none;
  }

  .program-card h3 {
    font-size: 17px;
  }

  .home-program {
    padding: 68px 0;
  }

  .home-program .program-card {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .home-program .program-card ul {
    grid-template-columns: 1fr;
  }
}
