.kowin-conf-2026 {
  --kowin-navy: #030817;
  --kowin-ink: #122033;
  --kowin-muted: #637083;
  --kowin-gold: #d6a520;
  --kowin-gold-soft: #f2cc63;
  --kowin-line: rgba(16, 33, 55, .13);
  --kowin-panel: #ffffff;
  --kowin-ice: #eef5fb;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow: hidden;
  background: #f7f8fb;
  color: var(--kowin-ink);
  font-family: Inter, "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

.kowin-conf-2026.kowin-observe-init {
  opacity: 1 !important;
  transform: none !important;
}

.kowin-conf-2026 *,
.kowin-conf-2026 *::before,
.kowin-conf-2026 *::after {
  box-sizing: border-box;
}

.kowin-conf-2026 img {
  display: block;
  max-width: 100%;
}

.kowin-conf-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, .86fr);
  min-height: min(820px, calc(100vh - 82px));
  background:
    radial-gradient(circle at 72% 34%, rgba(73, 130, 220, .28), transparent 34%),
    linear-gradient(115deg, #020611 0%, #07142a 48%, #07101e 100%);
  color: #fff;
}

.kowin-conf-hero__copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  padding: clamp(68px, 8vw, 118px) clamp(24px, 6.5vw, 108px);
}

.kowin-conf-hero__copy::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(2, 6, 17, .92), rgba(2, 6, 17, .64) 58%, rgba(2, 6, 17, .08));
}

.kowin-conf-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  max-width: 760px;
}

.kowin-conf-topline > span,
.kowin-conf-eyebrow,
.kowin-conf-kicker {
  color: var(--kowin-gold-soft);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.kowin-conf-2026 .kowin-conf-hero .kowin-conf-topline > span,
.kowin-conf-2026 .kowin-conf-hero .kowin-conf-eyebrow {
  color: var(--kowin-gold-soft) !important;
}

.kowin-conf-lang {
  display: inline-flex;
  padding: 2px;
  border: 1px solid rgba(242, 204, 99, .52);
  background: rgba(255, 255, 255, .07);
}

.kowin-conf-lang a {
  min-width: 38px;
  padding: 7px 10px;
  color: rgba(255, 255, 255, .78);
  font-size: .8rem;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  text-decoration: none;
}

.kowin-conf-lang a.is-active {
  background: var(--kowin-gold);
  color: #07101e;
}

.kowin-conf-hero h1 {
  max-width: 820px;
  margin: 0;
  color: #fff;
  line-height: .98;
  letter-spacing: 0;
}

.kowin-conf-hero h1 span {
  display: block;
  margin-bottom: 12px;
  color: #ffffff !important;
  font-size: clamp(42px, 7vw, 112px);
  font-weight: 900;
}

.kowin-conf-hero h1 strong {
  display: block;
  color: #ff4545 !important;
  font-size: clamp(30px, 3.95vw, 62px);
  font-weight: 900;
  line-height: 1.1;
}

.kowin-conf-lead {
  max-width: 700px;
  margin: 0;
  color: rgba(255, 255, 255, .86) !important;
  font-size: clamp(17px, 1.55vw, 23px);
  line-height: 1.68;
}

.kowin-conf-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 960px;
  margin: 8px 0 0;
}

.kowin-conf-meta div {
  min-height: 116px;
  padding: 18px;
  border: 1px solid rgba(242, 204, 99, .27);
  background: rgba(255, 255, 255, .07);
}

.kowin-conf-meta dt {
  margin-bottom: 10px;
  color: var(--kowin-gold-soft);
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.kowin-conf-meta dd {
  margin: 0;
  color: rgba(255, 255, 255, .9);
  font-size: .96rem;
  font-weight: 650;
  line-height: 1.55;
}

.kowin-conf-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.kowin-conf-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid rgba(214, 165, 32, .55);
  background: rgba(255, 255, 255, .06);
  color: #fff;
  font-size: .94rem;
  font-weight: 850;
  letter-spacing: .03em;
  line-height: 1.1;
  text-decoration: none;
  transition: transform .18s ease, background-color .18s ease, border-color .18s ease;
}

.kowin-conf-button:hover,
.kowin-conf-button:focus {
  transform: translateY(-1px);
  border-color: rgba(242, 204, 99, .9);
  background: rgba(255, 255, 255, .12);
  color: #fff;
}

.kowin-conf-button--gold {
  border-color: transparent;
  background: linear-gradient(135deg, #d39a14 0%, #f3cd62 100%);
  color: #07101e;
}

.kowin-conf-button--gold:hover,
.kowin-conf-button--gold:focus {
  color: #07101e;
  background: linear-gradient(135deg, #e5ad24 0%, #ffe07b 100%);
}

.kowin-conf-hero__visual {
  position: relative;
  min-height: 100%;
  margin: 0;
  overflow: hidden;
}

.kowin-conf-hero__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2, 6, 17, .36), rgba(2, 6, 17, 0) 42%);
  pointer-events: none;
}

.kowin-conf-hero__visual img {
  width: 100%;
  height: 100%;
  min-height: min(820px, calc(100vh - 82px));
  object-fit: cover;
  object-position: center;
}

.kowin-conf-section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(54px, 7vw, 96px) 0;
}

.kowin-conf-section h2 {
  margin: 0;
  color: var(--kowin-ink);
  font-size: clamp(30px, 4vw, 54px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 0;
}

.kowin-conf-section h3 {
  margin: 0;
  color: var(--kowin-ink);
  font-size: 1.18rem;
  font-weight: 850;
  line-height: 1.28;
}

.kowin-conf-section p {
  color: var(--kowin-muted);
  font-size: 1.04rem;
  line-height: 1.78;
}

.kowin-conf-section-head {
  display: grid;
  gap: 12px;
  max-width: 820px;
  margin-bottom: 32px;
}

.kowin-conf-overview {
  display: grid;
  grid-template-columns: .74fr 1.26fr;
  gap: clamp(28px, 6vw, 84px);
  align-items: start;
}

.kowin-conf-overview > p {
  margin: 0;
  color: #263b53;
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.76;
}

.kowin-conf-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.kowin-conf-facts article,
.kowin-conf-session,
.kowin-conf-registration,
.kowin-conf-book,
.kowin-conf-poster-grid {
  border: 1px solid var(--kowin-line);
  background: var(--kowin-panel);
  box-shadow: 0 20px 60px rgba(26, 43, 67, .07);
}

.kowin-conf-facts article {
  min-height: 210px;
  padding: 26px;
}

.kowin-conf-facts span,
.kowin-conf-session span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  border: 1px solid rgba(214, 165, 32, .55);
  color: var(--kowin-gold);
  font-weight: 900;
}

.kowin-conf-facts p {
  margin-bottom: 0;
}

.kowin-conf-sessions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.kowin-conf-session {
  display: grid;
  grid-template-rows: auto 1fr;
}

.kowin-conf-session img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #e8edf5;
}

.kowin-conf-session > div {
  padding: 24px;
}

.kowin-conf-session p {
  margin: 10px 0 0;
  font-size: .96rem;
  line-height: 1.55;
}

.kowin-conf-session p strong {
  color: var(--kowin-ink);
  font-size: 1.04rem;
}

.kowin-conf-schedule {
  width: 100%;
  max-width: none;
  padding-left: max(20px, calc((100vw - 1180px) / 2));
  padding-right: max(20px, calc((100vw - 1180px) / 2));
  background: #07101e;
}

.kowin-conf-schedule h2,
.kowin-conf-schedule .kowin-conf-section-head p {
  color: #fff !important;
}

.kowin-conf-2026 .kowin-conf-schedule .kowin-conf-kicker,
.kowin-conf-2026 .kowin-conf-schedule time {
  color: var(--kowin-gold-soft) !important;
}

.kowin-conf-2026 .kowin-conf-schedule .kowin-conf-time-row p {
  color: rgba(255, 255, 255, .9) !important;
}

.kowin-conf-timeline {
  display: grid;
  border-top: 1px solid rgba(255, 255, 255, .16);
}

.kowin-conf-time-row {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 22px;
  align-items: center;
  min-height: 78px;
  border-bottom: 1px solid rgba(255, 255, 255, .16);
}

.kowin-conf-time-row time {
  color: var(--kowin-gold-soft);
  font-size: .98rem;
  font-weight: 900;
}

.kowin-conf-time-row p {
  margin: 0;
  color: rgba(255, 255, 255, .9);
  font-size: 1.04rem;
  font-weight: 650;
}

.kowin-conf-registration {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  padding: clamp(30px, 5vw, 56px);
}

.kowin-conf-registration h2,
.kowin-conf-book h2 {
  margin-bottom: 16px;
}

.kowin-conf-registration figure {
  margin: 0;
  padding: 16px;
  border: 1px solid var(--kowin-line);
  background: #fff;
}

.kowin-conf-registration figure img {
  width: 100%;
}

.kowin-conf-registration figcaption {
  margin-top: 12px;
  color: var(--kowin-muted);
  font-size: .9rem;
  line-height: 1.45;
  text-align: center;
}

.kowin-conf-registration .kowin-conf-button:not(.kowin-conf-button--gold),
.kowin-conf-book .kowin-conf-button:not(.kowin-conf-button--gold) {
  color: var(--kowin-ink);
}

.kowin-conf-contact-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin: 20px 0 0;
  font-weight: 800;
}

.kowin-conf-contact-line a {
  color: var(--kowin-ink);
  text-decoration: none;
}

.kowin-conf-book {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: clamp(28px, 5vw, 48px);
  background: linear-gradient(135deg, #fff 0%, #f2f6fb 100%);
}

.kowin-conf-book span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  min-height: 52px;
  padding: 12px 18px;
  border: 1px solid rgba(214, 165, 32, .5);
  color: var(--kowin-ink);
  font-weight: 900;
  text-transform: uppercase;
}

.kowin-conf-poster-grid {
  display: grid;
  grid-template-columns: minmax(280px, 430px) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  padding: clamp(24px, 4vw, 44px);
}

.kowin-conf-poster-grid > img {
  width: 100%;
  border: 1px solid var(--kowin-line);
  box-shadow: 0 18px 48px rgba(18, 32, 51, .14);
}

.kowin-conf-poster-grid h3 {
  margin-bottom: 22px;
  font-size: clamp(24px, 3vw, 40px);
}

.kowin-conf-logos {
  width: 100%;
  border: 1px solid var(--kowin-line);
  background: #fff;
}

@media (max-width: 1080px) {
  .kowin-conf-hero {
    grid-template-columns: 1fr;
  }

  .kowin-conf-hero__copy {
    min-height: auto;
  }

  .kowin-conf-hero__copy::before {
    background: linear-gradient(180deg, rgba(2, 6, 17, .94), rgba(2, 6, 17, .64));
  }

  .kowin-conf-hero__visual {
    min-height: 420px;
  }

  .kowin-conf-hero__visual img {
    min-height: 420px;
  }

  .kowin-conf-meta,
  .kowin-conf-facts,
  .kowin-conf-sessions {
    grid-template-columns: 1fr;
  }

  .kowin-conf-overview,
  .kowin-conf-registration,
  .kowin-conf-book,
  .kowin-conf-poster-grid {
    grid-template-columns: 1fr;
  }

  .kowin-conf-registration figure {
    width: min(260px, 100%);
  }
}

@media (max-width: 640px) {
  .kowin-conf-topline {
    align-items: flex-start;
    flex-direction: column;
  }

  .kowin-conf-hero__copy {
    padding: 48px 20px;
  }

  .kowin-conf-hero h1 span {
    font-size: clamp(40px, 14vw, 68px);
  }

  .kowin-conf-hero h1 strong {
    font-size: clamp(28px, 8vw, 42px);
  }

  .kowin-conf-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .kowin-conf-button {
    width: 100%;
  }

  .kowin-conf-section {
    width: min(100% - 28px, 1180px);
    padding: 46px 0;
  }

  .kowin-conf-facts article,
  .kowin-conf-session > div,
  .kowin-conf-registration,
  .kowin-conf-book,
  .kowin-conf-poster-grid {
    padding: 20px;
  }

  .kowin-conf-time-row {
    grid-template-columns: 1fr;
    gap: 6px;
    align-items: start;
    padding: 18px 0;
  }
}
