/* Warsztaty Urologii Robotycznej 2026 — warstwa wizualna strony.
   Formularz, nazwy pól, identyfikatory i mechanizm wysyłki pozostają bez zmian. */
:root {
  --navy-950: #061523;
  --navy-900: #071b2f;
  --navy-800: #0d2d46;
  --cyan: #44d8e7;
  --cyan-dark: #078c9a;
  --paper: #f5f8fa;
  --white: #ffffff;
  --ink: #102536;
  --muted: #617382;
  --line: #dbe5ea;
  --soft-cyan: #eaf9fb;
  --radius: 12px;
  --shadow: 0 22px 70px rgba(7, 27, 47, .10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
  margin: 0 !important;
  padding: 0 !important;
  min-height: 100vh !important;
  background: var(--paper) !important;
  background-image: none !important;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }

.site-header {
  position: absolute;
  z-index: 20;
  inset: 0 0 auto;
  width: min(1180px, calc(100% - 48px));
  min-height: 88px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.16);
}
.brand { display: inline-flex; align-items: center; gap: 13px; color: inherit; text-decoration: none; }
.brand-mark {
  width: 44px; height: 44px; display: grid; place-items: center;
  border: 1px solid rgba(68,216,231,.72); border-radius: 50%;
  color: var(--cyan); font-size: 12px; font-weight: 800; letter-spacing: .08em;
}
.brand-copy { display: flex; flex-direction: column; align-items: center; line-height: 1.08; text-align: center; }
.brand-copy strong { font-size: 13px; letter-spacing: .01em; }
.brand-copy span { margin-top: 3px; color: rgba(255,255,255,.62); font-size: 10px; text-transform: uppercase; letter-spacing: .18em; }
.site-nav { display: flex; align-items: center; gap: 30px; font-size: 13px; font-weight: 650; }
.site-nav a { color: rgba(255,255,255,.78); text-decoration: none; transition: color .2s ease; }
.site-nav a:hover, .site-nav a:focus-visible { color: var(--white); }
.site-nav .nav-cta { padding: 11px 17px; border: 1px solid rgba(68,216,231,.58); border-radius: 999px; color: var(--white); }
.site-nav a:focus-visible, .button:focus-visible, .site-footer a:focus-visible { outline: 3px solid var(--cyan); outline-offset: 3px; }

.hero {
  position: relative;
  isolation: isolate;
  min-height: 720px;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, .88fr);
  align-items: center;
  gap: 60px;
  padding: 148px max(24px, calc((100vw - 1180px) / 2)) 96px;
  background:
    linear-gradient(115deg, rgba(68,216,231,.065) 0, transparent 36%),
    linear-gradient(145deg, var(--navy-950), var(--navy-900) 58%, #0d324c);
  color: var(--white);
}
.hero::before {
  content: ""; position: absolute; z-index: -1; inset: auto -8vw -30% 38%; height: 520px;
  background: radial-gradient(ellipse, rgba(68,216,231,.10), transparent 68%); transform: rotate(-8deg);
}
.hero-copy { max-width: 720px; }
.eyebrow { display: flex; align-items: center; gap: 11px; margin: 0 0 26px; color: var(--cyan); font-size: 12px !important; font-weight: 750; letter-spacing: .13em; text-transform: uppercase; text-align: left !important; }
.eyebrow span { width: 28px; height: 1px; background: currentColor; }
.hero h1 {
  margin: 0;
  padding: 0;
  max-width: 830px;
  color: var(--white);
  font-family: inherit !important;
  font-size: clamp(48px, 6.2vw, 86px) !important;
  font-weight: 720;
  line-height: .98;
  letter-spacing: -.055em;
  text-align: left;
  text-shadow: none;
}
.hero h1 em { color: var(--cyan); font-style: normal; font-weight: 300; }
.hero-lead { max-width: 660px; margin: 32px 0 0; color: rgba(255,255,255,.68); font-size: clamp(17px, 1.8vw, 21px) !important; line-height: 1.65; text-align: left !important; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 38px; }
.button {
  min-height: 52px; display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  padding: 0 23px; border: 1px solid transparent; border-radius: 6px;
  font-size: 14px; font-weight: 750; text-decoration: none; transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--cyan); color: var(--navy-950); }
.button-primary:hover { background: #6ee4ee; }
.button-secondary { border-color: rgba(255,255,255,.25); color: var(--white); background: rgba(255,255,255,.03); }
.button-secondary:hover { border-color: rgba(255,255,255,.48); background: rgba(255,255,255,.07); }

.hero-visual { position: relative; width: min(38vw, 450px); aspect-ratio: 1; justify-self: end; }
.orbital, .robot-core { position: absolute; border-radius: 50%; }
.orbital { z-index: 1; transform-origin: center; }
.orbital-one {
  inset: 4%; border: 1px solid rgba(68,216,231,.42);
}
.orbital-three {
  inset: 11%; border: 1px solid rgba(255,255,255,.13);
  box-shadow: inset 0 0 36px rgba(68,216,231,.025);
}
.orbital-two {
  inset: 18%; border: 1px dashed rgba(255,255,255,.20);
  transform: rotate(24deg);
}
.surgical-arms {
  position: absolute; z-index: 2; inset: 0; width: 100%; height: 100%;
  overflow: visible; pointer-events: none;
}
.surgical-arm {
  transform-box: view-box; transform-origin: 225px 225px;
  will-change: transform;
}
.arm-one { animation: arm-track-one 17.3s ease-in-out infinite; }
.arm-two { animation: arm-track-two 20.9s ease-in-out -6.4s infinite; }
.arm-three { animation: arm-track-three 15.7s ease-in-out -10.1s infinite; }
.arm-four { animation: arm-track-four 23.1s ease-in-out -3.8s infinite; }
.arm-link {
  fill: none; stroke: rgba(142,244,255,.58); stroke-width: 1;
  stroke-linecap: round; stroke-linejoin: round;
  filter: drop-shadow(0 0 4px rgba(68,216,231,.36));
}
.arm-mount {
  vector-effect: non-scaling-stroke;
  stroke: rgba(196,251,255,.88); stroke-width: 1;
  fill: var(--navy-900);
  filter: drop-shadow(0 0 5px rgba(68,216,231,.74));
}
.arm-mount-outer {
  fill: #8ef4ff;
  filter: drop-shadow(0 0 4px #8ef4ff) drop-shadow(0 0 12px rgba(68,216,231,.9));
  animation: arm-glow 2.8s ease-in-out infinite alternate;
}
.arm-mount-middle { fill: rgba(68,216,231,.34); }
.arm-mount-inner {
  fill: rgba(142,244,255,.78);
  filter: drop-shadow(0 0 6px rgba(68,216,231,.82));
}
.tool-stem, .tool-jaw {
  stroke: rgba(196,251,255,.9); stroke-width: 1;
  stroke-linecap: round; vector-effect: non-scaling-stroke;
  filter: drop-shadow(0 0 4px rgba(68,216,231,.54));
}
.tool-jaw {
  transform-box: view-box; transform-origin: 325px 225px;
}
.tool-jaw-one { animation: tool-jaw-one 6.1s ease-in-out infinite; }
.tool-jaw-two { animation: tool-jaw-two 6.1s ease-in-out infinite; }
.arm-two .tool-jaw { animation-duration: 7.3s; }
.arm-three .tool-jaw { animation-duration: 5.7s; }
.arm-two .tool-jaw { animation-delay: -1.3s; }
.arm-three .tool-jaw { animation-delay: -2.2s; }
.camera-light-beam {
  fill: url(#camera-light-gradient);
  filter: blur(2.3px) drop-shadow(0 0 7px rgba(68,216,231,.5));
  mix-blend-mode: screen;
  animation: camera-light-pulse 5.9s ease-in-out -1.7s infinite;
}
.camera-body {
  fill: var(--navy-900); stroke: rgba(196,251,255,.92); stroke-width: 1;
  stroke-linejoin: round; vector-effect: non-scaling-stroke;
  filter: drop-shadow(0 0 4px rgba(68,216,231,.58));
}
.camera-lens-halo {
  fill: rgba(68,216,231,.12);
  filter: drop-shadow(0 0 7px rgba(68,216,231,.7));
  animation: camera-light-pulse 5.9s ease-in-out -1.7s infinite;
}
.camera-lens {
  fill: #d8fcff; stroke: rgba(68,216,231,.95); stroke-width: .7;
  vector-effect: non-scaling-stroke;
  filter: drop-shadow(0 0 3px #8ef4ff) drop-shadow(0 0 8px rgba(68,216,231,.9));
}
@keyframes arm-track-one {
  0% { transform: rotate(215deg); }
  20% { transform: rotate(218deg); }
  43% { transform: rotate(232deg); }
  67% { transform: rotate(235deg); }
  84% { transform: rotate(227deg); }
  100% { transform: rotate(215deg); }
}
@keyframes arm-track-two {
  0% { transform: rotate(324deg); }
  17% { transform: rotate(318deg); }
  39% { transform: rotate(305deg); }
  62% { transform: rotate(308deg); }
  81% { transform: rotate(321deg); }
  100% { transform: rotate(324deg); }
}
@keyframes arm-track-three {
  0% { transform: rotate(37deg); }
  24% { transform: rotate(49deg); }
  42% { transform: rotate(55deg); }
  69% { transform: rotate(51deg); }
  86% { transform: rotate(35deg); }
  100% { transform: rotate(37deg); }
}
@keyframes arm-track-four {
  0% { transform: rotate(145deg); }
  21% { transform: rotate(142deg); }
  45% { transform: rotate(129deg); }
  64% { transform: rotate(125deg); }
  83% { transform: rotate(136deg); }
  100% { transform: rotate(145deg); }
}
@keyframes tool-jaw-one {
  0%, 31%, 61%, 100% { transform: rotate(0deg); }
  42%, 50% { transform: rotate(-26.5deg); }
}
@keyframes tool-jaw-two {
  0%, 31%, 61%, 100% { transform: rotate(0deg); }
  42%, 50% { transform: rotate(26.5deg); }
}
@keyframes camera-light-pulse {
  0%, 100% { opacity: .46; }
  42% { opacity: .82; }
  64% { opacity: .58; }
}
@keyframes arm-glow {
  from { opacity: .72; }
  to { opacity: 1; }
}
.robot-core {
  z-index: 3; inset: 31%; display: flex; flex-direction: column; align-items: center; justify-content: center;
  border: 1px solid rgba(68,216,231,.58); background: rgba(68,216,231,.06);
  box-shadow: inset 0 0 48px rgba(68,216,231,.06), 0 0 90px rgba(68,216,231,.05);
}
.robot-core span { color: var(--white); font-size: clamp(34px, 4.6vw, 58px); font-weight: 250; line-height: .9; letter-spacing: -.08em; }
.robot-core small { margin-top: 14px; color: var(--cyan); font-size: 10px; font-weight: 800; letter-spacing: .17em; }
.hero-visual p { position: absolute; right: -2px; bottom: 10%; margin: 0; color: rgba(255,255,255,.34); font-size: 10px !important; line-height: 1.75; text-align: right !important; text-transform: uppercase; letter-spacing: .18em; }

.event-facts {
  position: relative; z-index: 2;
  width: min(1180px, calc(100% - 48px)); margin: -48px auto 0;
  display: grid; grid-template-columns: repeat(2, 1fr);
  background: var(--white); box-shadow: var(--shadow); border-radius: var(--radius); overflow: hidden;
}
.event-facts article { min-height: 150px; display: grid; grid-template-columns: auto 1fr; gap: 20px; padding: 32px; border-right: 1px solid var(--line); }
.event-facts article:last-child { border-right: 0; }
.fact-number { color: var(--cyan-dark); font-size: 11px; font-weight: 850; letter-spacing: .08em; }
.event-facts small { display: block; margin-bottom: 8px; color: var(--muted); font-size: 11px; font-weight: 750; text-transform: uppercase; letter-spacing: .1em; }
.event-facts strong { display: block; color: var(--ink); font-size: 17px; line-height: 1.35; }
.event-facts p { margin: 8px 0 0; color: var(--muted); font-size: 13px !important; line-height: 1.45; text-align: left !important; }
.event-facts > article:nth-child(2) { border-right: 0; }
.event-facts .venue-fact {
  min-height: 390px; grid-column: 1 / -1; grid-template-columns: minmax(0, .9fr) minmax(480px, 1.1fr);
  gap: 0; padding: 0; border-top: 1px solid var(--line); border-right: 0;
}
.venue-copy { display: grid; grid-template-columns: auto 1fr; gap: 20px; padding: clamp(34px, 5vw, 58px); align-content: center; }
.venue-copy strong { max-width: 500px; font-size: clamp(22px, 2.5vw, 32px); line-height: 1.2; letter-spacing: -.03em; }
.venue-copy p { max-width: 500px; margin-top: 18px; font-size: 14px !important; line-height: 1.6; }
.venue-copy address { margin: 20px 0; color: var(--ink); font-size: 14px; font-style: normal; line-height: 1.55; }
.venue-links { display: flex; flex-wrap: wrap; gap: 12px; }
.venue-copy a {
  min-height: 48px; display: inline-flex; align-items: center; justify-content: center; gap: 16px; padding: 0 18px;
  border: 1px solid #b6c8d1; border-radius: 6px; color: var(--navy-900);
  font-size: 13px; font-weight: 760; text-decoration: none;
  transition: border-color .2s ease, background .2s ease;
}
.venue-copy a:hover { border-color: var(--cyan-dark); background: var(--soft-cyan); text-decoration: none; }
.venue-map { min-height: 390px; background: #d8e2e7; }
.venue-map iframe { display: block; width: 100%; height: 100%; min-height: 390px; border: 0; }

.program-section {
  width: min(1180px, calc(100% - 48px));
  margin: 120px auto 0;
}
.section-heading {
  margin-bottom: 38px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
}
.section-heading .eyebrow { margin-bottom: 15px; color: var(--cyan-dark); }
.section-heading h2, .hotel-copy h2 {
  margin: 0; color: var(--ink); font-size: clamp(36px, 5vw, 56px); line-height: 1; letter-spacing: -.05em;
}
.download-link, .hotel-link {
  min-height: 48px; display: inline-flex; align-items: center; gap: 16px; padding: 0 18px;
  border: 1px solid #b6c8d1; border-radius: 6px; color: var(--navy-900);
  font-size: 13px; font-weight: 760; text-decoration: none;
  transition: border-color .2s ease, background .2s ease;
}
.download-link:hover, .hotel-link:hover { border-color: var(--cyan-dark); background: var(--soft-cyan); }
.program-day {
  margin-top: 22px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--white); box-shadow: 0 15px 45px rgba(7,27,47,.055);
}
.program-day > header {
  min-height: 98px; display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 24px 28px; background: var(--navy-900); color: var(--white);
}
.program-day > header span { color: var(--cyan); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .14em; }
.program-day > header h3 { margin: 5px 0 0; color: var(--white); font-size: 25px; letter-spacing: -.03em; }
.program-day > header p { margin: 0; color: rgba(255,255,255,.66); font-size: 13px; }
.schedule-row { display: grid; grid-template-columns: 120px repeat(3, 1fr); border-top: 1px solid var(--line); }
.program-day > header + .schedule-row { border-top: 0; }
.schedule-row > time {
  padding: 22px 18px; color: var(--cyan-dark); font-size: 13px; font-weight: 820; font-variant-numeric: tabular-nums;
}
.procedure { min-width: 0; padding: 20px; border-left: 1px solid var(--line); }
.procedure small { display: block; margin-bottom: 10px; color: var(--muted); font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; }
.procedure strong { display: block; min-height: 38px; color: var(--ink); font-size: 14px; line-height: 1.35; }
.procedure p, .assistants p { margin: 14px 0 0; color: var(--muted); font-size: 12px; line-height: 1.45; }
.procedure b, .assistants b { color: var(--ink); }
.mobile-assistant { display: none; }
.assistants { background: #f8fafb; }
.assistants p { margin: 0; padding: 16px 20px; border-left: 1px solid var(--line); }
.schedule-break {
  display: grid; grid-template-columns: 120px 1fr; align-items: center;
  border-top: 1px solid #b9dfe3; background: var(--soft-cyan);
}
.schedule-break time {
  align-self: stretch; display: flex; align-items: center; padding: 16px 18px;
  color: var(--navy-900); font-size: 13px; font-weight: 820; font-variant-numeric: tabular-nums;
}
.schedule-break > div { padding: 15px 20px; border-left: 1px solid #b9dfe3; }
.schedule-break strong { color: var(--navy-900); font-size: 13px; }
.schedule-break p { margin: 4px 0 0; color: var(--muted); font-size: 12px !important; line-height: 1.45; text-align: left !important; }
.procedure-glossary {
  margin-top: 28px; padding: clamp(28px, 4vw, 46px);
  border: 1px solid var(--line); border-radius: var(--radius); background: var(--white);
  box-shadow: 0 15px 45px rgba(7,27,47,.055);
}
.glossary-heading .eyebrow { margin-bottom: 10px; color: var(--cyan-dark); }
.glossary-heading h3 { margin: 0; color: var(--ink); font-size: clamp(27px, 3.2vw, 38px); letter-spacing: -.035em; }
.procedure-glossary dl { margin: 28px 0 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.procedure-glossary dl > div { min-width: 0; padding: 0 26px; border-left: 1px solid var(--line); }
.procedure-glossary dl > div:first-child { padding-left: 0; border-left: 0; }
.procedure-glossary dl > div:last-child { padding-right: 0; }
.procedure-glossary dt { margin: 0 0 10px; color: var(--cyan-dark); font-size: 16px; font-weight: 850; letter-spacing: .08em; }
.procedure-glossary dd { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.6; }
.procedure-glossary dd strong { color: var(--ink); }

.hotel-section {
  width: min(1180px, calc(100% - 48px)); margin: 120px auto 0;
  display: grid; grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
  overflow: hidden; border-radius: var(--radius); background: var(--navy-900); box-shadow: var(--shadow);
}
.hotel-copy { padding: clamp(36px, 6vw, 70px); color: var(--white); }
.hotel-copy .eyebrow { margin-bottom: 18px; }
.hotel-copy h2 { color: var(--white); }
.hotel-lead { max-width: 520px; margin: 24px 0 0; color: rgba(255,255,255,.7); font-size: 16px; line-height: 1.65; }
.hotel-copy address { margin: 26px 0; color: var(--white); font-size: 14px; font-style: normal; line-height: 1.65; }
.hotel-copy ul { margin: 0 0 28px; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.14); }
.hotel-copy li { display: flex; justify-content: space-between; gap: 20px; padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,.14); color: rgba(255,255,255,.69); font-size: 13px; }
.hotel-copy li strong { color: var(--cyan); }
.hotel-links { display: flex; flex-wrap: wrap; gap: 12px; }
.hotel-link { border-color: rgba(255,255,255,.3); color: var(--white); }
.hotel-link:hover { border-color: var(--cyan); background: rgba(68,216,231,.08); }
.hotel-map { min-height: 590px; background: #d8e2e7; }
.hotel-map iframe { display: block; width: 100%; height: 100%; min-height: 590px; border: 0; }

.registration-intro { width: min(850px, calc(100% - 48px)); margin: 112px auto 30px; text-align: center; }
.registration-intro .eyebrow { justify-content: center; margin-bottom: 18px; }
.registration-intro h2 { margin: 0; color: var(--ink); font-size: clamp(34px, 5vw, 54px); letter-spacing: -.045em; }
.registration-intro > p:last-child { margin: 15px 0 0; color: var(--muted); font-size: 16px; }

/* Kontener i formularz — wyłącznie stylowanie istniejącej struktury. */
body > main > .container { width: min(980px, calc(100% - 32px)); max-width: none; margin: 0 auto 112px; padding: 0 !important; }
body > main > .container > .row { margin: 0; }
body > main > .container > .row > div { width: 100%; max-width: none; margin: 0; padding: 0; }
body > main > .container .card { border: 0; border-radius: var(--radius); overflow: visible; background: transparent; box-shadow: none; }
body > main > .container .card-body { padding: 0 !important; }
.form-container { padding: 0 !important; border-radius: var(--radius) !important; background: transparent !important; background-image: none !important; }
#form-app {
  padding: clamp(26px, 5vw, 64px) !important;
  border: 1px solid rgba(11,45,70,.09) !important;
  border-radius: var(--radius) !important;
  background: var(--white) !important;
  color: var(--ink) !important;
  box-shadow: var(--shadow) !important;
}
#form-app > fieldset.row { margin: 0; }
#form-app > fieldset > :nth-child(-n+5) { display: none; }
#form-app h1, #form-app h2, #form-app h3, #form-app h4, #form-app h5, #form-app h6, #form-app .legend {
  margin: 26px 0 10px; padding: 0; color: var(--ink); font-family: inherit !important; font-weight: 750; text-align: left; text-shadow: none;
}
#form-app h1 { font-size: 28px; }
#form-app h2 { font-size: 23px; letter-spacing: -.025em; }
#form-app p { margin: 5px 0 18px; color: var(--muted); font-size: 14px !important; line-height: 1.55; text-align: left !important; }
#form-app center { text-align: left; }
#form-app hr { margin: 30px 0; border: 0; border-top: 1px solid var(--line); opacity: 1; }
#form-app .form-group { margin-bottom: 20px; }
#form-app .form-label { margin: 0 0 8px !important; color: var(--ink); font-size: 13px !important; font-weight: 720; }
#form-app .form-control {
  width: 100%; height: 52px !important; padding: 0 15px !important;
  border: 1px solid #ccd9e0 !important; border-radius: 7px !important;
  background: #fbfcfd !important; color: var(--ink) !important; font-size: 16px !important;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
#form-app .form-control:hover { border-color: #a8bbc5 !important; }
#form-app .form-control:focus { border-color: var(--cyan-dark) !important; background: var(--white) !important; box-shadow: 0 0 0 4px rgba(68,216,231,.16) !important; outline: 0; }
#form-app .form-control[readonly] { background: var(--soft-cyan) !important; color: var(--navy-800) !important; font-size: 20px !important; font-weight: 800; }
#form-app .form-check { position: relative; min-height: 46px; margin: 0 0 8px; padding: 0; }
#form-app .form-check-input { position: absolute; opacity: 0; pointer-events: none; }
#form-app .form-check-label {
  width: 100%; min-height: 46px; display: flex; align-items: center;
  padding: 11px 14px 11px 43px; border: 1px solid var(--line); border-radius: 7px;
  background: #fbfcfd; color: #324756; font-size: 14px; line-height: 1.4; cursor: pointer;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
#form-app .form-check-label::before {
  content: ""; position: absolute; left: 15px; top: 50%; width: 16px; height: 16px;
  border: 1.5px solid #98abb6; border-radius: 50%; background: var(--white); transform: translateY(-50%);
}
#form-app input[type="checkbox"] + .form-check-label::before { border-radius: 4px; }
#form-app .form-check-input:checked + .form-check-label { border-color: var(--cyan-dark); background: var(--soft-cyan); color: var(--navy-900); box-shadow: inset 3px 0 0 var(--cyan-dark); }
#form-app .form-check-input:checked + .form-check-label::before { border: 5px solid var(--cyan-dark); }
#form-app input[type="checkbox"]:checked + .form-check-label::before { border-width: 1px; background: var(--cyan-dark); box-shadow: inset 0 0 0 4px var(--soft-cyan); }
#form-app .form-check-input:focus-visible + .form-check-label { outline: 3px solid rgba(68,216,231,.45); outline-offset: 2px; }
#form-app .btn {
  width: 100%; min-height: 58px; height: auto !important; padding: 15px 20px !important;
  border: 0 !important; border-radius: 7px !important; background: var(--navy-900) !important;
  color: var(--white) !important; font-size: 16px !important; font-weight: 780; text-shadow: none !important;
  box-shadow: 0 10px 28px rgba(7,27,47,.18); transition: transform .2s ease, background .2s ease !important;
}
#form-app .btn:hover, #form-app .btn:focus { background: var(--navy-800) !important; transform: translateY(-1px); }
#form-app .form-action { margin: 30px 0 8px; }
#form-app .has-error .form-control, #form-app .is-invalid { border-color: #c94242 !important; }
#form-app .alert { border-radius: 7px; color: var(--white); }
#form-app .snippet .btn { background: transparent !important; color: var(--cyan-dark) !important; box-shadow: none; border: 1px solid var(--cyan-dark) !important; }
#messages { margin-bottom: 16px; }
#progress { height: 4px; margin: 16px 0 0; background: var(--line); }
#bar { background: var(--cyan-dark); }

.site-footer {
  min-height: 170px; padding: 48px max(24px, calc((100vw - 1180px) / 2));
  display: grid; grid-template-columns: 1fr auto auto; gap: 40px; align-items: center;
  background: var(--navy-950); color: rgba(255,255,255,.64); font-size: 13px;
}
.site-footer p { margin: 0; font-size: 13px !important; text-align: left !important; }
.site-footer a { color: var(--white); text-decoration: none; }
.site-footer p a { color: var(--cyan); }

@media (max-width: 900px) {
  .site-header { width: min(100% - 36px, 1180px); }
  .site-nav { gap: 16px; }
  .site-nav > a:not(.nav-cta) { display: none; }
  .hero { min-height: 690px; grid-template-columns: 1fr; padding-top: 135px; padding-bottom: 110px; }
  .hero-copy { position: relative; z-index: 2; }
  .hero-visual { position: absolute; right: -130px; bottom: -60px; width: 450px; opacity: .58; }
  .event-facts { grid-template-columns: 1fr; margin-top: -38px; }
  .event-facts article { min-height: 115px; border-right: 0; border-bottom: 1px solid var(--line); }
  .event-facts article:last-child { border-bottom: 0; }
  .event-facts .venue-fact { grid-template-columns: 1fr; }
  .venue-map, .venue-map iframe { min-height: 360px; }
  .program-section, .hotel-section { width: calc(100% - 32px); margin-top: 86px; }
  .program-day { overflow-x: auto; }
  .schedule-row { grid-template-columns: 100px repeat(3, minmax(205px, 1fr)); min-width: 715px; }
  .schedule-break { grid-template-columns: 100px 1fr; }
  .program-day > header { position: sticky; left: 0; }
  .procedure-glossary dl { grid-template-columns: 1fr; }
  .procedure-glossary dl > div, .procedure-glossary dl > div:first-child, .procedure-glossary dl > div:last-child { padding: 20px 0; border-left: 0; border-top: 1px solid var(--line); }
  .procedure-glossary dl > div:first-child { padding-top: 0; border-top: 0; }
  .procedure-glossary dl > div:last-child { padding-bottom: 0; }
  .hotel-section { grid-template-columns: 1fr; }
  .hotel-map, .hotel-map iframe { min-height: 420px; }
  .registration-intro { margin-top: 84px; }
  .site-footer { grid-template-columns: 1fr; gap: 22px; }
}

@media (max-width: 560px) {
  .site-header { min-height: 76px; }
  .brand { gap: 10px; }
  .brand-copy strong { font-size: 10px; }
  .brand-copy span { margin-top: 2px; font-size: 8px; }
  .brand-mark { width: 38px; height: 38px; }
  .site-nav .nav-cta { padding: 9px 13px; font-size: 12px; }
  .hero { min-height: 650px; padding-left: 20px; padding-right: 20px; }
  .hero h1 { font-size: clamp(45px, 14vw, 64px) !important; }
  .hero-lead { font-size: 17px !important; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .button { width: 100%; }
  .hero-visual { right: -115px; width: 420px; }
  .event-facts { width: calc(100% - 28px); }
  .event-facts article { padding: 25px 22px; }
  .venue-copy { padding: 30px 22px; }
  .venue-copy strong { font-size: 24px; }
  .venue-map, .venue-map iframe { min-height: 320px; }
  .section-heading { align-items: stretch; flex-direction: column; }
  .download-link { width: 100%; justify-content: space-between; }
  .program-day { overflow: hidden; }
  .program-day > header { position: static; align-items: flex-start; flex-direction: column; gap: 8px; }
  .schedule-row { grid-template-columns: 1fr; min-width: 0; overflow: visible; }
  .schedule-row > time {
    padding: 13px 16px; border-bottom: 1px solid var(--line); background: var(--soft-cyan);
    font-size: 12px; letter-spacing: .04em;
  }
  .procedure { padding: 17px 16px; border-top: 1px solid var(--line); border-left: 0; }
  .schedule-row > time + .procedure { border-top: 0; }
  .procedure strong { min-height: 0; }
  .procedure .mobile-assistant { display: block; }
  .assistants { display: none; }
  .schedule-break { grid-template-columns: 1fr; }
  .schedule-break time { padding: 13px 16px 0; }
  .schedule-break > div { padding: 6px 16px 15px; border-left: 0; }
  .procedure-glossary { padding: 26px 20px; }
  .hotel-copy { padding: 36px 24px; }
  .hotel-map, .hotel-map iframe { min-height: 340px; }
  .registration-intro { width: calc(100% - 32px); }
  body > main > .container { width: calc(100% - 20px); }
  #form-app { padding: 24px 18px !important; }
  #form-app .col-6 { width: 100%; }
  #form-app .form-check-label { font-size: 13px; }
  .site-footer { padding: 44px 24px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; }
  .surgical-arm, .surgical-arm * { animation: none !important; }
  .arm-one { transform: rotate(225deg); }
  .arm-two { transform: rotate(315deg); }
  .arm-three { transform: rotate(45deg); }
  .arm-four { transform: rotate(135deg); }
  .orbital-two { transform: rotate(24deg); }
}
