@font-face {
  font-family: "Niveau Grotesk";
  src: url("/assets/fonts/NiveauGroteskRegular.ttf") format("truetype");
  font-display: swap;
  font-weight: 400;
}

@font-face {
  font-family: "Niveau Grotesk";
  src: url("/assets/fonts/NiveauGroteskBold.ttf") format("truetype");
  font-display: swap;
  font-weight: 700;
}

:root {
  --navy: #142946;
  --blue: #0c5394;
  --blue-light: #eaf3fa;
  --red: #c93135;
  --yellow: #f5d347;
  --ink: #182331;
  --muted: #657180;
  --line: #d9e0e8;
  --surface: #ffffff;
  --surface-soft: #f5f7fa;
  --success: #16794b;
  --danger: #b4232b;
  --shadow: 0 18px 54px rgba(20, 41, 70, 0.11);
  --radius: 8px;
  font-family: "Niveau Grotesk", Arial, sans-serif;
  color: var(--ink);
  background: var(--surface);
  letter-spacing: 0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  line-height: 1.5;
}

button,
input,
select,
textarea {
  font: inherit;
  letter-spacing: 0;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: var(--blue);
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 9999;
  transform: translateY(-160%);
  padding: 10px 14px;
  background: var(--navy);
  color: #fff;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: relative;
  z-index: 60;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  background: var(--navy);
}

.site-header__inner,
.site-footer__inner,
.form-shell,
.route-shell {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header__inner {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  display: block;
  width: 214px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.site-nav a,
.site-footer a {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-footer a:hover,
.site-footer a:focus-visible {
  color: #8fc6ef;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  background: var(--navy);
}

.site-footer__inner {
  display: flex;
  min-height: 178px;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 34px 0;
}

.site-footer img {
  width: 176px;
  height: auto;
}

.site-footer p {
  max-width: 590px;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.5;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  color: var(--navy);
  line-height: 1.08;
}

h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(2.25rem, 5vw, 4.45rem);
}

h2 {
  margin: 0;
  font-size: 2rem;
}

.lead {
  max-width: 700px;
  margin: 20px 0 0;
  color: #455466;
  font-size: 1.16rem;
}

.form-intro {
  overflow: hidden;
  padding: 48px 0 0;
  background: var(--navy);
  color: #fff;
}

.form-intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
  align-items: center;
  gap: 64px;
  padding-bottom: 40px;
}

.form-intro__copy {
  min-width: 0;
}

.form-intro__grid > *,
.included__heading > div {
  min-width: 0;
}

.form-intro .eyebrow {
  margin-bottom: 12px;
  color: #8fc6ef;
}

.form-intro h1 {
  max-width: 680px;
  color: #fff;
  font-size: clamp(2.6rem, 4.4vw, 3.9rem);
}

.form-intro .lead {
  max-width: 650px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.12rem;
  line-height: 1.55;
}

.participant-note {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 62px;
  margin: 0;
  padding: 15px 0 17px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.participant-note p {
  min-width: 0;
  flex: 1 1 420px;
  margin: 0;
  overflow-wrap: anywhere;
  font-weight: 700;
}

.participant-note__label {
  flex: 0 0 auto;
  color: var(--yellow);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.participant-note a {
  color: #fff;
  font-weight: 700;
  text-decoration-color: rgba(255, 255, 255, 0.72);
  text-underline-offset: 3px;
}

.participant-note a:hover,
.participant-note a:focus-visible {
  color: #8fc6ef !important;
}

.included {
  padding: 24px 26px 26px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
}

.included__heading {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.included__mark {
  display: grid;
  width: 34px;
  height: 34px;
  max-width: 96px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 4px;
  background: var(--yellow);
  color: var(--navy);
  font-size: 1rem;
  font-weight: 700;
}

.included__eyebrow {
  margin: 0 0 2px;
  color: #8fc6ef;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
}

.included__title {
  margin: 0;
  color: #fff;
  font-size: 1.08rem;
  font-weight: 700;
}

.included ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 11px 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.included li {
  position: relative;
  padding-left: 20px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.93rem;
  line-height: 1.35;
}

.included li::before {
  position: absolute;
  left: 0;
  color: #59d797;
  content: "✓";
  font-weight: 700;
}

[data-hero-element] {
  box-sizing: border-box;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.participant-note [data-hero-element] {
  display: inline-block;
}

.participant-note__copy [data-hero-element] {
  display: inline;
  width: auto !important;
  min-width: 0;
  min-height: 0 !important;
  overflow: visible;
}

.participant-note__link-wrap {
  white-space: nowrap;
}

.form-section {
  padding: 48px 0 88px;
}

.form-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.trust-note {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 700;
  white-space: nowrap;
}

.trust-note span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.trust-note span + span {
  padding-left: 18px;
  border-left: 1px solid var(--line);
}

.trust-note b {
  color: var(--success);
  font-weight: 700;
}

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

#registration-form.form-layout-grid {
  position: relative;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  column-gap: 20px;
}

#registration-form.form-layout-grid > [data-field-width="full"] {
  grid-column: span 6;
}

#registration-form.form-layout-grid > [data-field-width="half"] {
  grid-column: span 3;
}

#registration-form.form-layout-grid > [data-field-width="third"] {
  grid-column: span 2;
}

#registration-form.form-layout-grid > [data-field-width="two_thirds"] {
  grid-column: span 4;
}

#registration-form.form-layout-grid > .section-divider,
#registration-form.form-layout-grid > .notice,
#registration-form.form-layout-grid > .submit-button {
  grid-column: 1 / -1;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 20px;
}

.form-grid--identity {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.form-grid--company {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.form-grid--address {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.form-grid > [data-field-width="full"] {
  grid-column: span 6;
}

.form-grid > [data-field-width="half"] {
  grid-column: span 3;
}

.form-grid > [data-field-width="third"] {
  grid-column: span 2;
}

.form-grid > [data-field-width="two_thirds"] {
  grid-column: span 4;
}

[data-field-active="false"],
[data-form-field][hidden] {
  display: none !important;
}

.registration-layout-preview .site-nav,
.registration-layout-preview .site-footer {
  pointer-events: none;
}

.registration-layout-preview [data-layout-editable="true"] {
  position: relative;
  isolation: isolate;
  min-height: 72px;
  padding-top: 42px;
  border-radius: 6px;
  outline: 1px dashed rgba(12, 83, 148, 0.34);
  outline-offset: 5px;
  transition: outline-color 120ms ease, box-shadow 120ms ease, transform 120ms ease;
}

.registration-layout-preview [data-layout-editable="true"]:hover,
.registration-layout-preview [data-layout-editable="true"].is-layout-selected {
  outline: 2px solid #0c5394;
  box-shadow: 0 8px 22px rgba(20, 41, 70, 0.1);
}

.registration-layout-preview [data-layout-editable="true"].is-layout-dragging {
  opacity: 0.2;
}

.registration-layout-preview [data-layout-editable="true"].is-layout-swap-target {
  z-index: 8;
  outline: 2px solid #0c5394;
  box-shadow: 0 0 0 4px rgba(12, 83, 148, 0.13), 0 10px 24px rgba(20, 41, 70, 0.12);
}

.registration-layout-preview [data-layout-editable="true"].is-layout-swap-target::after {
  position: absolute;
  z-index: 45;
  inset: 42px 8px 8px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(12, 83, 148, 0.35);
  border-radius: 5px;
  background: linear-gradient(90deg, rgba(12, 83, 148, 0.16) 0 50%, rgba(255, 255, 255, 0.9) 50% 100%);
  background-size: 200% 100%;
  color: #0c5394;
  content: "Ablegen oder kurz halten zum Tauschen";
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0;
  pointer-events: none;
  animation: layout-swap-hold 2s linear forwards;
}

.registration-layout-preview [data-layout-editable="true"].is-layout-swap-ready {
  outline-color: #23825f;
  box-shadow: 0 0 0 4px rgba(35, 130, 95, 0.16), 0 10px 24px rgba(20, 41, 70, 0.12);
}

.registration-layout-preview [data-layout-editable="true"].is-layout-swap-ready::after {
  border-color: rgba(35, 130, 95, 0.38);
  background: rgba(231, 248, 240, 0.94);
  color: #176447;
  content: "Positionen getauscht";
  animation: none;
}

@keyframes layout-swap-hold {
  from { background-position: 100% 0; }
  to { background-position: 0 0; }
}

.registration-layout-preview [data-layout-editable="true"].layout-actions-open {
  z-index: 120;
}

.registration-layout-preview #registration-form.form-layout-grid {
  grid-auto-rows: minmax(72px, auto);
}

.registration-layout-preview #team-partner-field.is-hidden,
.registration-layout-preview #billing-section.is-hidden {
  display: block !important;
}

.layout-grid-cell {
  z-index: 0;
  min-width: 0;
  min-height: 72px;
  border: 1px dashed rgba(12, 83, 148, 0.1);
  border-radius: 5px;
  pointer-events: none;
}

.layout-grid-drop-marker {
  z-index: 4;
  min-height: 72px;
  border: 2px solid #0c5394;
  border-radius: 6px;
  background: rgba(12, 83, 148, 0.09);
  box-shadow: 0 0 0 3px rgba(12, 83, 148, 0.1);
  pointer-events: none;
}

.registration-layout-preview [data-form-field],
.registration-layout-preview .section-divider,
.registration-layout-preview .notice,
.registration-layout-preview .submit-button {
  z-index: 2;
}

.registration-layout-preview [data-hero-element] {
  position: relative;
  min-width: 64px;
  padding: 0;
  border-radius: 4px;
  outline: 1px dashed rgba(143, 198, 239, 0.52);
  outline-offset: 2px;
  resize: both;
  overflow: hidden;
  cursor: text;
}

.registration-layout-preview .participant-note__copy [data-hero-element] {
  resize: none;
}

.registration-layout-preview .included__mark[data-hero-element] {
  min-width: 34px;
}

.registration-layout-preview .included__heading > div {
  max-width: calc(100% - 47px);
}

.registration-layout-preview .included__eyebrow,
.registration-layout-preview .included__title,
.registration-layout-preview .participant-note p {
  overflow: hidden;
}

.registration-layout-preview [data-hero-element]:hover,
.registration-layout-preview [data-hero-element].is-hero-selected {
  outline: 2px solid #f3c928;
  box-shadow: 0 0 0 4px rgba(243, 201, 40, 0.14);
}

.hero-format-toolbar {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 50%;
  display: flex;
  max-width: calc(100vw - 24px);
  min-height: 42px;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border: 1px solid #ccd7e3;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 12px 34px rgba(20, 41, 70, 0.24);
  transform: translateX(-50%);
}

.hero-format-toolbar[hidden] {
  display: none;
}

.hero-format-toolbar select,
.hero-format-toolbar input,
.hero-format-toolbar button {
  min-height: 30px;
  border: 1px solid #ccd7e3;
  border-radius: 4px;
  background: #fff;
  color: #142946;
  font: 700 12px/1 Inter, Arial, sans-serif;
}

.hero-format-toolbar select {
  width: 112px;
  padding: 0 7px;
}

.hero-format-toolbar label {
  display: grid;
  grid-template-columns: auto 52px;
  align-items: center;
  gap: 4px;
  color: #526173;
  font: 700 10px/1 Inter, Arial, sans-serif;
}

.hero-format-toolbar label input[type="number"] {
  width: 52px;
  padding: 0 5px;
}

.hero-format-toolbar .hero-color-control {
  grid-template-columns: auto 32px;
}

.hero-format-toolbar input[type="color"] {
  width: 32px;
  padding: 2px;
}

.hero-format-toolbar button {
  width: 30px;
  padding: 0;
  cursor: pointer;
}

.hero-format-toolbar button.is-active {
  border-color: #0c5394;
  background: #e8f2fb;
  color: #0c5394;
}

.registration-layout-preview [data-layout-editable="true"].is-layout-drop-before {
  box-shadow: -7px 0 0 #f3c928;
}

.registration-layout-preview [data-layout-editable="true"].is-layout-drop-after {
  box-shadow: 7px 0 0 #f3c928;
}

.layout-field-toolbar {
  position: absolute;
  z-index: 30;
  top: 5px;
  right: 5px;
  left: 5px;
  display: flex;
  min-height: 30px;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 4px 5px;
  border: 1px solid #d8e1eb;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 4px 12px rgba(20, 41, 70, 0.08);
}

.layout-field-drag {
  display: inline-flex;
  min-width: 31px;
  min-height: 27px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 4px;
  background: transparent;
  color: #536579;
  cursor: grab;
  font-size: 1rem;
  line-height: 1;
  touch-action: none;
  user-select: none;
}

.layout-field-drag:active {
  cursor: grabbing;
}

.layout-field-widths {
  display: inline-flex;
  overflow: hidden;
  border: 1px solid #cbd6e2;
  border-radius: 4px;
}

.layout-field-controls {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.layout-field-actions {
  position: relative;
}

.layout-field-actions-trigger {
  display: inline-flex;
  width: 29px;
  min-width: 29px;
  min-height: 29px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid #cbd6e2;
  border-radius: 4px;
  background: #fff;
  color: #142946;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1;
}

.layout-field-actions-trigger:hover,
.layout-field-actions-trigger[aria-expanded="true"] {
  border-color: #0c5394;
  background: #edf5fc;
}

.layout-field-actions-menu {
  position: absolute;
  z-index: 80;
  top: calc(100% + 5px);
  left: 0;
  display: grid;
  min-width: 190px;
  overflow: hidden;
  padding: 5px;
  border: 1px solid #d4dee9;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 14px 32px rgba(20, 41, 70, 0.18);
}

.layout-field-actions-menu[hidden] { display: none; }

.layout-field-action {
  min-height: 34px;
  padding: 7px 9px;
  border: 0;
  border-radius: 4px;
  background: transparent;
  color: #25364d;
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 650;
  text-align: left;
}

.layout-field-action:hover:not(:disabled) { background: #eef4fa; }
.layout-field-action:disabled { cursor: default; opacity: 0.42; }
.layout-field-action.is-danger { color: #b42318; }

.layout-field-width {
  min-width: 38px;
  min-height: 27px;
  padding: 3px 7px;
  border: 0;
  border-right: 1px solid #cbd6e2;
  background: #fff;
  color: #526173;
  cursor: pointer;
  font-size: 0.69rem;
  font-weight: 750;
}

.layout-field-width:last-child {
  border-right: 0;
}

.layout-field-width:hover,
.layout-field-width.is-active {
  background: #0c5394;
  color: #fff;
}

.registration-layout-preview #registration-form :is(input, select, textarea, a, .multi-trigger) {
  pointer-events: none;
}

.registration-layout-preview #registration-form .field-content-target {
  position: relative;
  pointer-events: auto;
  cursor: text;
  transition: outline-color 120ms ease, background-color 120ms ease, box-shadow 120ms ease;
}

.registration-layout-preview #registration-form .field-content-target:hover,
.registration-layout-preview #registration-form .field-content-target.is-field-content-selected {
  z-index: 18;
  outline: 2px solid #f3c928;
  outline-offset: 2px;
  box-shadow: 0 0 0 4px rgba(243, 201, 40, 0.14);
}

.registration-layout-preview #registration-form .field-content-target.is-field-content-disabled {
  opacity: 0.68;
}

.registration-layout-preview #registration-form .field-content-target.is-field-content-empty {
  border: 1px dashed rgba(12, 83, 148, 0.48);
  background: rgba(237, 245, 252, 0.78);
  color: #65778a;
  font-style: normal;
}

.field-content-empty-slot {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  gap: 6px;
  padding: 4px 8px;
  border: 1px dashed rgba(12, 83, 148, 0.48);
  border-radius: 4px;
  background: rgba(237, 245, 252, 0.78);
  color: #65778a;
  font: 650 0.72rem/1.25 Inter, Arial, sans-serif;
  letter-spacing: 0;
}

.field-content-empty-slot--label_text {
  margin-right: 4px;
}

.field-content-empty-slot--inner_text,
.field-content-empty-slot--helper_text {
  width: 100%;
  margin-top: 7px;
  justify-content: flex-start;
}

.field-content-empty-slot--info {
  margin-left: 6px;
  vertical-align: middle;
}

.field-content-info-icon {
  display: inline-grid;
  width: 17px;
  height: 17px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 0.68rem;
  font-weight: 800;
}

.field-content-info-copy {
  font-size: 0.71rem;
}

.field-content-toolbar {
  position: fixed;
  z-index: 1300;
  display: grid;
  width: min(390px, calc(100vw - 20px));
  gap: 8px;
  padding: 10px;
  border: 1px solid #c9d5e2;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.99);
  box-shadow: 0 18px 48px rgba(20, 41, 70, 0.24);
}

.field-content-toolbar[hidden] {
  display: none;
}

.field-content-toolbar__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #142946;
  font: 800 0.75rem/1.2 Inter, Arial, sans-serif;
}

.field-content-toolbar__head button {
  display: inline-grid;
  width: 26px;
  height: 26px;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 4px;
  background: transparent;
  color: #526173;
  cursor: pointer;
  font-size: 1.15rem;
}

.field-content-toolbar__head button:hover {
  background: #edf3f8;
  color: #142946;
}

.field-content-toolbar textarea {
  width: 100%;
  min-height: 58px;
  max-height: 140px;
  resize: vertical;
  padding: 9px 10px;
  border: 1px solid #b9c8d8;
  border-radius: 5px;
  background: #fff;
  color: #142946;
  font: 500 0.82rem/1.4 Inter, Arial, sans-serif;
}

.field-content-toolbar textarea:focus {
  border-color: #0c5394;
  outline: 3px solid rgba(12, 83, 148, 0.13);
}

.field-content-toggle {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  color: #35475e;
  cursor: pointer;
  font: 700 0.73rem/1.2 Inter, Arial, sans-serif;
}

.field-content-toggle input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

.field-content-toggle__track {
  display: inline-flex;
  width: 34px;
  height: 19px;
  align-items: center;
  padding: 2px;
  border-radius: 999px;
  background: #9aa8b7;
  transition: background-color 120ms ease;
}

.field-content-toggle__track span {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 3px rgba(20, 41, 70, 0.24);
  transition: transform 120ms ease;
}

.field-content-toggle input:checked + .field-content-toggle__track {
  background: #0c5394;
}

.field-content-toggle input:checked + .field-content-toggle__track span {
  transform: translateX(15px);
}

.field-content-toggle input:focus-visible + .field-content-toggle__track {
  outline: 3px solid rgba(12, 83, 148, 0.18);
  outline-offset: 2px;
}

.field-content-toolbar > p {
  margin: -2px 0 0;
  color: #788697;
  font: 500 0.67rem/1.35 Inter, Arial, sans-serif;
}

@media (max-width: 560px) {
  .field-content-toolbar {
    right: 10px;
    left: 10px !important;
    width: auto;
  }
}

.field {
  position: relative;
  min-width: 0;
}

.field--full {
  width: 100%;
}

.field label,
.ticket-fieldset legend {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 0.94rem;
  font-weight: 700;
}

.required {
  color: var(--red);
}

.field input,
.field select,
.field textarea,
.multi-trigger {
  width: 100%;
  min-height: 50px;
  border: 1px solid #bbc5d0;
  border-radius: 6px;
  outline: 0;
  background: #fff;
  color: var(--ink);
  padding: 12px 14px;
  transition: border-color 120ms ease, box-shadow 120ms ease, background 120ms ease;
}

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

.field input::placeholder,
.field textarea::placeholder {
  color: #8994a2;
}

.field input:focus,
.field select:focus,
.field textarea:focus,
.multi-trigger:focus-visible {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(12, 83, 148, 0.14);
}

.field.has-field-error input,
.field.has-field-error select,
.field.has-field-error textarea,
.field.has-field-error .multi-trigger,
.has-field-error .ticket-option,
.terms-block.has-field-error .terms-row {
  border-color: #c92a2a;
}

.field-error {
  margin: 7px 0 0;
  color: #b42318;
  font-size: 0.82rem;
  font-weight: 650;
  line-height: 1.4;
}

.field input[readonly] {
  border-color: #d5dce4;
  background: #f1f3f6;
  color: #5e6875;
  cursor: not-allowed;
}

#registration-form[data-team-included="true"] .field input[readonly] {
  border-color: #c8d0da !important;
  background: #edf0f3 !important;
  box-shadow: none !important;
  color: #687381 !important;
  cursor: not-allowed;
  -webkit-text-fill-color: #687381;
  opacity: 1;
}

#registration-form[data-team-included="true"] .ticket-option:has(input:disabled) {
  border-color: #c8d0da;
  background: #edf0f3;
  box-shadow: none;
  color: #687381;
  cursor: not-allowed;
}

#registration-form[data-team-included="true"] .ticket-option:has(input:disabled) :is(strong, small),
#registration-form[data-team-included="true"] .toggle-row:has(input:disabled) {
  color: #687381;
}

#registration-form[data-team-included="true"] :is(.ticket-option, .toggle-row) input:disabled {
  accent-color: #8b96a3;
}

.field small,
.field-helper,
.field-inner-copy {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.field-inner-copy {
  margin-bottom: 8px;
  color: #7b8795;
}

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

.field-info {
  position: relative;
  z-index: 10;
  display: inline-grid;
  width: 18px;
  height: 18px;
  margin-left: 4px;
  place-items: center;
  border: 1px solid #9ba7b5;
  border-radius: 50%;
  color: #637080;
  cursor: help;
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 700;
  vertical-align: text-bottom;
}

.field-info__bubble {
  position: absolute;
  z-index: 1000;
  bottom: calc(100% + 9px);
  left: 50%;
  width: min(300px, 78vw);
  padding: 10px 12px;
  transform: translate(-50%, 3px);
  border-radius: 6px;
  visibility: hidden;
  background: var(--navy);
  box-shadow: 0 10px 28px rgba(20, 41, 70, 0.25);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 400;
  line-height: 1.35;
  opacity: 0;
  pointer-events: none;
  transition: opacity 80ms linear, transform 80ms linear, visibility 0s 80ms;
}

.field-info:hover .field-info__bubble,
.field-info:focus .field-info__bubble,
.field-info:focus-within .field-info__bubble {
  transform: translate(-50%, 0);
  visibility: visible;
  opacity: 1;
  transition-delay: 0s;
}

.ticket-fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.ticket-purchase {
  display: grid;
  gap: 12px;
}

.ticket-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.ticket-option {
  display: flex;
  min-height: 76px;
  align-items: center;
  gap: 13px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
}

.ticket-option:has(input:checked) {
  border-color: var(--blue);
  background: var(--blue-light);
  box-shadow: inset 0 0 0 1px var(--blue);
}

.ticket-option input {
  width: 18px;
  height: 18px;
  accent-color: var(--blue);
}

.ticket-option span {
  display: flex;
  min-width: 0;
  flex: 1;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.ticket-option strong {
  color: var(--navy);
}

.ticket-option small {
  color: var(--muted);
  white-space: nowrap;
}

.linkedin-button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 9px 15px;
  border-radius: 6px;
  background: #0a66c2;
  box-shadow: 0 5px 14px rgba(10, 102, 194, 0.2);
  color: #fff;
  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 120ms ease, box-shadow 120ms ease, transform 120ms ease;
}

.linkedin-button--standalone {
  width: 100%;
  min-height: 50px;
  font-size: 1rem;
}

.linkedin-button:hover,
.linkedin-button:focus-visible {
  background: #084f97;
  box-shadow: 0 7px 18px rgba(10, 102, 194, 0.28);
  transform: translateY(-1px);
}

.linkedin-button__mark {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 3px;
  background: #fff;
  color: #0a66c2;
  font-size: 0.83rem;
  line-height: 1;
}

.linkedin-field {
  display: grid;
  gap: 0;
}

.linkedin-field__action {
  display: flex;
  align-items: center;
  gap: 8px;
}

.linkedin-field__action .linkedin-button {
  flex: 1;
}

.linkedin-field__action .field-info {
  flex: 0 0 auto;
}

.phone-control {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
  gap: 8px;
}

.country-picker {
  position: relative;
  min-width: 0;
}

.country-picker.is-open {
  z-index: 300;
}

.country-picker__trigger {
  display: flex;
  width: 100%;
  min-height: 50px;
  align-items: center;
  gap: 7px;
  padding: 10px 9px;
  border: 1px solid #bbc5d0;
  border-radius: 6px;
  outline: 0;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
}

.country-picker__trigger:focus-visible,
.country-picker.is-open .country-picker__trigger {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(12, 83, 148, 0.14);
}

.country-picker__flag {
  flex: 0 0 auto;
  font-family: "Apple Color Emoji", "Segoe UI Emoji", sans-serif;
  font-size: 1.15rem;
  line-height: 1;
}

.country-picker__prefix,
.country-picker__option-prefix {
  color: var(--navy);
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  white-space: nowrap;
}

.country-picker__chevron {
  width: 7px;
  height: 7px;
  margin: 0 2px 3px auto;
  transform: rotate(45deg);
  border-right: 1.5px solid #677383;
  border-bottom: 1.5px solid #677383;
}

.country-picker.is-open .country-picker__chevron {
  margin-bottom: -3px;
  transform: rotate(225deg);
}

.country-picker__menu {
  position: absolute;
  z-index: 400;
  top: calc(100% + 6px);
  left: 0;
  width: min(370px, calc(100vw - 32px));
  max-height: 330px;
  overflow: hidden;
  border: 1px solid #c8d1dc;
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(20, 41, 70, 0.22);
}

.country-picker__search-wrap {
  padding: 9px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.country-picker__search {
  min-height: 40px !important;
  padding: 8px 10px !important;
}

.country-picker__options {
  max-height: 268px;
  overflow-y: auto;
  padding: 5px;
}

.country-picker__option {
  display: grid;
  width: 100%;
  min-height: 42px;
  grid-template-columns: 26px 62px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  padding: 8px 9px;
  border: 0;
  border-radius: 4px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
}

.country-picker__option[hidden] {
  display: none;
}

.country-picker__option:hover,
.country-picker__option:focus-visible,
.country-picker__option.is-selected {
  outline: 0;
  background: var(--blue-light);
}

.country-picker__option-name {
  overflow: hidden;
  color: #4f5d6d;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.country-picker__empty {
  margin: 0;
  padding: 18px;
  color: var(--muted);
  font-size: 0.9rem;
  text-align: center;
}

.section-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 10px;
  color: var(--navy);
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: uppercase;
}

.section-divider::after {
  height: 1px;
  flex: 1;
  background: var(--line);
  content: "";
}

.multi-field {
  z-index: 20;
}

.multi-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  text-align: left;
}

.multi-menu {
  position: absolute;
  z-index: 100;
  top: calc(100% + 5px);
  right: 0;
  left: 0;
  max-height: 310px;
  overflow-y: auto;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(20, 41, 70, 0.18);
}

.multi-menu label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 9px 10px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 400;
}

.multi-menu label:hover {
  background: var(--surface-soft);
}

.multi-menu input {
  width: 17px;
  min-height: 17px;
  accent-color: var(--blue);
}

.coupon-panel,
.billing-section {
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-soft);
}

.coupon-panel--ticket {
  padding: 15px 16px;
  background: #f7f9fb;
}

.coupon-panel--ticket .coupon-entry {
  width: 100%;
  max-width: none;
}

.toggle-row,
.terms-row {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: var(--navy);
  cursor: pointer;
  font-weight: 700;
}

.toggle-row input,
.terms-row input {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin-top: 2px;
  accent-color: var(--blue);
}

.coupon-entry {
  margin-top: 18px;
}

.coupon-entry__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.75fr);
  align-items: end;
  gap: 16px;
}

.coupon-entry__row .field-status {
  display: flex;
  min-height: 50px;
  align-items: center;
  margin: 0;
}

.field-status {
  min-height: 20px;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.field-status.is-success {
  color: var(--success);
  font-weight: 700;
}

.field-status.is-pending {
  color: var(--blue);
}

.field-status.is-error {
  color: var(--danger);
}

.billing-section {
  display: grid;
  gap: 20px;
}

#billing-fields {
  display: grid;
  gap: 20px;
}

.terms-row {
  cursor: default;
  font-weight: 400;
}

.terms-row__copy {
  min-width: 0;
  color: var(--navy);
  line-height: 1.5;
}

.terms-row__copy label {
  cursor: pointer;
}

.terms-row__copy a {
  color: var(--blue);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.terms-row__copy a:hover,
.terms-row__copy a:focus-visible {
  color: var(--navy);
}

.honeypot {
  position: absolute;
  left: -99999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.notice {
  padding: 13px 15px;
  border-radius: 6px;
  font-size: 0.9rem;
}

.notice--warning {
  border: 1px solid #dec66b;
  background: #fff9dc;
  color: #5d4c08;
}

.notice--error {
  border: 1px solid #e2a3a7;
  background: #fff1f2;
  color: var(--danger);
}

.is-hidden {
  display: none !important;
}

.submit-button,
.primary-button,
.secondary-button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 6px;
  padding: 12px 20px;
  font-weight: 700;
  text-decoration: none;
}

.submit-button,
.primary-button {
  border: 1px solid var(--navy);
  background: var(--navy);
  color: #fff;
}

.submit-button {
  width: 100%;
  min-height: 56px;
  cursor: pointer;
  font-size: 1rem;
}

.submit-button:hover,
.primary-button:hover {
  background: #0d1d32;
}

.submit-button:disabled {
  cursor: wait;
  opacity: 0.75;
}

.button-spinner {
  display: none;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.38);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 700ms linear infinite;
}

.submit-button.is-loading .button-spinner {
  display: block;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.secondary-button {
  border: 1px solid #aeb9c6;
  background: #fff;
  color: var(--navy);
}

.secondary-button:hover {
  border-color: var(--navy);
}

.text-link {
  font-weight: 700;
  text-decoration: none;
}

.faq-page {
  --faq-bg: #07090d;
  --faq-panel: #10151d;
  --faq-panel-soft: #0c1016;
  --faq-text: #f7f8fa;
  --faq-muted: #aeb6c2;
  --faq-line: rgba(255, 255, 255, 0.13);
  --faq-accent: #ff5364;
  background: var(--faq-bg);
  color: var(--faq-text);
}

.faq-page .site-header {
  position: sticky;
  top: 0;
  border-bottom-color: var(--faq-line);
  background: rgba(7, 9, 13, 0.97);
}

.faq-page .site-header__inner,
.faq-page .site-footer__inner,
.faq-shell {
  width: min(1180px, calc(100% - 48px));
  max-width: none;
  margin: 0 auto;
}

.faq-page .site-header__inner {
  min-height: 76px;
}

.faq-page .brand img {
  width: 178px;
}

.faq-page main {
  background: var(--faq-bg);
}

.faq-page h1,
.faq-page h2,
.faq-page h3 {
  color: #fff;
}

.faq-header-action,
.faq-support__action {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 10px 17px;
  background: var(--faq-accent);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  transition: background-color 160ms ease, transform 160ms ease;
}

.faq-header-action:hover,
.faq-header-action:focus-visible,
.faq-support__action:hover,
.faq-support__action:focus-visible {
  background: #e94255;
  transform: translateY(-1px);
}

.faq-header-action:focus-visible,
.faq-support__action:focus-visible,
.faq-category-button:focus-visible,
.faq-item summary:focus-visible,
.faq-search input:focus-visible {
  outline: 3px solid #6fc6fa;
  outline-offset: 3px;
}

.faq-hero {
  padding: 72px 0 76px;
  border-bottom: 1px solid var(--faq-line);
  background: #0a0d12;
}

.faq-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  align-items: end;
  gap: 88px;
}

.faq-eyebrow,
.faq-kicker {
  margin: 0;
  color: var(--faq-accent);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.faq-eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 17px;
}

.faq-eyebrow::before {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 5px rgba(255, 83, 100, 0.12);
  content: "";
}

.faq-hero h1 {
  margin: 0;
  font-size: 52px;
  line-height: 1.04;
  text-wrap: balance;
}

.faq-hero__copy > p:last-child {
  max-width: 610px;
  margin: 18px 0 0;
  color: var(--faq-muted);
  font-size: 1.06rem;
  line-height: 1.6;
}

.faq-search label {
  display: block;
  margin-bottom: 10px;
  color: #dce1e7;
  font-size: 0.86rem;
  font-weight: 700;
}

.faq-search__control {
  position: relative;
}

.faq-search__icon {
  position: absolute;
  top: 50%;
  left: 20px;
  width: 17px;
  height: 17px;
  transform: translateY(-50%);
  border: 2px solid #8994a3;
  border-radius: 50%;
  pointer-events: none;
}

.faq-search__icon::after {
  position: absolute;
  right: -6px;
  bottom: -4px;
  width: 7px;
  height: 2px;
  transform: rotate(45deg);
  border-radius: 1px;
  background: #8994a3;
  content: "";
}

.faq-search input {
  width: 100%;
  min-height: 62px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  padding: 15px 20px 15px 54px;
  background: #151a22;
  color: #fff;
  font-size: 1rem;
}

.faq-search input::placeholder {
  color: #909aa7;
  opacity: 1;
}

.faq-search input:focus {
  border-color: rgba(111, 198, 250, 0.8);
}

.faq-section {
  padding: 68px 0 82px;
  background: var(--faq-bg);
}

.faq-section__heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 25px;
}

.faq-section__heading h2 {
  margin: 9px 0 0;
  font-size: 38px;
  line-height: 1.08;
}

.faq-result-count {
  margin: 0 0 4px;
  color: var(--faq-muted);
  font-size: 0.9rem;
}

.faq-category-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.faq-category-button {
  min-height: 42px;
  border: 1px solid var(--faq-line);
  border-radius: 6px;
  padding: 9px 14px;
  background: transparent;
  color: #c4cad3;
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 700;
  transition: background-color 150ms ease, border-color 150ms ease, color 150ms ease;
}

.faq-category-button:hover {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.faq-category-button.is-active {
  border-color: var(--faq-accent);
  background: var(--faq-accent);
  color: #fff;
}

.faq-list {
  border-top: 1px solid var(--faq-line);
}

.faq-item {
  scroll-margin-top: 110px;
  border-bottom: 1px solid var(--faq-line);
}

.faq-item[hidden] {
  display: none;
}

.faq-item summary {
  display: flex;
  min-height: 92px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 19px 0;
  color: #fff;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item__copy {
  display: grid;
  min-width: 0;
  gap: 5px;
}

.faq-item__category {
  color: var(--faq-accent);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
}

.faq-item__question {
  font-size: 1.09rem;
  font-weight: 700;
  line-height: 1.38;
}

.faq-item__toggle {
  position: relative;
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  transition: border-color 160ms ease, transform 160ms ease;
}

.faq-item__toggle::before,
.faq-item__toggle::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 13px;
  height: 2px;
  transform: translate(-50%, -50%);
  border-radius: 1px;
  background: var(--faq-accent);
  content: "";
}

.faq-item__toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item[open] .faq-item__toggle {
  border-color: rgba(255, 83, 100, 0.7);
  transform: rotate(45deg);
}

.faq-item__answer {
  max-width: 860px;
  padding: 0 66px 28px 0;
}

.faq-item__answer p {
  margin: 0;
  color: var(--faq-muted);
  font-size: 0.98rem;
  line-height: 1.68;
}

.faq-empty {
  padding: 42px 0;
  border-bottom: 1px solid var(--faq-line);
}

.faq-empty h3 {
  margin: 0 0 8px;
  font-size: 1.2rem;
}

.faq-empty p {
  margin: 0;
  color: var(--faq-muted);
}

.faq-support {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 42px;
  margin-top: 72px;
  padding-top: 42px;
  border-top: 1px solid var(--faq-line);
}

.faq-support h2 {
  margin: 8px 0 0;
  font-size: 32px;
}

.faq-support div > p:last-child {
  max-width: 720px;
  margin: 12px 0 0;
  color: var(--faq-muted);
}

.faq-support__action {
  min-height: 50px;
  padding: 12px 20px;
}

.faq-page .site-footer {
  border-top-color: var(--faq-line);
  background: #05070a;
}

.faq-page .site-footer__inner {
  min-height: 132px;
}

.faq-page .site-footer p {
  color: var(--faq-muted);
}

.route-page {
  --route-bg: #07090d;
  --route-panel: #10151d;
  --route-panel-strong: #151b24;
  --route-text: #f7f8fa;
  --route-muted: #aeb6c2;
  --route-line: rgba(255, 255, 255, 0.13);
  --route-accent: #ff5364;
  background: var(--route-bg);
  color: var(--route-text);
}

.route-page .site-header {
  position: sticky;
  top: 0;
  border-bottom-color: var(--route-line);
  background: rgba(7, 9, 13, 0.97);
}

.route-page .site-header__inner,
.route-page .site-footer__inner,
.route-page .route-shell {
  width: min(1180px, calc(100% - 48px));
  max-width: none;
}

.route-page .site-header__inner {
  min-height: 76px;
}

.route-page .brand img {
  width: 178px;
}

.route-page main {
  background: var(--route-bg);
}

.route-page h1,
.route-page h2,
.route-page h3 {
  color: #fff;
}

.route-header-action,
.route-button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 12px 20px;
  color: #fff;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.route-header-action {
  min-height: 44px;
  padding: 10px 17px;
  background: var(--route-accent);
  font-size: 0.9rem;
}

.route-header-action:hover,
.route-header-action:focus-visible,
.route-button--primary:hover,
.route-button--primary:focus-visible {
  background: #e94255;
}

.route-header-action:hover,
.route-button:hover {
  transform: translateY(-1px);
}

.route-header-action:focus-visible,
.route-button:focus-visible,
.route-contact-link:focus-visible,
.route-faq__item summary:focus-visible {
  outline: 3px solid #6fc6fa;
  outline-offset: 3px;
}

.route-hero {
  padding: 76px 0 82px;
  border-bottom: 1px solid var(--route-line);
}

.route-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
  align-items: center;
  gap: 76px;
}

.route-hero__copy {
  min-width: 0;
}

.route-eyebrow,
.route-kicker {
  color: var(--route-accent);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.route-eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 20px;
}

.route-eyebrow::before {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 5px rgba(255, 83, 100, 0.12);
  content: "";
}

.route-hero h1 {
  max-width: 710px;
  margin: 0;
  color: #fff;
  font-size: 58px;
  font-weight: 700;
  line-height: 1.03;
  text-wrap: balance;
}

.route-lead {
  max-width: 690px;
  margin: 24px 0 0;
  color: #c4cad3;
  font-size: 1.18rem;
  line-height: 1.62;
}

.route-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.route-button--primary {
  background: var(--route-accent);
}

.route-button--secondary {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.05);
}

.route-button--secondary:hover,
.route-button--secondary:focus-visible {
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.1);
}

.route-hero__visual {
  position: relative;
  min-height: 520px;
  aspect-ratio: 4 / 5;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: var(--route-panel);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.32);
}

.route-hero__visual::after {
  position: absolute;
  inset: 0;
  background: rgba(7, 9, 13, 0.16);
  content: "";
  pointer-events: none;
}

.route-hero__visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.route-process,
.route-contacts,
.route-support,
.route-faq {
  padding: 72px 0;
}

.route-process {
  border-bottom: 1px solid var(--route-line);
  background: #0c1016;
}

.route-section-heading {
  max-width: 820px;
  margin-bottom: 30px;
}

.route-kicker {
  margin: 0 0 11px;
}

.route-section-heading h2,
.route-support h2,
.route-faq h2 {
  margin: 0;
  font-size: 42px;
  line-height: 1.08;
  text-wrap: balance;
}

.route-section-heading > p:last-child,
.route-support p,
.route-faq__intro > p:not(.route-kicker) {
  color: var(--route-muted);
  font-size: 1.03rem;
  line-height: 1.58;
}

.route-section-heading > p:last-child {
  max-width: 760px;
  margin: 13px 0 0;
}

.route-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.route-step {
  min-height: 176px;
  padding: 22px;
  border: 1px solid var(--route-line);
  border-radius: 8px;
  background: var(--route-panel);
}

.route-step__number {
  display: grid;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 50%;
  background: var(--route-accent);
  color: #fff;
  font-weight: 700;
}

.route-step h3 {
  margin: 0 0 8px;
  font-size: 1.16rem;
}

.route-step p {
  margin: 0;
  color: var(--route-muted);
  font-size: 0.94rem;
}

.route-support {
  border-bottom: 1px solid var(--route-line);
}

.route-support__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 32px;
}

.route-support p {
  max-width: 760px;
  margin: 12px 0 0;
}

.route-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.route-contact-grid--single {
  grid-template-columns: minmax(0, 680px);
}

.route-contact-card {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  align-items: center;
  gap: 22px;
  min-width: 0;
  padding: 24px;
  border: 1px solid var(--route-line);
  border-radius: 8px;
  background: var(--route-panel);
}

.route-contact-card__photo {
  display: block;
  width: 112px;
  height: 112px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  object-fit: cover;
}

.route-contact-card__body {
  min-width: 0;
}

.route-contact-card__role {
  margin: 0 0 4px;
  color: var(--route-accent);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.route-contact-card h3 {
  margin: 0 0 7px;
  font-size: 1.45rem;
}

.route-contact-card__copy {
  margin: 0 0 14px;
  color: var(--route-muted);
  font-size: 0.94rem;
}

.route-contact-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 15px;
}

.route-contact-link {
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  overflow-wrap: anywhere;
  text-underline-offset: 4px;
}

.route-contact-link--primary {
  color: var(--route-accent);
}

.route-faq {
  border-top: 1px solid var(--route-line);
  background: #06080b;
}

.route-faq__grid {
  display: grid;
  grid-template-columns: minmax(250px, 0.7fr) minmax(0, 1.3fr);
  align-items: start;
  gap: 70px;
}

.route-faq__intro {
  position: sticky;
  top: 104px;
}

.route-faq__intro h2 {
  margin-bottom: 12px;
}

.route-faq__intro > p:not(.route-kicker) {
  margin: 0 0 24px;
}

.route-faq__list {
  border-top: 1px solid var(--route-line);
}

.route-faq__item {
  border-bottom: 1px solid var(--route-line);
}

.route-faq__item summary {
  position: relative;
  min-height: 72px;
  padding: 23px 52px 20px 0;
  color: #fff;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 700;
  list-style: none;
}

.route-faq__item summary::-webkit-details-marker {
  display: none;
}

.route-faq__item summary::after {
  position: absolute;
  top: 18px;
  right: 0;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  color: var(--route-accent);
  content: "+";
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1;
  transition: border-color 160ms ease, transform 160ms ease;
}

.route-faq__item[open] summary::after {
  border-color: rgba(255, 83, 100, 0.7);
  transform: rotate(45deg);
}

.route-faq__answer {
  max-width: 760px;
  padding: 0 52px 24px 0;
}

.route-faq__answer p {
  margin: 0;
  color: var(--route-muted);
  line-height: 1.64;
}

.route-page .site-footer {
  border-top-color: var(--route-line);
  background: #05070a;
}

.route-page .site-footer__inner {
  min-height: 132px;
}

.route-page .site-footer p {
  color: var(--route-muted);
}

@media (max-width: 920px) {
  .route-hero {
    padding: 58px 0 64px;
  }

  .route-hero__grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .route-hero h1 {
    max-width: 760px;
    font-size: 50px;
  }

  .route-hero__visual {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .route-contact-grid,
  .route-faq__grid {
    grid-template-columns: 1fr;
  }

  .route-contact-grid--single {
    grid-template-columns: minmax(0, 680px);
  }

  .route-faq__grid {
    gap: 28px;
  }

  .route-faq__intro {
    position: static;
  }
}

@media (max-width: 680px) {
  .route-page .site-header__inner,
  .route-page .site-footer__inner,
  .route-page .route-shell {
    width: calc(100% - 28px);
  }

  .route-page .site-header__inner {
    min-height: 66px;
  }

  .route-page .brand img {
    width: 144px;
  }

  .route-header-action {
    min-height: 40px;
    padding: 8px 12px;
    font-size: 0.78rem;
  }

  .route-hero {
    padding: 34px 0 46px;
  }

  .route-hero__grid {
    gap: 30px;
  }

  .route-eyebrow {
    margin-bottom: 15px;
    font-size: 0.7rem;
  }

  .route-hero h1 {
    font-size: 38px;
    line-height: 1.04;
  }

  .route-lead {
    margin-top: 18px;
    font-size: 1rem;
    line-height: 1.52;
  }

  .route-actions {
    display: grid;
    margin-top: 22px;
  }

  .route-button {
    width: 100%;
    min-height: 48px;
  }

  .route-hero__visual {
    aspect-ratio: 4 / 3;
  }

  .route-process,
  .route-contacts,
  .route-support,
  .route-faq {
    padding: 48px 0;
  }

  .route-section-heading {
    margin-bottom: 22px;
  }

  .route-section-heading h2,
  .route-support h2,
  .route-faq h2 {
    font-size: 31px;
  }

  .route-steps {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .route-step {
    min-height: 0;
    padding: 18px;
  }

  .route-step__number {
    width: 30px;
    height: 30px;
    margin-bottom: 13px;
  }

  .route-support__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .route-contact-card {
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 16px;
    padding: 18px;
  }

  .route-contact-card__photo {
    width: 88px;
    height: 88px;
  }

  .route-contact-card h3 {
    font-size: 1.28rem;
  }

  .route-contact-card__actions {
    display: grid;
    justify-items: start;
  }

  .route-faq__item summary {
    min-height: 66px;
    padding: 19px 46px 18px 0;
    font-size: 0.98rem;
  }

  .route-faq__item summary::after {
    top: 15px;
    width: 32px;
    height: 32px;
  }

  .route-faq__answer {
    padding: 0 42px 20px 0;
    font-size: 0.94rem;
  }
}

@media (max-width: 430px) {
  .route-contact-card {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .route-contact-card__photo {
    width: 72px;
    height: 72px;
  }

  .route-contact-card__copy {
    grid-column: 1 / -1;
  }
}

.status-page {
  display: grid;
  min-height: 620px;
  place-items: center;
  padding: 64px 24px;
  background: var(--surface-soft);
}

.status-card {
  width: min(680px, 100%);
  padding: 54px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  text-align: center;
}

.status-card--wide {
  width: min(760px, 100%);
}

.status-card h1 {
  font-size: 2.45rem;
}

.status-card p:not(.eyebrow) {
  margin: 18px auto 28px;
  color: var(--muted);
  font-size: 1.04rem;
}

.status-icon {
  display: grid;
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  place-items: center;
  border-radius: 50%;
  background: var(--blue-light);
  color: var(--blue);
  font-size: 1.5rem;
  font-weight: 700;
}

.status-icon--success {
  background: #e7f6ee;
  color: var(--success);
}

.status-icon--error {
  background: #fff0f1;
  color: var(--danger);
}

.next-steps {
  margin: 34px 0;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafc;
  text-align: left;
}

.next-steps h2 {
  margin: 0 0 22px;
  font-size: 1.25rem;
}

.next-steps__list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.next-steps__list li {
  position: relative;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 14px;
  padding: 0 0 22px;
}

.next-steps__list li:last-child {
  padding-bottom: 0;
}

.next-steps__list li:not(:last-child)::after {
  position: absolute;
  top: 36px;
  bottom: 3px;
  left: 17px;
  width: 2px;
  background: #d8e1eb;
  content: "";
}

.next-steps__list li > span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid #c7d1dc;
  border-radius: 50%;
  background: #fff;
  color: var(--muted);
  font-weight: 800;
}

.next-steps__list li.is-active > span {
  border-color: var(--blue);
  background: var(--blue);
  color: #fff;
}

.next-steps__list li.is-complete > span {
  border-color: var(--success);
  background: var(--success);
  color: #fff;
}

.next-steps__list strong,
.next-steps__list small {
  display: block;
}

.next-steps__list strong {
  margin: 1px 0 4px;
  color: var(--navy);
}

.next-steps__list small {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.status-contact {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  margin: 0 0 28px;
  padding: 18px;
  border-radius: 8px;
  background: #edf4fa;
  text-align: left;
}

.status-contact img {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
}

.status-contact strong,
.status-contact span {
  display: block;
}

.status-contact strong {
  color: var(--navy);
  font-size: 1.05rem;
}

.status-contact span {
  margin-top: 2px;
  color: var(--blue);
  font-size: 0.86rem;
  font-weight: 700;
}

.status-contact p {
  margin: 8px 0 0 !important;
  color: var(--muted);
  font-size: 0.92rem !important;
}

@media (max-width: 820px) {
  .site-header__inner,
  .site-footer__inner,
  .form-shell,
  .route-shell {
    width: min(100% - 32px, 680px);
  }

  .site-header__inner {
    min-height: 70px;
  }

  .brand img {
    width: 174px;
  }

  .site-nav {
    gap: 14px;
  }

  .site-nav a:first-child {
    display: none;
  }

  .form-intro {
    padding: 36px 0 0;
  }

  .form-intro__grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-bottom: 28px;
  }

  .form-intro h1 {
    max-width: 620px;
    font-size: 2.65rem;
  }

  .included {
    padding: 20px 22px 22px;
  }

  .form-section {
    padding: 38px 0 64px;
  }

  .form-heading {
    align-items: flex-start;
  }

  .trust-note {
    align-items: flex-end;
    flex-direction: column;
    gap: 5px;
  }

  .trust-note span + span {
    padding-left: 0;
    border-left: 0;
  }

  .form-grid,
  .form-grid--identity,
  .form-grid--company,
  .form-grid--address {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .form-grid--phones {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

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

  .site-footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .site-header__inner,
  .site-footer__inner,
  .form-shell,
  .route-shell {
    width: calc(100% - 26px);
  }

  .site-header__inner {
    min-height: 64px;
  }

  .brand img {
    width: 154px;
  }

  .site-nav a {
    font-size: 0.88rem;
  }

  .field-info__bubble {
    position: fixed;
    right: 16px;
    bottom: 16px;
    left: 16px;
    width: auto;
    max-width: none;
    transform: translateY(3px);
  }

  .field-info:hover .field-info__bubble,
  .field-info:focus .field-info__bubble,
  .field-info:focus-within .field-info__bubble {
    transform: translateY(0);
  }

  h1 {
    font-size: 2.08rem;
  }

  h2 {
    font-size: 1.55rem;
  }

  .lead {
    margin-top: 14px;
    font-size: 1rem;
  }

  .form-intro {
    padding: 27px 0 0;
  }

  .form-intro__grid {
    gap: 22px;
    padding-bottom: 22px;
  }

  .form-intro h1 {
    font-size: 2.12rem;
    line-height: 1.04;
  }

  .form-intro .lead {
    margin-top: 13px;
    font-size: 0.96rem;
    line-height: 1.48;
  }

  .included {
    padding: 16px 17px 18px;
  }

  .included__heading {
    margin-bottom: 14px;
    padding-bottom: 12px;
  }

  .included ul {
    gap: 9px 14px;
  }

  .included li {
    padding-left: 17px;
    font-size: 0.84rem;
  }

  .participant-note {
    display: block;
    min-height: 0;
    padding: 14px 0 16px;
    font-size: 0.82rem;
    line-height: 1.45;
  }

  .participant-note__label {
    display: block;
    margin-bottom: 4px;
  }

  .form-section {
    padding: 29px 0 50px;
  }

  .form-heading {
    display: block;
    margin-bottom: 22px;
    padding-bottom: 17px;
  }

  .trust-note {
    align-items: flex-start;
    gap: 4px;
    margin-top: 11px;
    white-space: normal;
  }

  #registration-form {
    gap: 19px;
  }

  #registration-form.form-layout-grid {
    grid-template-columns: 1fr;
    column-gap: 0;
  }

  #registration-form.form-layout-grid > [data-field-width] {
    grid-row: auto !important;
    grid-column: 1 !important;
  }

  #registration-form.form-layout-grid > .section-divider,
  #registration-form.form-layout-grid > .notice,
  #registration-form.form-layout-grid > .submit-button {
    grid-row: auto !important;
    grid-column: 1 !important;
  }

  .layout-grid-cell,
  .layout-grid-drop-marker {
    display: none !important;
  }

  .registration-layout-preview [data-layout-editable="true"] {
    padding-top: 43px;
  }

  .layout-field-width {
    min-width: 34px;
    padding-inline: 5px;
  }

  .form-grid,
  .form-grid--identity,
  .form-grid--company,
  .form-grid--address {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .form-grid--address .field:last-child {
    grid-column: auto;
  }

  .form-grid > [data-field-width] {
    grid-column: auto;
  }

  .ticket-options {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .ticket-option {
    min-height: 62px;
    padding: 10px 13px;
  }

  .linkedin-button {
    width: 100%;
  }

  .phone-control {
    grid-template-columns: 104px minmax(0, 1fr);
  }

  .coupon-panel,
  .billing-section {
    padding: 18px 15px;
  }

  .coupon-entry__row {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .coupon-entry__row .field-status {
    min-height: 0;
  }

  .route-hero {
    padding: 52px 0;
  }

  .route-actions {
    display: grid;
  }

  .contact-card {
    padding: 16px;
  }

  .status-page {
    min-height: 560px;
    padding: 30px 13px;
  }

  .status-card {
    padding: 34px 20px;
  }

  .status-card h1 {
    font-size: 1.85rem;
  }

  .next-steps {
    margin: 26px 0;
    padding: 20px 16px;
  }

  .status-contact {
    grid-template-columns: 74px minmax(0, 1fr);
    gap: 13px;
    padding: 14px;
  }

  .status-contact img {
    width: 74px;
    height: 74px;
  }

  .site-footer__inner {
    min-height: 0;
    padding: 30px 0;
  }
}

@media (max-width: 820px) {
  .faq-page .site-header__inner,
  .faq-page .site-footer__inner,
  .faq-shell {
    width: min(100% - 32px, 680px);
  }

  .faq-hero {
    padding: 54px 0 58px;
  }

  .faq-hero__grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .faq-hero h1 {
    font-size: 44px;
  }

  .faq-section {
    padding: 50px 0 62px;
  }

  .faq-support {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 54px;
  }

  .faq-support__action {
    width: fit-content;
  }
}

@media (max-width: 560px) {
  .faq-page .site-header__inner,
  .faq-page .site-footer__inner,
  .faq-shell {
    width: calc(100% - 26px);
  }

  .faq-page .site-header__inner {
    min-height: 64px;
  }

  .faq-page .brand img {
    width: 152px;
  }

  .faq-header-action {
    min-height: 40px;
    padding: 8px 12px;
    font-size: 0.82rem;
  }

  .faq-hero {
    padding: 38px 0 42px;
  }

  .faq-hero__grid {
    gap: 26px;
  }

  .faq-hero h1 {
    font-size: 37px;
  }

  .faq-hero__copy > p:last-child {
    margin-top: 14px;
    font-size: 0.95rem;
  }

  .faq-search input {
    min-height: 56px;
  }

  .faq-section {
    padding: 38px 0 50px;
  }

  .faq-section__heading {
    align-items: flex-start;
    margin-bottom: 21px;
  }

  .faq-section__heading h2 {
    font-size: 29px;
  }

  .faq-result-count {
    margin-top: 6px;
    white-space: nowrap;
  }

  .faq-category-filter {
    flex-wrap: nowrap;
    margin-right: -13px;
    margin-bottom: 20px;
    overflow-x: auto;
    padding-right: 13px;
    padding-bottom: 4px;
    scrollbar-width: thin;
  }

  .faq-category-button {
    flex: 0 0 auto;
    min-height: 40px;
    padding: 8px 12px;
  }

  .faq-item summary {
    min-height: 82px;
    gap: 16px;
    padding: 16px 0;
  }

  .faq-item__question {
    font-size: 1rem;
  }

  .faq-item__toggle {
    flex-basis: 34px;
    width: 34px;
    height: 34px;
  }

  .faq-item__answer {
    padding: 0 50px 23px 0;
  }

  .faq-item__answer p {
    font-size: 0.94rem;
  }

  .faq-support {
    margin-top: 46px;
    padding-top: 34px;
  }

  .faq-support h2 {
    font-size: 27px;
  }

  .faq-support__action {
    width: 100%;
  }
}
