/* Agent Opportunity Page */

/* ---- Hero ---- */

.agent-hero {
  background: var(--color-navy);
  color: #fff;
  padding-block: clamp(var(--space-16), 9vw, var(--space-32));
  position: relative;
  overflow: hidden;
}

.agent-hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -180px;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(82,183,136,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.agent-hero::after {
  content: '';
  position: absolute;
  bottom: -120px;
  left: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(224,123,57,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.agent-hero-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-16);
  align-items: center;
  position: relative;
  z-index: 1;
}

.agent-hero-content h1 {
  font-size: var(--text-3xl);
  color: #fff;
  margin-bottom: var(--space-6);
  line-height: 1.1;
}

.agent-hero-content h1 em {
  font-style: italic;
  color: var(--color-amber);
}

.agent-hero-content > p {
  font-size: var(--text-base);
  color: rgba(255,255,255,0.65);
  max-width: 56ch;
  line-height: 1.75;
  margin-bottom: var(--space-8);
}

.agent-hero-ctas {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.agent-hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  flex-shrink: 0;
}

.agent-stat {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: var(--space-6) var(--space-6);
  text-align: center;
  min-width: 150px;
}

.agent-stat-value {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--color-amber);
  margin-bottom: var(--space-1);
  line-height: 1.1;
}

.agent-stat-label {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.45);
  line-height: 1.4;
}

/* ---- Differentiator Cards ---- */

.differentiator-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
}

.diff-card {
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.diff-card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--color-primary-highlight);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
}

.diff-card h3 {
  font-size: var(--text-lg);
  color: var(--color-text);
  line-height: 1.25;
}

.diff-card > p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.75;
}

.diff-card-contrast {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  margin-top: var(--space-2);
}

.diff-col {
  background: var(--color-surface-offset);
  border-radius: var(--radius-md);
  padding: var(--space-5);
}

.diff-col-ours {
  background: var(--color-primary-highlight);
}

.diff-col-label {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: var(--space-4);
  color: var(--color-text-muted);
}

.diff-col-ours .diff-col-label {
  color: var(--color-primary);
}

/* ---- Role Section ---- */

.role-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: start;
}

.role-col h2 {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-5);
}

.role-col > p {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: var(--space-8);
}

.role-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.role-detail-row {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
}

.role-detail-row svg {
  flex-shrink: 0;
  margin-top: 3px;
}

.role-detail-row strong {
  display: block;
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-1);
}

.role-detail-row span {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.role-task-list {
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
}

.role-task-list h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-6);
}

.role-note {
  margin-top: var(--space-6);
  padding: var(--space-5);
  background: var(--color-amber-highlight);
  border-radius: var(--radius-md);
  display: flex;
  gap: var(--space-3);
  align-items: flex-start;
  border-left: 3px solid var(--color-amber);
}

.role-note svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.role-note p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.65;
}

/* ---- Requirements ---- */

.requirements-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-10);
}

.req-col h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-6);
}

.req-note {
  margin-top: var(--space-6);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
  padding: var(--space-5);
  background: var(--color-surface);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--color-primary);
}

/* ---- Growth Section ---- */

.agent-growth-section {
  background: var(--color-navy-mid, #16213e);
}

.growth-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-bottom: var(--space-8);
}

.growth-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
}

.growth-card-label {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-amber);
  margin-bottom: var(--space-4);
}

.growth-card p {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
}

.growth-disclaimer {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.25);
  text-align: center;
  line-height: 1.6;
  max-width: 56ch;
  margin-inline: auto;
}

/* ---- Apply Section ---- */

.apply-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--space-16);
  align-items: start;
}

.apply-content h2 {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-5);
}

.apply-content > p {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: var(--space-8);
}

.apply-expectations h4 {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-5);
}

.apply-steps-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.apply-steps-list li {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
}

.apply-step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-primary-highlight);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--color-primary);
  flex-shrink: 0;
}

.apply-steps-list strong {
  display: block;
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-1);
}

.apply-steps-list p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.5;
}

.apply-form-wrapper {
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.apply-form {
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.apply-form h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-2);
}

/* ---- Responsive ---- */

@media (max-width: 1040px) {
  .agent-hero-inner {
    grid-template-columns: 1fr;
  }
  .agent-hero-stats {
    width: 100%;
    max-width: 480px;
  }
}

@media (max-width: 860px) {
  .differentiator-grid {
    grid-template-columns: 1fr;
  }
  .role-layout {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }
  .requirements-grid {
    grid-template-columns: 1fr;
  }
  .growth-cards {
    grid-template-columns: 1fr;
  }
  .apply-layout {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }
}

@media (max-width: 540px) {
  .agent-hero-stats {
    grid-template-columns: 1fr 1fr;
  }
  .diff-card-contrast {
    grid-template-columns: 1fr;
  }
}
