/* Balancers for Business — /corporate */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --corp-red: #CC3318;
  --corp-orange: #F05228;
  --corp-ember: #FF7040;
  --corp-cream: #EFE7DE;
  --corp-dark: #0D0D0D;
  --corp-body: #3A3330;
  --corp-muted: rgba(58, 51, 48, 0.72);
  --corp-white: #FFFFFF;
  --corp-max: 1120px;
  --corp-pad: clamp(20px, 4vw, 56px);
}

html { scroll-behavior: smooth; }

body.corp-page {
  font-family: "DM Sans", sans-serif;
  background: var(--corp-cream);
  color: var(--corp-dark);
  line-height: 1.6;
}

.corp-page a { color: inherit; }

.corp-inner {
  width: 100%;
  max-width: var(--corp-max);
  margin: 0 auto;
  padding-left: var(--corp-pad);
  padding-right: var(--corp-pad);
}

.corp-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--corp-red);
  margin-bottom: 14px;
}

.corp-h1,
.corp-h2 {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.corp-h1 { font-size: clamp(52px, 11vw, 108px); }
.corp-h2 { font-size: clamp(40px, 7vw, 72px); }

.corp-lead {
  font-size: clamp(17px, 2.2vw, 20px);
  line-height: 1.65;
  color: var(--corp-body);
  max-width: 38rem;
}

.corp-section {
  padding: clamp(64px, 10vw, 104px) 0;
}

.corp-section--dark {
  background: var(--corp-dark);
  color: var(--corp-white);
}

.corp-section--cream { background: var(--corp-cream); }
.corp-section--white { background: var(--corp-white); }

/* Nav (matches site) */
.corp-page .nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.corp-page .nav-logo img { height: 36px; display: block; }

.corp-page .nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.corp-page .nav-links a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

.corp-page .nav-links a:hover { color: #fff; }

.corp-page .nav-cta {
  background: linear-gradient(135deg, var(--corp-red), var(--corp-orange));
  color: #fff !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(204, 51, 24, 0.4);
}

.corp-page .nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  cursor: pointer;
  color: #fff;
}

.corp-page .nav-toggle-box { position: relative; width: 22px; height: 16px; display: block; }

.corp-page .nav-toggle-bar {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.35s ease, top 0.35s ease, opacity 0.25s;
}

.corp-page .nav-toggle-bar:nth-child(1) { top: 0; }
.corp-page .nav-toggle-bar:nth-child(2) { top: 7px; }
.corp-page .nav-toggle-bar:nth-child(3) { top: 14px; }

.corp-page .nav.nav-open .nav-toggle-bar:nth-child(1) { top: 7px; transform: rotate(45deg); }
.corp-page .nav.nav-open .nav-toggle-bar:nth-child(2) { opacity: 0; }
.corp-page .nav.nav-open .nav-toggle-bar:nth-child(3) { top: 7px; transform: rotate(-45deg); }

.corp-page .nav-drawer {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: #000;
  padding: calc(56px + env(safe-area-inset-top, 0px)) 28px 48px;
  overflow-y: auto;
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.42s ease, opacity 0.35s, visibility 0.42s;
}

.corp-page .nav-drawer.is-open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.corp-page .nav-drawer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: 400px;
  margin: 0 auto;
  padding-top: 28px;
}

.corp-page .nav-drawer-link {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
}

.corp-page .nav-drawer-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 280px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  color: #fff !important;
  text-decoration: none;
  background: linear-gradient(135deg, var(--corp-red), var(--corp-orange));
}

/* Hero */
.corp-hero {
  position: relative;
  min-height: min(92vh, 880px);
  padding: 120px 0 72px;
  background: var(--corp-dark);
  color: var(--corp-white);
  overflow: hidden;
}

.corp-hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(13, 13, 13, 0.92) 0%, rgba(13, 13, 13, 0.55) 55%, rgba(204, 51, 24, 0.35) 100%),
    url("/assets/images/homepage/find-your-people.jpg") center center / cover no-repeat;
}

.corp-hero__inner {
  position: relative;
  z-index: 1;
}

.corp-hero__eyebrow { color: var(--corp-ember); }

.corp-hero__title {
  max-width: 12ch;
  margin-bottom: 24px;
}

.corp-hero__title em {
  font-style: normal;
  color: var(--corp-ember);
  display: block;
}

.corp-hero__lead {
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 32px;
}

.corp-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
}

.corp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.2s;
}

.corp-btn--primary {
  background: linear-gradient(135deg, var(--corp-red), var(--corp-orange));
  color: #fff !important;
  box-shadow: 0 8px 28px rgba(204, 51, 24, 0.45);
}

.corp-btn--primary:hover { transform: translateY(-1px); }

.corp-btn--ghost {
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff !important;
  background: rgba(255, 255, 255, 0.06);
}

.corp-btn--ghost-dark {
  border: 1px solid rgba(13, 13, 13, 0.2);
  color: var(--corp-dark) !important;
  background: transparent;
}

.corp-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.corp-stat__value {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(36px, 6vw, 52px);
  line-height: 1;
  color: var(--corp-ember);
}

.corp-stat__label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 6px;
  max-width: 14rem;
}

/* Cards grid */
.corp-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.corp-grid--3 { grid-template-columns: repeat(3, 1fr); }

.corp-card {
  background: var(--corp-white);
  border: 1px solid rgba(13, 13, 13, 0.08);
  border-radius: 16px;
  padding: 28px 24px;
}

.corp-section--dark .corp-card {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
}

.corp-card__stat {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(40px, 6vw, 56px);
  line-height: 1;
  color: var(--corp-red);
  margin-bottom: 10px;
}

.corp-section--dark .corp-card__stat { color: var(--corp-ember); }

.corp-card__title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.corp-card__body {
  font-size: 15px;
  color: var(--corp-muted);
  line-height: 1.6;
}

.corp-section--dark .corp-card__body { color: rgba(255, 255, 255, 0.68); }

/* Who we are */
.corp-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: start;
  margin-top: 36px;
}

.corp-split__media {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--corp-dark);
}

.corp-split__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.corp-mini-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.corp-mini-stat {
  padding: 18px 16px;
  border-radius: 12px;
  background: rgba(13, 13, 13, 0.04);
}

.corp-mini-stat strong {
  display: block;
  font-family: "Bebas Neue", sans-serif;
  font-size: 32px;
  color: var(--corp-red);
  line-height: 1;
  margin-bottom: 4px;
}

.corp-mini-stat span { font-size: 13px; color: var(--corp-muted); }

/* Steps */
.corp-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
  counter-reset: corp-step;
}

.corp-step {
  position: relative;
  padding: 28px 22px 24px;
  border-radius: 16px;
  background: var(--corp-white);
  border: 1px solid rgba(13, 13, 13, 0.08);
}

.corp-step::before {
  counter-increment: corp-step;
  content: counter(corp-step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--corp-red), var(--corp-orange));
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 16px;
}

.corp-step h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.corp-step p {
  font-size: 15px;
  color: var(--corp-muted);
}

/* Experience timeline */
.corp-exp__desktop {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-left: 2px solid rgba(13, 13, 13, 0.12);
  margin-left: 12px;
}

.corp-exp-item {
  display: grid;
  grid-template-columns: 100px 1fr 200px;
  gap: 24px;
  align-items: center;
  padding: 24px 0 24px 28px;
  position: relative;
}

.corp-exp-item::before {
  content: "";
  position: absolute;
  left: -13px;
  top: 32px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--corp-red);
  box-shadow: 0 0 0 4px var(--corp-cream);
}

.corp-exp-time {
  font-family: "Bebas Neue", sans-serif;
  font-size: 28px;
  line-height: 1;
}

.corp-exp-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 28px;
  letter-spacing: 0.03em;
}

.corp-exp-thumb {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.corp-exp-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.corp-exp__mobile {
  display: none;
  margin-top: 32px;
}

.corp-exp-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 8px;
}

.corp-exp-card {
  flex: 0 0 82%;
  max-width: 320px;
  scroll-snap-align: start;
  border-radius: 16px;
  overflow: hidden;
  background: var(--corp-white);
  border: 1px solid rgba(13, 13, 13, 0.08);
}

.corp-exp-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}

.corp-exp-card__body { padding: 16px 18px 20px; }

.corp-exp-card__time {
  font-family: "Bebas Neue", sans-serif;
  font-size: 24px;
  color: var(--corp-red);
}

.corp-exp-card__title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 22px;
  margin-top: 4px;
}

.corp-exp-info {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: start;
}

.corp-exp-info-card {
  padding: 28px;
  border-radius: 16px;
  background: var(--corp-dark);
  color: #fff;
}

.corp-exp-info-card h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 32px;
  margin-bottom: 12px;
  color: var(--corp-ember);
}

.corp-exp-info-card p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
}

.corp-exp-tags {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.corp-exp-tag {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 12px;
  background: var(--corp-white);
  border: 1px solid rgba(13, 13, 13, 0.08);
  font-size: 14px;
  font-weight: 600;
}

.corp-exp-tag svg {
  flex-shrink: 0;
  color: var(--corp-red);
}

/* Pricing */
.corp-tiers {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.corp-tier {
  position: relative;
  padding: 32px 28px;
  border-radius: 20px;
  background: var(--corp-white);
  border: 1px solid rgba(13, 13, 13, 0.1);
}

.corp-tier--featured {
  border-color: var(--corp-red);
  box-shadow: 0 16px 48px rgba(204, 51, 24, 0.12);
}

.corp-tier__badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 6px 12px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--corp-red), var(--corp-orange));
  color: #fff;
}

.corp-tier__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--corp-red);
}

.corp-tier__name {
  font-family: "Bebas Neue", sans-serif;
  font-size: 40px;
  margin: 8px 0 4px;
}

.corp-tier__sub {
  font-size: 15px;
  color: var(--corp-muted);
  margin-bottom: 16px;
}

.corp-tier__desc {
  font-size: 15px;
  color: var(--corp-body);
  margin-bottom: 20px;
  line-height: 1.6;
}

.corp-tier ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.corp-tier li {
  font-size: 14px;
  padding-left: 22px;
  position: relative;
}

.corp-tier li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--corp-orange);
}

/* Final CTA */
.corp-final {
  text-align: center;
}

.corp-final .corp-h2 { margin-bottom: 16px; }

.corp-final .corp-lead {
  margin: 0 auto 28px;
}

.corp-final__email {
  margin-top: 20px;
  font-size: 15px;
}

.corp-final__email a {
  color: var(--corp-red);
  font-weight: 600;
}

/* Footer */
.corp-page footer {
  background: var(--corp-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 40px var(--corp-pad);
}

.corp-page .footer-guides {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding: 20px 0;
}

.corp-page .footer-guides-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.25);
  font-weight: 600;
}

.corp-page .footer-guides-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.corp-page .footer-guides-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
}

.corp-page .footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.07);
  margin-bottom: 20px;
}

.corp-page .footer-copy { font-size: 13px; color: rgba(255, 255, 255, 0.3); }

.corp-page .footer-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.corp-page .footer-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
}

.corp-page .footer-links a:hover { color: rgba(255, 255, 255, 0.8); }

.corp-page .footer-ig { color: rgba(255, 255, 255, 0.4); }

.corp-page .footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

/* Reveal (subtle, non-critical) */
.corp-reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.corp-reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 900px) {
  .corp-grid,
  .corp-grid--3,
  .corp-steps,
  .corp-tiers,
  .corp-split,
  .corp-exp-info {
    grid-template-columns: 1fr;
  }

  .corp-stats { grid-template-columns: 1fr; gap: 24px; }

  .corp-exp__desktop { display: none; }
  .corp-exp__mobile { display: block; }
}

@media (max-width: 768px) {
  .corp-page .nav { padding: 14px 16px; z-index: 10001; }
  .corp-page .nav-logo img { height: 30px; }
  .corp-page .nav-toggle { display: flex; }
  .corp-page .nav-links { display: none !important; }
  .corp-page .nav-drawer { display: block; }

  .corp-hero { min-height: auto; padding-top: 108px; }
  .corp-card { padding: 22px 18px; }
  .corp-page .footer-bottom { flex-direction: column; align-items: flex-start; }
  .corp-page .footer-guides { flex-direction: column; align-items: flex-start; }
}

@media (min-width: 769px) {
  .corp-page .nav-drawer {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .corp-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
