/* ==========================================================================
   Startup Ecosystem Summit 2025 - styles
   ========================================================================== */

:root {
  --color-navy: #0b1f3a;
  --color-navy-light: #142b52;
  --color-teal: #00b39a;
  --color-teal-dark: #00917c;
  --color-orange: #ff6b35;
  --color-bg: #ffffff;
  --color-bg-alt: #f4f6f9;
  --color-text: #1c2333;
  --color-text-muted: #5b6678;
  --color-border: #e2e6ed;
  --font-base: "Poppins", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  --container-w: 1280px;
  --radius: 10px;
  --shadow-sm: 0 2px 8px rgba(11, 31, 58, 0.08);
  --shadow-md: 0 8px 24px rgba(11, 31, 58, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-base);
  color: var(--color-text);
  background: var(--color-bg) url("../images/misc/bg-hero.webp") center top / cover no-repeat fixed;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { margin: 0 0 0.6em; line-height: 1.4; }
p { margin: 0 0 1em; }
button { font-family: inherit; cursor: pointer; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
}
.skip-link:focus {
  left: 8px;
  top: 8px;
  background: #fff;
  padding: 8px 12px;
  z-index: 9999;
  border-radius: 4px;
}

.container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--color-teal);
  color: #fff;
}
.btn-primary:hover {}
.btn-outline {
  background: transparent;
  border-color: var(--color-navy);
  color: var(--color-navy);
}
.btn-outline:hover { background: var(--color-navy); color: #fff; }
.btn-small { padding: 10px 18px; font-size: 0.85rem; }

.link-arrow { font-weight: 700; color: var(--color-teal-dark); }

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: linear-gradient(to bottom, #1b1a43 0%, rgba(2, 1, 51, 0) 100%);
  border-bottom: none;
}
.header-inner {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 1280px;
  max-width: 100%;
  padding: 20px 24px;
  /*height: 76px;*/
  margin: 0 auto;
  gap: 24px;
}
.brand {
  font-weight: 600;
  font-size: 0.95rem;
  color: #fff;
  line-height: 1.2;
}
.brand strong { color: var(--color-teal); }
.main-nav {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 12px 12px;
  border: 1px solid #ffffff33;
}
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0 14px;
}
.main-nav a {
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  position: relative;
  padding: 16px 0;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 10px;
  width: 0;
  height: 1px;
  background: var(--color-bg);
  transition: width 0.4s ease;
}
.main-nav a:hover { color: var(--color-bg); }
.main-nav a:hover::after { width: 100%; }
.main-nav-cta { display: none; }
.header-actions { display: flex; align-items: center; gap: 16px; }
.header-actions .btn-primary {
  background: #fff;
  color: var(--color-navy);
  padding: 11px 6px 11px 22px;
  border: none;
  transition: background 0.2s ease, transform 0.2s ease;
}
.header-actions .btn-primary:hover {
  background: linear-gradient(90deg, #5c3fb5ff 0%, #01dee1ff 100%);
  color: #fff;
  opacity: 1;
  /*transform: translateY(-1px);*/
}
.header-actions .btn-primary:hover .cta-arrow {
  background: #fff;
  color: var(--color-navy);
  transform: rotate(-45deg);
}
.cta-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(90deg, #5c3fb5ff 0%, #01dee1ff 100%);
  color: #fff;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
  font-size: 1rem;
  flex-shrink: 0;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: transparent;
  border: none;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- hero ---------- */
.hero {
  display: flex;
  align-content: flex-start;
  align-items: flex-start;
  flex: none;
  flex-direction: column;
  flex-wrap: nowrap;
  height: auto;
  justify-content: center;
  margin: 0 auto;
  padding: 0px 96px 20px 96px;
  position: relative;
  width: 1280px;
  z-index: 2;
  max-width: 100%;
  min-height: 88vh;
  overflow: hidden;
  color: #fff;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  /*background:
    radial-gradient(circle at 15% 20%, rgba(0, 179, 154, 0.35), transparent 45%),
    radial-gradient(circle at 85% 80%, rgba(255, 107, 53, 0.25), transparent 50%),
    linear-gradient(135deg, #0b1f3a 0%, #142b52 60%, #0b1f3a 100%);*/
}
.hero-inner { /*position: relative; z-index: 1; padding: 120px 24px;*/ }
.hero-eyebrow {
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--color-teal);
  margin-bottom: 16px;
}
.hero-title {
  width: 700px;
  max-width: 100%;
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 600;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
	.hero-title { width: 100%; }
}
.hero-title img {
  width: 100%;
  max-width: 700px;
  height: auto;
}
.event-name {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 0px;
  line-height: 1.45;
  text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.6);
}
.event-date {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 10px;
  text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.6);
}

.hero-venue {
  display: flex;
  align-items: center;
  /*justify-content: space-between;*/
  width: 100%;
  gap: 16px;
  font-size: 2rem;
  margin-bottom: 46px;
  color: #fff;
  font-weight: 600;
  text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.6);
}
.hero-venue-text {
  display: flex;
  align-items: center;
  line-height: 1.2;
  gap: 8px;
}
.hero-venue .icon { flex-shrink: 0; }
.hero-venue-logo {
  height: 50px;
  width: auto;
  flex-shrink: 0;
}
.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 310px;
}

/* ---------- section ---------- */
.section { padding: 96px 0; }
.section-alt { background: var(--color-bg-alt); }
.section-eyebrow {
  font-weight: 700;
  /*letter-spacing: 0.12em;*/
  color: var(--color-bg);
  margin-bottom: 8px;
  font-size: 0.9rem;
}
.section-title {
  font-size: 32px;
  font-weight: 600;
  color: var(--color-bg);
}
.section-lead { margin-bottom: 32px; }
.section-note {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-top: -8px;
  margin-bottom: 32px;
}
#about {
  background:
    url("../images/misc/bg-about.webp") right top no-repeat,
    linear-gradient(180deg, rgba(232, 25, 127, 0) 0%, #e8197f 100%);
  background-size: 600px 600px, auto;
}
.about-text {
  max-width: 760px;
  color: var(--color-bg);
  font-size: 1.02rem;
}
.about-photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
}
.about-photos img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

/* ---------- contents ---------- */
.contents-section {
  background: linear-gradient(180deg, #e8197f 0%, #c23bb0 45%, #7a3fc9 75%, #1a56db 100%);
  color: #fff;
}
.contents-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 48px;
  align-items: start;
}
.contents-intro { position: sticky; top: 120px; }
.contents-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}
.eyebrow-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgb(255,255,255, 0.4);
  /*border: 2px solid #fff;*/
  position: relative;
  flex-shrink: 0;
}
.eyebrow-dot::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  transform: translate(-50%, -50%);
}
html[lang="en"] .section-eyebrow.contents-eyebrow {
  font-size: 32px;
  font-weight: 700;
}
html[lang="en"] .contents-eyebrow .eyebrow-dot {
  width: 32px;
  height: 32px;
}
html[lang="en"] .contents-eyebrow .eyebrow-dot::after {
  width: 11px;
  height: 11px;
}
.contents-heading { color: #fff; margin-bottom: 28px; }
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 600;
  color: #fff;
}
.link-arrow-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  color: var(--color-navy);
  font-size: 1.1rem;
  transition: transform 0.2s ease;
}
.link-arrow:hover .link-arrow-icon { transform: rotate(-45deg); }
.contents-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.contents-card {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.06));
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 24px;
  padding: 36px 40px;
}
.contents-card-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.3rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 14px;
}
.card-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgb(255, 255, 255, 0.4);
  position: relative;
  flex-shrink: 0;
}
.card-dot::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #fff;
  transform: translate(-50%, -50%);
}
.contents-card-subtitle { font-weight: 600; }
.contents-card-meta {
  font-size: 0.92rem;
  font-weight: 600;
  color: #fff;
  opacity: 0.9;
  margin-bottom: 24px;
}
.contents-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}
.contents-card-row {
  display: grid;
  grid-template-columns: 225px 1fr;
  gap: 32px;
  align-items: start;
}
.contents-card-media { border-radius: var(--radius); overflow: hidden; aspect-ratio: 3 / 2; background: rgba(255, 255, 255, 0.1); }
.contents-card-media img { width: 100%; height: 100%; object-fit: cover; }
.contents-desc { color: #fff; opacity: 0.92; font-size: 0.92rem; margin-bottom: 0; line-height: 1.55; }
.contents-cta {
  grid-column: 2;
  display: flex;
  flex-direction: column;
  gap: 24px;
  /*max-width: 640px;*/
  margin: 56px auto 0;
}
.cta-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 10px 10px 36px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1.1rem;
  gap: 24px;
  box-shadow: 0 8px 24px rgba(10, 10, 46, 0.12);
  transition: transform 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease;
}
.cta-pill:hover { transform: translateY(-7px); }
.cta-pill-primary {
	background: linear-gradient(180deg, #0a8fd1, #00d9c6);
	color: #fff;
	box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
}
.cta-pill-secondary {
	background: linear-gradient(100deg, #ff5d8f, #ff8c3d, #ffc93c);
	color: #fff;
	box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
}
.cta-pill-primary:hover,
.cta-pill-secondary:hover {
	box-shadow: 0 12px 10px rgba(0, 0, 0, 0.5);
}
.cta-pill-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.cta-pill-primary .cta-pill-icon { background: #fff; color: #1976d2; }
.cta-pill-secondary .cta-pill-icon { background: #fff; color: #ee8363; /*transform: rotate(-45deg);*/ }
.hero-actions .cta-pill-primary,
.contents-cta .cta-pill-primary,
.hero-actions .cta-pill-secondary,
.contents-cta .cta-pill-secondary {
	transition: background 0.2s ease, transform 0.2s ease;
}
.hero-actions .cta-pill-primary:hover,
.contents-cta .cta-pill-primary:hover { background: #0a0a2e; color: #fff; }
.hero-actions .cta-pill-primary:hover .cta-pill-icon,
.contents-cta .cta-pill-primary:hover .cta-pill-icon {
  background: #fff;
  color: #0a0a2e;
  transform: rotate(-45deg);
}
.hero-actions .cta-pill-secondary:hover,
.contents-cta .cta-pill-secondary:hover { background: #0a0a2e; color: #fff; }
.hero-actions .cta-pill-secondary:hover .cta-pill-icon,
.contents-cta .cta-pill-secondary:hover .cta-pill-icon {
  background: #fff;
  color: #0a0a2e;
  transform: rotate(-45deg);
}
.hero-actions .cta-pill-icon,
.contents-cta .cta-pill-icon { transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease; }

/* ---------- gallery slider (seamless) ---------- */
#gallery {
  background: linear-gradient(180deg, rgba(90, 63, 196, 1) 0%, rgba(90, 63, 196, 0) 100%);
}
#gallery .container { margin-bottom: 40px; }
.gallery-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.gallery-header .section-title { margin-bottom: 0; }
.gallery-controls {
  display: flex;
  align-items: center;
  gap: 4px;
  background: #1c1c24;
  border-radius: 999px;
  padding: 6px;
  flex-shrink: 0;
  margin-left: auto;
}
.gallery-control-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: transparent;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s ease;
}
.gallery-control-btn:hover { background: rgba(255, 255, 255, 0.15); }
.gallery-control-btn-playpause { background: rgba(255, 255, 255, 0.12); }
.gallery-control-btn-playpause:hover { background: rgba(255, 255, 255, 0.22); }
.gallery-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.gallery-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: gallery-scroll 120s linear infinite;
}
.gallery-slider.is-paused .gallery-track { animation-play-state: paused; }
.gallery-item {
  flex: 0 0 auto;
  width: 520px;
  display: flex;
  flex-direction: column;
}
.gallery-item-photo {
  width: 100%;
  aspect-ratio: 3 / 2;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.gallery-item-photo img { width: 100%; height: 100%; object-fit: cover; }
.gallery-caption {
  margin-top: 10px;
  padding: 6px 4px;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  align-self: flex-start;
}
@keyframes gallery-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- speakers ---------- */
.speakers-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 50px 50px;
  margin-top: 24px;
}
.speaker-card { text-align: left; }
.card-hidden { display: none; }
.speaker-photo-btn {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  overflow: hidden;
  border: none;
  padding: 0;
  margin-bottom: 14px;
}
.speaker-photo-icon {
  position: absolute;
  right: 8px;
  bottom: 8px;
  width: 24px;
  height: 24px;
  line-height: 0;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 640'%3E%3Cpath fill='%23fff' fill-opacity='0.7' d='M320 576C461.4 576 576 461.4 576 320C576 178.6 461.4 64 320 64C178.6 64 64 178.6 64 320C64 461.4 178.6 576 320 576zM296 408L296 344L232 344C218.7 344 208 333.3 208 320C208 306.7 218.7 296 232 296L296 296L296 232C296 218.7 306.7 208 320 208C333.3 208 344 218.7 344 232L344 296L408 296C421.3 296 432 306.7 432 320C432 333.3 421.3 344 408 344L344 344L344 408C344 421.3 333.3 432 320 432C306.7 432 296 421.3 296 408z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.5));
}
.speaker-photo-btn img,
.speaker-photo-btn .avatar-fallback {
  transition: transform 0.3s ease;
}
.speaker-photo-btn:hover img,
.speaker-photo-btn:hover .avatar-fallback {
  transform: scale(1.1);
}
.speaker-photo-btn img { width: 100%; height: 100%; object-fit: cover; }
.avatar-fallback {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 2rem;
  color: #fff;
  background: linear-gradient(135deg, var(--color-navy), var(--color-teal-dark));
}
.avatar-fallback--lg { font-size: 3.4rem; border-radius: 16px; }
.speaker-name { font-size: 0.98rem; font-weight: 700; color: var(--color-navy); margin-bottom: 2px; }
.speaker-title {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  margin-bottom: 0;
  line-height: 1.5;
}

.load-more-wrap { text-align: center; margin-top: 44px; }
.load-more-btn span { display: inline-flex; transition: transform 0.2s ease; }
.load-more-btn:hover span { transform: rotate(-45deg); }

/* speakers: blue → teal gradient background */
#speakers {
  background: linear-gradient(180deg, #1a56db 0%, #0a8fd1 35%, #64d8df 70%, #64d8df 100%);
}
#speakers .speaker-name { color: #fff; }
#speakers .speaker-title { color: rgba(255, 255, 255, 0.78); }
#speakers .speaker-photo-btn { }
#speakers .speaker-photo-btn:hover { }
#speakers .load-more-btn {
  border: none;
  background: #fff;
  color: #5c3fb5;
  padding: 8px 8px 8px 30px;
  gap: 18px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
}
#speakers .load-more-btn:hover {
  background: #fff;
  color: #5c3fb5;
  transform: translateY(-7px);
  box-shadow: 0 12px 10px rgba(0, 0, 0, 0.5);
}
#speakers .load-more-btn span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(90deg, #5c3fb5 0%, #01dee1 100%);
  color: #fff;
  flex-shrink: 0;
}

/* ---------- ecosystem players ---------- */
.player-section {
  background: linear-gradient(180deg, #64d8df 0%, #00d9c6 50%, #5a3fc4 100%);
}
.player-section .section-title { color: #fff; }
.players-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 20px;
  margin-top: 24px;
}
.player-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 9px 9px;
  text-align: center;
  transition: transform 0.3s ease;
}
.player-card:hover { transform: translateY(-10px); }
.player-logo-placeholder {
  width: 48px;
  height: 48px;
  margin: 0 auto 10px;
  border-radius: 50%;
  background: var(--color-bg-alt);
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
}
.player-logo {
  width: 100%;
  /*height: 64px;*/
  display: flex;
  align-items: center;
  justify-content: center;
}
.player-logo img,
.player-link img {
  max-width: 100%;
  /*max-height: 64px;*/
  width: auto;
  height: auto;
  object-fit: contain;
}
.player-link { display: block; }
.player-name {
  display: none;
}

#players-load-more {
  border: none;
  background: #fff;
  color: #5c3fb5;
  padding: 8px 8px 8px 30px;
  gap: 18px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
}
#players-load-more:hover {
  background: #fff;
  color: #5c3fb5;
  transform: translateY(-7px);
  box-shadow: 0 12px 10px rgba(0, 0, 0, 0.5);
}
#players-load-more span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(90deg, #5c3fb5 0%, #01dee1 100%);
  color: #fff;
  flex-shrink: 0;
}


/* ---------- overview ---------- */
.overview-section { background: #5a3fc4; }
.overview-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 48px;
  align-items: start;
}
.overview-intro { position: sticky; top: 120px; }
.overview-intro .section-title { color: #fff; }
.overview-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.overview-card {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  padding: 48px;
}
.overview-list { max-width: none; }
.overview-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.overview-row:last-child { border-bottom: none; }
.overview-row dt { font-weight: 600; color: #fff; }
.overview-row dd { margin: 0; color: rgba(255, 255, 255, 0.85); }
.overview-row dd a { color: rgba(255, 255, 255, 0.85); }
.overview-cta { display: flex; text-align: center; gap: 24px; }
@media (max-width: 640px) {
	.overview-cta { width: 100%; display: block; }
}
.overview-cta .cta-pill { max-width: 100%; margin: 0 auto; }
.overview-cta .cta-pill-primary { transition: background 0.2s ease, transform 0.2s ease; }
.overview-cta .cta-pill-primary:hover { background: #0a0a2e; color: #fff; }
.overview-cta .cta-pill-primary:hover .cta-pill-icon {
  background: #fff;
  color: #0a0a2e;
  transform: rotate(-45deg);
}
.overview-cta .cta-pill-icon { transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease; }
.overview-map { display: flex; flex-direction: column; gap: 12px; }
.overview-map-frame {
  border-radius: 16px;
  margin-top: 60px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.overview-map-frame iframe { display: block; width: 100%; }
.overview-map-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-end;
  color: #fff;
  font-weight: 500;
  font-size: 0.8rem;
  text-decoration: underline;
}
.overview-map-link:hover { opacity: 0.85; }

/* ---------- organizer ---------- */
.organizer-section {
  /*background: linear-gradient(120deg, #2b3fd0 0%, #6a3fc9 35%, #b23fc0 70%, #e0609a 100%);*/
  color: #fff;
}
.organizer-heading { color: #fff; margin-bottom: 28px; }
.organizer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 24px;
}
.organizer-card {
  background: rgba(255, 255, 255, 0.65);
  border-radius: 24px;
  padding: 40px;
}
.organizer-logo-box { 
  width: 300px;
  margin: 0 auto 24px;
}
@media (max-width: 768px) {
	.organizer-logo-box { width: 100%; }
}
.organizer-logo-img {
  width: 100%;	
  height: auto;
  border-radius: 6px;
}
.organizer-name { font-weight: 600; color: #737373ff; text-align: center; margin-bottom: 16px; }
.organizer-card p { color: #737373ff; font-size: 0.92rem; margin-bottom: 0; }

/* ---------- ticket form ---------- */
.ticket-form { max-width: 560px; margin-top: 24px; }
.form-row { margin-bottom: 22px; display: flex; flex-direction: column; gap: 8px; }
.form-row label { font-weight: 700; font-size: 0.9rem; color: var(--color-navy); }
.required { color: var(--color-orange); }
.form-row input,
.form-row select {
  padding: 12px 14px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
}
.form-row input:focus,
.form-row select:focus { outline: 2px solid var(--color-teal); }

/* ---------- footer ---------- */
.site-footer { background: #1b1a43ff; color: #cdd6e3; padding: 65px 0; }
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.footer-inner .brand { width: 280px; }
.footer-inner .brand strong {}
.footer-inner .brand img { width: 100%; height: auto; }
.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 30px;
}
.footer-inner nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  font-size: 0.88rem;
  font-weight: 500;
}
.footer-inner nav a:hover { color: var(--color-bg); }
.copyright { font-size: 0.78rem; color: #8e9bb3; margin: 0; }

@media screen and (max-width: 1180px) {
	.footer-inner .brand { width: 200px; margin-bottom: 50px; }
	.footer-inner { flex-direction: column; }
	.footer-right { align-items: center; }	
}
@media screen and (max-width: 768px) {

}


/* ---------- modal ---------- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal[hidden] { display: none; }
.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}
.modal-content {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 32px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border-radius: 16px;
  padding: 40px;
  max-width: 800px;
  width: 100%;
  text-align: left;
  box-shadow: var(--shadow-md);
}
.modal-photo {
  width: 180px;
  height: 180px;
  flex-shrink: 0;
  border-radius: 12px;
  overflow: hidden;
}
.modal-photo img { width: 100%; height: 100%; object-fit: cover; }
.modal-info { text-align: left; }
.modal-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 8px;
  background: linear-gradient(100deg, #ff5d8f, #ff8c3d, #ffc93c);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.modal-name { font-size: 1.2rem; font-weight: 600; color: #fff; margin-bottom: 4px; }
.modal-title { color: rgba(255, 255, 255, 0.85); font-size: 0.9rem; margin-bottom: 0; }
.modal-department { color: rgba(255, 255, 255, 0.7); font-size: 0.8rem; margin-top: 4px; margin-bottom: 0; }
.modal-profile {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}
.modal-profile-text {
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  white-space: pre-line;
}
.modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: transparent;
  border: none;
  font-size: 1.8rem;
  line-height: 1;
  color: #fff;
}

/* ---------- timetable pages ---------- */
body.tt-page {
  background: linear-gradient(0deg, #4803b0 0%, #0a04f7 100%);
}
.timetable-tabs {
  display: flex;
  gap: 12px;
  margin: 24px 0 40px;
  flex-wrap: wrap;
}
.timetable-tab {
  padding: 12px 24px;
  border-radius: 999px;
  border: none;
  font-weight: 700;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.12);
  transition: background 0.2s ease, color 0.2s ease;
}
.timetable-tab.is-active {
  background: rgba(255, 255, 255, 0.28);
  color: #fff;
}
.timetable-tab:hover:not(.is-active) { background: rgba(255, 255, 255, 0.2); color: #fff; }

body.tt-page .section-eyebrow,
body.tt-page .section-title {
  text-align: center;
}
body.tt-page .section-eyebrow {
  justify-content: center;
}
body.tt-page .timetable-tabs {
  justify-content: center;
}

.tt-section-head {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 48px 0 24px;
}
.tt-section-head h2 {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 600;
  margin: 0;
  white-space: nowrap;
}
.tt-section-line { flex: 1; height: 1px; background: rgba(255, 255, 255, 0.25); }

.session-list { display: flex; flex-direction: column; gap: 24px; margin-top: 8px; }
.tt-row { display: flex; gap: 24px; align-items: flex-start; }
.tt-time {
  width: 96px;
  flex-shrink: 0;
  color: #fff;
  font-size: 0.85rem;
  padding-top: 38px;
}
.tt-card { flex: 1; }
.tt-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}
.tt-card-header .contents-card-title { margin-bottom: 0; font-size: 1.15rem; }
.tt-tag {
  display: inline-block;
  flex-shrink: 0;
  padding: 5px 16px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 400;
  color: #fff;
  white-space: nowrap;
}
.tt-tag-special { background: #2ecc71; }
.tt-tag-triangle { background: rgb(188, 60, 246); }
.tt-tag-government { background: rgb(235, 128, 1); }
.tt-tag-global { background: rgb(38, 138, 255); }
.tt-tag-empowerher { background: rgb(240, 10, 109); }
.tt-tag-ground { background: rgb(0, 194, 255); }
.tt-card-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 10px 0 0;
  padding-left: 1.2em;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.88rem;
}
.tt-card-list li { list-style: circle; }
.tt-card-footer { display: flex; justify-content: flex-end; margin-top: 16px; }
.tt-readmore {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  font-weight: 400;
}
.tt-readmore svg { width: 16px; height: 16px; fill: rgba(255, 255, 255, 0.6); }

.tt-card[data-modal-target] { cursor: pointer; transition: transform 0.2s ease; }
.tt-card[data-modal-target]:hover { opacity: 0.7; }

/* ---------- timetable session modal ---------- */
.tt-modal-content {
  flex-direction: column;
  align-items: stretch;
  max-width: 920px;
  gap: 0;
  text-align: left;
  max-height: 85vh;
  overflow-y: auto;
  background: #fff;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.tt-modal-top {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}
.tt-modal-meta {
  width: 180px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  /*gap: 14px;*/
}
.tt-modal-time { color: #737373; font-size: 1.1rem; font-weight: 500; margin: 0 0 10px 0; }
.tt-modal-place {
  display: inline-block;
  padding: 5px 16px;
  border-radius: 999px;
  border: 1px solid rgba(11, 31, 58, 0.3);
  color: #737373;
  font-weight: 500;
  font-size: 0.75rem;
  margin-bottom: 6px;
}
.tt-modal-divider { width: 1px; align-self: stretch; background: rgba(11, 31, 58, 0.15); flex-shrink: 0; }
.tt-modal-body { flex: 1; min-width: 0; }
.tt-modal-title { color: var(--color-navy); font-size: 1.4rem; font-weight: 600; margin-bottom: 16px; }
.tt-modal-desc { color: #3a4a5e; font-size: 0.8rem; line-height: 1.5; margin-bottom: 0; }
.tt-modal-list {
  display: flex;
  flex-direction: column;
  margin: 14px 0 0;
  padding-left: 1.2em;
  color: var(--color-navy);
  font-size: 0.82rem;
}
.tt-modal-list li { list-style: circle; }

.tt-modal-speakers { margin-top: 40px; }
.tt-modal-speakers .tt-section-head { margin: 0 0 24px; }
.tt-modal-speakers .tt-section-head h4 { color: #737373; font-size: 1rem; font-weight: 600; margin: 0; white-space: nowrap; }
.tt-modal-speakers .tt-section-line { background: rgba(11, 31, 58, 0.15); }
.tt-speaker-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px 24px;
}
.tt-speaker-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 2rem;
  color: #fff;
  background: linear-gradient(135deg, var(--color-navy), var(--color-teal-dark));
}
.tt-speaker-photo img { width: 100%; height: 100%; object-fit: cover; }
.tt-speaker-name { color: var(--color-navy); font-weight: 600; font-size: 0.85rem; margin-bottom: 2px; }
.tt-speaker-title { color: #5a6b7d; font-size: 0.7rem; margin: 0; line-height: 1.5; }
.tt-speaker-mod {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
  color: #5c3fb5ff;
  font-size: 0.78rem;
  font-weight: 600;
}
.tt-modal-content .modal-close { color: var(--color-navy); }

@media (max-width: 640px) {
  .tt-modal-top { flex-direction: column; gap: 20px; }
  .tt-modal-meta { width: 100%; flex-direction: row; flex-wrap: wrap; align-items: center; gap: 8px; }
  .tt-modal-time { width: 100%; margin: 0; text-align: left; }
  .tt-modal-place { margin-bottom: 0; }
  .tt-modal-divider { display: none; }
  .tt-speaker-grid { grid-template-columns: repeat(2, 1fr); }
}

.coming-soon {
  text-align: center;
  padding: 100px 24px;
  color: rgba(255, 255, 255, 0.75);
}
.coming-soon h3 { color: #fff; font-size: 1.6rem; margin-bottom: 12px; }

@media (max-width: 640px) {
  .tt-row { flex-direction: column; gap: 8px; }
  .tt-time { padding-top: 0; }
  .tt-card-header { display: block; }
  .tt-card-header .contents-card-title { margin-bottom: 15px; }
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1100px) {
  .main-nav ul { gap: 10px; }
  .main-nav a { font-size: 0.75rem; }
}
@media (max-width: 1024px) {
  .hero { padding: 10px 48px 20px 48px; }
  .speakers-grid { grid-template-columns: repeat(3, 1fr); }
  .players-grid { grid-template-columns: repeat(4, 1fr); }
  .contents-layout { grid-template-columns: 1fr; }
  .contents-intro { position: static; margin-bottom: 8px; }
  .contents-cta { grid-column: 1; }
  .overview-layout { grid-template-columns: 1fr; }
  .overview-intro { position: static; margin-bottom: 8px; }
}

@media (max-width: 886px) {
  .header-inner { justify-content: flex-end; }
  .main-nav {
    position: fixed;
    top: 76px;
    left: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: none;
    border-radius: 10px;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .main-nav.is-open { max-height: 95vh; overflow-y: auto; }
  .main-nav ul { flex-direction: column; padding: 36px 24px 36px; gap: 4px; }
  .main-nav a { display: flex; padding: 18px 12px 18px 34px; color: var(--color-bg); font-size: 1.1rem; }
  .main-nav-cta { display: block; padding: 0 24px 66px; }
  .main-nav-cta .cta-pill { width: 100%; justify-content: space-between; }
  .nav-toggle { display: flex; }
  .header-actions .btn-small { display: none; }
  .organizer-grid { grid-template-columns: 1fr; }
  .hero { padding: 0px 32px 20px 32px; }
  .contents-cta { width: 100%; }
  .footer-inner { flex-direction: column; align-items: flex-start; text-align: left; }
  .footer-right { align-items: flex-start; }
  .footer-inner nav ul { flex-direction: column; font-size: 1.1rem; }
  .copyright { text-align: left; }
}

@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .hero { min-height: 70vh; padding: 0px 24px 20px 24px; }
  .hero-inner { width: 100%; padding: 0px; }
  .hero-venue { font-size: 1.4rem; margin-bottom: 80px; }
  .hero-venue-logo { height: 48px; }
  .contents-card { width: 100%; padding: 28px 24px; }
  .contents-card-row { grid-template-columns: 1fr; }
  .cta-pill { font-size: 1.15rem; padding: 18px 12px 18px 34px; }
  .cta-pill-icon { width: 44px; height: 44px; font-size: 1.2rem; }
  .speakers-grid { grid-template-columns: repeat(2, 1fr); gap: 24px 16px; }
  .players-grid { grid-template-columns: repeat(3, 1fr); }
  .about-photos { grid-template-columns: 1fr; }
  .overview-row { grid-template-columns: 1fr; gap: 6px; }
  .overview-card { padding: 28px 24px; }
  .overview-map-frame iframe { height: 260px; }
  .gallery-item { width: 260px; }
  .gallery-header { flex-wrap: wrap; gap: 12px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-right { align-items: flex-start; }
  .footer-inner nav ul { justify-content: flex-start; }
  .modal-content { flex-direction: column; align-items: center; text-align: center; }
  .modal-photo { width: 140px; height: 140px; }
  .modal-info { text-align: center; }
  .modal-info h3,
  .modal-info p { text-align: left; }
  .tt-modal-title,
  .tt-modal-desc { text-align: left; }
}

@media (max-width: 420px) {
  .hero { padding: 56px 16px 20px 16px; }
  .speakers-grid { grid-template-columns: repeat(2, 1fr); }
  .players-grid { grid-template-columns: repeat(2, 1fr); }
}
