/* Ambassadors page-specific styles. Layers on top of styles.css */

.kicker.on-dark { color: var(--green-light, #96C754); }

/* Hero action row */
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; align-items: center; }
.pill-cta.ghost-on-dark {
  background: transparent;
  color: var(--cream, #FCF7F1);
  border: 1px solid rgba(252,247,241,0.35);
}
.pill-cta.ghost-on-dark:hover { background: rgba(252,247,241,0.06); border-color: var(--green-light, #96C754); }
.pill-cta.ghost-on-dark .arrow-badge { background: rgba(252,247,241,0.1); color: var(--cream); }

/* ============ Bounty / offer section ============ */
.amb-bounty { background: var(--cream, #FCF7F1); }
.bounty-card {
  position: relative;
  background: linear-gradient(160deg, #ffffff 0%, #FCF7F1 100%);
  border: 1px solid var(--line, #d8d3c8);
  border-radius: 28px;
  padding: clamp(1.75rem, 3vw, 3rem);
  box-shadow: 0 30px 80px -50px rgba(27,33,65,0.35);
  overflow: hidden;
}
.bounty-card::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: 8px;
  background: linear-gradient(180deg, var(--green-light, #96C754), var(--green-dark, #3FAA62));
}
.bounty-stamp {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 0.9rem;
  color: var(--green-dark, #3FAA62);
  border: 1px solid var(--green-dark, #3FAA62);
  border-radius: 999px;
  padding: 0.3rem 0.9rem;
  letter-spacing: 0.04em;
}
.bounty-card .kicker { color: var(--green-dark, #3FAA62); }
.bounty-card h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.75rem, 4vw, 3rem);
  line-height: 1.1;
  color: var(--navy, #1B2141);
  margin: 0.5rem 0 1rem;
  max-width: 22ch;
}
.hl-amount {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  color: var(--navy, #1B2141);
  background: linear-gradient(180deg, transparent 60%, rgba(150,199,84,0.45) 60%);
  padding: 0 0.1em;
}
.hl-amount.hl-green { color: var(--green-dark, #3FAA62); }
.bounty-lead {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: rgba(27,33,65,0.82);
  font-weight: 300;
  max-width: 70ch;
  line-height: 1.55;
  margin-bottom: 1.75rem;
}
.bounty-lead strong { font-weight: 600; color: var(--navy, #1B2141); }
.bounty-stack {
  display: grid;
  gap: 1.1rem;
  margin-bottom: 1.75rem;
}
.bounty-row {
  display: grid;
  grid-template-columns: minmax(110px, max-content) 1fr;
  gap: 1.25rem;
  align-items: center;
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--line, #d8d3c8);
  border-radius: 18px;
  padding: 1.1rem 1.4rem;
}
.bounty-num {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1;
  color: var(--green-dark, #3FAA62);
  text-align: center;
  white-space: nowrap;
}
.bounty-row-body h3 {
  font-size: 1.1rem;
  color: var(--navy, #1B2141);
  margin: 0 0 0.25rem;
}
.bounty-row-body p {
  color: rgba(27,33,65,0.78);
  font-weight: 300;
  line-height: 1.55;
  margin: 0;
}
.bounty-cta { background: var(--green-dark, #3FAA62); color: #fff; border: none; }
.bounty-cta:hover { background: var(--navy, #1B2141); }
.bounty-cta .arrow-badge { background: var(--navy, #1B2141); color: var(--green-light, #96C754); }

@media (max-width: 640px) {
  .bounty-stamp { position: static; display: inline-block; margin-bottom: 1rem; }
  .bounty-row { grid-template-columns: 1fr; gap: 0.5rem; text-align: left; }
  .bounty-num { text-align: left; font-size: 2.5rem; }
}

/* ============ Demo video section ============ */
.amb-demo { background: var(--navy-deep, #11162E); color: var(--cream, #FCF7F1); }
.amb-demo-grid {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 360px);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}
.amb-demo-copy h2 {
  font-family: 'DM Serif Display', serif;
  color: var(--cream, #FCF7F1);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  line-height: 1.1;
  margin: 0.5rem 0 1rem;
}
.amb-demo-copy > p {
  color: rgba(252,247,241,0.82);
  font-weight: 300;
  line-height: 1.55;
  max-width: 56ch;
}
.amb-demo-list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
  display: grid;
  gap: 0.7rem;
}
.amb-demo-list li {
  position: relative;
  padding-left: 1.6rem;
  color: rgba(252,247,241,0.86);
  font-weight: 300;
  line-height: 1.5;
}
.amb-demo-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--green-light, #96C754);
}
.amb-demo-video {
  border-radius: 22px;
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 30px 80px -40px rgba(0,0,0,0.7);
  aspect-ratio: 9 / 16;
  max-width: 360px;
  justify-self: center;
  width: 100%;
}
.amb-demo-video video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
@media (max-width: 820px) {
  .amb-demo-grid { grid-template-columns: 1fr; }
  .amb-demo-video { max-width: 320px; }
}

/* ============ How it works steps ============ */
.amb-how { background: var(--cream-2, #F4EEE5); }
.amb-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
  counter-reset: steps;
}
.amb-steps li {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 1.25rem;
  align-items: start;
  background: #fff;
  border: 1px solid var(--line, #d8d3c8);
  border-radius: 18px;
  padding: 1.25rem 1.5rem;
  transition: transform var(--transition), box-shadow var(--transition);
}
.amb-steps li:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -22px rgba(27,33,65,0.25); }
.step-num {
  font-family: 'DM Serif Display', serif;
  font-size: 2.4rem;
  line-height: 1;
  color: var(--green-dark, #3FAA62);
  text-align: center;
}
.amb-steps h3 {
  font-size: 1.15rem;
  color: var(--navy, #1B2141);
  margin: 0 0 0.3rem;
}
.amb-steps p {
  color: rgba(27,33,65,0.78);
  font-weight: 300;
  line-height: 1.55;
  margin: 0;
}

/* ============ FAQ ============ */
.amb-faq { background: var(--cream, #FCF7F1); }
.amb-faq-grid {
  display: grid;
  gap: 0.85rem;
  max-width: 880px;
  margin: 0 auto;
}
.amb-faq-item {
  background: #fff;
  border: 1px solid var(--line, #d8d3c8);
  border-radius: 14px;
  padding: 0;
  overflow: hidden;
}
.amb-faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.05rem 1.4rem;
  font-weight: 500;
  color: var(--navy, #1B2141);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.amb-faq-item summary::-webkit-details-marker { display: none; }
.amb-faq-item summary::after {
  content: '+';
  font-family: 'DM Serif Display', serif;
  font-size: 1.5rem;
  color: var(--green-dark, #3FAA62);
  line-height: 1;
  transition: transform 0.25s ease;
}
.amb-faq-item[open] summary::after { transform: rotate(45deg); }
.amb-faq-item p {
  margin: 0;
  padding: 0 1.4rem 1.2rem;
  color: rgba(27,33,65,0.78);
  font-weight: 300;
  line-height: 1.6;
}

/* What we look for */
.amb-what { background: var(--cream); }
.amb-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-6);
}
.amb-card {
  background: #fff;
  border: 1px solid var(--line, #d8d3c8);
  border-radius: 18px;
  padding: var(--space-8) var(--space-7);
  display: grid;
  gap: var(--space-3);
  transition: transform var(--transition), box-shadow var(--transition);
}
.amb-card:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -22px rgba(27,33,65,0.25); }
.amb-num {
  font-family: 'DM Serif Display', serif;
  font-size: 2rem;
  color: var(--green-dark, #3FAA62);
  line-height: 1;
}
.amb-card h3 { font-size: 1.25rem; color: var(--navy, #1B2141); }
.amb-card p { color: rgba(27,33,65,0.78); font-weight: 300; line-height: 1.55; }

/* Why work with us — dark section */
.amb-perks { background: var(--navy-deep, #11162E); color: var(--cream, #FCF7F1); }
.amb-perks .section-heading h2 { color: var(--cream); }
.amb-perks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-6);
}
.amb-perk {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  padding: var(--space-7);
  display: grid;
  gap: var(--space-3);
}
.amb-perk h3 { font-size: 1.15rem; color: var(--green-light, #96C754); }
.amb-perk p { color: rgba(252,247,241,0.82); font-weight: 300; line-height: 1.55; }

/* Form status */
.form-status {
  text-align: center;
  font-size: 0.95rem;
  min-height: 1.5em;
}
.form-status.success { color: var(--green-dark, #3FAA62); font-weight: 500; }
.form-status.error { color: #c0392b; font-weight: 500; }

/* Footer nav (added) */
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-4);
  margin: var(--space-4) 0 var(--space-2);
}
.footer-nav a {
  color: rgba(252,247,241,0.78);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--green-light, #96C754); }

/* Homepage ambassador callout (used on index.html) */
.amb-callout-section { background: var(--cream-2, #F4EEE5); }
.amb-callout {
  background: linear-gradient(135deg, var(--navy, #1B2141), var(--navy-2, #283358));
  color: var(--cream, #FCF7F1);
  border-radius: 22px;
  padding: clamp(2rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: var(--space-6);
}
.amb-callout-copy { display: grid; gap: 0.5rem; }
.amb-callout .kicker { color: var(--green-light, #96C754); }
.amb-callout h3 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  color: var(--cream);
  line-height: 1.15;
  margin: 0;
}
.amb-callout p { color: rgba(252,247,241,0.85); font-weight: 300; max-width: 56ch; margin: 0; }
.amb-callout .pill-cta {
  white-space: nowrap;
  background: var(--green-light, #96C754);
  color: var(--navy-deep, #11162E);
  border: none;
}
.amb-callout .pill-cta:hover { background: #fff; }
.amb-callout .pill-cta .arrow-badge { background: var(--navy-deep, #11162E); color: var(--green-light, #96C754); }

@media (max-width: 720px) {
  .amb-callout { grid-template-columns: 1fr; text-align: left; }
}
