:root {
  --blue: #146b5d;
  --blue-deep: #182523;
  --blue-soft: #edf3ef;
  --petrol: #146b5d;
  --lime: #d9ff55;
  --ivory: #f6f4ee;
  --paper: #fffefb;
  --ink: #182523;
  --muted: #65706d;
  --line: #dcded8;
  --danger: #a33c3c;
  --success: #146b5d;
  --shadow: 0 24px 70px rgba(24, 37, 35, 0.11);
  --radius-lg: 30px;
  --radius-md: 20px;
  --radius-sm: 12px;
  --shell: 1180px;
}

html[data-palette="originale"] {
  --blue: #153385;
  --blue-deep: #0b1d50;
  --blue-soft: #edf1fb;
  --petrol: #153385;
  --ivory: #f6f4ee;
  --paper: #fffefb;
  --ink: #0b1d50;
  --muted: #5c6682;
  --line: #d7deef;
  --success: #153385;
  --shadow: 0 24px 70px rgba(11, 29, 80, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

button,
input,
select {
  font: inherit;
}

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

a {
  color: inherit;
}

[hidden] {
  display: none !important;
}

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  background: var(--petrol);
  color: white;
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

.site-header {
  position: absolute;
  z-index: 10;
  inset: 0 0 auto;
  color: var(--ink);
}

.header-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid rgba(20, 107, 93, 0.16);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 25px;
  font-weight: 900;
  letter-spacing: -0.06em;
  text-decoration: none;
}

.wordmark-mark {
  display: block;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
}

.wordmark-name {
  display: inline-flex;
  align-items: baseline;
  white-space: nowrap;
}

.wordmark-volley,
.wordmark-din {
  color: inherit;
  box-shadow: none;
}

.brand-lockup {
  display: inline-block;
  white-space: nowrap;
  font-weight: inherit;
  letter-spacing: -0.055em;
}

.brand-volley,
.brand-din {
  display: inline;
}

.brand-volley {
  color: inherit;
}

.brand-din {
  color: inherit;
  box-shadow: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.pilot-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pilot-pill > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--petrol);
  box-shadow: 0 0 0 5px rgba(20, 107, 93, 0.12);
}

.header-link {
  color: inherit;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.header-link:hover,
.header-link:focus-visible {
  text-decoration: underline;
  text-underline-offset: 5px;
}

.hero-section {
  position: relative;
  overflow: hidden;
  min-height: 720px;
  padding: 170px 0 110px;
  color: var(--ink);
  background:
    radial-gradient(circle at 82% 18%, rgba(20, 107, 93, 0.09), transparent 27%),
    radial-gradient(circle at 8% 86%, rgba(217, 255, 85, 0.12), transparent 24%),
    linear-gradient(135deg, var(--paper), var(--ivory) 54%, var(--blue-soft));
}

.hero-section::before,
.hero-section::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(20, 107, 93, 0.09);
  border-radius: 50%;
}

.hero-section::before {
  width: 560px;
  height: 560px;
  right: -240px;
  top: -180px;
}

.hero-section::after {
  width: 350px;
  height: 350px;
  left: -150px;
  bottom: -250px;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(410px, 0.98fr);
  gap: clamp(54px, 7vw, 100px);
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--petrol);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow-light {
  color: var(--petrol);
}

.hero-copy h1 {
  max-width: 710px;
  margin: 0;
  font-size: clamp(42px, 5.4vw, 76px);
  font-weight: 850;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.hero-question {
  display: block;
  margin-bottom: 9px;
  color: var(--ink);
  font-size: 0.58em;
  font-weight: 820;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.hero-answer {
  display: block;
  color: var(--ink);
  font-weight: 850;
  letter-spacing: -0.055em;
}

.hero-answer .brand-lockup {
  font-weight: 950;
}

.hero-lead {
  max-width: 660px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.hero-launch-note {
  max-width: 660px;
  margin: 18px 0 0;
  border-left: 3px solid #d9dde7;
  padding-left: 14px;
  color: var(--muted);
  font-size: 14px;
}

.hero-launch-note strong {
  color: var(--ink);
}

.hero-principles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 680px;
  margin-top: 24px;
}

.hero-principles article {
  min-height: 150px;
  border: 1px solid var(--line);
  border-radius: 17px;
  padding: 20px;
  background: rgba(255, 254, 251, 0.72);
}

.hero-principles h2 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 850;
  letter-spacing: -0.025em;
  line-height: 1.12;
}

.hero-principles .hero-principle-trust {
  border-color: rgba(217, 255, 85, 0.5);
  color: white;
  background: var(--blue-deep);
  box-shadow: 0 16px 34px rgba(11, 29, 80, 0.15);
}

.hero-principles p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.hero-principle-trust p {
  color: rgba(255, 255, 255, 0.78);
}

.hero-principle-trust h2 {
  color: white;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 13px 24px;
  cursor: pointer;
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:focus-visible,
.choice-button:focus-visible,
.role-card:focus-visible,
.change-role-button:focus-visible,
.small-button:focus-visible,
.remove-team:focus-visible,
.back-link:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(20, 107, 93, 0.32);
  outline-offset: 3px;
}

.button-hero {
  color: white;
  background: var(--petrol);
  box-shadow: 0 14px 30px rgba(20, 107, 93, 0.2);
}

.button-primary {
  color: white;
  background: var(--petrol);
  box-shadow: 0 12px 24px rgba(20, 107, 93, 0.18);
}

.button-outline {
  color: white;
  border-color: rgba(255, 255, 255, 0.55);
  background: transparent;
}

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

.text-link > span:last-child {
  display: inline-block;
  margin-left: 4px;
  transition: transform 160ms ease;
}

.text-link:hover > span:last-child {
  transform: translateX(4px);
}

.text-link-light {
  color: var(--petrol);
}

.matching-card {
  position: relative;
  overflow: hidden;
  min-height: 500px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px;
  background: rgba(255, 254, 251, 0.92);
  box-shadow: 0 30px 70px rgba(24, 37, 35, 0.12);
  backdrop-filter: blur(12px);
}

.matching-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.matching-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--petrol);
}

.matching-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--petrol);
  box-shadow: 0 0 0 5px rgba(20, 107, 93, 0.1);
}

.matching-card > h2 {
  margin: 26px 0 22px;
  color: var(--blue-deep);
  font-size: clamp(25px, 3vw, 34px);
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.matching-flow {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.matching-flow li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 13px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px;
  background: var(--paper);
}

.matching-flow li > span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--blue);
  font-size: 10px;
  font-weight: 900;
}

.matching-flow li:nth-child(2) > span {
  color: var(--blue-deep);
  background: var(--lime);
}

.matching-flow li:nth-child(3) > span {
  background: var(--blue);
}

.matching-flow li > div {
  display: grid;
  gap: 2px;
}

.matching-flow strong {
  color: var(--ink);
  font-size: 14px;
}

.matching-flow small {
  color: var(--muted);
  font-size: 11px;
}

.matching-note {
  margin: 18px 0 0;
  border-radius: 14px;
  padding: 15px 16px;
  color: var(--muted);
  background: var(--blue-soft);
  font-size: 12px;
}

.matching-note strong {
  color: var(--blue);
}

.proof-strip {
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  background: var(--petrol);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.proof-grid p {
  margin: 0;
  padding: 30px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.48;
}

.proof-grid p + p {
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.proof-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--lime);
  font-size: 18px;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

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

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 46px;
}

.section-heading h2 {
  max-width: 780px;
  margin: 0;
  color: var(--blue-deep);
  font-size: clamp(34px, 4vw, 52px);
  letter-spacing: -0.045em;
  line-height: 1.04;
}

.section-heading-compact {
  margin-bottom: 34px;
}

.section-heading-compact h2 {
  width: fit-content;
  max-width: none;
  border-radius: 999px;
  padding: 9px 13px;
  color: var(--blue-deep);
  background: var(--lime);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-transform: uppercase;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.step-card {
  min-height: 270px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px;
  background: rgba(255, 254, 251, 0.62);
}

.step-card.featured {
  color: var(--ink);
  border-color: rgba(20, 107, 93, 0.2);
  background: var(--blue-soft);
  transform: translateY(-14px);
  box-shadow: var(--shadow);
}

.step-number {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: var(--petrol);
  font-size: 11px;
  font-weight: 900;
}

.featured .step-number {
  color: var(--blue);
}

.step-card h3 {
  margin: 54px 0 12px;
  color: var(--blue-deep);
  font-size: 22px;
  letter-spacing: -0.025em;
}

.launch-date {
  display: block;
  width: fit-content;
  margin-bottom: 10px;
  border-radius: 999px;
  padding: 6px 9px;
  color: var(--blue-deep);
  background: var(--lime);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.step-card.featured h3 {
  color: var(--blue-deep);
}

.step-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.step-card.featured p {
  color: var(--muted);
}

.registration-section {
  position: relative;
  overflow: hidden;
  padding: 110px 0 125px;
  border-top: 1px solid rgba(20, 107, 93, 0.16);
  background: linear-gradient(180deg, var(--blue-soft), var(--ivory));
}

.registration-section::after {
  content: "";
  position: absolute;
  width: 550px;
  height: 550px;
  right: -270px;
  top: 60px;
  border: 1px solid rgba(20, 107, 93, 0.09);
  border-radius: 50%;
}

.registration-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, 0.34fr) minmax(0, 0.66fr);
  gap: clamp(35px, 6vw, 86px);
  align-items: start;
}

.registration-intro {
  position: sticky;
  top: 40px;
  color: var(--ink);
}

.registration-intro h2 {
  margin: 0;
  font-size: clamp(35px, 4.2vw, 54px);
  letter-spacing: -0.05em;
  line-height: 1.02;
}

.registration-intro > .eyebrow {
  display: inline-flex;
  border-radius: 999px;
  padding: 8px 11px;
  color: var(--blue-deep);
  background: var(--lime);
}

.registration-intro > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 16px;
}

.preview-notice {
  margin-top: 30px;
  border: 1px solid rgba(20, 107, 93, 0.22);
  border-radius: 16px;
  padding: 16px;
  background: rgba(255, 254, 251, 0.72);
}

.preview-notice > span {
  color: var(--petrol);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.preview-notice p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.registration-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--paper);
  box-shadow: 0 28px 80px rgba(24, 37, 35, 0.14);
}

.progress-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin: 0;
  padding: 0;
  border-bottom: 1px solid var(--line);
  list-style: none;
}

.progress-list li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 74px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.progress-list li + li {
  border-left: 1px solid var(--line);
}

.progress-list li::after {
  content: "";
  position: absolute;
  inset: auto 0 -1px;
  height: 3px;
  background: transparent;
}

.progress-list li.is-active {
  color: var(--blue);
}

.progress-list li.is-complete {
  color: var(--petrol);
}

.progress-list li.is-active::after {
  background: var(--lime);
}

.progress-list span {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 10px;
}

.progress-list li.is-active span {
  color: var(--blue-deep);
  border-color: var(--lime);
  background: var(--lime);
}

.progress-list em {
  font-style: normal;
}

.form-panel {
  padding: clamp(28px, 5vw, 54px);
}

.panel-kicker {
  margin: 0 0 8px;
  color: var(--petrol);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.form-panel > h3,
.form-heading-row h3 {
  margin: 0;
  scroll-margin-top: 105px;
  color: var(--blue-deep);
  font-size: clamp(30px, 4vw, 43px);
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.form-panel > h3:focus-visible,
.form-heading-row h3:focus-visible {
  border-radius: 5px;
  outline: 3px solid rgba(20, 107, 93, 0.32);
  outline-offset: 6px;
}

.panel-copy {
  margin: 14px 0 0;
  color: var(--muted);
}

.binary-actions {
  display: grid;
  grid-template-columns: 1fr 0.46fr;
  gap: 12px;
  margin-top: 32px;
}

.choice-button {
  min-height: 66px;
  border: 1px solid var(--blue);
  border-radius: 14px;
  padding: 14px 18px;
  cursor: pointer;
  color: white;
  background: var(--blue);
  font-weight: 850;
  transition: transform 160ms ease, background 160ms ease;
}

.choice-button:hover {
  transform: translateY(-2px);
}

.choice-button-secondary {
  color: var(--blue);
  background: white;
}

.minor-message {
  margin-top: 24px;
  border-left: 4px solid var(--blue);
  border-radius: 0 12px 12px 0;
  padding: 16px 18px;
  background: var(--blue-soft);
}

.minor-message strong {
  color: var(--blue-deep);
}

.minor-message p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.role-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 11px;
  margin-top: 30px;
}

.role-card {
  position: relative;
  display: flex;
  min-height: 220px;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  cursor: pointer;
  color: var(--ink);
  text-align: left;
  background: white;
  transition: border 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.role-card:hover {
  border-color: var(--blue);
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(20, 107, 93, 0.1);
}

.role-index {
  color: var(--muted);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.role-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  margin: 20px 0 18px;
  border-radius: 16px;
  color: var(--blue);
  background: var(--blue-soft);
}

.role-icon svg {
  width: 32px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.role-icon svg .solid {
  fill: currentColor;
  stroke: none;
}

.role-card strong {
  color: var(--blue-deep);
  font-size: 18px;
}

.role-card small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.role-card > i {
  position: absolute;
  right: 18px;
  bottom: 14px;
  color: var(--petrol);
  font-style: normal;
  font-size: 20px;
}

.back-link,
.change-role-button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  border: 0;
  padding: 0;
  cursor: pointer;
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 4px;
  background: transparent;
  font-size: 12px;
  font-weight: 800;
}

.back-link {
  margin-top: 24px;
}

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

.form-navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  padding-top: 26px;
}

.form-navigation .back-link {
  margin-top: 0;
}

.next-button {
  min-width: 220px;
}

.form-navigation-submit {
  align-items: flex-start;
}

.human-verification {
  margin-top: 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 16px;
  background: var(--paper);
}

.human-verification p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.review-note {
  margin-top: 32px;
  border-left: 4px solid var(--lime);
  border-radius: 0 14px 14px 0;
  padding: 16px 18px;
  color: var(--muted);
  background: var(--blue-soft);
}

.review-note strong {
  color: var(--blue-deep);
}

.review-note p {
  margin: 4px 0 0;
  font-size: 13px;
}

.form-heading-row {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.form-section {
  min-width: 0;
  margin: 0;
  padding: 34px 0;
  border: 0;
}

.form-section + .form-section {
  border-top: 1px solid var(--line);
}

.form-section > legend {
  display: block;
  width: 100%;
  margin: 0 0 4px;
  padding: 0;
  color: var(--blue-deep);
  font-size: 21px;
  font-weight: 850;
  letter-spacing: -0.025em;
}

.field-section-note {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 13px;
}

.field-grid {
  display: grid;
  gap: 20px 16px;
}

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

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

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

.training-origin-block {
  margin-top: 4px;
  border: 1px solid rgba(21, 51, 133, 0.2);
  border-left: 5px solid var(--lime);
  border-radius: 14px;
  padding: 18px;
  background: var(--blue-soft);
}

.training-origin-heading {
  margin-bottom: 16px;
}

.training-origin-heading strong {
  color: var(--blue-deep);
  font-size: 15px;
}

.training-origin-heading p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.address-field {
  position: relative;
}

.address-suggestions {
  position: absolute;
  z-index: 30;
  top: calc(100% - 34px);
  right: 0;
  left: 0;
  overflow: hidden;
  border: 1px solid rgba(21, 51, 133, 0.22);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(11, 29, 80, 0.17);
}

.address-suggestion {
  display: flex;
  width: 100%;
  min-height: 58px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 3px;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 11px 14px;
  color: var(--ink);
  text-align: left;
  background: #fff;
  cursor: pointer;
}

.address-suggestion:last-child {
  border-bottom: 0;
}

.address-suggestion:hover,
.address-suggestion[aria-selected="true"],
.address-suggestion:focus-visible {
  outline: 0;
  background: var(--blue-soft);
}

.address-suggestion strong {
  font-size: 13px;
  line-height: 1.35;
}

.address-suggestion small {
  color: var(--muted);
  font-size: 11px;
}

.address-suggestion-message {
  padding: 14px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
  background: #fff;
}

.address-suggestion-message.is-error {
  color: #8b2c2c;
}

.address-confirmation {
  display: grid;
  gap: 2px;
  border-left: 4px solid var(--lime);
  border-radius: 0 10px 10px 0;
  padding: 11px 13px;
  color: var(--blue-deep);
  background: var(--blue-soft);
}

.address-confirmation strong {
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.address-confirmation span {
  color: var(--ink);
  font-size: 12px;
  font-weight: 750;
}

.phone-fields {
  display: grid;
  grid-template-columns: minmax(190px, 0.8fr) minmax(0, 1.2fr);
  gap: 16px;
}

.field {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 7px;
}

.field > span:first-child,
.field > label:first-child {
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
}

.field > span em {
  color: var(--muted);
  font-style: normal;
  font-weight: 600;
}

input,
select {
  width: 100%;
  min-height: 50px;
  border: 1px solid #cfd3ce;
  border-radius: 11px;
  padding: 11px 13px;
  color: var(--ink);
  background: white;
  transition: border 140ms ease, box-shadow 140ms ease;
}

input:hover,
select:hover {
  border-color: #9da8a4;
}

input:focus,
select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(20, 107, 93, 0.08);
  outline: none;
}

input:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(20, 107, 93, 0.32);
  outline-offset: 2px;
}

input:disabled,
select:disabled {
  color: #8b928f;
  cursor: not-allowed;
  background: #f0f1ee;
}

.field-hint,
.field-error {
  display: block;
  font-size: 11px;
  line-height: 1.35;
}

.field-hint {
  color: var(--muted);
}

.field-error,
.season-error {
  color: var(--danger);
  font-weight: 700;
}

.field.has-error input,
.field.has-error select {
  border-color: var(--danger);
  box-shadow: 0 0 0 3px rgba(163, 60, 60, 0.08);
}

.season-card.has-error {
  border-color: var(--danger);
  box-shadow: 0 0 0 3px rgba(163, 60, 60, 0.08);
}

.input-with-suffix {
  position: relative;
}

.input-with-suffix input {
  padding-right: 48px;
}

.input-with-suffix i {
  position: absolute;
  right: 14px;
  top: 50%;
  color: var(--muted);
  font-style: normal;
  font-size: 12px;
  transform: translateY(-50%);
}

.segmented-control {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 9px;
}

.segmented-control label {
  position: relative;
}

.segmented-control input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.segmented-control span {
  display: flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 1px solid #cfd3ce;
  border-radius: 11px;
  cursor: pointer;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
  background: white;
}

.segmented-control input:checked + span {
  color: white;
  border-color: var(--blue);
  background: var(--blue);
}

.segmented-control input:focus-visible + span {
  outline: 3px solid rgba(20, 107, 93, 0.3);
  outline-offset: 3px;
}

.season-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.season-card,
.experience-block,
.teams-block {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px;
  background: #fbfbf8;
}

.season-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.season-heading strong {
  color: var(--blue-deep);
  font-size: 14px;
}

.season-heading span {
  border-radius: 999px;
  padding: 4px 8px;
  color: var(--petrol);
  background: rgba(20, 107, 93, 0.1);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

.season-card .field + .field {
  margin-top: 14px;
}

.season-details {
  margin-top: 16px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.last-experience-card {
  margin-top: 14px;
  border: 1px solid rgba(21, 51, 133, 0.22);
  border-left: 5px solid var(--lime);
  border-radius: 16px;
  padding: 20px;
  background: var(--blue-soft);
}

.last-experience-card .field-section-note {
  margin-bottom: 18px;
}

.last-experience-card .season-heading {
  margin-bottom: 6px;
}

.no-prior-option {
  margin-top: 16px;
  border-radius: 11px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.72);
}

.check-row {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  cursor: pointer;
}

.check-row > input {
  width: 19px;
  min-height: 19px;
  flex: 0 0 19px;
  margin: 2px 0 0;
  accent-color: var(--blue);
}

.check-row > span {
  color: var(--ink);
  font-size: 13px;
  line-height: 1.4;
}

.check-row small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 10px;
}

.youth-option {
  border-radius: 10px;
  padding: 11px;
  background: var(--blue-soft);
}

.youth-competitions {
  min-width: 0;
  border: 0;
  margin: 16px 0 0;
  padding: 0;
}

.youth-competitions legend {
  margin-bottom: 9px;
  padding: 0;
  color: var(--ink);
  font-size: 12px;
  font-weight: 750;
}

.youth-competitions legend em {
  color: var(--muted);
  font-size: 10px;
  font-style: normal;
}

.youth-options {
  display: grid;
  gap: 8px;
}

.youth-empty {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

.season-error {
  min-height: 16px;
  margin: 10px 0 0;
  font-size: 11px;
}

.experience-block {
  margin-top: 28px;
}

.experience-block h4,
.teams-heading h4 {
  margin: 0 0 16px;
  color: var(--blue-deep);
  font-size: 15px;
}

.coach-experience-status {
  max-width: 620px;
}

.coach-max-details,
.coach-season-details {
  margin-top: 18px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.coach-season-details > [data-coach-season-italian-details] > .field + .field,
.coach-season-details > .field {
  margin-top: 14px;
}

.coach-assignment-block {
  border: 0;
}

.coach-assignment-heading {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.coach-assignment-heading h5 {
  margin: 0;
  color: var(--blue-deep);
  font-size: 16px;
}

.small-button {
  min-height: 40px;
  border: 1px solid var(--blue);
  border-radius: 999px;
  padding: 7px 11px;
  cursor: pointer;
  color: var(--blue);
  background: white;
  font-size: 10px;
  font-weight: 850;
}

.small-button:disabled {
  cursor: default;
  opacity: 0.5;
}

.coach-add-assignment {
  margin-top: 12px;
}

.coach-senior-row {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr 44px;
  gap: 14px;
  align-items: end;
  border: 1px solid var(--line);
  border-left: 5px solid var(--blue);
  border-radius: 14px;
  padding: 48px 14px 14px;
  background: white;
}

.coach-senior-row + .coach-senior-row {
  margin-top: 14px;
  border-left-color: var(--lime);
  background: var(--blue-soft);
}

.coach-senior-row-title {
  position: absolute;
  top: 15px;
  left: 14px;
  color: var(--blue-deep);
  font-size: 12px;
  font-weight: 850;
}

.remove-team {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  margin-bottom: 8px;
  cursor: pointer;
  color: var(--danger);
  background: white;
  font-size: 19px;
}

.remove-team:disabled {
  cursor: default;
  visibility: hidden;
}

.coach-youth-assignment {
  border: 1px solid rgba(21, 51, 133, 0.2);
  border-left: 5px solid var(--lime);
  border-radius: 14px;
  margin: 24px 0 0;
  padding: 18px;
  background: var(--blue-soft);
}

.coach-youth-assignment legend {
  padding: 0 8px;
  color: var(--blue-deep);
  font-size: 16px;
  font-weight: 850;
}

.coach-youth-note {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.coach-seasons {
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 14px;
}

.coach-seasons .season-card {
  padding: 26px;
}

.teams-block {
  margin-top: 28px;
}

.teams-heading {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 17px;
}

.teams-heading h4 {
  margin-bottom: 2px;
}

.teams-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

.program-sector-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.program-sector {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  background: var(--paper);
}

.program-sector h5 {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 15px;
}

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

.program-option {
  position: relative;
  cursor: pointer;
}

.program-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.program-option span {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 8px;
  background: white;
  color: var(--ink);
  font-size: 11px;
  font-weight: 750;
  text-align: center;
}

.program-option-youth span {
  border-color: rgba(21, 51, 133, 0.25);
  background: var(--ice);
}

.program-option input:checked + span {
  border-color: var(--blue);
  background: var(--blue);
  color: white;
}

.program-option input:focus-visible + span {
  outline: 3px solid var(--lime);
  outline-offset: 2px;
}

.program-sector-grid.has-error {
  border-radius: 18px;
  outline: 2px solid var(--danger);
  outline-offset: 3px;
}

.consent-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.consent-section legend {
  margin-bottom: 18px;
}

.consent-section .check-row {
  border: 1px solid var(--line);
  border-radius: 13px;
  padding: 14px;
  background: white;
}

.consent-section a {
  color: var(--blue);
  font-weight: 800;
}

.submit-area {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-top: 5px;
}

.submit-button {
  position: relative;
  min-width: 245px;
}

.submit-button[disabled] {
  cursor: wait;
  opacity: 0.7;
  transform: none;
}

.button-spinner {
  display: none;
  width: 17px;
  height: 17px;
  margin-left: 9px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 700ms linear infinite;
}

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

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

.submit-area p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

.form-status {
  margin-top: 22px;
  border-radius: 14px;
  padding: 17px 18px;
  font-size: 13px;
}

.form-status:empty {
  display: none;
}

.form-status strong {
  display: block;
  margin-bottom: 3px;
  font-size: 15px;
}

.form-status.is-success {
  color: #0d4b41;
  border: 1px solid rgba(20, 107, 93, 0.22);
  background: rgba(20, 107, 93, 0.1);
}

.form-status.is-error {
  color: #722b2b;
  border: 1px solid rgba(163, 60, 60, 0.22);
  background: rgba(163, 60, 60, 0.08);
}

.form-status:focus-visible {
  outline: 3px solid rgba(20, 107, 93, 0.32);
  outline-offset: 3px;
}

.submission-success {
  padding: 56px 44px 50px;
}

.success-mark {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 50%;
  color: var(--blue-deep);
  background: var(--lime);
  font-size: 25px;
  font-weight: 950;
}

.submission-success h3 {
  max-width: 620px;
  margin: 0;
  color: var(--blue-deep);
  font-size: clamp(32px, 5vw, 48px);
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.success-lead {
  max-width: 650px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.privacy-promise {
  margin-top: 34px;
  border: 1px solid rgba(217, 255, 85, 0.56);
  border-radius: 18px;
  padding: 24px;
  color: rgba(255, 255, 255, 0.78);
  background: var(--blue-deep);
}

.privacy-promise > span {
  display: block;
  margin-bottom: 12px;
  color: var(--lime);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.privacy-promise p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
}

.privacy-promise p + p {
  margin-top: 8px;
}

.preview-restart {
  margin-top: 26px;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}

.closing-section {
  padding: 95px 0;
  background: var(--ivory);
}

.principle-section {
  padding-top: 0;
}

.closing-card {
  border-radius: var(--radius-lg);
  padding: clamp(38px, 7vw, 80px);
  color: white;
  text-align: center;
  background:
    linear-gradient(rgba(20, 107, 93, 0.97), rgba(24, 37, 35, 0.98)),
    var(--petrol);
}

.closing-card h2 {
  margin: 0;
  font-size: clamp(34px, 4.5vw, 56px);
  letter-spacing: -0.05em;
  line-height: 1.04;
}

.closing-card > p:not(.eyebrow) {
  max-width: 620px;
  margin: 20px auto 30px;
  color: rgba(255, 255, 255, 0.68);
}

.closing-card .eyebrow {
  color: var(--lime);
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 38px 0;
  background: var(--paper);
}

.footer-inner {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
}

.wordmark-footer {
  gap: 8px;
  color: var(--blue-deep);
}

.wordmark-mark-footer {
  width: 32px;
  height: 32px;
}

.footer-inner p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.footer-inner nav {
  display: flex;
  gap: 22px;
  color: var(--muted);
  font-size: 12px;
}

.footer-inner a {
  font-weight: 800;
  text-decoration: none;
}

.legal-page {
  background: var(--paper);
}

.legal-page .site-header {
  position: static;
  color: var(--blue-deep);
  background: var(--ivory);
}

.legal-page .header-inner {
  border-color: var(--line);
}

.legal-page .wordmark {
  color: var(--blue-deep);
}

.legal-shell {
  max-width: 820px;
  padding: 70px 0 110px;
}

.draft-banner {
  margin-bottom: 50px;
  border: 1px solid #d7b95f;
  border-radius: 12px;
  padding: 13px 15px;
  color: #5f4c18;
  background: #fff6d8;
  font-size: 13px;
}

.legal-shell h1 {
  margin: 0;
  color: var(--blue-deep);
  font-size: clamp(40px, 7vw, 65px);
  letter-spacing: -0.055em;
  line-height: 1;
}

.legal-lead {
  margin: 24px 0 50px;
  color: var(--muted);
  font-size: 18px;
}

.legal-section {
  margin-bottom: 40px;
  border-top: 1px solid var(--line);
  padding-top: 30px;
}

.legal-section h2 {
  color: var(--blue-deep);
}

.confirmation-shell {
  max-width: 820px;
  padding: 54px 0 110px;
}

.confirmation-card {
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 46px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.confirmation-card h1 {
  max-width: 650px;
  margin: 0;
  color: var(--blue-deep);
  font-size: clamp(38px, 7vw, 58px);
  letter-spacing: -0.055em;
  line-height: 1;
}

.confirmation-lead {
  max-width: 650px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.confirmation-card .privacy-promise {
  margin-bottom: 28px;
}

.legal-section li + li {
  margin-top: 9px;
}

/* Palette principale: richiama il blu della prima landing senza duplicare pagina o contenuti. */
html[data-palette="originale"] .site-header {
  color: white;
}

html[data-palette="originale"] .header-inner {
  border-bottom-color: rgba(255, 255, 255, 0.17);
}

html[data-palette="originale"] .site-header .wordmark {
  color: white;
}

html[data-palette="originale"] .site-header .wordmark-din,
html[data-palette="originale"] .hero-section .eyebrow {
  color: var(--lime);
  box-shadow: none;
}

html[data-palette="originale"] .site-header .wordmark-volley {
  color: white;
}

html[data-palette="originale"] .pilot-pill {
  color: white;
  border-color: rgba(255, 255, 255, 0.3);
}

html[data-palette="originale"] .pilot-pill > span,
html[data-palette="originale"] .matching-status i {
  background: var(--lime);
  box-shadow: 0 0 0 5px rgba(217, 255, 85, 0.13);
}

html[data-palette="originale"] .hero-section {
  color: white;
  background:
    radial-gradient(circle at 82% 18%, rgba(217, 255, 85, 0.14), transparent 27%),
    radial-gradient(circle at 8% 86%, rgba(255, 255, 255, 0.07), transparent 24%),
    linear-gradient(135deg, #153385 0%, #10286c 55%, #0b1d50 100%);
}

html[data-palette="originale"] .hero-section::before,
html[data-palette="originale"] .hero-section::after {
  border-color: rgba(255, 255, 255, 0.08);
}

html[data-palette="originale"] .hero-question,
html[data-palette="originale"] .hero-answer {
  color: white;
}

html[data-palette="originale"] .hero-copy .brand-volley {
  color: white;
}

html[data-palette="originale"] .hero-copy .brand-din {
  color: var(--lime);
  box-shadow: none;
}

html[data-palette="originale"] .hero-lead,
html[data-palette="originale"] .hero-principle-trust p {
  color: rgba(255, 255, 255, 0.72);
}

html[data-palette="originale"] .hero-launch-note {
  border-left-color: rgba(255, 255, 255, 0.38);
  color: rgba(255, 255, 255, 0.7);
}

html[data-palette="originale"] .hero-launch-note strong {
  color: white;
}

html[data-palette="originale"] .button-hero {
  color: #0b1d50;
  background: var(--lime);
  box-shadow: 0 14px 32px rgba(3, 13, 50, 0.3);
}

html[data-palette="originale"] .text-link-light {
  color: white;
}

html[data-palette="originale"] .proof-strip {
  border-top: 0;
  border-bottom-color: rgba(255, 255, 255, 0.16);
  background: #10286c;
}

html[data-palette="originale"] .proof-grid p {
  color: rgba(255, 255, 255, 0.72);
}

html[data-palette="originale"] .proof-grid p + p {
  border-left-color: rgba(255, 255, 255, 0.16);
}

html[data-palette="originale"] .proof-grid strong {
  color: var(--lime);
}

html[data-palette="originale"] .how-section {
  background: var(--ivory);
}

html[data-palette="originale"] .registration-section {
  border-top-color: rgba(21, 51, 133, 0.15);
  background: linear-gradient(180deg, var(--blue-soft), #f8f9fd);
}

html[data-palette="originale"] .registration-section::after {
  border-color: rgba(21, 51, 133, 0.1);
}

html[data-palette="originale"] .closing-card {
  background:
    linear-gradient(rgba(21, 51, 133, 0.97), rgba(11, 29, 80, 0.99)),
    var(--blue);
}

/* Mantiene il CTA nel primo schermo dei portatili con altezza ridotta. */
@media (min-width: 981px) and (max-height: 820px) {
  .hero-section {
    min-height: 660px;
    padding: 118px 0 66px;
  }

  .hero-grid {
    gap: clamp(42px, 5vw, 70px);
  }

  .hero-copy h1 {
    font-size: clamp(42px, 4.75vw, 64px);
  }

  .hero-lead {
    margin-top: 20px;
    line-height: 1.5;
  }

  .hero-launch-note {
    margin-top: 12px;
  }

  .hero-principles {
    gap: 6px;
    margin-top: 16px;
  }

  .hero-principles article {
    padding-top: 10px;
  }

  .hero-actions {
    margin-top: 24px;
  }

  .matching-card {
    min-height: 0;
    padding: 25px;
  }

  .matching-card > h2 {
    margin: 20px 0 16px;
  }

  .matching-flow li {
    padding: 11px;
  }

  .matching-note {
    margin-top: 13px;
  }
}

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

  .matching-card {
    width: min(620px, 100%);
  }

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

  .registration-intro {
    position: static;
    max-width: 710px;
  }

  .role-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .role-card {
    min-height: 160px;
  }

  .role-icon {
    margin: 14px 0 9px;
  }

  .step-card,
  .step-card.featured {
    min-height: 220px;
    transform: none;
  }

  .step-card h3 {
    margin-top: 34px;
  }
}

@media (max-width: 760px) {
  .page-shell {
    width: min(100% - 32px, var(--shell));
  }

  .header-inner {
    min-height: 64px;
    gap: 14px;
  }

  .wordmark {
    font-size: 23px;
  }

  .wordmark-mark {
    width: 30px;
    height: 30px;
  }

  .wordmark-mark-footer {
    width: 30px;
    height: 30px;
  }

  .header-actions {
    gap: 12px;
  }

  .pilot-pill {
    padding: 6px 10px;
    font-size: 10px;
  }

  .header-link {
    display: none;
  }

  .hero-section {
    min-height: auto;
    padding: 96px 0 58px;
  }

  .hero-grid {
    gap: 30px;
  }

  .hero-copy .eyebrow {
    margin-bottom: 10px;
    font-size: 10px;
    letter-spacing: 0.13em;
  }

  .hero-copy h1 {
    max-width: 360px;
    font-size: clamp(36px, 10.4vw, 42px);
    line-height: 1;
  }

  .hero-question {
    margin-bottom: 6px;
    font-size: 0.62em;
  }

  .hero-lead {
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.52;
  }

  .hero-principles {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 18px;
  }

  .hero-principles article {
    min-height: 0;
    padding: 16px;
  }

  .hero-principles p {
    margin-top: 0;
    font-size: 13px;
    line-height: 1.43;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
    margin-top: 25px;
  }

  .hero-actions .button {
    width: 100%;
    min-height: 50px;
    padding-inline: 18px;
    font-size: 14px;
  }

  .hero-actions .text-link {
    align-self: center;
    font-size: 14px;
  }

  .matching-card {
    min-height: 0;
    border-radius: 18px;
    padding: 18px 15px;
  }

  .matching-topline {
    align-items: flex-start;
    font-size: 9px;
  }

  .matching-card > h2 {
    margin: 18px 0 16px;
    font-size: 24px;
  }

  .matching-flow li {
    grid-template-columns: 36px 1fr;
    gap: 10px;
    padding: 10px;
  }

  .matching-flow li > span {
    width: 36px;
    height: 36px;
  }

  .matching-note {
    margin-top: 14px;
    padding: 13px 14px;
  }

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

  .proof-grid p + p {
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    border-left: 0;
  }

  html[data-palette="originale"] .proof-grid p + p {
    border-top-color: rgba(255, 255, 255, 0.16);
  }

  .proof-grid p {
    padding: 24px 16px;
  }

  .proof-grid strong {
    font-size: 18px;
  }

  .section-heading {
    display: block;
  }

  .how-section,
  .registration-section,
  .closing-section {
    padding-block: 64px;
  }

  .principle-section {
    padding-top: 0;
  }

  .registration-section {
    border-top: 6px solid var(--lime);
  }

  .registration-card {
    border-radius: 22px;
  }

  .progress-list li {
    min-height: 62px;
    gap: 0;
  }

  .progress-list em {
    display: none;
  }

  .form-panel {
    padding: 28px 20px 34px;
  }

  .binary-actions,
  .two-columns,
  .three-columns,
  .season-grid,
  .phone-fields {
    grid-template-columns: 1fr;
  }

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

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

  .program-sector-grid {
    grid-template-columns: 1fr;
  }

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

  .coach-senior-row {
    grid-template-columns: 1fr 44px;
    padding: 48px 14px 14px;
  }

  .coach-senior-row .field {
    grid-column: 1 / -1;
  }

  .coach-senior-row .remove-team {
    position: absolute;
    top: 11px;
    right: 12px;
    margin: 0;
  }

  .coach-senior-row .field:first-child {
    padding-right: 0;
  }

  .coach-youth-assignment {
    padding: 16px 14px;
  }

  .coach-add-assignment {
    width: 100%;
  }

  .teams-heading,
  .submit-area {
    align-items: stretch;
    flex-direction: column;
  }

  .form-navigation,
  .form-navigation-submit {
    align-items: stretch;
    flex-direction: column;
  }

  .next-button {
    width: 100%;
    min-width: 0;
  }

  .submit-button {
    width: 100%;
  }

  .submission-success {
    padding: 38px 20px 34px;
  }

  .privacy-promise {
    margin-top: 26px;
    padding: 18px;
  }

  .preview-restart {
    width: 100%;
  }

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

  .confirmation-shell {
    padding-top: 30px;
  }

  .confirmation-card {
    border-radius: 20px;
    padding: 30px 20px;
  }
}

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

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