/* Cover */
.slide-kind--cover .slide-content {
  align-items: center;
}

.slide-kind--cover .slide-title {
  max-width: 12em;
}

.cover-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  width: 42%;
  aspect-ratio: 1;
  border: 1px solid rgba(253, 105, 53, 0.14);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.cover-orbit::before,
.cover-orbit::after {
  position: absolute;
  inset: 13%;
  border: 1px solid rgba(43, 182, 255, 0.1);
  border-radius: inherit;
  content: "";
}

.cover-orbit::after {
  inset: 29%;
  border-color: rgba(253, 105, 53, 0.13);
}

.cover-orbit span {
  position: absolute;
  width: 2.2%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 12px var(--orange);
}

.cover-orbit span:nth-child(1) { top: 12%; left: 24%; }
.cover-orbit span:nth-child(2) { right: 10%; bottom: 34%; background: var(--blue); box-shadow: 0 0 12px var(--blue); }
.cover-orbit span:nth-child(3) { bottom: 8%; left: 38%; }

.cover-badge {
  display: inline-flex;
  align-items: center;
  gap: 1em;
  margin-top: 1.5%;
  padding: 1.1% 1.7%;
  border: 1px solid rgba(253, 105, 53, 0.25);
  border-radius: 999px;
  background: rgba(253, 105, 53, 0.08);
}

.cover-badge span {
  color: var(--muted);
  font-size: clamp(0.5rem, 0.9vw, 0.8rem);
  font-weight: 800;
}

.cover-badge strong {
  color: var(--orange-2);
  font-size: clamp(0.7rem, 1.2vw, 1.1rem);
}

/* Question */
.question-amounts {
  display: grid;
  width: min(76%, 58em);
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 4%;
  margin: 3% auto 0;
}

.question-amounts > span {
  padding: 4.5% 6%;
  border: 1px solid var(--line);
  border-radius: 1.2em;
  background: rgba(14, 33, 53, 0.72);
  text-align: center;
}

.question-amounts > b {
  color: var(--red);
  font-size: clamp(1rem, 2.6vw, 2.4rem);
}

.question-amounts small,
.question-amounts strong {
  display: block;
}

.question-amounts small {
  margin-bottom: 0.7em;
  color: var(--muted);
  font-size: clamp(0.45rem, 0.9vw, 0.8rem);
  font-weight: 800;
}

.question-amounts strong {
  font-size: clamp(1.1rem, 2.8vw, 2.8rem);
  letter-spacing: 0;
}

.question-amounts__net {
  border-color: rgba(253, 105, 53, 0.35) !important;
  background: rgba(253, 105, 53, 0.09) !important;
}

.question-amounts__net strong {
  color: var(--orange-2);
}

/* Math-first retention beat */
.slide-kind--math-tease .slide-content {
  align-items: center;
  justify-content: center;
}

.slide-kind--math-tease .slide-title {
  max-width: 11.5em;
  letter-spacing: 0;
}

.number-trio {
  display: grid;
  width: min(88%, 68em);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2.2%;
  margin-top: 2%;
}

.number-card {
  position: relative;
  display: grid;
  min-height: 12.4em;
  align-content: center;
  gap: 0.75em;
  padding: 9% 8%;
  overflow: hidden;
  border: 1px solid rgba(151, 188, 218, 0.16);
  border-radius: 1em;
  background: rgba(14, 33, 53, 0.78);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
}

.number-card::after {
  position: absolute;
  inset: auto 0 0 0;
  height: 0.42em;
  background: var(--blue);
  content: "";
}

.number-card--wallet {
  border-color: rgba(253, 105, 53, 0.34);
  background: rgba(253, 105, 53, 0.1);
}

.number-card--wallet::after {
  background: var(--orange);
}

.number-card--due {
  border-color: rgba(255, 95, 103, 0.28);
  background: rgba(80, 21, 31, 0.42);
}

.number-card--due::after {
  background: var(--red);
}

.number-card small,
.number-card strong,
.number-card span {
  position: relative;
  z-index: 1;
  display: block;
}

.number-card small {
  color: var(--muted);
  font-size: clamp(0.42rem, 0.82vw, 0.72rem);
  font-weight: 900;
  text-transform: uppercase;
}

.number-card strong {
  font-size: clamp(1rem, 2.75vw, 2.8rem);
  letter-spacing: 0;
}

.number-card span {
  color: #c5d5e1;
  font-size: clamp(0.46rem, 0.88vw, 0.78rem);
  font-weight: 800;
  line-height: 1.35;
}

.math-cliffhanger {
  display: inline-flex;
  align-items: center;
  gap: 1.1em;
  margin-top: 3%;
  padding: 1.2% 2%;
  border: 1px solid rgba(253, 105, 53, 0.25);
  border-radius: 999px;
  background: rgba(253, 105, 53, 0.07);
}

.math-cliffhanger span {
  color: var(--muted);
  font-size: clamp(0.42rem, 0.78vw, 0.68rem);
  font-weight: 900;
  text-transform: uppercase;
}

.math-cliffhanger strong {
  color: var(--orange-2);
  font-size: clamp(0.58rem, 1.08vw, 0.96rem);
}

/* Verdict */
.verdict-visual {
  position: relative;
  display: grid;
  width: min(72%, 48em);
  min-height: 48%;
  place-items: center;
  align-content: center;
  gap: 4%;
  margin: 0 auto;
  padding: 4%;
  text-align: center;
}

.verdict-ring {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 35%;
  aspect-ratio: 1;
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: 0.22;
  box-shadow: 0 0 0 2.8vw color-mix(in srgb, currentColor 5%, transparent), 0 0 0 5.5vw color-mix(in srgb, currentColor 3%, transparent);
}

.verdict-visual strong {
  position: relative;
  color: var(--orange);
  font-size: clamp(2rem, 6vw, 6rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.verdict-visual p {
  position: relative;
  width: min(86%, 38em);
  margin: 0;
  color: #d7e2ea;
  font-size: clamp(0.7rem, 1.45vw, 1.35rem);
  line-height: 1.45;
}

.verdict-visual--positive { color: var(--green); }
.verdict-visual--positive strong { color: var(--green); }
.verdict-visual--danger { color: var(--red); }
.verdict-visual--danger strong { color: var(--red); }
.verdict-visual--neutral { color: var(--blue); }
.verdict-visual--neutral strong { color: var(--blue); }

/* Overview */
.overview-grid {
  display: grid;
  width: min(92%, 68em);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.2%;
  margin-top: 1.5%;
}

.info-card {
  padding: 3.5% 4%;
  border: 1px solid var(--line);
  border-radius: 1em;
  background: rgba(14, 33, 53, 0.76);
}

.info-card small,
.info-card strong {
  display: block;
}

.info-card small {
  margin-bottom: 0.55em;
  color: var(--blue);
  font-size: clamp(0.42rem, 0.82vw, 0.72rem);
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.info-card strong {
  font-size: clamp(0.75rem, 1.55vw, 1.45rem);
  line-height: 1.2;
}

/* Offer */
.offer-ticket {
  position: relative;
  display: grid;
  width: min(90%, 68em);
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 2%;
  margin-top: 3%;
  padding: 4.5% 5%;
  overflow: hidden;
  border: 1px solid rgba(43, 182, 255, 0.24);
  border-radius: 1.3em;
  background: linear-gradient(135deg, rgba(14, 42, 67, 0.9), rgba(9, 24, 39, 0.9));
}

.offer-ticket::before,
.offer-ticket::after {
  position: absolute;
  top: 50%;
  width: 4.5%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #07111f;
  content: "";
  transform: translateY(-50%);
}

.offer-ticket::before { left: -2.3%; }
.offer-ticket::after { right: -2.3%; }

.offer-ticket > div {
  padding-right: 6%;
  border-right: 1px dashed rgba(151, 188, 218, 0.18);
}

.offer-ticket > div:last-of-type {
  border-right: 0;
}

.offer-ticket small,
.offer-ticket strong {
  display: block;
}

.offer-ticket small {
  margin-bottom: 0.8em;
  color: var(--muted);
  font-size: clamp(0.42rem, 0.85vw, 0.72rem);
  font-weight: 800;
}

.offer-ticket strong {
  font-size: clamp(0.95rem, 2.2vw, 2.2rem);
  letter-spacing: 0;
}

.offer-snapshot {
  position: relative;
  display: grid;
  width: min(88%, 68em);
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.4%;
  margin-top: 2.8%;
  overflow: hidden;
}

.offer-snapshot__main,
.offer-snapshot__rail > div,
.offer-snapshot__tag {
  border: 1px solid rgba(43, 182, 255, 0.22);
  border-radius: 1em;
  background: rgba(14, 42, 67, 0.75);
}

.offer-snapshot__main {
  position: relative;
  display: grid;
  min-height: 18em;
  align-content: center;
  gap: 1em;
  padding: 7%;
  overflow: hidden;
}

.offer-snapshot__main::after {
  position: absolute;
  inset: auto 0 0 0;
  height: 0.55em;
  background: linear-gradient(90deg, var(--blue), var(--orange));
  content: "";
}

.offer-snapshot__main small,
.offer-snapshot__main strong,
.offer-snapshot__main span {
  display: block;
}

.offer-snapshot__main small,
.offer-snapshot__rail span {
  color: var(--blue);
  font-size: clamp(0.43rem, 0.82vw, 0.72rem);
  font-weight: 900;
  text-transform: uppercase;
}

.offer-snapshot__main strong {
  color: #fff;
  font-size: clamp(1.6rem, 5.7vw, 5.7rem);
  letter-spacing: 0;
  line-height: 0.95;
}

.offer-snapshot__main span {
  color: #c7d7e3;
  font-size: clamp(0.55rem, 1.05vw, 0.95rem);
  font-weight: 850;
}

.offer-snapshot__rail {
  display: grid;
  gap: 5%;
}

.offer-snapshot__rail > div {
  display: grid;
  align-content: center;
  gap: 0.65em;
  padding: 8% 9%;
}

.offer-snapshot__rail strong {
  font-size: clamp(1rem, 2.25vw, 2.15rem);
  letter-spacing: 0;
}

.offer-snapshot__tag {
  grid-column: 1 / -1;
  padding: 1.45% 2%;
  color: var(--orange-2);
  background: rgba(253, 105, 53, 0.07);
  font-size: clamp(0.48rem, 0.95vw, 0.84rem);
  font-weight: 900;
  text-align: center;
}

/* Money flow — centered title and minimal motion */
.slide-kind--money-flow .slide-content {
  align-items: center;
  justify-content: flex-start;
  padding-top: 2.5%;
}

.slide-kind--money-flow .slide-title {
  position: relative;
  margin-bottom: 0.2em;
  font-size: clamp(1.55rem, 4.1vw, 4.3rem);
  letter-spacing: 0;
}

.slide-kind--money-flow .slide-title::after {
  display: block;
  width: 10%;
  min-width: 42px;
  height: 0.06em;
  margin: 0.27em auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  box-shadow: 0 0 18px rgba(253, 105, 53, 0.5);
  content: "";
}

.loading-accent {
  display: flex;
  justify-content: center;
  gap: 0.5%;
  height: 2.3%;
  margin-bottom: 1.4%;
}

.loading-accent span {
  width: 0.5%;
  min-width: 4px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 10px rgba(253, 105, 53, 0.55);
  opacity: 0.3;
}

.money-stack {
  display: grid;
  width: min(76%, 60em);
  gap: 1.2%;
  margin: 0 auto;
}

.money-flow-arrow {
  display: grid;
  width: 2.15em;
  aspect-ratio: 1;
  place-items: center;
  justify-self: center;
  border: 1px solid rgba(253, 105, 53, 0.22);
  border-radius: 50%;
  color: var(--orange-2);
  background: rgba(253, 105, 53, 0.08);
  box-shadow: 0 0 18px rgba(253, 105, 53, 0.12);
  font-size: clamp(0.52rem, 1vw, 0.9rem);
  font-weight: 900;
  line-height: 1;
}

.money-card {
  position: relative;
  display: grid;
  min-height: 0;
  grid-template-columns: 7% 1fr;
  align-items: center;
  gap: 3%;
  padding: 2.4% 3.5%;
  overflow: hidden;
  border: 1px solid rgba(151, 188, 218, 0.15);
  border-radius: 1em;
  background: rgba(14, 33, 53, 0.82);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.17);
}

.money-card > span:last-of-type {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4%;
}

.money-card small {
  color: #dce8f0;
  font-size: clamp(0.55rem, 1.35vw, 1.3rem);
  font-weight: 800;
}

.money-card strong {
  flex: 0 0 auto;
  font-size: clamp(0.85rem, 2vw, 2rem);
  letter-spacing: 0;
}

.money-icon {
  display: grid;
  width: 100%;
  max-width: 2.2em;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  color: var(--blue);
  background: rgba(43, 182, 255, 0.1);
  font-size: clamp(0.58rem, 1.2vw, 1.1rem);
  font-weight: 900;
}

.money-card--deduction {
  border-color: rgba(255, 95, 103, 0.18);
  background: rgba(80, 21, 31, 0.5);
}

.money-card--deduction .money-icon,
.money-card--deduction strong {
  color: var(--red);
}

.money-card--deduction .money-icon {
  background: rgba(255, 95, 103, 0.09);
}

.money-card--net {
  border-color: rgba(255, 255, 255, 0.22);
  background: linear-gradient(135deg, var(--orange), #e9501d);
  box-shadow: 0 15px 38px rgba(253, 105, 53, 0.23);
}

.money-card--net .money-icon {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
}

.money-card--net small,
.money-card--net strong {
  color: #fff;
}

.money-shimmer {
  position: absolute;
  inset: -25% auto -25% -25%;
  width: 18%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.26), transparent);
  transform: skewX(-18deg);
}

.money-progress {
  position: relative;
  width: min(70%, 56em);
  height: 1.3%;
  min-height: 5px;
  margin: 3.5% auto 0;
  border-radius: 999px;
  background: rgba(43, 182, 255, 0.11);
}

.money-progress span {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--orange), var(--orange-2));
  box-shadow: 0 0 14px rgba(253, 105, 53, 0.5);
}

.money-progress i {
  position: absolute;
  top: 50%;
  left: 0;
  width: 1.3%;
  min-width: 7px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(253, 105, 53, 0.18), 0 0 14px rgba(253, 105, 53, 0.7);
  transform: translate(-50%, -50%);
}
