:root {
  --bg: #000000;
  --text: #ffffff;
  --muted: #9e9e9e;
  --soft: #6a6a6a;
  --border: #1f1f1f;
  --border-strong: #4a4a4a;
  --card-bg: #050505;
  --card-bg-hover: #0c0c0c;
  --line: #242424;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

.capsule-page {
  width: 100%;
  max-width: 1700px;
  margin: 0 auto;
  padding: 40px 20px 80px;
}

.hero {
  text-align: center;
  padding: 40px 20px 24px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* 105 title */
.capsule-title {
  --title-rotate-x: 0deg;
  --title-rotate-y: 0deg;
  position: relative;
  display: inline-block;
  margin: 0;
  font-size: clamp(4rem, 12vw, 8rem);
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.04em;
  transform-style: preserve-3d;
  transform: perspective(900px) rotateX(var(--title-rotate-x)) rotateY(var(--title-rotate-y)) translateY(18px) scale(0.94);
  opacity: 0;
  filter: blur(8px);
  will-change: transform, opacity, filter;
  transition: transform 0.16s ease, letter-spacing 0.2s ease, text-shadow 0.2s ease;
}

.capsule-title.is-ready {
  animation: titleIntro 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.capsule-title::before {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    #ff004c,
    #ff7a00,
    #ffe600,
    #00ff85,
    #00cfff,
    #7a5cff,
    #ff00c8,
    #ff004c
  );
  background-size: 300% 300%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0;
  filter: blur(10px);
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.capsule-title:hover {
  letter-spacing: -0.01em;
  text-shadow:
    0 0 12px rgba(255, 255, 255, 0.08),
    0 0 24px rgba(122, 92, 255, 0.12);
}

.capsule-title:hover::before {
  opacity: 0.95;
  animation: titleSpectrum 4s linear infinite;
}

@keyframes titleIntro {
  0% {
    opacity: 0;
    filter: blur(8px);
    transform: perspective(900px) rotateX(0deg) rotateY(0deg) translateY(18px) scale(0.94);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: perspective(900px) rotateX(0deg) rotateY(0deg) translateY(0) scale(1);
  }
}

@keyframes titleSpectrum {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 300% 50%;
  }
}

.hero-subtext {
  max-width: 760px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

/* Hero meta */
.hero-meta {
  width: 100%;
  max-width: 760px;
  margin: 22px auto 0;
  display: grid;
  gap: 16px;
}

.countdown-pill {
  width: fit-content;
  margin: 0 auto;
  padding: 10px 16px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
  border-radius: 999px;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.countdown-label {
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.countdown-timer {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
}

.hero-progress {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
}

.progress-header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.92rem;
}

.progress-track {
  width: 100%;
  height: 12px;
  border-radius: 999px;
  background: #101010;
  border: 1px solid #1e1e1e;
  overflow: hidden;
  position: relative;
}

.progress-fill {
  width: 0%;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    #0ea5e9,
    #22d3ee,
    #38bdf8,
    #60a5fa,
    #22d3ee
  );
  background-size: 220% 100%;
  animation: progressShift 4s linear infinite;
  transition: width 1.1s cubic-bezier(0.2, 0.9, 0.2, 1);
  box-shadow:
    0 0 10px rgba(14, 165, 233, 0.22),
    0 0 22px rgba(34, 211, 238, 0.16),
    0 0 30px rgba(96, 165, 250, 0.14);
}

@keyframes progressShift {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 250% 50%;
  }
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.btn {
  position: relative;
  display: inline-block;
  padding: 12px 20px;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  font-size: 0.95rem;
  overflow: hidden;
  isolation: isolate;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -130%;
  width: 70%;
  height: 100%;
  background: linear-gradient(
    110deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.04) 30%,
    rgba(255, 255, 255, 0.28) 50%,
    rgba(255, 255, 255, 0.04) 70%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-24deg);
  pointer-events: none;
  z-index: 1;
  opacity: 0;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.04), 0 8px 24px rgba(255, 255, 255, 0.06);
}

.btn:hover::before {
  opacity: 1;
  animation: btnShine 0.9s ease forwards;
}

.btn-primary {
  background: #ffffff;
  color: #000000;
  border-color: rgba(255, 255, 255, 0.8);
}

.btn-primary:hover {
  background: #f2f2f2;
  color: #000000;
  border-color: #ffffff;
}

.btn-rainbow:hover {
  border-color: transparent;
  color: #ffffff;
  background:
    linear-gradient(#111111, #111111) padding-box,
    linear-gradient(
      120deg,
      #ff004c,
      #ff7a00,
      #ffe600,
      #00ff85,
      #00cfff,
      #7a5cff,
      #ff00c8,
      #ff004c
    ) border-box;
  background-size: 100% 100%, 300% 300%;
  animation: rainbowButtonBorder 3s linear infinite;
  box-shadow:
    0 0 12px rgba(255, 122, 0, 0.16),
    0 0 24px rgba(122, 92, 255, 0.14),
    0 0 36px rgba(0, 255, 133, 0.10);
}

.btn-rainbow:hover::before {
  background: linear-gradient(
    110deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.10) 30%,
    rgba(255, 255, 255, 0.28) 50%,
    rgba(255, 255, 255, 0.10) 70%,
    rgba(255, 255, 255, 0) 100%
  );
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.02);
  color: #ffffff;
}

.btn-secondary:hover {
  background: #101010;
  color: #ffffff;
  border-color: #666666;
}

.btn-footer-clear {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.22);
}

.btn-footer-clear:hover {
  background: #ffffff;
  color: #000000;
  border-color: #ffffff;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.06),
    0 12px 30px rgba(255, 255, 255, 0.10);
}

.btn-footer-clear::before {
  background: linear-gradient(
    110deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.05) 30%,
    rgba(255, 255, 255, 0.22) 50%,
    rgba(255, 255, 255, 0.05) 70%,
    rgba(255, 255, 255, 0) 100%
  );
}

.btn-footer-clear:hover::before {
  opacity: 1;
  animation: btnShine 0.9s ease forwards;
}

.capsule-info {
  display: flex;
  justify-content: center;
  margin-bottom: 48px;
}

.btn-primary::before {
  background: linear-gradient(
    110deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.05) 30%,
    rgba(0, 0, 0, 0.22) 50%,
    rgba(0, 0, 0, 0.05) 70%,
    rgba(0, 0, 0, 0) 100%
  );
}

.info-card {
  width: 100%;
  max-width: 900px;
  border: 1px solid var(--border);
  background: var(--card-bg);
  padding: 22px;
  border-radius: 18px;
  text-align: center;
}

.info-card h2 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.info-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.capsule-grid-section {
  margin-top: 20px;
}

.capsule-section-divider {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 18px 0 22px;
}

.capsule-section-divider .tier-line {
  margin-bottom: 22px;
}

.capsule-section-divider .tier-label {
  margin-bottom: 0;
  text-align: center;
}

.pyramid-container {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: center;
  width: 100%;
}

.pyramid-tier {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tier-line {
  width: min(1200px, 92%);
  height: 1px;
  background: var(--line);
  margin-bottom: 18px;
}

.tier-label {
  margin-bottom: 14px;
  color: var(--soft);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.pyramid-row {
  display: flex;
  justify-content: center;
  gap: 14px;
  width: 100%;
  flex-wrap: nowrap;
}

/* Base slot styling */
.slot {
  position: relative;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, box-shadow 0.2s ease;
  z-index: 1;
}

.slot.large-slot:hover {
  border-color: rgba(255, 255, 130, 1);
  box-shadow:
    0 0 16px rgba(255, 255, 90, 0.55),
    0 0 34px rgba(255, 255, 90, 0.34),
    0 0 60px rgba(255, 255, 90, 0.20);
}

.slot.medium-slot:hover {
  border-color: rgba(255, 255, 125, 0.96);
  box-shadow:
    0 0 14px rgba(255, 255, 90, 0.48),
    0 0 28px rgba(255, 255, 90, 0.28),
    0 0 50px rgba(255, 255, 90, 0.18);
}

.slot.tier4-slot:hover {
  border-color: rgba(255, 255, 120, 0.9);
  box-shadow:
    0 0 13px rgba(255, 255, 90, 0.42),
    0 0 24px rgba(255, 255, 90, 0.24),
    0 0 42px rgba(255, 255, 90, 0.15);
}

.slot.tier5-slot:hover {
  border-color: rgba(255, 255, 115, 0.82);
  box-shadow:
    0 0 12px rgba(255, 255, 90, 0.36),
    0 0 20px rgba(255, 255, 90, 0.20),
    0 0 36px rgba(255, 255, 90, 0.13);
}

.slot.tier6-slot:hover {
  border-color: rgba(255, 255, 112, 0.72);
  box-shadow:
    0 0 11px rgba(255, 255, 90, 0.30),
    0 0 18px rgba(255, 255, 90, 0.17),
    0 0 30px rgba(255, 255, 90, 0.11);
}

.slot.tier7-slot:hover {
  border-color: rgba(255, 255, 108, 0.62);
  box-shadow:
    0 0 10px rgba(255, 255, 90, 0.26),
    0 0 16px rgba(255, 255, 90, 0.14),
    0 0 26px rgba(255, 255, 90, 0.10);
}

.slot.tier8-slot:hover {
  border-color: rgba(255, 255, 104, 0.52);
  box-shadow:
    0 0 9px rgba(255, 255, 90, 0.22),
    0 0 14px rgba(255, 255, 90, 0.12),
    0 0 22px rgba(255, 255, 90, 0.08);
}

.slot.tier9-slot:hover {
  border-color: rgba(255, 255, 100, 0.42);
  box-shadow:
    0 0 8px rgba(255, 255, 90, 0.19),
    0 0 12px rgba(255, 255, 90, 0.10),
    0 0 18px rgba(255, 255, 90, 0.07);
}

.slot.tier10-slot:hover {
  border-color: rgba(255, 255, 96, 0.34);
  box-shadow:
    0 0 7px rgba(255, 255, 90, 0.16),
    0 0 10px rgba(255, 255, 90, 0.08),
    0 0 15px rgba(255, 255, 90, 0.055);
}

.pyramid-container > .pyramid-tier:nth-child(11) .small-slot:hover {
  border-color: rgba(255, 255, 94, 0.28);
  box-shadow:
    0 0 6px rgba(255, 255, 90, 0.14),
    0 0 9px rgba(255, 255, 90, 0.08),
    0 0 13px rgba(255, 255, 90, 0.05);
}

.pyramid-container > .pyramid-tier:nth-child(12) .small-slot:hover {
  border-color: rgba(255, 255, 92, 0.22);
  box-shadow:
    0 0 5px rgba(255, 255, 90, 0.11),
    0 0 8px rgba(255, 255, 90, 0.06),
    0 0 11px rgba(255, 255, 90, 0.04);
}

.pyramid-container > .pyramid-tier:nth-child(13) .small-slot:hover {
  border-color: rgba(255, 255, 90, 0.16);
  box-shadow:
    0 0 4px rgba(255, 255, 90, 0.08),
    0 0 6px rgba(255, 255, 90, 0.045),
    0 0 9px rgba(255, 255, 90, 0.03);
}

.pyramid-container > .pyramid-tier:nth-child(14) .small-slot:hover {
  box-shadow: none;
}

.slot-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
}

.slot.top-slot {
  width: min(580px, 92vw);
  min-height: 360px;
  border: 1px solid #5f5f5f;
  background: var(--card-bg);
}

.slot.large-slot {
  width: min(420px, 44vw);
  min-height: 285px;
  border: 1px solid #3a3a3a;
}

.slot.medium-slot {
  width: min(300px, 30vw);
  min-height: 235px;
  border: 1px solid #2d2d2d;
}

.slot.tier4-slot {
  width: min(220px, 21vw);
  min-height: 220px;
  border: 1px solid #2a2a2a;
}

.slot.tier5-slot {
  width: min(195px, 18vw);
  min-height: 200px;
  border: 1px solid #262626;
}

.slot.tier6-slot {
  width: min(170px, 15vw);
  min-height: 180px;
  border: 1px solid #232323;
}

.slot.tier7-slot {
  width: min(158px, 13.5vw);
  min-height: 170px;
  border: 1px solid #212121;
}

.slot.tier8-slot {
  width: min(150px, 12.5vw);
  min-height: 162px;
  border: 1px solid #202020;
}

.slot.tier9-slot {
  width: min(145px, 11.5vw);
  min-height: 156px;
  border: 1px solid #1f1f1f;
}

.slot.tier10-slot {
  width: min(148px, 10.2vw);
  min-height: 154px;
  border: 1px solid #1f1f1f;
}

.slot.small-slot {
  width: min(145px, 8vw);
  min-height: 150px;
}

/* Image areas */
.slot-image-wrap {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #030303;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  padding: 0;
  flex-shrink: 0;
}

.top-slot .slot-image-wrap {
  height: 280px;
}

.large-slot .slot-image-wrap {
  height: 220px;
}

.medium-slot .slot-image-wrap {
  height: 180px;
}

.tier4-slot .slot-image-wrap {
  height: 145px;
}

.tier5-slot .slot-image-wrap {
  height: 130px;
}

.tier6-slot .slot-image-wrap {
  height: 118px;
}

.tier7-slot .slot-image-wrap {
  height: 112px;
}

.tier8-slot .slot-image-wrap {
  height: 108px;
}

.tier9-slot .slot-image-wrap {
  height: 106px;
}

.tier10-slot .slot-image-wrap {
  height: 106px;
}

.small-slot .slot-image-wrap {
  height: 105px;
}

.slot-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Content areas */
.slot-content {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.top-slot .slot-content {
  padding: 20px;
}

.top-slot .slot-name {
  font-size: 1.35rem;
}

.large-slot .slot-name {
  font-size: 1.12rem;
}

.medium-slot .slot-name {
  font-size: 1rem;
}

.tier4-slot .slot-name {
  font-size: 0.98rem;
}

.tier5-slot .slot-name {
  font-size: 0.92rem;
}

.tier6-slot .slot-name {
  font-size: 0.9rem;
}

.tier7-slot .slot-name {
  font-size: 0.89rem;
}

.tier8-slot .slot-name {
  font-size: 0.88rem;
}

.tier9-slot .slot-name {
  font-size: 0.88rem;
}

.tier10-slot .slot-name {
  font-size: 0.88rem;
}

.small-slot .slot-name {
  font-size: 0.88rem;
}

.slot-name {
  margin: 0;
  line-height: 1.3;
}

.slot-url {
  color: var(--muted);
  font-size: 0.82rem;
  word-break: break-word;
}

.top-slot .slot-url {
  font-size: 0.9rem;
}

.slot-blurb {
  color: #dddddd;
  font-size: 0.92rem;
  line-height: 1.55;
  margin-top: 4px;
}

.top-slot .slot-blurb {
  font-size: 1rem;
}

.slot-bid {
  margin-top: auto;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--muted);
  transition:
    color 0.2s ease,
    background-position 0.2s ease,
    opacity 0.2s ease,
    filter 0.2s ease;
}

.top-slot .slot-bid {
  font-size: 0.98rem;
}

/* Founder slot bid text */
.leading-bid {
  color: #f2f2f2;
}

/* Tiers 2–3 bid text */
.current-bid {
  color: #2fcf74;
}

/* Lower tiers */
.standard-bid {
  color: var(--muted);
}

.slot.large-slot:hover .current-bid,
.slot.medium-slot:hover .current-bid {
  color: #52ea92;
  text-shadow:
    0 0 12px rgba(82, 234, 146, 0.58),
    0 0 22px rgba(82, 234, 146, 0.36),
    0 0 36px rgba(82, 234, 146, 0.22);
}

.slot.top-slot:hover .leading-bid {
  background: linear-gradient(
    120deg,
    #ff004c,
    #ff7a00,
    #ffe600,
    #00ff85,
    #00cfff,
    #7a5cff,
    #ff00c8,
    #ff004c
  );
  background-size: 300% 300%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: bidRainbowShift 3s linear infinite;
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.06);
}

.slot-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 18px;
  color: var(--muted);
  font-size: 0.9rem;
  min-height: inherit;
}

.slot-empty strong {
  display: block;
  color: var(--text);
  margin-bottom: 6px;
}

.capsule-footer-note {
  text-align: center;
  margin-top: 50px;
  color: var(--muted);
}

.capsule-footer-note a {
  text-decoration: underline;
}

.capsule-contact-section {
  margin-top: 22px;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}

.capsule-contact-card {
  width: 100%;
  max-width: 1100px;
  border: 1px solid var(--border);
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.04), transparent 42%),
    linear-gradient(180deg, #070707 0%, #040404 100%);
  border-radius: 28px;
  padding: 30px;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.02),
    0 24px 60px rgba(0, 0, 0, 0.35);
}

.capsule-contact-copy {
  max-width: 760px;
  margin: 0 auto 24px;
  text-align: center;
}

.contact-eyebrow,
.footer-eyebrow {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.capsule-contact-copy h2,
.footer-cta-card h2 {
  margin: 0 0 12px;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.08;
}

.capsule-contact-copy p,
.footer-cta-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.capsule-contact-form {
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
}

.hidden-honeypot {
  display: none;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field span {
  font-size: 0.9rem;
  color: #d8d8d8;
  font-weight: 600;
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid #272727;
  background: rgba(255, 255, 255, 0.02);
  color: #ffffff;
  border-radius: 16px;
  padding: 14px 16px;
  font: inherit;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #7e7e7e;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.035);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.05),
    0 0 18px rgba(255, 255, 255, 0.04);
}

.form-field textarea {
  resize: vertical;
  min-height: 140px;
}

.form-field-full {
  grid-column: 1 / -1;
}

.contact-form-actions,
.footer-cta-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.capsule-footer-note {
  margin-top: 20px;
  text-align: center;
}

.footer-cta-card {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 34px 28px;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.045), transparent 40%),
    linear-gradient(180deg, #060606 0%, #030303 100%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.02),
    0 24px 60px rgba(0, 0, 0, 0.32);
}

.footer-cta-content {
  position: relative;
  z-index: 2;
}

.footer-orbs {
  position: absolute;
  inset: -12%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.footer-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(34px);
  opacity: 0.42;
  will-change: transform, opacity;
  mix-blend-mode: screen;
  animation-name: footerOrbRandom;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}

.footer-cta-card p + .footer-cta-actions {
  margin-top: 24px;
}

.capsule-footer-note a {
  text-decoration: none;
}


/* Mobile */
@media (max-width: 1100px) {
  .pyramid-row {
    flex-wrap: wrap;
  }

  .slot.small-slot {
    width: min(170px, 28vw);
    min-height: 155px;
  }
}

@media (max-width: 700px) {
  .capsule-page {
    padding: 24px 14px 60px;
  }

  .hero-meta {
    gap: 12px;
  }

  .progress-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .slot.top-slot,
  .slot.large-slot,
  .slot.medium-slot,
  .slot.tier4-slot,
  .slot.tier5-slot,
  .slot.tier6-slot,
  .slot.tier7-slot,
  .slot.tier8-slot,
  .slot.tier9-slot,
  .slot.tier10-slot,
  .slot.small-slot {
    width: 100%;
    max-width: 430px;
  }

  .pyramid-row {
    gap: 12px;
  }

  .tier-line {
    width: 100%;
  }

  .capsule-contact-card,
  .footer-cta-card {
    padding: 22px 18px;
    border-radius: 22px;
  }

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

  .form-field-full {
    grid-column: auto;
  }

        .footer-orbs {
    inset: -18%;
  }

  .footer-orb {
    filter: blur(26px);
    opacity: 0.34;
  }
}

/* Top slot rare hover */
.slot.top-slot:hover {
  border: 1px solid transparent;
  background:
    linear-gradient(var(--card-bg), var(--card-bg)) padding-box,
    linear-gradient(
      120deg,
      #ff004c,
      #ff7a00,
      #ffe600,
      #00ff85,
      #00cfff,
      #7a5cff,
      #ff00c8,
      #ff004c
    ) border-box;
  background-size: 100% 100%, 300% 300%;
  animation: topRainbowBorder 3.2s linear infinite, topRareAura 4.2s ease-in-out infinite;
}

@keyframes topRainbowBorder {
  0% {
    background-position: 0 0, 0% 50%;
  }
  100% {
    background-position: 0 0, 300% 50%;
  }
}

@keyframes topRareAura {
  0% {
    box-shadow:
      0 0 18px rgba(255, 0, 76, 0.28),
      0 0 36px rgba(255, 122, 0, 0.22),
      0 0 72px rgba(255, 230, 0, 0.18),
      0 0 120px rgba(0, 255, 133, 0.14);
  }
  25% {
    box-shadow:
      0 0 18px rgba(255, 122, 0, 0.28),
      0 0 36px rgba(255, 230, 0, 0.22),
      0 0 72px rgba(0, 255, 133, 0.18),
      0 0 120px rgba(0, 207, 255, 0.14);
  }
  50% {
    box-shadow:
      0 0 18px rgba(0, 255, 133, 0.28),
      0 0 36px rgba(0, 207, 255, 0.22),
      0 0 72px rgba(122, 92, 255, 0.18),
      0 0 120px rgba(255, 0, 200, 0.14);
  }
  75% {
    box-shadow:
      0 0 18px rgba(122, 92, 255, 0.28),
      0 0 36px rgba(255, 0, 200, 0.22),
      0 0 72px rgba(255, 0, 76, 0.18),
      0 0 120px rgba(255, 122, 0, 0.14);
  }
  100% {
    box-shadow:
      0 0 18px rgba(255, 0, 76, 0.28),
      0 0 36px rgba(255, 122, 0, 0.22),
      0 0 72px rgba(255, 230, 0, 0.18),
      0 0 120px rgba(0, 255, 133, 0.14);
  }
}

@keyframes btnShine {
  0% {
    left: -130%;
  }
  100% {
    left: 150%;
  }
}

@keyframes bidRainbowShift {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 300% 50%;
  }
}

@keyframes rainbowButtonBorder {
  0% {
    background-position: 0 0, 0% 50%;
  }
  100% {
    background-position: 0 0, 300% 50%;
  }
}

@keyframes footerOrbRandom {
  0% {
    transform: translate3d(var(--x1), var(--y1), 0) scale(var(--s1));
  }
  25% {
    transform: translate3d(var(--x2), var(--y2), 0) scale(var(--s2));
  }
  50% {
    transform: translate3d(var(--x3), var(--y3), 0) scale(var(--s3));
  }
  75% {
    transform: translate3d(var(--x4), var(--y4), 0) scale(var(--s4));
  }
  100% {
    transform: translate3d(var(--x5), var(--y5), 0) scale(var(--s5));
  }
}