:root {
  --bg: #eff3f8;
  --surface: rgba(255, 255, 255, 0.9);
  --surface-strong: #ffffff;
  --text: #142033;
  --muted: #5f7087;
  --border: rgba(148, 163, 184, 0.22);
  --border-strong: rgba(148, 163, 184, 0.36);
  --shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
  --shadow-soft: 0 8px 22px rgba(15, 23, 42, 0.06);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --gold: #8a6f1f;
  --gold-strong: #6f5610;
  --gold-soft: rgba(138, 111, 31, 0.12);
  --teal: #0f766e;
  --teal-soft: rgba(15, 118, 110, 0.12);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.94), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.74) 0%, rgba(239, 243, 248, 0.96) 100%),
    url("./assets/login-background.jpg") center / cover fixed no-repeat;
}

.is-hidden {
  display: none !important;
}

.page-shell {
  min-height: 100vh;
}

.page-main {
  position: relative;
}

.page-main::before {
  content: "";
  position: fixed;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 32, 51, 0.04) 0%, rgba(20, 32, 51, 0.14) 100%);
  pointer-events: none;
}

.page-container {
  width: 100%;
  max-width: 1380px;
  margin: 0 auto;
  padding: 36px 24px 56px;
}

.home-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(300px, 0.85fr);
  gap: 24px;
  align-items: stretch;
}

.home-hero__card,
.hero-side-card,
.role-card,
.step-card,
.principle-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.home-hero__card {
  padding: 34px;
}

.home-hero__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.home-hero__eyebrow,
.hero-side-card__eyebrow,
.role-card__eyebrow,
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 10px;
  color: var(--gold-strong);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.home-hero__eyebrow::before,
.hero-side-card__eyebrow::before,
.role-card__eyebrow::before,
.section-eyebrow::before {
  display: none;
}

.home-hero__wordmark {
  display: block;
  height: 72px;
  width: auto;
  max-width: 100%;
  margin: 0;
}

.home-hero__tagline,
.home-section__title {
  margin: 18px 0 0;
  font-size: clamp(2rem, 3vw, 3.4rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.home-hero__tagline {
  max-width: 780px;
}

.home-hero__body,
.home-section__body,
.hero-side-card__title,
.hero-side-card__value,
.role-card__body,
.step-card__body,
.principle-card__body {
  color: var(--muted);
}

.home-hero__body,
.home-section__body {
  margin: 18px 0 0;
  max-width: 760px;
  font-size: 16px;
  line-height: 1.75;
}

.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.home-hero__note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.button,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.button {
  background: linear-gradient(180deg, #9a7b22 0%, #6f5610 100%);
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(111, 86, 16, 0.22);
}

.button-secondary {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.84);
  color: var(--text);
}

.home-hero__side,
.hero-side-card {
  display: grid;
}

.hero-side-card {
  padding: 28px;
  align-content: start;
}

.hero-side-card__title {
  margin: 10px 0 0;
  font-size: 26px;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.hero-side-card__list {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.hero-side-card__item {
  display: grid;
  gap: 4px;
  padding: 16px 18px;
  border-radius: var(--radius-md);
  background: rgba(245, 247, 251, 0.92);
  border: 1px solid rgba(148, 163, 184, 0.2);
}

.hero-side-card__label {
  color: var(--text);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-side-card__value {
  font-size: 14px;
  line-height: 1.6;
}

.home-section {
  margin-top: 28px;
}

.home-section__header {
  max-width: 860px;
  margin-bottom: 18px;
}

.role-card-grid,
.step-grid,
.principle-grid {
  display: grid;
  gap: 18px;
}

.role-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

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

.role-card,
.step-card,
.principle-card {
  padding: 24px;
}

.role-card--professional {
  background: linear-gradient(180deg, rgba(255, 251, 240, 0.96) 0%, rgba(255, 255, 255, 0.94) 100%);
}

.role-card--recruiter {
  background: linear-gradient(180deg, rgba(240, 251, 248, 0.96) 0%, rgba(255, 255, 255, 0.94) 100%);
}

.role-card--recruiter .role-card__eyebrow {
  color: #115e59;
}

.role-card--coming-soon {
  background: linear-gradient(180deg, rgba(246, 248, 252, 0.96) 0%, rgba(255, 255, 255, 0.94) 100%);
}

.role-card__title,
.step-card__title,
.principle-card__title {
  margin: 12px 0 0;
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.role-card__body,
.step-card__body,
.principle-card__body {
  margin: 14px 0 0;
  font-size: 14px;
  line-height: 1.7;
}

.role-card__bullets {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.role-card__bullet {
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(148, 163, 184, 0.18);
  font-size: 14px;
  line-height: 1.55;
}

.role-card__status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.06);
  color: #405068;
  font-size: 13px;
  font-weight: 800;
}

.step-card__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gold-soft);
  color: var(--gold-strong);
  font-size: 16px;
  font-weight: 800;
}

@media (max-width: 1180px) {
  .home-hero,
  .role-card-grid,
  .step-grid,
  .principle-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .page-container {
    padding: 20px 14px 40px;
  }

  .home-hero__card,
  .hero-side-card,
  .role-card,
  .step-card,
  .principle-card {
    padding: 20px;
  }

  .home-hero__tagline,
  .home-section__title {
    font-size: 2rem;
  }

  .role-card__title,
  .step-card__title,
  .principle-card__title {
    font-size: 24px;
  }
}
