/* ===== Design tokens ===== */
:root {
  --teal-900: #0c2f2c;
  --teal-800: #11403b;
  --teal-700: #15564f;
  --teal-600: #1c7268;
  --teal-500: #2a9d8f;
  --teal-400: #4cc2b2;
  --teal-100: #d8f0eb;
  --gold:     #d9a441;
  --ink:      #11201e;
  --slate:    #4a5b58;
  --mist:     #f4f8f7;
  --line:     #e2ece9;
  --white:    #ffffff;

  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 18px 40px -24px rgba(12, 47, 44, 0.45);
  --shadow-sm: 0 8px 24px -16px rgba(12, 47, 44, 0.4);

  --font-display: "Sora", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

/* Ensure the HTML [hidden] attribute always wins over component display rules */
[hidden] { display: none !important; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: min(1140px, 92%);
  margin-inline: auto;
}

h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.15; letter-spacing: -0.01em; }

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

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.98rem;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.btn--sm { padding: 0.55rem 1.1rem; font-size: 0.9rem; }
.btn--primary {
  background: linear-gradient(135deg, var(--teal-500), var(--teal-600));
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 16px 30px -16px rgba(28,114,104,0.7); }
.btn--ghost {
  background: transparent;
  color: var(--teal-700);
  border-color: var(--teal-400);
}
.btn--ghost:hover { background: var(--teal-100); }

/* ===== Navigation ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.brand { display: flex; align-items: center; gap: 0.6rem; color: var(--teal-700); }
.brand__mark {
  display: grid; place-items: center;
  width: 38px; height: 38px;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--teal-500), var(--teal-700));
  color: var(--white);
}
.brand__text { font-family: var(--font-display); font-weight: 600; font-size: 1.15rem; letter-spacing: 0.02em; color: var(--ink); }
.brand__text strong { color: var(--teal-600); }
.brand__logo { height: 38px; width: auto; display: block; }
.brand__logo--lg { height: 46px; }
/* White backing so the dark logo stays legible on dark surfaces (footer, etc.) */
.brand__chip { display: inline-flex; align-items: center; background: var(--white); padding: 0.45rem 0.7rem; border-radius: 10px; }
.brand__chip .brand__logo { height: 30px; }

.nav__links { display: flex; align-items: center; gap: 1.6rem; }
.nav__links a { font-weight: 500; font-size: 0.96rem; color: var(--slate); transition: color 0.15s ease; }
.nav__links a:hover { color: var(--teal-600); }
.nav__links a.is-current { color: var(--teal-700); font-weight: 600; }
.nav__links a.is-current.btn { color: var(--teal-700); }
.nav__links .btn { color: var(--teal-700); }

.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav__toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: 0.25s; }

/* ===== Hero ===== */
.hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(120% 120% at 80% -10%, var(--teal-700) 0%, var(--teal-900) 55%, #07211f 100%);
  color: var(--white);
  padding: clamp(4rem, 9vw, 7.5rem) 0 clamp(3.5rem, 7vw, 6rem);
}
.hero__bg {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 12% 20%, rgba(76,194,178,0.22), transparent 40%),
    radial-gradient(circle at 88% 80%, rgba(217,164,65,0.16), transparent 45%);
  pointer-events: none;
}
.hero__bg::after {
  content: "";
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 100% 46px;
  opacity: 0.5;
  mask-image: linear-gradient(to bottom, transparent, black 40%, transparent);
}
.hero__inner { position: relative; text-align: center; }
.pill {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  background: rgba(76,194,178,0.16);
  border: 1px solid rgba(76,194,178,0.35);
  color: var(--teal-100);
}
.hero__title {
  font-size: clamp(2.8rem, 8vw, 5.6rem);
  font-weight: 800;
  margin: 1.4rem 0 0.6rem;
  letter-spacing: -0.02em;
}
.hero__title span { color: var(--teal-400); }
.hero__subtitle { font-size: clamp(1.05rem, 2.6vw, 1.4rem); color: #cfe6e1; font-weight: 400; }

.hero__meta {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2rem;
  margin: 2rem 0 0;
}
.hero__meta li { display: inline-flex; align-items: center; gap: 0.55rem; font-weight: 500; color: #e4f2ef; }
.hero__meta svg { color: var(--teal-400); }

.hero__cta { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin: 2.4rem 0 0; }
.hero__cta .btn--ghost { color: var(--white); border-color: rgba(255,255,255,0.4); }
.hero__cta .btn--ghost:hover { background: rgba(255,255,255,0.1); }

.countdown {
  margin-top: 3.6rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 2.2rem;
}
.countdown__label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9ec6c0;
  margin-bottom: 1.2rem;
}
.countdown__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
  max-width: 560px;
  margin-inline: auto;
}
.cd {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  padding: 1rem 0.5rem;
  text-align: center;
  backdrop-filter: blur(4px);
}
.cd__num {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  line-height: 1;
  color: var(--teal-400);
  font-variant-numeric: tabular-nums;
}
.cd__unit {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #bcd6d1;
}
.countdown--live .cd__num { color: var(--teal-400); }
.countdown__live-msg {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.4rem, 4vw, 2rem);
  color: var(--teal-400);
}

/* ===== Sections ===== */
.section { padding: clamp(3.5rem, 7vw, 6rem) 0; }
.section--alt { background: var(--mist); }
.section__head { max-width: 720px; margin-bottom: 2.8rem; }
.eyebrow {
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--teal-600);
}
.section__head h2 { font-size: clamp(1.7rem, 4vw, 2.6rem); margin-top: 0.7rem; color: var(--ink); }

/* ===== About ===== */
.about__grid { display: grid; grid-template-columns: 1.25fr 1fr; gap: 2.4rem; align-items: start; }
.about__lead { font-size: 1.35rem; font-family: var(--font-display); font-weight: 500; line-height: 1.4; color: var(--teal-800); }
.about__body { color: var(--slate); font-size: 1.05rem; margin-top: 1.1rem; }
.about__lead strong, .about__body strong { color: var(--teal-600); }
#contact-profile {
  padding: 1.5rem 0 3rem;
}
.profile-card {
  margin-top: 0;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}
.profile-card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  flex: 0 0 auto;
}
.profile-card h3 {
  font-size: 1.08rem;
  color: var(--ink);
  margin-bottom: 0.25rem;
}
.profile-card p {
  color: var(--slate);
  font-size: 0.95rem;
  margin: 0;
}
.about__panel {
  background: var(--mist);
  border: 1px solid var(--line);
  border-left: 4px solid var(--teal-500);
  border-radius: var(--radius);
  padding: 1.8rem;
  box-shadow: var(--shadow-sm);
}
.about__panel > p { color: var(--ink); font-weight: 500; font-size: 1rem; }
.about__chips { list-style: none; display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.2rem; }
.about__chips li {
  background: var(--white);
  border: 1px solid var(--teal-100);
  color: var(--teal-800);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
}

/* ===== Cards ===== */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card__icon {
  display: grid; place-items: center;
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--teal-100);
  color: var(--teal-600);
  margin-bottom: 1.2rem;
}
.card h3 { font-size: 1.25rem; margin-bottom: 0.6rem; color: var(--ink); }
.card p { color: var(--slate); font-size: 0.98rem; }
.card p strong { color: var(--teal-700); }

/* ===== Agenda tabs ===== */
.tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
  margin-bottom: 2.4rem;
}
.tab {
  text-align: left;
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 1.1rem 1.3rem;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s;
}
.tab:hover { transform: translateY(-2px); }
.tab.is-active { border-color: var(--teal-500); box-shadow: 0 0 0 3px rgba(42,157,143,0.14); background: linear-gradient(180deg, #fff, var(--teal-100)); }
.tab__day { display: block; font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; color: var(--teal-700); }
.tab__date { display: block; font-size: 0.82rem; color: var(--slate); margin: 0.15rem 0 0.35rem; }
.tab__theme { display: block; font-size: 0.92rem; font-weight: 500; color: var(--ink); }

.agenda__focus { color: var(--slate); margin-bottom: 1.8rem; font-size: 1.02rem; }
.agenda__focus strong { color: var(--teal-700); }
.agenda.is-hidden { display: none; }

/* ===== Schedule ===== */
.schedule { list-style: none; display: flex; flex-direction: column; gap: 0.9rem; }
.slot {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 1.4rem;
  align-items: start;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 1.2rem 1.5rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.slot:hover { border-color: var(--teal-400); box-shadow: var(--shadow-sm); }
.slot__time {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--teal-600);
  font-size: 0.98rem;
  padding-top: 0.15rem;
  white-space: nowrap;
}
.slot__body h4 { font-size: 1.12rem; margin: 0.3rem 0 0.35rem; color: var(--ink); }
.slot__body p { color: var(--slate); font-size: 0.96rem; }
.slot__body p strong { color: var(--teal-700); }
.slot__tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal-700);
  background: var(--teal-100);
  padding: 0.22rem 0.6rem;
  border-radius: 999px;
}
.slot__tag--gold { color: #8a5d12; background: #f6e6c4; }
.slot--featured { border-color: var(--gold); box-shadow: 0 0 0 2px rgba(217,164,65,0.18); }
.slot--break { background: var(--mist); border-style: dashed; }
.slot--break .slot__body h4 { color: var(--teal-700); }
.slot--end { background: var(--teal-900); border-color: var(--teal-900); }
.slot--end .slot__time, .slot--end .slot__body h4 { color: var(--teal-100); }

/* ===== Speaker ===== */
.speaker-list { display: flex; flex-direction: column; gap: 1.6rem; }
.speaker {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 2.4rem;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.4rem;
  box-shadow: var(--shadow-sm);
}
.speaker__avatar {
  display: grid; place-items: center;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-500), var(--teal-800));
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 3rem;
  letter-spacing: 0.05em;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.speaker__avatar--photo { background: var(--teal-100); }
.speaker__avatar--photo img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.speaker__body h3 { font-size: 1.6rem; color: var(--ink); }
.speaker__role { color: var(--slate); margin: 0.4rem 0 1rem; }
.speaker__talk { font-size: 1.08rem; font-weight: 500; color: var(--teal-800); margin-bottom: 0.8rem; }
.speaker__talk .slot__tag { vertical-align: middle; margin-right: 0.5rem; }
.speaker__when { color: var(--slate); font-size: 0.95rem; }

/* ===== Audience ===== */
.audience { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.aud {
  border-left: 3px solid var(--teal-500);
  padding: 0.4rem 0 0.4rem 1.2rem;
}
.aud h3 { font-size: 1.15rem; color: var(--teal-800); margin-bottom: 0.4rem; }
.aud p { color: var(--slate); font-size: 0.95rem; }

/* ===== Venue ===== */
.venue { display: grid; grid-template-columns: 1fr 1.1fr; gap: 2.4rem; align-items: center; }
.venue__lead { font-size: 1.12rem; color: var(--slate); }
.venue__lead strong { color: var(--teal-700); }
.venue__highlights {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem 1.2rem;
  margin: 1.6rem 0;
}
.venue__highlights li {
  position: relative;
  padding-left: 1.6rem;
  color: var(--teal-800);
  font-weight: 500;
  font-size: 0.96rem;
}
.venue__highlights li::before {
  content: "";
  position: absolute; left: 0; top: 3px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--teal-100) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='11' viewBox='0 0 24 24' fill='none' stroke='%231c7268' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center / 11px no-repeat;
}
.venue__address {
  display: flex; align-items: center; gap: 0.5rem;
  color: var(--ink); font-weight: 600; font-size: 0.96rem;
  margin-bottom: 1.2rem;
}
.venue__address svg { color: var(--teal-600); flex-shrink: 0; }
.venue__feature { margin: 0; }
.venue__feature img {
  width: 100%; height: 100%; min-height: 300px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.venue__gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 1.4rem;
}
.venue__gallery figure { margin: 0; }
.venue__gallery img {
  width: 100%; height: 230px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.venue__gallery img:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

/* ===== CTA ===== */
.cta {
  background: radial-gradient(120% 140% at 50% 0%, var(--teal-700), var(--teal-900) 70%);
  color: var(--white);
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
  text-align: center;
}
.cta__inner { max-width: 720px; }
.cta h2 { font-size: clamp(1.7rem, 4.5vw, 2.6rem); }
.cta > .container > p, .cta__inner > p { color: #cfe6e1; }
.cta__inner > p { margin-top: 0.8rem; font-size: 1.05rem; }
.cta__form {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 0.8rem;
  margin: 2.2rem auto 0;
  text-align: left;
}
.cta__form input {
  padding: 0.85rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.08);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.96rem;
}
.cta__form input::placeholder { color: #aecbc6; }
.cta__form input:focus { outline: 2px solid var(--teal-400); background: rgba(255,255,255,0.14); }
.cta__form input[name="company"] { grid-column: 1 / -2; }
.cta__form .btn { grid-row: 1 / span 2; grid-column: 3; align-self: stretch; }
.cta__primary { margin-top: 1.8rem; }
.cta__primary .btn { background: var(--white); color: var(--teal-700); }
.cta__primary .btn:hover { background: var(--teal-100); }
.cta__or { margin-top: 1.4rem; font-size: 0.85rem; letter-spacing: 0.04em; color: #9ec6c0 !important; text-transform: uppercase; }
.cta__note { margin-top: 1.2rem; font-weight: 600; color: var(--teal-400) !important; }
.cta__alt { margin-top: 1.4rem; font-size: 0.95rem; }
.cta__alt a { color: var(--teal-400); font-weight: 600; text-decoration: underline; }

/* ===== Footer ===== */
.footer { background: var(--teal-900); color: #bcd6d1; }
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1.4fr;
  gap: 2rem;
  padding: 3rem 0 2.4rem;
}
.footer__brand .brand__text { color: var(--white); font-size: 1.3rem; }
.footer__brand .brand__text strong { color: var(--teal-400); }
.footer__brand p { margin-top: 0.6rem; max-width: 320px; }
.footer__col h4 { color: var(--white); font-size: 1rem; margin-bottom: 0.7rem; }
.footer__col p { margin-bottom: 0.3rem; font-size: 0.94rem; }
.footer__col a:hover { color: var(--teal-400); }
.footer__bar { border-top: 1px solid rgba(255,255,255,0.1); }
.footer__barinner {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.2rem 0;
  font-size: 0.82rem;
  color: #8fb3ad;
}
.footer__notice { max-width: 620px; text-align: right; }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .nav__links {
    position: fixed;
    inset: 72px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    padding: 0.5rem 6%;
    transform: translateY(-120%);
    transition: transform 0.28s ease;
    box-shadow: var(--shadow);
  }
  .nav__links.is-open { transform: translateY(0); }
  .nav__links a { padding: 0.9rem 0; border-bottom: 1px solid var(--line); }
  .nav__links .btn { margin: 0.8rem 0; text-align: center; }
  .nav__toggle { display: flex; }

  .about__grid { grid-template-columns: 1fr; gap: 1.2rem; }
  .cards { grid-template-columns: 1fr; }
  .tabs { grid-template-columns: 1fr; }
  .hero__stats { grid-template-columns: repeat(2, 1fr); gap: 1.6rem 1rem; }
  .speaker { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .speaker__talk .slot__tag { display: inline-block; margin-bottom: 0.4rem; }
  .audience { grid-template-columns: 1fr 1fr; }
  .venue { grid-template-columns: 1fr; gap: 1.6rem; }
  .venue__gallery { grid-template-columns: 1fr 1fr; }
  .cta__form { grid-template-columns: 1fr; }
  .cta__form input[name="company"], .cta__form .btn { grid-column: auto; grid-row: auto; }
  .footer__inner { grid-template-columns: 1fr; }
  .footer__barinner { flex-direction: column; }
  .footer__notice { text-align: left; }
}

@media (max-width: 520px) {
  .slot { grid-template-columns: 1fr; gap: 0.5rem; }
  .audience { grid-template-columns: 1fr; }
  .venue__highlights { grid-template-columns: 1fr; }
  .venue__gallery { grid-template-columns: 1fr; }
  .hero__meta { gap: 0.8rem 1.2rem; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto; transition: none !important; }
}

/* ===================================================================
   Sponsorship page
   =================================================================== */
.section__sub { margin-top: 0.8rem; color: var(--slate); font-size: 1.05rem; }

.btn--light { background: var(--white); color: var(--teal-700); }
.btn--light:hover { background: var(--teal-100); transform: translateY(-2px); }
.btn--ghost-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.45); }
.btn--ghost-light:hover { background: rgba(255,255,255,0.12); }

.sp-hero {
  background: radial-gradient(120% 120% at 80% -10%, var(--teal-700) 0%, var(--teal-900) 60%, #07211f 100%);
  color: var(--white);
  padding: clamp(3.2rem, 7vw, 5.5rem) 0 clamp(2.8rem, 6vw, 4.5rem);
  text-align: center;
}
.sp-hero__inner { max-width: 820px; }
.sp-hero h1 { font-size: clamp(2.3rem, 6vw, 3.6rem); font-weight: 800; margin: 1.2rem 0 0.6rem; }
.sp-hero__meta { color: #cfe6e1; font-size: 1.05rem; }
.sp-hero__portal { margin-top: 0.4rem; font-size: 0.95rem; color: #bcd6d1; }
.sp-hero__portal a { color: var(--teal-400); text-decoration: underline; text-underline-offset: 3px; }
.sp-hero__lead { margin: 1.6rem auto 0; max-width: 680px; font-size: 1.15rem; color: #e4f2ef; line-height: 1.5; }
.sp-hero__lead strong { color: var(--teal-400); }
.sp-hero__cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 2.2rem; }

/* Attendee profile */
.profile { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem; }
.profile__stat {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  display: flex; align-items: center; gap: 1.4rem;
}
.profile__num {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2.4rem, 6vw, 3.4rem);
  color: var(--teal-500); line-height: 1; flex-shrink: 0;
}
.profile__stat p { color: var(--slate); font-size: 1rem; }
.profile__focus { margin-top: 1.8rem; }
.profile__focus h4 { font-family: var(--font-display); font-size: 1.1rem; color: var(--ink); margin-bottom: 0.9rem; }
.profile__focus ul { list-style: none; display: flex; flex-wrap: wrap; gap: 0.7rem; }
.profile__focus li {
  background: var(--teal-100); color: var(--teal-800);
  font-weight: 600; font-size: 0.92rem;
  padding: 0.5rem 1rem; border-radius: 999px;
}

/* Tiers */
.tiers { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem; }
.tier {
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 1.9rem;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  break-inside: avoid;
}
.tier__img { margin: -1.9rem -1.9rem 1.4rem; }
.tier__img img { width: 100%; height: 180px; object-fit: cover; border-radius: var(--radius) var(--radius) 0 0; display: block; }
.tier--titanium, .tier--platinum { grid-column: 1 / -1; }
.tier--titanium {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(217,164,65,0.22), var(--shadow-sm);
  background: linear-gradient(180deg, #fff, #fffdf7);
}
.tier--platinum { border-color: var(--teal-400); }
.tier__head { display: flex; justify-content: space-between; align-items: flex-start; gap: 1.4rem; flex-wrap: wrap; }
.tier__rank {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--teal-600);
}
.tier--titanium .tier__rank { color: #b07d1a; }
.tier__head h3 { font-size: 1.35rem; margin-top: 0.35rem; color: var(--ink); }
.tier__priceblock { text-align: right; }
.tier__price { display: block; font-family: var(--font-display); font-weight: 800; font-size: 1.9rem; color: var(--teal-700); }
.tier--titanium .tier__price { color: #a9740f; }
.tier__avail {
  display: inline-block; margin-top: 0.35rem;
  font-size: 0.76rem; font-weight: 700; letter-spacing: 0.03em;
  color: var(--teal-700); background: var(--teal-100);
  padding: 0.25rem 0.7rem; border-radius: 999px;
}
.tier__avail--gold { color: #8a5d12; background: #f6e6c4; }
.tier__desc { margin: 1rem 0 0.4rem; color: var(--slate); font-weight: 500; }
.tier__list { list-style: none; margin: 1rem 0 0; display: flex; flex-direction: column; gap: 0.7rem; }
.tier__list li { position: relative; padding-left: 1.6rem; color: var(--slate); font-size: 0.96rem; }
.tier__list li::before {
  content: ""; position: absolute; left: 0; top: 3px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--teal-100) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='11' viewBox='0 0 24 24' fill='none' stroke='%231c7268' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center / 11px no-repeat;
}
.tier__list li strong { color: var(--teal-800); }
.tier--titanium .tier__list li::before { background-color: #f6e6c4; }
.tier__tracks {
  margin-top: 1.2rem; padding-top: 1.1rem; border-top: 1px dashed var(--line);
}
.tier__tracks > span { font-weight: 700; color: var(--ink); font-size: 0.92rem; }
.tier__tracks ul { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; margin-top: 0.6rem; }
.tier__tracks li { font-size: 0.9rem; color: var(--slate); padding-left: 1rem; position: relative; }
.tier__tracks li::before { content: "›"; position: absolute; left: 0; color: var(--teal-500); font-weight: 700; }

/* Add-ons */
.addons { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.addon {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.6rem; text-align: center;
  box-shadow: var(--shadow-sm); break-inside: avoid;
}
.addon__tag {
  display: inline-block; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  color: #8a5d12; background: #f6e6c4; padding: 0.2rem 0.6rem; border-radius: 999px;
}
.addon h4 { font-size: 1.1rem; margin: 0.9rem 0 0.6rem; color: var(--ink); }
.addon__price { font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; color: var(--teal-700); }

/* Floating download button */
.fab {
  position: fixed; right: 1.4rem; bottom: 1.4rem; z-index: 60;
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-display); font-weight: 600; font-size: 0.95rem;
  padding: 0.85rem 1.3rem; border: 0; border-radius: 999px; cursor: pointer;
  background: linear-gradient(135deg, var(--teal-500), var(--teal-700));
  color: var(--white); box-shadow: var(--shadow);
  transition: transform 0.15s;
}
.fab:hover { transform: translateY(-2px); }

@media (max-width: 900px) {
  .profile { grid-template-columns: 1fr; }
  .tiers { grid-template-columns: 1fr; }
  .tier__tracks ul { grid-template-columns: 1fr; }
  .addons { grid-template-columns: 1fr; }
  .fab span { display: none; }
  .fab { padding: 0.9rem; }
}

/* ===== Print / PDF ===== */
@media print {
  .no-print { display: none !important; }
  body { background: #fff; }
  .sp-hero { background: var(--teal-900) !important; -webkit-print-color-adjust: exact; print-color-adjust: exact; }
  .section, .cta { padding: 1.4rem 0 !important; }
  .section--alt, .cta { background: #fff !important; color: var(--ink) !important; }
  .cta h2, .cta__inner > p { color: var(--ink) !important; }
  .tier, .addon, .profile__stat { box-shadow: none !important; }
  .tier--titanium, .tier--platinum { grid-column: auto; }
  .tiers, .addons, .profile { display: block; }
  .tier, .addon, .profile__stat { margin-bottom: 1rem; page-break-inside: avoid; }
  a { color: var(--teal-700) !important; text-decoration: none; }
}

/* Inquiry form */
.inquire__grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 2rem; align-items: start; }
.inquire__aside h3 { font-size: 1.3rem; color: var(--ink); margin-bottom: 0.8rem; }
.inquire__aside p { color: var(--slate); margin-bottom: 0.4rem; }
.inquire__aside a { color: var(--teal-600); font-weight: 600; }
.inquire__aside a:hover { text-decoration: underline; }
.inquire__points { list-style: none; margin-top: 1.4rem; display: flex; flex-direction: column; gap: 0.6rem; }
.inquire__points li { position: relative; padding-left: 1.6rem; color: var(--slate); font-size: 0.95rem; }
.inquire__points li::before {
  content: ""; position: absolute; left: 0; top: 3px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--teal-100) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='11' viewBox='0 0 24 24' fill='none' stroke='%231c7268' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center / 11px no-repeat;
}
.inquire__form, .inquire__success {
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem;
  box-shadow: var(--shadow-sm);
}
.inquire__form .field-grid { margin-bottom: 1.3rem; }
.inquire__success { text-align: center; }
.inquire__success h3 { font-size: 1.4rem; color: var(--ink); margin-bottom: 0.6rem; }
.inquire__success p { color: var(--slate); max-width: 420px; margin-inline: auto; }

@media (max-width: 900px) {
  .inquire__grid { grid-template-columns: 1fr; }
}

/* While exporting via html2pdf, neutralise sticky/fixed chrome and hide UI-only bits */
.is-exporting .nav { position: static; }
.is-exporting .no-print { display: none !important; }

/* ===================================================================
   Registration page
   =================================================================== */
.reg-hero {
  background: radial-gradient(120% 120% at 80% -10%, var(--teal-700) 0%, var(--teal-900) 60%, #07211f 100%);
  color: var(--white);
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  text-align: center;
}
.reg-hero__inner { max-width: 760px; }
.reg-hero h1 { font-size: clamp(2.2rem, 6vw, 3.4rem); font-weight: 800; margin: 1.2rem 0 0.8rem; }
.reg-hero p { color: #cfe6e1; font-size: 1.05rem; }
.reg-hero strong { color: var(--teal-400); }

.reg { padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(3rem, 6vw, 5rem); background: var(--mist); }
.reg__grid { display: grid; grid-template-columns: 1fr 340px; gap: 2rem; align-items: start; }

/* Steps */
.reg-step {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem;
  margin-bottom: 1.4rem;
  box-shadow: var(--shadow-sm);
}
.reg-step legend {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--ink);
  padding: 0;
}
.reg-step__num {
  display: grid; place-items: center;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-500), var(--teal-700));
  color: var(--white);
  font-size: 0.95rem;
}
.reg-step__hint { color: var(--slate); font-size: 0.94rem; margin: 0.8rem 0 1.2rem; }

/* Pass selection */
.passes { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.4rem; }
.pass { display: block; cursor: pointer; }
.pass input { position: absolute; opacity: 0; pointer-events: none; }
.pass__inner {
  position: relative;
  display: block;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 1.2rem 3rem 1.2rem 1.3rem;
  transition: border-color 0.18s, box-shadow 0.18s, background 0.18s;
}
.pass:hover .pass__inner { border-color: var(--teal-400); }
.pass input:checked + .pass__inner {
  border-color: var(--teal-500);
  box-shadow: 0 0 0 3px rgba(42,157,143,0.16);
  background: linear-gradient(180deg, #fff, var(--teal-100));
}
.pass input:focus-visible + .pass__inner { outline: 2px solid var(--teal-600); outline-offset: 2px; }
.pass__head { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; flex-wrap: wrap; }
.pass__name { font-family: var(--font-display); font-weight: 600; font-size: 1.1rem; color: var(--ink); }
.pass__badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #8a5d12;
  background: #f6e6c4;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  margin-left: 0.4rem;
  vertical-align: middle;
}
.pass__price { font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; color: var(--teal-700); white-space: nowrap; }
.pass__price { display: inline-flex; align-items: baseline; gap: 0.45rem; }
.pass__price del { color: var(--slate); font-size: 0.95rem; font-weight: 600; }
.pass__price small { font-size: 0.7rem; font-weight: 600; color: var(--slate); }
.pass__desc { display: block; margin-top: 0.5rem; color: var(--slate); font-size: 0.95rem; }
.pass__desc strong { color: var(--teal-700); }
.pass__check {
  position: absolute;
  top: 1.3rem; right: 1.3rem;
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 2px solid var(--line);
  transition: 0.18s;
}
.pass input:checked + .pass__inner .pass__check {
  border-color: var(--teal-500);
  background: var(--teal-500) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center / 13px no-repeat;
}

/* Fields */
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field--full { grid-column: 1 / -1; }
.field > span { font-size: 0.9rem; font-weight: 600; color: var(--ink); }
.field > span small { font-weight: 400; color: var(--slate); }
.field i { color: #c0392b; font-style: normal; }
.field input, .field select, .field textarea {
  font-family: var(--font-body);
  font-size: 0.98rem;
  padding: 0.75rem 0.9rem;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--ink);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--teal-500);
  box-shadow: 0 0 0 3px rgba(42,157,143,0.14);
}
.field textarea { resize: vertical; }
.field--inline { flex: 1; }

/* Track + option rows */
.track { margin-top: 1.8rem; padding-top: 1.6rem; border-top: 1px dashed var(--line); }
.track h4, .reg-step h4 { font-family: var(--font-display); font-size: 1.05rem; color: var(--ink); margin-bottom: 0.3rem; }
.track__options { display: flex; flex-direction: column; gap: 0.7rem; margin-top: 0.6rem; }
.opt {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 0.96rem;
  color: var(--slate);
  transition: border-color 0.15s, background 0.15s;
}
.opt:hover { border-color: var(--teal-400); }
.opt input { margin-top: 0.2rem; accent-color: var(--teal-600); width: 17px; height: 17px; flex-shrink: 0; }
.opt:has(input:checked) { border-color: var(--teal-500); background: var(--teal-100); }
.opt strong { color: var(--ink); }

/* Dietary checkboxes */
.checks { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.7rem; margin: 0.8rem 0 1.2rem; }
.opt--check { padding: 0.7rem 0.9rem; }

/* Promo */
.promo { display: flex; align-items: flex-end; gap: 0.7rem; margin-top: 1.4rem; }
.promo .field { flex: 1; }
.promo .btn { white-space: nowrap; padding: 0.78rem 1.3rem; }
.promo__msg { margin-top: 0.7rem; font-size: 0.9rem; font-weight: 600; }
.promo__msg--ok { color: var(--teal-600); }
.promo__msg--err { color: #c0392b; }

/* Terms */
.terms {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem;
  margin-bottom: 1.4rem;
  box-shadow: var(--shadow-sm);
}
.terms h3 { font-size: 1.15rem; color: var(--ink); margin-bottom: 0.8rem; }
.terms p { color: var(--slate); font-size: 0.92rem; margin-bottom: 0.7rem; }
.terms strong { color: var(--teal-700); }
.terms__agree { margin-top: 1rem; }
.terms__agree span { color: var(--ink); font-size: 0.95rem; }

.btn--block { width: 100%; padding: 1rem; font-size: 1.05rem; }

.paypal-checkout {
  width: 100%;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border: 1px solid #e5b700;
  border-radius: var(--radius);
  background: #ffc439;
  color: #111820;
  font: inherit;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.paypal-checkout:hover {
  background: #f5b900;
  border-color: #d9a900;
  transform: translateY(-1px);
}
.paypal-checkout:focus-visible {
  outline: 3px solid rgba(0, 48, 135, 0.22);
  outline-offset: 2px;
}
.paypal-checkout:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}
.paypal-checkout strong {
  color: #003087;
  font-size: 1.08em;
}
.payment-trust {
  display: grid;
  justify-items: center;
  gap: 0.65rem;
  margin-top: 0.9rem;
  color: var(--slate);
  text-align: center;
}
.payment-trust__secure {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--teal-700);
  font-size: 0.84rem;
  font-weight: 600;
}
.payment-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem;
}
.payment-card {
  min-width: 48px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.45rem;
  border: 1px solid #d6dce4;
  border-radius: 4px;
  background: var(--white);
  color: #172b4d;
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1;
}
.payment-card--visa { color: #1434cb; font-style: italic; }
.payment-card--mastercard { color: #c84b00; }
.payment-card--amex { color: #006fcf; }
.payment-card--discover { color: #a44200; }
.payment-trust small {
  max-width: 520px;
  font-size: 0.76rem;
  line-height: 1.45;
}

/* Order summary */
.summary { position: sticky; top: 92px; }
.summary__card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem;
  box-shadow: var(--shadow-sm);
}
.summary__card h3 { font-size: 1.15rem; color: var(--ink); margin-bottom: 1.1rem; }
.summary__row { display: flex; justify-content: space-between; gap: 1rem; font-size: 0.96rem; color: var(--slate); padding: 0.55rem 0; }
.summary__row--discount { color: var(--teal-600); font-weight: 600; }
.summary__total {
  border-top: 1.5px solid var(--line);
  margin-top: 0.4rem;
  padding-top: 0.9rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--ink);
}
.summary__perks { list-style: none; margin: 1.2rem 0; display: flex; flex-direction: column; gap: 0.55rem; }
.summary__perks li { position: relative; padding-left: 1.6rem; font-size: 0.9rem; color: var(--slate); }
.summary__perks li::before {
  content: "";
  position: absolute; left: 0; top: 2px;
  width: 16px; height: 16px;
  background: var(--teal-100) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='11' viewBox='0 0 24 24' fill='none' stroke='%231c7268' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center / 11px no-repeat;
  border-radius: 50%;
}
.summary__secure {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.82rem; color: var(--slate);
  border-top: 1px solid var(--line); padding-top: 1rem;
}
.summary__secure svg { color: var(--teal-600); }

/* Confirmation overlay */
.confirm {
  position: fixed; inset: 0; z-index: 100;
  display: grid; place-items: center;
  background: rgba(7,33,31,0.6);
  backdrop-filter: blur(6px);
  padding: 1.5rem;
}
.confirm__card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.6rem 2.2rem;
  max-width: 460px;
  text-align: center;
  box-shadow: var(--shadow);
}
.confirm__close {
  position: absolute;
  top: 0.9rem; right: 1rem;
  width: 34px; height: 34px;
  border: 0;
  background: transparent;
  color: var(--slate);
  font-size: 1.6rem;
  line-height: 1;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.confirm__close:hover { background: var(--mist); color: var(--ink); }
.confirm__actions { display: flex; gap: 0.7rem; justify-content: center; flex-wrap: wrap; }
.confirm__icon {
  display: grid; place-items: center;
  width: 70px; height: 70px;
  margin: 0 auto 1.2rem;
  border-radius: 50%;
  background: var(--teal-100);
  color: var(--teal-600);
}
.confirm__card h2 { font-size: 1.7rem; color: var(--ink); margin-bottom: 0.7rem; }
.confirm__card p { color: var(--slate); margin-bottom: 1.6rem; }

/* ===================================================================
   Apply to Speak modal
   =================================================================== */
.modal {
  position: fixed; inset: 0; z-index: 120;
  display: flex; align-items: flex-start; justify-content: center;
  padding: clamp(1rem, 4vw, 3rem) 1rem;
  background: rgba(7,33,31,0.62);
  backdrop-filter: blur(6px);
  overflow-y: auto;
}
.modal__card {
  position: relative;
  width: min(720px, 100%);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  animation: modalIn 0.25s ease;
}
@keyframes modalIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
.modal__close {
  position: absolute;
  top: 0.9rem; right: 1rem;
  width: 36px; height: 36px;
  border: 0; border-radius: 50%;
  background: rgba(255,255,255,0.15);
  color: var(--white);
  font-size: 1.7rem; line-height: 1;
  cursor: pointer; z-index: 2;
  transition: background 0.15s;
}
.modal__close:hover { background: rgba(255,255,255,0.3); }
.modal__head {
  background: radial-gradient(120% 140% at 85% -20%, var(--teal-700), var(--teal-900) 70%);
  color: var(--white);
  padding: 2rem 2rem 1.6rem;
}
.modal__eyebrow {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--teal-400);
}
.modal__head h2 { font-size: clamp(1.6rem, 4vw, 2.1rem); font-weight: 800; margin: 0.4rem 0 0.3rem; }
.modal__meta { color: #cfe6e1; font-size: 0.95rem; }
.modal__deadline {
  display: inline-block; margin-top: 0.9rem;
  font-size: 0.82rem; font-weight: 700; letter-spacing: 0.03em;
  color: #8a5d12; background: #f6e6c4;
  padding: 0.3rem 0.8rem; border-radius: 999px;
}
.modal__intro { margin-top: 1rem; color: #dce9e6; font-size: 0.95rem; line-height: 1.55; }
.modal__intro strong { color: var(--teal-400); }
.modal__body { padding: 1.6rem; max-height: none; }
.modal__body .reg-step { box-shadow: none; border-color: var(--line); margin-bottom: 1.1rem; padding: 1.3rem; }
.modal__body .reg-step legend { font-size: 1.1rem; }
.modal__note {
  margin-top: 1rem; padding: 1rem 1.2rem;
  background: var(--mist); border-radius: var(--radius-sm);
  font-size: 0.86rem; color: var(--slate); line-height: 1.55;
}
.modal__note strong { color: var(--teal-700); }
.wordcount { display: block; margin-top: 0.35rem; font-size: 0.8rem; color: var(--slate); text-align: right; }
.wordcount--over { color: #c0392b; font-weight: 600; }

/* Speaker photo upload in the apply modal */
.apply-photo__row { display: flex; align-items: center; gap: 0.9rem; flex-wrap: wrap; margin-top: 0.4rem; }
.apply-photo__preview { width: 72px; height: 72px; object-fit: cover; border-radius: 50%; border: 1px solid var(--line); background: var(--mist); }
.apply-photo__btn { display: inline-flex; align-items: center; cursor: pointer; font-family: var(--font-display);
  font-weight: 600; font-size: 0.9rem; color: var(--teal-700); background: var(--teal-100);
  border: 1.5px solid var(--teal-400); padding: 0.55rem 1.1rem; border-radius: 999px; transition: background 0.15s, color 0.15s; }
.apply-photo__btn:hover { background: var(--teal-400); color: var(--white); }
.apply-photo__btn input[type="file"] { display: none; }
.apply-photo__clear { background: none; border: 0; color: #c0392b; font-weight: 600; font-size: 0.85rem; cursor: pointer; }
.apply-photo__clear:hover { text-decoration: underline; }

.modal__success { text-align: center; padding: 2rem 1rem 1rem; }
.modal__success h3 { font-size: 1.5rem; color: var(--ink); margin-bottom: 0.6rem; }
.modal__success p { color: var(--slate); margin-bottom: 1.5rem; max-width: 460px; margin-inline: auto; }

/* Call-for-speakers banner (below speakers) */
.speak-cta {
  margin-top: 2.4rem;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1.2rem;
  background: linear-gradient(135deg, var(--teal-700), var(--teal-900));
  color: var(--white);
  border-radius: var(--radius);
  padding: 1.8rem 2rem;
}
.speak-cta__text h3 { font-size: 1.3rem; margin-bottom: 0.3rem; }
.speak-cta__text p { color: #cfe6e1; font-size: 0.95rem; max-width: 520px; }
.speak-cta .btn { background: var(--white); color: var(--teal-700); white-space: nowrap; }
.speak-cta .btn:hover { background: var(--teal-100); }

/* Hero + footer apply links */
.hero__apply { margin-top: 1.4rem; font-size: 0.95rem; color: #cfe6e1; }
.hero__apply a { color: var(--teal-400); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; cursor: pointer; }
.footer__col a.apply-link { cursor: pointer; }

.pay-result {
  min-height: 62vh;
  display: grid;
  place-items: center;
  padding: 7rem 1rem 4rem;
  background: var(--mist);
}
.pay-result__card {
  max-width: 680px;
  padding: clamp(2rem, 5vw, 3rem);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  text-align: center;
}
.pay-result__card h1 {
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  color: var(--ink);
  margin-bottom: 0.8rem;
}
.pay-result__card p {
  color: var(--slate);
  margin: 0 auto 1.6rem;
  max-width: 520px;
}
.pay-result__card--success {
  border-top: 5px solid var(--teal-600);
}
.pay-result__card--error {
  border-top: 5px solid #c0392b;
}

@media (max-width: 900px) {
  .reg__grid { grid-template-columns: 1fr; }
  .summary { position: static; order: -1; }
  .field-grid { grid-template-columns: 1fr; }
  .checks { grid-template-columns: 1fr 1fr; }
  .speak-cta { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 520px) {
  .checks { grid-template-columns: 1fr; }
  .promo { flex-direction: column; align-items: stretch; }
  .pass__head { flex-direction: column; gap: 0.3rem; }
}
