:root {
  --bg-site: #fdfaf6;
  --terracotta: #c35b48;
  --gold: #002D74;
  --green: #458962;
  --charcoal: #2b2926;
  --blue: #002D74;
  --bluedark: #006bb8;
  --cream-strong: #fff7eb;
  --ink-soft: #6d6258;
  --line: rgba(43, 41, 38, 0.16);
  --shadow: 0 28px 70px rgba(43, 41, 38, 0.14);
  --container: min(1400px, calc(100% - 10vw));
  --nav-radius: 22px;
  --title-font: "Special Gothic Condensed One", "Marcellus", Georgia, serif;
  --mini-font: "Plus Jakarta Sans", sans-serif;
  --display-font: var(--mini-font);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg-site);
  color: var(--charcoal);
  font-family: var(--mini-font);
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 30;
  transform: translateY(-150%);
  border-radius: 4px;
  background: var(--green);
  color: var(--charcoal);
  padding: 0.8rem 1rem;
  font-family: var(--mini-font);
  font-weight: 700;
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

/* Site Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  padding-top: 0.8rem;
  color: var(--charcoal);
  pointer-events: none;
  transition: padding 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.site-header.is-scrolled {
  padding-top: 0.45rem;
}

.nav-shell {
  position: relative;
  width: calc(100% - 1.25rem);
  max-width: 1400px;
  min-height: 64px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.7rem;
  border-radius: var(--nav-radius);
  background: var(--charcoal);
  box-shadow: 0 18px 46px rgba(18, 21, 24, 0.2);
  padding: 0.45rem 0.85rem;
  pointer-events: auto;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.site-header.is-scrolled .nav-shell {
  background: var(--charcoal);
  box-shadow: 0 16px 38px rgba(18, 21, 24, 0.13);
}

.brand {
  position: relative;
  z-index: 1;
  width: clamp(260px, 30vw, 420px);
  max-width: calc(100vw - 7.25rem);
  height: 52px;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.menu-toggle {
  position: relative;
  z-index: 2;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border-radius: 12px;
  background: rgba(43, 41, 38, 0.95);
  margin-left: auto;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  display: block;
  background: #fffaf2;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.nav-panel {
  position: fixed;
  inset: calc(64px + 1.15rem) 0 0;
  z-index: 1;
  min-height: calc(100svh - 64px - 1.15rem);
  display: grid;
  align-content: center;
  gap: 0.35rem;
  padding: 2rem 6vw 4rem;
  background: rgba(43, 41, 38, 0.96);
  transform: translateX(100%);
  transition: transform 260ms ease;
}

.nav-panel.is-open {
  transform: translateX(0);
}

.nav-panel a,
.nav-contact-btn {
  min-height: 54px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--mini-font);
  font-size: 0.95rem;
  font-weight: 500;
  text-transform: uppercase;
}

.nav-contact-btn {
  width: 100%;
  background: none;
  padding: 0;
  cursor: pointer;
}

.nav-panel .nav-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: fit-content;
  min-width: 160px;
  justify-content: center;
  margin-top: 1rem;
  border: 3px solid rgba(69, 137, 98, 0.52);
  border-radius: 12px;
  background:
    linear-gradient(180deg, #3f815c 0%, #2a5f42 100%) padding-box,
    linear-gradient(180deg, rgba(126, 178, 145, 0.66), rgba(31, 74, 50, 0.92)) border-box;
  color: #fffaf2;
  padding: 0.72rem 1.45rem;
  font-size: 0.86rem;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    inset 0 -1px 0 rgba(0, 0, 0, 0.26),
    0 2px 4px rgba(0, 0, 0, 0.48);
  text-shadow: none;
  transform: none;
  transition: all 180ms ease;
}

.nav-panel .nav-cta::before {
  display: none;
}

.nav-panel .nav-cta:hover,
.nav-panel .nav-cta:focus-visible {
  background:
    linear-gradient(180deg, #4b946b 0%, #32704d 100%) padding-box,
    linear-gradient(180deg, rgba(147, 199, 165, 0.76), rgba(38, 91, 62, 0.95)) border-box;
  color: #fffaf2;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    inset 0 -1px 0 rgba(0, 0, 0, 0.24),
    0 4px 8px rgba(0, 0, 0, 0.48);
}

/* Register Hero */
.register-hero {
  position: relative;
  min-height: 65vh;
  min-height: 65svh;
  display: grid;
  align-items: center;
  isolation: isolate;
  background: #222222;
  color: #fffaf2;
  padding: 7.8rem 0 4.2rem;
  overflow: hidden;
}

.register-hero::before,
.register-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.register-hero::before {
  z-index: 1;
  background: rgba(0, 0, 0, 0.45);
}

.register-hero::after {
  z-index: 1;
  background:
    linear-gradient(to bottom, rgba(34, 34, 34, 0.6) 0%, transparent 12%, transparent 70%, rgba(34, 34, 34, 0.8) 92%, #222222 100%);
}

.register-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.register-hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  filter: grayscale(0.45);
}

.register-hero-inner {
  position: relative;
  z-index: 2;
  width: var(--container);
  margin: 0 auto;
  text-align: center;
  will-change: transform, opacity;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.65rem, 1.4vw, 0.95rem);
  width: fit-content;
  max-width: 100%;
  margin: 0 0 1rem;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #fffaf2;
  font-family: var(--mini-font);
  font-size: clamp(0.68rem, 0.95vw, 0.82rem);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: none;
  text-shadow: none;
}

.eyebrow-accent {
  color: #fffaf2;
}

.register-hero .eyebrow {
  color: #fffaf2;
  margin-bottom: 0.25rem;
}

.eyebrow::before {
  content: "";
  display: block;
  flex: 0 0 clamp(2.5rem, 8vw, 7rem);
  width: clamp(2.5rem, 8vw, 7rem);
  height: 1px;
  background: linear-gradient(90deg, transparent, #002D74);
}

.eyebrow::after {
  content: "";
  display: block;
  flex: 0 0 clamp(2.5rem, 8vw, 7rem);
  width: clamp(2.5rem, 8vw, 7rem);
  height: 1px;
  background: linear-gradient(90deg, #002D74, transparent);
}

h1,
h2 {
  margin-top: 0;
  line-height: 1.03;
  letter-spacing: 0;
  font-weight: 400;
}

h1 {
  width: fit-content;
  max-width: 100%;
  margin: 0 auto 1rem;
  font-family: var(--title-font);
  font-size: clamp(2rem, 6.2cqi, 4.8rem);
  font-weight: 400;
  text-align: center;
  text-transform: uppercase;
}

h1 > span {
  display: block;
  white-space: nowrap;
}

h1 .title-accent {
  color: var(--gold);
}

h2 {
  margin-bottom: 1rem;
  font-family: var(--display-font);
  font-size: clamp(1.8rem, 7cqi, 2.8rem);
}

.register-subtitle {
  max-width: 30ch;
  margin: 0 auto;
  color: rgba(255, 250, 242, 0.92);
  font-family: var(--mini-font);
  font-size: clamp(0.95rem, 2.5cqi, 1.2rem);
  font-weight: 100;
  line-height: 1.32;
}

/* Register Section */
.register-section {
  position: relative;
  z-index: 2;
  background: #222222;
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.register-container {
  width: var(--container);
  margin: 0 auto;
  max-width: 720px;
}

.register-card {
  position: relative;
  background: #141414;
  border: 1px solid rgba(255, 250, 242, 0.12);
  padding: clamp(1.5rem, 4vw, 2.5rem);
}

.register-header {
  text-align: center;
  margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
  padding-bottom: clamp(1.5rem, 4vw, 2rem);
  border-bottom: 1px solid rgba(255, 250, 242, 0.1);
}

.register-header .eyebrow {
  margin-bottom: 0.5rem;
}

.register-header h2 {
  color: #fffaf2;
  margin-bottom: 0.75rem;
}

.register-description {
  margin: 0;
  color: rgba(255, 250, 242, 0.72);
  font-family: var(--mini-font);
  font-size: clamp(0.9rem, 2cqi, 1rem);
  line-height: 1.5;
}

/* Form Styles */
.register-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 540px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group-full {
  grid-column: 1 / -1;
}

.form-group label {
  color: rgba(255, 250, 242, 0.85);
  font-family: var(--mini-font);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.form-group input {
  width: 100%;
  min-height: 52px;
  padding: 0.85rem 1rem;
  background: rgba(255, 250, 242, 0.04);
  border: 1px solid rgba(255, 250, 242, 0.14);
  border-radius: 4px;
  color: #fffaf2;
  font-family: var(--mini-font);
  font-size: 1rem;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.form-group input::placeholder {
  color: rgba(255, 250, 242, 0.38);
}

.form-group input:hover {
  border-color: rgba(255, 250, 242, 0.28);
}

.form-group input:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255, 250, 242, 0.06);
  box-shadow: 0 0 0 3px rgba(0, 45, 116, 0.15);
}

.form-group input:invalid:not(:placeholder-shown) {
  border-color: var(--gold);
}

.form-group input:focus:invalid {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(0, 45, 116, 0.15);
}

/* Consent */
.form-consent {
  margin-top: 0.5rem;
  padding: 1.25rem;
  background: rgba(255, 250, 242, 0.03);
  border: 1px solid rgba(255, 250, 242, 0.08);
  border-radius: 4px;
}

.consent-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.consent-checkbox input[type="checkbox"] {
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  min-height: auto;
  margin-top: 0.15rem;
  padding: 0;
  accent-color: var(--green);
  cursor: pointer;
  border-radius: 3px;
  transform: translateY(-1px);
}

.consent-checkbox label {
  color: rgba(255, 250, 242, 0.72);
  font-family: var(--mini-font);
  font-size: 0.88rem;
  line-height: 1.5;
  text-transform: none;
  letter-spacing: 0;
  cursor: pointer;
}

.consent-checkbox input[type="checkbox"]:focus + label {
  outline: 1px solid var(--gold);
  outline-offset: 2px;
}

/* Form Actions */
.form-actions {
  margin-top: 0.75rem;
}

.button {
  min-height: 48px;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  padding: 0.9rem 1.5rem;
  font-family: var(--mini-font);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.2;
  text-align: center;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  width: 100%;
  border: 3px solid rgba(69, 137, 98, 0.52);
  border-radius: 12px;
  background:
    linear-gradient(180deg, #3f815c 0%, #2a5f42 100%) padding-box,
    linear-gradient(180deg, rgba(126, 178, 145, 0.66), rgba(31, 74, 50, 0.92)) border-box;
  color: #fffaf2;
  padding: 0.72rem 1.45rem;
  font-size: 0.86rem;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    inset 0 -1px 0 rgba(0, 0, 0, 0.26),
    0 2px 4px rgba(0, 0, 0, 0.48);
}

.button-primary:hover,
.button-primary:focus-visible {
  background:
    linear-gradient(180deg, #4b946b 0%, #32704d 100%) padding-box,
    linear-gradient(180deg, rgba(147, 199, 165, 0.76), rgba(38, 91, 62, 0.95)) border-box;
  color: #fffaf2;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    inset 0 -1px 0 rgba(0, 0, 0, 0.24),
    0 4px 8px rgba(0, 0, 0, 0.48);
}

.button-submit {
  position: relative;
  overflow: hidden;
}

.button-submit.is-loading .button-text {
  opacity: 0;
}

.button-submit.is-loading .button-loader {
  opacity: 1;
}

.button-loader {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 180ms ease;
}

.button-loader::after {
  content: "";
  width: 20px;
  height: 20px;
  border: 2px solid rgba(43, 41, 38, 0.2);
  border-top-color: var(--charcoal);
  border-radius: 50%;
  animation: button-spin 0.7s linear infinite;
}

@keyframes button-spin {
  to {
    transform: rotate(360deg);
  }
}

/* Register Note */
.register-note {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 250, 242, 0.1);
  text-align: center;
}

.register-note p {
  margin: 0;
  color: rgba(255, 250, 242, 0.5);
  font-family: var(--mini-font);
  font-size: 0.82rem;
  line-height: 1.5;
}

/* Footer */
.site-footer {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-top: 1px solid rgba(255, 250, 242, 0.03);
  background: #0b0a09;
  color: #fffaf2;
  padding-top: clamp(4rem, 8vw, 7rem);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('../assets/images/bg1.webp');
  background-size: cover;
  background-position: center;
  filter: grayscale(1) brightness(0.22) contrast(1.34);
  pointer-events: none;
}

.site-footer::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: 
    linear-gradient(to right, rgba(11, 10, 9, 0.98) 0%, rgba(11, 10, 9, 0.9) 35%, rgba(11, 10, 9, 0.16) 100%),
    linear-gradient(to bottom, rgba(11, 10, 9, 0.98) 0%, rgba(11, 10, 9, 0.88) 25%, rgba(11, 10, 9, 0.18) 100%);
  pointer-events: none;
}

.footer-inner {
  position: relative;
  z-index: 2;
  width: var(--container);
  margin: 0 auto;
}

.footer-inner::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  width: min(104rem, 145vw);
  aspect-ratio: 5195 / 2887;
  transform: translate(-50%, -50%);
  background-image: url('../assets/images/map.webp');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.08;
  filter: grayscale(1) brightness(1.65) contrast(0.9);
  mix-blend-mode: screen;
  pointer-events: none;
}

/* External image masks removed to avoid file:// CORS errors. */

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  padding-bottom: clamp(4rem, 8vw, 7rem);
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.1fr 1.2fr 1.3fr;
    gap: clamp(3rem, 5vw, 6rem);
  }
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer-kicker {
  color: var(--green);
  font-family: var(--mini-font);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: -0.5rem;
}

.footer-logo-wrap {
  width: 200px;
  max-width: 100%;
  padding: 1px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.95;
}

.footer-description {
  color: rgba(255, 250, 242, 0.6);
  font-size: 0.88rem;
  line-height: 1.6;
  margin: 0;
  max-width: 38ch;
}

.footer-website {
  color: #fffaf2;
  font-family: var(--mini-font);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  width: fit-content;
  transition: opacity 180ms ease;
}

.footer-website:hover {
  opacity: 0.8;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: 0.5rem;
}

.footer-socials a {
  color: rgba(255, 250, 242, 0.4);
  font-family: var(--mini-font);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: color 180ms ease;
}

.footer-socials a:hover {
  color: var(--green);
}

.footer-title {
  color: #fffaf2;
  font-family: var(--mini-font);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0;
}

.footer-office-group,
.footer-links,
.footer-contact-group {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .footer-office-group,
  .footer-links,
  .footer-contact-group {
    grid-template-columns: 1fr 1fr;
    column-gap: 2.5rem;
  }
}

.footer-office-group .footer-title,
.footer-links-group .footer-title,
.footer-contact-group .footer-title,
.footer-contact-group > .contact-heading {
  grid-column: 1 / -1;
}

.footer-office {
  display: grid;
  gap: 0.35rem;
}

.footer-office strong {
  color: #fffaf2;
  font-family: var(--mini-font);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.25;
}

.footer-office p {
  color: rgba(255, 250, 242, 0.55);
  font-size: 0.82rem;
  line-height: 1.5;
  margin: 0;
}

.footer-links-group .footer-title {
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 0.85rem;
}

.footer-links a {
  color: rgba(255, 250, 242, 0.65);
  font-family: var(--mini-font);
  font-size: 0.88rem;
  transition: color 180ms ease;
}

.footer-links a:hover {
  color: #fffaf2;
}

/* Footer enquiries button - same style as footer links */
.footer-enquiries-btn {
  background: none;
  border: 0;
  padding: 0;
  color: rgba(255, 250, 242, 0.65);
  font-family: var(--mini-font);
  font-size: 0.88rem;
  transition: color 180ms ease;
  cursor: pointer;
  text-align: left;
}

.footer-enquiries-btn:hover {
  color: #fffaf2;
}

.footer-contact-group .contact-heading {
  color: var(--green);
  font-family: var(--mini-font);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.contact-topic {
  display: flex;
  flex-direction: column;
}

.contact-person {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.contact-name {
  color: #fffaf2;
  font-weight: 700;
  font-size: 0.95rem;
  margin: 0;
}

.contact-role {
  color: rgba(255, 250, 242, 0.4);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0.1rem 0 0.5rem 0;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.contact-links a {
  color: rgba(255, 250, 242, 0.55);
  font-size: 0.82rem;
  transition: color 180ms ease;
}

.contact-links a:hover {
  color: #fffaf2;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 250, 242, 0.05);
  padding: 2.5rem 0;
}

.footer-copyright {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

@media (min-width: 768px) {
  .footer-copyright {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-copyright p {
  color: rgba(255, 250, 242, 0.25);
  font-size: 0.72rem;
  margin: 0;
}

/* Form Success State */
.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 2rem;
  text-align: center;
}

.form-success.is-visible {
  display: flex;
}

.form-success-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(69, 137, 98, 0.15);
  border-radius: 50%;
  color: var(--green);
}

.form-success-icon svg {
  width: 32px;
  height: 32px;
}

.form-success h3 {
  margin: 0;
  color: #fffaf2;
  font-family: var(--display-font);
  font-size: 1.5rem;
}

.form-success p {
  margin: 0;
  color: rgba(255, 250, 242, 0.72);
  font-family: var(--mini-font);
  font-size: 0.95rem;
  line-height: 1.5;
  max-width: 360px;
}

/* Responsive Adjustments */
@media (max-width: 767px) {
  .register-hero {
    min-height: 55vh;
    min-height: 55svh;
    padding: 6.3rem 0 3.3rem;
  }

  .register-section {
    padding: 2rem 0 3rem;
  }

  .form-group input {
    min-height: 48px;
  }
}

@media (min-width: 1024px) {
  .nav-shell {
    justify-content: space-between;
  }

  .menu-toggle {
    display: none;
  }

  .nav-panel {
    position: relative;
    inset: auto;
    min-height: auto;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.35rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
    transform: none;
    transition: none;
  }

  .nav-panel a,
  .nav-contact-btn {
    min-height: 44px;
    border: 0;
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.85);
    font-family: var(--mini-font);
    font-size: 0.78rem;
    font-weight: 500;
    padding: 0 0.68rem;
    transition: color 180ms ease;
    white-space: nowrap;
  }

  .nav-contact-btn {
    background: none;
    cursor: pointer;
    text-transform: uppercase;
    display: flex;
    align-items: center;
  }

  .nav-panel a:hover,
  .nav-panel a:focus-visible,
  .nav-contact-btn:hover,
  .nav-contact-btn:focus-visible {
    background: transparent;
    color: var(--gold);
  }

  .nav-panel .nav-cta {
    margin-top: 0;
    min-width: 90px;
    padding: 0 0.68rem;
  }
}

/* Contact Modal */
.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(0px);
}

.contact-modal.is-active {
  opacity: 1;
  visibility: visible;
  backdrop-filter: blur(8px);
}

.contact-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 10, 9, 0.82);
}

.contact-modal-content {
  position: relative;
  width: 100%;
  max-width: 580px;
  max-height: 85vh;
  overflow-y: auto;
  background: #0b0a09;
  border: 1px solid rgba(255, 250, 242, 0.08);
  border-radius: 0;
  padding: 3.5rem 2.5rem;
  box-shadow: 
    0 30px 60px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(255, 250, 242, 0.05);
  transform: translateY(20px) scale(0.98);
  transition: transform 400ms cubic-bezier(0.34, 1.56, 0.64, 1);
  
  /* Hide scrollbar */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}

.contact-modal-content::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.contact-modal.is-active .contact-modal-content {
  transform: translateY(0) scale(1);
}

.contact-modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 250, 242, 0.04);
  color: rgba(255, 250, 242, 0.4);
  border: 1px solid rgba(255, 250, 242, 0.08);
  transition: all 240ms ease;
}

.contact-modal-close:hover {
  background: rgba(69, 137, 98, 0.12);
  color: var(--green);
  border-color: rgba(69, 137, 98, 0.3);
  transform: rotate(90deg);
}

.contact-modal-title {
  font-family: var(--title-font);
  font-size: clamp(2.25rem, 6vw, 3rem);
  color: #fffaf2;
  margin: 0 0 2.5rem 0;
  letter-spacing: -0.01em;
  text-align: center;
}

.contact-category {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 250, 242, 0.06);
}

.contact-category:last-child {
  border-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}

.contact-category-title {
  font-family: var(--mini-font);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--green);
  margin: 0 0 1.5rem 0;
  opacity: 0.9;
}

.contact-person-card {
  padding: 0.5rem 0;
}

.contact-person-card + .contact-person-card {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px dashed rgba(255, 250, 242, 0.04);
}

.contact-person-name {
  font-family: var(--mini-font);
  color: #fffaf2;
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0;
  letter-spacing: 0.01em;
}

.contact-person-role,
.contact-company {
  font-family: var(--mini-font);
  font-size: 0.82rem;
  color: rgba(255, 250, 242, 0.45);
  margin: 0.25rem 0 0 0;
}

.contact-person-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1rem;
}

.contact-person-links a {
  font-family: var(--mini-font);
  font-size: 0.9rem;
  color: rgba(255, 250, 242, 0.75);
  width: fit-content;
  transition: all 200ms ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-person-links a:hover {
  color: #fffaf2;
  transform: translateX(4px);
}

.contact-person-links a::before {
  content: "→";
  color: var(--green);
  font-size: 0.8rem;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 200ms ease;
}

.contact-person-links a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.floating-actions {
  position: fixed;
  inset: 50% 0 auto;
  z-index: 60;
  pointer-events: none;
}

.floating-action {
  --float-size: 64px;
  --float-expanded: clamp(210px, 18vw, 282px);
  position: fixed;
  top: 50%;
  width: var(--float-size);
  height: var(--float-size);
  display: flex;
  align-items: center;
  overflow: hidden;
  border: 3px solid rgba(0, 45, 116, 0.58);
  border-radius: 999px;
  background:
    linear-gradient(180deg, #002D74 0%, #002D74 100%) padding-box,
    linear-gradient(180deg, rgba(0, 45, 116, 0.76), rgba(0, 45, 116, 0.94)) border-box;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    inset 0 -1px 0 rgba(0, 0, 0, 0.26),
    0 18px 44px rgba(0, 0, 0, 0.32);
  color: #fffaf2;
  font-family: var(--mini-font);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  pointer-events: auto;
  text-transform: uppercase;
  transform: translateY(-50%) scale(0.9);
  opacity: 0;
  visibility: hidden;
  transition: 
    width 220ms ease, 
    border-color 220ms ease, 
    background 220ms ease, 
    box-shadow 220ms ease,
    opacity 400ms ease,
    visibility 400ms ease,
    transform 400ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.floating-actions.is-visible .floating-action {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) scale(1);
}

.floating-action-left {
  left: clamp(0.65rem, 1.6vw, 1.25rem);
}

.floating-action-right {
  right: clamp(0.65rem, 1.6vw, 1.25rem);
  flex-direction: row-reverse;
}

.floating-action:hover,
.floating-action:focus-visible {
  width: var(--float-expanded);
  background:
    linear-gradient(180deg, #002D74 0%, #002D74 100%) padding-box,
    linear-gradient(180deg, rgba(0, 45, 116, 0.86), rgba(0, 45, 116, 0.96)) border-box;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    inset 0 -1px 0 rgba(0, 0, 0, 0.24),
    0 22px 56px rgba(0, 0, 0, 0.4);
  outline: 0;
}

.floating-action-icon {
  flex: 0 0 calc(var(--float-size) - 6px);
  width: calc(var(--float-size) - 6px);
  height: calc(var(--float-size) - 6px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 180ms ease;
}

.floating-action-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.floating-action-label {
  min-width: max-content;
  padding: 0 1.25rem;
  opacity: 0;
  transform: translateX(-0.4rem);
  transition: opacity 160ms ease, transform 180ms ease;
}

.floating-action-right .floating-action-label {
  transform: translateX(0.4rem);
}

.floating-action:hover .floating-action-label,
.floating-action:focus-visible .floating-action-label {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 760px) {
  .floating-action {
    --float-size: 54px;
    --float-expanded: min(78vw, 232px);
    font-size: 0.68rem;
  }

  .floating-action-icon svg {
    width: 20px;
    height: 20px;
  }
}

/* Shared home-page header override */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  padding-top: 0;
  color: var(--charcoal);
  pointer-events: none;
  transition: padding 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.site-header.is-scrolled {
  padding-top: 0;
}

.event-topbar {
  width: 100%;
  min-height: clamp(88px, 8vw, 124px);
  max-height: 180px;
  display: grid;
  grid-template-columns: minmax(180px, 0.72fr) minmax(280px, 1.45fr) minmax(160px, 0.58fr);
  align-items: center;
  background: #ffffff;
  color: #061220;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.14);
  pointer-events: auto;
  overflow: hidden;
  transition: max-height 280ms ease, opacity 220ms ease, transform 280ms ease, box-shadow 220ms ease;
}

.event-topbar__brand,
.event-topbar__details,
.event-topbar__partners,
.event-topbar__actions {
  position: relative;
  min-height: clamp(78px, 6.7vw, 108px);
  padding: clamp(0.6rem, 1.3vw, 1rem) clamp(0.85rem, 1.7vw, 1.6rem);
}

.event-topbar__brand,
.event-topbar__partners,
.event-topbar__actions {
  display: flex;
  align-items: center;
  justify-content: center;
}

.event-topbar__details {
  display: grid;
  align-content: center;
  gap: 0.38rem;
  min-width: 0;
}

.event-topbar__details::before,
.event-topbar__partners::before,
.event-topbar__actions::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1px;
  height: clamp(62px, 5.8vw, 98px);
  background: rgba(7, 33, 64, 0.3);
  transform: translateY(-50%);
  pointer-events: none;
}

.event-topbar__brand img {
  width: auto;
  height: clamp(66px, 5.7vw, 92px);
  object-fit: contain;
}

.event-topbar__date,
.event-topbar__name {
  min-width: 0;
  max-width: 100%;
  margin: 0;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0;
}

.event-topbar__date {
  font-family: var(--mini-font);
  font-size: clamp(0.78rem, 0.24vw + 0.74rem, 0.96rem);
  font-weight: 800;
  line-height: 1.2;
  color: #071326;
}

.event-topbar__name {
  font-family: var(--mini-font);
  font-size: clamp(0.72rem, 0.18vw + 0.68rem, 0.84rem);
  font-weight: 800;
  line-height: 1.2;
  color: #1d2530;
}

.event-topbar__partners {
  gap: clamp(0.45rem, 0.9vw, 0.8rem);
  overflow: hidden;
}

.event-topbar__partners {
  display: none !important;
}

.event-topbar__partner {
  flex: 1 1 0;
  max-width: 190px;
  margin: 0;
  display: grid;
  justify-items: center;
  gap: 0.28rem;
  text-align: center;
}

.event-topbar__partner figcaption {
  color: #111827;
  font-family: var(--mini-font);
  font-size: clamp(0.56rem, 0.14vw + 0.54rem, 0.68rem);
  font-weight: 800;
  line-height: 1.1;
}

.event-topbar__partner img {
  width: clamp(116px, 8.4vw, 156px);
  height: clamp(54px, 4.4vw, 76px);
  object-fit: contain;
}

.event-topbar__actions {
  flex-direction: column;
  justify-content: center;
  gap: 0.5rem;
}

.event-topbar__cta,
.nav-desktop-links .nav-cta,
.nav-panel .nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  font-family: var(--mini-font);
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.event-topbar__cta {
  width: 100%;
  min-height: 36px;
  padding: 0.54rem 0.72rem;
  border: 0;
  background: linear-gradient(180deg, #f0ce35 0%, #caa414 100%);
  color: #141414;
  font-size: clamp(0.72rem, 0.14vw + 0.68rem, 0.84rem);
  font-weight: 800;
  letter-spacing: 0.03em;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.event-topbar__cta--booth {
  background: var(--bluedark);
  color: #ffffff;
}

.event-topbar__cta:hover,
.event-topbar__cta:focus-visible {
  background: linear-gradient(180deg, #f4d948 0%, #caa414 100%);
  color: #141414;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.26), 0 0 24px color-mix(in srgb, var(--blue) 24%, transparent);
  transform: translateY(-1px);
}

.event-topbar__cta--booth:hover,
.event-topbar__cta--booth:focus-visible {
  background: linear-gradient(180deg, color-mix(in srgb, var(--bluedark) 86%, #ffffff) 0%, var(--bluedark) 100%);
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.26), 0 0 24px color-mix(in srgb, var(--bluedark) 28%, transparent);
}

.nav-desktop-links .nav-cta:hover,
.nav-desktop-links .nav-cta:focus-visible,
.nav-panel .nav-cta:hover,
.nav-panel .nav-cta:focus-visible {
  background: #9f0f19;
  color: #ffffff;
}

.site-header.is-topbar-hidden .event-topbar,
.site-header.is-scrolled .event-topbar {
  max-height: 0;
  min-height: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-100%);
  box-shadow: none;
}

.nav-shell {
  width: calc(100% - 1.25rem);
  max-width: 1400px;
  min-height: 80px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 0.75rem 1.5rem;
  pointer-events: auto;
  transition: all 250ms ease;
}

.site-header.is-scrolled .nav-shell {
  background: rgba(20, 20, 20, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transform: translateY(0.7rem);
}

.brand {
  width: auto;
  max-width: none;
  height: auto;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  text-decoration: none;
}

.brand-text {
  display: inline-block;
  color: #ffffff;
  font-family: var(--title-font);
  font-size: clamp(1.2rem, 2.2vw, 1.65rem);
  font-weight: 700;
  letter-spacing: 1.5px;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-desktop-links {
  display: none;
  align-items: center;
  gap: clamp(0.55rem, 1vw, 1.05rem);
  margin-left: auto;
}

/* Shared surface treatment: keep site containers subtly rounded. */
:root {
  --container-corner-radius: 0.25rem;
}

body main :is(.section-inner, .card, article[class*="card"], div[class*="card"]:not([class*="number"]):not([class*="icon"]), li[class*="card"], figure[class*="card"], [class*="-panel"], [class*="-tile"], [class*="-box"], [class*="-frame"], [class*="-media"], [class*="-container"]) {
  border-radius: var(--container-corner-radius) !important;
}

.nav-link {
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--mini-font);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

.nav-link:hover,
.nav-link:focus-visible {
  color: #fff;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
}

.nav-desktop-links .nav-cta,
.nav-panel .nav-cta {
  min-width: 130px;
  min-height: 40px;
  padding: 0.65rem 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.menu-toggle {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(43, 41, 38, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  margin-left: auto;
}

.menu-toggle span {
  background: #141414;
}

.nav-panel {
  background: rgba(20, 20, 20, 0.96);
  color: #fffaf2;
}

@media (min-width: 1024px) {
  .nav-desktop-links {
    display: flex;
  }

  .menu-toggle,
  .nav-panel {
    display: none !important;
  }
}

@media (max-width: 992px) {
  .event-topbar {
    grid-template-columns: minmax(130px, 0.62fr) minmax(0, 1fr) auto;
    min-height: 0;
  }

  .event-topbar__brand,
  .event-topbar__details {
    min-height: 0;
    padding: 0.58rem clamp(0.75rem, 2.6vw, 1.1rem);
  }

  .event-topbar__brand {
    justify-content: flex-start;
  }

  .event-topbar__brand img {
    height: clamp(48px, 13vw, 68px);
  }

  .event-topbar__details {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-items: center;
    padding-top: 0.28rem;
    border-top: 1px solid rgba(7, 33, 64, 0.12);
  }

  .event-topbar__details::before,
  .event-topbar__partners,
  .event-topbar__actions {
    display: none;
  }

  .event-topbar .menu-toggle {
    grid-column: 3;
    grid-row: 1;
    display: flex;
    align-self: center;
    justify-self: end;
    margin-right: clamp(0.7rem, 2.6vw, 1rem);
  }

  .site-header.is-scrolled .event-topbar,
  .site-header.is-topbar-hidden .event-topbar {
    max-height: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.14);
  }

  .site-header.is-scrolled .nav-shell {
    transform: none;
  }

  .nav-shell {
    min-height: 0;
    padding: 0;
  }

  .nav-shell > .brand,
  .nav-shell > .menu-toggle {
    display: none;
  }

  .nav-panel {
    inset: var(--site-header-expanded-height, 118px) 0 0;
    min-height: calc(100svh - var(--site-header-expanded-height, 118px));
  }
}

@media (max-width: 640px) {
  .event-topbar__date {
    font-size: clamp(0.86rem, 3.4vw, 1.02rem);
    text-align: center;
  }

  .event-topbar__name {
    text-align: center;
  }
}

body {
  --site-header-expanded-height: 0px;
}

main {
  padding-top: var(--site-header-expanded-height, 0px);
}

/* Center the navbar links and remove the navbar-only brand/registration CTA. */
.nav-shell {
  justify-content: center !important;
}

.nav-shell > .brand,
.nav-desktop-links .nav-cta,
.nav-panel .nav-cta {
  display: none !important;
}

.nav-desktop-links {
  margin-left: 0 !important;
  justify-content: center !important;
}

@media (min-width: 993px) {
  .site-header.is-nav-detached .nav-shell {
    width: fit-content;
    max-width: min(1120px, calc(100% - 3rem));
    min-height: 58px;
    padding: 0.72rem clamp(1.8rem, 3vw, 3.25rem);
    background:
      linear-gradient(180deg, rgba(20, 20, 20, 0.94), rgba(7, 9, 11, 0.96)),
      linear-gradient(90deg, rgba(0, 149, 66, 0.18), rgba(0, 45, 116, 0.22));
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-top: 0;
    border-radius: 0 0 22px 22px;
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.38), inset 0 -1px 0 rgba(255, 255, 255, 0.08);
    clip-path: polygon(0 0, 100% 0, calc(100% - 18px) 100%, 18px 100%);
    transform: translateY(14px);
  }

  .site-header.is-nav-detached .nav-link {
    font-size: 0.88rem;
    letter-spacing: 0.08em;
  }
}

@media (min-width: 993px) {
  .site-header.is-nav-detached .nav-shell {
    --hud-green: rgb(0, 149, 66);
    --hud-blue: rgb(0, 45, 116);
    --hud-gold: rgb(0, 45, 116);
    max-width: min(1120px, calc(100% - 3rem));
    min-height: 56px;
    padding: 0.58rem clamp(1.35rem, 2.6vw, 2.7rem);
    background:
      linear-gradient(135deg, rgba(0, 149, 66, 0.18) 0 12%, transparent 12% 88%, rgba(0, 45, 116, 0.18) 88% 100%),
      repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 46px),
      linear-gradient(180deg, rgba(9, 13, 15, 0.98), rgba(5, 7, 10, 0.96));
    border-color: rgba(0, 149, 66, 0.42);
    border-radius: 0;
    clip-path: polygon(24px 0, calc(100% - 24px) 0, 100% 50%, calc(100% - 24px) 100%, 24px 100%, 0 50%);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.48), 0 0 24px rgba(0, 149, 66, 0.12), inset 0 -2px 0 rgba(0, 45, 116, 0.28);
  }

  .site-header.is-nav-detached .nav-desktop-links {
    gap: clamp(0.42rem, 0.9vw, 0.85rem);
  }

  .site-header.is-nav-detached .nav-link {
    padding: 0.42rem clamp(0.7rem, 1.2vw, 1rem);
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.035);
    font-size: 0.78rem;
    letter-spacing: 0.11em;
    clip-path: polygon(9px 0, 100% 0, calc(100% - 9px) 100%, 0 100%);
  }
}

@media (min-width: 993px) {
  html,
  body {
    background: #121212;
  }

  .site-header.is-nav-detached {
    background: transparent !important;
  }

  .site-header.is-nav-detached .event-topbar {
    display: none !important;
    height: 0 !important;
    min-height: 0 !important;
    max-height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }
}

/* Subtle 3D detached navbar, without bright HUD highlighting. */
@media (min-width: 993px) {
  .site-header.is-nav-detached .nav-shell {
    max-width: min(1120px, calc(100% - 3rem));
    min-height: 56px;
    padding: 0.62rem clamp(1.7rem, 3vw, 3rem);
    background:
      linear-gradient(180deg, rgba(36, 38, 39, 0.96) 0%, rgba(11, 12, 13, 0.98) 100%),
      linear-gradient(115deg, rgba(255, 255, 255, 0.08), transparent 34%, rgba(0, 0, 0, 0.18) 72%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-top: 0;
    border-radius: 0;
    clip-path: polygon(22px 0, calc(100% - 22px) 0, 100% 44%, calc(100% - 20px) 100%, 20px 100%, 0 44%);
    box-shadow:
      0 18px 36px rgba(0, 0, 0, 0.34),
      0 5px 0 rgba(0, 0, 0, 0.28),
      inset 0 1px 0 rgba(255, 255, 255, 0.12),
      inset 0 -10px 18px rgba(0, 0, 0, 0.22);
  }

  .site-header.is-nav-detached .nav-link {
    padding: 0.34rem clamp(0.62rem, 1.1vw, 0.95rem);
    border: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.8rem;
    letter-spacing: 0.09em;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    clip-path: none;
  }

  .site-header.is-nav-detached .nav-link:hover,
  .site-header.is-nav-detached .nav-link:focus-visible {
    border-color: transparent;
    background: transparent;
    color: #ffffff;
  }
}

@media (min-width: 993px) {
  .site-header.is-nav-detached .nav-shell {
    margin-top: 0 !important;
    transform: translateY(0) !important;
  }
}

@media (max-width: 992px) {
  .site-header {
    top: 0 !important;
    background: transparent !important;
  }

  .event-topbar {
    padding-bottom: 1rem !important;
    background: #ffffff !important;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 14px), calc(50% + 46px) calc(100% - 14px), calc(50% + 34px) 100%, calc(50% - 34px) 100%, calc(50% - 46px) calc(100% - 14px), 0 calc(100% - 14px));
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18), inset 0 -1px 0 rgba(0, 0, 0, 0.12);
  }
}

@media (max-width: 992px) {
  .event-topbar {
    padding-top: clamp(1.05rem, 4vw, 1.3rem) !important;
    padding-bottom: 0.72rem !important;
    clip-path: none !important;
    border-radius: 0 0 16px 16px;
  }

  .event-topbar::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 50%;
    z-index: 5;
    width: clamp(104px, 32vw, 132px);
    height: clamp(26px, 8vw, 34px);
    background: #050505;
    border-radius: 0 0 20px 20px;
    transform: translateX(-50%);
    box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.08), 0 3px 8px rgba(0, 0, 0, 0.28);
    pointer-events: none;
  }

  .event-topbar::after {
    content: "";
    position: absolute;
    left: calc(50% - 22px);
    right: calc(50% - 22px);
    top: clamp(10px, 3vw, 13px);
    z-index: 6;
    height: 3px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.13);
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.08);
    pointer-events: none;
  }
}

@media (min-width: 993px) {
  .site-header.is-nav-detached .nav-shell {
    width: fit-content !important;
    max-width: min(860px, calc(100% - 3rem)) !important;
    min-height: 62px !important;
    padding: 0.82rem clamp(2rem, 3.4vw, 3.5rem) 0.9rem !important;
    background: linear-gradient(180deg, #1b1b1b 0%, #050505 100%) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-top: 0 !important;
    border-radius: 0 0 34px 34px !important;
    clip-path: none !important;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.1), inset 0 -8px 18px rgba(0, 0, 0, 0.36) !important;
    transform: translateY(0) !important;
  }

  .site-header.is-nav-detached .nav-desktop-links {
    gap: clamp(0.55rem, 1.1vw, 1rem) !important;
    padding-top: 0.35rem;
  }

  .site-header.is-nav-detached .nav-link {
    padding: 0 !important;
    background: transparent !important;
    border: 0 !important;
    clip-path: none !important;
    color: rgba(255, 255, 255, 0.82) !important;
    font-size: 0.8rem !important;
    letter-spacing: 0.08em !important;
  }
}

/* Keep the top-state navbar in the header flow, away from hero content. */
@media (min-width: 993px) {
  .site-header:not(.is-nav-detached) .nav-shell {
    width: 100%;
    max-width: none;
    min-height: 58px;
    background: rgba(12, 12, 12, 0.88);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: none;
    transform: none !important;
  }

  .site-header:not(.is-nav-detached) .nav-desktop-links {
    gap: clamp(0.95rem, 1.65vw, 1.7rem) !important;
  }
}

.site-header.is-topbar-hidden,
.site-header.is-scrolled,
.site-header.past-hero {
  background: transparent;
}

.site-header.is-topbar-hidden .nav-link,
.site-header.is-scrolled .nav-link,
.site-header.past-hero .nav-link {
  color: rgba(255, 255, 255, 0.96);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.62);
}

@media (min-width: 993px) {
  .site-header.is-nav-detached .nav-link {
    color: rgba(255, 255, 255, 0.96) !important;
    font-weight: 700 !important;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.7) !important;
  }

  .site-header.is-nav-detached .nav-link:hover,
  .site-header.is-nav-detached .nav-link:focus-visible {
    color: #ffffff !important;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.28) !important;
  }
}

@media (max-width: 992px) {
  .site-header.is-topbar-hidden .event-topbar,
  .site-header.is-scrolled .event-topbar,
  .site-header.past-hero .event-topbar {
    display: none !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  .site-header.is-topbar-hidden .nav-shell,
  .site-header.is-scrolled .nav-shell,
  .site-header.past-hero .nav-shell {
    background: rgba(8, 10, 12, 0.96) !important;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.36) !important;
  }
}

/* Compact application pages: Register + Sponsor/Exhibit */
body.form-page {
  min-height: 100svh;
  background: #0e1116;
  color: #fffaf2;
  font-family: var(--mini-font);
}

body.form-page .site-header {
  position: sticky;
  top: 0;
  background: #0e1116;
}

body.form-page .site-header.is-scrolled {
  padding-top: 0.8rem;
}

body.form-page .site-header.is-scrolled .event-topbar {
  display: grid;
}

body.form-page .site-header.is-scrolled .nav-shell {
  transform: none;
  opacity: 1;
}

body.form-page .site-footer,
body.form-page .floating-actions,
body.form-page .contact-modal {
  display: none;
}

.form-main {
  min-height: calc(100svh - 170px);
  padding: clamp(2rem, 4vw, 3.4rem) 0 clamp(2.6rem, 5vw, 4rem);
  background:
    radial-gradient(circle at top left, rgba(0, 149, 66, 0.12), transparent 30rem),
    linear-gradient(180deg, #0e1116 0%, #111821 100%);
}

.application-section {
  width: min(1180px, calc(100% - 3rem));
  margin: 0 auto;
}

.application-card {
  border: 1px solid rgba(255, 250, 242, 0.18);
  background: #151c25;
  padding: clamp(1.3rem, 2.6vw, 2.25rem);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
}

.application-header {
  max-width: 760px;
  margin-bottom: clamp(1.1rem, 2vw, 1.7rem);
}

.application-kicker {
  margin: 0 0 0.32rem;
  color: var(--gold);
  font-family: var(--mini-font);
  font-size: clamp(0.7rem, 0.9vw, 0.82rem);
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.application-header h1 {
  width: auto;
  margin: 0 0 0.4rem;
  color: #fffaf2;
  font-family: var(--title-font);
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 400;
  line-height: 0.98;
  text-align: left;
  text-transform: uppercase;
}

.application-header p {
  margin: 0;
  color: rgba(255, 250, 242, 0.78);
  font-size: clamp(0.88rem, 1vw, 1rem);
  line-height: 1.38;
}

.application-form {
  display: grid;
  gap: 0.95rem;
}

.application-form .form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.75rem, 1.4vw, 1.05rem);
}

.application-form .form-group {
  gap: 0.36rem;
}

.application-form .form-group label,
.choice-group legend {
  color: rgba(255, 250, 242, 0.9);
  font-family: var(--mini-font);
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.application-form input,
.application-form select,
.application-form textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(255, 250, 242, 0.24);
  border-radius: 0;
  background: #262d36;
  color: #fffaf2;
  padding: 0.66rem 0.82rem;
  font-family: var(--mini-font);
  font-size: clamp(0.86rem, 1vw, 0.98rem);
  outline: none;
}

.application-form textarea {
  min-height: 96px;
  resize: vertical;
}

.application-form input::placeholder,
.application-form textarea::placeholder {
  color: rgba(255, 250, 242, 0.48);
}

.application-form input:focus,
.application-form select:focus,
.application-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(0, 45, 116, 0.16);
}

.application-form .input-error {
  border-color: var(--gold);
}

.form-errors {
  display: none;
  border: 1px solid rgba(0, 45, 116, 0.38);
  background: rgba(0, 45, 116, 0.1);
  color: #fffaf2;
  padding: 0.72rem 0.85rem;
  font-size: 0.84rem;
}

.form-errors ul {
  margin: 0;
  padding-left: 1.1rem;
}

.choice-group {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.75rem, 1.4vw, 1.05rem);
  border: 0;
  padding: 0;
  margin: 0;
}

.choice-group legend {
  grid-column: 1 / -1;
  margin-bottom: 0.1rem;
  font-size: clamp(0.9rem, 1.15vw, 1rem);
  text-transform: none;
}

.choice-card {
  position: relative;
  min-height: 84px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.68rem;
  align-items: start;
  border: 1px solid rgba(255, 250, 242, 0.22);
  background: #2a313b;
  padding: 0.82rem 0.95rem;
  color: #fffaf2;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.choice-card:has(input:checked) {
  border-color: var(--gold);
  background: rgba(0, 45, 116, 0.12);
  box-shadow: inset 0 0 0 1px rgba(0, 45, 116, 0.32);
}

.choice-card input {
  width: 13px;
  min-height: 13px;
  height: 13px;
  margin: 0.22rem 0 0;
  padding: 0;
  accent-color: var(--gold);
}

.choice-card strong {
  display: block;
  margin-bottom: 0.24rem;
  color: #fffaf2;
  font-size: clamp(0.9rem, 1.12vw, 1.04rem);
  line-height: 1.25;
}

.choice-card small {
  display: block;
  color: rgba(255, 250, 242, 0.74);
  font-size: 0.78rem;
  line-height: 1.35;
}

.sponsor-options .choice-card strong {
  font-size: clamp(0.95rem, 1.2vw, 1.12rem);
}

.sponsor-options .choice-card em {
  display: block;
  margin-top: 0.24rem;
  color: var(--gold);
  font-style: normal;
  font-size: clamp(1.15rem, 1.7vw, 1.45rem);
  font-weight: 900;
  line-height: 1.1;
}

body.sponsor-form-page .sponsor-options .choice-card em {
  color: #f0ce35;
}

.price-display {
  border-left: 3px solid var(--gold);
  background: rgba(0, 45, 116, 0.1);
  padding: 0.66rem 0.82rem;
  color: rgba(255, 250, 242, 0.86);
  font-weight: 700;
}

.policy-check {
  display: flex;
  gap: 0.68rem;
  align-items: flex-start;
  color: rgba(255, 250, 242, 0.82);
  font-size: 0.82rem;
  line-height: 1.42;
}

.policy-check input {
  flex: 0 0 14px;
  width: 14px;
  min-height: 14px;
  height: 14px;
  margin-top: 0.2rem;
  padding: 0;
  accent-color: var(--gold);
}

.policy-check a,
.application-contact a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.application-form .form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.15rem;
}

.application-form .button {
  width: auto;
  min-width: 150px;
  min-height: 44px;
  border-radius: 0;
  padding: 0.68rem 1.05rem;
  font-family: var(--mini-font);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.application-form .button-primary {
  border: 1px solid var(--green);
  background: #009542;
  color: #fffaf2;
  box-shadow: none;
}

.application-form .button-primary:hover,
.application-form .button-primary:focus-visible {
  background: #0aa64f;
  color: #fffaf2;
  box-shadow: none;
}

.application-form .button-secondary {
  border: 1px solid rgba(255, 250, 242, 0.24);
  background: transparent;
  color: rgba(255, 250, 242, 0.9);
}

.application-contact {
  margin: 1.25rem 0 0;
  color: #fffaf2;
  font-size: clamp(0.9rem, 1.15vw, 1rem);
}

body.report-request-page {
  min-height: 100svh;
  background: #0e1116;
  color: #fffaf2;
  font-family: var(--mini-font);
}

.report-request-page .application-card {
  max-width: 1180px;
  margin: 0 auto;
}

.report-download-form .report-form-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.75rem, 1.4vw, 1.05rem);
}

.report-download-form .report-field--industry {
  grid-column: 2 / 3;
}

.report-download-form .report-form-actions {
  justify-content: center;
  margin-top: 0.3rem;
}

.report-download-form .report-submit {
  min-width: 190px;
}

.report-request-page .form-success {
  border: 1px solid rgba(255, 250, 242, 0.18);
  background: #151c25;
}

@media (max-width: 900px) {
  .report-download-form .report-form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .report-download-form .report-field--industry {
    grid-column: 1 / -1;
    width: min(100%, calc(50% - 0.525rem));
    justify-self: center;
  }
}

@media (max-width: 720px) {
  .report-download-form .report-form-grid {
    grid-template-columns: 1fr;
  }

  .report-download-form .report-field--industry {
    width: 100%;
  }
}

.loading-overlay {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(14, 17, 22, 0.78);
  color: #fffaf2;
  font-weight: 800;
}

@media (max-width: 992px) {
  body.form-page .site-header.is-scrolled .event-topbar {
    display: none;
  }

  .form-main {
    padding-top: clamp(1.7rem, 8vw, 2.8rem);
  }
}

@media (max-width: 720px) {
  .application-section {
    width: min(100% - 1.1rem, 1400px);
  }

  .application-card {
    padding: 1rem;
  }

  .application-form .form-row,
  .choice-group {
    grid-template-columns: 1fr;
  }

  .application-form .form-actions {
    flex-direction: column;
  }

  .application-form .button {
    width: 100%;
  }
}

/* Keep subpage headers expanded and sticky instead of compacting on scroll. */
.site-header.is-topbar-hidden,
.site-header.is-scrolled,
.site-header.past-hero,
.site-header.is-nav-detached {
  position: fixed !important;
  inset: 0 0 auto !important;
  padding-top: 0 !important;
  opacity: 1 !important;
  transform: none !important;
  background: transparent !important;
}

.site-header.is-topbar-hidden .event-topbar,
.site-header.is-scrolled .event-topbar,
.site-header.past-hero .event-topbar,
.site-header.is-nav-detached .event-topbar,
body.form-page .site-header.is-scrolled .event-topbar {
  display: grid !important;
  min-height: clamp(88px, 8vw, 124px) !important;
  max-height: 180px !important;
  height: auto !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transform: none !important;
  background: #ffffff !important;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.14) !important;
}

@media (min-width: 993px) {
  .site-header.is-topbar-hidden .nav-shell,
  .site-header.is-scrolled .nav-shell,
  .site-header.past-hero .nav-shell,
  .site-header.is-nav-detached .nav-shell,
  body.form-page .site-header.is-scrolled .nav-shell {
    width: 100% !important;
    max-width: none !important;
    min-height: 58px !important;
    margin: 0 !important;
    padding: 0.75rem 1.5rem !important;
    border-top: 1px solid rgba(255, 255, 255, 0.06) !important;
    border-right: 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-left: 0 !important;
    border-radius: 0 !important;
    background: rgba(12, 12, 12, 0.88) !important;
    box-shadow: none !important;
    clip-path: none !important;
    transform: none !important;
  }
}

/* Shared refreshed subpage design. */
body.form-video-page {
  --bg-site: #020407;
  --blue: #078ff0;
  --gold: var(--blue);
  --green: rgb(0, 149, 66);
  --charcoal: #0e1116;
  --cream-strong: #ffffff;
  --line: rgba(255, 255, 255, 0.12);
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.38);
  background: #020407;
  color: #ffffff;
  font-family: var(--mini-font);
}

.form-video-page .form-main {
  min-height: 100svh;
  padding: 0;
  background:
    linear-gradient(180deg, #020407 0%, #07111b 46%, #020407 100%);
}

.form-video-page .register-hero {
  min-height: 64svh;
  padding-top: clamp(9rem, 14vw, 12rem);
  background: #020407;
}

.form-video-page .register-hero::before {
  background:
    linear-gradient(90deg, rgba(2, 4, 7, 0.92) 0%, rgba(2, 4, 7, 0.52) 46%, rgba(2, 4, 7, 0.86) 100%),
    rgba(0, 0, 0, 0.24);
}

.form-video-page .register-hero::after {
  background:
    linear-gradient(to bottom, rgba(2, 4, 7, 0.88) 0%, transparent 24%, rgba(2, 4, 7, 0.18) 58%, #020407 100%);
}

.form-video-page .register-hero-video {
  filter: saturate(0.78) contrast(1.06) brightness(0.66);
}

.form-video-page .eyebrow::before {
  background: linear-gradient(90deg, transparent, var(--blue));
}

.form-video-page .eyebrow::after {
  background: linear-gradient(90deg, var(--blue), transparent);
}

.form-video-page h1 .title-accent {
  color: var(--blue);
}

.form-video-page .register-subtitle {
  max-width: 46ch;
  color: rgba(255, 255, 255, 0.84);
}

.form-video-page .application-section {
  width: min(980px, calc(100% - 3rem));
  padding: clamp(2rem, 4vw, 4rem) 0 clamp(3rem, 6vw, 5.5rem);
}

.form-video-page.report-request-page .application-section {
  width: min(1180px, calc(100% - 3rem));
}

.form-video-page .application-card {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-left: 4px solid var(--blue);
  border-radius: 0;
  background:
    linear-gradient(135deg, rgba(7, 143, 240, 0.12) 0%, rgba(0, 149, 66, 0.06) 38%, transparent 72%),
    #0e1116;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.36);
}

.form-video-page .application-header {
  max-width: 760px;
  padding-bottom: clamp(1.1rem, 2vw, 1.55rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.form-video-page .application-kicker {
  color: var(--blue);
}

.form-video-page .application-header h1 {
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.form-video-page .application-header p,
.form-video-page .policy-check,
.form-video-page .choice-card small,
.form-video-page .application-contact {
  color: rgba(255, 255, 255, 0.72);
}

.form-video-page .application-form .form-row {
  gap: clamp(0.85rem, 1.5vw, 1.2rem);
}

.form-video-page .application-form .form-group label,
.form-video-page .choice-group legend {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
}

.form-video-page .application-form input,
.form-video-page .application-form select,
.form-video-page .application-form textarea {
  min-height: 54px;
  border: 1px solid rgba(7, 143, 240, 0.34);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.055);
  color: #ffffff;
}

.form-video-page .application-form input::placeholder,
.form-video-page .application-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.38);
}

.form-video-page .application-form input:hover,
.form-video-page .application-form select:hover,
.form-video-page .application-form textarea:hover {
  border-color: rgba(7, 143, 240, 0.62);
}

.form-video-page .application-form input:focus,
.form-video-page .application-form select:focus,
.form-video-page .application-form textarea:focus {
  border-color: var(--blue);
  background: rgba(7, 143, 240, 0.09);
  box-shadow: 0 0 0 3px rgba(7, 143, 240, 0.16);
}

.form-video-page .choice-group,
.form-video-page .choice-card,
.form-video-page .policy-check,
.form-video-page .price-display {
  border-radius: 0;
}

.form-video-page .choice-card {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.045);
}

.form-video-page .choice-card:hover,
.form-video-page .choice-card:focus-within,
.form-video-page .choice-card:has(input:checked) {
  border-color: rgba(7, 143, 240, 0.72);
  background: rgba(7, 143, 240, 0.1);
  box-shadow: inset 0 0 0 1px rgba(7, 143, 240, 0.24);
}

.form-video-page .choice-card input,
.form-video-page .policy-check input {
  accent-color: var(--blue);
}

.form-video-page .choice-card strong,
.form-video-page .application-contact a,
.form-video-page .policy-check a {
  color: #ffffff;
}

.form-video-page.sponsor-form-page .sponsor-options .choice-card em {
  color: #f0ce35;
}

.form-video-page .price-display {
  border-left-color: var(--blue);
  background: rgba(7, 143, 240, 0.1);
}

.form-video-page .application-form .button {
  border-radius: 0;
}

.form-video-page .application-form .button-primary,
.form-video-page .form-success .button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.045);
  color: #ffffff;
  box-shadow: none;
  letter-spacing: 0.08em;
}

.form-video-page .application-form .button-primary:hover,
.form-video-page .application-form .button-primary:focus-visible,
.form-video-page .form-success .button-secondary:hover,
.form-video-page .form-success .button-secondary:focus-visible {
  border-color: var(--blue);
  background: rgba(7, 143, 240, 0.14);
  color: #ffffff;
  box-shadow: 0 16px 38px rgba(7, 143, 240, 0.16);
}

.form-video-page .application-form .button-secondary {
  border-color: rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.82);
}

.form-video-page .form-errors {
  border-color: rgba(7, 143, 240, 0.38);
  background: rgba(7, 143, 240, 0.1);
}

.form-video-page .form-success {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.035);
}

.form-video-page .form-success-icon {
  border-radius: 0;
  background: rgba(7, 143, 240, 0.14);
  color: var(--blue);
}

.form-video-page .event-topbar,
.form-video-page .event-topbar__brand,
.form-video-page .nav-shell,
.form-video-page .nav-panel {
  border-radius: 0 !important;
}

@media (max-width: 720px) {
  .form-video-page .application-section {
    width: min(100% - 1.1rem, 34rem);
  }
}

/* Show the full site footer on register and sponsor pages only. */
body.register-form-page .site-footer,
body.sponsor-form-page .site-footer {
  display: block;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: #020407;
}

body.register-form-page .site-footer::before,
body.register-form-page .site-footer::after,
body.register-form-page .site-footer .footer-inner::before,
body.sponsor-form-page .site-footer::before,
body.sponsor-form-page .site-footer::after,
body.sponsor-form-page .site-footer .footer-inner::before {
  content: none !important;
  display: none !important;
}

body.register-form-page .site-footer .footer-grid,
body.sponsor-form-page .site-footer .footer-grid {
  display: grid !important;
  grid-template-columns:
    minmax(160px, 0.85fr)
    minmax(230px, 1.2fr)
    minmax(170px, 0.72fr)
    minmax(440px, 1.85fr) !important;
  align-items: start !important;
  gap: clamp(1.6rem, 2.2vw, 2.6rem) !important;
  padding-top: clamp(4rem, 7vw, 6rem) !important;
  padding-bottom: clamp(2.8rem, 5vw, 4.4rem) !important;
}

body.register-form-page .site-footer .footer-col,
body.sponsor-form-page .site-footer .footer-col {
  display: flex !important;
  min-width: 0 !important;
  flex-direction: column !important;
  gap: 1.1rem !important;
}

body.register-form-page .site-footer .footer-logo-wrap,
body.sponsor-form-page .site-footer .footer-logo-wrap {
  width: min(100%, 11rem) !important;
  border-radius: 0 !important;
}

body.register-form-page .site-footer .footer-description,
body.sponsor-form-page .site-footer .footer-description {
  max-width: 32ch !important;
}

body.register-form-page .site-footer .footer-office-group,
body.register-form-page .site-footer .footer-links,
body.register-form-page .site-footer .footer-contact-group,
body.sponsor-form-page .site-footer .footer-office-group,
body.sponsor-form-page .site-footer .footer-links,
body.sponsor-form-page .site-footer .footer-contact-group {
  display: grid !important;
  grid-template-columns: 1fr !important;
}

body.register-form-page .site-footer .footer-contact-grid,
body.sponsor-form-page .site-footer .footer-contact-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  align-items: stretch !important;
  min-width: 0 !important;
  border-left: 1px solid rgba(255, 255, 255, 0.22) !important;
}

body.register-form-page .site-footer .footer-contact-grid .footer-contact-group,
body.register-form-page .site-footer .footer-contact-grid .contact-topic,
body.sponsor-form-page .site-footer .footer-contact-grid .footer-contact-group,
body.sponsor-form-page .site-footer .footer-contact-grid .contact-topic {
  display: flex !important;
  min-width: 0 !important;
  min-height: 20rem !important;
  flex-direction: column !important;
  gap: 0.92rem !important;
  padding-left: clamp(0.85rem, 1vw, 1.25rem) !important;
  padding-right: clamp(0.75rem, 0.9vw, 1.1rem) !important;
  border-right: 1px solid rgba(255, 255, 255, 0.22) !important;
}

body.register-form-page .site-footer .footer-contact-grid .contact-heading,
body.sponsor-form-page .site-footer .footer-contact-grid .contact-heading {
  min-height: 2.75em !important;
  margin: 0 !important;
  color: rgba(255, 255, 255, 0.92) !important;
  font-family: var(--mini-font) !important;
  font-size: clamp(0.72rem, 0.82vw, 0.86rem) !important;
  font-weight: 900 !important;
  letter-spacing: 0.05em !important;
  line-height: 1.12 !important;
  text-transform: uppercase !important;
}

body.register-form-page .site-footer .contact-name,
body.sponsor-form-page .site-footer .contact-name {
  color: rgba(255, 255, 255, 0.94) !important;
  font-size: 0.82rem !important;
  font-weight: 900 !important;
  letter-spacing: 0.04em !important;
  line-height: 1.12 !important;
  text-transform: uppercase !important;
}

body.register-form-page .site-footer .contact-role,
body.sponsor-form-page .site-footer .contact-role {
  margin: 0.08rem 0 0.58rem !important;
  color: rgba(255, 255, 255, 0.52) !important;
  font-size: 0.76rem !important;
  font-weight: 900 !important;
  letter-spacing: 0.08em !important;
  line-height: 1.15 !important;
}

body.register-form-page .site-footer .contact-links,
body.sponsor-form-page .site-footer .contact-links {
  gap: 0.45rem !important;
  align-items: flex-start !important;
}

body.register-form-page .site-footer .contact-links a,
body.sponsor-form-page .site-footer .contact-links a {
  max-width: 100% !important;
  padding: 0 !important;
  color: rgba(255, 255, 255, 0.8) !important;
  font-size: 0.82rem !important;
  font-weight: 700 !important;
  line-height: 1.25 !important;
  overflow-wrap: anywhere !important;
}

body.register-form-page .site-footer .footer-bottom,
body.sponsor-form-page .site-footer .footer-bottom {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 1.5rem !important;
  border-top: 1px solid rgba(255, 255, 255, 0.17) !important;
  padding: 1.28rem 0 1.55rem !important;
}

body.register-form-page .site-footer .footer-copyright,
body.register-form-page .site-footer .footer-event-summary,
body.sponsor-form-page .site-footer .footer-copyright,
body.sponsor-form-page .site-footer .footer-event-summary {
  display: flex !important;
  margin: 0 !important;
  color: rgba(255, 255, 255, 0.58) !important;
  font-family: var(--mini-font) !important;
  font-size: clamp(0.72rem, 0.78vw, 0.82rem) !important;
  font-weight: 850 !important;
  letter-spacing: 0.02em !important;
  line-height: 1.25 !important;
}

body.register-form-page .site-footer .footer-event-summary,
body.sponsor-form-page .site-footer .footer-event-summary {
  flex-wrap: wrap !important;
  justify-content: flex-end !important;
  gap: 0.35rem 0.7rem !important;
  text-align: right !important;
  text-transform: uppercase !important;
}

body.register-form-page .site-footer .footer-event-summary span + span::before,
body.sponsor-form-page .site-footer .footer-event-summary span + span::before {
  content: "|" !important;
  margin-right: 0.7rem !important;
  color: rgba(255, 255, 255, 0.56) !important;
}

@media (max-width: 1023px) {
  body.register-form-page .site-footer .footer-grid,
  body.sponsor-form-page .site-footer .footer-grid {
    grid-template-columns: minmax(220px, 1fr) minmax(260px, 1.1fr) minmax(180px, 0.8fr) !important;
  }

  body.register-form-page .site-footer .footer-enquiries,
  body.sponsor-form-page .site-footer .footer-enquiries {
    grid-column: 1 / -1 !important;
  }

  body.register-form-page .site-footer .footer-contact-grid .footer-contact-group,
  body.register-form-page .site-footer .footer-contact-grid .contact-topic,
  body.sponsor-form-page .site-footer .footer-contact-grid .footer-contact-group,
  body.sponsor-form-page .site-footer .footer-contact-grid .contact-topic {
    min-height: 0 !important;
  }
}

@media (max-width: 900px) {
  body.register-form-page .site-footer .footer-grid,
  body.sponsor-form-page .site-footer .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  body.register-form-page .site-footer .footer-enquiries,
  body.register-form-page .site-footer .footer-organizer,
  body.sponsor-form-page .site-footer .footer-enquiries,
  body.sponsor-form-page .site-footer .footer-organizer {
    grid-column: 1 / -1 !important;
  }

  body.register-form-page .site-footer .footer-contact-grid,
  body.sponsor-form-page .site-footer .footer-contact-grid {
    grid-template-columns: 1fr !important;
    border-left: 0 !important;
  }

  body.register-form-page .site-footer .footer-contact-grid .footer-contact-group,
  body.register-form-page .site-footer .footer-contact-grid .contact-topic,
  body.sponsor-form-page .site-footer .footer-contact-grid .footer-contact-group,
  body.sponsor-form-page .site-footer .footer-contact-grid .contact-topic {
    padding: 1rem 0 1.15rem !important;
    border-top: 1px solid rgba(255, 255, 255, 0.16) !important;
    border-right: 0 !important;
  }

  body.register-form-page .site-footer .footer-contact-grid .contact-heading,
  body.sponsor-form-page .site-footer .footer-contact-grid .contact-heading {
    min-height: 0 !important;
  }

  body.register-form-page .site-footer .footer-bottom,
  body.sponsor-form-page .site-footer .footer-bottom {
    align-items: flex-start !important;
    flex-direction: column !important;
  }

  body.register-form-page .site-footer .footer-event-summary,
  body.sponsor-form-page .site-footer .footer-event-summary {
    justify-content: flex-start !important;
    text-align: left !important;
  }
}

@media (max-width: 640px) {
  body.register-form-page .site-footer .footer-inner,
  body.sponsor-form-page .site-footer .footer-inner {
    width: min(calc(100% - 2rem), 34rem) !important;
  }

  body.register-form-page .site-footer .footer-grid,
  body.sponsor-form-page .site-footer .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 2.4rem !important;
    justify-items: stretch !important;
    padding-top: 3.5rem !important;
  }

  body.register-form-page .site-footer .footer-col,
  body.register-form-page .site-footer .footer-organizer,
  body.register-form-page .site-footer .footer-office,
  body.register-form-page .site-footer .contact-topic,
  body.register-form-page .site-footer .contact-person,
  body.register-form-page .site-footer .contact-links,
  body.sponsor-form-page .site-footer .footer-col,
  body.sponsor-form-page .site-footer .footer-organizer,
  body.sponsor-form-page .site-footer .footer-office,
  body.sponsor-form-page .site-footer .contact-topic,
  body.sponsor-form-page .site-footer .contact-person,
  body.sponsor-form-page .site-footer .contact-links {
    align-items: flex-start !important;
    text-align: left !important;
  }
}

/* Minimal unified form surface for all event subpages. */
body.form-video-page {
  --form-panel: rgba(5, 11, 20, 0.86);
  --form-panel-soft: rgba(255, 255, 255, 0.045);
  --form-line: rgba(255, 255, 255, 0.14);
  --form-line-strong: rgba(7, 143, 240, 0.48);
  --form-muted: rgba(255, 255, 255, 0.66);
  --form-text: #ffffff;
  --form-accent: #078ff0;
  --form-accent-2: rgb(0, 149, 66);
}

body.form-video-page .application-section {
  width: min(1120px, calc(100% - clamp(1.25rem, 5vw, 5rem)));
  padding: clamp(2.6rem, 4.6vw, 4.5rem) 0 clamp(3rem, 5.5vw, 5.5rem);
}

body.form-video-page.report-request-page .application-section {
  width: min(1280px, calc(100% - clamp(1.25rem, 5vw, 5rem)));
}

body.form-video-page .application-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(220px, 0.56fr) minmax(0, 1fr);
  gap: clamp(1.4rem, 2.5vw, 2.6rem);
  align-items: start;
  border: 1px solid var(--form-line);
  border-left: 0;
  border-radius: 0;
  background:
    linear-gradient(135deg, rgba(7, 143, 240, 0.1), rgba(0, 149, 66, 0.045) 42%, transparent 76%),
    var(--form-panel);
  padding: clamp(1.25rem, 2.2vw, 2.1rem);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

body.form-video-page .application-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: linear-gradient(90deg, var(--form-accent), var(--form-accent-2), transparent);
  opacity: 0.95;
  pointer-events: none;
}

body.form-video-page .application-header {
  max-width: none;
  margin: 0;
  padding: 0 clamp(1rem, 2vw, 1.75rem) 0 0;
  border-right: 1px solid var(--form-line);
  border-bottom: 0;
}

body.form-video-page .application-kicker {
  margin-bottom: clamp(0.55rem, 1vw, 0.8rem);
  color: color-mix(in srgb, var(--form-accent) 84%, #ffffff);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
}

body.form-video-page .application-header h1 {
  margin-bottom: clamp(0.65rem, 1.2vw, 0.9rem);
  font-size: clamp(2.05rem, 3.3vw, 3.25rem);
  line-height: 1.02;
  text-transform: none;
}

body.form-video-page .application-header p,
body.form-video-page .application-contact,
body.form-video-page .policy-check {
  color: var(--form-muted);
  font-size: clamp(0.9rem, 0.95vw, 1rem);
  line-height: 1.55;
}

body.form-video-page .application-form,
body.form-video-page .form-success {
  min-width: 0;
}

body.form-video-page .application-form {
  gap: clamp(0.9rem, 1.35vw, 1.25rem);
}

body.form-video-page .application-form .form-row,
body.form-video-page .report-download-form .report-form-grid {
  gap: clamp(0.8rem, 1.15vw, 1.1rem);
}

body.form-video-page .application-form .form-group {
  gap: 0.42rem;
}

body.form-video-page .application-form .form-group label,
body.form-video-page .choice-group legend {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

body.form-video-page .application-form input,
body.form-video-page .application-form select,
body.form-video-page .application-form textarea {
  min-height: 50px;
  border: 1px solid var(--form-line);
  border-radius: 0;
  background: var(--form-panel-soft);
  color: var(--form-text);
  padding: 0.78rem 0.9rem;
  font-size: 0.96rem;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

body.form-video-page .application-form textarea {
  min-height: 110px;
}

body.form-video-page .application-form input:hover,
body.form-video-page .application-form select:hover,
body.form-video-page .application-form textarea:hover {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.065);
}

body.form-video-page .application-form input:focus,
body.form-video-page .application-form select:focus,
body.form-video-page .application-form textarea:focus {
  border-color: var(--form-line-strong);
  background: rgba(7, 143, 240, 0.075);
  box-shadow: 0 0 0 3px rgba(7, 143, 240, 0.14);
}

body.form-video-page .choice-group {
  gap: clamp(0.8rem, 1.15vw, 1.1rem);
}

body.form-video-page .choice-card {
  min-height: 0;
  align-items: start;
  border: 1px solid var(--form-line);
  background: rgba(255, 255, 255, 0.035);
  padding: clamp(0.86rem, 1.2vw, 1.1rem);
}

body.form-video-page .choice-card:hover,
body.form-video-page .choice-card:focus-within {
  border-color: rgba(7, 143, 240, 0.46);
  background: rgba(7, 143, 240, 0.065);
}

body.form-video-page .choice-card:has(input:checked) {
  border-color: rgba(7, 143, 240, 0.72);
  background:
    linear-gradient(90deg, rgba(7, 143, 240, 0.16), rgba(7, 143, 240, 0.05)),
    rgba(255, 255, 255, 0.035);
  box-shadow: inset 3px 0 0 var(--form-accent);
}

body.form-video-page .choice-card input,
body.form-video-page .policy-check input {
  accent-color: var(--form-accent);
}

body.form-video-page .choice-card strong {
  color: var(--form-text);
  font-size: clamp(0.92rem, 1vw, 1.04rem);
}

body.form-video-page .choice-card small {
  color: rgba(255, 255, 255, 0.62);
}

body.form-video-page.sponsor-form-page .sponsor-options .choice-card em {
  color: color-mix(in srgb, var(--form-accent-2) 74%, #ffffff);
  font-size: clamp(1.08rem, 1.45vw, 1.32rem);
}

body.form-video-page .price-display,
body.form-video-page .form-errors,
body.form-video-page .form-success {
  border-color: var(--form-line);
  background: rgba(255, 255, 255, 0.04);
}

body.form-video-page .application-contact {
  grid-column: 2;
  margin-top: 0;
}

body.form-video-page .application-form .form-actions,
body.form-video-page .report-download-form .report-form-actions {
  justify-content: flex-start;
  gap: 0.75rem;
  margin-top: clamp(0.25rem, 1vw, 0.65rem);
}

body.form-video-page .application-form .button,
body.form-video-page .form-success .button-secondary {
  min-height: 48px;
  border-radius: 0;
  padding: 0.76rem 1.1rem;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

body.form-video-page .application-form .button-primary,
body.form-video-page .form-success .button-secondary {
  border-color: rgba(7, 143, 240, 0.5);
  background:
    linear-gradient(90deg, rgba(7, 143, 240, 0.22), rgba(0, 149, 66, 0.12)),
    rgba(255, 255, 255, 0.04);
}

body.form-video-page .application-form .button-primary:hover,
body.form-video-page .application-form .button-primary:focus-visible,
body.form-video-page .form-success .button-secondary:hover,
body.form-video-page .form-success .button-secondary:focus-visible {
  border-color: rgba(7, 143, 240, 0.82);
  background:
    linear-gradient(90deg, rgba(7, 143, 240, 0.34), rgba(0, 149, 66, 0.18)),
    rgba(255, 255, 255, 0.06);
  box-shadow: 0 18px 42px rgba(7, 143, 240, 0.16);
}

body.form-video-page .application-form .button-secondary {
  border-color: rgba(255, 255, 255, 0.2);
  background: transparent;
}

@media (max-width: 920px) {
  body.form-video-page .application-card {
    grid-template-columns: 1fr;
  }

  body.form-video-page .application-header {
    padding-right: 0;
    padding-bottom: clamp(1rem, 3vw, 1.4rem);
    border-right: 0;
    border-bottom: 1px solid var(--form-line);
  }

  body.form-video-page .application-contact {
    grid-column: auto;
  }

  body.form-video-page .report-download-form .report-field--industry {
    grid-column: auto;
    width: 100%;
    justify-self: stretch;
  }
}

@media (max-width: 720px) {
  body.form-video-page .application-section,
  body.form-video-page.report-request-page .application-section {
    width: min(100% - 1rem, 36rem);
    padding-top: 1.5rem;
  }

  body.form-video-page .application-card {
    padding: 1rem;
  }

  body.form-video-page .application-form .form-row,
  body.form-video-page .choice-group,
  body.form-video-page .report-download-form .report-form-grid {
    grid-template-columns: 1fr;
  }

  body.form-video-page .application-form .form-actions,
  body.form-video-page .report-download-form .report-form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  body.form-video-page .application-form .button {
    width: 100%;
  }
}
