/* The Deal of the Game: compact battle briefing, PDF-backed copy, no desktop scroll. */

.route-deal {
  --deal-scorch-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 220 220'%3E%3Cfilter id='s'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.052 0.076' numOctaves='4' seed='19' stitchTiles='stitch'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 2.7 0 0 0 -0.76'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23s)'/%3E%3C/svg%3E");
  --deal-panel-bg: rgba(5, 3, 2, 0.76);
  --deal-panel-border: rgba(255, 176, 58, 0.86);
}

.route-deal main .page-shell {
  width: min(1720px, calc(100% - clamp(28px, 4.2vw, 72px)));
}

.deal-hero {
  grid-template-rows: minmax(0, 1fr);
  gap: 0;
  padding-top: calc(var(--header-height) + clamp(0.32rem, 0.8svh, 0.6rem));
  padding-bottom: calc(var(--bar-height) + clamp(0.28rem, 0.6svh, 0.5rem));
  background:
    radial-gradient(ellipse at 58% 103%, rgba(255, 122, 24, 0.5), transparent 34%),
    radial-gradient(ellipse at 78% 18%, rgba(255, 138, 28, 0.17), transparent 28rem),
    linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.05) 40%, rgba(0, 0, 0, 0.58) 100%);
}

.deal-hero::before {
  background:
    radial-gradient(ellipse at 30% 42%, rgba(255, 138, 28, 0.34), transparent 21rem),
    radial-gradient(ellipse at 72% 40%, rgba(216, 72, 30, 0.36), transparent 24rem),
    radial-gradient(ellipse at 52% 98%, rgba(255, 178, 54, 0.32), transparent 29rem),
    linear-gradient(100deg, rgba(255, 138, 28, 0.1), transparent 34%, rgba(255, 76, 18, 0.12) 72%, transparent);
}

.deal-hero__ash {
  opacity: 0.9;
  filter: saturate(1.18) contrast(1.08);
}

.deal-atmosphere {
  opacity: 0.58;
}

.deal-arena {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  grid-template-rows: auto auto minmax(0, 1fr);
  gap: clamp(0.5rem, 0.9vw, 0.85rem);
  height: 100%;
  min-height: 0;
  perspective: 1400px;
  transform-style: preserve-3d;
}

.deal-copy,
.deal-lore,
.deal-cast,
.deal-panel {
  animation: deal-rise 640ms var(--ease-out) forwards;
}

.deal-copy {
  grid-column: 1 / -1;
  grid-row: 1;
  align-self: start;
  justify-self: center;
  min-width: 0;
  max-width: min(1120px, 100%);
  margin-inline: auto;
  padding-top: clamp(0rem, 0.4svh, 0.3rem);
  text-align: center;
}

.deal-copy__title {
  width: auto;
  max-width: 100%;
  margin-inline: auto;
  margin-bottom: clamp(0.32rem, 0.95svh, 0.7rem);
  font-size: clamp(4rem, 4.6vw, 5.4rem);
  line-height: 0.88;
  white-space: nowrap;
  text-wrap: nowrap;
}

.deal-copy__tagline {
  max-width: 100%;
  margin: 0 auto clamp(0.5rem, 1.05svh, 0.8rem);
  color: #ffb13d;
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 1.6vw, 1.95rem);
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-wrap: balance;
}

.deal-copy__lede {
  max-width: min(72ch, 100%);
  margin-inline: auto;
  margin-bottom: clamp(0.7rem, 1.4svh, 1.05rem);
  font-size: clamp(0.92rem, 1.08vw, 1.12rem);
  line-height: 1.32;
  text-wrap: balance;
}

.deal-facts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(0.42rem, 0.85vw, 0.7rem);
  margin: 0;
  padding: 0;
  list-style: none;
}

.deal-facts li {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: clamp(0.4rem, 0.6vw, 0.55rem);
  min-height: 48px;
  padding: 0.55rem 0.85rem 0.5rem 0.7rem;
  color: #fff4df;
  border: 1px solid rgba(255, 176, 58, 0.7);
  background:
    linear-gradient(180deg, rgba(255, 138, 28, 0.14), rgba(0, 0, 0, 0.36)),
    rgba(5, 3, 2, 0.72);
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
  font-family: var(--font-heading);
  font-size: clamp(0.95rem, 1.18vw, 1.18rem);
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.36);
}

.deal-facts__icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: clamp(24px, 1.7vw, 30px);
  height: clamp(24px, 1.7vw, 30px);
  color: var(--ember);
  filter: drop-shadow(0 0 6px rgba(255, 138, 28, 0.42));
}

.deal-facts__icon svg {
  width: 100%;
  height: 100%;
}

.deal-lore {
  grid-column: 1 / -1;
  grid-row: 2;
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: clamp(0.8rem, 1.4vw, 1.2rem);
  min-width: 0;
  min-height: 0;
  padding: clamp(0.7rem, 1.1vw, 1rem) clamp(0.85rem, 1.3vw, 1.2rem);
  background:
    radial-gradient(ellipse at 12% 50%, rgba(255, 138, 28, 0.18), transparent 14rem),
    linear-gradient(95deg, rgba(255, 138, 28, 0.1), transparent 60%),
    rgba(5, 3, 2, 0.78);
  clip-path: polygon(14px 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%, 0 14px);
  box-shadow:
    0 18px 34px rgba(0, 0, 0, 0.42),
    inset 0 0 22px rgba(255, 138, 28, 0.07);
  animation-delay: 90ms;
}

.deal-lore::before,
.deal-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  border: 2px solid var(--deal-panel-border);
  clip-path: inherit;
  -webkit-mask-image: var(--deal-scorch-mask);
          mask-image: var(--deal-scorch-mask);
  -webkit-mask-size: 190px 190px;
          mask-size: 190px 190px;
  box-shadow:
    0 0 12px rgba(255, 96, 20, 0.48),
    inset 0 0 16px rgba(255, 96, 20, 0.12);
}

.deal-lore::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(110deg, transparent 0 18%, rgba(255, 255, 255, 0.08) 18.4% 18.8%, transparent 19.3%),
    repeating-linear-gradient(-8deg, rgba(255, 138, 28, 0.035) 0 1px, transparent 1px 12px);
  opacity: 0.72;
}

.deal-lore > * {
  position: relative;
  z-index: 3;
}

.deal-lore__label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(0.32rem, 0.6vw, 0.5rem);
  padding-right: clamp(0.6rem, 1.1vw, 1rem);
  border-right: 1px solid rgba(255, 138, 28, 0.32);
}

.deal-lore__icon {
  display: grid;
  place-items: center;
  width: clamp(34px, 2.4vw, 44px);
  height: clamp(34px, 2.4vw, 44px);
  color: var(--ember);
  border: 1.6px solid currentColor;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.42);
  box-shadow:
    0 0 14px rgba(255, 138, 28, 0.34),
    inset 0 0 14px rgba(255, 255, 255, 0.04);
}

.deal-lore__icon svg {
  width: 58%;
  height: 58%;
}

.deal-lore .eyebrow {
  margin: 0;
  color: var(--ember);
  font-size: clamp(0.8rem, 0.95vw, 1.05rem);
  letter-spacing: 0.32em;
  text-shadow: 0 0 12px rgba(255, 138, 28, 0.42);
}

.deal-lore__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.deal-lore p {
  margin: 0 0 clamp(0.22rem, 0.55svh, 0.4rem);
  color: #fff1dd;
  font-size: clamp(0.86rem, 0.96vw, 1.04rem);
  line-height: 1.32;
}

.deal-lore p:last-child {
  margin-bottom: 0;
}

.deal-cast {
  position: absolute;
  inset: 0;
  z-index: 2;
  margin: 0;
  padding: 0;
  pointer-events: none;
  overflow: hidden;
  opacity: 0.75;
  mix-blend-mode: overlay;
}

.deal-cast__art,
.deal-cast__art picture {
  display: block;
  width: 100%;
  height: 100%;
}

.deal-cast__characters {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 36%;
  filter:
    saturate(1.1)
    contrast(1.05)
    brightness(0.75);
}

.deal-cast__fallback {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  opacity: 0;
  background: rgba(0, 0, 0, 0.32);
  color: rgba(255, 244, 223, 0.78);
  font-family: var(--font-heading);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: opacity 180ms var(--ease-out);
}

.deal-cast.is-missing .deal-cast__fallback {
  opacity: 1;
}

.deal-panels {
  grid-column: 1 / -1;
  grid-row: 3;
  min-height: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(0.5rem, 0.8vw, 0.9rem);
  align-items: stretch;
}

.deal-panel {
  --panel-accent: #ff8a1c;
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 0;
  padding: clamp(0.74rem, 1.02vw, 1.04rem);
  overflow: hidden;
  color: #fff3df;
  background:
    radial-gradient(ellipse at 50% 0%, color-mix(in srgb, var(--panel-accent) 18%, transparent), transparent 42%),
    linear-gradient(145deg, color-mix(in srgb, var(--panel-accent) 10%, transparent), transparent 48%),
    var(--deal-panel-bg);
  clip-path: polygon(13px 0, 100% 0, 100% calc(100% - 13px), calc(100% - 13px) 100%, 0 100%, 0 13px);
  box-shadow:
    0 22px 42px rgba(0, 0, 0, 0.44),
    inset 0 0 24px color-mix(in srgb, var(--panel-accent) 7%, transparent);
  transition:
    transform 220ms var(--ease-out),
    filter 220ms var(--ease-out),
    box-shadow 220ms var(--ease-out);
}

.deal-panel:nth-of-type(1) { animation-delay: 210ms; }
.deal-panel:nth-of-type(2) { animation-delay: 260ms; }
.deal-panel:nth-of-type(3) { animation-delay: 310ms; }
.deal-panel:nth-of-type(4) { animation-delay: 360ms; }
.deal-panel:nth-of-type(5) { animation-delay: 410ms; }

.deal-panel--objective { --panel-accent: #ffbf3e; }
.deal-panel--setup { --panel-accent: #ff8a1c; }
.deal-panel--turn { --panel-accent: #ff5a16; }
.deal-panel--contracts { --panel-accent: #d8481e; }
.deal-panel--zones { --panel-accent: #5fc28d; }

.deal-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(108deg, transparent 0 28%, rgba(255, 255, 255, 0.08) 28.4% 28.8%, transparent 29.4%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 14px),
    radial-gradient(circle at 14% 18%, color-mix(in srgb, var(--panel-accent) 20%, transparent), transparent 4.5rem);
  opacity: 0.82;
  mix-blend-mode: screen;
}

.deal-panel > * {
  position: relative;
  z-index: 3;
}

.deal-panel__head {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: clamp(0.42rem, 0.62vw, 0.66rem);
  margin-bottom: clamp(0.42rem, 0.72svh, 0.62rem);
}

.deal-panel__icon {
  flex: 0 0 auto;
  width: clamp(34px, 3vw, 48px);
  height: clamp(34px, 3vw, 48px);
  display: grid;
  place-items: center;
  color: var(--panel-accent);
  border: 2px solid currentColor;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  box-shadow:
    0 0 18px color-mix(in srgb, var(--panel-accent) 36%, transparent),
    inset 0 0 18px rgba(255, 255, 255, 0.04);
  animation: deal-icon-surge 4.4s ease-in-out infinite;
}

.deal-panel__icon svg {
  width: 58%;
  height: 58%;
}

.deal-panel h3 {
  min-width: 0;
  margin: 0;
  color: var(--ember);
  font-size: clamp(0.9rem, 1.05vw, 1.34rem);
  line-height: 0.95;
  letter-spacing: 0.07em;
  white-space: nowrap;
  text-shadow: 0 0 14px rgba(255, 138, 28, 0.36);
}

.deal-panel p,
.deal-panel li {
  color: #fff2df;
  font-size: clamp(0.9rem, 0.95vw, 1.0rem);
  line-height: 1.18;
}

.deal-panel p {
  margin-bottom: clamp(0.34rem, 0.65svh, 0.5rem);
}

.deal-panel ul {
  display: grid;
  gap: clamp(0.16rem, 0.3svh, 0.26rem);
  margin: 0 0 clamp(0.42rem, 0.75svh, 0.6rem);
  padding: 0;
  list-style: none;
}

.deal-panel li {
  position: relative;
  padding-left: 0.85rem;
}

.deal-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.52em;
  width: 0.42rem;
  height: 0.42rem;
  border: 1px solid var(--panel-accent);
  transform: rotate(45deg);
  box-shadow: 0 0 8px color-mix(in srgb, var(--panel-accent) 46%, transparent);
}

.route-deal .btn--box.deal-link {
  position: relative;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  margin-top: auto;
  padding: 0.52rem 0.72rem 0.44rem;
  color: var(--ember);
  border-color: var(--ember);
  background: transparent;
  font-family: var(--font-heading);
  font-size: clamp(0.68rem, 0.78vw, 0.9rem);
  letter-spacing: 0.13em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  text-shadow: none;
  box-shadow:
    0 14px 30px rgba(0, 0, 0, 0.48),
    0 0 0 1px rgba(255, 138, 28, 0.22) inset,
    0 0 18px rgba(255, 138, 28, 0.1);
  transition:
    transform 190ms var(--ease-out),
    box-shadow 190ms var(--ease-out),
    color 190ms var(--ease-out),
    border-color 190ms var(--ease-out),
    background-color 190ms var(--ease-out);
}

.route-deal .btn--box.deal-link::before {
  border-color: rgba(255, 138, 28, 0.2);
  background:
    repeating-linear-gradient(100deg, transparent 0 14px, rgba(255, 138, 28, 0.09) 15px, transparent 17px),
    radial-gradient(circle at 20% 0%, rgba(255, 138, 28, 0.18), transparent 5rem);
}

.route-deal .home-hero.has-atmosphere-shader .btn--box.deal-link::after,
.route-deal .home-hero.is-atmosphere-fallback .btn--box.deal-link::after {
  border-color: rgba(255, 138, 28, 0.94);
}

.route-deal .btn--box.deal-link:hover,
.route-deal .btn--box.deal-link:focus-visible {
  color: #ffb13d;
  border-color: #ffb13d;
  background:
    linear-gradient(180deg, rgba(255, 138, 28, 0.08), rgba(0, 0, 0, 0.18)),
    transparent;
  transform: translateY(-2px);
  box-shadow:
    0 14px 24px rgba(0, 0, 0, 0.48),
    0 0 22px rgba(255, 138, 28, 0.42),
    0 0 0 1px rgba(255, 138, 28, 0.36) inset;
}

.deal-link--quiet {
  align-self: flex-start;
  min-height: 34px;
  padding-inline: 0.65rem;
  font-size: clamp(0.66rem, 0.74vw, 0.82rem);
}

@media (hover: hover) and (pointer: fine) {
  .deal-panel:hover,
  .deal-panel:focus-within,
  .deal-panel.is-active {
    filter: brightness(1.06) saturate(1.06);
    transform: translateY(-4px) rotateX(1.2deg);
    box-shadow:
      0 28px 54px rgba(0, 0, 0, 0.52),
      0 0 26px color-mix(in srgb, var(--panel-accent) 24%, transparent),
      inset 0 0 28px color-mix(in srgb, var(--panel-accent) 10%, transparent);
  }

  .deal-cast:hover {
    filter: brightness(1.04) saturate(1.05);
  }
}

@media (min-width: 821px) and (max-width: 1180px) {
  .deal-arena {
    gap: clamp(0.48rem, 0.85vw, 0.72rem);
  }

  .deal-copy__title {
    font-size: clamp(1.85rem, 4.2vw, 2.95rem);
  }

  .deal-copy__tagline {
    font-size: clamp(0.92rem, 1.4vw, 1.2rem);
  }

  .deal-copy__lede {
    font-size: clamp(0.78rem, 0.98vw, 0.9rem);
  }

  .deal-facts li {
    min-height: 38px;
    padding: 0.4rem 0.55rem 0.36rem 0.48rem;
    font-size: clamp(0.74rem, 1vw, 0.88rem);
  }

  .deal-facts__icon {
    width: 20px;
    height: 20px;
  }

  .deal-lore {
    padding: clamp(0.55rem, 0.9vw, 0.74rem) clamp(0.7rem, 1.1vw, 0.95rem);
    gap: clamp(0.55rem, 0.95vw, 0.8rem);
  }

  .deal-lore__label {
    padding-right: clamp(0.5rem, 0.9vw, 0.78rem);
  }

  .deal-lore p {
    font-size: clamp(0.72rem, 0.86vw, 0.84rem);
    line-height: 1.24;
  }

  .deal-lore .eyebrow {
    font-size: clamp(0.7rem, 0.85vw, 0.9rem);
  }

  .deal-panel {
    padding: clamp(0.55rem, 0.78vw, 0.72rem);
  }

  .deal-panel__head {
    gap: clamp(0.3rem, 0.48vw, 0.44rem);
    margin-bottom: clamp(0.3rem, 0.52svh, 0.42rem);
  }

  .deal-panel__icon {
    width: clamp(28px, 2.6vw, 34px);
    height: clamp(28px, 2.6vw, 34px);
  }

  .deal-panel h3 {
    font-size: clamp(0.72rem, 0.98vw, 0.96rem);
    letter-spacing: 0.05em;
  }

  .deal-panel p,
  .deal-panel li {
    font-size: clamp(0.56rem, 0.68vw, 0.68rem);
    line-height: 1.14;
  }

  .deal-panel p {
    margin-bottom: clamp(0.3rem, 0.55svh, 0.4rem);
  }

  .deal-panel ul {
    gap: clamp(0.14rem, 0.26svh, 0.22rem);
    margin-bottom: clamp(0.36rem, 0.65svh, 0.5rem);
  }

  .route-deal .btn--box.deal-link {
    min-height: 32px;
    padding: 0.42rem 0.48rem 0.36rem;
    font-size: clamp(0.56rem, 0.7vw, 0.7rem);
  }
}

@media (max-height: 850px) and (min-width: 821px) {
  .deal-hero {
    padding-top: calc(var(--header-height) + 0.24rem);
    padding-bottom: calc(var(--bar-height) + 0.24rem);
  }

  .deal-arena {
    gap: clamp(0.42rem, 0.68vw, 0.68rem);
  }

  .deal-copy__title {
    margin-bottom: 0.24rem;
    font-size: clamp(1.95rem, 4.2vw, 3.4rem);
  }

  .deal-copy__tagline {
    margin-bottom: 0.4rem;
    font-size: clamp(0.95rem, 1.35vw, 1.18rem);
  }

  .deal-copy__lede {
    margin-bottom: 0.5rem;
    font-size: clamp(0.78rem, 0.95vw, 0.9rem);
    line-height: 1.22;
  }

  .deal-facts li {
    min-height: 36px;
    padding: 0.38rem 0.55rem 0.34rem 0.46rem;
    font-size: clamp(0.74rem, 0.95vw, 0.88rem);
  }

  .deal-lore p {
    line-height: 1.22;
  }

  .deal-panel p,
  .deal-panel li {
    font-size: clamp(0.58rem, 0.66vw, 0.72rem);
    line-height: 1.14;
  }

  .deal-panel ul {
    gap: 0.18rem;
    margin-bottom: clamp(0.34rem, 0.55svh, 0.46rem);
  }

  .deal-panel p {
    margin-bottom: clamp(0.28rem, 0.5svh, 0.36rem);
  }
}

@media (max-height: 740px) and (min-width: 821px) {
  .deal-copy__title {
    font-size: clamp(1.8rem, 3.8vw, 2.85rem);
  }

  .deal-lore p:nth-of-type(2) {
    display: none;
  }

  .deal-panel li:nth-child(n + 3) {
    display: none;
  }

  .deal-panel__icon {
    width: clamp(30px, 2.7vw, 40px);
    height: clamp(30px, 2.7vw, 40px);
  }
}

@media (max-width: 820px) {
  .route-deal main .page-shell {
    width: min(100% - 28px, 680px);
  }

  .deal-hero {
    height: auto;
    min-height: 100svh;
    padding-top: calc(var(--header-height) + clamp(0.8rem, 3vw, 1.2rem));
    padding-bottom: calc(var(--bar-height) + clamp(0.6rem, 2vw, 1rem));
    overflow: hidden;
  }

  .deal-arena {
    height: auto;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto 1fr;
    gap: clamp(0.85rem, 3.4vw, 1.3rem);
  }

  .deal-copy {
    grid-column: 1;
    text-align: center;
  }

  .deal-copy__title {
    max-width: none;
    margin-inline: auto;
    font-size: clamp(2.85rem, 13vw, 4.6rem);
    white-space: normal;
    text-wrap: balance;
  }

  .deal-copy__tagline {
    font-size: clamp(1.08rem, 5vw, 1.6rem);
  }

  .deal-copy__lede {
    max-width: min(100%, 42ch);
    margin-inline: auto;
    font-size: clamp(0.92rem, 3.45vw, 1.05rem);
  }

  .deal-facts {
    justify-content: center;
  }

  .deal-facts li {
    min-height: 46px;
    padding-inline: 0.8rem;
    font-size: clamp(0.86rem, 3vw, 1rem);
  }

  .deal-facts__icon {
    width: clamp(22px, 5.5vw, 28px);
    height: clamp(22px, 5.5vw, 28px);
  }

  .deal-cast {
    position: fixed;
  }

  .deal-cast__characters {
    object-position: center 25%;
  }

  .deal-lore {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: clamp(0.95rem, 3.6vw, 1.25rem);
    text-align: center;
  }

  .deal-lore__label {
    flex-direction: row;
    justify-content: center;
    padding-right: 0;
    padding-bottom: clamp(0.55rem, 2.4vw, 0.8rem);
    border-right: none;
    border-bottom: 1px solid rgba(255, 138, 28, 0.28);
  }

  .deal-lore .eyebrow {
    font-size: clamp(0.78rem, 2.8vw, 0.95rem);
  }

  .deal-lore p {
    font-size: clamp(0.9rem, 3.2vw, 1rem);
    line-height: 1.32;
    text-align: left;
  }

  .deal-panels {
    grid-template-columns: 1fr;
    gap: clamp(0.82rem, 3vw, 1rem);
  }

  .deal-panel {
    min-height: auto;
    padding: clamp(0.95rem, 3.6vw, 1.25rem);
  }

  .deal-panel h3 {
    font-size: clamp(1.05rem, 4.4vw, 1.5rem);
  }

  .deal-panel p,
  .deal-panel li {
    font-size: clamp(0.88rem, 3.2vw, 1rem);
    line-height: 1.32;
  }

  .deal-panel__icon {
    width: clamp(42px, 12vw, 54px);
    height: clamp(42px, 12vw, 54px);
  }

  .route-deal .btn--box.deal-link {
    min-height: 44px;
    align-self: flex-start;
    padding-inline: 0.9rem;
    font-size: clamp(0.82rem, 3vw, 0.95rem);
  }
}

@media (max-width: 520px) {
  .deal-copy__title {
    font-size: clamp(2.6rem, 14vw, 3.85rem);
  }

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

  .deal-facts li {
    padding: 0.46rem 0.4rem;
    font-size: clamp(0.7rem, 2.8vw, 0.85rem);
    letter-spacing: 0.08em;
    text-align: center;
    justify-content: center;
  }

  .deal-lore__label {
    flex-direction: column;
    gap: 0.3rem;
  }

  .deal-lore p {
    text-align: center;
  }
}

@keyframes deal-rise {
  from {
    opacity: 0;
    transform: translate3d(0, 18px, 0) scale(0.985);
  }

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

@keyframes deal-icon-surge {
  0%,
  100% {
    box-shadow:
      0 0 18px color-mix(in srgb, var(--panel-accent) 36%, transparent),
      inset 0 0 18px rgba(255, 255, 255, 0.04);
  }

  50% {
    box-shadow:
      0 0 26px color-mix(in srgb, var(--panel-accent) 52%, transparent),
      inset 0 0 20px rgba(255, 255, 255, 0.08);
  }
}

@media (prefers-reduced-motion: reduce) {
  .deal-copy,
  .deal-lore,
  .deal-cast,
  .deal-panel,
  .deal-panel__icon {
    animation: none !important;
  }

  .deal-cast,
  .deal-panel,
  .deal-link {
    transition: none !important;
    transform: none !important;
  }
}
