/* Partner Experience (WO-101) — extends sponsorship public cluster */

.pe-body {
  margin: 0;
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  color: #2c241c;
  background:
    radial-gradient(ellipse 70% 40% at 10% 0%, rgba(180, 120, 40, 0.08), transparent 55%),
    linear-gradient(180deg, #f7f3ec 0%, #f4f1ea 40%, #efe8dc 100%);
}

.pe-body h1,
.pe-body h2,
.pe-body h3,
.pe-brand,
.pe-hero-brand {
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  letter-spacing: 0.02em;
}

.pe-skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: #1f2937;
  color: #fff;
  padding: 0.5rem 1rem;
  z-index: 100;
}
.pe-skip:focus { left: 0.5rem; top: 0.5rem; }

.pe-nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(28, 22, 16, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 3px solid #b45309;
}
.pe-nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  align-items: center;
  justify-content: space-between;
}
.pe-brand {
  color: #fbbf24;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.35rem;
  text-transform: uppercase;
}
.pe-nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  align-items: center;
}
.pe-nav-links a {
  color: #e7e5e4;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
}
.pe-nav-links a:hover,
.pe-nav-links a[aria-current="page"] { color: #fbbf24; }
.pe-nav-cta {
  background: #d97706 !important;
  color: #1c1410 !important;
  padding: 0.45rem 0.85rem;
  border-radius: 0.5rem;
}

.pe-hero {
  position: relative;
  min-height: min(88vh, 640px);
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
}
.pe-hero-media {
  position: absolute;
  inset: 0;
  background-image: url("../20220829_194203.jpg");
  background-size: cover;
  background-position: center;
}
.pe-hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(20, 14, 10, 0.82) 0%, rgba(20, 14, 10, 0.45) 55%, rgba(20, 14, 10, 0.55) 100%);
}
.pe-hero-content {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  padding: 3.5rem 1.25rem 3.25rem;
}
.pe-hero-brand {
  margin: 0 0 0.5rem;
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 800;
  text-transform: uppercase;
  color: #fbbf24;
  line-height: 0.95;
}
.pe-hero h1 {
  margin: 0 0 0.85rem;
  font-size: clamp(1.75rem, 4vw, 2.6rem);
  font-weight: 700;
  max-width: 18ch;
}
.pe-hero-lead {
  margin: 0 0 1.5rem;
  max-width: 36rem;
  font-size: 1.1rem;
  line-height: 1.5;
  color: #e7e5e4;
}
.pe-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.pe-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.25rem;
  border-radius: 0.65rem;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.95rem;
}
.pe-btn-primary {
  background: #d97706;
  color: #1c1410;
}
.pe-btn-primary:hover { background: #f59e0b; }
.pe-btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}
.pe-btn-ghost:hover { background: rgba(255, 255, 255, 0.16); }
.pe-btn-secondary {
  background: #fff;
  color: #44403c;
  border-color: #d6d3d1;
}
.pe-btn-secondary:hover { border-color: #d97706; color: #92400e; }

.pe-section { padding: 4rem 1.25rem; }
.pe-section-alt {
  background: rgba(255, 255, 255, 0.55);
  border-block: 1px solid rgba(120, 90, 40, 0.12);
}
.pe-section-dark {
  background: linear-gradient(165deg, #1c1917 0%, #292524 60%, #1c1917 100%);
  color: #e7e5e4;
}
.pe-wrap { max-width: 1100px; margin: 0 auto; }
.pe-narrow { max-width: 720px; }
.pe-split {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 2rem;
  align-items: start;
}
.pe-section h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #1c1917;
}
.pe-section-dark h2,
.pe-on-dark { color: #fafaf9 !important; }
.pe-lede {
  font-size: 1.15rem;
  line-height: 1.55;
  margin: 0 0 1rem;
  color: #57534e;
}
.pe-section-dark .pe-lede { color: #d6d3d1; }
.pe-center { text-align: center; margin-left: auto; margin-right: auto; }
.pe-muted { color: #78716c; }
.pe-note { margin-top: 1.25rem; }
.pe-text-link { color: #b45309; font-weight: 700; }
.pe-emphasis {
  margin-top: 1.25rem;
  padding: 0.85rem 1rem;
  border-left: 4px solid #d97706;
  background: #fff7ed;
  font-weight: 700;
}

.pe-aside,
.pe-callout {
  background: #fff;
  border: 1px solid rgba(120, 90, 40, 0.15);
  border-radius: 0.85rem;
  padding: 1.25rem 1.35rem;
}
.pe-aside a,
.pe-callout a { color: #b45309; font-weight: 600; }
.pe-callout ul { margin: 0.5rem 0 1rem; padding-left: 1.1rem; }

.pe-pillars,
.pe-grid-3 {
  list-style: none;
  margin: 1.75rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.pe-pillars li,
.pe-grid-3 li {
  background: #fff;
  border: 1px solid rgba(120, 90, 40, 0.12);
  border-radius: 0.85rem;
  padding: 1.15rem 1.2rem;
}
.pe-section-dark .pe-grid-3 li {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
}
.pe-pillars h3,
.pe-grid-3 h3 {
  margin: 0 0 0.4rem;
  font-size: 1.25rem;
}

.pe-band {
  margin-top: 1.5rem;
  text-align: center;
  padding: 1.5rem;
  border-radius: 0.85rem;
  background: linear-gradient(135deg, #fffbeb, #fef3c7 50%, #ecfccb);
  border: 1px solid rgba(180, 120, 40, 0.2);
}

.pe-checks {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
  line-height: 1.7;
}

.pe-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.pe-steps {
  margin: 0 0 1.5rem;
  padding-left: 1.2rem;
  line-height: 1.7;
}

.pe-form {
  background: #fff;
  border: 1px solid rgba(120, 90, 40, 0.15);
  border-radius: 1rem;
  padding: 1.35rem;
  box-shadow: 0 10px 30px rgba(40, 20, 0, 0.05);
}
.pe-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}
.pe-form label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: #44403c;
}
.pe-span-2 { grid-column: span 2; }
.pe-form input,
.pe-form select,
.pe-form textarea {
  font: inherit;
  font-weight: 400;
  font-size: 16px; /* WO-399A: Safari focus zoom guard */
  padding: 0.55rem 0.7rem;
  border-radius: 0.5rem;
  border: 1px solid #d6d3d1;
  background: #fff;
}
.pe-form input:focus,
.pe-form select:focus,
.pe-form textarea:focus {
  outline: 2px solid #d97706;
  outline-offset: 1px;
}
.pe-check {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  gap: 0.5rem;
  margin: 0.85rem 0;
  font-weight: 600 !important;
}
.pe-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  align-items: center;
}
.pe-form-actions a { color: #b45309; font-weight: 600; font-size: 0.9rem; }
.pe-form-status { margin: 0.75rem 0 0; font-size: 0.9rem; color: #57534e; }

.pe-footer {
  background: #0c0a09;
  color: #a8a29e;
  text-align: center;
  padding: 2.5rem 1.25rem;
  border-top: 3px solid #b45309;
}
.pe-footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.25rem;
  margin-bottom: 1rem;
}
.pe-footer-nav a {
  color: #e7e5e4;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
}
.pe-footer-nav a:hover,
.pe-footer-nav a[aria-current="page"] { color: #fbbf24; }
.pe-copy { font-size: 0.75rem; color: #78716c; margin-top: 0.5rem; }

@media (max-width: 860px) {
  .pe-split,
  .pe-pillars,
  .pe-grid-3,
  .pe-form-grid { grid-template-columns: 1fr; }
  .pe-span-2 { grid-column: span 1; }
  .pe-nav-links { width: 100%; }
  .pe-hero { min-height: 72vh; }
}

/* WO-106 continuum rail — shared across business pages */
.ux-continue {
  margin: 0;
  padding: 2.5rem 0 3rem;
  border-top: 1px solid rgba(120, 90, 40, 0.14);
  background: rgba(255, 252, 247, 0.55);
}
.ux-continue-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
  text-align: center;
}
.ux-continue h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #1c1917;
}
.ux-continue-lede {
  margin: 0 auto 1.25rem;
  max-width: 36rem;
  color: #57534e;
  line-height: 1.55;
}
.ux-continue .pe-cta-row { margin-top: 0.5rem; }

/* Legacy utility hooks still used by sibling partnership pages */
.sp-hero { min-height: 0; }
.sp-btn-primary,
.sp-btn-secondary {
  display: inline-block;
  text-decoration: none;
  min-width: 180px;
}
@media (max-width: 640px) {
  .sp-btn-primary,
  .sp-btn-secondary {
    width: 100%;
    max-width: 320px;
  }
}
