:root {
  --black: #000000;
  --surface: #131111;
  --surface-2: #1c1918;
  --line: #2e2a28;
  --line-strong: #453f3c;
  --text: #f2efed;
  --muted: #9c9491;
  --faint: #756e6b;
  --orange: #f96e07;
  --gold: #ffd100;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--black);
  color: var(--text);
  font-family: Poppins, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

.masthead {
  background: var(--black);
  border-bottom: 2px solid var(--orange);
  padding-block: 30px 24px;
  padding-inline: 20px;
  text-align: center;
}
.masthead .logo {
  display: block;
  width: 158px;
  max-width: 58%;
  height: auto;
  margin: 0 auto;
}
.masthead-site { margin: 12px 0 0; font-size: 12px; }

.site-link {
  color: var(--orange);
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid rgba(249,110,7,.45);
  white-space: nowrap;
}
.site-link:hover { border-bottom-color: var(--orange); }

.wrap {
  max-width: 620px;
  margin: 0 auto;
  padding-inline: 20px;
  padding-block: 32px 60px;
}

.back {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 400;
  color: var(--muted);
  text-decoration: none;
  margin-bottom: 20px;
}
.back:hover { color: var(--orange); }

.nav-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-bottom: 20px;
}
.nav-row .back { margin-bottom: 0; }

.footer-nav {
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.footer-nav a {
  font-size: 13px;
  font-weight: 500;
  color: var(--orange);
  text-decoration: none;
}
.footer-nav a:hover { text-decoration: underline; }

h1 {
  font-weight: 600;
  font-size: 26px;
  line-height: 1.25;
  letter-spacing: -0.01em;
  text-wrap: balance;
  margin: 0 0 8px;
}

.lede {
  margin: 0 0 28px;
  color: var(--muted);
  font-weight: 300;
  font-size: 14.5px;
}

/* Role meta */
.dept {
  font-size: 12.5px;
  font-weight: 300;
  color: var(--muted);
  margin: 0 0 14px;
}
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.chip {
  font-size: 11.5px;
  font-weight: 500;
  padding: 5px 11px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  color: var(--muted);
  white-space: nowrap;
}
.chip.accent { border-color: rgba(249,110,7,.5); color: var(--orange); }

/* Listing cards */
.card {
  display: block;
  text-decoration: none;
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 2px solid var(--orange);
  border-radius: 6px;
  padding: 18px;
  margin-bottom: 14px;
  transition: border-color .15s ease;
}
.card:hover { border-color: var(--line-strong); border-left-color: var(--orange); }
.card-title {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.35;
  margin-bottom: 4px;
}
.card-meta {
  display: block;
  font-size: 12.5px;
  font-weight: 300;
  color: var(--faint);
  margin-bottom: 12px;
}
.card-blurb {
  display: block;
  font-size: 13.5px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 12px;
}
.card-go {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--orange);
}

/* Body copy */
p.body {
  margin: 0 0 18px;
  font-weight: 300;
  color: var(--text);
  text-align: justify;
  hyphens: auto;
  -webkit-hyphens: auto;
}

.practice {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 14px 16px;
  margin: 0 0 22px;
  font-size: 13.5px;
  font-weight: 400;
  color: var(--text);
  line-height: 1.7;
}
.practice .label {
  display: block;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 6px;
}

h2.section {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin: 0 0 12px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

ul.list { margin: 0 0 24px; padding: 0; list-style: none; }
ul.list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 11px;
  font-weight: 300;
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--text);
  hyphens: auto;
  -webkit-hyphens: auto;
}
ul.list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 10px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--orange);
}

/* Call to action */
.cta {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
  padding: 22px 18px;
  text-align: center;
  margin: 30px 0 0;
}
.cta p { margin: 0 0 16px; font-size: 14px; font-weight: 300; color: var(--muted); }
.cta .confidential {
  margin: 14px 0 0;
  font-size: 11.5px;
  color: var(--faint);
}
a.button {
  display: block;
  width: 100%;
  padding: 16px;
  border-radius: 6px;
  background: var(--orange);
  color: var(--black);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: background .15s ease;
}
a.button:hover { background: #ff8425; }

footer {
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.about-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin: 0 0 10px;
}
footer p {
  margin: 0;
  font-size: 12px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--faint);
  text-align: justify;
  hyphens: auto;
  -webkit-hyphens: auto;
}

@media (prefers-reduced-motion: reduce) { * { transition: none !important; } }

/* Site-wide descriptor for visitors who arrive without context.
   Wording is lifted from RevUp's own About copy, not written here. */
.about-bar {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  padding-block: 11px;
  padding-inline: 20px;
  text-align: center;
  font-size: 12px;
  font-weight: 300;
  line-height: 1.55;
  color: var(--muted);
}

/* Employment agency registration details — required on Singapore job ads. */
.ea {
  margin: 22px 0 0;
  font-size: 11.5px;
  font-weight: 300;
  color: var(--faint);
  line-height: 1.6;
}
