/*
 * Stabilny, lokalny reset stylów. Zastępuje sam reset Tailwinda, ale nie
 * wymaga Tailwinda ani PostCSS podczas wdrożenia na Hostingerze.
 */
*,
::before,
::after,
::backdrop,
::file-selector-button {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0 solid;
}

html {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  tab-size: 4;
  -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

ol,
ul,
menu {
  list-style: none;
}

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block;
  vertical-align: middle;
}

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

button,
input,
select,
optgroup,
textarea,
::file-selector-button {
  font: inherit;
  font-feature-settings: inherit;
  font-variation-settings: inherit;
  letter-spacing: inherit;
  color: inherit;
  border-radius: 0;
  background-color: transparent;
  opacity: 1;
}

button,
input:where([type="button"], [type="reset"], [type="submit"]),
::file-selector-button {
  appearance: button;
}

textarea {
  resize: vertical;
}

[hidden]:where(:not([hidden="until-found"])) {
  display: none !important;
}

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/fonts/montserrat-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7,
    U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F,
    U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F,
    U+A720-A7FF;
}

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/fonts/montserrat-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
    U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
    U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --font-montserrat: "Montserrat";
  --navy: #07535b;
  --blue: #6d8792;
  --green: #d47a2c;
  --lime: #7fa58b;
  --ink: #233238;
  --muted: #61747b;
  --line: #e5ddd0;
  --paper: #f5f1e8;
  --soft: #efe9de;
  --shadow: 0 20px 60px rgba(7, 83, 91, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-montserrat), Montserrat, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

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

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

.shell {
  width: min(100% - 40px, 1450px);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(7, 83, 91, 0.08);
  background: rgb(245, 241, 238);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  display: grid;
  grid-template-columns: 365px 1fr auto;
  align-items: center;
  min-height: 92px;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 340px;
  height: auto;
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
}

.desktop-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: clamp(18px, 2.1vw, 34px);
}

.desktop-nav a {
  position: relative;
  padding-block: 34px 31px;
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
}

.desktop-nav a::after {
  position: absolute;
  right: 50%;
  bottom: 23px;
  left: 50%;
  height: 2px;
  background: var(--green);
  content: "";
  transition: right 180ms ease, left 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  right: 0;
  left: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  gap: 10px;
  border: 1px solid var(--green);
  border-radius: 10px;
  background: linear-gradient(135deg, #d47a2c, #b9651f);
  box-shadow: 0 10px 24px rgba(212, 122, 44, 0.2);
  color: white;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 0 24px;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(212, 122, 44, 0.28);
}

.button-small {
  min-height: 46px;
  padding-inline: 22px;
  text-transform: uppercase;
}

.button-outline {
  border-color: var(--navy);
  background: var(--paper);
  box-shadow: none;
  color: var(--navy);
}

.button-outline:hover,
.button-outline:focus-visible {
  background: #eee8df;
  box-shadow: 0 12px 24px rgba(7, 83, 91, 0.12);
}

.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 28% 20%, rgba(127, 165, 139, 0.08), transparent 27%),
    linear-gradient(90deg, var(--paper) 0 44%, #ece7de 44% 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(520px, 0.92fr) minmax(600px, 1.08fr);
  align-items: stretch;
  min-height: 560px;
}

.hero-copy {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 62px 52px 84px 22px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(3.15rem, 4.6vw, 5.3rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.98;
  text-transform: uppercase;
}

.hero-subtitle {
  margin: 18px 0 30px;
  color: var(--green);
  font-size: clamp(1.25rem, 1.7vw, 1.8rem);
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.event-facts {
  display: grid;
  grid-template-columns: minmax(155px, 0.9fr) minmax(0, 1.25fr) minmax(0, 1.1fr);
  gap: 20px;
  margin-top: 4px;
}

.event-fact {
  display: flex;
  min-width: 0;
  align-items: flex-start;
  gap: 11px;
}

.fact-icon {
  display: grid;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid #e2d9ca;
  border-radius: 11px;
  background: var(--paper);
  color: var(--blue);
  margin-top: 1px;
}

.event-fact span:last-child {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.event-fact strong {
  color: var(--navy);
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1.3;
  text-transform: uppercase;
}

.event-fact:first-child strong {
  white-space: nowrap;
}

.event-fact small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 500;
  line-height: 1.35;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 31px;
}

.hero-visual {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background: var(--paper);
}

.hero-visual::before {
  display: none;
}

.hero-visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 100%);
}

.theme-panel {
  position: absolute;
  z-index: 3;
  top: 32px;
  right: 0;
  width: min(310px, 44%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px 0 0 16px;
  background: rgba(7, 83, 91, 0.94);
  box-shadow: var(--shadow);
  color: white;
  padding: 25px 25px 21px;
  backdrop-filter: blur(10px);
}

.theme-panel > p {
  margin: 0 0 12px 50px;
  color: #e3a04b;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.theme-panel ul {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}

.theme-panel li {
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.theme-panel li:last-child {
  border-bottom: 0;
}

.theme-panel li > span {
  display: grid;
  color: white;
  place-items: center;
}

.theme-panel li div {
  display: flex;
  flex-direction: column;
}

.theme-panel strong {
  font-size: 0.76rem;
  line-height: 1.3;
  text-transform: uppercase;
}

.theme-panel small {
  margin-top: 3px;
  color: #d7e1de;
  font-size: 0.62rem;
  line-height: 1.35;
}

.hero-wave {
  position: absolute;
  z-index: 4;
  right: -4%;
  bottom: -48px;
  width: 60%;
  height: 90px;
  border-radius: 50% 0 0;
  background: var(--navy);
  transform: rotate(-3deg);
}

.hero-wave::before {
  position: absolute;
  top: -9px;
  right: 0;
  left: 0;
  height: 8px;
  background: linear-gradient(90deg, var(--green), var(--lime));
  content: "";
}

.intro-section {
  padding: 72px 0 82px;
  background: var(--paper);
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: end;
  gap: 90px;
}

.intro-grid h2 {
  max-width: 680px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(2rem, 3.4vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.intro-grid > p {
  max-width: 720px;
  margin: 0 0 5px;
  color: #5d6d70;
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.8;
}

.section-heading {
  max-width: 800px;
  margin-bottom: 46px;
}

.section-heading h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.25rem, 3.7vw, 4.2rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.04;
}

.section-heading > div > p:last-child,
.section-heading > p:last-child {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75;
}

.section-heading-split {
  display: flex;
  max-width: none;
  align-items: flex-end;
  justify-content: space-between;
  gap: 42px;
}

.section-heading-split > div {
  max-width: 800px;
}

.section-heading-split > .button {
  flex: 0 0 auto;
  margin-bottom: 4px;
}

.section-heading-centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading-centered > p:last-child {
  margin-inline: auto;
}

.forum-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  margin-top: 58px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #f8f4ec;
}

.forum-stats > div {
  display: flex;
  min-height: 120px;
  flex-direction: column;
  justify-content: center;
  padding: 24px 34px;
  border-right: 1px solid var(--line);
}

.forum-stats > div:last-child {
  border-right: 0;
}

.forum-stats strong {
  color: var(--green);
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.forum-stats span {
  margin-top: 4px;
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.countdown-section {
  padding: 42px 0;
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.countdown-shell {
  display: grid;
  grid-template-columns: minmax(270px, 0.8fr) minmax(520px, 1.2fr);
  align-items: center;
  gap: 56px;
}

.countdown-copy .section-kicker {
  margin-bottom: 8px;
}

.countdown-copy h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.45rem, 2.2vw, 2.2rem);
  line-height: 1.12;
}

.countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.countdown-unit {
  display: grid;
  min-height: 96px;
  place-content: center;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #f8f4ec;
  box-shadow: 0 10px 25px rgba(7, 83, 91, 0.06);
  text-align: center;
}

.countdown-unit strong {
  color: var(--navy);
  font-size: clamp(1.55rem, 2.8vw, 2.35rem);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.countdown-unit span {
  margin-top: 8px;
  color: var(--green);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.countdown-message {
  margin: 0;
  border-radius: 15px;
  background: var(--navy);
  color: white;
  font-size: 1.35rem;
  font-weight: 800;
  padding: 28px 32px;
  text-align: center;
}

.agenda-section {
  padding: 40px 0 112px;
  background:
    linear-gradient(rgba(7, 83, 91, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 83, 91, 0.03) 1px, transparent 1px),
    #f1ece3;
  background-size: 36px 36px;
}

.stream-section {
  position: relative;
  overflow: hidden;
  padding: 96px 0 104px;
  background:
    radial-gradient(circle at 92% 8%, rgba(212, 122, 44, 0.18), transparent 27%),
    linear-gradient(135deg, #063f46, var(--navy));
  color: white;
}

.stream-section::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--green), #e3b56b, var(--lime));
  content: "";
}

.stream-heading {
  display: grid;
  max-width: none;
  grid-template-columns: minmax(0, 1.65fr) minmax(340px, 0.85fr);
  align-items: start;
  column-gap: clamp(42px, 4vw, 68px);
  margin-bottom: 24px;
}

.stream-heading > div:first-child {
  position: relative;
}

.stream-heading .section-kicker {
  position: absolute;
  bottom: calc(100% + 18px);
  left: 0;
  margin: 0;
}

.stream-heading h2 {
  font-size: clamp(2.5rem, 3.2vw, 3.75rem);
  white-space: nowrap;
}

.section-heading.stream-heading > div:first-child > .stream-summary {
  width: 100%;
  max-width: none;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(0.86rem, 0.9vw, 1rem);
  font-weight: 500;
  line-height: 1.75;
  white-space: nowrap;
}

.stream-video-wrap {
  display: grid;
  gap: 22px;
}

.stream-event-meta {
  display: grid;
  width: 100%;
  grid-template-columns: 48px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: rgba(245, 241, 232, 0.08);
  padding: 18px 22px;
}

.stream-event-meta small {
  display: block;
  margin-bottom: 5px;
  color: #f1a65e;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.stream-event-meta strong {
  display: block;
  color: white;
  font-size: 1.05rem;
}

.stream-event-meta p {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.79rem;
  line-height: 1.55;
}

.stream-player {
  position: relative;
  display: grid;
  min-height: 480px;
  overflow: hidden;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    #052f35;
  background-size: 36px 36px;
  box-shadow: 0 28px 65px rgba(0, 0, 0, 0.24);
}

.stream-player::after {
  position: absolute;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(212, 122, 44, 0.26);
  border-radius: 50%;
  content: "";
}

.stream-status {
  position: absolute;
  z-index: 2;
  top: 24px;
  left: 24px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  background: rgba(2, 31, 35, 0.72);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 9px 13px;
  text-transform: uppercase;
}

.stream-status span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(212, 122, 44, 0.15);
}

.stream-play-mark {
  position: relative;
  z-index: 2;
  display: grid;
  width: 98px;
  height: 98px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  background: linear-gradient(135deg, #e18732, #b9611d);
  box-shadow: 0 18px 40px rgba(212, 122, 44, 0.28);
}

.stream-player-copy {
  position: absolute;
  z-index: 2;
  right: 30px;
  bottom: 28px;
  left: 30px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding-top: 21px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.stream-player-copy strong {
  color: white;
  font-size: 1.05rem;
}

.stream-player-copy span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.82rem;
  text-align: right;
}

.stream-detail-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 12px;
  background: rgba(212, 122, 44, 0.14);
  color: #f1a65e;
}

.agenda-timeline {
  position: relative;
  max-width: 1180px;
  margin-inline: auto;
}

.agenda-timeline::before {
  position: absolute;
  z-index: 0;
  top: 34px;
  bottom: 34px;
  left: 163px;
  width: 1px;
  background: #d8cec0;
  content: "";
}

.agenda-item {
  position: relative;
  display: grid;
  grid-template-columns: 130px 66px minmax(0, 1fr);
  align-items: start;
}

.agenda-item time {
  padding-top: 24px;
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 800;
  text-align: right;
}

.agenda-marker {
  position: relative;
  z-index: 2;
  display: grid;
  width: 48px;
  height: 48px;
  margin: 10px auto 0;
  place-items: center;
  border: 1px solid #d8cec0;
  border-radius: 50%;
  background: var(--paper);
  box-shadow: 0 7px 18px rgba(7, 83, 91, 0.09);
  color: var(--blue);
}

.agenda-card {
  margin-bottom: 15px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(245, 241, 232, 0.94);
  box-shadow: 0 9px 28px rgba(7, 83, 91, 0.055);
  padding: 22px 26px 24px;
}

.agenda-card h3 {
  margin: 2px 0 5px;
  color: var(--navy);
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.35;
}

.agenda-card > p:not(.agenda-label) {
  margin: 0;
  color: #617276;
  font-size: 0.83rem;
  font-weight: 500;
  line-height: 1.65;
}

.agenda-label,
.card-label {
  margin: 0 0 4px;
  color: var(--green);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.agenda-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px 20px;
  margin: 16px 0 0;
  padding: 15px 0 0;
  border-top: 1px solid #e8dfd2;
  list-style: none;
}

.agenda-points li {
  position: relative;
  padding-left: 15px;
  color: var(--navy);
  font-size: 0.77rem;
  font-weight: 600;
  line-height: 1.5;
}

.agenda-points li::before {
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
  content: "";
}

.agenda-green .agenda-marker {
  border-color: rgba(212, 122, 44, 0.2);
  background: #efe8dc;
  color: var(--green);
}

.agenda-soft .agenda-marker {
  background: #e9e4dc;
  color: #68777a;
}

.agenda-green .agenda-card {
  border-left: 4px solid var(--green);
}

.agenda-soft .agenda-card {
  background: rgba(249, 250, 248, 0.95);
}

.discussion-panel {
  margin-top: 20px;
  border: 1px solid #d8c8b3;
  border-radius: 12px;
  background: linear-gradient(135deg, #eee5d8, #faf6ef);
  padding: 19px 21px;
}

.discussion-panel > span {
  color: var(--green);
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.discussion-panel h4 {
  margin: 5px 0 6px;
  color: var(--navy);
  font-size: 0.94rem;
  font-weight: 800;
}

.discussion-panel p {
  margin: 0;
  color: #66716d;
  font-size: 0.77rem;
  font-weight: 500;
  line-height: 1.55;
}

.discussion-panel ul {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 13px 0 0;
  padding: 0;
  list-style: none;
}

.discussion-panel li {
  border-radius: 999px;
  background: var(--paper);
  color: var(--navy);
  font-size: 0.66rem;
  font-weight: 700;
  padding: 7px 10px;
}

.experts-section {
  position: relative;
  overflow: hidden;
  padding: 105px 0;
  background:
    radial-gradient(circle at 86% 12%, rgba(109, 135, 146, 0.72), transparent 34%),
    linear-gradient(135deg, #043940, var(--navy));
  color: white;
}

.experts-section::before,
.experts-section::after {
  position: absolute;
  border: 1px solid rgba(127, 165, 139, 0.14);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.experts-section::before {
  top: -260px;
  right: -150px;
  width: 620px;
  height: 620px;
}

.experts-section::after {
  top: -160px;
  right: -50px;
  width: 420px;
  height: 420px;
}

.section-heading-light {
  position: relative;
  z-index: 1;
}

.section-heading-light h2 {
  color: white;
}

.section-heading-light > p:last-child {
  color: #c6d6d3;
}

.experts-heading {
  max-width: none;
  margin-bottom: 34px;
}

.experts-heading h2 {
  font-size: clamp(2.1rem, 3vw, 3.45rem);
  white-space: nowrap;
}

.experts-heading > p:last-child {
  max-width: none;
  margin-top: 10px;
  line-height: 1.55;
  white-space: nowrap;
}

.expert-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.expert-grid article {
  min-height: 300px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.055);
  padding: 28px 24px;
  backdrop-filter: blur(8px);
  transition: transform 180ms ease, background 180ms ease;
}

.expert-grid article:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.085);
}

.expert-grid article > span {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 32px;
  place-items: center;
  border: 1px solid rgba(127, 165, 139, 0.32);
  border-radius: 13px;
  background: rgba(127, 165, 139, 0.09);
  color: #e1a052;
}

.expert-grid article > p {
  margin: 0 0 7px;
  color: #dea05a;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.expert-grid h3 {
  margin: 0 0 12px;
  color: white;
  font-size: 1.12rem;
  font-weight: 750;
}

.expert-grid small {
  color: #c2d0cf;
  font-size: 0.76rem;
  font-weight: 500;
  line-height: 1.7;
}

.speaker-callout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 42px;
  margin-top: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.08);
  padding: 29px 32px;
}

.speaker-callout .section-kicker {
  margin-bottom: 4px;
  font-size: 0.65rem;
}

.speaker-callout h3 {
  margin: 0;
  color: white;
  font-size: 1.35rem;
  font-weight: 750;
}

.speaker-callout p:last-child {
  max-width: 760px;
  margin: 8px 0 0;
  color: #c7d5d2;
  font-size: 0.78rem;
  line-height: 1.6;
}

.button-light {
  border-color: white;
  background: var(--paper);
  box-shadow: none;
  color: var(--navy);
}

.button-light:hover,
.button-light:focus-visible {
  background: #f1eadf;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.17);
}

.participants-section {
  padding: 105px 0 112px;
  background: var(--paper);
}

.participant-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 18px;
}

.venue-card {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  min-height: 370px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--paper);
  box-shadow: 0 14px 42px rgba(7, 83, 91, 0.08);
}

.venue-map {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  background: #e9e2d6;
}

.venue-map iframe {
  width: 100%;
  height: 100%;
  min-height: 300px;
  border: 0;
  filter: saturate(0.78) sepia(0.08);
}

.map-route {
  position: absolute;
  right: 16px;
  bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid white;
  border-radius: 10px;
  background: var(--green);
  box-shadow: 0 10px 24px rgba(7, 83, 91, 0.24);
  color: white;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 11px 14px;
  transition: transform 180ms ease, background 180ms ease;
}

.map-route:hover,
.map-route:focus-visible {
  transform: translateY(-2px);
  background: #b9641f;
}

.venue-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 38px;
}

.venue-copy h3 {
  margin: 4px 0 11px;
  color: var(--navy);
  font-size: 1.55rem;
  font-weight: 800;
  line-height: 1.2;
}

.venue-copy > p:not(.card-label) {
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 0.87rem;
  font-weight: 700;
  line-height: 1.5;
}

.venue-copy small {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.65;
}

.practical-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.practical-cards article {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 15px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #f8f4ec;
  padding: 23px 21px;
}

.practical-cards article > span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 11px;
  background: #ede6db;
  color: var(--green);
}

.practical-cards article > .fee-mark {
  font-size: 0.84rem;
  font-weight: 800;
}

.practical-cards h3 {
  margin: 4px 0 7px;
  color: var(--navy);
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.35;
}

.practical-cards small {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 500;
  line-height: 1.5;
}

.calendar-add {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 13px;
  border-radius: 8px;
  background: var(--navy);
  color: white;
  font-size: 0.68rem;
  font-weight: 750;
  line-height: 1;
  padding: 10px 12px;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.calendar-add:hover,
.calendar-add:focus-visible {
  transform: translateY(-1px);
  background: #09616a;
  box-shadow: 0 8px 18px rgba(7, 83, 91, 0.16);
}

.calendar-add svg {
  flex: 0 0 auto;
}

.publication-guidelines-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 13px;
  border: 1px solid rgba(212, 122, 44, 0.48);
  border-radius: 8px;
  background: #fff4e8;
  color: #a65318;
  font-size: 0.68rem;
  font-weight: 750;
  line-height: 1;
  padding: 10px 12px;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.publication-poster-note {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-top: 11px;
  border-left: 3px solid var(--orange);
  padding-left: 10px;
}

.publication-poster-note strong {
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.35;
}

.publication-poster-note span {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 500;
  line-height: 1.5;
}

.publication-guidelines-link:hover,
.publication-guidelines-link:focus-visible {
  transform: translateY(-1px);
  background: #ffe8d2;
  box-shadow: 0 8px 18px rgba(212, 122, 44, 0.14);
}

.publication-guidelines-link svg {
  flex: 0 0 auto;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 60px;
  margin-top: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(130deg, #efe8dc, var(--paper));
  padding: 34px 38px;
}

.benefits-grid h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.25;
}

.benefits-grid .section-kicker {
  margin-bottom: 7px;
  font-size: 0.68rem;
}

.benefits-grid ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.benefits-grid li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-size: 0.77rem;
  font-weight: 650;
  line-height: 1.45;
}

.benefits-grid li > span {
  display: grid;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: white;
}

.registration-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 27px;
  overflow: hidden;
  margin-top: 20px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 88% 0, rgba(127, 165, 139, 0.19), transparent 28%),
    var(--navy);
  color: white;
  padding: 39px 42px;
}

.registration-mark {
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  color: #a9d56e;
}

.registration-card .section-kicker {
  margin-bottom: 5px;
  font-size: 0.66rem;
}

.registration-card h2 {
  margin: 0;
  color: white;
  font-size: 1.72rem;
  font-weight: 800;
}

.registration-card p:last-child {
  max-width: 720px;
  margin: 8px 0 0;
  color: #c7d5d2;
  font-size: 0.76rem;
  line-height: 1.55;
}

.sponsors-section {
  padding: 98px 0 105px;
  background: #efe9de;
}

.partner-group-title {
  margin: 0 0 16px;
  color: var(--green);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  line-height: 1.25;
  text-transform: uppercase;
}

.patronage-group {
  margin-top: -4px;
}

.patronage-logo-placeholder {
  width: 320px;
  height: 190px;
  border: 1px solid #e2d7c8;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 10px 32px rgba(7, 83, 91, 0.05);
}

.partners-group {
  margin-top: 34px;
}

.partner-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-top: 0;
  padding: 6px 0 22px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}

.partner-track {
  display: flex;
  width: max-content;
  gap: 16px;
  animation: partner-marquee-scroll 44s linear infinite;
  will-change: transform;
}

.partner-set {
  display: flex;
  flex: 0 0 auto;
  gap: 16px;
}

.partner-logo {
  display: flex;
  flex: 0 0 320px;
  width: 320px;
  height: 190px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid #e2d7c8;
  border-radius: 16px;
  background: #ffffff;
  padding: 22px 26px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.partner-logo:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(7, 83, 91, 0.1);
}

.partner-logo-stage {
  display: flex;
  width: 268px;
  height: 146px;
  flex: 0 0 268px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.partner-logo-stage > img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  flex: 0 0 auto;
  object-fit: contain;
  object-position: center;
}

@keyframes partner-marquee-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 8px));
  }
}

.partner-link {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}

.partner-link:focus-visible,
.organizer-logo-link:focus-visible {
  outline: 3px solid #7fa58b;
  outline-offset: 4px;
}

.site-footer {
  background: #064a51;
  color: white;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(430px, 1.6fr) 0.8fr 0.7fr;
  align-items: start;
  gap: 56px;
  padding-top: 52px;
  padding-bottom: 52px;
}

.organizer {
  display: grid;
  width: fit-content;
  grid-template-columns: 122px 210px 160px;
  align-items: center;
  gap: 12px 18px;
}

.organizer-logos {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: 122px 210px 160px;
  align-items: center;
  gap: 18px;
}

.organizer-logo-link {
  display: grid;
  width: 122px;
  height: 122px;
  place-items: center;
  border-radius: 50%;
}

.organizer img {
  width: 122px;
  height: 122px;
  border-radius: 50%;
  object-fit: cover;
}

.organizer-logo-link-upebbi {
  display: grid;
  place-items: center;
  width: 210px;
  height: 122px;
  padding: 13px 10px;
  border-radius: 10px;
  background: #fff;
}

.organizer-logo-link-upebbi img {
  width: 100%;
  height: 100%;
  border-radius: 0;
  object-fit: contain;
}

.organizer-logo-link-zmw {
  display: grid;
  place-items: center;
  width: 160px;
  height: 122px;
  padding: 13px 10px;
  border-radius: 10px;
  background: #fff;
}

.organizer-logo-link-zmw img {
  width: 100%;
  height: 100%;
  border-radius: 0;
  object-fit: contain;
}

.organizer small,
.footer-contact > p,
.footer-event > p {
  margin: 0;
  color: #e0a04c;
  font-size: clamp(1.12rem, 1.24vw, 1.32rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.organizer > small {
  grid-column: 1 / -1;
  margin-bottom: 1px;
}

.organizer-names {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: 122px 210px 160px;
  gap: 18px;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.42;
  text-transform: uppercase;
}

.organizer-names span {
  color: #fff;
}

.footer-contact {
  display: grid;
  gap: 11px;
}

.footer-contact > p {
  margin-bottom: 4px;
}

.footer-contact a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #d5e0de;
  font-size: 0.88rem;
  font-weight: 550;
}

.footer-contact a:hover,
.footer-contact a:focus-visible {
  color: white;
}

.footer-contact-email {
  min-width: 0;
}

.footer-contact-email span {
  overflow-wrap: anywhere;
}

.footer-event {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-event strong {
  margin-top: 7px;
  font-size: 1.08rem;
  font-weight: 750;
  line-height: 1.4;
}

.footer-event span {
  margin-top: 9px;
  color: #b9c9c7;
  font-size: 0.82rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  background: #03363c;
}

.footer-bottom > div {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(320px, 1.35fr) minmax(140px, 1fr);
  min-height: 52px;
  align-items: center;
  gap: 20px;
  color: #aebfbd;
  font-size: 0.66rem;
}

.ai-notice {
  color: #d4dfdd;
  font-size: 0.64rem;
  line-height: 1.45;
  text-align: center;
}

.footer-bottom a {
  justify-self: end;
  color: white;
  font-weight: 650;
}

@media (max-width: 1280px) {
  .nav-wrap {
    grid-template-columns: 310px 1fr auto;
  }

  .brand {
    width: 300px;
  }

  .desktop-nav {
    gap: 18px;
  }

  .desktop-nav a {
    font-size: 0.73rem;
  }

  .hero-grid {
    grid-template-columns: minmax(470px, 0.9fr) minmax(520px, 1.1fr);
  }

  .hero-copy {
    padding-left: 0;
    padding-right: 34px;
  }

  .event-facts {
    grid-template-columns: 1fr 1.35fr;
  }

  .event-fact:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 1060px) {
  .nav-wrap {
    grid-template-columns: 280px 1fr auto;
  }

  .brand {
    width: 270px;
  }

  .desktop-nav {
    display: none;
  }

  .nav-wrap > .button {
    justify-self: end;
  }

  .mobile-nav {
    position: relative;
    display: block;
  }

  .stream-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .stream-heading .section-kicker {
    position: static;
    margin: 0 0 12px;
  }

  .stream-heading h2 {
    white-space: normal;
  }

  .section-heading.stream-heading > div:first-child > .stream-summary {
    white-space: normal;
  }

  .stream-event-meta {
    max-width: 620px;
  }

  .mobile-nav summary {
    display: grid;
    width: 44px;
    height: 44px;
    cursor: pointer;
    list-style: none;
    place-content: center;
    gap: 5px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--paper);
  }

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

  .mobile-nav summary span {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 2px;
    background: var(--navy);
  }

  .mobile-nav nav {
    position: absolute;
    top: 54px;
    right: 0;
    display: grid;
    width: min(320px, calc(100vw - 40px));
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--paper);
    box-shadow: var(--shadow);
  }

  .mobile-nav nav a {
    padding: 15px 18px;
    border-bottom: 1px solid #edf1f3;
    color: var(--navy);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
  }

  .mobile-nav nav a:last-child {
    border-bottom: 0;
  }

  .hero {
    background: var(--paper);
  }

  .hero-grid {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .hero-copy {
    width: min(100% - 40px, 900px);
    margin-inline: auto;
    padding: 58px 0 48px;
  }

  .hero-visual {
    min-height: 500px;
  }

  .hero-visual::before {
    display: none;
  }

  .hero-visual > img {
    -webkit-mask-image: none;
    mask-image: none;
  }

  .theme-panel {
    right: 20px;
  }

  .hero-wave {
    width: 80%;
  }
}

@media (max-width: 720px) {
  .shell {
    width: min(100% - 28px, 1450px);
  }

  .nav-wrap {
    grid-template-columns: 1fr auto;
    min-height: 76px;
    gap: 12px;
  }

  .brand {
    width: 222px;
  }

  .nav-wrap > .button {
    display: none;
  }

  .hero-copy {
    width: min(100% - 28px, 900px);
    min-width: 0;
    padding-top: 38px;
    padding-bottom: 40px;
  }

  .eyebrow {
    font-size: 0.8rem;
  }

  .hero h1 {
    max-width: 100%;
    overflow-wrap: normal;
    font-size: clamp(2.2rem, 9.5vw, 3.25rem);
    letter-spacing: -0.055em;
    line-height: 1.02;
  }

  .hero-subtitle {
    margin-top: 14px;
    max-width: 100%;
    font-size: 0.95rem;
    line-height: 1.3;
  }

  .event-facts {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .event-fact:last-child {
    grid-column: auto;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .hero-actions .button {
    width: 100%;
    min-width: 0;
    padding-inline: 16px;
  }

  .hero-visual {
    min-height: 540px;
  }

  .hero-visual > img {
    height: 300px;
  }

  .theme-panel {
    top: 260px;
    right: 14px;
    left: 14px;
    width: auto;
    border-radius: 15px;
  }

  .theme-panel > p {
    margin-left: 0;
  }

  .theme-panel ul {
    grid-template-columns: 1fr 1fr;
    gap: 0 18px;
  }

  .theme-panel li:nth-child(3) {
    border-bottom: 0;
  }

  .hero-wave {
    right: -12%;
    width: 112%;
  }

  .intro-section {
    padding: 58px 0 62px;
  }

  .intro-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .intro-grid > p {
    font-size: 0.96rem;
    line-height: 1.7;
  }
}

/* Registration draft */
.registration-page {
  min-height: 100vh;
  background:
    linear-gradient(rgba(7, 83, 91, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 83, 91, 0.035) 1px, transparent 1px),
    var(--paper);
  background-size: 38px 38px;
}

.registration-header {
  border-bottom: 1px solid var(--line);
  background: rgba(245, 241, 232, 0.96);
}

.registration-nav {
  display: flex;
  min-height: 92px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.registration-back {
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.registration-hero {
  padding: 54px 0 48px;
  background: linear-gradient(120deg, #064951, var(--navy));
  color: white;
}

.registration-hero > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.registration-hero h1,
.registration-confirmation h1 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  letter-spacing: -0.045em;
  line-height: 1;
}

.registration-hero p:not(.registration-kicker) {
  max-width: 760px;
  margin: 18px 0 0;
  color: #d7e1de;
  line-height: 1.7;
}

.registration-kicker {
  margin: 0 0 8px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.registration-price-badge {
  display: flex;
  min-width: 260px;
  flex-direction: column;
  padding: 24px 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
}

.registration-price-badge span,
.registration-price-badge small {
  color: #d7e1de;
  font-size: 0.7rem;
}

.registration-price-badge strong {
  margin: 4px 0;
  color: white;
  font-size: 2.25rem;
}

.registration-content {
  padding-top: 34px;
  padding-bottom: 90px;
}

.draft-banner {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  padding: 15px 20px;
  border: 1px solid #e6b98e;
  border-radius: 12px;
  background: #fff3e5;
  color: #70431f;
  font-size: 0.78rem;
}

.draft-banner strong {
  color: #a95518;
  text-transform: uppercase;
}

.registration-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 350px;
  align-items: start;
  gap: 28px;
}

.registration-form-column {
  display: grid;
  gap: 24px;
}

.registration-form-card,
.registration-summary,
.registration-confirmation {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fbf8f2;
  box-shadow: 0 16px 50px rgba(7, 83, 91, 0.07);
}

.registration-form-card {
  display: block;
  margin: 0;
  overflow: visible;
  padding: 32px;
  color: var(--ink);
}

.registration-section-heading {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 26px;
}

.registration-section-heading > span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 12px;
  background: #f1e6d6;
  color: var(--green);
  font-weight: 850;
}

.registration-section-heading h2,
.registration-summary h2 {
  margin: 0;
  color: var(--navy);
  font-size: 1.45rem;
  letter-spacing: -0.025em;
}

.registration-fields {
  display: grid;
  gap: 18px;
}

.registration-fields.two-columns {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.registration-fields label,
.full-field {
  display: flex;
  flex-direction: column;
  gap: 9px;
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 750;
}

.field-label {
  display: inline-flex;
  min-height: 18px;
  align-items: baseline;
  gap: 4px;
  line-height: 1.35;
}

.duplicate-registration-note {
  margin-top: -2px;
  color: #697a7d;
  font-size: 0.66rem;
  font-weight: 550;
  line-height: 1.45;
}

.required-mark {
  display: inline;
  color: var(--green);
  font-weight: 850;
  line-height: inherit;
}

.registration-fields b,
.full-field b,
.registration-consents b {
  color: var(--green);
}

.registration-fields input,
.full-field textarea {
  width: 100%;
  border: 1px solid #d9d0c2;
  border-radius: 10px;
  outline: 0;
  background: white;
  color: var(--ink);
  font: inherit;
  font-weight: 550;
  padding: 13px 14px;
}

.registration-fields input {
  height: 48px;
}

.nip-field {
  grid-column: 1 / -1;
}

.nip-lookup-row {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) auto;
  align-items: stretch;
  gap: 10px;
}

.nip-lookup-row button {
  min-height: 48px;
  border: 1px solid var(--navy);
  border-radius: 10px;
  background: var(--navy);
  color: white;
  cursor: pointer;
  font: inherit;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 0 18px;
}

.nip-lookup-row button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.nip-lookup-message {
  display: block;
  margin-top: 1px;
  font-size: 0.64rem;
  font-weight: 650;
  line-height: 1.45;
}

.nip-lookup-message.success {
  color: #2f7655;
}

.nip-lookup-message.error {
  color: #a33d2f;
}

.full-field textarea {
  min-height: 92px;
  resize: vertical;
}

.registration-fields input:focus,
.full-field textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(212, 122, 44, 0.13);
}

.full-field {
  margin-top: 18px;
}

.span-two {
  grid-column: 1 / -1;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.choice-card {
  position: relative;
  display: flex;
  min-height: 118px;
  flex-direction: column;
  gap: 5px;
  padding: 18px 17px 16px 42px;
  border: 1px solid #ddd5c9;
  border-radius: 14px;
  background: white;
  cursor: pointer;
}

.choice-card.selected {
  border-color: var(--green);
  background: #fff7ee;
  box-shadow: 0 0 0 2px rgba(212, 122, 44, 0.1);
}

.choice-card input {
  position: absolute;
  top: 19px;
  left: 17px;
  accent-color: var(--green);
}

.choice-card strong {
  color: var(--navy);
  font-size: 0.8rem;
}

.choice-card small {
  color: var(--muted);
  font-size: 0.67rem;
  line-height: 1.45;
}

.choice-card em {
  margin-top: auto;
  color: #a45c24;
  font-size: 0.58rem;
  font-style: normal;
  font-weight: 750;
  text-transform: uppercase;
}

.bank-transfer-details {
  margin-top: 18px;
  padding: 22px;
  border: 1px solid #d9d1c5;
  border-left: 4px solid var(--green);
  border-radius: 12px;
  background: #fbf8f2;
}

.traditional-payment-intro {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 18px 20px;
  border: 1px solid #e2d8ca;
  border-radius: 12px;
  background: #f4eee4;
}

.traditional-payment-intro strong {
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 800;
}

.traditional-payment-intro span {
  max-width: 820px;
  color: var(--muted);
  font-size: 0.7rem;
  line-height: 1.6;
}

.bank-transfer-details h3,
.bank-transfer-details p {
  margin: 0;
}

.bank-transfer-details h3 {
  max-width: 760px;
  margin-top: 5px;
  color: var(--navy);
  font-size: 0.9rem;
  line-height: 1.45;
}

.bank-transfer-details > p:not(.registration-kicker) {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.72rem;
}

.bank-transfer-details dl {
  display: grid;
  gap: 8px;
  margin: 18px 0 12px;
}

.bank-transfer-details dl > div {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: 16px;
}

.bank-transfer-details dt {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
}

.bank-transfer-details dd {
  margin: 0;
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 800;
}

.bank-transfer-details .bank-account-number {
  font-size: 0.82rem;
  letter-spacing: 0.035em;
}

.bank-transfer-details small {
  color: var(--muted);
  font-size: 0.62rem;
  line-height: 1.5;
}

.payment-proof-note {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 14px;
  border: 2px solid #e1a064;
  border-left: 5px solid var(--green);
  border-radius: 12px;
  background: #fff4e8;
  padding: 16px 18px;
}

.payment-proof-note strong {
  color: var(--navy);
  font-size: 0.76rem;
  font-weight: 850;
}

.payment-proof-note span {
  color: var(--muted);
  font-size: 0.7rem;
  line-height: 1.55;
}

.payment-proof-note a {
  color: #a65318;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.conditional-fields {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.registration-consents {
  display: grid;
  gap: 12px;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.registration-consents label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 0.68rem;
  line-height: 1.55;
}

.consent-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 16px;
}

.legal-download {
  border-bottom: 1px solid rgba(212, 122, 44, 0.45);
  color: #a95518;
  font-size: 0.63rem;
  font-weight: 800;
  line-height: 1.45;
  white-space: nowrap;
}

.legal-download:hover,
.legal-download:focus-visible {
  border-bottom-color: var(--green);
  color: var(--green);
}

.registration-consents input {
  margin-top: 3px;
  accent-color: var(--green);
}

.registration-summary {
  position: sticky;
  top: 24px;
  padding: 28px;
}

.registration-summary dl {
  margin: 24px 0;
}

.registration-summary dl > div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.75rem;
}

.registration-summary dd {
  margin: 0;
  color: var(--navy);
  font-weight: 800;
}

.registration-summary .summary-total {
  margin-top: 8px;
  border: 0;
  color: var(--navy);
  font-size: 0.94rem;
  font-weight: 800;
}

.registration-summary .summary-total dd {
  color: var(--green);
  font-size: 1.25rem;
}

.summary-event {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 18px;
  border-radius: 13px;
  background: #edf1ec;
  color: var(--navy);
}

.summary-event span,
.summary-event small {
  color: var(--muted);
  font-size: 0.66rem;
}

.summary-note {
  margin: 18px 0;
  color: var(--muted);
  font-size: 0.67rem;
  line-height: 1.55;
}

.registration-primary {
  width: 100%;
  min-height: 52px;
  border: 0;
  border-radius: 10px;
  background: linear-gradient(135deg, #d47a2c, #b9651f);
  box-shadow: 0 10px 24px rgba(212, 122, 44, 0.2);
  color: white;
  cursor: pointer;
  font: inherit;
  font-size: 0.8rem;
  font-weight: 800;
}

.registration-primary:disabled {
  cursor: wait;
  opacity: 0.72;
}

.registration-submit-error {
  display: grid;
  gap: 6px;
  padding: 18px 20px;
  border: 2px solid #c96a32;
  border-left-width: 5px;
  border-radius: 14px;
  background: #fff8f3;
  color: #7a2e12;
}

.registration-submit-error span {
  line-height: 1.55;
}

.secure-note {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.58rem;
  line-height: 1.45;
  text-align: center;
}

.registration-confirmation {
  max-width: 760px;
  margin: 60px auto 120px;
  padding: 54px;
  text-align: center;
}

.registration-confirmation h1 {
  color: var(--navy);
  font-size: clamp(2.3rem, 5vw, 3.7rem);
}

.registration-confirmation > p:not(.registration-kicker) {
  margin: 20px auto 28px;
  color: var(--muted);
  line-height: 1.75;
}

.confirmation-mark {
  display: grid;
  width: 70px;
  height: 70px;
  margin: 0 auto 22px;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: white;
  font-size: 2rem;
}

.registration-confirmation .registration-primary {
  max-width: 260px;
}

.registration-footer {
  padding: 24px 0;
  background: #043f46;
  color: #c9d6d3;
  font-size: 0.68rem;
}

.registration-footer > div {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) minmax(320px, 1.4fr) minmax(180px, 1fr);
  align-items: center;
  gap: 20px;
}

.registration-ai-notice {
  color: #d4dfdd;
  line-height: 1.5;
  text-align: center;
}

.registration-footer a {
  justify-self: end;
  color: white;
  font-weight: 750;
}

@media (max-width: 980px) {
  .registration-layout {
    grid-template-columns: 1fr;
  }

  .registration-summary {
    position: static;
    order: -1;
  }
}

@media (max-width: 720px) {
  .registration-nav {
    min-height: 76px;
  }

  .registration-nav .brand {
    width: 205px;
  }

  .registration-back {
    font-size: 0;
  }

  .registration-back::after {
    content: "← Forum";
    font-size: 0.7rem;
  }

  .registration-hero {
    padding: 38px 0;
  }

  .registration-hero > div {
    align-items: stretch;
    flex-direction: column;
    gap: 28px;
  }

  .registration-price-badge {
    min-width: 0;
  }

  .draft-banner {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .registration-form-card,
  .registration-summary,
  .registration-confirmation {
    border-radius: 16px;
  }

  .registration-form-card {
    padding: 24px 18px;
  }

  .registration-fields.two-columns,
  .choice-grid {
    grid-template-columns: 1fr;
  }

  .nip-lookup-row {
    grid-template-columns: 1fr;
  }

  .span-two {
    grid-column: auto;
  }

  .choice-card {
    min-height: 96px;
  }

  .registration-confirmation {
    margin: 34px auto 70px;
    padding: 38px 22px;
  }

  .registration-footer > div {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .registration-ai-notice {
    text-align: left;
  }

  .registration-footer a {
    justify-self: start;
  }

  .consent-item {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .legal-download {
    width: fit-content;
    margin-left: 26px;
    white-space: normal;
  }
}

@media (max-width: 600px) {
  .organizer {
    width: 100%;
    grid-template-columns: 92px repeat(2, minmax(0, 1fr));
    align-items: flex-start;
  }

  .organizer-logos,
  .organizer-names {
    grid-template-columns: 92px repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .organizer-logo-link {
    width: 92px;
    height: 92px;
  }

  .organizer img {
    width: 92px;
    height: 92px;
  }

  .organizer-logo-link-upebbi,
  .organizer-logo-link-zmw {
    width: 100%;
    height: 92px;
    padding: 10px 8px;
  }

  .organizer-logo-link-upebbi img,
  .organizer-logo-link-zmw img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .organizer-names {
    font-size: 0.68rem;
  }
}

@media (max-width: 460px) {
  .brand {
    width: 195px;
  }

  .hero-copy {
    padding-right: 12px;
  }

  .hero h1 {
    font-size: clamp(1.76rem, 8.15vw, 2.1rem);
  }

  .hero-subtitle {
    font-size: 0.86rem;
  }

  .event-fact {
    align-items: flex-start;
  }

  .event-fact strong {
    overflow-wrap: anywhere;
  }

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

  .theme-panel li:nth-child(3) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .hero-visual {
    min-height: 695px;
  }
}

@media (max-width: 1100px) {
  .forum-stats {
    grid-template-columns: 1fr 1fr;
  }

  .forum-stats > div:nth-child(2) {
    border-right: 0;
  }

  .forum-stats > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

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

  .expert-grid article {
    min-height: 270px;
  }

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

  .practical-cards article {
    min-height: 150px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .registration-card {
    grid-template-columns: auto 1fr;
  }

  .registration-card > .button {
    grid-column: 2;
    justify-self: start;
  }

  .footer-main {
    grid-template-columns: 1.25fr 0.75fr;
  }

  .footer-event {
    grid-column: 1 / -1;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.11);
  }
}

@media (max-width: 760px) {
  .section-heading {
    margin-bottom: 34px;
  }

  .section-heading h2 {
    font-size: 2.35rem;
  }

  .experts-heading h2,
  .experts-heading > p:last-child {
    white-space: normal;
  }

  .experts-heading > p:last-child {
    margin-top: 9px;
  }

  .section-heading-split {
    display: grid;
    gap: 22px;
  }

  .section-heading-split > .button {
    justify-self: start;
  }

  .forum-stats {
    margin-top: 42px;
  }

  .forum-stats > div {
    min-height: 100px;
    padding: 20px;
  }

  .forum-stats strong {
    font-size: 1.55rem;
  }

  .forum-stats span {
    font-size: 0.62rem;
    line-height: 1.4;
  }

  .countdown-shell {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .agenda-section,
  .stream-section,
  .experts-section,
  .participants-section,
  .sponsors-section {
    padding: 74px 0 78px;
  }

  .agenda-section {
    padding-top: 50px;
  }

  .stream-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .stream-player {
    min-height: 340px;
  }

  .stream-player::after {
    width: 230px;
    height: 230px;
  }

  .stream-player-copy {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .stream-player-copy span {
    text-align: left;
  }

  .stream-event-meta {
    width: 100%;
    padding: 16px 18px;
  }

  .agenda-item {
    grid-template-columns: 44px minmax(0, 1fr);
    padding-top: 25px;
  }

  .agenda-timeline::before {
    top: 19px;
    bottom: 19px;
    left: 19px;
  }

  .agenda-item:first-child {
    padding-top: 0;
  }

  .agenda-item time {
    grid-row: 1;
    grid-column: 2;
    padding: 0 0 8px;
    font-size: 0.77rem;
    text-align: left;
  }

  .agenda-marker {
    grid-row: 1 / 3;
    grid-column: 1;
    width: 38px;
    height: 38px;
    margin: 0;
  }

  .agenda-marker svg {
    width: 19px;
    height: 19px;
  }

  .agenda-card {
    grid-row: 2;
    grid-column: 2;
    margin: 0;
    padding: 19px 18px 20px;
  }

  .agenda-card h3 {
    font-size: 0.95rem;
  }

  .agenda-points {
    grid-template-columns: 1fr;
  }

  .discussion-panel ul {
    display: grid;
  }

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

  .expert-grid article {
    min-height: auto;
  }

  .expert-grid article > span {
    margin-bottom: 24px;
  }

  .speaker-callout {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 25px 22px;
  }

  .speaker-callout .button {
    justify-self: start;
  }

  .venue-card {
    grid-template-columns: 1fr;
  }

  .venue-map {
    min-height: 240px;
  }

  .venue-copy {
    padding: 29px 24px 32px;
  }

  .practical-cards {
    grid-template-columns: 1fr;
  }

  .practical-cards article {
    min-height: auto;
  }

  .benefits-grid {
    padding: 28px 23px;
  }

  .benefits-grid ul {
    grid-template-columns: 1fr;
  }

  .registration-card {
    grid-template-columns: 1fr;
    padding: 31px 25px;
  }

  .registration-mark {
    width: 64px;
    height: 64px;
  }

  .registration-card > .button {
    grid-column: auto;
    width: 100%;
  }

  .partner-logo {
    flex-basis: 270px;
    width: 270px;
    height: 164px;
    padding: 18px 21px;
  }

  .patronage-logo-placeholder {
    width: 270px;
    height: 164px;
  }

  .partner-logo-stage {
    width: 228px;
    height: 128px;
    flex-basis: 228px;
  }

  .organizer small,
  .footer-contact > p,
  .footer-event > p {
    font-size: 1.2rem;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-event {
    grid-column: auto;
  }

  .footer-bottom > div {
    min-height: 70px;
    grid-template-columns: 1fr;
    align-items: flex-start;
    justify-content: center;
    gap: 9px;
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .ai-notice {
    max-width: 620px;
    text-align: left;
  }

  .footer-bottom a {
    justify-self: start;
  }
}

@media (max-width: 460px) {
  .countdown-section {
    padding: 34px 0;
  }

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

  .countdown-unit {
    min-height: 82px;
  }

  .forum-stats {
    grid-template-columns: 1fr;
  }

  .forum-stats > div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .forum-stats > div:last-child {
    border-bottom: 0;
  }

  .organizer {
    width: 100%;
    grid-template-columns: 92px repeat(2, minmax(0, 1fr));
    align-items: flex-start;
  }

  .organizer-logos,
  .organizer-names {
    grid-template-columns: 92px repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .organizer-logo-link {
    width: 92px;
    height: 92px;
  }

  .organizer img {
    width: 92px;
    height: 92px;
  }

  .organizer-logo-link-upebbi {
    width: 100%;
    height: 92px;
    padding: 10px 8px;
  }

  .organizer-logo-link-upebbi img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .organizer-logo-link-zmw {
    width: 100%;
    height: 92px;
    padding: 10px 8px;
  }

  .organizer-logo-link-zmw img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .organizer-names {
    font-size: 0.68rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .partner-marquee {
    overflow-x: auto;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .partner-track {
    animation: none !important;
  }
}
