:root {
  --bg: #f3f3f3;
  --text: #111111;
  --muted: #5d5d5d;
  --line: rgba(17, 17, 17, 0.08);
  --white: #ffffff;
  --black: #111111;
  --red: #ea2b2f;
  --blue: #0d46bf;
  --shadow: 0 30px 90px rgba(17, 17, 17, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  position: relative;
  isolation: isolate;
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(180deg, rgba(14, 38, 12, 0.16), rgba(9, 24, 8, 0.44)),
    #244b12;
  color: var(--text);
  font-family: "Manrope", sans-serif;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 16px;
  z-index: 10;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(13, 70, 191, 0.96);
  color: #ffffff;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

a:focus-visible,
button:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.92);
  outline-offset: 4px;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.04), transparent 22%),
    linear-gradient(180deg, rgba(18, 46, 11, 0.08), rgba(10, 24, 8, 0.22)),
    url("../images/grass-field.webp");
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-position: center top, center center, center center;
  background-size: cover, cover, cover;
  filter: saturate(1.08) contrast(1.02) brightness(0.86);
  opacity: 1;
  z-index: -2;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 9%, rgba(17, 17, 17, 0.035) 9%, rgba(17, 17, 17, 0.035) 9.12%, transparent 9.12%),
    linear-gradient(90deg, transparent 24%, rgba(17, 17, 17, 0.035) 24%, rgba(17, 17, 17, 0.035) 24.12%, transparent 24.12%),
    linear-gradient(90deg, transparent 49%, rgba(17, 17, 17, 0.035) 49%, rgba(17, 17, 17, 0.035) 49.12%, transparent 49.12%),
    linear-gradient(90deg, transparent 74%, rgba(17, 17, 17, 0.035) 74%, rgba(17, 17, 17, 0.035) 74.12%, transparent 74.12%),
    linear-gradient(90deg, transparent 91%, rgba(17, 17, 17, 0.035) 91%, rgba(17, 17, 17, 0.035) 91.12%, transparent 91.12%);
  opacity: 0.12;
  z-index: -1;
}

.hero-inner,
.works,
.manifesto,
.site-footer {
  width: min(1380px, calc(100vw - 48px));
  margin: 0 auto;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  --hero-progress: 0;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center bottom;
  transform: translate3d(0, calc(var(--hero-progress) * 7vh), 0)
    scale(calc(1 + (var(--hero-progress) * 0.08)));
  transform-origin: center bottom;
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 18, 28, 0.18), rgba(8, 18, 28, 0.44)),
    radial-gradient(circle at 50% 22%, rgba(255, 255, 255, 0.06), transparent 28%);
  opacity: calc(1 - (var(--hero-progress) * 0.22));
}

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 22px;
  z-index: 3;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--white);
  text-decoration: none;
  transform: translateX(-50%);
  opacity: calc(1 - (var(--hero-progress) * 2.2));
  will-change: opacity, transform;
}

.hero-scroll-mouse {
  position: relative;
  width: 28px;
  height: 46px;
  border: 2px solid rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(13, 70, 191, 0.22), rgba(234, 43, 47, 0.16));
  box-shadow:
    0 0 0 2px rgba(13, 70, 191, 0.14),
    0 18px 30px rgba(3, 8, 14, 0.18);
}

.hero-scroll-mouse::before {
  content: "";
  position: absolute;
  inset: -7px;
  border: 1px solid rgba(234, 43, 47, 0.34);
  border-radius: 999px;
}

.hero-scroll-dot {
  position: absolute;
  left: 50%;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(180deg, #ffffff 0%, #ea2b2f 100%);
  box-shadow:
    0 0 0 3px rgba(234, 43, 47, 0.18),
    0 0 18px rgba(13, 70, 191, 0.24);
  transform: translateX(-50%);
  animation: hero-scroll-drop 1.2s linear 1.35s infinite both;
}

.hero-scroll-text {
  font-family: "Oswald", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.08),
    0 8px 18px rgba(3, 8, 14, 0.16);
}

.hero-inner {
  position: relative;
  z-index: 1;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 72px;
  padding: 48px 0 42px;
}

.hero-rail {
  align-self: center;
  width: min(300px, 22vw);
  margin-top: 10vh;
  transform: translate3d(0, calc(var(--hero-progress) * -5vh), 0);
  opacity: calc(1 - (var(--hero-progress) * 0.9));
  will-change: transform, opacity;
}

.hero-brand-logo {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 22px 40px rgba(0, 0, 0, 0.4));
  animation: logo-slide-in 820ms cubic-bezier(0.22, 1, 0.36, 1) 120ms both;
}

.hero-promo {
  position: relative;
  z-index: 2;
  width: min(860px, 59vw);
  padding-right: min(152px, 9vw);
  transform: translate3d(
    -5.2vw,
    calc(-20vh + (var(--hero-progress) * -8vh)),
    0
  );
  opacity: calc(1 - (var(--hero-progress) * 1.05));
  will-change: transform, opacity;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: none;
  transform-origin: bottom center;
}

.hero-copy-content {
  position: relative;
  transform-origin: bottom center;
  opacity: 0;
  transform: translate3d(0, -72px, 0);
  will-change: transform, opacity;
  backface-visibility: hidden;
  animation: hero-copy-block-in 480ms cubic-bezier(0.16, 0.88, 0.22, 1) 860ms both;
}

.hero-copy::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 34%;
  width: min(860px, 64vw);
  height: min(500px, 38vw);
  transform: translate(-34%, -50%);
  background:
    radial-gradient(circle at 13% 11%, rgba(255, 255, 255, 0.56) 0%, rgba(228, 241, 255, 0.28) 13%, rgba(228, 241, 255, 0.1) 24%, transparent 39%),
    radial-gradient(circle at 87% 11%, rgba(255, 255, 255, 0.54) 0%, rgba(224, 239, 255, 0.26) 12%, rgba(224, 239, 255, 0.1) 24%, transparent 38%),
    radial-gradient(circle at 50% 16%, rgba(255, 255, 255, 0.14) 0%, rgba(216, 233, 250, 0.08) 17%, rgba(216, 233, 250, 0.03) 30%, transparent 46%),
    radial-gradient(ellipse at 50% 40%, rgba(255, 255, 255, 0.08) 0%, rgba(210, 228, 245, 0.05) 24%, transparent 56%);
  filter: blur(34px);
  opacity: 0.88;
  pointer-events: none;
  z-index: -1;
}

.hero-copy::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -4%;
  width: min(620px, 52vw);
  height: min(150px, 11vw);
  transform: translateX(-15%);
  background:
    radial-gradient(ellipse at center, rgba(10, 20, 14, 0.48) 0%, rgba(10, 20, 14, 0.3) 34%, rgba(10, 20, 14, 0.14) 58%, transparent 80%);
  filter: blur(18px);
  opacity: 0.92;
  pointer-events: none;
  z-index: -1;
}

.hero-copy h1 {
  margin: 0 0 16px;
  max-width: 8.15ch;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  overflow: visible;
  font-family: "Montserrat", "League Spartan", sans-serif;
  font-size: clamp(5rem, 10vw, 8.6rem);
  line-height: 0.78;
  font-weight: 300;
  letter-spacing: -0.08em;
  text-transform: uppercase;
  text-shadow:
    0 -8px 18px rgba(247, 251, 255, 0.28),
    0 -22px 40px rgba(222, 238, 252, 0.16),
    0 3px 0 rgba(255, 255, 255, 0.08),
    0 12px 18px rgba(4, 10, 18, 0.16),
    0 28px 34px rgba(4, 10, 18, 0.14);
}

.hero-copy h1 span {
  display: inline-block;
  width: max-content;
  max-width: none;
  padding-right: 0.24em;
  overflow: visible;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(247, 247, 247, 0.93) 56%, rgba(217, 217, 217, 0.88) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.hero-copy h1 span + span {
  margin-top: 0.07em;
}

.hero-line-ano {
  padding-top: 0.08em;
  line-height: 0.9;
}

.hero-copy h1 span:first-child,
.hero-line-gana {
  font-size: 0.66em;
  letter-spacing: -0.072em;
  margin-bottom: -0.15em;
}

.hero-line-viajes {
  white-space: nowrap;
  font-size: 1.11em;
  letter-spacing: -0.078em;
  padding-right: 0.32em;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(247, 247, 247, 0.93) 56%, rgba(217, 217, 217, 0.88) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  text-shadow:
    0 -8px 16px rgba(252, 254, 255, 0.24),
    0 -20px 30px rgba(232, 242, 252, 0.12),
    0 4px 0 rgba(255, 255, 255, 0.08),
    0 14px 18px rgba(3, 8, 14, 0.22),
    0 30px 34px rgba(3, 8, 14, 0.18),
    0 46px 44px rgba(3, 8, 14, 0.12);
  filter: none;
}

.hero-copy p {
  max-width: 47rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-family: "Manrope", sans-serif;
  font-size: clamp(1rem, 1.25vw, 1.22rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.31em;
  text-transform: uppercase;
}

@keyframes logo-slide-in {
  from {
    opacity: 0;
    transform: translateX(-110px) scale(0.9);
  }

  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes hero-copy-block-in {
  0% {
    opacity: 0;
    transform: translate3d(0, -72px, 0);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes hero-scroll-drop {
  0% {
    opacity: 0;
    transform: translate(-50%, -4px) scale(0.92);
  }

  55% {
    opacity: 1;
    transform: translate(-50%, 12px) scale(1);
  }

  100% {
    opacity: 0;
    transform: translate(-50%, 22px) scale(0.96);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-brand-logo,
  .hero-copy-content,
  .hero-scroll-dot {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

.works {
  padding: 35px 0;
}

.works-heading,
.manifesto-intro,
.services {
  backdrop-filter: blur(4px);
}

.works-heading {
  display: grid;
  gap: 10px;
  margin-bottom: 36px;
  backdrop-filter: none;
  justify-items: center;
  text-align: center;
}

.works-heading p,
.kicker,
.services-title {
  margin: 0;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #707070;
}

.works-heading h2 {
  margin: 0;
  max-width: none;
  white-space: nowrap;
  font-size: clamp(1.5rem, 3vw, 3rem);
  line-height: 1.04;
  font-weight: 600;
  letter-spacing: -0.05em;
  color: #ffffff;
  text-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

.manifesto-intro h2 {
  margin: 0;
  font-size: clamp(3rem, 5.8vw, 5rem);
  line-height: 0.96;
  font-weight: 600;
  letter-spacing: -0.06em;
}

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

.work-card {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}

.work-card.is-active {
  box-shadow:
    0 30px 90px rgba(8, 32, 90, 0.26),
    0 0 0 1px rgba(13, 70, 191, 0.18);
}

.work-card.is-upcoming {
  box-shadow: var(--shadow);
}

.work-card.is-ended {
  box-shadow: 0 24px 64px rgba(17, 17, 17, 0.14);
}

.work-card.is-ended .work-media {
  filter: grayscale(0.24) saturate(0.78);
}

.work-card-ribbon {
  position: absolute;
  top: 42px;
  left: 0;
  z-index: 3;
  width: 100%;
  padding: 12px 24px;
  background: rgba(234, 43, 47, 0.96);
  color: #ffffff;
  font-family: "Oswald", sans-serif;
  font-size: 0.88rem;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
  transform: none;
  box-shadow:
    0 10px 24px rgba(134, 20, 23, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transform-origin: center center;
}


.work-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 24%;
  background:
    linear-gradient(180deg, rgba(4, 10, 18, 0) 0%, rgba(4, 10, 18, 0.02) 42%, rgba(4, 10, 18, 0.18) 62%, rgba(4, 10, 18, 0.56) 82%, rgba(4, 10, 18, 0.86) 100%);
  backdrop-filter: blur(8px);
  pointer-events: none;
  z-index: 1;
}

.work-media {
  position: absolute;
  inset: 0;
}

.work-card-one .work-media {
  background:
    linear-gradient(180deg, rgba(6, 10, 18, 0.08), rgba(6, 10, 18, 0.7)),
    url("../images/quinielav2.webp");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.work-card-two .work-media {
  background:
    linear-gradient(180deg, rgba(8, 12, 18, 0.08), rgba(8, 12, 18, 0.62)),
    url("../images/elultimofan.webp");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.work-card-three .work-media {
  background:
    linear-gradient(180deg, rgba(8, 12, 18, 0.08), rgba(8, 12, 18, 0.62)),
    url("../images/marcadorbus.webp");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.work-copy {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  z-index: 2;
  width: auto;
  max-width: none;
  color: var(--white);
  padding: 0;
}

.work-copy p {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.95rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.32);
}

.work-copy-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 13px;
  background: rgba(0, 0, 0, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
}

.work-copy-badge-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  color: #ffffff;
}

.work-copy-badge-icon svg {
  width: 18px;
  height: 18px;
  display: block;
}

.work-countdown {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin: 0;
  min-width: 0;
  flex: 0 0 auto;
  justify-content: flex-start;
  margin-left: auto;
}

.work-countdown-kicker {
  font-family: "Oswald", sans-serif;
  font-size: 0.4rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  text-align: left;
  text-shadow: 0 8px 18px rgba(0, 0, 0, 0.26);
  white-space: nowrap;
}

.work-countdown-board {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: start;
  gap: 6px;
  padding: 7px 10px 6px;
  border: 2px solid rgba(255, 255, 255, 0.95);
  border-radius: 14px;
  background: rgba(3, 5, 14, 0.78);
  box-shadow:
    0 12px 24px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
}

.work-countdown-unit {
  display: grid;
  justify-items: center;
  gap: 2px;
  justify-content: center;
  min-width: 0;
  width: 100%;
}

.work-countdown-separator {
  align-self: center;
  font-family: "League Spartan", sans-serif;
  font-size: 1rem;
  line-height: 1;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.94);
  transform: translateY(-0.28em);
}

.work-countdown-digits {
  min-width: 2ch;
  font-family: "Oswald", sans-serif;
  font-size: 1.42rem;
  line-height: 0.92;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: #ffffff;
  font-variant-numeric: tabular-nums;
  text-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
}

.work-countdown-unit-label {
  font-family: "Oswald", sans-serif;
  font-size: 0.28rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1;
  white-space: nowrap;
}

.work-countdown-live {
  opacity: 1;
}

.work-countdown-soon {
  filter: saturate(1.08);
}

.work-countdown-soon .work-countdown-board {
  border-color: rgba(255, 215, 215, 0.98);
  background: rgba(24, 7, 15, 0.8);
}

.work-countdown-ended {
  opacity: 0.86;
}

.work-countdown-ended .work-countdown-board {
  border-color: rgba(210, 210, 210, 0.88);
  background: rgba(22, 22, 28, 0.74);
}

.work-copy-actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  flex-wrap: nowrap;
}

.work-copy-actions > * {
  flex-shrink: 0;
}

.work-copy h3 {
  margin: 0 0 16px;
  font-size: 2.35rem;
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  text-shadow:
    0 4px 14px rgba(0, 0, 0, 0.34),
    0 12px 28px rgba(0, 0, 0, 0.2);
}

.work-copy-detail {
  width: 100%;
  max-width: 100%;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.96);
  font-size: 1rem;
  line-height: 1.45;
  text-wrap: pretty;
  text-shadow:
    0 2px 10px rgba(0, 0, 0, 0.45),
    0 8px 20px rgba(0, 0, 0, 0.28);
}

.work-card-three .work-copy,
.work-card-three .work-copy-detail {
  max-width: none;
}

.work-copy-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 138px;
  padding: 12px 20px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  color: var(--white);
  font-family: "Oswald", sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  background: linear-gradient(135deg, rgba(13, 70, 191, 0.24), rgba(234, 43, 47, 0.28));
  backdrop-filter: blur(6px);
}

.work-copy-cta-active {
  border-color: rgba(234, 43, 47, 0.82);
  background: rgba(13, 70, 191, 0.96);
  color: #ffffff;
  box-shadow:
    0 10px 24px rgba(12, 46, 123, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.work-copy-cta-inactive {
  border-color: rgba(255, 255, 255, 0.16);
  background: linear-gradient(135deg, rgba(70, 76, 88, 0.82), rgba(33, 38, 46, 0.86));
  color: rgba(255, 255, 255, 0.78);
  box-shadow: none;
}

.work-copy-cta-ended {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(18, 20, 28, 0.84);
  color: rgba(255, 255, 255, 0.68);
  box-shadow: none;
}

.manifesto {
  width: 100%;
  margin-top: 24px;
  padding: 40px 0 40px;
  background: transparent;
  color: #ffffff;
  backdrop-filter: none;
}

.prizes-shell {
  width: min(1440px, calc(100vw - 48px));
  margin: 0 auto;
}

.prizes-header {
  display: grid;
  gap: 10px;
  margin-bottom: 36px;
  justify-items: center;
  text-align: center;
}

.prizes-header h2 {
  margin: 0;
  max-width: none;
  white-space: nowrap;
  font-size: clamp(1.5rem, 3vw, 3rem);
  line-height: 1.04;
  font-weight: 600;
  letter-spacing: -0.05em;
  color: #ffffff;
  text-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

.prizes-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 20px;
}

.prize-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 420px;
  padding: 34px 30px 28px;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.035);
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(12px);
}

.prize-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent 34%),
    linear-gradient(180deg, transparent 46%, rgba(255, 255, 255, 0.03) 100%);
  pointer-events: none;
}

.work-card::before {
  content: "";
  position: absolute;
  left: 7%;
  right: 7%;
  bottom: -26px;
  height: 42px;
  border-radius: 999px;
  background:
    radial-gradient(ellipse at center, rgba(7, 16, 7, 0.34) 0%, rgba(7, 16, 7, 0.16) 48%, transparent 76%);
  filter: blur(10px);
  z-index: -1;
  pointer-events: none;
}

.prize-card-primary {
  background:
    radial-gradient(circle at 82% 18%, rgba(234, 43, 47, 0.1), transparent 26%),
    radial-gradient(circle at 18% 22%, rgba(255, 217, 92, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(13, 70, 191, 0.32), rgba(11, 56, 152, 0.3)),
    rgba(13, 70, 191, 0.3);
}

.prize-card-secondary {
  background:
    radial-gradient(circle at 84% 16%, rgba(13, 70, 191, 0.14), transparent 26%),
    linear-gradient(180deg, rgba(13, 70, 191, 0.3), rgba(11, 56, 152, 0.28)),
    rgba(13, 70, 191, 0.28);
}

.prize-card-tertiary {
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(13, 70, 191, 0.28), rgba(11, 56, 152, 0.26)),
    rgba(13, 70, 191, 0.26);
}

.prize-visual {
  width: min(100%, 420px);
  align-self: center;
  height: auto;
  margin-bottom: 18px;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.18));
}

.prize-label {
  margin: 0 0 10px;
  font-family: "Oswald", sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}

.prize-card h3 {
  margin: 0 0 14px;
  max-width: 12ch;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.prize-copy {
  margin: 0 0 24px;
  max-width: 34ch;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.65;
}

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

.prize-points li {
  position: relative;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.5;
}

.prize-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.09);
}

.prize-meta {
  display: inline-flex;
  align-items: center;
  margin-top: auto;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.92);
  font-family: "Oswald", sans-serif;
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition:
    background-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.prize-meta:hover {
  background: rgba(13, 70, 191, 0.3);
  color: #ffffff;
  transform: translateY(-1px);
}

.terms-shell {
  width: min(1120px, calc(100vw - 48px));
  margin: 0 auto;
  padding: 34px 0 84px;
}

.terms-page {
  color: #edf1f5;
  background:
    linear-gradient(180deg, rgba(14, 38, 12, 0.16), rgba(9, 24, 8, 0.44)),
    #244b12;
}

.terms-page::before {
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.04), transparent 22%),
    linear-gradient(180deg, rgba(18, 46, 11, 0.08), rgba(10, 24, 8, 0.22)),
    url("../images/grass-field.webp");
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-position: center top, center center, center center;
  background-size: cover, cover, cover;
  filter: saturate(1.08) contrast(1.02) brightness(0.86);
}

.terms-page::after {
  background:
    linear-gradient(180deg, transparent, transparent),
    linear-gradient(90deg, transparent 12%, rgba(255, 255, 255, 0.035) 12%, rgba(255, 255, 255, 0.035) 12.08%, transparent 12.08%),
    linear-gradient(90deg, transparent 50%, rgba(255, 255, 255, 0.03) 50%, rgba(255, 255, 255, 0.03) 50.08%, transparent 50.08%),
    linear-gradient(90deg, transparent 88%, rgba(255, 255, 255, 0.035) 88%, rgba(255, 255, 255, 0.035) 88.08%, transparent 88.08%);
  opacity: 0.05;
}

.terms-topbar {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  margin-bottom: 20px;
}

.terms-hero-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
}

.terms-hero-copy {
  flex: 1;
}

.terms-backlink {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-family: "Oswald", sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.terms-backlink::before {
  content: "";
  width: 18px;
  height: 1px;
  background: currentColor;
}

.terms-logo {
  width: min(170px, 24vw);
  flex: 0 0 auto;
  height: auto;
  display: block;
  filter: none;
}

.terms-hero-panel,
.terms-section,
.terms-anchor-nav {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(15, 19, 26, 0.9);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
  backdrop-filter: none;
}

.terms-hero-panel {
  padding: 42px 42px 34px;
  border-radius: 20px;
}

.terms-kicker,
.terms-section-kicker {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.5);
  font-family: "Oswald", sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.terms-hero-panel h1,
.terms-section-heading h2 {
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #ffffff;
}

.terms-hero-panel h1 {
  max-width: 11ch;
  font-size: clamp(2.9rem, 6.4vw, 5rem);
  line-height: 0.96;
}

.terms-lead {
  max-width: 68ch;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.98rem;
  line-height: 1.74;
}

.terms-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.terms-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.64);
  background: rgba(255, 255, 255, 0.025);
  font-size: 0.84rem;
}

.terms-anchor-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 0;
  padding: 12px;
  border-radius: 18px;
}

.terms-anchor-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 7px 14px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.88rem;
  font-weight: 600;
}

.terms-section {
  margin-top: 22px;
  padding: 34px;
  border-radius: 20px;
}

.terms-section-heading {
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
}

.terms-section-heading h2 {
  font-size: clamp(1.9rem, 3.8vw, 2.9rem);
  line-height: 0.98;
}

.terms-grid {
  display: grid;
  gap: 18px;
}

.terms-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 18px;
}

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

.terms-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 24px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background:
    radial-gradient(circle at 82% 18%, rgba(234, 43, 47, 0.16), transparent 26%),
    radial-gradient(circle at 18% 22%, rgba(255, 217, 92, 0.14), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.04);
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(12px);
}

.terms-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent 34%),
    linear-gradient(180deg, transparent 46%, rgba(255, 255, 255, 0.03) 100%);
  pointer-events: none;
}

.terms-card::after {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: -18px;
  height: 30px;
  border-radius: 999px;
  background:
    radial-gradient(ellipse at center, rgba(0, 0, 0, 0.28) 0%, rgba(0, 0, 0, 0.14) 46%, transparent 76%);
  filter: blur(8px);
  z-index: -1;
  pointer-events: none;
}

.terms-card h3 {
  margin: 0 0 12px;
  color: #ffffff;
  font-family: "Oswald", sans-serif;
  font-size: 1.26rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.terms-card p,
.terms-card li {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
  line-height: 1.72;
}

.terms-card p {
  margin: 0;
}

.terms-card a {
  color: rgba(255, 255, 255, 0.92);
}

.terms-list {
  margin: 0;
  padding-left: 18px;
}

.terms-list li + li {
  margin-top: 9px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 10px;
  padding: 25px 0;
  border-top: 0;
  backdrop-filter: none;
}

.site-footer p,
.site-footer a {
  margin: 0;
  color: rgba(255, 255, 255, 0.94);
  text-decoration: none;
}

.site-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px 22px;
}

@media (max-width: 1100px) {
  .hero-inner {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    padding: 38px 0 72px;
  }

  .hero-rail {
    align-self: center;
    width: min(168px, 24vw);
    margin-top: 0;
  }

  .hero-promo {
    width: min(760px, 100%);
    padding-right: 0;
    transform: translate3d(0, calc(-5.5vh + (var(--hero-progress) * -4vh)), 0);
  }

  .hero-copy h1 {
    font-size: clamp(4.2rem, 9vw, 6.6rem);
    max-width: 8ch;
  }

  .hero-copy p {
    max-width: 34ch;
    letter-spacing: 0.18em;
  }

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

  .work-card {
    min-height: 520px;
  }

  .work-countdown {
    gap: 4px;
  }

  .work-countdown-kicker {
    font-size: 0.36rem;
  }

  .work-countdown-board {
    gap: 5px;
    padding: 6px 8px 5px;
    border-radius: 12px;
  }

  .work-countdown-separator {
    font-size: 0.88rem;
    transform: translateY(-0.24em);
  }

  .work-countdown-digits {
    font-size: 1.22rem;
  }

  .work-countdown-unit-label {
    font-size: 0.24rem;
  }

  .work-card-one .work-copy {
    max-width: none;
  }

  .terms-shell {
    width: min(1240px, calc(100vw - 34px));
    padding: 22px 0 66px;
  }

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

  .terms-grid-2 {
    grid-template-columns: 1fr;
  }

  .work-card-one .work-copy h3 {
    font-size: clamp(1.8rem, 4.2vw, 2.35rem);
    line-height: 1.02;
  }

  .work-card-one .work-copy-detail {
    max-width: 100%;
    font-size: 0.96rem;
    line-height: 1.4;
  }

  .work-card-one .work-copy-badge {
    flex-wrap: wrap;
    max-width: 100%;
  }

  .prizes-shell {
    width: min(100%, calc(100vw - 40px));
  }

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

  .prize-card {
    min-height: 0;
    padding: 28px 24px 24px;
  }

  .prize-card h3,
  .prize-copy {
    max-width: none;
  }

  .prize-visual {
    width: min(100%, 560px);
  }
}

@media (max-width: 700px) {
  .hero-inner,
  .works,
  .site-footer,
  .terms-shell {
    width: calc(100vw - 28px);
  }

  .hero-inner {
    justify-content: center;
    gap: 46px;
    padding: 32px 0 76px;
    min-height: 100svh;
    align-items: center;
  }

  .hero-rail {
    align-self: center;
    width: min(188px, 46vw);
    margin-top: 0;
  }

  .hero-promo {
    width: 100%;
    padding-right: 0;
    transform: translate3d(0, calc(-4vh + (var(--hero-progress) * -3vh)), 0);
  }

  .hero-copy h1 {
    font-size: clamp(3.9rem, 10.9vw, 4.35rem);
    max-width: 100%;
    line-height: 0.83;
    align-items: center;
  }

  .hero-copy::before {
    width: min(420px, 92vw);
    height: min(250px, 56vw);
    left: 50%;
    top: 36%;
    transform: translate(-48%, -50%);
  }

  .hero-copy::after {
    width: min(340px, 82vw);
    height: min(58px, 13vw);
    left: 50%;
    bottom: 2%;
    transform: translateX(-22%);
  }

  .hero-line-viajes {
    font-size: 1.02em;
  }

  .hero-copy p {
    max-width: 32ch;
    font-size: 0.9rem;
    line-height: 1.18;
    letter-spacing: 0.09em;
    text-align: center;
    max-width: 100%;
  }

  .hero-scroll {
    bottom: 10px;
    gap: 5px;
  }

  .hero-scroll-mouse {
    width: 21px;
    height: 34px;
  }

  .hero-scroll-text {
    font-size: 0.56rem;
    letter-spacing: 0.12em;
  }

  .works {
    padding: 25px 0;
  }

  .works-heading h2 {
    max-width: none;
    font-size: clamp(1rem, 4.4vw, 1.4rem);
    line-height: 1.08;
  }

  .work-card {
    min-height: 470px;
  }

  .work-copy {
    left: 18px;
    right: 18px;
    bottom: 18px;
    padding: 16px 14px 14px;
  }

  .work-card-ribbon {
    top: 34px;
    left: 0;
    width: 100%;
    padding: 10px 14px;
    font-size: 0.68rem;
  }

  .work-card-one .work-copy {
    left: 16px;
    right: 16px;
    bottom: 16px;
    max-width: none;
  }

  .work-copy h3 {
    font-size: 1.3rem;
  }

  .work-copy-badge {
    padding: 8px 12px;
    font-size: 0.78rem;
    line-height: 1.25;
  }

  .work-countdown {
    min-width: 0;
    gap: 5px;
    width: auto;
    justify-content: flex-start;
  }

  .work-countdown-kicker {
    font-size: 0.42rem;
  }

  .work-countdown-board {
    gap: 8px;
    padding: 7px 9px 6px;
    border-width: 2px;
    border-radius: 14px;
  }

  .work-countdown-unit {
    min-width: 0;
  }

  .work-countdown-separator {
    font-size: 0.96rem;
    transform: translateY(-0.28em);
  }

  .work-countdown-digits {
    font-size: 1.38rem;
  }

  .work-countdown-unit-label {
    font-size: 0.28rem;
    letter-spacing: 0.12em;
  }

  .work-copy-detail {
    max-width: 100%;
    font-size: 0.92rem;
  }

  .work-card-one .work-copy h3 {
    font-size: 1.45rem;
    line-height: 1.02;
  }

  .work-card-one .work-copy-badge {
    gap: 6px;
    padding: 7px 10px;
    font-size: 0.74rem;
  }

  .work-card-one .work-copy-badge-icon {
    width: 16px;
    height: 16px;
  }

  .work-card-one .work-copy-badge-icon svg {
    width: 14px;
    height: 14px;
  }

  .work-card-one .work-copy-detail {
    font-size: 0.84rem;
    line-height: 1.32;
    margin-bottom: 16px;
  }

  .work-copy-cta {
    min-width: 114px;
    padding: 10px 14px;
    font-size: 0.78rem;
  }

  .manifesto {
    padding: 40px 0 40px;
  }

  .prizes-shell {
    width: calc(100vw - 28px);
  }

  .prizes-header {
    gap: 10px;
    margin-bottom: 26px;
  }

  .prizes-header h2 {
    max-width: none;
    font-size: clamp(2.35rem, 10vw, 3.5rem);
    line-height: 0.96;
  }

  .prizes-grid {
    gap: 14px;
  }

  .prize-card {
    padding: 24px 18px 20px;
  }

  .prize-visual {
    width: 100%;
    margin-bottom: 14px;
    border-radius: 14px;
  }

  .prize-card h3 {
    max-width: none;
    font-size: clamp(1.75rem, 8vw, 2.5rem);
    margin-bottom: 12px;
  }

  .prize-copy {
    margin-bottom: 18px;
    font-size: 0.94rem;
    line-height: 1.55;
  }

  .prize-points {
    gap: 8px;
    margin-bottom: 18px;
  }

  .prize-points li {
    font-size: 0.9rem;
    line-height: 1.45;
  }

  .prize-meta {
    font-size: 0.78rem;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 25px 0;
  }

  .site-footer-links {
    justify-content: flex-start;
  }

  .terms-topbar {
    align-items: flex-start;
  }

  .terms-hero-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .terms-logo {
    width: min(148px, 46vw);
  }

  .terms-hero-panel {
    padding: 28px 22px 24px;
    border-radius: 18px;
  }

  .terms-hero-panel h1 {
    max-width: 100%;
    font-size: clamp(2.45rem, 13vw, 3.7rem);
  }

  .terms-anchor-nav,
  .terms-section {
    border-radius: 18px;
  }

  .terms-anchor-nav {
    padding: 12px;
  }

  .terms-anchor-nav a {
    width: 100%;
    justify-content: center;
  }

  .terms-section {
    margin-top: 18px;
    padding: 24px 18px;
  }

  .terms-grid-3 {
    grid-template-columns: 1fr;
  }

  .terms-card {
    padding: 20px;
    border-radius: 18px;
  }
}
