:root {
  --black: #050505;
  --ink: #10100d;
  --white: #ffffff;
  --cream: #fff4d0;
  --muted: #d7d0bd;
  --gold: #ffc107;
  --green: #72b632;
  --red: #f24432;
  --blue: #2fb7ff;
  --panel: rgba(13, 13, 10, 0.88);
  --line: rgba(255, 193, 7, 0.34);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.44);
  --section-space: clamp(32px, 4.8vw, 56px);
  --section-x: clamp(18px, 5vw, 60px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(242, 68, 50, 0.16), transparent 30rem),
    linear-gradient(220deg, rgba(114, 182, 50, 0.16), transparent 36rem),
    #050505;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.14;
  background-image:
    linear-gradient(90deg, rgba(255, 193, 7, 0.4) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 193, 7, 0.22) 1px, transparent 1px);
  background-size: 42px 42px;
}

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

a {
  color: inherit;
}

h1,
h2,
h3,
p {
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.hero {
  min-height: 100vh;
  padding: 18px var(--section-x) 36px;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.92) 0%, rgba(5, 5, 5, 0.76) 48%, rgba(5, 5, 5, 0.2) 100%),
    url("assets/memoria/radiaton-2025-03.webp") center / cover;
}

.nav {
  position: sticky;
  top: 14px;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(5, 5, 5, 0.84);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 950;
  text-decoration: none;
}

.brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.brand span {
  font-size: 1.04rem;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
}

.nav-links a {
  padding: 10px 13px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 850;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--black);
  background: var(--gold);
  outline: none;
}

.top-access {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 760px;
  margin: 18px auto 0;
}

.top-access a {
  display: grid;
  gap: 5px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 193, 7, 0.42);
  border-radius: 8px;
  color: var(--cream);
  text-decoration: none;
  background: rgba(5, 5, 5, 0.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  transition: transform 180ms ease, border-color 180ms ease;
}

.top-access a:nth-child(2) {
  border-color: rgba(114, 182, 50, 0.52);
}

.top-access span {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.top-access strong {
  color: var(--white);
  font-size: clamp(1rem, 2.3vw, 1.28rem);
  line-height: 1.05;
}

.top-access a:hover,
.top-access a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 193, 7, 0.78);
}

.hero-stage {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  align-items: end;
  gap: clamp(24px, 5vw, 68px);
  max-width: 1180px;
  min-height: calc(100vh - 92px);
  margin: 0 auto;
  padding-top: 42px;
}

.tagline,
.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.86rem;
  font-weight: 950;
}

.hero-mark {
  width: clamp(86px, 13vw, 150px);
  margin: 0 0 16px;
  filter: drop-shadow(0 18px 30px rgba(255, 193, 7, 0.22));
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3.2rem, 11vw, 8.6rem);
  line-height: 0.88;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 6vw, 5.2rem);
  line-height: 0.94;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 1.5rem;
  line-height: 1.05;
}

.lead {
  max-width: 620px;
  margin: 18px 0 0;
  color: var(--cream);
  font-size: clamp(1.25rem, 2.4vw, 1.8rem);
  font-weight: 750;
  line-height: 1.28;
}

.hero-actions,
.console-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.button,
.console-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 950;
  text-decoration: none;
}

.button.primary,
.console-actions a:first-child {
  color: var(--black);
  border-color: var(--gold);
  background: var(--gold);
}

.button.ghost,
.console-actions a:last-child {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.live-console {
  padding: 22px;
  border: 1px solid rgba(255, 193, 7, 0.48);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 193, 7, 0.14), rgba(5, 5, 5, 0.92)),
    rgba(5, 5, 5, 0.88);
  box-shadow: var(--shadow);
}

.console-top {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
}

.live-pill {
  padding: 5px 9px;
  color: var(--white);
  background: var(--red);
  border-radius: 999px;
}

.live-console strong {
  display: block;
  margin-top: 20px;
  color: var(--gold);
  font-size: 2.25rem;
  line-height: 0.94;
}

.live-console p {
  margin: 12px 0 0;
  color: var(--cream);
  line-height: 1.45;
}

.launch-countdown {
  max-width: 1180px;
  margin: -30px auto 0;
  padding: 0 var(--section-x) var(--section-space);
}

.launch-countdown-copy {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(280px, 1fr);
  gap: clamp(18px, 4vw, 42px);
  align-items: end;
  margin-bottom: 16px;
}

.launch-countdown h2 {
  font-size: clamp(2rem, 6vw, 4.8rem);
}

.mega-countdown,
.mini-countdown {
  display: grid;
  gap: 12px;
}

.mega-countdown {
  grid-template-columns: 1.35fr repeat(3, minmax(0, 0.72fr));
}

.mega-countdown article,
.mini-countdown article {
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 193, 7, 0.16), rgba(13, 13, 10, 0.96)),
    var(--panel);
  box-shadow: var(--shadow);
}

.mega-countdown article {
  min-height: clamp(160px, 19vw, 240px);
  min-width: 0;
  overflow: hidden;
  padding: 22px 10px;
}

.mega-countdown strong,
.mini-countdown strong {
  color: var(--gold);
  max-width: 100%;
  font-variant-numeric: tabular-nums;
  line-height: 0.86;
  animation: countdownGlow 1s ease-in-out infinite alternate;
}

.mega-countdown strong {
  font-size: clamp(3.8rem, 10.6vw, 8.8rem);
}

.mega-countdown span,
.mini-countdown span {
  color: var(--cream);
  font-weight: 950;
}

.mega-countdown span {
  font-size: clamp(1rem, 2.2vw, 1.45rem);
}

.event-countdown {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(280px, 1fr);
  gap: clamp(18px, 4vw, 44px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 var(--section-x) var(--section-space);
}

.event-countdown h2 {
  font-size: clamp(1.35rem, 3.4vw, 2.75rem);
  line-height: 1.02;
}

.mini-countdown {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.mini-countdown article {
  min-height: 116px;
  padding: 16px 10px;
  background:
    linear-gradient(180deg, rgba(47, 183, 255, 0.1), rgba(13, 13, 10, 0.94)),
    var(--panel);
}

.mini-countdown strong {
  font-size: clamp(2rem, 5vw, 4rem);
}

.mini-countdown span {
  font-size: 0.84rem;
}

.mega-countdown article:nth-child(2) strong,
.mini-countdown article:nth-child(2) strong {
  animation-delay: 0.12s;
}

.mega-countdown article:nth-child(3) strong,
.mini-countdown article:nth-child(3) strong {
  animation-delay: 0.24s;
}

.mega-countdown article:nth-child(4) strong,
.mini-countdown article:nth-child(4) strong {
  animation-delay: 0.36s;
}

.next-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 var(--section-x);
}

.next-strip article {
  min-height: 168px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 193, 7, 0.12), rgba(13, 13, 10, 0.95)),
    var(--panel);
  box-shadow: var(--shadow);
}

.next-strip time {
  color: var(--green);
  font-size: 0.9rem;
  font-weight: 950;
}

.next-strip strong {
  display: block;
  margin-top: 8px;
  color: var(--gold);
  font-size: clamp(1.5rem, 3vw, 2.15rem);
  line-height: 1;
}

.next-strip p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.46;
}

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: var(--section-space) var(--section-x);
}

.section-head {
  max-width: 860px;
  margin-bottom: 28px;
}

.section-head p,
.now-copy p,
.seo-section p,
.cta-final p {
  color: var(--muted);
  font-size: clamp(1rem, 1.7vw, 1.22rem);
  line-height: 1.56;
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(270px, 0.75fr);
  gap: 14px;
}

.feature-shot,
.shot-stack a {
  position: relative;
  display: block;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  text-decoration: none;
}

.feature-shot img,
.shot-stack img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-shot {
  display: grid;
  min-height: 520px;
  place-items: center;
  padding: clamp(22px, 4vw, 42px);
  background:
    radial-gradient(circle at top left, rgba(255, 193, 7, 0.22), transparent 26rem),
    linear-gradient(150deg, rgba(114, 182, 50, 0.2), rgba(5, 5, 5, 0.98)),
    var(--panel);
}

.brand-shot img {
  width: min(100%, 560px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 28px 42px rgba(255, 193, 7, 0.16));
}

.feature-shot::after,
.shot-stack a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.86));
}

.brand-shot::after {
  display: none;
}

.feature-shot span,
.feature-shot strong,
.shot-stack span {
  position: absolute;
  z-index: 1;
  left: 18px;
}

.feature-shot span,
.shot-stack span {
  bottom: 74px;
  color: var(--gold);
  font-size: 0.86rem;
  font-weight: 950;
}

.brand-shot span {
  top: 18px;
  bottom: auto;
  width: max-content;
  padding: 7px 10px;
  color: var(--black);
  background: var(--gold);
  border-radius: 999px;
}

.feature-shot strong {
  right: 18px;
  bottom: 20px;
  font-size: clamp(1.35rem, 3vw, 2.2rem);
  line-height: 1;
}

.shot-stack {
  display: grid;
  gap: 14px;
}

.shot-stack a {
  min-height: 230px;
}

.shot-stack span {
  bottom: 18px;
}

.photo-river {
  overflow: hidden;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 var(--section-x) var(--section-space);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.photo-track {
  display: flex;
  gap: 10px;
  width: max-content;
  animation: photoDrift 58s linear infinite;
}

.photo-river img {
  width: clamp(180px, 24vw, 290px);
  aspect-ratio: 4 / 3;
  flex: 0 0 auto;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
  filter: saturate(1.05) contrast(1.04);
}

.photo-river img:nth-child(even) {
  transform: translateY(22px);
}

.photo-river:hover .photo-track {
  animation-play-state: paused;
}

@keyframes photoDrift {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 45px));
  }
}

@keyframes countdownGlow {
  from {
    text-shadow: 0 0 0 rgba(255, 193, 7, 0);
    transform: translateY(0);
  }

  to {
    text-shadow: 0 0 20px rgba(255, 193, 7, 0.34);
    transform: translateY(-2px);
  }
}

.now-section,
.seo-section,
.cta-final {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 1fr);
  gap: clamp(26px, 5vw, 62px);
  align-items: center;
}

.format-board,
.patch-grid {
  display: grid;
  gap: 12px;
}

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

.format-board article,
.patch-grid article {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 193, 7, 0.1), rgba(13, 13, 10, 0.94)),
    var(--panel);
  box-shadow: var(--shadow);
}

.format-board span {
  color: var(--green);
  font-size: 0.9rem;
  font-weight: 950;
}

.format-board strong,
.patch-grid strong {
  display: block;
  margin-top: 6px;
  color: var(--gold);
  font-size: 1.6rem;
  line-height: 1.02;
}

.format-board p,
.patch-grid p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.48;
}

.roles-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(270px, 0.44fr);
  gap: 18px;
  align-items: stretch;
}

.roles-showcase img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: contain;
  padding: clamp(12px, 2vw, 22px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(140deg, rgba(255, 193, 7, 0.2), rgba(255, 255, 255, 0.96) 34%),
    var(--white);
}

.roles-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  padding: 24px;
  border: 1px solid rgba(114, 182, 50, 0.48);
  border-radius: 8px;
  background: rgba(12, 18, 9, 0.86);
}

.roles-copy p {
  margin: 0;
  color: var(--cream);
  font-size: 1.12rem;
  line-height: 1.5;
}

.role-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.role-tags span {
  padding: 8px 10px;
  color: var(--black);
  background: var(--green);
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 950;
}

.role-tags span:nth-child(2) {
  background: var(--gold);
}

.role-tags span:nth-child(3) {
  color: var(--white);
  background: var(--red);
}

.roles-copy .button {
  align-self: flex-start;
}

.reel-section {
  padding-top: var(--section-space);
}

.reel-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(270px, 0.55fr);
  gap: 14px;
}

.main-reel,
.reel-list article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(47, 183, 255, 0.12), rgba(13, 13, 10, 0.94)),
    var(--panel);
  box-shadow: var(--shadow);
}

.main-reel {
  display: grid;
  grid-template-columns: minmax(220px, 0.75fr) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 16px;
}

.video-placeholder {
  display: grid;
  min-height: 280px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 193, 7, 0.22), rgba(242, 68, 50, 0.22)),
    url("assets/memoria/radiaton-2025-08.webp") center / cover;
}

.video-placeholder span {
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  color: var(--black);
  background: var(--gold);
  border-radius: 999px;
  font-size: 2.2rem;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.36);
}

.main-reel p,
.main-reel small {
  color: var(--muted);
}

.main-reel p {
  margin: 0 0 8px;
  font-weight: 950;
}

.main-reel strong {
  display: block;
  color: var(--gold);
  font-size: clamp(2rem, 4.4vw, 4rem);
  line-height: 0.95;
}

.main-reel small {
  display: block;
  max-width: 420px;
  margin-top: 14px;
  font-size: 1rem;
  line-height: 1.45;
}

.reel-list {
  display: grid;
  gap: 12px;
}

.reel-list article {
  padding: 18px;
}

.reel-list span {
  color: var(--blue);
  font-weight: 950;
}

.reel-list strong {
  display: block;
  margin-top: 6px;
  color: var(--gold);
  font-size: 1.45rem;
}

.reel-list p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.4;
}

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

.patch-grid article {
  min-height: 160px;
}

.seo-section {
  padding-top: var(--section-space);
}

.seo-section p {
  margin: 0;
  padding: 24px;
  border-left: 6px solid var(--green);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.quick-access-section {
  padding-top: calc(var(--section-space) * 0.72);
}

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

.quick-access-grid a {
  display: grid;
  min-height: 230px;
  align-content: end;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: inherit;
  text-decoration: none;
  background:
    linear-gradient(180deg, rgba(255, 193, 7, 0.08), rgba(5, 5, 5, 0.94)),
    var(--panel);
  box-shadow: var(--shadow);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.quick-access-grid a:nth-child(2) {
  background:
    linear-gradient(180deg, rgba(43, 178, 228, 0.1), rgba(5, 5, 5, 0.94)),
    var(--panel);
}

.quick-access-grid a:nth-child(3) {
  background:
    linear-gradient(180deg, rgba(114, 182, 50, 0.12), rgba(5, 5, 5, 0.94)),
    var(--panel);
}

.quick-access-grid a:hover,
.quick-access-grid a:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(255, 193, 7, 0.62);
}

.quick-access-grid span {
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quick-access-grid strong {
  display: block;
  margin-top: 10px;
  color: var(--cream);
  font-size: clamp(1.45rem, 3vw, 2.6rem);
  line-height: 1;
}

.quick-access-grid p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.45;
}

.form-section {
  display: grid;
  grid-template-columns: minmax(240px, 0.5fr) minmax(0, 1fr);
  gap: clamp(34px, 7vw, 82px);
  align-items: start;
}

.form-intro {
  position: sticky;
  top: 96px;
}

.form-intro h2 {
  font-size: clamp(1.8rem, 4.4vw, 4rem);
}

.form-intro p {
  color: var(--muted);
  font-size: clamp(1rem, 1.7vw, 1.22rem);
  line-height: 1.56;
}

.form-jump {
  padding: 14px 16px;
  border: 1px solid rgba(255, 193, 7, 0.26);
  border-radius: 8px;
  background: rgba(255, 193, 7, 0.08);
}

.form-jump a {
  color: var(--gold);
  font-weight: 950;
}

.registration-form {
  display: grid;
  gap: 18px;
  padding: clamp(18px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 193, 7, 0.08), rgba(13, 13, 10, 0.96)),
    var(--panel);
  box-shadow: var(--shadow);
}

.form-divider {
  margin-top: clamp(34px, 6vw, 68px);
  padding: clamp(20px, 4vw, 32px) 0 0;
  border-top: 1px solid var(--line);
}

.form-divider h3 {
  margin: 8px 0 10px;
  color: var(--white);
  font-size: clamp(1.45rem, 3vw, 2.4rem);
  line-height: 1.05;
}

.form-divider p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
}

.media-form {
  background:
    linear-gradient(180deg, rgba(114, 182, 50, 0.12), rgba(13, 13, 10, 0.96)),
    var(--panel);
}

label,
legend {
  color: var(--cream);
  font-size: 0.92rem;
  font-weight: 950;
}

input,
textarea,
select {
  width: 100%;
  margin-top: 8px;
  padding: 13px 14px;
  border: 1px solid rgba(255, 193, 7, 0.34);
  border-radius: 8px;
  color: var(--white);
  background: #050505;
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--gold);
  outline: 2px solid rgba(255, 193, 7, 0.2);
}

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

fieldset {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 14px;
  border: 1px solid rgba(255, 193, 7, 0.24);
  border-radius: 8px;
}

.form-block {
  gap: 16px;
  padding: clamp(16px, 3vw, 22px);
  background: rgba(255, 255, 255, 0.035);
}

.form-block legend {
  padding: 0 8px;
  color: var(--gold);
}

fieldset input,
fieldset select {
  margin-top: 0;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: var(--gold);
  font-weight: 850;
}

.cta-final {
  max-width: 1180px;
  margin: 0 auto 54px;
  padding: clamp(30px, 5vw, 46px) clamp(18px, 5vw, 60px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(255, 193, 7, 0.18), rgba(114, 182, 50, 0.08)),
    rgba(8, 8, 6, 0.92);
}

.cta-final .button {
  justify-self: end;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 28px var(--section-x);
  border-top: 1px solid var(--line);
  background: rgba(5, 5, 5, 0.86);
}

.footer img {
  width: 120px;
}

.footer p {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
  text-align: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.footer-links a {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--cream);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 900;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  border-color: rgba(255, 193, 7, 0.7);
  color: var(--gold);
}

@media (max-width: 960px) {
  .hero-stage,
  .story-grid,
  .launch-countdown-copy,
  .event-countdown,
  .now-section,
  .roles-showcase,
  .reel-layout,
  .main-reel,
  .seo-section,
  .form-section,
  .cta-final {
    grid-template-columns: 1fr;
  }

  .next-strip,
  .mega-countdown,
  .patch-grid,
  .quick-access-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .form-intro {
    position: static;
  }

  .cta-final .button {
    justify-self: start;
  }
}

@media (max-width: 680px) {
  .hero {
    min-height: auto;
    background:
      linear-gradient(180deg, rgba(5, 5, 5, 0.76), rgba(5, 5, 5, 0.96)),
      url("assets/memoria/radiaton-2025-03.webp") center / cover;
  }

  .nav {
    border-radius: 8px;
  }

  .nav-links {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
    overflow-x: visible;
    padding: 6px 2px 2px;
    scrollbar-width: none;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .nav-links a {
    flex: 1 1 calc(50% - 8px);
    text-align: center;
  }

  .top-access {
    grid-template-columns: 1fr;
    margin-top: 12px;
  }

  .hero-stage {
    min-height: 74vh;
  }

  .next-strip,
  .mega-countdown,
  .format-board,
  .patch-grid,
  .quick-access-grid,
  .two-cols,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .launch-countdown {
    margin-top: 0;
  }

  .mega-countdown article {
    min-height: 132px;
  }

  .mega-countdown strong {
    font-size: clamp(4rem, 22vw, 6rem);
  }

  .mini-countdown article {
    min-height: 92px;
  }

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

  .photo-river img:nth-child(even) {
    transform: none;
  }

  .photo-track {
    animation-duration: 52s;
  }

  .next-strip {
    margin-top: 0;
  }

  h1 {
    font-size: clamp(3.1rem, 21vw, 6rem);
  }

  h2 {
    font-size: clamp(2rem, 14vw, 3.6rem);
  }

  .roles-showcase img {
    min-height: 0;
    padding: 12px;
  }

  .brand-shot {
    min-height: 380px;
  }

  .video-placeholder {
    min-height: 220px;
  }
}

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

  .photo-track {
    animation: none;
    flex-wrap: nowrap;
    overflow-x: auto;
    width: 100%;
    padding-bottom: 8px;
  }

  .mega-countdown strong,
  .mini-countdown strong {
    animation: none;
  }
}
