/* ============================================
   AMBASSADOR PAGE
   ============================================ */

.amb-body { background: #0e0e0e; color: #fff; }

/* ---- Hero ---- */
.amb-hero {
  padding: 180px 0 100px;
  position: relative;
  overflow: hidden;
}

.amb-hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: var(--orange);
  opacity: .06;
  filter: blur(100px);
}

.amb-hero-content { max-width: 640px; }

.amb-hero-title {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: .95;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}

.amb-gradient {
  background: linear-gradient(135deg, var(--orange), #ff9a76);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.amb-hero-sub {
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255,255,255,.5);
  max-width: 460px;
  margin-bottom: 36px;
}

/* ---- Sections ---- */
.amb-section {
  padding: 100px 0;
  position: relative;
}

.amb-label {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--orange);
  margin-bottom: 14px;
}

.amb-heading {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  color: #fff;
}

.amb-text {
  font-size: .95rem;
  line-height: 1.7;
  color: rgba(255,255,255,.45);
}

/* ---- Steps ---- */
.amb-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.amb-step {
  padding: 36px 28px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 20px;
  transition: background .3s, border-color .3s;
}

.amb-step:hover {
  background: rgba(255,255,255,.05);
  border-color: rgba(255,98,62,.15);
}

.amb-step-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--orange);
  margin-bottom: 16px;
  opacity: .4;
}

.amb-step h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.amb-step p {
  font-size: .85rem;
  line-height: 1.6;
  color: rgba(255,255,255,.4);
}

/* ---- Perks ---- */
.amb-perks-section {
  border-top: 1px solid rgba(255,255,255,.05);
}

.amb-perks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.amb-perk {
  padding: 32px 24px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 18px;
  transition: transform .3s, border-color .3s;
}

.amb-perk:hover {
  transform: translateY(-4px);
  border-color: rgba(255,98,62,.15);
}

.amb-perk-icon {
  font-size: 1.6rem;
  margin-bottom: 14px;
}

.amb-perk h3 {
  font-size: .92rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.amb-perk p {
  font-size: .82rem;
  line-height: 1.6;
  color: rgba(255,255,255,.4);
}

/* ---- Form Section ---- */
.amb-form-section {
  border-top: 1px solid rgba(255,255,255,.05);
}

.amb-form-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.amb-form-left {
  position: sticky;
  top: 120px;
}

.amb-form-left .amb-text {
  max-width: 400px;
}

.amb-form-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 24px;
  padding: 40px;
}

/* Form elements (shared with host page) */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: .78rem;
  font-weight: 600;
  color: rgba(255,255,255,.5);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.04);
  color: #fff;
  font-size: .92rem;
  font-family: inherit;
  outline: none;
  transition: border-color .2s, background .2s;
  -webkit-appearance: none;
}

.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='rgba(255,255,255,0.4)' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-group select option {
  background: #1a1a1a;
  color: #fff;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,.2);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--orange);
  background: rgba(255,255,255,.06);
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.form-submit { width: 100%; margin-top: 8px; }

.form-note {
  font-size: .75rem;
  color: rgba(255,255,255,.3);
  text-align: center;
  margin-top: 14px;
}

.form-success { text-align: center; padding: 40px 20px; }

.form-success-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-size: 1.4rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}

.form-success h3 { font-size: 1.3rem; font-weight: 800; color: #fff; margin-bottom: 8px; }
.form-success p { font-size: .88rem; color: rgba(255,255,255,.5); line-height: 1.6; }

/* Nav active */
.nav-active { color: var(--orange) !important; }

/* ---- Responsive ---- */
@media (max-width: 960px) {
  .amb-steps { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .amb-perks { grid-template-columns: 1fr 1fr; }
  .amb-form-layout { grid-template-columns: 1fr; gap: 36px; }
  .amb-form-left { position: static; text-align: center; }
  .amb-form-left .amb-text { max-width: none; margin: 0 auto; }
}

@media (max-width: 768px) {
  .amb-hero { padding: 130px 0 70px; }
  .amb-hero-title { font-size: clamp(2.2rem, 8vw, 3rem); }
  .amb-section { padding: 64px 0; }
  .amb-perks { grid-template-columns: 1fr; }
  .amb-form-card { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }
}
