:root {
  --text: #f6f1e9;
  --muted: rgba(246, 241, 233, 0.74);
  --line: rgba(246, 241, 233, 0.14);
  --line-soft: rgba(246, 241, 233, 0.08);
  --bg-dark: #08090c;
  --bg-deep: #050608;
  --accent: #ff5a16;
  --shell-width: min(1240px, calc(100vw - 2rem));
  --shell: var(--shell-width);
  --radius-lg: 22px;
  --radius-md: 16px;
  --section-header-clearance: 7.5rem;
  --hero-progress: 0;
  --hero-progress-strong: 0;
  --hero-fade-progress: 0;
  --hero-content-fade-progress: 0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-snap-type: y mandatory;
  scroll-padding-top: var(--section-header-clearance);
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Space Grotesk", sans-serif;
  color: var(--text);
  background: var(--bg-deep);
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

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

button,
input {
  font: inherit;
}

svg {
  display: block;
}

.page-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 30;
  opacity: 0.08;
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.35) 0.6px, transparent 0.6px),
    radial-gradient(rgba(255, 255, 255, 0.15) 0.6px, transparent 0.6px);
  background-size: 22px 22px;
  background-position: 0 0, 11px 11px;
  mix-blend-mode: soft-light;
}

.masthead {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  width: var(--shell-width);
  margin: 0 auto;
  padding: 1.15rem 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.masthead-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.brand-mark {
  width: 156px;
}

.brand-mark img,
.hero-logo {
  width: 100%;
  filter: brightness(0) invert(1);
}

.desktop-nav {
  display: none;
  gap: 1.4rem;
  align-items: center;
}

.desktop-nav a {
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.7rem;
  color: rgba(246, 241, 233, 0.7);
}

.desktop-nav a:hover {
  color: #fff;
}

.locale-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(246, 241, 233, 0.18);
  border-radius: 999px;
  background: rgba(11, 13, 17, 0.46);
  color: var(--text);
  cursor: pointer;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.locale-toggle:hover {
  border-color: rgba(246, 241, 233, 0.34);
  background: rgba(22, 25, 31, 0.7);
  transform: translateY(-1px);
}

.locale-toggle-flag {
  font-size: 1.05rem;
  line-height: 1;
}

.menu-locale-toggle {
  background: rgba(6, 7, 10, 0.62);
}

.menu-toggle {
  display: inline-flex;
  flex-direction: column;
  gap: 0.34rem;
  align-items: flex-end;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-right: 0.35rem;
  padding: 0 0.35rem 0 0;
  border: 0;
  background: transparent;
  color: var(--text);
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 24px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 45;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, rgba(16, 18, 24, 0.96), rgba(42, 46, 58, 0.98));
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 180ms ease, visibility 180ms ease;
}

.menu-open .menu-overlay {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.menu-overlay-word {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  font-family: "Big Shoulders Display", sans-serif;
  font-size: clamp(7rem, 28vw, 24rem);
  line-height: 0.8;
  letter-spacing: 0.08em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.14);
  pointer-events: none;
}

.menu-overlay-content {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 1.25rem;
}

.menu-nav {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.5rem;
  justify-items: center;
}

.menu-nav a {
  text-decoration: none;
  font-family: "Big Shoulders Display", sans-serif;
  font-size: clamp(2.6rem, 8vw, 4.8rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-shell {
  position: relative;
  height: 158svh;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.hero {
  position: fixed;
  inset: 0;
  z-index: 0;
  height: 100svh;
  overflow: hidden;
  background: #020202;
}

.hero-media,
.hero-overlay,
.hero-blackout {
  position: absolute;
  inset: 0;
}

.hero-media {
  background: url("/assets/backgrounds/galguera-fuego-portal.png") center center / cover no-repeat;
  filter:
    brightness(calc(1 - (var(--hero-progress) * 0.02) - (var(--hero-fade-progress) * 0.18)))
    saturate(calc(1 - (var(--hero-fade-progress) * 0.08)))
    contrast(1);
  will-change: filter;
}

.hero-overlay {
  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.02) 0%,
      rgba(0, 0, 0, 0.08) 28%,
      rgba(0, 0, 0, 0.18) 62%,
      rgba(0, 0, 0, 0.34) 100%
    );
}

.hero-blackout {
  inset: 0;
  background: #000;
  opacity: var(--hero-fade-progress);
  pointer-events: none;
  will-change: opacity;
}

.hero-stage {
  position: relative;
  z-index: 1;
  width: var(--shell);
  height: 100%;
  margin: 0 auto;
  display: grid;
  align-content: center;
  justify-items: center;
  padding-top: 3.8rem;
  text-align: center;
}

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: calc(1 - var(--hero-content-fade-progress));
  will-change: opacity;
}

.hero-logo {
  width: min(72vw, 760px);
  filter:
    brightness(0) invert(1)
    drop-shadow(0 0 24px rgba(0, 0, 0, 0.22))
    drop-shadow(0 0 30px rgba(255, 90, 22, 0.15));
}

.hero-tagline {
  margin-top: 1.2rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(246, 241, 233, 0.96);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
  font-size: clamp(1rem, 1.5vw, 1.24rem);
  cursor: pointer;
}

.hero-tagline-bracket {
  color: rgba(246, 241, 233, 0.74);
}

.hero-arrow {
  margin-top: 1rem;
  font-size: 1.8rem;
  color: rgba(246, 241, 233, 0.82);
}

.hero-social {
  position: absolute;
  bottom: 1.15rem;
  z-index: 2;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.hero-social-left {
  left: max(calc((100vw - var(--shell-width)) / 2), 1rem);
}

.hero-social-right {
  right: max(calc((100vw - var(--shell-width)) / 2), 1rem);
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid rgba(246, 241, 233, 0.2);
  border-radius: 999px;
  background: rgba(8, 10, 13, 0.26);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 10px 28px rgba(0, 0, 0, 0.22);
  color: rgba(246, 241, 233, 0.74);
  transition:
    color 160ms ease,
    border-color 160ms ease,
    background-color 160ms ease,
    transform 160ms ease,
    box-shadow 160ms ease;
  backdrop-filter: blur(10px);
}

.social-link:hover {
  color: rgba(255, 255, 255, 0.98);
  border-color: rgba(246, 241, 233, 0.38);
  background: rgba(16, 18, 22, 0.5);
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 14px 32px rgba(0, 0, 0, 0.28);
}

.social-link svg {
  width: 1.05rem;
  height: 1.05rem;
  fill: currentColor;
}

.content-stack {
  position: relative;
  z-index: 10;
  margin-top: -58svh;
  padding-top: 18svh;
  background: linear-gradient(180deg, #07080b 0%, #08090c 100%);
  box-shadow: 0 -18px 72px rgba(0, 0, 0, 0.34);
}

.content-stack::before,
.content-stack::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.content-stack::before {
  background: linear-gradient(180deg, rgba(7, 8, 11, 0.96), rgba(7, 8, 11, 0.98));
}

.content-stack::after {
  background: url("/assets/backgrounds/textura-fondo.png") center top / cover no-repeat;
  opacity: 0.46;
  mix-blend-mode: screen;
}

.monument-section {
  position: relative;
  min-height: 100svh;
  padding: var(--section-header-clearance) 0 5.5rem;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.section-shell {
  position: relative;
  z-index: 1;
  width: var(--shell);
  margin: 0 auto;
}

.releases-section .section-word {
  margin-bottom: 1.35rem;
}

.section-label {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.76rem;
  color: rgba(246, 241, 233, 0.56);
}

.section-word,
.access-title,
.release-meta h3 {
  margin: 0;
  font-family: "Big Shoulders Display", sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 0.86;
}

.section-word {
  margin-top: 0.45rem;
  margin-bottom: 2rem;
  font-size: clamp(4.6rem, 11vw, 8.8rem);
  color: rgba(246, 241, 233, 0.62);
}

.release-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
}

.release-panel {
  padding: 1rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-soft);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.018)),
    rgba(6, 7, 10, 0.74);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
}

.release-meta {
  margin-bottom: 0.8rem;
}

.release-type {
  margin: 0 0 0.28rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.72rem;
  color: rgba(246, 241, 233, 0.5);
}

.release-meta h3 {
  font-size: clamp(1.7rem, 2.8vw, 2.35rem);
}

.release-panel iframe {
  display: block;
  border: 0;
  border-radius: var(--radius-md);
  background: transparent;
}

.about-layout,
.access-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: center;
}

.access-section .section-shell {
  display: flex;
  flex-direction: column;
  min-height: calc(100svh - var(--section-header-clearance) - 5.5rem);
}

.access-layout {
  flex: 1;
  align-content: center;
}

.about-frame,
.access-frame {
  min-height: 520px;
  border-radius: 28px;
  border: 1px solid var(--line-soft);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01)),
    center center / cover no-repeat;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
}

.about-frame {
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01)),
    url("/assets/photos/About.png");
}

.access-frame {
  min-height: 430px;
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01)),
    url("/assets/photos/mailing-list.png");
}

.about-text p {
  margin: 0 0 1.4rem;
  max-width: 38rem;
  color: var(--muted);
  line-height: 1.78;
  font-size: 1.04rem;
}

.access-title {
  margin-top: 0.4rem;
  margin-bottom: 1.15rem;
  font-size: clamp(3rem, 6vw, 5.2rem);
  color: rgba(246, 241, 233, 0.8);
}

.subscription-popup {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.26s ease,
    visibility 0.26s ease;
}

.subscription-popup.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.subscription-popup__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.84);
  cursor: pointer;
}

.subscription-popup__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 30rem);
  padding: 2rem 1.5rem 1.5rem;
  border: 1px solid rgba(246, 241, 233, 0.12);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(18, 18, 18, 0.96), rgba(8, 8, 8, 0.98));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.46);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.subscription-popup.is-visible .subscription-popup__panel {
  transform: translateY(0);
}

.subscription-popup__close {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  width: 2.3rem;
  height: 2.3rem;
  border: 1px solid rgba(246, 241, 233, 0.14);
  border-radius: 999px;
  background: transparent;
  color: rgba(246, 241, 233, 0.72);
  font-size: 1.45rem;
  line-height: 1;
  cursor: pointer;
}

.subscription-popup__label {
  margin: 0;
  color: rgba(246, 241, 233, 0.48);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
}

.subscription-popup__title {
  margin: 0.55rem 0 0;
  font-size: clamp(2.4rem, 8vw, 3.7rem);
  line-height: 0.94;
  color: rgba(246, 241, 233, 0.92);
}

.subscription-popup__copy {
  margin: 1rem 0 0;
  max-width: 28rem;
  color: rgba(246, 241, 233, 0.64);
  line-height: 1.65;
}

.subscription-popup__form {
  display: grid;
  gap: 0.95rem;
  margin-top: 1.45rem;
}

.subscription-popup__form input {
  min-height: 3.5rem;
  padding: 0 0.2rem;
  border: 0;
  border-bottom: 1px solid rgba(246, 241, 233, 0.26);
  background: transparent;
  color: var(--text);
}

.subscription-popup__form input::placeholder {
  color: rgba(246, 241, 233, 0.42);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.subscription-popup__form button {
  justify-self: start;
  min-height: 3rem;
  padding: 0 1.08rem;
  border: 1px solid rgba(246, 241, 233, 0.22);
  border-radius: 8px;
  background: transparent;
  color: rgba(246, 241, 233, 0.94);
  font-family: "Big Shoulders Display", sans-serif;
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
}

.subscription-popup__form button:disabled {
  opacity: 0.5;
  cursor: wait;
}

.subscription-popup__form button[data-loading="true"]::after {
  content: "";
  display: inline-block;
  width: 0.88rem;
  height: 0.88rem;
  margin-left: 0.55rem;
  border: 2px solid rgba(246, 241, 233, 0.34);
  border-top-color: #fff;
  border-radius: 50%;
  vertical-align: -0.08rem;
  animation: spin 0.8s linear infinite;
}

.subscription-popup__status {
  min-height: 1.5rem;
  margin: 0.95rem 0 0;
  color: rgba(246, 241, 233, 0.56);
}

.subscription-popup__status[data-state="pending"] {
  color: rgba(246, 241, 233, 0.78);
}

.subscription-popup__status[data-state="success"] {
  color: #ffb08f;
}

.subscription-popup__status[data-state="error"] {
  color: #ff8e8e;
}

.hidden-trap {
  opacity: 0;
  position: absolute;
  left: -9999px;
  pointer-events: none;
}

.mailing-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.85rem;
  align-items: center;
}

.mailing-form input {
  min-height: 3.65rem;
  padding: 0 0.2rem;
  border: 0;
  border-bottom: 1px solid rgba(246, 241, 233, 0.26);
  border-radius: 0;
  background: transparent;
  color: var(--text);
}

.mailing-form input::placeholder {
  color: rgba(246, 241, 233, 0.42);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.mailing-form button {
  min-height: 3rem;
  padding: 0 1.08rem;
  border: 1px solid rgba(246, 241, 233, 0.22);
  border-radius: 8px;
  background: transparent;
  color: rgba(246, 241, 233, 0.94);
  font-family: "Big Shoulders Display", sans-serif;
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
}

.mailing-form button:disabled {
  opacity: 0.5;
  cursor: wait;
}

.mailing-form button[data-loading="true"]::after {
  content: "";
  display: inline-block;
  width: 0.88rem;
  height: 0.88rem;
  margin-left: 0.55rem;
  border: 2px solid rgba(246, 241, 233, 0.34);
  border-top-color: #fff;
  border-radius: 50%;
  vertical-align: -0.08rem;
  animation: spin 0.8s linear infinite;
}

.form-status {
  min-height: 1.5rem;
  margin: 0.85rem 0 0;
  color: rgba(246, 241, 233, 0.56);
}

.form-status[data-state="pending"] {
  color: rgba(246, 241, 233, 0.78);
}

.form-status[data-state="success"] {
  color: #ffb08f;
}

.form-status[data-state="error"] {
  color: #ff8e8e;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 1.2rem;
  margin-top: auto;
  padding-top: 2rem;
  padding-bottom: 0.6rem;
}

.footer-social {
  display: flex;
  gap: 0.6rem;
}

.footer-social-right {
  justify-self: end;
}

.footer-social-mobile {
  display: none;
  gap: 0.8rem;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-legal {
  grid-column: 1 / -1;
  justify-self: center;
  margin-top: 0.8rem;
  color: rgba(246, 241, 233, 0.52);
  font-size: 0.74rem;
  letter-spacing: 0.02em;
}

.footer-legal a {
  text-decoration: none;
}

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

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

@media (max-width: 980px) {
  .hero-shell {
    height: 150svh;
  }

  .content-stack {
    margin-top: -50svh;
    padding-top: 16svh;
  }

  .release-layout,
  .about-layout,
  .access-layout {
    grid-template-columns: 1fr;
  }

  .hero-social {
    display: none;
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 1rem;
    margin-top: 7rem;
    padding-bottom: 2rem;
  }

  .footer-social {
    display: none;
  }

  .footer-social-right {
    justify-self: center;
  }

  .footer-social-mobile {
    display: flex;
  }
}

@media (max-width: 720px) {
  :root {
    --shell-width: calc(100vw - 1.8rem);
    --section-header-clearance: 6.5rem;
  }

  html {
    scroll-snap-type: none;
  }

  .masthead {
    padding-top: 0.9rem;
  }

  .brand-mark {
    width: 112px;
  }

  .masthead-actions {
    gap: 0.35rem;
  }

  .hero-stage,
  .section-shell {
    width: var(--shell-width);
  }

  .hero-shell {
    height: auto;
    scroll-snap-align: none;
    scroll-snap-stop: normal;
  }

  .hero {
    position: relative;
    height: 100svh;
  }

  .hero-media {
    filter: brightness(0.82) saturate(0.96) contrast(1);
  }

  .hero-blackout {
    opacity: 0;
  }

  .hero-content {
    opacity: 1;
  }

  .hero-logo {
    width: min(88vw, 470px);
  }

  .hero-tagline {
    max-width: 18ch;
    line-height: 1.2;
  }

  .content-stack {
    margin-top: 0;
    padding-top: 0;
    box-shadow: none;
  }

  .content-stack::before {
    background: linear-gradient(180deg, rgba(7, 8, 11, 1), rgba(7, 8, 11, 0.98));
  }

  .monument-section {
    min-height: auto;
    padding-bottom: 4.25rem;
    scroll-snap-align: none;
    scroll-snap-stop: normal;
  }

  .section-word {
    font-size: clamp(3.8rem, 18vw, 5.4rem);
  }

  .about-frame,
  .access-frame {
    min-height: 320px;
  }

  .mailing-form {
    grid-template-columns: 1fr;
  }

  .mailing-form button {
    justify-self: start;
  }

  .subscription-popup {
    padding: 1rem;
  }

  .subscription-popup__panel {
    padding: 1.8rem 1.15rem 1.25rem;
  }

  .footer-social {
    gap: 0.8rem;
  }

  .footer-legal {
    text-align: center;
    line-height: 1.5;
  }

  .menu-toggle {
    margin-right: 0.2rem;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

html.confirmation-page {
  scroll-behavior: auto;
  scroll-snap-type: none;
}

body.confirmation-page {
  background:
    radial-gradient(circle at top, rgba(255, 90, 22, 0.12), transparent 36%),
    linear-gradient(180deg, rgba(10, 10, 10, 0.94), rgba(5, 6, 8, 0.99)),
    url("/assets/backgrounds/textura-fondo.png") center top / cover no-repeat,
    #0a0a0a;
}

.confirmation-main {
  position: relative;
  min-height: 100vh;
  padding: 7.5rem 1rem 2rem;
  display: grid;
  align-items: center;
}

.confirmation-shell {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  margin: 0 auto;
}

.confirmation-card {
  position: relative;
  overflow: hidden;
  padding: clamp(1.4rem, 3vw, 2.4rem);
  border: 1px solid rgba(246, 241, 233, 0.1);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(14, 15, 19, 0.9), rgba(6, 6, 8, 0.96));
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
}

.confirmation-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 90, 22, 0.14), transparent 36%),
    radial-gradient(circle at 80% 18%, rgba(255, 255, 255, 0.08), transparent 22%);
  pointer-events: none;
}

.confirmation-kicker {
  position: relative;
  z-index: 1;
  margin: 0 0 0.7rem;
  color: rgba(246, 241, 233, 0.52);
  font-size: 0.76rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.confirmation-title {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: 11ch;
  font-family: "Big Shoulders Display", sans-serif;
  font-size: clamp(4rem, 12vw, 7.5rem);
  font-weight: 900;
  line-height: 0.88;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.confirmation-copy {
  position: relative;
  z-index: 1;
  margin: 1.2rem 0 0;
  max-width: 40rem;
  color: rgba(246, 241, 233, 0.72);
  font-size: clamp(1rem, 2vw, 1.08rem);
  line-height: 1.8;
}

.confirmation-actions {
  position: relative;
  z-index: 1;
  margin-top: 1.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
}

.confirmation-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.85rem 1.25rem;
  border: 1px solid rgba(246, 241, 233, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
  color: rgba(246, 241, 233, 0.94);
  font-family: "Big Shoulders Display", sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.confirmation-button:hover {
  transform: translateY(-1px);
  border-color: rgba(246, 241, 233, 0.32);
  background: rgba(255, 255, 255, 0.06);
}

.confirmation-note {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(246, 241, 233, 0.48);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.74rem;
}

@media (max-width: 720px) {
  .confirmation-main {
    padding-top: 6.6rem;
  }

  .confirmation-title {
    max-width: none;
  }

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