:root {
  --navy: #2d3a7b;
  --navy-deep: #1a2250;
  --accent: #5b6bc4;
  --gold: #e8b84a;
  --gold-deep: #c99a2e;
  --text: #1a1a2e;
  --text-muted: #6b6b7b;
  --text-soft: #9a9aa8;
  --white: #ffffff;
  --bg: #f7f8fc;
  --bg-alt: #eef0f8;
  --line: #e2e5ee;
  --sans: 'Manrope', -apple-system, sans-serif;
  --mono: 'Roboto Mono', monospace;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  font-weight: 400;
  min-height: 100vh;
  position: relative;
  background: #0a0a0f;
  animation: bgFade 1.8s cubic-bezier(0.4, 0, 0.2, 1) 0.1s forwards;
}

body.modal-open {
  overflow: hidden;
}

.navbar .nav-link,
.navbar .navbar-brand {
  color: #1a2250 !important;
}

.navbar .nav-link:hover {
  color: #5b6bc4 !important;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(26, 34, 80, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.navbar-toggler {
  border-color: #1a2250 !important;
}

.navbar {
  opacity: 0;
  animation: navOpacity 0.5s ease 1s forwards;
}

@keyframes navOpacity {
  to {
    opacity: 1;
  }
}

@keyframes bgFade {
  0% {
    background: #0a0a0f;
  }

  40% {
    background: #1a2250;
  }

  100% {
    background: var(--bg);
  }
}

.stars {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  animation: starsFadeIn 2s cubic-bezier(0.4, 0, 0.2, 1) 1.6s forwards;
  transform: translate3d(var(--mx, 0px), var(--my, 0px), 0);
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes starsFadeIn {
  to {
    opacity: 1;
  }
}

.star {
  position: absolute;
  background: var(--navy);
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(45, 58, 123, 0.6);
  animation: twinkle infinite ease-in-out;
}

.star.small {
  width: 2px;
  height: 2px;
  opacity: 0.4;
}

.star.medium {
  width: 3px;
  height: 3px;
  opacity: 0.55;
  background: var(--accent);
  box-shadow: 0 0 8px rgba(91, 107, 196, 0.7);
}

.star.large {
  width: 4px;
  height: 4px;
  opacity: 0.7;
  background: var(--navy-deep);
  box-shadow: 0 0 12px rgba(26, 34, 80, 0.8), 0 0 4px rgba(91, 107, 196, 0.5);
}

.star.gold {
  width: 3px;
  height: 3px;
  opacity: 0.6;
  background: var(--gold);
  box-shadow: 0 0 10px rgba(232, 184, 74, 0.7);
}

.sparkle {
  position: absolute;
  pointer-events: none;
  animation: sparkleAnim infinite ease-in-out;
}

.sparkle::before,
.sparkle::after {
  content: '';
  position: absolute;
  background: var(--navy);
  border-radius: 2px;
  left: 50%;
  top: 50%;
  transform-origin: center;
}

.sparkle::before {
  width: 16px;
  height: 1.5px;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 8px rgba(45, 58, 123, 0.6);
}

.sparkle::after {
  width: 1.5px;
  height: 16px;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 8px rgba(45, 58, 123, 0.6);
}

.sparkle.accent::before,
.sparkle.accent::after {
  background: var(--accent);
  box-shadow: 0 0 10px rgba(91, 107, 196, 0.7);
}

.sparkle.small::before {
  width: 10px;
}

.sparkle.small::after {
  height: 10px;
}

@keyframes twinkle {

  0%,
  100% {
    opacity: var(--star-opacity, 0.3);
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.4);
  }
}

@keyframes sparkleAnim {

  0%,
  100% {
    opacity: 0.2;
    transform: scale(0.8) rotate(0deg);
  }

  50% {
    opacity: 0.9;
    transform: scale(1.1) rotate(45deg);
  }
}

.page {
  padding: 120px 40px 80px;
  max-width: 1400px;
  margin: 0 auto;
  opacity: 0;
  animation: pageFadeIn 1.4s cubic-bezier(0.4, 0, 0.2, 1) 0.8s forwards;
  position: relative;
  z-index: 1;
}

@keyframes pageFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.head {
  text-align: center;
  margin-bottom: 36px;
}

.label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 20px;
  font-weight: 600;
}

.label::before,
.label::after {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--gold);
}

h1 {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--navy-deep);
  max-width: 900px;
  margin: 0 auto 20px;
}

h1 em {
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(135deg, var(--gold-deep) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.intro {
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto;
}

.search-wrap {
  width: 100%;
  margin: 0 0 24px;
  opacity: 0;
  animation: pageFadeIn 1.0s cubic-bezier(0.4, 0, 0.2, 1) 1.1s forwards;
}

.search-inner {
  position: relative;
  width: 100%;
}

.search-icon {
  position: absolute;
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--accent);
  width: 20px;
  height: 20px;
}

.search-input {
  width: 100%;
  padding: 18px 60px 18px 58px;
  border-radius: 18px;
  border: 1.5px solid var(--line);
  background: white;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  outline: none;
  box-shadow: 0 4px 20px rgba(45, 58, 123, 0.07);
  transition: border-color 0.3s, box-shadow 0.3s;
  letter-spacing: -0.01em;
}

.search-input::placeholder {
  color: var(--text-soft);
}

.search-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(91, 107, 196, 0.12), 0 4px 20px rgba(45, 58, 123, 0.1);
}

.search-clear {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: none;
  background: var(--bg-alt);
  color: var(--text-muted);
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}

.search-clear:hover {
  background: var(--navy);
  color: white;
}

.search-clear.visible {
  display: flex;
}

.search-count {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-soft);
  margin-top: 10px;
  margin-left: 4px;
  letter-spacing: 0.1em;
  min-height: 18px;
}

.no-results {
  display: none;
  text-align: center;
  padding: 60px 20px;
  color: var(--text-soft);
  font-size: 15px;
  grid-column: 1 / -1;
}

.no-results.visible {
  display: block;
}

.no-results svg {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  display: block;
  opacity: 0.3;
}

.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  z-index: 2;
}

.card {
  background: white;
  border-radius: 20px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  min-height: 280px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  box-shadow: 0 2px 8px rgba(45, 58, 123, 0.04);
  opacity: 0;
  transform: translateY(30px);
  animation: cardIn 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.card.hidden {
  display: none;
}

.card:nth-child(2) {
  animation-delay: 1.0s;
}

.card:nth-child(3) {
  animation-delay: 1.08s;
}

.card:nth-child(4) {
  animation-delay: 1.16s;
}

.card:nth-child(5) {
  animation-delay: 1.24s;
}

.card:nth-child(6) {
  animation-delay: 1.32s;
}

.card:nth-child(7) {
  animation-delay: 1.40s;
}

.card:nth-child(8) {
  animation-delay: 1.48s;
}

.card:nth-child(9) {
  animation-delay: 1.56s;
}

.card:nth-child(10) {
  animation-delay: 1.64s;
}

.card:nth-child(11) {
  animation-delay: 1.72s;
}

.card:nth-child(12) {
  animation-delay: 1.8s;
}

@keyframes cardIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.card::before {
  content: '';
  position: absolute;
  inset: 0;
  padding: 2px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--accent) 50%, var(--navy) 100%);
  border-radius: 20px;
  mask: linear-gradient(white, white) content-box, linear-gradient(white, white);
  -webkit-mask: linear-gradient(white, white) content-box, linear-gradient(white, white);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.5s;
}

.card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  opacity: 0;
  transition: opacity 0.5s;
  border-radius: 20px;
}

.card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 30px 60px rgba(45, 58, 123, 0.25);
  border-color: transparent;
}

.card:hover::before {
  opacity: 1;
}

.card:hover::after {
  opacity: 0.97;
}

.card>* {
  position: relative;
  z-index: 2;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 16px;
  gap: 8px;
  padding: 0;
  border-top: none !important;
  background: none !important;
}

.arrow {
  position: absolute;
  top: 28px;
  right: 28px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s;
}

.arrow svg {
  width: 14px;
  height: 14px;
  color: var(--navy);
  transition: all 0.5s;
}

.card:hover .arrow {
  background: var(--gold);
  transform: rotate(-45deg);
}

.card:hover .arrow svg {
  color: var(--navy-deep);
  transform: rotate(45deg);
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 10px 5px 8px;
  border-radius: 100px;
  font-weight: 700;
  transition: all 0.4s;
  flex-shrink: 0;
}

.status-badge::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  flex-shrink: 0;
}

.status-badge.ready {
  background: rgba(34, 197, 94, 0.1);
  color: #15803d;
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.status-badge.ready::before {
  background: #22c55e;
  box-shadow: 0 0 4px #22c55e;
}

.status-badge.wip {
  background: rgba(234, 179, 8, 0.1);
  color: #92400e;
  border: 1px solid rgba(234, 179, 8, 0.2);
}

.status-badge.wip::before {
  background: #f59e0b;
}

.status-badge.planned {
  background: rgba(148, 163, 184, 0.1);
  color: #64748b;
  border: 1px solid rgba(148, 163, 184, 0.2);
}

.status-badge.planned::before {
  background: #94a3b8;
}

.card:hover .status-badge {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  border-color: rgba(255, 255, 255, 0.15);
}

.card:hover .status-badge::before {
  background: rgba(255, 255, 255, 0.6);
  box-shadow: none;
}

.card-actions {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}

.card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 5px 11px;
  border-radius: 8px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: -0.01em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}

.card-btn svg {
  width: 11px;
  height: 11px;
  flex-shrink: 0;
}

.card-btn-launch {
  background: var(--navy-deep);
  color: white;
  border-color: var(--navy);
}

.card-btn-launch:hover {
  background: var(--accent);
}

.card-btn-more {
  background: var(--bg-alt);
  color: var(--navy);
  border-color: var(--line);
}

.card-btn-more:hover {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
}

.card:hover .card-btn-launch {
  background: var(--gold);
  color: var(--navy-deep);
  border-color: var(--gold);
}

.card:hover .card-btn-more {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border-color: rgba(255, 255, 255, 0.2);
}

.card:hover .card-btn-more:hover {
  background: rgba(255, 255, 255, 0.2);
}

.orb {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--accent) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  position: relative;
  transition: all 0.5s;
  flex-shrink: 0;
}

.orb::before {
  content: '';
  position: absolute;
  inset: -4px;
  background: linear-gradient(135deg, var(--gold) 0%, transparent 100%);
  border-radius: 20px;
  opacity: 0;
  transition: opacity 0.5s;
  z-index: -1;
}

.card:hover .orb {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  transform: rotate(-8deg) scale(1.05);
}

.card:hover .orb::before {
  opacity: 1;
}

.orb svg {
  width: 28px;
  height: 28px;
  color: white;
  transition: color 0.5s;
}

.card:hover .orb svg {
  color: var(--navy-deep);
}

.progress-bar-wrap {
  width: 100%;
  height: 3px;
  background: var(--bg-alt);
  border-radius: 100px;
  margin-bottom: 16px;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  border-radius: 100px;
  background: linear-gradient(90deg, var(--accent), var(--gold));
  transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover .progress-bar-fill {
  background: linear-gradient(90deg, var(--gold), white);
}

.meta {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--text-soft);
  margin-bottom: 10px;
  text-transform: uppercase;
  transition: color 0.5s;
}

.card:hover .meta {
  color: var(--gold);
}

.name {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--navy-deep);
  margin-bottom: 12px;
  line-height: 1.15;
  transition: color 0.5s;
}

.name span {
  color: var(--accent);
  font-weight: 500;
  font-style: italic;
  transition: color 0.5s;
}

.card:hover .name {
  color: white;
}

.card:hover .name span {
  color: var(--gold);
}

.desc {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-muted);
  margin-top: 4px;
  flex: 1;
  transition: color 0.5s;
}

.card:hover .desc {
  color: rgba(255, 255, 255, 0.8);
}

.tags {
  display: flex;
  gap: 6px;
  margin-top: 0;
  flex-wrap: wrap;
}

.tag {
  font-family: var(--mono);
  font-size: 10px;
  padding: 4px 10px;
  background: var(--bg-alt);
  color: var(--text-muted);
  border-radius: 100px;
  transition: all 0.5s;
}

.card:hover .tag {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
}

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  pointer-events: none;
}

.modal-overlay.active {
  pointer-events: all;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 12, 40, 0.0);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  transition: background 0.25s ease, backdrop-filter 0.25s ease;
}

.modal-overlay.active .modal-backdrop {
  background: rgba(10, 12, 40, 0.58);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.modal-window {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 820px;
  max-height: 88vh;
  background: #ffffff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(91, 107, 196, 0.12), 0 8px 40px rgba(26, 34, 80, 0.22), 0 40px 80px rgba(26, 34, 80, 0.15);
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(28px) scale(0.97);
  transition: opacity 0.32s cubic-bezier(0.4, 0, 0.2, 1), transform 0.38s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-overlay.active .modal-window {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.modal-header-stripe {
  background: linear-gradient(135deg, var(--navy-deep) 0%, #2d3a7b 50%, #3d4fa0 100%);
  padding: 32px 36px 0;
  position: relative;
  flex-shrink: 0;
}

.modal-header-stripe::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
}

.modal-deco {
  position: absolute;
  top: 0;
  right: 0;
  width: 260px;
  height: 140px;
  overflow: hidden;
  pointer-events: none;
}

.modal-deco-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.modal-deco-circle:nth-child(1) {
  width: 200px;
  height: 200px;
  top: -80px;
  right: -40px;
}

.modal-deco-circle:nth-child(2) {
  width: 140px;
  height: 140px;
  top: -30px;
  right: 30px;
}

.modal-deco-circle:nth-child(3) {
  width: 80px;
  height: 80px;
  top: 10px;
  right: 100px;
  border-color: rgba(232, 184, 74, 0.2);
}

.modal-top-row {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  position: relative;
  z-index: 2;
}

.modal-orb {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.modal-orb svg {
  width: 30px;
  height: 30px;
  color: white;
}

.modal-title-block {
  flex: 1;
}

.modal-meta {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.modal-title {
  font-size: 28px;
  font-weight: 800;
  color: white;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.modal-title em {
  font-style: italic;
  font-weight: 500;
  color: var(--gold);
}

.modal-subtitle {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 6px;
  line-height: 1.5;
}

.modal-close-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s;
  margin-top: 4px;
}

.modal-close-btn:hover {
  background: rgba(255, 255, 255, 0.18);
}

.modal-close-btn svg {
  width: 16px;
  height: 16px;
}

.modal-readiness {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
  position: relative;
  z-index: 2;
}

.readiness-label {
  font-family: var(--mono);
  font-size: 10px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.readiness-track {
  flex: 1;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  overflow: hidden;
}

.readiness-fill {
  height: 100%;
  border-radius: 100px;
  background: linear-gradient(90deg, var(--accent), var(--gold));
  transition: width 1.2s;
  width: 0;
}

.readiness-pct {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
}

.modal-tabs {
  display: flex;
  gap: 4px;
  margin-top: 22px;
  position: relative;
  z-index: 2;
}

.modal-tab {
  padding: 10px 20px;
  border-radius: 10px 10px 0 0;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.55);
  border: none;
  background: rgba(255, 255, 255, 0.06);
  transition: all 0.2s;
}

.modal-tab:hover {
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.1);
}

.modal-tab.active {
  color: var(--navy-deep);
  background: white;
  font-weight: 700;
}

.modal-body {
  padding: 32px 36px;
  overflow-y: auto;
  flex: 1;
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

.modal-section {
  margin-bottom: 28px;
}

.modal-section-title {
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.modal-section-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--line);
}

.modal-section p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
}

.modal-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 24px;
}

.modal-list li {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--text-muted);
}

.modal-list li strong {
  color: var(--navy-deep);
  font-weight: 700;
}

.modal-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.modal-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  background: var(--bg-alt);
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 13px;
  color: var(--text-muted);
}

.modal-launch-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--accent) 100%);
  color: white;
  border: none;
  border-radius: 12px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  margin-bottom: 12px;
}

.modal-launch-btn.disabled {
  background: var(--bg-alt);
  color: var(--text-soft);
  cursor: not-allowed;
  pointer-events: none;
}

.video-stub {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, #0d1433 0%, #1a2250 40%, #2d3a7b 100%);
  margin-bottom: 14px;
  border: 1px solid rgba(91, 107, 196, 0.15);
}

.video-stub-play {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.play-ring {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}

.play-ring svg {
  width: 28px;
  height: 28px;
  color: white;
  margin-left: 3px;
}

.video-stub-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
}

.video-stub-caption {
  font-size: 13px;
  color: var(--text-muted);
}

.modal-footer {
  padding: 20px 36px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
  background: var(--bg);
}

.modal-footer-meta {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-soft);
}

.modal-footer-deadline {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 600;
}

@media (max-width: 1350px) {
  .grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1020px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .page {
    padding: 80px 24px;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .modal-header-stripe {
    padding: 24px 24px 0;
  }

  .modal-body {
    padding: 24px;
  }

  .modal-footer {
    padding: 16px 24px;
    flex-direction: column;
    gap: 12px;
  }
}