:root {
  --bg: #050505;
  --bg-soft: #0a0d0a;
  --text: #f5f5f5;
  --muted: #c8c8c8;
  --green: #11b531;
  --green-deep: #0d741f;
  --green-neon: #77ff69;
  --green-glow: rgba(119, 255, 105, 0.18);
  --yellow: #f4c73f;
  --gold: #dc9c22;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  --shadow-strong: 0 42px 120px rgba(0, 0, 0, 0.62);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --content: min(1180px, calc(100vw - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top, rgba(17, 181, 49, 0.16), transparent 30%),
    linear-gradient(180deg, #040404 0%, #050505 34%, #04220a 62%, #020202 100%);
  color: var(--text);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.page-home {
  background:
    radial-gradient(circle at top, rgba(17, 181, 49, 0.16), transparent 30%),
    linear-gradient(180deg, #040404 0%, #050505 34%, #04220a 62%, #020202 100%);
}

body.page-inner {
  background:
    radial-gradient(circle at top, rgba(17, 181, 49, 0.1), transparent 28%),
    linear-gradient(180deg, #020202 0%, #050505 55%, #020202 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.page-shell {
  overflow: clip;
  position: relative;
}

.page-shell::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 18%, rgba(119, 255, 105, 0.08), transparent 20%),
    radial-gradient(circle at 88% 14%, rgba(244, 199, 63, 0.06), transparent 18%),
    radial-gradient(circle at 50% 100%, rgba(17, 181, 49, 0.06), transparent 26%);
  mix-blend-mode: screen;
  opacity: 0.85;
}

.page-shell::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.06;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.4) 0.5px, transparent 0.5px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.25) 0.5px, transparent 0.5px);
  background-size: 100% 3px, 3px 100%;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px) saturate(140%);
  background: rgba(5, 5, 5, 0.58);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.03);
}

.site-nav__inner {
  width: var(--content);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 16px 0;
}

.site-nav__brand {
  display: flex;
  flex-direction: column;
  line-height: 0.8;
}

.site-nav__brand small {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.26em;
  color: var(--green-neon);
}

.site-nav__brand strong {
  font-family: "Road Rage", cursive;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 400;
  text-shadow: 0 8px 18px rgba(0, 0, 0, 0.4);
}

.site-nav__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.site-nav__toggle {
  display: none;
  align-items: center;
  gap: 5px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  color: #fff;
}

.site-nav__toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.site-nav__toggle span:nth-child(1),
.site-nav__toggle span:nth-child(2),
.site-nav__toggle span:nth-child(3) {
  grid-column: 1;
}

.site-nav__toggle span:nth-child(1) {
  grid-row: 1;
}

.site-nav__toggle span:nth-child(2) {
  grid-row: 2;
}

.site-nav__toggle span:nth-child(3) {
  grid-row: 3;
}

.site-nav__toggle-label {
  grid-column: 2;
  grid-row: 1 / span 3;
  align-self: center;
  width: auto !important;
  height: auto !important;
  margin-left: 6px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: none !important;
}

.site-nav__links a {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  font-size: 0.86rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.84);
  transition: 180ms ease;
  background: rgba(255, 255, 255, 0.02);
}

.site-nav__links a:hover,
.site-nav__links a[aria-current="page"] {
  border-color: rgba(119, 255, 105, 0.3);
  color: white;
  transform: translateY(-1px);
  background: linear-gradient(180deg, rgba(119, 255, 105, 0.14), rgba(119, 255, 105, 0.05));
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.22);
}

.container {
  width: var(--content);
  margin: 0 auto;
  position: relative;
}

.eyebrow {
  display: inline-block;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.2em;
  color: var(--green-neon);
  font-size: 0.95rem;
  margin-bottom: 18px;
}

.hero {
  min-height: calc(100svh - 70px);
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.07), transparent 22%),
    radial-gradient(circle at 50% 22%, rgba(119, 255, 105, 0.12), transparent 18%),
    linear-gradient(180deg, #000 0%, #020202 100%);
  text-align: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 140px;
  background: linear-gradient(180deg, transparent, rgba(17, 181, 49, 0.18));
  pointer-events: none;
}

.hero .container {
  z-index: 1;
}

.hero .container::before,
.hero .container::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 48%;
  translate: -50% -50%;
  border-radius: 999px;
  pointer-events: none;
}

.hero .container::before {
  width: min(86vw, 940px);
  height: min(86vw, 940px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow:
    0 0 0 18px rgba(255, 255, 255, 0.015),
    0 0 120px rgba(119, 255, 105, 0.05);
}

.hero .container::after {
  width: min(62vw, 620px);
  height: min(62vw, 620px);
  background: radial-gradient(circle, rgba(119, 255, 105, 0.14), transparent 62%);
  filter: blur(18px);
}

.hero__logo,
.section-logo {
  display: inline-flex;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
  line-height: 0.85;
}

.hero__eyebrow {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  font-family: "Bebas Neue", sans-serif;
  font-size: 0.92rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.hero__logo {
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.hero__logo small,
.section-logo small {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.18em;
  font-size: clamp(2rem, 5vw, 4.3rem);
}

.hero__logo span,
.section-logo span {
  font-family: "Road Rage", cursive;
  font-size: clamp(4rem, 13vw, 10rem);
  text-transform: uppercase;
  text-shadow: 0 14px 40px rgba(0, 0, 0, 0.45);
}

.section-logo.small-mark small {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.section-logo.small-mark span {
  font-size: clamp(2.6rem, 5vw, 4.6rem);
}

.hero h1,
.display-title {
  margin: 0 auto;
  max-width: 13ch;
  font-family: "Road Rage", cursive;
  font-weight: 400;
  font-size: clamp(3.2rem, 8vw, 7rem);
  line-height: 0.9;
  text-transform: uppercase;
  text-wrap: balance;
}

.hero__line {
  display: block;
}

.display-title {
  max-width: 100%;
  margin: 0;
}

.hero__cta,
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  transition: 180ms ease;
}

.hero__actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-top: 52px;
  flex-wrap: wrap;
}

.hero__cta {
  min-width: 330px;
  min-height: 96px;
  padding: 20px 28px;
  border-width: 2px;
  font-weight: 900;
  font-size: clamp(1.2rem, 2.4vw, 1.7rem);
  letter-spacing: 0.04em;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  box-shadow:
    0 22px 40px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.hero__ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 96px;
  padding: 20px 28px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.025);
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  transition: 180ms ease;
}

.hero__ghost:hover {
  transform: translateY(-2px);
  border-color: rgba(119, 255, 105, 0.28);
  color: #fff;
}

.cta-button {
  padding: 18px 30px;
  font-size: 1rem;
  letter-spacing: 0.12em;
}

.hero__cta:hover,
.cta-button:hover {
  background: white;
  color: #000;
}

.hero__subnav {
  margin-top: 22px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: 0.03em;
}

.hero__rail {
  margin-top: 32px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.hero__rail span {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.66);
}

.page-header {
  padding: 92px 0 32px;
  position: relative;
  overflow: clip;
}

.page-header[data-word]::before {
  content: attr(data-word);
  position: absolute;
  left: 50%;
  top: 8px;
  translate: -50% 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(5rem, 18vw, 16rem);
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.035);
  white-space: nowrap;
  pointer-events: none;
}

.page-header__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 32px;
  align-items: end;
  position: relative;
  z-index: 1;
}

.page-header--wide .page-header__grid {
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  gap: 44px;
}

.page-header--wide .page-title {
  max-width: 9ch;
  font-size: clamp(2.5rem, 5.2vw, 4.9rem);
}

.page-header--wide .page-copy {
  max-width: 30ch;
}

.page-header--home .page-title {
  max-width: 8ch;
}

.page-header--home .page-copy {
  justify-self: end;
}

.page-title,
.section-title {
  margin: 0;
  font-family: "Bodoni Moda", serif;
  font-size: clamp(2.8rem, 6vw, 5.6rem);
  font-weight: 400;
  line-height: 0.92;
  text-transform: uppercase;
}

.page-copy {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.5;
  text-transform: uppercase;
  max-width: 46ch;
}

.grid-overview {
  padding: 24px 0 92px;
}

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

.card-grid .section-link:nth-child(3n + 1) {
  transform: translateY(0);
}

.card-grid .section-link:nth-child(3n + 2) {
  transform: translateY(28px);
}

.card-grid .section-link:nth-child(3n) {
  transform: translateY(10px);
}

.section-link {
  padding: 28px;
  min-height: 260px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background:
    radial-gradient(circle at top right, rgba(119, 255, 105, 0.16), transparent 30%),
    linear-gradient(180deg, rgba(18, 18, 18, 0.98), rgba(4, 4, 4, 0.92));
  box-shadow: var(--shadow-strong);
  display: grid;
  align-content: space-between;
  gap: 24px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
  position: relative;
  overflow: hidden;
}

.section-link:hover {
  transform: translateY(-8px) rotate(-0.4deg);
  border-color: rgba(119, 255, 105, 0.28);
}

.section-link::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, rgba(119, 255, 105, 0.9), rgba(17, 181, 49, 0));
}

.section-link::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(119, 255, 105, 0.16), transparent 65%);
}

.section-link__title {
  font-family: "Road Rage", cursive;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 0.92;
  text-transform: uppercase;
}

.section-link__copy {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.45;
  text-transform: uppercase;
  max-width: 34ch;
}

.section-link__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.panel {
  padding: 52px;
  border-radius: 42px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background:
    radial-gradient(circle at top center, rgba(255, 255, 255, 0.07), transparent 26%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.16));
  box-shadow: var(--shadow-strong);
  position: relative;
  overflow: hidden;
}

.panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent 22%),
    linear-gradient(315deg, rgba(119, 255, 105, 0.08), transparent 26%);
  pointer-events: none;
}

.panel::after {
  content: "";
  position: absolute;
  top: 24px;
  right: 24px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.14), transparent 66%);
  filter: blur(14px);
  pointer-events: none;
}

.page-section {
  padding: 28px 0 88px;
}

.rent-page {
  background:
    linear-gradient(180deg, #010101 0%, #03330d 18%, #09831d 54%, #0b9f23 100%);
}

.trade-page {
  background:
    linear-gradient(180deg, #020202 0%, #031408 18%, #0a641a 74%, #11b531 100%);
}

.dark-page {
  background: #000;
}

.coach-page {
  background:
    linear-gradient(180deg, #020202 0%, #090909 35%, #0a0904 100%);
}

.rent__icon {
  width: 190px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  margin: 10px auto 24px;
  border-radius: 28px;
  background: #fff;
  color: #000;
  box-shadow:
    0 0 0 2px rgba(255, 255, 255, 0.32),
    0 0 26px rgba(255, 255, 255, 0.45),
    0 24px 40px rgba(0, 0, 0, 0.22);
  font-weight: 900;
  font-size: 2rem;
  line-height: 0.9;
  text-align: center;
  text-transform: uppercase;
}

.affitti-stage {
  display: grid;
  gap: 34px;
}

.affitti-stage__top {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 28px;
}

.affitti-stage__content {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  gap: 36px;
  align-items: end;
}

.affitti-stage__body {
  margin: 26px 0 0;
  max-width: 38ch;
  font-size: clamp(1rem, 1.8vw, 1.28rem);
  line-height: 1.42;
  font-weight: 800;
  text-transform: uppercase;
}

.affitti-stage__note {
  align-self: stretch;
  display: grid;
  align-content: end;
  padding: 28px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  border-radius: 24px;
}

.affitti-stage__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-top: 10px;
}

.affitti-stage__stamp {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 0.92rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  rotate: -4deg;
}

.section-copy {
  margin-top: 32px;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.85fr);
  gap: 36px;
  align-items: end;
}

.section-copy p {
  margin: 0;
  font-size: clamp(1rem, 1.8vw, 1.28rem);
  line-height: 1.42;
  font-weight: 800;
  text-transform: uppercase;
  max-width: 42ch;
}

.market-note {
  text-align: right;
}

.market-note strong {
  display: block;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 0.88;
  text-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
}

.market-note span {
  display: block;
  margin-top: 16px;
  font-size: clamp(1.1rem, 2vw, 2rem);
  font-weight: 800;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.78fr);
  gap: 42px;
  align-items: center;
}

.market-stage {
  align-items: stretch;
}

.speech {
  padding: 34px;
  background: #f4f4f4;
  color: #101010;
  border-radius: var(--radius-lg);
  box-shadow:
    0 0 35px rgba(119, 255, 105, 0.26),
    0 24px 48px rgba(0, 0, 0, 0.26);
  position: relative;
}

.speech::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 10px;
  background: linear-gradient(90deg, rgba(17, 181, 49, 0.9), rgba(119, 255, 105, 0));
}

.speech::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 54px;
  height: 54px;
  border-right: 2px solid rgba(0, 0, 0, 0.12);
  border-bottom: 2px solid rgba(0, 0, 0, 0.12);
}

.market-stage__aside {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 22px;
  padding: 30px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.08), transparent 44%),
    linear-gradient(180deg, rgba(8, 32, 12, 0.78), rgba(0, 0, 0, 0.28));
  box-shadow: var(--shadow-strong);
}

.market-stage__badge {
  width: 190px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02));
  font-family: "Road Rage", cursive;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.9;
  text-transform: uppercase;
  text-align: center;
}

.market-stage__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.market-stage__meta span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.74);
}

.speech h3 {
  margin: 0 0 20px;
  font-size: clamp(2rem, 4.4vw, 4rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.speech p {
  margin: 0;
  font-size: clamp(1rem, 1.8vw, 1.28rem);
  line-height: 1.4;
  font-weight: 800;
  text-transform: uppercase;
}

.dream__header {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 34px;
}

.dream-stage {
  position: relative;
}

.dream-stage::before {
  content: "";
  position: absolute;
  inset: -20px auto auto 0;
  width: min(32vw, 360px);
  height: min(32vw, 360px);
  background: radial-gradient(circle, rgba(119, 255, 105, 0.12), transparent 68%);
  filter: blur(12px);
  pointer-events: none;
}

.dream-stage__header {
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.dream-stage__title {
  position: relative;
}

.dream-stage__title::before {
  content: "01";
  position: absolute;
  right: 0;
  top: -34px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.26em;
  color: rgba(255, 255, 255, 0.28);
}

.dream-stage__list {
  max-width: 1100px;
}

.dream__title {
  font-family: "Bodoni Moda", serif;
  font-size: clamp(3rem, 5.8vw, 5rem);
  font-weight: 400;
  text-transform: uppercase;
}

.dream__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 18px;
  counter-reset: dream;
}

.dream__item {
  display: grid;
  grid-template-columns: 20px 1fr auto;
  gap: 18px;
  align-items: center;
  font-size: clamp(1rem, 2vw, 1.65rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.95);
  min-height: 48px;
  padding-right: 12px;
  counter-increment: dream;
}

.dream__item::before {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 0 22px rgba(255, 255, 255, 0.3);
}

.dream__item::after {
  content: counter(dream, decimal-leading-zero);
  font-family: "Bebas Neue", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.28);
}

.affiliations__grid {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 26px;
  margin-top: 28px;
  align-items: start;
}

.affiliations-lead {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 30px;
  align-items: end;
  margin-bottom: 26px;
}

.affiliations-lead__copy {
  justify-self: end;
  max-width: 34ch;
  padding: 22px 24px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015));
}

.affiliations__grid--featured {
  margin-top: 0;
}

.brand-column {
  display: grid;
  gap: 18px;
  justify-items: start;
  align-content: start;
  padding-top: 18px;
}

.brand-pill {
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 20px 34px rgba(0, 0, 0, 0.2);
  transition: transform 180ms ease, border-color 180ms ease;
}

.brand-pill small {
  display: block;
  margin-top: 6px;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.64);
}

.brand-pill:hover {
  border-color: rgba(119, 255, 105, 0.24);
  transform: translateX(4px);
}

.deal-card {
  min-height: 260px;
  padding: 24px;
  border: 1.5px solid rgba(17, 181, 49, 0.62);
  display: grid;
  align-content: space-between;
  gap: 22px;
  background:
    radial-gradient(circle at top right, rgba(119, 255, 105, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(4, 4, 4, 0.96), rgba(4, 4, 4, 0.84));
  box-shadow: var(--shadow-strong);
  position: relative;
  overflow: hidden;
}

.deal-card::before {
  content: "25%";
  position: absolute;
  right: 18px;
  top: 14px;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  line-height: 1;
  color: rgba(255, 255, 255, 0.07);
}

.deal-card strong {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.deal-card p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.3;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

.reveal__intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
  gap: 28px;
  align-items: center;
  margin-bottom: 38px;
}

.collab-stage {
  padding: 34px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.collab-stage__intro {
  margin-bottom: 28px;
}

.collab-stage__stack .promo:nth-child(even) {
  transform: translateX(34px);
}

.partnership {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(1.2rem, 2vw, 1.8rem);
}

.lion-mark {
  position: relative;
  width: 92px;
  height: 74px;
  border-radius: 28px 28px 22px 22px;
  background: linear-gradient(180deg, #7f5311, #1b1303);
  box-shadow: inset 0 0 0 1px rgba(255, 198, 80, 0.18);
}

.lion-mark::before,
.lion-mark::after {
  content: "";
  position: absolute;
  top: -16px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #7f5311;
  box-shadow: inset 0 0 0 1px rgba(255, 198, 80, 0.18);
}

.lion-mark::before {
  left: 8px;
}

.lion-mark::after {
  right: 8px;
}

.lion-mark span {
  position: absolute;
  inset: 14px 17px auto;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(255, 219, 130, 0.65), rgba(0, 0, 0, 0.16));
}

.promo-stack {
  display: grid;
  gap: 18px;
}

.promo {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(13, 13, 13, 0.98), rgba(7, 7, 7, 0.98));
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.28);
}

.promo summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 24px;
  font-family: "Road Rage", cursive;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  position: relative;
  transition: background 180ms ease, letter-spacing 180ms ease;
}

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

.promo summary::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-family: "Inter", sans-serif;
  font-weight: 700;
}

.promo[open] summary::after {
  content: "-";
}

.promo summary:hover {
  background: rgba(255, 255, 255, 0.03);
  letter-spacing: 0.03em;
}

.promo[open] {
  border-color: rgba(119, 255, 105, 0.2);
  box-shadow:
    0 22px 44px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(119, 255, 105, 0.12);
}

.curtain {
  padding: 18px 24px 28px;
  background:
    repeating-linear-gradient(
      90deg,
      #250000 0 18px,
      #590000 18px 28px,
      #7c0000 28px 42px,
      #3b0000 42px 56px
    );
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  min-height: 170px;
  display: grid;
  place-items: center;
}

.curtain__card {
  max-width: 640px;
  width: 100%;
  padding: 24px;
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-strong);
}

.curtain__card h4 {
  margin: 0 0 10px;
  font-size: 1.3rem;
  text-transform: uppercase;
}

.curtain__card p {
  margin: 0;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.8);
}

.coach__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 40px;
  align-items: start;
}

.coach-stage {
  position: relative;
}

.coach-stage::before {
  content: "";
  position: absolute;
  right: 4%;
  top: 0;
  width: min(26vw, 280px);
  height: min(26vw, 280px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 199, 63, 0.18), transparent 70%);
  filter: blur(14px);
  pointer-events: none;
}

.coach__grid > :first-child {
  position: relative;
}

.coach__grid > :first-child::before {
  content: "";
  position: absolute;
  left: -22px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, rgba(244, 199, 63, 0.9), rgba(17, 181, 49, 0));
}

.coach__headline {
  display: grid;
  gap: 18px;
}

.coach__headline h2 {
  margin: 0;
  font-family: "Road Rage", cursive;
  font-weight: 400;
  line-height: 0.9;
  text-transform: uppercase;
  font-size: clamp(2.8rem, 7vw, 6.8rem);
}

.coach__headline p {
  margin: 0;
  font-size: clamp(1.15rem, 2vw, 1.7rem);
  font-weight: 900;
  color: var(--yellow);
  text-transform: uppercase;
  line-height: 1.15;
}

.coach-card {
  padding: 28px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(253, 253, 253, 0.95), rgba(244, 244, 244, 0.9));
  color: #121212;
  box-shadow:
    0 0 30px rgba(220, 156, 34, 0.18),
    0 28px 54px rgba(0, 0, 0, 0.26);
}

.coach-stage__card {
  position: relative;
  overflow: hidden;
}

.coach-stage__card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 8px;
  background: linear-gradient(180deg, rgba(244, 199, 63, 0.9), rgba(17, 181, 49, 0.4));
}

.coach-card h3 {
  margin: 0 0 10px;
  font-size: 0.92rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.coach-card p {
  margin: 0;
  line-height: 1.5;
  color: #2b2b2b;
}

.coach__summary {
  margin-top: 24px;
  font-size: 1.2rem;
  line-height: 1.45;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.84);
}

.coach-stage__summary {
  max-width: 28ch;
}

.pathway {
  margin-top: 46px;
}

.pathway h3 {
  margin: 0 0 24px;
  font-family: "Road Rage", cursive;
  font-weight: 400;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  color: var(--gold);
  text-transform: uppercase;
  line-height: 0.95;
}

.coach-stage__pathway {
  padding: 26px 28px 0 0;
}

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

.step {
  padding: 18px 20px;
  border-left: 3px solid rgba(17, 181, 49, 0.88);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 0 16px 16px 0;
}

.step strong {
  display: block;
  margin-bottom: 6px;
  color: var(--yellow);
  text-transform: uppercase;
  font-size: 0.98rem;
  letter-spacing: 0.08em;
}

.step p {
  margin: 0;
  text-transform: uppercase;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.82);
}

.coach__closing {
  margin-top: 28px;
  font-size: 1.35rem;
  line-height: 1.3;
  text-transform: uppercase;
  color: var(--green-neon);
  font-weight: 800;
}

.coach-stage__closing {
  max-width: 24ch;
}

.contacts {
  margin-top: 46px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.contact-card {
  padding: 22px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 34px rgba(0, 0, 0, 0.18);
}

.coach-stage__contacts .contact-card:nth-child(2) {
  transform: translateY(18px);
}

.coach-stage__contacts .contact-card:nth-child(3) {
  transform: translateY(36px);
}

.contact-card h4 {
  margin: 0 0 10px;
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--yellow);
}

.contact-card p,
.contact-card a {
  margin: 0;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.84);
}

.page-pagination {
  padding: 0 0 72px;
}

.page-pagination__inner {
  width: var(--content);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.page-pagination a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  background: rgba(255, 255, 255, 0.02);
}

.page-pagination a:hover {
  border-color: rgba(119, 255, 105, 0.38);
}

.home-closing {
  padding: 0 0 100px;
}

.home-closing__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: end;
  padding: 34px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

.home-closing__links a {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 18px 20px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at right center, rgba(119, 255, 105, 0.08), transparent 28%),
    rgba(255, 255, 255, 0.025);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: 180ms ease;
}

.home-closing__links a::after {
  content: "+";
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.54);
}

.home-closing__links a:hover {
  transform: translateY(-2px);
  border-color: rgba(119, 255, 105, 0.26);
}

.footer {
  padding: 34px 0 46px;
  text-align: center;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer--site {
  padding: 42px 0 52px;
  text-align: left;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0.01));
}

.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: start;
}

.footer__brand {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.18em;
  color: #fff;
}

.footer__copy {
  margin: 10px 0 0;
  max-width: 28ch;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.45;
  text-transform: uppercase;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.footer__links a {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: 180ms ease;
}

.footer__links a:hover {
  border-color: rgba(119, 255, 105, 0.26);
  color: #fff;
  transform: translateY(-1px);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(26px) scale(0.985);
  transition: opacity 600ms ease, transform 600ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@media (max-width: 980px) {
  .page-header__grid,
  .section-copy,
  .two-col,
  .coach__grid,
  .contacts,
  .affiliations__grid,
  .affiliations-lead,
  .affitti-stage__content,
  .reveal__intro,
  .card-grid {
    grid-template-columns: 1fr;
  }

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

  .market-note {
    text-align: left;
  }

  .affitti-stage__top,
  .affitti-stage__footer {
    flex-direction: column;
    align-items: start;
  }

  .collab-stage__stack .promo:nth-child(even) {
    transform: none;
  }
}

@media (max-width: 720px) {
  :root {
    --content: min(100vw - 28px, 1180px);
    --radius-xl: 24px;
    --radius-lg: 18px;
  }

  .site-nav {
    position: static;
    overflow: visible;
    backdrop-filter: none;
    background: rgba(5, 5, 5, 0.92);
  }

  .site-nav__inner,
  .page-pagination__inner {
    align-items: center;
  }

  .site-nav__inner {
    position: relative;
    flex-direction: row;
    justify-content: space-between;
    padding: 10px 0 12px;
    gap: 12px;
  }

  .site-nav__toggle {
    display: inline-flex;
    align-self: auto;
    margin-left: auto;
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 14px auto;
    grid-template-rows: repeat(3, 2px);
    column-gap: 10px;
    row-gap: 4px;
    align-items: center;
    padding: 12px 14px;
  }

  .site-nav__brand small {
    font-size: 0.66rem;
    letter-spacing: 0.16em;
  }

  .site-nav__brand strong {
    font-size: 1.56rem;
    line-height: 0.92;
  }

  .site-nav__toggle span {
    width: 14px;
  }

  .site-nav__links {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: min(82vw, 320px);
    display: none;
    flex-direction: column;
    gap: 8px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(20, 20, 20, 0.98), rgba(6, 6, 6, 0.98));
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
    backdrop-filter: blur(18px);
    z-index: 2;
  }

  .site-nav.is-open .site-nav__links {
    display: flex;
  }

  .site-nav__links a {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 14px;
    font-size: 0.8rem;
    white-space: normal;
  }

  .hero {
    min-height: auto;
    padding: 34px 0 44px;
  }

  .hero .container::before {
    width: 84vw;
    height: 84vw;
  }

  .hero .container::after {
    width: 62vw;
    height: 62vw;
  }

  .hero h1 {
    max-width: none;
    font-family: "Manrope", sans-serif;
    font-weight: 800;
    font-size: clamp(1.62rem, 6.9vw, 2.15rem);
    line-height: 1.02;
    letter-spacing: -0.05em;
    text-transform: none;
    text-wrap: initial;
    margin: 10px auto 0;
  }

  .hero__line {
    white-space: nowrap;
  }

  .hero__line--lead {
    transform: translateX(-0.2em);
  }

  .hero__line--mid {
    transform: translateX(0.08em);
  }

  .hero__line--end {
    transform: translateX(-0.05em);
  }

  .hero__logo {
    gap: 1px;
    margin-bottom: 20px;
  }

  .hero__logo small {
    font-size: clamp(0.82rem, 4.1vw, 1.12rem);
    letter-spacing: 0.22em;
  }

  .hero__logo span {
    font-size: clamp(1.82rem, 9.6vw, 2.7rem);
    line-height: 0.9;
  }

  .hero__cta {
    min-width: 0;
    width: 100%;
    min-height: 62px;
    font-size: 0.98rem;
    padding: 14px 16px;
  }

  .hero__actions {
    display: grid;
    width: 100%;
    margin-top: 28px;
    gap: 12px;
  }

  .hero__ghost {
    width: 100%;
    min-height: 54px;
    padding: 14px 16px;
    font-size: 0.88rem;
  }

  .panel,
  .speech,
  .coach-card {
    padding: 20px;
  }

  .rent__icon {
    width: 126px;
    font-size: 1.3rem;
    margin: 4px auto 18px;
  }

  .dream__item {
    grid-template-columns: 16px 1fr;
    gap: 12px;
    min-height: 0;
  }

  .section-logo {
    gap: 6px 12px;
    align-items: center;
    margin-bottom: 18px;
  }

  .section-logo small {
    width: 100%;
    font-size: clamp(1.2rem, 7vw, 1.8rem);
  }

  .section-logo span {
    font-size: clamp(2.3rem, 15vw, 4rem);
  }

  .display-title {
    font-size: clamp(2rem, 13vw, 3.6rem);
    line-height: 0.92;
  }

  .page-title,
  .section-title,
  .dream__title {
    font-size: clamp(1.85rem, 10vw, 3rem);
    line-height: 0.96;
  }

  .section-link {
    min-height: 0;
    padding: 22px;
    gap: 18px;
  }

  .card-grid .section-link:nth-child(3n + 1),
  .card-grid .section-link:nth-child(3n + 2),
  .card-grid .section-link:nth-child(3n) {
    transform: none;
  }

  .page-header[data-word]::before {
    top: 24px;
    font-size: clamp(2.5rem, 15vw, 4.8rem);
  }

  .page-header--wide .page-header__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-header--wide .page-title,
  .page-header--wide .page-copy {
    max-width: none;
  }

  .page-header--home .page-copy {
    justify-self: start;
  }

  .affiliations-lead__copy,
  .affitti-stage__body {
    max-width: none;
  }

  .market-stage__badge {
    width: 132px;
    font-size: 1.6rem;
  }

  .dream__item {
    grid-template-columns: 16px 1fr;
  }

  .dream__item::after {
    display: none;
  }

  .coach__grid > :first-child::before {
    display: none;
  }

  .home-closing__grid,
  .home-closing__links,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .footer__links {
    justify-content: flex-start;
  }

  .coach-stage__contacts .contact-card:nth-child(2),
  .coach-stage__contacts .contact-card:nth-child(3) {
    transform: none;
  }

  .hero__eyebrow,
  .eyebrow {
    margin-bottom: 12px;
    font-size: 0.74rem;
    letter-spacing: 0.16em;
  }

  .hero__subnav,
  .page-copy,
  .section-link__copy,
  .contact-card p,
  .contact-card a,
  .coach__summary,
  .step p,
  .deal-card p,
  .speech p,
  .affitti-stage__body {
    font-size: 0.92rem;
    line-height: 1.45;
  }

  .page-header {
    padding: 54px 0 18px;
  }

  .page-section,
  .grid-overview,
  .home-closing {
    padding-bottom: 64px;
  }

  .reveal__intro,
  .dream__header,
  .section-copy,
  .affitti-stage,
  .affitti-stage__content,
  .affiliations-lead,
  .coach__grid,
  .contacts {
    gap: 18px;
  }

  .affitti-stage__note {
    padding: 18px;
    border-left: 0;
  }

  .affitti-stage__stamp {
    font-size: 0.78rem;
  }

  .market-stage__aside {
    padding: 20px;
    gap: 16px;
  }

  .market-stage__meta span,
  .hero__rail span,
  .footer__links a,
  .page-pagination a {
    font-size: 0.74rem;
  }

  .hero__rail {
    margin-top: 22px;
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .hero__rail::-webkit-scrollbar {
    display: none;
  }

  .home-closing__links a,
  .page-pagination a {
    min-height: 60px;
  }

  .footer--site {
    padding: 34px 0 40px;
  }

  .footer__copy {
    font-size: 0.84rem;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
