/* Founding Trainer Demo Program – Georgia landing */

.founding-demo-page {
  --demo-orange: #fe5900;
  --demo-gold: #e8b84a;
  --demo-gold-deep: #c9a227;
  --demo-surface: #121823;
  --demo-surface-2: #0f1118;
  --demo-border: rgba(232, 184, 74, 0.28);
}

.founding-demo-hero {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  padding: 2.5rem 1.75rem 2.25rem;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, var(--demo-surface-2) 0%, #1a1420 45%, var(--demo-surface) 100%);
  border: 1px solid var(--demo-border);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}

.founding-demo-hero::before {
  content: "";
  position: absolute;
  inset: -40% -20% auto auto;
  width: 55%;
  height: 120%;
  background: radial-gradient(ellipse at center, rgba(254, 89, 0, 0.18) 0%, transparent 65%);
  pointer-events: none;
}

.founding-demo-hero h1 {
  position: relative;
  font-size: clamp(1.55rem, 4vw, 2.35rem);
  line-height: 1.2;
  margin-bottom: 0.75rem;
  background: linear-gradient(90deg, #fff 0%, var(--demo-gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.founding-demo-hero .lead {
  position: relative;
  font-size: 1.05rem;
  color: rgba(233, 237, 245, 0.88);
  max-width: 52rem;
  margin-bottom: 0;
}

.founding-demo-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--demo-orange);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.founding-demo-grid {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

@media (min-width: 860px) {
  .founding-demo-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}

.founding-demo-card {
  background: var(--demo-surface);
  border: 1px solid var(--demo-border);
  border-radius: 14px;
  padding: 1.35rem 1.35rem 1.25rem;
}

.founding-demo-card h2 {
  font-size: 1.15rem;
  margin-bottom: 0.85rem;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.founding-demo-card h2 span.icon {
  color: var(--demo-gold);
  font-size: 1.1rem;
}

.founding-demo-card ul {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--athlead-muted, #c7cfdd);
}

.founding-demo-card li {
  margin-bottom: 0.55rem;
}

.founding-demo-card li strong {
  color: #fff;
  font-weight: 600;
}

.founding-demo-cta-wrap {
  margin: 1.5rem 0 2rem;
  text-align: center;
}

.founding-demo-btn-step2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.75rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: #0c0e13 !important;
  background: linear-gradient(135deg, var(--demo-gold) 0%, var(--demo-gold-deep) 100%);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  text-decoration: none !important;
  box-shadow: 0 8px 28px rgba(232, 184, 74, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.founding-demo-btn-step2:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(254, 89, 0, 0.25);
  color: #0c0e13 !important;
}

.founding-demo-contract-panel {
  background: linear-gradient(180deg, var(--demo-surface) 0%, var(--demo-surface-2) 100%);
  border: 1px solid var(--demo-border);
  border-radius: 14px;
  padding: 1.5rem 1.35rem 1.4rem;
  margin-bottom: 2rem;
}

.founding-demo-contract-panel h2 {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.founding-demo-contract-panel > p.sub {
  color: rgba(233, 237, 245, 0.78);
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
}

.founding-demo-download-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.founding-demo-btn-download {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.65rem 1.1rem;
  border-radius: 10px;
  background: rgba(254, 89, 0, 0.15);
  border: 1px solid rgba(254, 89, 0, 0.45);
  color: #fff !important;
  font-weight: 600;
  text-decoration: none !important;
}

.founding-demo-btn-download:hover {
  background: rgba(254, 89, 0, 0.28);
  color: #fff !important;
}

.founding-demo-upload label.file-label {
  display: block;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.35rem;
}

.founding-demo-upload input[type="file"] {
  width: 100%;
  max-width: 28rem;
  padding: 0.5rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--athlead-input-bg, #3a3a3a);
  color: var(--athlead-text, #e9edf5);
}

.founding-demo-upload .hint {
  font-size: 0.85rem;
  color: rgba(199, 207, 221, 0.85);
  margin: 0.35rem 0 1rem;
}

.founding-demo-upload button[type="submit"] {
  margin-top: 0.25rem;
  padding: 0.65rem 1.25rem;
  border-radius: 10px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  background: var(--demo-orange);
  color: #fff;
}

.founding-demo-upload button[type="submit"]:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.founding-demo-note {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  background: rgba(255, 215, 0, 0.08);
  border: 1px solid rgba(255, 215, 0, 0.22);
  color: rgba(233, 237, 245, 0.92);
  font-size: 0.9rem;
}

.founding-demo-alert {
  padding: 0.75rem 1rem;
  border-radius: 10px;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.founding-demo-alert.success {
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.35);
  color: #bbf7d0;
}

.founding-demo-alert.error {
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.35);
  color: #fecaca;
}

.founding-demo-locale {
  color: var(--demo-gold);
  font-weight: 600;
}
