/* ── DOWNLOAD HERO ── */
.dl-hero {
  padding: 80px 24px 64px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.dl-hero-title {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 6vw, 72px);
  line-height: 1.05;
  letter-spacing: -2px;
  color: #fff;
  margin: 0 0 20px;
}

.dl-hero-sub {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.65;
  font-weight: 300;
}

/* ── PLATFORM CARDS ── */
.dl-platforms {
  position: relative;
  z-index: 1;
  padding: 0 24px 100px;
}

.dl-platforms-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.platform-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 40px 36px 36px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s, transform 0.25s;
  position: relative;
  overflow: hidden;
}

.platform-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(108, 99, 255, 0.04), transparent 60%);
  pointer-events: none;
}

.platform-card:hover {
  border-color: rgba(108, 99, 255, 0.3);
  transform: translateY(-4px);
}

.platform-card .top-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad);
}

.platform-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(108, 99, 255, 0.15), rgba(255, 107, 157, 0.08));
  border: 1px solid rgba(108, 99, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
}

.platform-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(108, 99, 255, 0.12);
  border: 1px solid rgba(108, 99, 255, 0.25);
  border-radius: 100px;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #a0a8ff;
  margin-bottom: 16px;
  width: fit-content;
}

.platform-badge .dot {
  width: 5px;
  height: 5px;
  background: var(--purple);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--purple);
  animation: pulse 2s ease-in-out infinite;
}

.platform-name {
  font-family: 'Sora', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}

.platform-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 28px;
  flex: 1;
}

.platform-reqs {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
}

.req-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--muted);
}

.req-item svg {
  flex-shrink: 0;
  color: #a0a8ff;
}

.platform-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn-platform-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--grad);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 100px;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 8px 32px rgba(108, 99, 255, 0.25);
}

.btn-platform-primary:hover {
  opacity: 0.88;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(108, 99, 255, 0.35);
}

.btn-platform-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--muted);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  padding: 12px 24px;
  border-radius: 100px;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}

.btn-platform-secondary:hover {
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--text);
}

/* ── COMPATIBLE WITH STRIP ── */
.compat-strip {
  position: relative;
  z-index: 1;
  padding: 0 24px 80px;
  text-align: center;
}

.compat-inner {
  max-width: 900px;
  margin: 0 auto;
}

.compat-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}

.compat-apps {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.compat-chip {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: 13px;
  color: var(--muted);
}

/* ── RESPONSIVE ── */
@media (max-width: 640px) {
  .dl-platforms-inner {
    grid-template-columns: 1fr;
  }

  .platform-card {
    padding: 32px 24px 28px;
  }
}
