/* ============================================
   Partners Page Styles
   Layered on top of styles.css
   ============================================ */

.partners-page {
  background: #0A0E1A;
  color: #fff;
  padding-top: var(--nav-height);
  min-height: 100vh;
}

/* Hero */
.partners-hero {
  padding: 80px 0 60px;
  background: radial-gradient(circle at top, rgba(59, 130, 246, 0.15), transparent 70%);
  text-align: center;
}

.partners-hero__badge {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(59, 130, 246, 0.15);
  color: #93c5fd;
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.partners-hero__title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}

.text-gradient {
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.partners-hero__subtitle {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #cbd5e1;
  max-width: 720px;
  margin: 0 auto 48px;
}

.partners-hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.partners-hero__stat {
  padding: 24px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
}

.partners-hero__stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: #93c5fd;
  line-height: 1;
}

.partners-hero__stat-label {
  font-size: 0.85rem;
  color: #94a3b8;
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (max-width: 640px) {
  .partners-hero__stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Sections */
.partners-section {
  padding: 80px 0;
}

.partners-section--alt {
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.partners-section--cta {
  background: linear-gradient(180deg, rgba(59, 130, 246, 0.06), transparent);
}

/* Override the dark-text section-title from styles.css ... partners page is
   on a dark background so we need light text */
.partners-page .section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  color: #ffffff !important;
}

.partners-page .section-subtitle {
  text-align: center;
  color: #cbd5e1 !important;
  font-size: 1.05rem;
  max-width: 640px;
  margin: 0 auto 48px;
}

/* Opportunity Grid */
.partners-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}

@media (max-width: 768px) {
  .partners-grid-2 {
    grid-template-columns: 1fr;
  }
}

.partners-card {
  padding: 32px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.partners-card:hover {
  transform: translateY(-4px);
  border-color: rgba(59, 130, 246, 0.3);
}

.partners-card__icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.partners-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.partners-card p {
  color: #cbd5e1;
  line-height: 1.6;
}

/* Tiers */
.tiers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

@media (max-width: 900px) {
  .tiers-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 48px auto 0;
  }
}

.tier-card {
  position: relative;
  padding: 32px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  transition: transform 0.3s ease;
}

.tier-card:hover {
  transform: translateY(-4px);
}

.tier-card--featured {
  background: rgba(59, 130, 246, 0.08);
  border-color: rgba(59, 130, 246, 0.4);
  transform: scale(1.03);
}

.tier-card--premium {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(59, 130, 246, 0.05));
  border-color: rgba(139, 92, 246, 0.4);
}

.tier-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 14px;
  background: #3b82f6;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 100px;
  white-space: nowrap;
}

.tier-card__header {
  text-align: center;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 24px;
}

.tier-card__name {
  font-size: 1.1rem;
  font-weight: 600;
  color: #cbd5e1;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.tier-card__amount {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}

.tier-card__amount span {
  font-size: 1rem;
  font-weight: 500;
  color: #94a3b8;
  display: block;
  margin-top: 4px;
}

.tier-card__benefits {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tier-card__benefits li {
  padding: 10px 0 10px 28px;
  position: relative;
  color: #cbd5e1;
  font-size: 0.95rem;
  line-height: 1.5;
}

.tier-card__benefits li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 10px;
  color: #3b82f6;
  font-weight: 700;
}

.partners-note {
  text-align: center;
  margin-top: 48px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 12px;
  color: #cbd5e1;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Transparency Section */
.partners-transparency {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px;
  background: rgba(255, 255, 255, 0.03);
  border-left: 4px solid #3b82f6;
  border-radius: 12px;
}

.partners-transparency__title {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.partners-transparency p {
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: 16px;
}

.partners-transparency a {
  color: #93c5fd;
  text-decoration: underline;
}

.partners-transparency__list {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}

.partners-transparency__list li {
  padding: 14px 0 14px 32px;
  position: relative;
  color: #cbd5e1;
  line-height: 1.6;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.partners-transparency__list li:last-child {
  border-bottom: none;
}

.partners-transparency__list li::before {
  content: '◆';
  position: absolute;
  left: 0;
  top: 14px;
  color: #3b82f6;
  font-size: 1.1rem;
  line-height: 1;
}

.partners-transparency__list strong {
  color: #ffffff;
}

/* Founding Partner tier ... inherits intro line */
.tier-card__inherits {
  font-size: 0.92rem;
  color: #c4b5fd;
  font-style: italic;
  line-height: 1.5;
  padding-bottom: 16px;
  margin-bottom: 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* LOI Form */
.loi-form {
  max-width: 720px;
  margin: 48px auto 0;
  padding: 40px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
}

.loi-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}

@media (max-width: 640px) {
  .loi-form__row {
    grid-template-columns: 1fr;
  }
}

.loi-form__field {
  margin-bottom: 20px;
}

.loi-form__field label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: #cbd5e1;
  margin-bottom: 8px;
}

.loi-form__field input,
.loi-form__field select,
.loi-form__field textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: #fff;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.loi-form__field input:focus,
.loi-form__field select:focus,
.loi-form__field textarea:focus {
  outline: none;
  border-color: #3b82f6;
  background: rgba(255, 255, 255, 0.08);
}

.loi-form__field input.error,
.loi-form__field select.error {
  border-color: #ef4444;
}

.loi-form__field select option {
  background: #1e293b;
  color: #fff;
}

.loi-form__submit {
  width: 100%;
  padding: 16px;
  font-size: 1.05rem;
  margin-top: 8px;
}

.loi-form__disclaimer {
  margin-top: 20px;
  font-size: 0.85rem;
  color: #94a3b8;
  text-align: center;
  line-height: 1.5;
}

/* Success / Error States */
.loi-success {
  max-width: 720px;
  margin: 48px auto 0;
  padding: 48px 40px;
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 20px;
  text-align: center;
}

.loi-success__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: #22c55e;
  color: #fff;
  font-size: 2rem;
  border-radius: 50%;
  margin-bottom: 16px;
}

.loi-success h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.loi-success p {
  color: #cbd5e1;
  line-height: 1.6;
}

.loi-success__note {
  margin-top: 16px;
  font-size: 0.9rem;
}

.loi-success__note a {
  color: #93c5fd;
  text-decoration: underline;
}

.loi-error {
  max-width: 720px;
  margin: 24px auto 0;
  padding: 20px;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 12px;
  text-align: center;
  color: #fca5a5;
}

.loi-error a {
  color: #fca5a5;
  text-decoration: underline;
  font-weight: 600;
}

/* Active nav link */
.nav__link--active {
  color: #fff !important;
}

.nav__link--active::after {
  width: 100% !important;
}
