/* EQST landing — plain CSS recreation of the design PDF */

:root {
  --cyan: #2ee6ff;
  --cyan-soft: #22d3ee;
  --navy: #0b1624;
  --panel: rgba(10, 24, 42, 0.52);
  --ink: #e8eef5;
  --white: #ffffff;
  --font: "Manrope", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: auto;
  min-height: 100%;
  margin: 0;
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

body {
  font-family: var(--font);
  color: var(--ink);
  background: #0a121c;
  -webkit-font-smoothing: antialiased;
}

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

img {
  display: block;
  max-width: 100%;
}

/* Page shell */
.page {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
  overflow: visible;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.page::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

.page-noscroll {
  overflow: visible;
}

.page-noscroll .main {
  padding-top: 1.1rem;
  padding-bottom: 0.4rem;
}

.page-about .main,
.page-speakers .main,
.page-themes .main {
  padding-top: 1.75rem;
}

.page-eqst .main {
  padding-top: 2.5rem;
}

.page-submit .main {
  padding-top: 2.5rem;
}

.page-contact .main {
  padding-top: 0.7rem;
  padding-bottom: 0.25rem;
  align-items: flex-start;
}

.page-organisers .main {
  padding-top: 0.7rem;
  padding-bottom: 0.25rem;
}

.page-reg .main {
  padding-top: 0.45rem;
  padding-bottom: 0.2rem;
  align-items: flex-start;
}

/* Background */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 32%;
  transform: scale(1.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(0, 0, 0, 0.67), rgba(0, 0, 0, 0.53), rgba(0, 0, 0, 0.43)),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.53), rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.63));
}

/* Header */
.header {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  grid-template-areas:
    "marks nav cqst"
    "text text text";
  align-items: center;
  column-gap: 0.65rem;
  row-gap: 0.3rem;
  padding: 0.75rem 1.25rem 0;
}

.logo {
  display: contents;
}

.logo-marks {
  grid-area: marks;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.logo-img {
  display: block;
  border-radius: 0.35rem;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.logo-img-csir,
.logo-img-cgcri {
  width: auto;
  object-fit: contain;
}

.logo-img-csir {
  height: min(72px, 14vw);
  background: #fff;
  padding: 0.12rem;
}

.logo-img-cgcri {
  height: min(50.4px, 9.8vw);
}

.header-cqst {
  grid-area: cqst;
  justify-self: end;
  align-self: center;
  display: block;
  line-height: 0;
}

.logo-img-cqst {
  height: min(30px, 7vw);
  width: auto;
  max-width: min(7.75rem, 26vw);
  object-fit: contain;
  background: #fff;
  padding: 0.12rem 0.22rem;
  border-radius: 0.25rem;
}

.logo-text {
  grid-area: text;
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo-title {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
}

.logo-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin: 0 0.35rem;
  background: var(--white);
  vertical-align: middle;
  transform: translateY(-1px);
}

.logo-subtitle {
  margin-top: 0.15rem;
  max-width: 22rem;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

.nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 0.55rem 0.7rem;
}

.nav a {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.2s ease;
  white-space: nowrap;
}

.nav a:hover {
  color: var(--cyan);
}

.mobile-menu {
  display: none;
  position: relative;
  grid-area: nav;
  justify-self: end;
}

.mobile-menu summary {
  list-style: none;
  cursor: pointer;
  border: 1px solid rgba(46, 230, 255, 0.7);
  border-radius: 0.375rem;
  padding: 0.4rem 0.75rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu ul {
  position: absolute;
  right: 0;
  z-index: 10;
  margin-top: 0.5rem;
  min-width: 12rem;
  padding: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 0.75rem;
  background: rgba(11, 22, 36, 0.95);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(12px);
}

.mobile-menu a {
  display: block;
  padding: 0.5rem 0.75rem;
  border-radius: 0.375rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
}

.mobile-menu a:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--cyan);
}

/* Main */
.main {
  position: relative;
  z-index: 1;
  display: flex;
  flex: 1;
  align-items: center;
  padding: 0.75rem 1.25rem 0.5rem;
}

.hero-grid {
  display: grid;
  width: 100%;
  align-items: start;
  gap: 1.25rem;
}

.hero-copy {
  max-width: 44rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hero-copy h1,
.hero-title {
  margin: 0;
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--white);
}

.hero-title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
  max-width: 22em;
}

.hero-title-kicker {
  display: block;
  font-size: 0.48em;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: none;
  color: rgba(255, 255, 255, 0.9);
}

.hero-title-main,
.hero-title-sub {
  display: block;
}

@media (min-width: 640px) {
  .hero-title-main,
  .hero-title-sub {
    white-space: nowrap;
  }
}

.hero-title-sub {
  color: rgba(255, 255, 255, 0.92);
}

.hero-date {
  margin: 0.4rem 0 0;
  font-size: clamp(0.92rem, 1.35vw, 1.05rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cyan);
}

.tagline {
  margin: 0.65rem 0 0;
  max-width: 42rem;
  font-size: clamp(0.98rem, 1.45vw, 1.1rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.95);
}

.tagline strong {
  font-weight: 800;
  font-style: italic;
  color: var(--cyan);
}

.lede {
  margin: 1.15rem 0 0;
  max-width: 40rem;
  font-size: clamp(0.82rem, 1.05vw, 0.9rem);
  line-height: 1.45;
  text-align: justify;
  color: rgba(255, 255, 255, 0.8);
}

.lede + .lede {
  margin-top: 0.45rem;
}

.hero-side {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  max-width: 26rem;
  margin-top: 1.5rem;
}

.hero-side .glass-panel {
  max-width: none;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.875rem;
  margin-top: 0.85rem;
}

.hero-side .actions {
  flex-wrap: nowrap;
  gap: 0.65rem;
  align-items: stretch;
}

.hero-side .actions .btn {
  align-self: stretch;
  min-height: 3.1rem;
}

.hero-side .actions .btn-primary {
  flex: 0 0 auto;
  min-width: 5.25rem;
  padding-inline: 1rem;
}

.hero-side .actions .btn-outline {
  flex: 1 1 auto;
  min-width: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.25rem;
  border-radius: 0.375rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: normal;
  text-align: center;
  max-width: 100%;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.btn-primary {
  background: var(--cyan);
  color: var(--navy);
  box-shadow: 0 8px 28px rgba(46, 230, 255, 0.35);
}

.btn-primary:hover {
  background: var(--cyan-soft);
}

.btn-outline {
  border: 1.5px solid var(--cyan);
  background: transparent;
  color: var(--white);
}

.btn-outline:hover {
  background: rgba(46, 230, 255, 0.1);
}

/* Glass panel */
.glass-panel {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 100%;
  max-width: 26rem;
  min-height: 0;
  padding: 1.25rem 1.35rem 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 1.35rem;
  background: var(--panel);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(22px) saturate(1.5);
  -webkit-backdrop-filter: blur(22px) saturate(1.5);
}

.glass-panel h2 {
  margin: 0;
  font-size: clamp(1.4rem, 2.15vw, 1.8rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
}

.panel-rule {
  width: 100%;
  height: 1px;
  margin-top: 0.7rem;
  background: linear-gradient(to right, var(--cyan), rgba(46, 230, 255, 0.8), transparent);
}

.glass-panel p {
  margin: 1.15rem 0 0;
  max-width: 24rem;
  font-size: 0.9rem;
  line-height: 1.5;
  text-align: justify;
  text-justify: inter-word;
  color: rgba(255, 255, 255, 0.8);
}

.panel-list {
  margin-top: 0.9rem;
}

.panel-list li {
  margin-top: 0.4rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--white);
}

.panel-list li:first-child {
  margin-top: 0;
}

/* Footer */
.footer {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  padding: 0.35rem 1.25rem 0.65rem;
}

.footer p {
  margin: 0;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

/* Subtle entrance animations (CSS only) */
.logo,
.nav,
.header-cqst,
.hero-copy,
.glass-panel,
.footer {
  animation: fade-up 0.65s ease both;
}

.nav {
  grid-area: nav;
  justify-self: stretch;
  align-self: center;
  animation-delay: 0.08s;
  width: 100%;
  margin-top: 0;
}

.hero-copy {
  animation-delay: 0.15s;
}

.glass-panel {
  animation-delay: 0.25s;
}

.footer {
  animation-delay: 0.4s;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (min-width: 640px) {
  .header,
  .main,
  .footer {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .glass-panel {
    min-height: 0;
    padding: 1.35rem 1.5rem 1.2rem;
  }
}

@media (min-width: 1024px) {
  .header {
    padding-top: 0.85rem;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .main {
    padding: 0.6rem 2.5rem 0.5rem;
  }

  .footer {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .nav {
    display: block;
  }

  .mobile-menu {
    display: none;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.35fr) minmax(17rem, 23rem);
    gap: 1.5rem;
    align-items: start;
  }

  .hero-side {
    margin-left: auto;
    margin-top: 1.75rem;
  }

  .glass-panel {
    min-height: 0;
  }

  .nav ul {
    gap: 0.65rem 0.85rem;
  }
}

@media (min-width: 1280px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.4fr) minmax(19rem, 24rem);
    gap: 2rem;
  }

  .hero-copy {
    max-width: 48rem;
  }
}

@media (max-width: 1023px) {
  .nav {
    display: none;
  }

  .mobile-menu {
    display: block;
  }
}

@media (prefers-reduced-motion: reduce) {
  .logo,
  .nav,
  .header-cqst,
  .hero-copy,
  .glass-panel,
  .footer,
  .content-block,
  .side-block {
    animation: none;
  }
}

/* Active nav link */
.nav a.is-active,
.mobile-menu a.is-active {
  color: var(--cyan);
}

/* Inner pages */
.page-inner .main {
  align-items: stretch;
}

.content-block {
  max-width: 40rem;
  animation: fade-up 0.65s ease both;
  animation-delay: 0.12s;
}

.page-title {
  margin: 0;
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
}

.page-title-sentence {
  text-transform: none;
  letter-spacing: -0.01em;
}

.page-lead {
  margin: 0.7rem 0 0;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  font-weight: 600;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.95);
}

.page-body {
  margin: 0.85rem 0 0;
  font-size: 0.92rem;
  line-height: 1.5;
  text-align: justify;
  text-justify: inter-word;
  color: rgba(255, 255, 255, 0.78);
}

.page-body + .page-body {
  margin-top: 1.15rem;
}

.side-block {
  animation: fade-up 0.65s ease both;
  animation-delay: 0.22s;
}

/* About page */
.page-about .page-title,
.page-speakers .page-title {
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1.2;
}

.about-layout {
  width: 100%;
  max-width: 64rem;
}

.page-speakers .about-layout {
  max-width: 76rem;
}

.about-layout p.about-intro {
  margin: 0.65rem 0 0;
  width: 100%;
  max-width: 100%;
  font-size: clamp(0.88rem, 1.3vw, 1rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.45;
  text-align: justify;
  text-justify: inter-word;
  color: rgba(255, 255, 255, 0.88);
}

.pillar-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
  margin-top: 0.9rem;
}

.pillar-chip {
  min-width: 8.5rem;
  padding: 0.5rem 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0.75rem;
  background: rgba(10, 24, 42, 0.55);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  text-align: center;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
}

.pillar-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 8.5rem;
  padding: 0.5rem 1.1rem;
  border: 1.5px solid rgba(46, 230, 255, 0.55);
  border-radius: 0.75rem;
  background: transparent;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  text-align: center;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.pillar-chip + .pillar-btn {
  margin-left: auto;
}

.pillar-btn:hover {
  background: rgba(46, 230, 255, 0.12);
  border-color: var(--cyan);
  color: var(--cyan);
}

.pillar-btn-accent {
  background: var(--cyan);
  border-color: var(--cyan);
  color: var(--navy);
  box-shadow: 0 8px 28px rgba(46, 230, 255, 0.3);
}

.pillar-btn-accent:hover {
  background: var(--cyan-soft);
  border-color: var(--cyan-soft);
  color: var(--navy);
}

.speakers-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem 1rem;
}

.speakers-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.speakers-section {
  margin-top: 0.85rem;
}

.speakers-section h2 {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--cyan);
}

.speaker-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 0.7rem;
}

.speaker-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.35rem;
  min-width: 0;
}

.speaker-photo {
  width: 5.5rem;
  height: 5.5rem;
  object-fit: cover;
  object-position: center 18%;
  border-radius: 50%;
  border: 2px solid rgba(46, 230, 255, 0.55);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
  background: rgba(10, 24, 42, 0.55);
}

.speaker-photo-full {
  object-position: center 12%;
}

.speaker-photo-out {
  object-fit: contain;
  object-position: center;
  padding: 0.55rem;
  background: #efe8d8;
}

.speaker-photo-achanta {
  object-fit: cover;
  object-position: center 28%;
}

.speaker-photo-placeholder {
  border-style: dashed;
  background:
    radial-gradient(circle at 50% 38%, rgba(255, 255, 255, 0.18) 0 0.7rem, transparent 0.72rem),
    linear-gradient(rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.12)) center 68% / 1.7rem 0.95rem no-repeat,
    rgba(10, 24, 42, 0.55);
}

.speaker-card h3 {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.28;
  color: var(--white);
}

.speaker-card p {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.78);
}

@media (min-width: 700px) {
  .speaker-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .speaker-photo {
    width: 6rem;
    height: 6rem;
  }
}

@media (min-width: 1100px) {
  .speaker-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 1.05rem 0.65rem;
  }
}

/* EQST directions panel */
.directions-panel {
  width: 100%;
  max-width: 26rem;
  margin-left: auto;
  padding: 1.25rem 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 1.5rem;
  background: rgba(10, 24, 42, 0.5);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(20px) saturate(1.45);
  -webkit-backdrop-filter: blur(20px) saturate(1.45);
}

.directions-panel h2 {
  margin: 0 0 0.75rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
}

.directions-panel li {
  position: relative;
  padding: 0.45rem 0 0.45rem 1.1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--white);
}

.directions-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.15rem;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--cyan);
}

.directions-panel li:first-child {
  border-top: 0;
}

.submit-page {
  width: 100%;
  max-width: 52rem;
}

.submit-page .page-title {
  text-transform: none;
  letter-spacing: -0.01em;
}

.submit-layout {
  display: grid;
  gap: 1.25rem;
  width: 100%;
  align-items: start;
}

.submit-side {
  width: 100%;
  max-width: 22rem;
}

.submit-tabs {
  margin-top: 1.25rem;
  max-width: none;
}

.reg-section {
  margin-top: 1.5rem;
}

.reg-layout {
  display: block;
  width: 100%;
}

.reg-main {
  width: 100%;
  min-width: 0;
}

.reg-main .page-title,
.reg-page .page-title {
  text-transform: none;
  letter-spacing: -0.01em;
  margin: 0;
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  line-height: 1.15;
}

.reg-page {
  width: 100%;
  max-width: 72rem;
}

.reg-top {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.4rem 1rem;
  margin-bottom: 0.55rem;
}

.reg-tariffs {
  display: grid;
  gap: 0.55rem;
  align-items: start;
}

@media (min-width: 900px) {
  .reg-tariffs {
    grid-template-columns: 1fr 1fr 1.45fr;
    grid-template-rows: auto 1fr;
    grid-template-areas:
      "fee ad sponsor"
      "acc acc sponsor";
    align-items: stretch;
  }

  .reg-card-fee {
    grid-area: fee;
  }

  .reg-card-ad {
    grid-area: ad;
  }

  .reg-card-sponsor {
    grid-area: sponsor;
  }

  .reg-tariffs .reg-accommodation {
    grid-area: acc;
    margin: 0;
    align-self: stretch;
    display: flex;
    align-items: center;
  }
}

.reg-split {
  display: grid;
  gap: 0.5rem;
  align-items: stretch;
  margin-top: 0.5rem;
}

.reg-left,
.reg-right {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 0;
}

.reg-fee-row {
  display: grid;
  gap: 0.9rem;
}

@media (min-width: 720px) {
  .reg-fee-row {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.reg-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
}

.reg-card {
  padding: 0.65rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0.75rem;
  background: rgba(10, 24, 42, 0.48);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.reg-card-wide {
  grid-column: 1 / -1;
}

.reg-card .reg-heading {
  margin: 0 0 0.4rem;
  font-size: 0.78rem;
}

.reg-heading-note {
  display: inline-block;
  margin-left: 0.4rem;
  font-size: 0.8em;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: none;
  color: rgba(255, 255, 255, 0.78);
  vertical-align: baseline;
}

.reg-card .reg-table-wrap,
.reg-card .reg-table {
  border: 0;
  background: transparent;
  border-radius: 0;
  min-width: 0;
}

.reg-card .reg-table th,
.reg-card .reg-table td {
  padding: 0.32rem 0.45rem;
  font-size: 0.76rem;
}

.reg-card .reg-table th {
  background: rgba(46, 230, 255, 0.1);
}

.reg-note.compact {
  margin: 0 0 0.45rem;
  font-size: 0.82rem;
}

.reg-list.compact {
  margin: 0;
  padding-left: 1rem;
}

.reg-list.compact li {
  margin-top: 0.18rem;
  font-size: 0.78rem;
  line-height: 1.35;
}

.payment-gallery.compact {
  grid-template-columns: 1fr;
  gap: 0.65rem;
  margin-top: 0;
}

.payment-stack {
  display: grid;
  grid-template-columns: 1.45fr 0.85fr;
  gap: 0.5rem;
  align-items: stretch;
}

@media (max-width: 640px) {
  .payment-stack {
    grid-template-columns: 1fr;
  }
}

.payment-bank-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0.5rem;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.2);
}

.payment-bank-table thead th {
  width: auto;
  text-align: left;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--white);
  background: rgba(46, 230, 255, 0.12);
}

.payment-bank-table thead th:first-child,
.payment-bank-table tbody th {
  width: 2.1rem;
  text-align: center;
}

.payment-bank-table tbody th {
  background: rgba(46, 230, 255, 0.08);
  vertical-align: top;
  color: rgba(255, 255, 255, 0.9);
}

.payment-bank-table tbody td:first-of-type {
  white-space: nowrap;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
}

.payment-bank-table td,
.payment-bank-table th {
  padding: 0.22rem 0.4rem;
  font-size: 0.68rem;
  line-height: 1.25;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.payment-bank-table tr:last-child td,
.payment-bank-table tr:last-child th {
  border-bottom: 0;
}

.payment-qr {
  display: block;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0.65rem;
  background: #fff;
}

.payment-qr img {
  width: 100%;
  height: auto;
  display: block;
}

.payment-qr-code {
  max-width: none;
  margin-inline: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.payment-qr-code img {
  width: 100%;
  height: 100%;
  max-height: 14.5rem;
  object-fit: contain;
}

.reg-gst-note {
  margin: 0.85rem 0 0;
  font-size: 0.9rem;
  line-height: 1.45;
  text-align: right;
  color: var(--white);
}

.reg-gst-note strong {
  font-weight: 800;
}

.reg-page .reg-accommodation,
.reg-main .reg-accommodation {
  margin-top: 0;
  margin-bottom: 0;
  padding: 0.45rem 0.85rem;
  font-size: 1rem;
}

.reg-cta {
  display: flex;
  justify-content: center;
  margin-top: 0.65rem;
}

.reg-cta-left {
  justify-content: center;
  margin-top: 0.45rem;
  width: 100%;
}

.reg-left .reg-accommodation {
  margin-top: 0.35rem;
  margin-bottom: 0;
}

.reg-cta .theme-tab {
  min-width: 12rem;
  padding: 0.55rem 1.1rem;
}

@media (min-width: 720px) {
  .reg-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 960px) {
  .reg-split {
    grid-template-columns: minmax(0, 1.35fr) minmax(16rem, 22rem);
    gap: 0.55rem;
  }
}

.abstract-info {
  margin-top: 0.85rem;
}

.abstract-info > p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  text-align: justify;
  color: rgba(255, 255, 255, 0.88);
}

.abstract-info > p + p {
  margin-top: 0.75rem;
}

.abstract-info a {
  color: var(--cyan);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.fee-after-acceptance {
  color: #ffb020;
  font-weight: 700;
}

.abstract-deadline {
  display: inline-block;
  margin: 0.65rem 0 0;
  padding: 0.7rem 1rem;
  border: 1px solid rgba(46, 230, 255, 0.4);
  border-radius: 0.65rem;
  background: rgba(46, 230, 255, 0.1);
  font-size: 0.95rem;
  line-height: 1.4;
  color: var(--white);
}

.abstract-deadline strong {
  color: var(--cyan);
}

.reg-link-line {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
}

.reg-link-line a {
  color: var(--cyan);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.reg-note {
  margin: 1.15rem 0 0;
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}

.reg-list {
  margin: 0.85rem 0 0;
  padding-left: 1.2rem;
}

.reg-list li {
  margin-top: 0.45rem;
  list-style: disc;
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
}

.reg-heading {
  margin: 1.75rem 0 0.75rem;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cyan);
}

.reg-table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0.85rem;
  background: rgba(10, 24, 42, 0.45);
}

.reg-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 280px;
}

.reg-table th,
.reg-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  text-align: left;
  font-size: 0.88rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.88);
  vertical-align: top;
}

.reg-table th {
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--white);
  background: rgba(46, 230, 255, 0.08);
}

.reg-table tr:last-child td {
  border-bottom: 0;
}

.payment-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  margin-top: 0.5rem;
}

.payment-gallery a {
  display: block;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0.75rem;
  background: #fff;
}

.payment-gallery img {
  width: 100%;
  height: auto;
  display: block;
}

.reg-accommodation {
  margin: 0.5rem 0 0;
  padding: 0.45rem 0.75rem;
  border: 1px solid rgba(46, 230, 255, 0.35);
  border-radius: 0.65rem;
  background: rgba(46, 230, 255, 0.08);
  font-size: 1rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.9);
}

@media (min-width: 960px) {
  .submit-layout {
    grid-template-columns: minmax(0, 1.25fr) minmax(16rem, 22rem);
    gap: 2.5rem;
  }

  .submit-side {
    position: sticky;
    top: 1.25rem;
    margin-left: auto;
  }
}

@media (max-width: 959px) {
  .submit-side {
    max-width: none;
    order: -1;
  }

  .submit-tabs {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .submit-tabs .theme-tab {
    flex: 1 1 12rem;
  }
}

.themes-layout-grid {
  display: grid;
  gap: 1.25rem;
  width: 100%;
  align-items: start;
}

.themes-page {
  width: 100%;
  max-width: 48rem;
}

.themes-page .page-title {
  text-transform: none;
  letter-spacing: -0.01em;
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1.2;
}

.themes-intro-text {
  margin: 0.7rem 0 0;
  max-width: 40rem;
  font-size: clamp(0.9rem, 1.3vw, 1rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.45;
  text-align: justify;
  color: rgba(255, 255, 255, 0.88);
}

.theme-checklist {
  margin-top: 1rem;
  max-width: 36rem;
}

.theme-checklist li {
  position: relative;
  margin-top: 0.5rem;
  padding-left: 1.85rem;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--white);
}

.theme-checklist li:first-child {
  margin-top: 0;
}

.theme-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2rem;
  width: 0.95rem;
  height: 0.95rem;
  border: 1.5px solid var(--cyan);
  border-radius: 0.15rem;
  background: rgba(46, 230, 255, 0.08);
}

.themes-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.1rem;
  max-width: 36rem;
}

.themes-actions .theme-tab {
  flex: 1 1 10rem;
  min-width: 10rem;
  padding: 0.85rem 1.1rem;
}

.poster-block {
  margin-top: 0;
  max-width: none;
  padding: 1.15rem 1.25rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 1.35rem;
  background: rgba(10, 24, 42, 0.48);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  text-align: center;
}

.poster-side {
  width: 100%;
  max-width: 24rem;
}

@media (min-width: 960px) {
  .poster-side {
    margin-left: auto;
  }
}

@media (max-width: 959px) {
  .poster-side {
    max-width: none;
  }
}

.poster-ribbon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
  padding: 0.55rem 1.6rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 0.35rem;
  background: linear-gradient(135deg, #7a1f33 0%, #a02d45 55%, #7a1f33 100%);
  box-shadow: 0 8px 24px rgba(122, 31, 51, 0.35);
}

.poster-ribbon h2 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  font-style: italic;
  letter-spacing: 0.02em;
  color: var(--white);
}

.poster-copy {
  margin: 0.45rem auto 0;
  max-width: 34rem;
  font-size: 0.9rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.88);
}

.poster-copy strong {
  color: var(--cyan);
  font-weight: 800;
}

.poster-badge {
  display: inline-block;
  margin: 0.85rem auto 0;
  padding: 0.7rem 1.4rem;
  border: 2px solid #a02d45;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #1a1a1a;
}

.themes-side {
  width: 100%;
  max-width: 22rem;
}

.themes-tabs {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  padding: 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 1.5rem;
  background: rgba(10, 24, 42, 0.52);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
}

.theme-tab {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.15rem;
  border: 1.5px solid rgba(46, 230, 255, 0.45);
  border-radius: 0.85rem;
  background: transparent;
  color: var(--white);
  text-align: center;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.theme-tab:hover {
  background: rgba(46, 230, 255, 0.1);
  border-color: var(--cyan);
  transform: translateY(-1px);
}

.theme-tab-primary {
  background: var(--cyan);
  border-color: var(--cyan);
  color: var(--navy);
  box-shadow: 0 8px 28px rgba(46, 230, 255, 0.28);
}

.theme-tab-primary:hover {
  background: var(--cyan-soft);
  border-color: var(--cyan-soft);
  color: var(--navy);
}

.theme-tab-title {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@media (min-width: 960px) {
  .themes-layout-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(18rem, 24rem);
    gap: 2.5rem;
    align-items: center;
  }

  .themes-side {
    margin-left: auto;
  }
}

@media (max-width: 959px) {
  .themes-side {
    max-width: none;
  }

  .themes-tabs {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .theme-tab {
    flex: 1 1 14rem;
  }
}

/* Legacy theme cards (unused on current themes page) */
.themes-intro {
  margin-bottom: 1.75rem;
}

.themes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
  width: 100%;
  max-width: 52rem;
}

.theme-card {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 1.1rem 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 1rem;
  background: rgba(10, 24, 42, 0.46);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.theme-num {
  flex-shrink: 0;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--cyan);
}

.theme-card h3 {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--white);
}

.theme-card.theme-wide {
  grid-column: 1 / -1;
  max-width: 28rem;
  justify-self: center;
  width: 100%;
}

/* Simple content pages (CFP / Contact) */
.simple-panel {
  width: 100%;
  max-width: 40rem;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 1.5rem;
  background: rgba(10, 24, 42, 0.5);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  animation: fade-up 0.65s ease both;
  animation-delay: 0.15s;
}

.simple-panel p {
  margin: 1rem 0 0;
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.8);
}

.contact-list {
  margin-top: 1.5rem;
}

.contact-list li {
  margin-top: 0.75rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.88);
}

.contact-list strong {
  color: var(--cyan);
  font-weight: 700;
  margin-right: 0.5rem;
}

/* Organizing Committee (Contact page) */
.committee-page {
  width: 100%;
  max-width: 76rem;
  margin-inline: auto;
  text-align: center;
  animation: fade-up 0.65s ease both;
  animation-delay: 0.12s;
}

.committee-page .page-title {
  color: var(--cyan);
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
}

.committee-email {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 0.35rem 0.6rem;
  margin: 0.85rem 0 0;
  font-size: 0.88rem;
  line-height: 1.3;
}

.committee-email span {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
}

.committee-email a {
  color: var(--white);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.committee-email a:hover {
  color: var(--cyan);
}

.committee-patron {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.05rem;
  margin: 0.55rem auto 0;
  max-width: 34rem;
  text-align: left;
}

.committee-patron-photo {
  flex-shrink: 0;
  width: 6.5rem;
  height: 6.5rem;
  object-fit: cover;
  object-position: 28% 12%;
  border-radius: 50%;
  border: 2px solid rgba(46, 230, 255, 0.55);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
  background: #fff;
}

.committee-patron p {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.9);
}

.committee-patron strong {
  display: block;
  font-size: 1.45rem;
  color: var(--white);
  font-weight: 800;
}

.committee-patron-role {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--cyan);
}

.committee-patron-role a {
  color: inherit;
  text-decoration: none;
}

.committee-patron-role a:hover {
  color: var(--cyan-soft);
}

@media (min-width: 700px) {
  .committee-patron-photo {
    width: 7.5rem;
    height: 7.5rem;
  }

  .committee-patron p {
    font-size: 1.28rem;
  }

  .committee-patron strong {
    font-size: 1.65rem;
  }
}

.committee-section {
  margin-top: 0.85rem;
}

.committee-tables {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  margin-top: 0.55rem;
  grid-template-areas:
    "core"
    "tech";
}

.committee-table-card {
  margin-top: 0;
  padding: 0.55rem 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0.8rem;
  background: rgba(10, 24, 42, 0.48);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  text-align: center;
}

.committee-table-card[aria-labelledby="core-committee"] {
  grid-area: core;
  width: max-content;
  max-width: 100%;
  justify-self: start;
  padding: 0.5rem 0.7rem;
}

.committee-table-card[aria-labelledby="core-committee"] .committee-table {
  width: auto;
  margin-inline: 0;
}

.committee-table-card[aria-labelledby="core-committee"] .committee-table td {
  white-space: nowrap;
  padding: 0.22rem 0.15rem;
  font-weight: 800;
  text-align: center;
}

.committee-table-card[aria-labelledby="tech-committee"] {
  grid-area: tech;
}

.committee-section h2 {
  margin: 0 0 0.4rem;
  font-size: clamp(0.92rem, 1.4vw, 1.05rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cyan);
  text-align: center;
}

.committee-roles {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem 0.15rem;
}

.committee-roles li {
  padding: 0;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--white);
}

.committee-roles li:not(:last-child)::after {
  content: ",";
  margin-right: 0.45rem;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
}

.committee-roles span {
  color: var(--cyan);
  font-weight: 700;
}

.committee-table {
  width: 100%;
  margin-inline: auto;
  border-collapse: collapse;
  text-align: center;
}

.committee-table td {
  padding: 0.32rem 0.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: clamp(0.84rem, 1.2vw, 0.92rem);
  line-height: 1.4;
  color: var(--white);
  text-align: center;
}

.committee-table tr:last-child td {
  border-bottom: 0;
}

.committee-table td span {
  color: var(--cyan);
  font-weight: 700;
}

.committee-table-card[aria-labelledby="tech-committee"] .committee-table tbody {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: 0.75rem;
  row-gap: 0.12rem;
  justify-items: stretch;
}

.committee-table-card[aria-labelledby="tech-committee"] .committee-table tr {
  display: block;
  width: 100%;
  text-align: left;
}

.committee-table-card[aria-labelledby="tech-committee"] .committee-table td {
  display: block;
  width: 100%;
  border-bottom: 0;
  text-align: left;
}

.committee-functions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.committee-names {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem 0.15rem;
}

.committee-names li {
  padding: 0;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--white);
}

.committee-names li:not(:last-child)::after {
  content: ",";
  margin-right: 0.4rem;
  color: rgba(255, 255, 255, 0.55);
}

.committee-functions li {
  padding: 0.9rem 1.05rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0.9rem;
  background: rgba(10, 24, 42, 0.48);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.committee-functions h3 {
  margin: 0 0 0.4rem;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: var(--cyan);
}

.committee-functions p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.86);
}

.committee-lead {
  color: var(--white);
  font-weight: 700;
}

.committee-note {
  margin: 1.25rem 0 0;
  font-size: 0.82rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.65);
}

@media (min-width: 900px) {
  .committee-tables {
    grid-template-columns: max-content minmax(0, 1fr);
    grid-template-areas: "core tech";
    gap: 0.5rem;
    align-items: start;
  }

  .committee-table-card[aria-labelledby="core-committee"] {
    justify-self: start;
    width: max-content;
    max-width: none;
  }
}

@media (min-width: 800px) {
  .committee-functions {
    grid-template-columns: 1fr 1fr;
  }
}

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

@media (min-width: 1024px) {
  .inner-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(16rem, 26rem);
    gap: 1.5rem;
    align-items: start;
    width: 100%;
  }

  .inner-grid.themes-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1023px) {
  .directions-panel {
    margin-left: 0;
    margin-top: 0.5rem;
  }
}

.page-coming-soon .main {
  align-items: center;
  justify-content: center;
}

.coming-soon {
  width: 100%;
  max-width: 36rem;
  margin-inline: auto;
  text-align: center;
  padding: 2rem 1.25rem;
  animation: fade-up 0.65s ease both;
  animation-delay: 0.12s;
}

.coming-soon-message {
  margin: 0;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--white);
}

/* Contact / venue page */
.contact-page {
  width: 100%;
  max-width: 72rem;
  margin-inline: auto;
  animation: fade-up 0.65s ease both;
  animation-delay: 0.12s;
}

.contact-page .page-title {
  color: var(--cyan);
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
}

.contact-layout {
  display: grid;
  gap: 0.85rem;
  margin-top: 0.75rem;
  align-items: stretch;
  grid-template-areas:
    "venue"
    "reach";
}

.contact-venue {
  grid-area: venue;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-venue-block {
  display: grid;
  grid-template-columns: 8.5rem minmax(0, 1fr);
  gap: 0.45rem 0.85rem;
  align-items: start;
}

.contact-venue-block h2 {
  margin: 0;
  padding-top: 0.1rem;
}

.contact-venue-block + .contact-venue-block {
  padding-top: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-map {
  grid-area: map;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  min-width: 0;
  min-height: 0;
  height: 100%;
  overflow: visible;
}

.contact-reach {
  grid-area: reach;
}

.contact-reach > h2 {
  text-align: center;
}

.contact-reach-grid {
  display: grid;
  gap: 0.85rem;
}

.contact-reach-grid h3 {
  margin-top: 0;
}

.contact-time-list {
  margin: 0.45rem 0 0.65rem;
  padding-left: 1.1rem;
}

.contact-time-list li {
  margin-top: 0.25rem;
  list-style: disc;
  font-size: 0.88rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.9);
}

.contact-time-list li:first-child {
  margin-top: 0;
}

.contact-location-line {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.5rem;
}

.contact-location-line span {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cyan);
}

.contact-location-line .contact-map-link {
  margin: 0;
}

.contact-note {
  margin: 1rem 0 0;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.82rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.78);
}

.contact-card {
  padding: 0.85rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0.85rem;
  background: rgba(10, 24, 42, 0.48);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.contact-card h2 {
  margin: 0 0 0.55rem;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cyan);
}

.contact-card p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  text-align: justify;
  color: rgba(255, 255, 255, 0.9);
}

.contact-card p + p {
  margin-top: 0.75rem;
}

.contact-card strong {
  color: var(--white);
  font-weight: 800;
}

.contact-card h3 {
  margin: 0.85rem 0 0.35rem;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cyan);
}

.contact-card h3:first-of-type {
  margin-top: 0.15rem;
}

.contact-reach-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-reach-list li {
  position: relative;
  padding: 0.4rem 0 0.4rem 1.05rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.86rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.88);
}

.contact-reach-list li:first-child {
  border-top: 0;
  padding-top: 0;
}

.contact-reach-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: var(--cyan);
}

.contact-reach-list li:first-child::before {
  top: 0.45rem;
}

.contact-email {
  justify-content: flex-start;
  margin: 0;
  gap: 0.35rem 0.55rem;
}

.contact-map-frame {
  position: relative;
  flex: 1 1 auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0.85rem;
  background: rgba(10, 24, 42, 0.45);
  min-height: 14rem;
}

.contact-map-frame iframe {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-map-link {
  display: inline-block;
  flex: 0 0 auto;
  position: relative;
  z-index: 2;
  margin-top: 0;
  padding-top: 0.1rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--cyan);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.contact-map-link:hover {
  color: var(--cyan-soft);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (min-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr;
    grid-template-areas:
      "venue"
      "reach";
    gap: 0.85rem;
  }

  .contact-reach-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
  }
}

@media (max-width: 640px) {
  .contact-venue-block {
    grid-template-columns: 1fr;
  }
}
