:root {
  --red: #e2231a;
  --red-dark: #8f1d21;
  --bg: #0b0b0c;
  --surface: #141417;
  --surface-2: #1b1b1f;
  --text: #f5f5f7;
  --muted: #b1b1b8;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.16);
  --radius: 8px;
  --bs-body-bg: var(--bg);
  --bs-body-color: var(--text);
  --bs-primary: var(--red);
  --bs-primary-rgb: 226, 35, 26;
  --bs-secondary-color: var(--muted);
  --bs-border-color: var(--line);
  --bs-border-radius: var(--radius);
  --bs-font-sans-serif: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --bs-link-color: var(--text);
  --bs-link-hover-color: #fff;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  min-width: 320px;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 84% 0%, rgba(226, 35, 26, 0.15), transparent 28rem),
    radial-gradient(circle at 12% 20%, rgba(255, 255, 255, 0.045), transparent 24rem),
    var(--bg);
  color: var(--text);
  font-family: var(--bs-font-sans-serif);
}

@supports (overflow: clip) {
  html,
  body {
    overflow-x: clip;
  }
}

body.menu-open {
  overflow: hidden;
}

a {
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: 1240px;
  padding-right: clamp(20px, 3vw, 40px);
  padding-left: clamp(20px, 3vw, 40px);
}

.site-header,
main,
.section,
.hero,
.container {
  max-width: 100%;
}

.site-header,
main,
.section,
.site-footer {
  overflow-x: hidden;
}

@supports (overflow: clip) {
  .site-header,
  main,
  .section,
  .site-footer {
  overflow-x: clip;
  }
}

.row > *,
.contest-form > * {
  min-width: 0;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid var(--line);
  background: rgba(11, 11, 12, 0.78);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
}

.brand-lenovo {
  display: block;
  width: 93px;
  height: auto;
}

.brand-x,
.desktop-nav,
.mobile-nav a,
.site-footer,
.hero-date,
.section-heading p:not(.eyebrow),
.timeline-card p,
.info-card p,
.step-card p,
.asset-card p,
.success-page p {
  color: var(--muted);
}

.brand-ducati {
  display: block;
  width: 90px;
  height: auto;
  max-height: 32px;
  object-fit: contain;
}

.brand-ducati--shield {
  width: 38px;
  max-height: 42px;
}

.desktop-nav,
.site-footer nav {
  font-size: 0.9rem;
}

.desktop-nav a,
.site-footer a,
.mobile-nav a {
  color: inherit;
  transition: color 160ms ease;
}

.desktop-nav a:hover,
.site-footer a:hover,
.mobile-nav a:hover {
  color: var(--text);
}

.btn {
  --bs-btn-border-radius: 6px;
  --bs-btn-font-weight: 700;
  --bs-btn-padding-x: 1.35rem;
  --bs-btn-padding-y: 0.72rem;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  white-space: nowrap;
  transition:
    transform 160ms ease,
    background-color 160ms ease,
    border-color 160ms ease;
}

.hero-actions .btn {
  min-width: 142px;
}

.form-actions .btn {
  min-width: 136px;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  --bs-btn-bg: var(--red);
  --bs-btn-border-color: var(--red);
  --bs-btn-hover-bg: #f02b22;
  --bs-btn-hover-border-color: #f02b22;
  --bs-btn-active-bg: var(--red-dark);
  --bs-btn-active-border-color: var(--red-dark);
  background-color: var(--red) !important;
  border-color: var(--red) !important;
  color: #fff !important;
  box-shadow: 0 14px 32px rgba(226, 35, 26, 0.24);
}

.btn-primary:hover {
  background-color: #f02b22 !important;
  border-color: #f02b22 !important;
  color: #fff !important;
}

.btn-outline-light {
  --bs-btn-color: var(--text);
  --bs-btn-border-color: var(--line-strong);
  --bs-btn-hover-color: var(--text);
  --bs-btn-hover-bg: rgba(255, 255, 255, 0.06);
  --bs-btn-hover-border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.025);
  border-color: var(--line-strong) !important;
  color: var(--text) !important;
}

.btn-outline-light:hover {
  background-color: rgba(255, 255, 255, 0.06) !important;
  border-color: rgba(255, 255, 255, 0.28) !important;
  color: var(--text) !important;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 160ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  transform: translateY(3px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-4px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  border-top: 1px solid var(--line);
  padding: 18px 20px 24px;
  background: rgba(11, 11, 12, 0.96);
}

.mobile-nav a {
  display: block;
  padding: 14px 0;
  font-weight: 600;
}

.lang-switch {
  align-items: center;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px;
  background: rgba(255, 255, 255, 0.035);
}

.mobile-nav .lang-switch {
  display: inline-flex;
  margin-top: 14px;
}

.lang-switch button {
  min-width: 38px;
  border: 0;
  border-radius: 999px;
  padding: 6px 10px;
  background: transparent;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.lang-switch button.is-active {
  background: var(--red);
  color: #fff;
}

.hero {
  position: relative;
  min-height: 760px;
  padding-top: 72px;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.hero-carousel,
.hero-image,
.hero-overlay,
.speed-layer {
  position: absolute;
  inset: 0;
}

.hero-carousel {
  z-index: 0;
  overflow: hidden;
  background: #09090a;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(1.035);
  filter: blur(12px) saturate(1.08) contrast(1.04) brightness(0.88);
  transition:
    opacity 820ms ease,
    transform 1800ms cubic-bezier(0.17, 0.84, 0.28, 1),
    filter 1100ms ease;
  will-change: transform, filter, opacity;
}

.hero-image--keyvisual {
  object-position: 63% center;
}

.hero-image--track-01 {
  object-position: 82% 34%;
}

.hero-image--track-02 {
  object-position: 42% 48%;
}

.hero-image--track-03 {
  object-position: 64% 42%;
}

.hero-image.is-active {
  opacity: 1;
  filter: blur(0) saturate(1.08) contrast(1.05) brightness(1.08);
  transform: scale(1.055);
}

.hero-image.is-exiting {
  opacity: 0;
  transform: scale(1.12) translate3d(-3.5%, 0, 0);
  filter: blur(18px) saturate(1.18) contrast(1.1) brightness(0.78);
}

body.is-loaded .hero-image.is-active,
.hero-image.is-active.is-speeding {
  animation: hero-speed-lock 1050ms cubic-bezier(0.17, 0.84, 0.28, 1) 120ms both;
}

@keyframes hero-speed-lock {
  0% {
    opacity: 0.36;
    transform: scale(1.13) translate3d(96px, 0, 0);
    filter: blur(18px) saturate(1.18) contrast(1.12) brightness(0.82);
  }
  28% {
    opacity: 0.68;
    transform: scale(1.105) translate3d(-68px, 0, 0);
    filter: blur(11px) saturate(1.2) contrast(1.12) brightness(0.94);
  }
  54% {
    opacity: 0.94;
    transform: scale(1.068) translate3d(32px, 0, 0);
    filter: blur(4px) saturate(1.14) contrast(1.08) brightness(1.04);
  }
  100% {
    opacity: 1;
    transform: scale(1.035);
    filter: blur(0) saturate(1.08) contrast(1.05) brightness(1.12);
  }
}

.hero-overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, #0b0b0c 0%, rgba(11, 11, 12, 0.86) 28%, rgba(11, 11, 12, 0.1) 62%, rgba(11, 11, 12, 0.22) 100%),
    linear-gradient(180deg, rgba(11, 11, 12, 0), rgba(11, 11, 12, 0.68) 96%);
}

.speed-layer {
  z-index: 2;
  pointer-events: none;
  opacity: 0.72;
  overflow: hidden;
}

.flare {
  position: absolute;
  width: 52vw;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(226, 35, 26, 0.92), rgba(255, 255, 255, 0.5), transparent);
  animation: flare-run 3.6s cubic-bezier(0.7, 0, 0.2, 1) infinite;
}

.flare::after {
  content: "";
  position: absolute;
  inset: -5px 15%;
  background: inherit;
  filter: blur(12px);
  opacity: 0.34;
}

.flare-one {
  top: 28%;
  left: 42%;
}

.flare-two {
  top: 48%;
  left: 28%;
  width: 38vw;
  opacity: 0.72;
  animation-delay: 1.1s;
  animation-duration: 4.8s;
}

.flare-three {
  top: 70%;
  left: 52%;
  width: 30vw;
  opacity: 0.46;
  animation-delay: 2.2s;
  animation-duration: 5.4s;
}

@keyframes flare-run {
  0% {
    transform: rotate(-18deg) translateX(-125%);
    opacity: 0;
  }
  12% {
    opacity: 0.85;
  }
  100% {
    transform: rotate(-18deg) translateX(165%);
    opacity: 0;
  }
}

.hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  min-height: 688px;
  flex-direction: column;
  justify-content: center;
  padding-block: 72px;
  color: var(--text);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--red);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.faq-section h2,
h3 {
  color: var(--text);
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: 0;
}

.hero h1 {
  position: relative;
  max-width: min(850px, 100%);
  margin: 0;
  font-size: clamp(2.6rem, 7vw, 6.3rem);
  font-weight: 650;
  line-height: 0.94;
  color: #fff;
  text-shadow: 0 18px 60px rgba(0, 0, 0, 0.48);
  overflow-wrap: normal;
}

.hero h1::after {
  content: "";
  position: absolute;
  left: -6%;
  top: 50%;
  z-index: -1;
  width: min(46vw, 620px);
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(226, 35, 26, 0.95), rgba(255, 255, 255, 0.68), transparent);
  box-shadow:
    0 0 18px rgba(226, 35, 26, 0.42),
    0 0 54px rgba(226, 35, 26, 0.22);
  opacity: 0.78;
  transform: rotate(-8deg) translateX(-18%);
  animation: title-flare-pass 4.8s cubic-bezier(0.7, 0, 0.2, 1) 900ms infinite;
  pointer-events: none;
}

@keyframes title-flare-pass {
  0% {
    opacity: 0;
    transform: rotate(-8deg) translateX(-48%);
  }
  16% {
    opacity: 0.88;
  }
  54% {
    opacity: 0.32;
  }
  100% {
    opacity: 0;
    transform: rotate(-8deg) translateX(72%);
  }
}

.hero h1 span {
  display: inline;
}

.hero-subtitle {
  max-width: 660px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 1.18rem;
  line-height: 1.7;
}

.hero-actions,
.hero-meta {
  margin-top: 34px;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 18px;
}

.hero-date {
  margin: 0;
  font-size: 0.95rem;
}

.section,
.faq-section {
  position: relative;
  border-top: 1px solid var(--line);
  padding-block: 76px;
}

.section::before,
.faq-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 88% 18%, rgba(226, 35, 26, 0.045), transparent 28rem),
    linear-gradient(110deg, transparent, rgba(255, 255, 255, 0.01), transparent 58%);
}

.section > .container,
.faq-section > .container {
  position: relative;
  z-index: 1;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 36px;
}

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

.section-heading h2,
.faq-section h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 650;
  line-height: 1.02;
}

.section-heading h2 sup {
  color: rgba(245, 245, 247, 0.55);
  font-size: 0.36em;
  vertical-align: super;
}

.section-heading p:not(.eyebrow) {
  margin: 16px 0 0;
}

.timeline-list,
.card-grid,
.asset-grid {
  padding: 0;
  margin: 0;
  list-style: none;
}

.timeline-list {
  position: relative;
}

.timeline-list::before {
  content: "";
  position: absolute;
  left: 2.25rem;
  right: 2.25rem;
  top: 78%;
  height: 2px;
  z-index: 0;
  border-radius: 999px;
  background:
    linear-gradient(90deg, transparent 0%, rgba(226, 35, 26, 0.14) 10%, rgba(226, 35, 26, 0.72) 18%, rgba(255, 255, 255, 0.62) 23%, rgba(226, 35, 26, 0.44) 30%, transparent 42%, transparent 56%, rgba(226, 35, 26, 0.18) 66%, rgba(226, 35, 26, 0.58) 76%, transparent 100%);
  background-size: 220% 100%;
  box-shadow:
    0 0 18px rgba(226, 35, 26, 0.26),
    0 0 42px rgba(226, 35, 26, 0.12);
  animation: timeline-road-flow 13s linear infinite;
  pointer-events: none;
}

.timeline-list::after {
  content: "";
  position: absolute;
  left: 2.25rem;
  right: 2.25rem;
  top: calc(78% - 4px);
  height: 10px;
  z-index: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent 0%, rgba(226, 35, 26, 0.04) 12%, rgba(226, 35, 26, 0.22) 24%, rgba(255, 255, 255, 0.08) 30%, transparent 44%, transparent 58%, rgba(226, 35, 26, 0.12) 76%, transparent 100%);
  background-size: 220% 100%;
  filter: blur(8px);
  animation: timeline-road-flow 13s linear infinite;
  pointer-events: none;
}

@keyframes timeline-road-flow {
  from {
    background-position: -120% 50%;
  }
  to {
    background-position: 120% 50%;
  }
}

.timeline-card,
.info-card,
.step-card,
.asset-card,
.jury-panel,
.guidelines-panel,
.communication-panel,
.form-steps,
.form-panel,
.faq-item {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.018) 42%, rgba(226, 35, 26, 0.035)),
    rgba(20, 20, 23, 0.66);
  backdrop-filter: blur(10px) saturate(1.08);
  -webkit-backdrop-filter: blur(10px) saturate(1.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.075),
    0 18px 52px rgba(0, 0, 0, 0.18);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.timeline-card {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.012) 40%, rgba(226, 35, 26, 0.028)),
    rgba(8, 8, 10, 0.88);
  backdrop-filter: blur(8px) saturate(1.04);
  -webkit-backdrop-filter: blur(8px) saturate(1.04);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.065),
    0 18px 52px rgba(0, 0, 0, 0.28);
}

.timeline-card:hover {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.016) 40%, rgba(226, 35, 26, 0.04)),
    rgba(10, 10, 12, 0.92);
}

.timeline-card::before,
.info-card::before,
.step-card::before,
.asset-card::before,
.jury-panel::before,
.guidelines-panel::before,
.communication-panel::before,
.form-steps::before,
.form-panel::before,
.faq-item::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.1), transparent 32%, rgba(226, 35, 26, 0.05));
  opacity: 0.32;
}

.timeline-card > *,
.info-card > *,
.step-card > *,
.asset-card > *,
.jury-panel > *,
.guidelines-panel > *,
.communication-panel > *,
.form-steps > *,
.form-panel > *,
.faq-item > * {
  position: relative;
  z-index: 2;
}

.timeline-card:hover,
.info-card:hover,
.step-card:hover,
.asset-card:hover,
.jury-panel:hover,
.guidelines-panel:hover,
.communication-panel:hover,
.faq-item:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.022) 42%, rgba(226, 35, 26, 0.045)),
    rgba(22, 22, 25, 0.7);
}

.timeline-card,
.info-card,
.step-card,
.asset-card {
  padding: 24px;
}

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

.jury-panel,
.guidelines-panel,
.communication-panel {
  overflow: hidden;
  padding: clamp(24px, 3vw, 34px);
}

.jury-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: end;
}

.jury-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.jury-grid article {
  position: relative;
  display: flex;
  min-height: 286px;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 18px;
  background:
    radial-gradient(circle at 50% 14%, rgba(226, 35, 26, 0.2), transparent 38%),
    rgba(0, 0, 0, 0.22);
}

.jury-grid article::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  height: 48%;
  background:
    linear-gradient(180deg, transparent 0%, rgba(8, 8, 10, 0.56) 42%, rgba(8, 8, 10, 0.94) 100%),
    radial-gradient(circle at 50% 100%, rgba(226, 35, 26, 0.14), transparent 58%);
  pointer-events: none;
}

.jury-portrait {
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 1;
  display: block;
  width: min(220px, 96%);
  height: 252px;
  object-fit: contain;
  object-position: center bottom;
  margin-top: 18px;
  transform: translateX(-50%);
  filter:
    saturate(0.92)
    contrast(1.05)
    drop-shadow(0 22px 34px rgba(0, 0, 0, 0.34))
    drop-shadow(0 0 28px rgba(226, 35, 26, 0.14));
  transition:
    transform 180ms ease,
    filter 180ms ease;
}

.jury-grid article:hover .jury-portrait {
  transform: translateX(-50%) translateY(-3px) scale(1.035);
  filter:
    saturate(1)
    contrast(1.08)
    drop-shadow(0 26px 38px rgba(0, 0, 0, 0.4))
    drop-shadow(0 0 34px rgba(226, 35, 26, 0.2));
}

.jury-grid strong,
.communication-tags span {
  color: var(--text);
  font-weight: 800;
}

.jury-grid strong,
.jury-grid article > span {
  position: relative;
  z-index: 3;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.58);
}

.jury-grid span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.timeline-card {
  min-height: 230px;
  overflow: hidden;
  padding-right: clamp(72px, 7vw, 108px);
}

.roadmap-visual {
  position: absolute;
  right: -26px;
  top: 18px;
  z-index: 1;
  width: clamp(94px, 9vw, 132px);
  height: auto;
  opacity: 0.15;
  transform: rotate(-7deg);
  filter: drop-shadow(0 0 26px rgba(226, 35, 26, 0.28));
  pointer-events: none;
}

.timeline-card:hover .roadmap-visual {
  opacity: 0.24;
  transform: rotate(-4deg) scale(1.04);
}

.info-card {
  min-height: 206px;
  overflow: hidden;
  padding-right: clamp(118px, 15vw, 170px);
}

.info-card-wide {
  min-height: auto;
  padding-right: 24px;
}

.experience-visual {
  position: absolute;
  right: -42px;
  bottom: -38px;
  z-index: 1;
  width: clamp(168px, 22vw, 250px);
  height: auto;
  opacity: 0.28;
  transform: rotate(-5deg);
  filter: saturate(1.06) contrast(1.04) drop-shadow(0 0 34px rgba(226, 35, 26, 0.2));
  pointer-events: none;
}

.info-card:hover .experience-visual {
  opacity: 0.38;
  transform: rotate(-3deg) scale(1.035);
}

.timeline-index {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--red);
  border-radius: 50%;
  margin-bottom: 28px;
  background: rgba(143, 29, 33, 0.72);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}

.card-icon {
  position: absolute;
  top: 24px;
  right: 22px;
  color: var(--red);
  font-size: 1.1rem;
  line-height: 1;
}

h3 {
  margin: 0;
  font-size: 1.1rem;
}

.timeline-card time {
  display: block;
  margin-top: 16px;
  font-weight: 700;
}

.timeline-card p,
.info-card p,
.step-card p,
.asset-card p {
  margin: 12px 0 0;
  font-size: 0.92rem;
  line-height: 1.65;
}

.section-note {
  margin: 22px 0 0;
  color: rgba(245, 245, 247, 0.5);
  font-size: 0.86rem;
  line-height: 1.5;
}

.red-icon,
.step-number {
  color: var(--red);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}

.step-number {
  font-size: 2.3rem;
}

.red-icon {
  display: block;
  margin-bottom: 26px;
  color: var(--red);
  font-size: 2.1rem;
  line-height: 1;
}

.steps-grid {
  display: grid;
  gap: 16px;
}

.step-card {
  display: grid;
  grid-template-columns: 74px 1fr;
  align-items: start;
  overflow: hidden;
}

.step-card h3,
.step-card p {
  position: relative;
  z-index: 2;
  grid-column: 2;
}

.step-card p {
  max-width: 42ch;
}

.step-card .step-number {
  position: relative;
  z-index: 2;
  grid-row: 1 / span 2;
}

.step-watermark {
  position: absolute;
  right: clamp(18px, 4vw, 34px);
  top: 50%;
  z-index: 1;
  width: clamp(96px, 18vw, 148px);
  height: auto;
  opacity: 0.085;
  transform: translateY(-50%) rotate(-6deg);
  pointer-events: none;
  filter: drop-shadow(0 0 26px rgba(226, 35, 26, 0.24));
}

.step-card:hover .step-watermark {
  opacity: 0.14;
  transform: translateY(-50%) rotate(-4deg) scale(1.04);
}

.asset-card {
  min-height: 278px;
  display: flex;
  flex-direction: column;
  padding: clamp(22px, 2vw, 28px);
}

.file-icon {
  display: grid;
  width: 108px;
  height: 108px;
  place-items: center;
  border: 1px solid rgba(226, 35, 26, 0.5);
  border-radius: 7px;
  margin-bottom: 26px;
  background: rgba(226, 35, 26, 0.035);
  color: var(--red);
  font-size: 3rem;
}

.logo-file-icon img {
  display: block;
  width: 78px;
  max-height: 52px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(23%) sepia(95%) saturate(4145%) hue-rotate(354deg) brightness(98%) contrast(105%);
}

.logo-file-icon img[src*="ducati"] {
  width: 86px;
}

.asset-card h3 {
  margin-bottom: 18px;
}

.asset-card p {
  margin-top: 0;
  margin-bottom: 18px;
}

.asset-card a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 42px;
  margin-top: auto;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0 14px;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 700;
}

.guidelines-panel {
  margin-top: 18px;
}

.guidelines-toggle {
  position: relative;
  z-index: 2;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--text);
  text-align: left;
}

.guidelines-toggle .eyebrow {
  display: block;
  margin-bottom: 10px;
}

.guidelines-toggle strong {
  display: block;
  color: var(--text);
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  line-height: 1.14;
}

.guidelines-toggle i {
  display: grid;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--text);
  transition: transform 180ms ease;
}

.guidelines-toggle[aria-expanded="true"] i {
  transform: rotate(180deg);
}

.guidelines-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 48px);
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

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

.communication-panel h2 {
  margin-bottom: 14px;
}

.guidelines-content p,
.communication-panel p {
  max-width: 58ch;
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

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

.guidelines-list li,
.submission-limits li {
  position: relative;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.55;
}

.guidelines-list li::before,
.submission-limits li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 18px rgba(226, 35, 26, 0.36);
}

.form-steps {
  align-self: start;
  position: sticky;
  top: 96px;
  padding: 14px;
}

.form-step {
  width: 100%;
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  padding: 14px;
  color: var(--muted);
  text-align: left;
}

.form-step span {
  grid-row: span 2;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  font-weight: 800;
}

.form-step small {
  font-size: 0.78rem;
}

.form-step.is-active,
.form-step.is-complete {
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
}

.form-step.is-active span,
.form-step.is-complete span {
  border-color: var(--red);
  background: var(--red);
  color: white;
}

.form-panel {
  min-height: 560px;
  padding: 28px;
}

.form-progress {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 34px;
}

.form-progress span {
  height: 6px;
  border-radius: 50rem;
  background: rgba(255, 255, 255, 0.1);
}

.form-progress span.is-active {
  background: var(--red);
}

.form-page {
  display: none;
}

.form-page.is-active {
  display: block;
}

.form-page h3 {
  margin-bottom: 24px;
}

.form-page-intro {
  max-width: 58ch;
  margin: -10px 0 18px;
  color: var(--muted);
  line-height: 1.6;
}

label {
  position: relative;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
}

.required-tag {
  display: inline-flex;
  align-items: center;
  min-height: 18px;
  margin-left: 8px;
  border: 1px solid rgba(226, 35, 26, 0.42);
  border-radius: 999px;
  padding: 0 7px;
  color: var(--red);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  vertical-align: 1px;
}

.form-control {
  height: 46px;
  margin-top: 8px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: rgba(0, 0, 0, 0.22);
  color: var(--text);
}

.form-control::placeholder {
  color: rgba(245, 245, 247, 0.38);
}

.form-control:focus {
  border-color: rgba(226, 35, 26, 0.78);
  background: rgba(0, 0, 0, 0.28);
  color: var(--text);
  box-shadow: 0 0 0 3px rgba(226, 35, 26, 0.18);
}

.form-control[type="date"] {
  color-scheme: dark !important;
}

.form-control[type="date"]::-webkit-calendar-picker-indicator {
  opacity: 1;
  filter: brightness(0) invert(1);
  cursor: pointer;
}

.form-control.is-invalid {
  border-color: rgba(226, 35, 26, 0.95);
  background: rgba(226, 35, 26, 0.08);
  box-shadow: 0 0 0 3px rgba(226, 35, 26, 0.14);
}

label.has-error {
  color: var(--text);
}

label.has-error .required-tag,
.consent-row.has-error .required-tag {
  background: rgba(226, 35, 26, 0.14);
  border-color: rgba(226, 35, 26, 0.72);
}

.upload-zone {
  display: grid;
  min-height: 290px;
  place-items: center;
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius);
  margin-top: 22px;
  padding: 36px;
  background: rgba(0, 0, 0, 0.2);
  color: var(--text);
  text-align: center;
  cursor: pointer;
  transition:
    border-color 160ms ease,
    background 160ms ease;
}

.upload-zone.is-dragging,
.upload-zone:hover {
  border-color: rgba(226, 35, 26, 0.9);
  background: rgba(226, 35, 26, 0.08);
}

.upload-zone input {
  display: none;
}

.upload-symbol {
  color: var(--text);
  font-size: 4rem;
  line-height: 1;
}

.upload-zone strong,
.upload-zone em,
.upload-zone small {
  display: block;
}

.upload-zone em,
.consent-row a {
  color: var(--red);
  font-style: normal;
}

.upload-zone small {
  margin-top: 10px;
  color: var(--muted);
}

.form-support {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.form-support a,
.support-link {
  color: var(--text);
  text-decoration: none;
}

.form-support a:hover,
.support-link:hover {
  color: var(--red);
}

.file-list,
.consent-list,
.faq-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.file-list li,
.consent-row {
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgba(0, 0, 0, 0.22);
}

.file-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 13px 14px;
  color: var(--text);
  font-size: 0.9rem;
}

.file-list li.is-invalid {
  border-color: rgba(226, 35, 26, 0.72);
  background: rgba(226, 35, 26, 0.08);
}

.file-list small {
  color: var(--muted);
}

.consent-list {
  gap: 12px;
  margin-top: 22px;
}

.submission-limits {
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 18px;
  background: rgba(0, 0, 0, 0.22);
}

.submission-limits strong {
  display: block;
  margin-bottom: 12px;
  color: var(--text);
}

.submission-limits ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  color: var(--text);
}

.consent-row.has-error {
  border-color: rgba(226, 35, 26, 0.72);
  background: rgba(226, 35, 26, 0.08);
  box-shadow: 0 0 0 3px rgba(226, 35, 26, 0.1);
}

.consent-row .required-tag {
  margin-left: 0;
  margin-top: 8px;
}

.consent-row input {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: var(--red);
}

.consent-row a {
  display: block;
  margin-top: 4px;
}

.form-alert {
  min-height: 0;
  margin: 22px 0 0;
  color: var(--red);
  font-weight: 700;
}

.form-alert:not(:empty) {
  border: 1px solid rgba(226, 35, 26, 0.5);
  border-radius: 6px;
  padding: 14px;
  background: rgba(226, 35, 26, 0.09);
}

.form-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 32px;
}

.form-actions .btn:only-child,
.form-actions .btn.is-hidden + .btn {
  margin-left: auto;
}

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

body.modal-open {
  overflow: hidden;
}

.submission-modal,
.legal-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.submission-modal.is-open,
.legal-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.submission-modal__backdrop,
.legal-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(10px);
}

.submission-modal__dialog,
.legal-modal__dialog {
  position: relative;
  width: min(100%, 560px);
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  padding: clamp(24px, 4vw, 38px);
  background:
    radial-gradient(circle at 80% 0%, rgba(226, 35, 26, 0.18), transparent 34%),
    linear-gradient(145deg, rgba(28, 28, 32, 0.96), rgba(9, 9, 10, 0.98));
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.52);
}

.legal-modal__dialog {
  display: grid;
  width: min(100%, 760px);
  max-height: min(82vh, 760px);
  grid-template-rows: auto minmax(0, 1fr) auto;
  padding: 0;
  overflow: hidden;
}

.legal-modal__header,
.legal-modal__footer {
  position: relative;
  z-index: 2;
  padding: 24px clamp(22px, 4vw, 34px);
}

.legal-modal__header {
  border-bottom: 1px solid var(--line);
}

.legal-modal__header .eyebrow {
  margin-bottom: 8px;
}

.legal-modal__header h3 {
  max-width: calc(100% - 54px);
  margin: 0;
  font-size: clamp(1.55rem, 3vw, 2.25rem);
}

.legal-modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
}

.legal-modal__body {
  overflow: auto;
  padding: 26px clamp(22px, 4vw, 34px);
  background: #0b0b0c;
  color: var(--muted);
  line-height: 1.65;
}

.legal-doc-content {
  max-width: 820px;
  margin: 0 auto;
}

.legal-doc-content h1,
.legal-doc-content h2,
.legal-doc-content h3,
.legal-doc-content h4 {
  margin: 28px 0 12px;
  color: var(--text);
  font-family: "Space Grotesk", sans-serif;
  line-height: 1.12;
}

.legal-doc-content h1:first-child,
.legal-doc-content h2:first-child,
.legal-doc-content h3:first-child,
.legal-doc-content h4:first-child {
  margin-top: 0;
}

.legal-doc-content h1 {
  font-size: clamp(1.35rem, 3vw, 2rem);
}

.legal-doc-content h2,
.legal-doc-content h3 {
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: clamp(1.05rem, 2.2vw, 1.32rem);
}

.legal-doc-content p,
.legal-doc-content li {
  color: var(--muted);
  font-size: 0.98rem;
}

.legal-doc-content p {
  margin: 0 0 14px;
}

.legal-doc-content ul,
.legal-doc-content ol {
  display: grid;
  gap: 8px;
  margin: 0 0 18px;
  padding-left: 22px;
}

.legal-doc-content table {
  width: 100%;
  margin: 22px 0;
  border-collapse: collapse;
  color: var(--muted);
}

.legal-doc-content td,
.legal-doc-content th {
  border: 1px solid var(--line);
  padding: 10px;
}

.legal-doc-state {
  display: grid;
  min-height: 300px;
  place-items: center;
  color: var(--muted);
  text-align: center;
}

.legal-doc-state--error {
  gap: 18px;
}

.legal-modal__body h4 {
  margin: 0 0 10px;
  color: var(--text);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.05rem;
}

.legal-modal__body p {
  margin: 0 0 18px;
}

.legal-modal__body ul {
  display: grid;
  gap: 10px;
  margin: 0 0 20px;
  padding-left: 20px;
}

.legal-modal__footer {
  display: flex;
  justify-content: flex-end;
  border-top: 1px solid var(--line);
  background: rgba(10, 10, 12, 0.78);
}

.submission-modal__dialog h3 {
  margin-bottom: 12px;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
}

.submission-modal__dialog p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.submission-modal__actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 28px;
}

.success-page {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  text-align: center;
}

.success-page.is-active {
  display: grid;
  place-items: center;
}

.success-page::before {
  content: "";
  position: absolute;
  inset: 8% -18% auto;
  height: 180px;
  background:
    linear-gradient(90deg, transparent, rgba(226, 35, 26, 0.62), rgba(255, 255, 255, 0.42), rgba(226, 35, 26, 0.28), transparent);
  filter: blur(18px);
  opacity: 0.36;
  transform: skewX(-16deg);
  animation: successFlareSweep 4.8s ease-in-out infinite;
}

.success-page::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 24%, rgba(226, 35, 26, 0.18), transparent 34%),
    linear-gradient(180deg, transparent 42%, rgba(0, 0, 0, 0.58) 100%);
  pointer-events: none;
}

.success-content {
  position: relative;
  z-index: 3;
  display: grid;
  justify-items: center;
  max-width: 760px;
  padding: 26px 0 92px;
}

.success-mark {
  display: grid;
  width: 92px;
  height: 92px;
  place-items: center;
  margin-inline: auto;
  border: 1px solid rgba(74, 222, 128, 0.34);
  border-radius: 50%;
  background: rgba(74, 222, 128, 0.08);
  color: #4ade80;
  font-size: 3rem;
}

.success-page p {
  max-width: 520px;
  margin: 14px auto 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.success-page h3 {
  max-width: 850px;
  margin: 26px auto 0;
  font-size: clamp(2.6rem, 7vw, 5rem);
  color: var(--text);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: 0;
  text-wrap: balance;
}

.success-page strong {
  color: var(--text);
  font-weight: 800;
}

.success-orbit {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 190px;
  pointer-events: none;
}

.success-orbit::before {
  content: "";
  position: absolute;
  right: -16%;
  bottom: 28px;
  left: -16%;
  height: 1px;
  background:
    linear-gradient(90deg, transparent, rgba(226, 35, 26, 0.72), rgba(255, 255, 255, 0.38), rgba(226, 35, 26, 0.55), transparent);
  box-shadow: 0 0 30px rgba(226, 35, 26, 0.34);
}

.success-flare {
  position: absolute;
  right: -8%;
  bottom: 18px;
  width: 52%;
  height: 84px;
  background: linear-gradient(90deg, transparent, rgba(226, 35, 26, 0.44), rgba(255, 255, 255, 0.28), transparent);
  filter: blur(16px);
  opacity: 0.52;
}

.success-orbit img {
  position: absolute;
  bottom: -38px;
  width: min(28vw, 250px);
  max-height: 170px;
  object-fit: contain;
  opacity: 0.18;
  filter: saturate(0.9) contrast(1.05);
}

.success-orbit img:nth-of-type(1) {
  left: 5%;
  transform: rotate(-8deg);
}

.success-orbit img:nth-of-type(2) {
  left: 50%;
  opacity: 0.14;
  transform: translateX(-50%) scale(1.12);
}

.success-orbit img:nth-of-type(3) {
  right: 4%;
  transform: rotate(7deg);
}

@keyframes successFlareSweep {
  0%,
  64%,
  100% {
    opacity: 0.2;
    transform: translateX(-22%) skewX(-16deg);
  }

  18% {
    opacity: 0.52;
    transform: translateX(18%) skewX(-16deg);
  }
}

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

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

.communication-panel {
  max-width: 100%;
}

.communication-panel h2 {
  max-width: 760px;
  font-size: clamp(1.8rem, 3.2vw, 3rem);
  line-height: 1.04;
}

.communication-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.communication-tags span {
  border: 1px solid rgba(226, 35, 26, 0.34);
  border-radius: 999px;
  padding: 9px 12px;
  background: rgba(226, 35, 26, 0.07);
  font-size: 0.84rem;
}

.faq-list {
  margin-top: 24px;
}

.faq-item {
  width: 100%;
  border-radius: 6px;
  padding: 18px 20px;
  color: var(--text);
  text-align: left;
}

.faq-item span {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-weight: 700;
}

.faq-item span::after {
  content: "\f067";
  color: var(--muted);
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.faq-item[aria-expanded="true"] span::after {
  content: "\f068";
}

.faq-item small {
  display: none;
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.6;
}

.faq-item[aria-expanded="true"] small {
  display: block;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding-block: 32px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  font-size: 0.9rem;
}

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

.site-footer p {
  margin: 0;
}

.animate__animated.animate__delay-1s {
  animation-delay: 0.28s;
}

.animate__animated.animate__delay-2s {
  animation-delay: 0.54s;
}

[data-aos] {
  will-change: transform, opacity;
}

@media (max-width: 991px) {
  .menu-toggle {
    display: block;
  }

  .mobile-nav.is-open {
    display: block;
  }
}

@media (max-width: 1199px) {
  .form-steps {
    position: static;
    display: grid;
    grid-template-columns: repeat(4, minmax(220px, 1fr));
    overflow-x: auto;
  }

  .timeline-list::before,
  .timeline-list::after {
    display: none;
  }

  .jury-panel,
  .guidelines-content {
    grid-template-columns: 1fr;
  }

  .jury-grid {
    grid-template-columns: repeat(3, minmax(220px, 1fr));
    overflow-x: auto;
  }
}

@media (max-width: 720px) {
  .hero {
    min-height: 720px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(11, 11, 12, 0.16), rgba(11, 11, 12, 0.04)),
      linear-gradient(180deg, rgba(11, 11, 12, 0.04) 0%, rgba(11, 11, 12, 0.18) 36%, rgba(11, 11, 12, 0.88) 70%, rgba(11, 11, 12, 0.98) 100%);
  }

  .hero-image {
    top: -7%;
    left: -18%;
    right: auto;
    bottom: auto;
    width: 124%;
    height: 114%;
  }

  .hero-image--keyvisual {
    object-position: 64% 18%;
  }

  .hero-image--track-01 {
    object-position: 80% 18%;
  }

  .hero-image--track-02 {
    object-position: 38% 34%;
  }

  .hero-image--track-03 {
    object-position: 58% 26%;
  }

  body.is-loaded .hero-image.is-active,
  .hero-image.is-active.is-speeding {
    animation-name: hero-speed-lock-mobile;
    animation-duration: 760ms;
  }

  @keyframes hero-speed-lock-mobile {
    0% {
      opacity: 0.84;
      transform: scale(1.082) translate3d(34px, 0, 0);
      filter: blur(4px) saturate(1.12) contrast(1.08) brightness(1.02);
    }
    42% {
      opacity: 0.96;
      transform: scale(1.056) translate3d(-18px, 0, 0);
      filter: blur(2px) saturate(1.1) contrast(1.06) brightness(1.08);
    }
    100% {
      opacity: 1;
      transform: scale(1.035);
      filter: blur(0) saturate(1.08) contrast(1.05) brightness(1.12);
    }
  }

  .hero-content {
    min-height: 648px;
    justify-content: flex-end;
    padding-bottom: 48px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(1.95rem, 8.8vw, 2.45rem);
    line-height: 1.08;
  }

  .hero h1::after {
    width: 92vw;
    left: -18%;
    opacity: 0.58;
  }

  .hero-subtitle {
    max-width: 100%;
    font-size: 1rem;
  }

  .speed-layer {
    opacity: 0.42;
  }

  .flare {
    width: 72vw;
  }

  .hero-meta,
  .form-actions,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .section,
  .faq-section {
    padding-block: 56px;
  }

  .form-panel {
    padding: 20px;
  }

  .jury-grid {
    grid-template-columns: 1fr;
    overflow-x: visible;
  }

  .upload-zone {
    min-height: 250px;
    padding: 24px;
  }

  .success-content {
    padding-bottom: 78px;
  }

  .success-page h3 {
    font-size: clamp(2.15rem, 11vw, 3rem);
  }

  .success-orbit {
    height: 150px;
  }

  .success-orbit img {
    bottom: -26px;
    width: 42vw;
    max-height: 128px;
  }

  .success-orbit img:nth-of-type(2) {
    display: none;
  }

  .submission-modal__actions {
    flex-direction: column-reverse;
  }

  .legal-modal__footer .btn {
    width: 100%;
  }
}

@media (max-width: 575px) {
  .brand {
    gap: 8px;
  }

  .brand-lenovo {
    width: 78px;
  }

  .brand-ducati {
    width: 74px;
  }

  .brand-ducati--shield {
    width: 32px;
    max-height: 36px;
  }

  .hero-actions .btn,
  .form-actions .btn {
    width: 100%;
  }

  .hero h1 {
    width: calc(100vw - 40px);
    max-width: calc(100vw - 40px);
    font-size: clamp(1.75rem, 7.8vw, 2rem);
    line-height: 1.12;
  }

  .hero h1 span {
    display: block;
  }

  .hero-subtitle {
    width: calc(100vw - 40px);
    max-width: calc(100vw - 40px);
    font-size: 0.96rem;
    line-height: 1.65;
  }

  .info-card {
    min-height: 188px;
    padding-right: 112px;
  }

  .experience-visual {
    right: -62px;
    bottom: -26px;
    width: 178px;
    opacity: 0.22;
  }

  .timeline-card {
    min-height: 212px;
    padding-right: 86px;
  }

  .roadmap-visual {
    right: -40px;
    top: 18px;
    width: 118px;
    opacity: 0.14;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .speed-layer {
    display: none;
  }

  body.is-loaded .hero-image {
    animation: none;
  }
}
