/* --- Global Support Page --- */
.support-page {
  background: #000000;
  min-height: 100vh;
  color: #ffffff;
  padding-top: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-x: hidden;
}

.section-tag {
  font-family: monospace;
  font-size: 0.7rem;
  letter-spacing: 4px;
  color: #c594f0;
  margin-bottom: 15px;
  opacity: 0.8;
}

.glow-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  text-align: center;
  margin-bottom: 20px;
  background: linear-gradient(to bottom, #ffffff, #202020);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.subtitle {
  font-size: 1.1rem;
  color: #888;
  max-width: 600px;
  text-align: center;
  margin-bottom: 60px;
}

/* --- Funding Telemetry Section (New) --- */
.funding-status {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto 80px auto;
  padding: 0 20px;
}

.progress-box {
  padding: 40px;
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(197, 148, 240, 0.15);
  border-radius: 16px;
  backdrop-filter: blur(10px);
}

.telemetry-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 25px;
}

.telemetry-title {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: #c594f0;
  border-radius: 50%;
  box-shadow: 0 0 12px #c594f0;
  animation: telemetryPulse 2s infinite;
}

@keyframes telemetryPulse {
  0% {
    transform: scale(0.9);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.2);
    opacity: 1;
  }
  100% {
    transform: scale(0.9);
    opacity: 0.5;
  }
}

.mission-label {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 2px;
  color: #888;
}

.telemetry-procured {
  text-align: right;
}

.telemetry-procured .amount {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.telemetry-procured .unit {
  font-family: monospace;
  font-size: 0.65rem;
  color: #c594f0;
  letter-spacing: 1px;
}

.progress-bar-bg {
  width: 100%;
  height: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 12px;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #4a00e0, #c594f0);
  border-radius: 20px;
  position: relative;
  transition: width 2s cubic-bezier(0.16, 1, 0.3, 1);
}

.fill-glow {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 30px;
  background: white;
  filter: blur(15px);
  opacity: 0.3;
}

.progress-meta {
  display: flex;
  justify-content: space-between;
  font-family: monospace;
  font-size: 0.75rem;
  color: #555;
  letter-spacing: 1px;
}

.telemetry-footer {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.impact-statement {
  font-size: 0.85rem;
  color: #777;
  max-width: 60%;
  margin: 0;
}

.remaining-badge {
  background: rgba(197, 148, 240, 0.1);
  color: #c594f0;
  padding: 6px 14px;
  border-radius: 4px;
  font-family: monospace;
  font-size: 0.8rem;
  border: 1px solid rgba(197, 148, 240, 0.2);
}

/* --- Pricing Tiers --- */
.tiers-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1250px;
  width: 100%;
  padding: 0 20px 100px 20px;
}

.tier-card {
  background: rgba(12, 12, 12, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 40px 25px;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.tier-card.unique {
  border-color: rgba(197, 148, 240, 0.4);
  background: rgba(197, 148, 240, 0.03);
}

.tier-rank {
  font-family: monospace;
  font-size: 0.8rem;
  letter-spacing: 3px;
  font-weight: 900;
}

.price-container {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-top: 12px;
}

.tier-currency {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.4);
}

.tier-price {
  font-size: 2.2rem;
  font-weight: 300;
  color: #fff;
}

.tier-interval {
  font-family: monospace;
  font-size: 0.75rem;
  color: #555;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.tier-impact {
  font-size: 0.85rem;
  color: #888;
  line-height: 1.6;
  margin-top: 15px;
  min-height: 4.5em;
}

.divider {
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: auto;
  margin-bottom: 25px;
}

.tier-btn {
  text-align: center;
  padding: 14px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: 1px solid #ffffff;
  color: #ffffff;
  background: transparent;
  cursor: pointer;
  transition: 0.2s;
}

.tier-btn:hover {
  background: #ffffff;
  color: #000;
}

/* Escape Velocity Special Styling */
.tier-card.unique .tier-rank,
.tier-card.unique .tier-price {
  color: #c594f0 !important;
}

.tier-card.unique .tier-btn {
  border-color: #c594f0;
  color: #c594f0;
}

.tier-card.unique .tier-btn:hover {
  background: #c594f0;
  color: #000000;
  box-shadow: 0 0 20px rgba(197, 148, 240, 0.3);
}

/* --- Benefits Matrix (The Table) --- */
.table-section {
  width: 100%;
  max-width: 1200px;
  padding: 0 20px 100px 20px;
}

.benefits {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.5rem, 4vw, 2rem);
  text-align: left;
  margin-bottom: 20px;
  background: linear-gradient(to bottom, #ffffff, #888888);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.table-scroll-wrapper {
  width: 100%;
  overflow-x: auto;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

.benefits-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 850px;
  font-family: "Space Grotesk", sans-serif;
}

.benefits-table th {
  padding: 25px;
  font-family: monospace;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.01);
}

.benefits-table td {
  padding: 22px 25px;
  text-align: center;
  font-size: 0.9rem;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.benefit-label {
  text-align: left !important;
  color: #888 !important;
  width: 30%;
}

/* --- Current Fleet (Sponsor Grid) --- */
.fleet-section {
  width: 100%;
  max-width: 1200px;
  padding: 80px 20px;
}

.tier-group-title {
  font-family: monospace;
  font-size: 0.85rem;
  letter-spacing: 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 15px;
  margin-bottom: 30px;
  display: flex;
  justify-content: space-between;
  text-transform: uppercase;
}

.sponsor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 25px;
}

.sponsor-hex-card {
  text-decoration: none;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 8px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  backdrop-filter: blur(10px);
}

.sponsor-hex-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-5px);
}

.logo-wrapper {
  height: 60px;
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}

.logo-wrapper img {
  max-width: 180px;
  max-height: 50px;
  object-fit: contain;
  filter: grayscale(1) brightness(1.5);
  transition: 0.3s ease;
}

.sponsor-hex-card:hover img {
  filter: grayscale(0) brightness(1);
}

.hex-name {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.1rem;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.hex-about {
  font-size: 0.85rem;
  color: #777;
  line-height: 1.6;
}

.card-status {
  font-family: monospace;
  font-size: 0.65rem;
  letter-spacing: 2px;
  color: #555;
  display: flex;
  align-items: center;
  gap: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 20px;
  margin-top: 20px;
}

.status-dot {
  width: 7px;
  height: 7px;
  background: #00ff88;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 255, 136, 0.4);
}

/* --- Notion Form Section --- */
.form-section {
  width: 100%;
  max-width: 1000px;
  padding: 100px 20px;
}

.form-title {
  font-size: 2rem;
  margin-bottom: 40px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
}

.notion-form-container {
  width: 100%;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

/* --- Responsive Layout --- */
@media (max-width: 1100px) {
  .tiers-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .support-page {
    padding-top: 100px;
  }
  .tiers-container {
    grid-template-columns: 1fr;
  }
  .telemetry-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  .telemetry-footer {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  .impact-statement {
    max-width: 100%;
  }
  .glow-title {
    font-size: 2.5rem;
  }
  .table-scroll-wrapper {
    margin: 0 -20px;
    width: calc(100% + 40px);
    border-radius: 0;
  }
  .tier-impact {
    min-height: auto;
  }
}
